/* スムーススクロール */
html{
    scroll-behavior: smooth;
}
/* 戻るボタン */
.top-button {
  position: fixed; /* 画面に固定 */
  bottom: 20px;    /* 下からの位置 */
  right: 20px;     /* 右からの位置 */
  z-index: 1000;   /* 他の要素より上に表示 */
  opacity: 0.7;    /* 少し透明に */
}

.top-button:hover {
  opacity: 1;      /* ホバーで不透明に */
}

.top-button img {
  width: 50px;     /* 画像の幅 */
  height: auto;    /* 高さは自動調整 */
}

/* 幅設定 */
.page{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/pc_bg.webp);
}
.main{
    max-width: 768px;
    width: 100%;
    margin: 0 auto;
}

/* フォント設定 */
h2{
color: #0CAC95;
text-align: center;
font-family: "Zen Maru Gothic";
font-size: 32px;
font-style: normal;
font-weight: 600;
line-height: 28px; /* 116.667% */
letter-spacing: 2.4px;
}
h3{
color: #FFF;
text-align: center;
font-family: "Zen Maru Gothic";
font-size: 16px;
font-style: normal;
font-weight: 500;
line-height: 24px; /* 150% */
letter-spacing: 1.6px;
}
p{
color: #3B3B3B;
font-family: "Noto Sans JP";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 1.6px;
}
li{
color: #3B3B3B;
font-family: "Noto Sans JP";
font-size: 16px;
font-style: normal;
font-weight: 400;
line-height: 24px; /* 150% */
letter-spacing: 1.6px;
}

/* ===== ラッパー（追加） ===== */
.btn-overlay-wrap {
  position: relative;
  display: block;
  width: 90%;
  margin: 20px auto;
}

/* ===== ボタン ===== */
.button {
  line-height: 1;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;

  border: none;
  cursor: pointer;

  background-color: #AC950C;
  color: #fff;
  border-radius: 10rem;
  font-weight: 600;

  padding: 0.75rem 1.5rem;
  padding-left: 20px;

  width: 100%; /* ←ここ修正（ラッパーと揃える） */

  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;

  transition: background-color 0.3s;
  font-size: 16px;
}

/* アイコン */
.button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: #AC950C;
  background-color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

/* ホバー */
.button:hover {
  background-color: #000;
}

.button:hover .button__icon-wrapper {
  color: #000;
}

/* アイコンアニメーション */
.button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}

.button-link {
  display: block;
}

/* ===== オーバーレイ（ここが今回の本体） ===== */
.btn-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.6);
  border-radius: 10rem;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  transition: 0.3s;

  z-index: 10; /* ←超重要 */
}

/* テキスト */
.btn-overlay span {
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 18px;
}

/* ===== Coming Soon状態 ===== */
.btn-overlay-wrap.is-coming .btn-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* 下のボタンをクリックできなくする */
.btn-overlay-wrap.is-coming a {
  pointer-events: none;
}



/* 注意事項のアコーディオン */
.accordion {
  border-top: 1px solid #818181;
  width: 90%;
  margin: 40px auto 40px;
  border-bottom: 1px solid #818181;
}

