*,
*::before,
*::after {
  box-sizing: border-box;
}

div{
  display: block;
  unicode-bidi: isolate;
  width: 100%;
}
/* ページ全体の基本スタイル */
  body {
    margin: 0 auto;
    background: #fff;
    font-family: sans-serif;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
    max-width: 640px;
    height:100%;
  }
  
  /* 画像を縦に並べるためのスタック */
  .image-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  
  /* 各画像の表示スタイル */
  .image-stack img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  /* LINEボタンの基本スタイル */
  .line-button {
    cursor: pointer;
    transition: opacity 0.3s ease;
    animation: blink-glow 1.2s infinite;
    border-radius: 8px;
    width: 90%;
    display: block;
    margin: 0 auto;
  }

  /* 追従ボタン（line-button-wrapper-footer） */
  .line-button-wrapper-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
          box-sizing: border-box;
  }
  
  /* ホバー時の半透明エフェクト */
  .line-button:hover {
    opacity: 0.8;
  }
  
  /* チカチカ光るアニメーションの定義 */
  @keyframes blink-glow {
    0%, 100% {
      filter: brightness(1);
      transform: scale(1);
    }
    50% {
      filter: brightness(1.3);
      transform: scale(1.05);
    }
  }
  
  /* LINEボタンを包むラッパー（チケット画像と重ねるため） */
  .line-button-wrapper {
    position: relative;
    display: inline-block;
    margin-top: 20px;
  }
  
  /* チケット画像の位置調整（LINEボタンの右上） */
  .ticket-image {
    position: absolute;
    top: -23px;
    right: 25px;
    width: 80px;
  }

  /* フッター */
  .site-footer {
    text-align: center;
    padding: 20px;
    padding-bottom: 200px; /* 追従ボタンの分の余白 */
    background-color: #f7f7f7;
    font-size: 14px;
  }

  /* フッターボタン全体を固定表示 */
.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  z-index: 9999;
  background: #fff;
  box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
}

/* ボタン共通スタイル */
.footer-button {
  display: block;
  text-align: center;
}

/* 左：電話ボタン（幅60%） */
.call-button {
  width: 66.5%;
}

/* ボタン画像が枠内で100%表示されるように */
.footer-button img {
  width: 100%;
  height: auto;
  display: block;
}

  /* 画像のサイズ指定 */
  .line-button-footer {
    background-color: rgba(255, 255, 255, 0.95);
    width: 100%;
    max-width: 500px;
    height: auto;
    animation: blink-glow 1.2s infinite;
  }
  

  
  /* 画像のサイズ指定 */

  

/* アニメーション（すでにあるなら省略可） */
@keyframes blink-glow {
  0%, 100% {
    filter: brightness(1);
    transform: scale(1);
  }
  50% {
    filter: brightness(1.3);
    transform: scale(1.05);
  }
}

/* フッターが隠れないようマージン追加 */
.site-footer {
  text-align: center;
  padding: 20px;
  padding-bottom: 180px; /* 追従ボタン分の余白 */
  background-color: #f7f7f7;
  font-size: 14px;
  width: 100%;
}

  /* PCではより大きく表示 */
  @media (min-width: 1024px) {
    .site-footer {
      padding-bottom: 180px;
    }
  }

.header__btn {
    position: absolute;
    margin: 0 auto;
}

.header__btn img {
    width: 10%;
    position: relative;
    top: 7rem;
    left: 9rem;
}

@media screen and (max-width: 500px) {
    .header__btn img {
        width: 12%;
        top: 4.3rem;
        left: 1rem;
    }
}

.fotter_txt{
  font-size: 12px;
  margin-top:20px;
  margin-bottom: 10px;
  text-align: center;
}

/*ボタンの設定*/

.bg{
  background: linear-gradient(90deg, rgb(253, 232, 239), rgb(228, 236, 253), rgb(212, 242, 252));
  padding: 10px;
  margin-top:-2px;
}
.auraBtn {
  height: 90px;
  position: relative;
  /*横幅*/
  width: 80%;
  /*外側の余白｜上下余白｜左右余白（auto=センタリング）｜*/
  margin: 80px auto;
  /*-webkit-transition: .2s;
  transition: .2s;*/
  margin-top:20px;
}


/*ボタンが広がるアニメーション（1番目）*/
.auraBtn:before {
  /*アニメーションの設定 変更する場合は該当場所を修正してください。
   アニメーション名、動きの速さ.2s（=0.2秒）、動き具合、動く回数*/
  -webkit-animation: auraBtn 2s ease-out infinite;
  animation: auraBtn 2s ease-out infinite
}


/*ボタンが広がるアニメーション（2番目）*/
.auraBtn:after {
  /*アニメーションの設定 変更する場合は該当場所を修正してください。
   アニメーション名、動きの速さ.2s（=0.2秒）、動き具合、動く回数*/
  -webkit-animation: auraBtn 2s ease-out 1s infinite;
  animation: auraBtn 2s ease-out 1s infinite
}


/*ボタンが広がるアニメーション（共通設定）*/
.auraBtn:before,
.auraBtn:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /*ボタンの角丸*/
  border-radius: 100vh;
  /*広がるボタンの色(green, red, blue以外の場合はここを修正してください）*/
  background: #F6204B;
  /*広がるボタンの初期位置*/
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}


