/* =========================================================
   TOP ヒーローヘッダー
   ========================================================= */
   
/* 固定ヘッダー */
.siteHeader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.siteHeader__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem 4rem;
}

.siteHeader__logo {
  width: 65px;
  height: auto;
}



    /* ヒーローヘッダー全体 */
    .hero {
      position: relative;
      width: 100%;
      height: 100vh;
      overflow: hidden;
    }

    /* 背景動画 */
    .hero video {
      position: absolute;
      top: 50%;
      left: 50%;
      min-width: 100%;
      min-height: 100%;
      width: auto;
      height: auto;
      transform: translate(-50%, -50%);
      object-fit: cover;
      z-index: -1;
      filter: brightness(0.6); /* 少し暗くしてテキストを読みやすく */
    }
    

/* PC 共通 */
.video-wrap {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

    
/* 初期状態：PC用を表示、SP用を非表示 */
.video-pc {
  display: block;
}
.video-sp {
  display: none;
}






.vertical-copy {
  position: absolute;
  left:4rem; /* 画面左に寄せる（必要なら調整） */
  bottom:0%;
  transform: translateY(-50%);

  font-family: "Noto Serif JP", serif;
  font-size: 28px !important; /* 英語部分をさらに一回り小さく */
  font-size: min(2.1rem, 6.4vw); /* 6.4vw ≒ 24px 基準 */
  color: #fff;
  line-height: 1.6;
  pointer-events: none; 
  z-index: 5; /* 動画より前に出す */
}

    .vertical-copy .hero-en {
        font-size: 22px !important; /* 英語部分をさらに一回り小さく */
        margin-top: 6px !important;
        display: block !important;
    }

/* ------------------------------
  TOP　ウイスキーのこだわり
------------------------------ */

/* タイトル位置（コンポーネント） */
.commitment__title-position {
  width: 100%;
  margin-bottom: 0rem;
}

/* 2カラムの入れ物 */
.commitment__twoColumn {
  width: 100%;
  display: flex;
  gap: clamp(1rem, 6vw, 100px);
  box-sizing: border-box;
}

/* 左カラム（画像） */
.commitment__left-column {
  padding-top: 6rem;/*許田の背景画像を上にだすため、カラムないのレイアウトで余白調整している*/
  width: 100%;
  max-width: 670px;
  flex: 1;
}

.commitment__left-column img {
  width: 100%;
  height: auto;
  display: block;
}

/* 右カラム（テキスト＋背景） */
.commitment__right-column {
  padding-top: 6rem;/*許田の背景画像を上にだすため、カラムないのレイアウトで余白調整している*/
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 32px;

  background-image: url("../img/top/bg-textkyoda.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: contain;
}

/* テキスト（ */
.commitment__text {
  width: 100%;
}

/* 下の画像 */
.commitment__photo {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;

}

.commitment__photo img {
  width: 100%;
  height: auto;
  display: block;
}




/* ------------------------------
  TOP　製造者の想い
------------------------------ */

/* 2カラムの入れ物 */
.makersStory {
  width: 100%;
  display: flex;
  gap: clamp(1rem, 6vw, 100px);
  box-sizing: border-box;
}

/* 左カラム：タイトル上、テキスト下 */
.makersStory__left-column {
  flex: 1;
  max-width: 600px;
  display: flex;
  flex-direction: column;
}

/* タイトル */
.makersStory__title-position {
  margin-bottom:3rem;
}

/* テキストを左下に押し下げる */
.makersStory__text {
  margin-top: auto; /* ← これだけで下に固定される */
}

/* 右カラム：画像1枚 */
.makersStory__right-column {
  flex: 1;
  max-width: 100%;
}

/* 画像（コンポーネントじゃないので position なし） */
.makersStory__photo {
  width: 100%;
  height: auto;
  display: block;
}



/* =========================================================
   TOP 沖縄で育つ蒸留と熟成
   ========================================================= */



/* リスト（縦並び） */
.featureSection__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 240px; /* ← li の余白 */
}

/* li（カードの包み） */
.featureSection__item {
  width: 100%;
  display: flex;

}

/* 奇数：左寄せ */
.featureSection__item:nth-child(odd) {
  justify-content: flex-start;
  padding-left:  clamp(0rem, 12vw, 14rem);
}

/* 偶数：右寄せ */
.featureSection__item:nth-child(even) {
  justify-content: flex-end;
  padding-right: clamp(0rem, 12vw, 14rem);
}



/* =========================================================
   TOP ラインナップ
   ========================================================= */


/* 3カラムレイアウト：矢印｜スライド｜矢印 */
.slider-row {
  display: flex;
  align-items: center;
  justify-content: center;
   gap: 24px; /* 矢印の余白  */

}

/* 左右の矢印カラム */
.arrow-col {
  width: 16px;/*矢印の横幅*/
  display: flex;
  justify-content: center;
  align-items: center;

}

/* スライダー本体の幅（ここで縮める） */
.slider-col {
  width: 950px;   /* 必要に応じて調整 */
  max-width: 100%;
}

/* Swiper 本体のサイズ保証 */
.mySwiper {
  width: 100%;
}

/* スライドの見た目 */
.swiper-slide {
  background:transparent;
  padding: 20px;/*要素間　おそらくJSのところと重なる*/
  box-shadow:none;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 200px; /* 高さゼロ防止 */
}

/* ボタンのリセット */
.custom-arrow {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
}

/* Swiper のデフォルト位置を無効化 */
.swiper-button-prev,
.swiper-button-next {
  position: static;
}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev,
.swiper-button-next {
  height: 33px;
  width: 16px;
}
/* 前へ次への矢印カスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 33px;
  margin: auto;
  width: 16px;
}
/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(../img/top/onlineshop-leftBtn.svg);
}
/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../img/top/onlineshop-leftBtn.svg);
}



/* 商品 */

/* 要素全体（縦並び） */
.item {
  display: flex;
  flex-direction: column;
  gap: 6px; /* 要素間の余白 */
  width: 290px; /* 画像幅に合わせる */


}
.swiper-slide {
  box-shadow: none !important;
}
.swiper-slide a{
    text-decoration: none;
}
/*商品背景*/
.item__img {
  max-width: 290px;
  width: 100%;
  height: 440px;
  background: #E6E6E6;
  display: flex;              /* ← これ */
  justify-content: center;    /* ← 横中央 */
  align-items: center;        /* ← 縦中央 */
}

.item__img img {
  max-height: 100%;      /* ← 縦を MAX 制御（最重要） */
  width: auto;           /* ← 横は自動で比率維持 */
  object-fit: contain;   /* ← 枠内に自然に収める */
}


/* カテゴリー */
.item__category {
  font-size: 10px;
  color: #979797;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
  line-height: 1;  
}

/* 商品名（テキストではなく“商品名”として扱う） */
.item__name {
  
  font-size: 16px;
  line-height: 1.41;
  font-family: "Noto Serif JP", serif;
  color: #000000;
}


.ratioLayout{
  overflow: hidden;
}





/* =========================================================
   TOP 蒸留所を訪ねる
   ========================================================= */

.visitDistilleryLayout {
  width: 620px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  
}


.visitDistilleryLayout__title-position{
  margin-bottom: 96px;
}


.visitDistilleryLayout__text-position{
  margin-bottom: 48px
}

.visitDistilleryLayout__photo1-position{
  margin-bottom: 1.5rem;
}

.visitDistilleryLayout__okinawaMAP-position{
  display: none;
}




.visitDistilleryLayout__img{
  max-width: 100%;
  height: auto;
}




/* =========================================================
   沿革
   ========================================================= */
   
    /*   BEM: timeline（wrapper） */
    .timeline {
      height:100svh; /*calc(100vh - 2rem);*/
      padding: 1rem 0;
      overflow: hidden;
      position: relative;
      background: #3A3A3A;
     background-image: url(../img/top/bg-enkaku-1.png);
      background-size: cover;
      background-position: bottom;
    }


    
    /*  timeline__inner（横スクロール本体）  */
    .timeline__inner {
      display: flex;
      align-items: flex-start;
      height: 100%;
      padding-left: 8vw;
      padding-right: 8vw;
      position: relative;
      min-width: max-content;
    }
    .timeline__inner {
      will-change: transform;
      transition: none;
    }
    .timeline__year-title {
    position: relative;
        margin-top: 60px;
    }

    /*  timeline__year（1年ブロック）*/
    .timeline__year {
      width: 100vw;
      margin-left: 5vw;
      margin-right: 20vw;
      margin-top: 39px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      color: #fff;
    }

    /* 大見出し（1961） */
    .timeline__year-title {
      font-family: "Noto Serif JP", serif;
      font-size: 70px;
      margin: 0 0 4rem 0;
      margin-bottom: 2.5rem;
    }

    /* 中見出し（沿革 / 受賞） */
    .timeline__label {
      font-family: "Noto Serif JP", serif;
      font-size: 26px;
      margin: 0 0 1rem 0;
      padding-bottom: .1rem;
      border-bottom: solid 1px #C9C9C9;
    }

    /* 英語サブタイトル */
    .timeline__label-sub {
      display: inline-block;
            letter-spacing: 1px;
      font-size: 14px;
      margin-left: 1rem;
    }

    /* テキストリスト */
    .timeline__text {
      font-family: "Noto Sans JP", sans-serif;
      line-height: 175%;
      font-size: 14px;
      margin: 0 0 3rem 0;
      padding: 0;
      list-style: disc;     /* ← 通常の黒丸 */
      padding-left: 1.2rem; /* ← 黒丸が見えるように左余白を追加 */

    }
  .timeline__text:last-child{
    margin-bottom: 1rem;
  }

    .timeline__list{
      margin-bottom: .5rem;
    }
       .timeline__list:last-child{
        margin-bottom: 0;
       }

/*awards-color*/
.awards-color{
  color:#977F21;
  display: block;
  margin-bottom: .5rem;
}

@media (max-width:767px){

.timeline__year{
  margin-left:0 !important;
  margin-right:0 !important;
}

.timeline__year-title{
  font-size: clamp(34px, 10vw, 48px) !important;
  line-height:1 !important;
}

.timeline__award{
  font-size:13px !important;
  line-height:1.7 !important;
  margin:0 0 .3rem 0 !important;
}


  .timeline,
  .timeline .section__inner,
  .timeline__inner,
  .timeline__year{
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    overflow-x: hidden !important;
  }

  .timeline__inner{
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }

  .timeline__text,
  .timeline__list,
  .timeline__award,
  .awards-color{
    width: 100% !important;
    max-width: 100% !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
    line-break: strict;
  }

  .timeline__award{
    display: block;
    margin: 0 0 .35rem 0;
  }
}

/* =========================================================
   CTA
   ========================================================= */

/* 2カラムの大枠
.cta__twoColumn {
  display: flex;
  width: 100%;
  height: 100%;

  flex-direction: row-reverse;
}

.cta__left-column {
  flex: 1;
  flex-shrink: 0; 
}


.cta__left-column img{
  max-width: 100%;
  height: auto;
} */
 .cta__twoColumn{
  display:flex;
  flex-direction:row;
}

.cta__left-column{
  flex:1;
  display:flex;
  justify-content:flex-end;
  align-items:flex-end;
}

.cta__left-column img{
  max-width:92%;
}

.cta__right-column {
  flex: 1;
  flex-shrink: 1; /* ← 右は縮む */
  background-image: url("../img/cmn/bg-cta-illust.png");
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 632px auto;

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

/* 3要素をまとめたラッパー */
.cta__inner {
  width: 100%;
  max-width: 580px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}

/* キャッチコピー */
.cta__catch {
  font-size: 32px;
  line-height: 1.5;
  margin-bottom: 5rem;
}

/* テキスト */
.cta__text {
  font-size: 16px;
  line-height: 230%;
  margin-bottom: 3rem;
}

/* ボタン位置（右寄せ） */
.cta__button-position {
  text-align: right;
}








/* ------------------------------
   footer 
------------------------------ */
.footer {
  background-color: #1F1F1F;
  background-image: url("../img/cmn/footer-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
}





/* 上段：2カラム */
.footerLayout__upper {
  display: flex;
  gap: 100px; /* 左右の余白 */
}

/* 左カラム：上下に2つの要素 */
.footerLayout__left {
  width: 420px; /* 必要なら調整 */
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 左上・左下に配置 */
}

/*  左カラム テキスト要素　*/
.footerText {
  color: #fff;
}

/* 会社名（hタグ） */
.footerText__company {
  font-size: 20px;
  line-height: 1.4;
  color: #fff;
}

/* 住所（2行目） */
.footerText__address {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 14px; /* 1→2 の余白 */
  color: #fff;
}

/* 電話番号（3行目） */
.footerText__tel {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 0; 
  color: #fff;
}

/* SNSリスト（4行目） */
.footerText__snsList {
  list-style: none;
  padding: 0;
  margin: 14px 0 0; /* 3→4 の余白 */
  display: flex;
  gap: 12px;
}

.footerText__snsList img {
  width: 40px;
  height: 40px;
  display: block;
}

/*  右カラム：Google Map　 */
.footerLayout__right {
  flex: 1;
}

.footerLayout__map {
  width: 100%;   /* 横幅いっぱい */
  height: 360px; /* 高さ固定 */
}

.footerLayout__map iframe {
  width: 100%;
  height: 100%;
  display: block;
}

/*  下段：コピーライト */
.footerLayout__copyright {
  margin-top: 5rem;
  text-align: left;
}

.footerLayout__copyright p {
  color: #fff;
  font-size: 0.875rem;
}

.googlemap-option{
  filter: grayscale(100%);
}


/* ------------------------------
    ratio特殊比率レイアウト   
    TOP ブログ記事とオンラインショップ
   ------------------------------ */

.ratioLayout {
  color: #000;
  display: flex;
  gap: 40px;
}

/* ----- 左カラム ----- */
.ratioLayout__left {
  width: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/* ----- 右カラム ----- */
.ratioLayout__right {
  flex: 1;
}

/* ----- 位置用のdiv ----- */


/* PC用 もっと読む*/
.ratioLayout__more-position-pc {
  margin-top: 2rem;
  display: flex;
  
}

/* SP用 */
.ratioLayout__more-position-sp {
  display: none;
}


/* =========================================================
   下層：下層ページ記事一覧
   ========================================================= */

.lower-entry{
  color: #fff;
}

.lower-entry .c-journalList__item {
  border-bottom: 1px solid #606060;
}



.lower-entry .c-journalEntry {
  color: #ffffff;
}

/* =========================================================
   下層：記事内の装飾
   ========================================================= */
/*投稿日時*/
.postDate{
  color:#606060;
  font-size:12px;
  margin: .5rem 0;
}


.journal{

  line-height: 180%;

}
.journal header{
  margin-bottom: 2.5rem;

}


.journal h1{
   line-height: 150%;
  font-weight: bold;
  font-size:4rem;
  margin:1rem 0 1rem 0;
}


.journal h2{
   line-height: 150%;
  font-weight: bold;
  font-size:3rem;
  margin:1rem 0 1rem 0;
}


.journal .category{
  margin-right:1rem;
  padding: .2rem .5rem;
  background: #ccc;
}


.journal h3{
  font-weight: bold;
  font-size:1.8rem;
  padding-left: 1rem;
  line-height: 120%;
  border-left:solid .4rem #ffffff;
  margin:1.5rem 0 1.5rem 0;
}


.journal iframe{
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}


.journal time{
  font-size:.9rem;
  color: #8E8E8E;

}



.journal p{
  margin-bottom: 3rem;
}
.journal p:last-child{
  margin-bottom: 1rem;
}



.journal ul {
  list-style-type: disc;
  padding-left: 1rem;    
  margin-bottom: 3rem;
}

.journal li {
  margin-bottom: .2rem;    
}
.journal img{
  display: block;
  max-width: 800px;
  width:100%;
  height: auto;
  margin: 2rem 0;
}
.journal figure {
  margin-top: 2.5rem;
}
.journal figure > img{
  margin-bottom: .3rem;
}


/*記事ページャー*/
.pager {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 1rem;
  border-top: solid 1px #606060;
}

.pager__previous a,
.pager__next a {
  font-size:0.875rem;
  display: inline-block;

  text-decoration: none;
  color: #ffffff;
}

.pager__previous a:hover,
.pager__next a:hover {
color: #ffffff;
}





/* =========================================================
   下層：404
   ========================================================= */
.error-404{
  width: 100%;
  text-align: center;
  margin: 6rem 0;

}
.error-404__link-position{
  margin-top:3rem;
}




/* =========================================================
   下層：ページネーション全体
   ========================================================= */

.pagination {
  margin-top: 48px;
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* 各リンク（黒背景でも見える白系デザイン） */
.pagination a,
.pagination span {
  display: inline-block;
  padding: 8px 14px;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 4px;
  font-size: 14px;
  line-height: 1;
  color: #fff;
  text-decoration: none;
  transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

/* ホバー（白反転） */
.pagination a:hover {
  background-color: #fff;
  color: #000;
  border-color: #fff;
}

/* 現在のページ（白背景で強調） */
.pagination .current {
  background-color: #fff;
  color: #000;
  border-color: #fff;
  cursor: default;
}






/* ラインナップ特殊） */
@media (max-width: 1400px) {

/* =========================================================
   TOP ラインナップ
   ========================================================= */
/* スライダー本体の幅（ここで縮める） */
.slider-col {
  width: 700px;   /* 必要に応じて調整 */
  max-width: 100%;
}







}
/* ラインナップ特殊） */
@media (max-width: 1200px) {
/* =========================================================
   TOP ラインナップ
   ========================================================= */

/* スライダー本体の幅（ここで縮める） */
.slider-col {
  width: 600px;   /* 必要に応じて調整 */
  max-width: 100%;
}

/* =========================================================
   TOP 沿革
   ========================================================= */


   /* テキストリスト */
    .timeline__text {

      font-size: 12px;


    }

}




/* =========================================================
   iPad用トップムービー
   ========================================================= */
@media screen and (max-width: 1024px) {
  /* ここに iPad 用のスタイルを書く */


  .video-wrap {
    width: 100%;
    height: auto; /* ← SP は高さを固定しない */
    aspect-ratio: 9 / 16; /* ← これが超重要！ */
    overflow: hidden;
  }

  .video-wrap video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 横優先でトリミング */
  }


/* 初期状態：PC用を表示、SP用を非表示 */
  .video-pc {
    display: none;
  }
  .video-sp {
    display: block;
  }

}











/* =========================================================
   スマホ向けのスタイル
   ========================================================= */
@media (max-width: 767px) {

/* =========================================================
   TOP ヒーローヘッダー
   ========================================================= */
  .siteHeader__inner {
    padding: 0 .5rem 0 1rem; /* logo:1rem,onlineshop.5rem */
  }


.vertical-copy {
  left:1rem; /* 画面左に寄せる（必要なら調整） */
}





/* ------------------------------
  TOP　ウイスキーのこだわり
------------------------------ */


  .commitment__left-column img {
    width: 100%;
    height: 270px;
    object-fit: cover;
  }

  .commitment__twoColumn {
    flex-direction: column;
    gap: 40px;
  }

  .commitment__left-column,
  .commitment__right-column {
    max-width: 100%;
  padding-top: 2rem;/*許田の背景画像を上にだすため、カラムないのレイアウトで余白調整している*/
  }

  .commitment__right-column {
    background-position: center top;
      
  }

  .commitment__photo {
    height: auto;
    justify-content: flex-start;
    align-items: flex-start;
  }








/* ------------------------------
  TOP　製造者の想い
------------------------------ */

  /* 1カラムに変更 */
  .makersStory {
    flex-direction: column;
    gap: 40px; /* 必要なら調整 */
  }

  .makersStory__left-column,
  .makersStory__right-column {
    max-width: 100%;
  }

  /* タイトルは上、テキストは下のまま */
  .makersStory__text {
    margin-top: 0; /* ← 1カラムでは auto いらない */
  }




/* =========================================================
   TOP 沖縄で育つ蒸留と熟成
   ========================================================= */
/* リスト（縦並び） */
.featureSection__list {

  gap: 12rem; /* ← li の余白 */
}



.featureSection__item:nth-child(odd),
.featureSection__item:nth-child(even){
    justify-content: start; /* ← 左右寄せを解除して中央寄せ */
    padding-left: 0;
    padding-right: 0
}




/* =========================================================
   TOP ラインナップ
   ========================================================= */


/* スライダー本体の幅（ここで縮める） */
.slider-row{
  width: 100%;   /* 必要に応じて調整 */
  max-width: 340px;

  margin:0 auto;
}



/* =========================================================
   TOP 蒸留所を訪ねる
   ========================================================= */
.visitDistilleryLayout {
  width: 100%;

}

/*沖縄の地図*/
.visitDistilleryLayout__okinawaMAP-position{
  display: block;
}


/* =========================================================
   沿革
   ========================================================= */
  /* wrapper 

  .timeline {   background-attachment: fixed; /* ← 背景を固定 */
    height: 70vh !important;
    overflow: hidden !important;
    position: relative;
    padding: 2rem 0;
     background-image: url(../img/top/bg-enkaku-sp-1.png);
     background-size: contain; /* ← 拡大しすぎ防止 */
    background-repeat: no-repeat;
    background-position: center;   
  }*/

  /* 横並び → 縦並び
  .timeline__inner {
    height: 100% !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;

    display: block !important;
    padding: 0 1.5rem 3rem !important;

    -webkit-overflow-scrolling: touch;
    
    flex-direction: column;
    align-items: flex-start;
    min-width: 100%; 
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  } */
  /* スマホでの設定 */
  @media (max-width: 767px) {
    .timeline {
      background-attachment: scroll; /* fixedはスマホで重いためscroll推奨 */
      height: auto !important;      /* 高さを固定せず、中身に合わせて伸ばす */
      overflow: visible !important;
      padding: 4rem 0 !important;
    }

    .timeline__inner {
      height: auto !important;
      overflow: visible !important; /* 縦スクロールをLenis（親）に任せる */
      display: block !important;
      padding: 0 1.5rem !important;
      transform: none !important;
      min-width: 100% !important;
    }
  }

  /* 1年ブロック */
  .timeline__year {
    width: 100%;
    max-width: none;
    margin-right: 0;   /* 横余白不要 */
    margin-bottom: 3rem; /* 縦の余白に変更 */
  }

  .timeline__year:last-child {
    margin-bottom: 0;
  }

  
    /* 大見出し（1961） */
    .timeline__year-title {
      font-family: "Noto Serif JP", serif;
      font-size: 60px;
      margin: 0 0 2rem 0;
    }


    /* 中見出し（沿革 / 受賞） */
    .timeline__label {

      font-size: 24px;

    }

    /* 英語サブタイトル */
    .timeline__label-sub {

      font-size: 12px;
      margin-left: .7rem;
    }


  /* テキストサイズ微調整（あなたの元コードを踏襲） */
  .timeline__text {
    font-size: 14px;
  }


/* =========================================================
   CTA
   ========================================================= */





  .cta__twoColumn {
    flex-direction: column;
  }


.cta__right-column {

  background-size: 270px auto;
  margin-bottom: 4rem;
}



/* キャッチコピー */
.cta__catch {
  font-size: 32px;
  line-height: 1.8;
  margin-bottom: 2rem;
}


/*改行 */
.cta__catch span{
  display: block;
}

/* テキスト */
.cta__text {
  font-size: 16px;
  line-height: 230%;
  margin-bottom: 1rem;
}


/* ボタン位置（右寄せ） */
.cta__button-position {
  margin-top: 2rem;
  text-align: right;
}


/* ------------------------------
   footer 
------------------------------ */

  /* 上段2カラム → 縦並び */
  .footerLayout__upper {
    flex-direction: column;
    gap: 50px; 
  }

  /* 左カラムの幅を100%に */
  .footerLayout__left {
    width: 100%;
  }


.footerLayout__button-position{
  margin-top: 3rem;
}


  /* MAP の高さだけ SP 用に調整したいならここで */
  .footerLayout__map {
    height: 250px;
   
  }

  /* コピーライトも縦並びの最後に来るだけ */
  .footerLayout__copyright {
    margin-top: 55px; 
  }


  .footerText__tel a {
    color: #fff;
  }




/* ------------------------------
    ratio特殊比率レイアウト   
    TOP ブログ記事とオンラインショップ
   ------------------------------ */
  .ratioLayout {
    flex-direction: column;
    gap: 24px;
  }

  .ratioLayout__left {
    width: 100%;
  }



/* PC用 もっと読む*/
  .ratioLayout__more-position-pc {
    display: none;
  }

/* SP用 もっと読む*/
  .ratioLayout__more-position-sp {
    display: flex;
    justify-content: flex-end;
    margin-top: 1.5rem;
  }






/* =========================================================
   下層：ページネーション全体
   ========================================================= */
  .pagination {
    gap: 6px;
  }

  .pagination a,
  .pagination span {
    padding: 6px 10px;
    font-size: 13px;
  }






}



/* スマホ対応（必要なら調整） */
@media (max-width: 450px) {
/* =========================================================
   TOP ラインナップ
   ========================================================= */
/* スライダー本体の幅（ここで縮める） */
.slider-row{
  width: 100%;   /* 必要に応じて調整 */
  max-width: 290px;

  margin:0 auto;
}

}


/* ラインナップ特殊 */
@media (max-width: 400px) {
/* =========================================================
   TOP ラインナップ
   ========================================================= */

/* 要素全体（縦並び） */
.item {
  display: flex;
  flex-direction: column;
  gap: 6px; /* 要素間の余白 */
  max-width: 290px; /* 画像幅に合わせる */
  width: 100%;

}







/* スライダー本体の幅（ここで縮める） */
.slider-row{
  width: 100%;   /* 必要に応じて調整 */
  max-width: 260px;

  margin:0 auto;
}

/* スライダー本体の幅（ここで縮める） */
.slider-col{
  width: 100%;   /* 必要に応じて調整 */
  max-width: 220px;

  margin:0 auto;
}

}

@media (max-width: 767px) {
  .timeline {
    height: 80vh !important;
    overflow: hidden !important;
    position: relative !important;
  }

  .timeline .section__inner {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
  }

  .timelineTitle-position {
    flex: 0 0 auto !important;
  }

  .timeline__inner {
    flex: 1 1 auto !important;
    min-height: 0 !important;
    height: auto !important;
    overflow-y: scroll !important;
    overflow-x: hidden !important;
    display: block !important;
    transform: none !important;
    padding: 0 1.5rem 4rem !important;
    -webkit-overflow-scrolling: touch !important;
    touch-action: pan-y !important;
    overscroll-behavior: contain !important;
  }

  .timeline__year {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-bottom: 3rem !important;
    flex: none !important;
  }
}

/* スマホ表示（画面幅768px以下）のスタイル */
@media screen and (max-width: 768px) {
    .vertical-copy {
        font-size: 18px !important; /* 日本語部分のサイズ（適宜調整してください） */
        line-height: 1.6 !important;
        left: 5% !important;        /* 画面端からの距離も微調整が必要な場合 */
        bottom: 5% !important;
    }

    .vertical-copy .hero-en {
        font-size: 14px !important; /* 英語部分をさらに一回り小さく */
        margin-top: 5px !important;
        display: block !important;
    }
}

#iframeForm{
 width:100%;
 height:2000px !important;
 border:none;
 border-radius:12px;
}

a[href*="select-type.com"]{
 display:inline-block;
 padding:14px 28px;
 background:#c9a86a;
 color:#111 !important;
 text-decoration:none !important;
 border-radius:8px;
 font-weight:700;
 margin-top:10px;
}

a[href*="select-type.com"]:hover{
 background:#e0bf7d;
}
a[href*="select-type.com"]{
   color:#131212 !important;
   font-weight:700;
   word-break:break-all;
}
a[href^="tel:"]{
   color:#ffffff !important;
   font-weight:700;
   letter-spacing:.03em;
}
.single-post .entry-content p a,
.single-post .entry-content a,
.post .entry-content a,
.entry-content a[href]{
    color:#f5f1e8 !important;
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

.single-post .entry-content a:hover,
.entry-content a:hover{
    color:#d6b36a !important;
}

.single-post .entry-content a:visited,
.entry-content a:visited{
    color:#f5f1e8 !important;
}

/* 動画の上に薄いベールを被せ、高級感と可読性を両立 */
.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* 28%程度の薄い黒。動画のノイズを消し、文字を浮かび上がらせます */
    background: rgba(0, 0, 0, 0.28); 
    z-index: 1;
}

.vertical-copy {
    z-index: 2; /* 文字をオーバーレイより上に */
    /* 以下の影を追加すると、山崎のような「浮かび上がる文字」になります */
    text-shadow: 0 0 15px rgba(0,0,0,0.5); 
}

#hero-copy {
  opacity: 0.2;
  transition:
    opacity 1.4s ease,
    filter 1.4s ease,
    transform 1.4s ease;
  filter: blur(2px);
}

#hero-copy.is-main-show {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
#hero-copy .hero-en {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(4px);

  transition:
    opacity 2.6s ease,
    transform 2.6s cubic-bezier(.22,.61,.36,1),
    filter 2.6s ease;
}

#hero-copy.is-en-show .hero-en {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}


/* ===============================
   CTA PC版 強制横並び
=============================== */
@media (min-width: 768px) {

  .cta__twoColumn{
    display:flex !important;
    flex-direction:row !important;
    align-items:center !important;
    justify-content:space-between;
    gap: 4vw;
  }

  .cta__left-column{
    width:50%;
    display:flex;
    justify-content:flex-end;
    align-items:flex-end;
  }

  .cta__right-column{
    width:50%;
    display:flex;
    align-items:center;
  }

  .cta__left-column img{
    max-width:90%;
    height:auto;
    display:block;
  }

}