.accordion__header {
  width: 100%;
  padding: 16px;
  text-align: left;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion__icon {
  font-size: 20px;
  transition: transform 0.3s ease;
}

/* コンテンツ初期状態 */
.accordion__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion__content ul{
    padding-bottom: 20px;
}
.accordion__content ul li{
font-size: 13px;
}

/* 開いた状態 */
.accordion.is-open .accordion__content {
  max-height: 500px; /* ← 好きな高さに調整 */
  overflow-y: auto;
  padding: 16px;
}

/* アイコン回転（＋→×っぽく見せる場合） */
.accordion.is-open .accordion__icon {
  transform: rotate(180deg);
}

/* メインビジュアル */
.mv {
  padding-bottom: 40px;
  background: linear-gradient(180deg, #0CAC95 0%, #79CCC0 49.52%, #FFF 100%);
}

.mv__catch {
  display: block;
  padding: 40px 0;

  color: #fff;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: 40px;
  position: relative;
}

.mv__catch__item_1 {
    position: absolute;
    width: 40px;
    top: -27px;
    left: 10px;
}
.mv__catch__item_2 {
    position: absolute;
    width: 40px;
    bottom: -27px;
    right: 10px;
}
.mv__list {
  width: 90%;
  margin: 0 auto;
  padding: 0px;
}
.mv__item {
  margin-bottom: 20px;
}
.mv__link {
  display: block;
}

.mv__img {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 90px;
}
@media screen and (min-width:750px){
  .mv__img{
    margin-top: 66px;
  }
}

@media screen and (min-width:750px){
    
    .mv__list{
        width: 60%;
    }
}


/* 車内限定スペシャルコンテンツ */
.section--contents{
    /* background-image: url("../img/section__bg.webp"); */
    background-color:rgba(255, 255, 255, 0.7);
     background-size: cover; 
     background-repeat:repeat;
    padding-bottom: 80px;
    padding-top: 80px;
}

.section__inner{
width: 90%;
margin: 0 auto;
border: 1px solid #0CAC95;
background: #FFF;
box-shadow: 4px 4px 0 0 #79CCC0;
position: relative;
}

.section--contents__title{
    font-size: 16px;
    margin: 20px auto;
    border-bottom: #0CAC95 1px solid;
    width: 90%;
    padding-bottom: 20px;
    padding-top: 8%;
    
}
.section--contents__title strong{
color: #0CAC95;
font-family: "Barlow Condensed";
font-size: 42px;
font-style: normal;
font-weight: 500;
}

.item-number{
    width: 15%;
    margin: 0 auto;
    position: absolute;
        top: -100%;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  height: 30px;

}
.item-number img{
    width: 100%;
}

.section__text{
    width: 90%;
    margin: 0 auto;
    text-align: left;
}
.section__figure{
    width: 90%;
    margin: 40px auto;
}
.section__figure img{
    margin: 20px auto;
}
.section__schedule{
    width: 90%;
    margin: 0 auto;
    text-align: center;
}
.section__schedule-item{
    margin-bottom: 20px;
}
.section__block{
background: #F0EFEF;
width: 90%;
margin: 0 auto;
padding-bottom: 20px;
margin-bottom: 40px;
}
.section__heading{
background: #818181;
text-align: center;
padding: 5px;
width: 100%;
margin-top: 40px;
margin-bottom: 20px;
font-size: 16px;
font-weight: 600;
}
.section__list{
    width: 90%;
    margin: 0 auto;
    text-align: left;
}
.section__list-item{
    margin-bottom: 10px;
    font-size: 13px;
    line-height: 24px; /* 184.615% */
    letter-spacing: 1.3px;
}
.section__list-item strong{
color: #0CAC95;
font-size: 16px;
}

/* スマホ壁紙 */

.section--wallpaper{
background: linear-gradient(180deg, rgba(255, 255, 255, 0.50) 0%, rgba(121, 204, 192, 0.50) 10%, rgba(12, 172, 149, 0.50) 45.19%, rgba(121, 204, 192, 0.50) 80%, rgba(255, 255, 255, 0.50) 100%);
    padding-bottom: 80px;
    padding-top: 40px;
}
.section__title{
    margin: 20px auto;
    border-bottom: #0CAC95 1px solid;
    width: 90%;
    padding-bottom: 20px;
    padding-top: 8%;
}
.section__title span{
    font-size: 16px;
}
.section__text strong{
    font-weight: 600;
    color: #0CAC95;
}
.section__notice{
    width: 90%;
    margin: 0 auto;
}
.section__notice li{
    font-size: 13px;
    color: #444242;
}

/* ポストカード */
.section--postcard{
background: linear-gradient(180deg, rgba(255, 255, 255, 0.50) 0%, rgba(121, 204, 192, 0.50) 10%, rgba(12, 172, 149, 0.50) 45.19%, rgba(121, 204, 192, 0.50) 80%, rgba(255, 255, 255, 0.50) 100%);
    padding-bottom: 40px;
}
.section__cafe{
    width: 90%;
    margin: 0 auto 40px;
}
.section__cafe-heading{
    color: #AC950C;
text-align: center;
font-family: "Zen Maru Gothic";
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: 24px; /* 150% */
position: relative;
width: 300px;
    margin: 0 auto 20px;
}
/* 左アイコン */
.section__cafe h3::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  
  width: 30px;
  height: 30px;

  background-image: url("../img/cat.webp"); /* 画像パス */
  background-size: contain;
  background-repeat: no-repeat;
}

/* 右アイコン */
.section__cafe h3::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  
  width: 30px;
  height: 30px;

  background-image: url("../img/cat.webp"); /* 画像パス */
  background-size: contain;
  background-repeat: no-repeat;
}
.section__cafe-item{
    padding: 10px;
    border-top: 1px solid  #AC950C;
    text-align: center;
}
.section__cafe-item:last-child{
    border-bottom: 1px solid  #AC950C;
}
.section__cafe-item a{
    display: block;
    width: 100%;
    transition: background-color 0.3s ease;
}
.section__cafe-item a:hover {
  color: #AC950C;
}