/*ボタン自体の設定*/
.auraBtn a {
  display: block;
  /*内側の余白｜上下余白｜左右余白｜*/
  padding: 10px 0;
  /*ボタンの角丸*/
  border-radius: 100vh;
  /*ボタン内テキストの水平方向の位置*/
  text-align: center;
  /*リンクの装飾*/
  text-decoration: none;
  /*ボタンの色(green, red, blue以外の場合はここを修正してください）*/
  background: #F6204B;
  position: relative;
  z-index: 1;
}

/*広がるボタンのアニメーション（変更する場合は該当する箇所を修正してください）*/
@keyframes auraBtn {

  /*アニメーション初期（0秒の時）*/
  0% {
    /*拡大率　（1=100％）*/
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    /*透明度（0=透明、1=不透明）*/
    opacity: 1
  }

  /*1.8秒時*/
  90% {
    /*透明度*/
    opacity: .1
  }

  /*アニメーション最後（2秒時）*/
  to {
    /*拡大率　1番目の値はX軸、2番目の値はY軸*/
    -webkit-transform: scale(1.2, 1.5);
    transform: scale(1.2, 1.5);
    /*透明度*/
    opacity: 0
  }
}


/*ボタン右側の矢印の設定*/
.auraBtn a p {
  height: auto;
  min-height: 70px; /* 最低高さは維持 */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0;
  padding: 0 !important;
  color: #fff;
  font-weight: 600;
  text-align: center;
  margin-left: -20px;
}

.auraBtn a p:after {
  content: "";
  position: absolute;
  /*矢印の位置*/
  top: 50%;
  right: 30px;
  /*矢印の横幅*/
  width: 8px;
  /*矢印の高さ*/
  height: 8px;
  margin: -4px 0 0 0;
  /*矢印の線｜太さ｜線種｜色｜*/
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  /*矢印の回転角度*/
  -webkit-transform: translateX(5px) rotate(45deg);
  transform: translateX(5px) rotate(45deg)
}

@media screen and (max-width: 640px) {
.auraBtn {
    margin: 15vw auto;
	margin-top: 6vw;
  }
}

@media screen and (max-width: 400px) {
.auraBtn a p {
    font-size: 3.9vw;
    padding-top: 1.5vw;
  }
.auraBtn a p:after {
    right: 6vw;
  }
}
.auraBtn img {
    text-align: center;
    width: 40px;
    height: 40px;
    margin-right: 10px;
    vertical-align: -20px;
}
.auraBtn span {
    font-size: 16px;
    line-height: 1.4;
    text-align: left;
    font-weight: 800;
}
.button_top{
    margin-bottom:-30px;
}


/* よくある質問 */
.qa-7 {
  display: block;
  box-sizing: border-box;
  margin-bottom: 10px;
  position: relative;
  border: none;
  border-radius: 5px;
  box-shadow: 0 4px 4px rgb(0 0 0 / 2%), 0 2px 3px -2px rgba(0 0 0 / 5%);
  background-color: #fff;
  padding: 1em 2em 1em 3em; /* 左右パディングは親で統一 */
  margin:1rem;
}
@media screen and (min-width: 641px) {
  .qa-7 {
    width: 640px;
    margin-left: auto;
    margin-right: auto;
  }
}


/* summaryの見た目 */
.qa-7 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #333333;
  cursor: pointer;
  font-family: serif;
}

/* Q番号の位置（親パディング内で絶対配置） */
.qa-7 summary::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-family: serif;
  color: #856542;
}

.qa-1 summary::before { content: "Q1"; }
.qa-2 summary::before { content: "Q2"; }
.qa-3 summary::before { content: "Q3"; }

/* 矢印 */
.qa-7 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-bottom: 2px solid #856542;
  border-right: 2px solid #856542;
  content: '';
  transition: transform .5s;
  
}

.qa-7[open] summary::after {
  transform: rotate(225deg);
  
}

/* pのアニメーション */
.qa-7 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  color: #333;
  font-family: serif;
  transition: transform .5s, opacity .5s;
}

.qa-7[open] p {
  transform: none;
  opacity: 1;
  
}

.faq{
  margin-top:3rem;
  margin-bottom: 3rem;
}

/* f_btn
-------------------------------------- */
.f_btn {
	position: fixed;
	bottom: 0;
	width: 640px;
	display: none;
	transition: .3s;
	background: rgba(255, 255, 255, 0.5);
	backdrop-filter: blur(20px);
	z-index: 99;
}
.active {
	display: flex;
	align-items: center;
	transition: .3s;
}
.f_btn .auraBtn {
	width: 80%;
}
.topbtn {
	margin: 10px;
	z-index: 999;
}
@media screen and (max-width: 640px) {
	.f_btn {
		width: 100%;
	}
	.f_btn .auraBtn {
		width: 80%;
	}
	.slideArea {
		margin-top: -68vw;
	}
	.Label {
		font-size: 4.8vw;
		text-align: center;
		margin: 0 10px;
	}
	.topbtn {
		margin: 10px 10px 10px 0;
	}
	.topbtn img {
		width: 15vw;
		height: 15vw;
}
}