.section__cafe small{
    display: block;
    margin: 0 auto;
    text-align: center;
    color:#3B3B3B;
}
/* キャンペーン */
.section--campaign{
/* background-image: url(../img/section__bg.webp); */
background-color:rgba(255, 255, 255, 0.7);
    background-size: cover;
    background-repeat: repeat;
    padding-bottom: 40px;
    padding-top: 40px;
}
.section--campaign__title{
    line-height: 1.2em;
}

/* プロモーション */
.section--promotion{
   background: linear-gradient(180deg, rgba(255, 255, 255, 0.50) 0%, rgba(121, 204, 192, 0.50) 10%, rgba(12, 172, 149, 0.50) 100%);
    padding-bottom: 40px;
    padding-top: 40px;
}
.section--promotion__heading{
    color: #0CAC95;
font-family: "Noto Sans JP";
font-size: 20px;
font-style: normal;
font-weight: 700;
line-height: 24px; /* 120% */
letter-spacing: 2px;
position: relative;
text-align: left;
    width: 90%;
    margin: 0 auto 20px;
    padding-left: 40px;
}
.section--promotion__heading span{
    font-size: 16px;
}

/* 左アイコン */
.section--promotion__heading::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  
  width: 30px;
  height: 30px;

  background-image: url("../img/adress.webp"); /* 画像パス */
  background-size: contain;
  background-repeat: no-repeat;
}
.section--promotion__text{
    padding: 10px 0px;
    width: 90%;
    margin: 0 auto;
    background-color:#0CAC95;
    color: #FFF;
font-family: "Noto Sans JP";
font-size: 16px;
font-style: normal;
font-weight: 700;
line-height: 22px;
letter-spacing: 1.6px;
text-align: center;
}
.section--promotion__text span{
    font-size: 13px;
}

.section__block__flex{
    display: flex;
    justify-content: space-between;
    width: 90%;
    margin: 0 auto;
}
.section__block__img{
    width: 30%;
    vertical-align: middle;
    align-items: center;
    top: 100%;
    transform: translateY(0%);
}
.section__block__flex img{
    width: 100%
}
.section__figure__st{
    background: #3B3B3B;
    color: #fff;
    text-align: center;
}
.promotion__notice{
    margin-top: 40px;
}
.fade-in-box{
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s, transform 1s;
}
.fade-in-box.is-show {
  opacity: 1;
  transform: translateY(0);
}