@charset "UTF-8";

/* =========================================================
   1. 変数定義・ベーススタイル
========================================================= */
:root {
  --header-h: 5rem;
  --nav-h: 8rem;
  --pd-horizontal: 2rem;
  --pd-vertical: 1rem;
  --gap-h: 2.4rem;
  --gap-h--l: 4rem;
  --gap-v: 2rem;
  --gap-v--s: 1rem;
  --gap-v--ss: .6rem;
  --gap-v--m: 4rem;
  --gap-v--l: 6rem;
  --gap-v--xl: 8rem;
  --min-width: 1000px; /* patch.cssから統合 */
}

@media (min-width: 1025px) {
  :root {
    --header-h: 6rem;
    --nav-h: 5.5rem;
    --pd-horizontal: 4rem;
    --pd-vertical: 2rem;
    --gap-h: 5rem;
    --gap-h--l: 8rem;
    --gap-v: 5rem;
    --gap-v--s: 2rem;
    --gap-v--ss: 1.6rem;
    --gap-v--m: 6rem;
    --gap-v--l: 8rem;
    --gap-v--xl: 12rem;
  }
}

html, body {
  width: 100%;
  overflow-x: auto; /* patch.cssから統合: 横スクロール許可 */
}
li {
    margin: 0; padding: 0;
}

a:focus {
  outline: none;
}

/* =========================================================
   2. CMS上書きパッチ (patch.css 統合部分)
========================================================= */
@media (min-width: 1025px) {
    .ant-u-root {
        min-width: var(--min-width);
    }
    /*.ant-Nav__wrap {
        padding: 0 40px;
        max-width: 1280px;
    }*/
    .ant-Nav {
        min-width: var(--min-width);
        border-bottom: 0.1rem solid #ccc;
    }

}

@media screen and (min-width: 1025px) {
    .root {
        min-width: var(--min-width) !important;
    }
    footer {
        min-width: var(--min-width);
        font-size: 12px;
        padding: 0 0 30px;
        clear: both;
        overflow: hidden;
    }
}

@media only screen and (min-width: 1025px) {
    #header .navbar-default {
        min-width: 100%;
    }
}


/* =========================================================
   3. アニメーション・ヒーローセクション (インライン統合部分)
========================================================= */
.hero {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-color: #000;
}
@media (max-width: 768px) {
  .hero {
    aspect-ratio: 1 / 1;
  }
}
.hero video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.hero video.is-playing {
    opacity: 1;
}

/* アニメーション設定 */
.anime-fade {
    --start-scale: 2.4;
    --start-blur: 100px;
    --progress: 0;
}
.anime-fade > div {
    overflow: hidden;
}
.anime-fade img,
img.anime-fade {
    transform: scale(calc(1 + (var(--start-scale) - 1) * (1 - var(--progress))));
    -webkit-transform: scale(calc(1 + (var(--start-scale) - 1) * (1 - var(--progress))));
    filter: blur(calc(var(--start-blur) * (1 - var(--progress))));
    -webkit-filter: blur(calc(var(--start-blur) * (1 - var(--progress))));
    will-change: transform, filter;
}


/* =========================================================
   4. モックアップ追従UI・タブ (インライン統合部分)
========================================================= */
img { max-width: 100%; height: auto; display: inline-block; vertical-align: bottom;}
button { border: none; background: transparent; cursor: pointer; padding: 0; }

/* 購入ボタンのストップ基準 */
#glass-core-area {
    position: relative;
    clip-path: inset(0);
    /*z-index: 200;*/
    
    /* 背景画像の設定 
    background-image: url(../images/glass-background-gra.jpg);
    background-size: cover;
    background-position: top left;
    background-attachment: fixed;
    background-repeat: no-repeat;
    */
}
/* 背景用の疑似要素を、画面の一番奥（z-index: -1）に固定する
#glass-core-area::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    
    background-image: url(../images/glass-background-gra.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    z-index: -1;
    will-change: transform;
}
*/

/* 背景用の疑似要素を、画面の一番奥（z-index: -1）に固定する */
#glass-core-area::before {
    content: "";
    position: fixed; /* 画面に対して固定 */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    
    background-image: url(../images/glass-background-gra.jpg);
    background-size: 100% 100%;
    background-position: top;
    background-repeat: no-repeat;
    
    z-index: -1; /* コンテンツより奥に配置 */
    will-change: transform; /* スクロールのガタつき防止 */
}
/* .anime-glass のはみ出し表示用 spacer にも、同じ fixed 背景を表示する */
.anime-glass + .anime-blob-video-overflow-spacer {
  position: relative;
  overflow: hidden;
  clip-path: inset(0);
  background-color: rgb(6, 6, 6)!important;
  z-index: -1;
}

.anime-bunkai {
  position: relative;
  overflow: visible;
  clip-path: none;
  background-color: #293742;
}

/*.anime-bunkai::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(65, 74, 81);
  background-image: url(../images/bunkai-background.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}*/

.anime-bunkai > .ant-Feature__container {
  position: sticky;
  z-index: 1;
}

/* .anime-bunkai のはみ出し表示用 spacer にも、同じ fixed 背景を表示する */
.anime-bunkai + .anime-blob-video-overflow-spacer {
  position: relative;
  overflow: hidden;
  clip-path: inset(0);
  background-color: rgb(65, 74, 81);
}

/* .anime-bunkai::before と同じ fixed 背景を spacer 範囲内だけに表示 */
.anime-bunkai + .anime-blob-video-overflow-spacer::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #293742;
  z-index: 0;
}


/* タブエリア設定 */
.tab-section-wrapper { position: relative; }

/* ▼ JSの代わりにCSSで追従させる設定 ▼ */
.tab-container-wrap { 
    width: 100%; 
    position: -webkit-sticky; 
    position: sticky; 
    z-index: 150; 
    /* topの値はJS側でサブヘッダーの高さに合わせて自動入力させます */
}

/* すりガラス透け防止の白い板 */
.tab-container-wrap::before {
    content: "";
    position: absolute;
    /*bottom: 100%;*/
    bottom: 0;
    left: 0;
    width: 100%;
    height: 78px;
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    background-image: url(../images/glass-background-gra.jpg);
    background-size: 100%;
    background-position: top left;
    background-repeat: no-repeat;
}
.tab-container-wrap::after {
    content: "";
    position: absolute;
    /*bottom: 100%;*/
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: -1;
    pointer-events: none;

    /* グラデーション帯そのもの */
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.4) 100%
    );
}
.tab-btn::after {
    content: "";
    position: absolute;
    /*bottom: 100%;*/
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;
    z-index: -1;
    pointer-events: none;

    /* グラデーション帯そのもの */
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.6) 100%
    );
}
.tab-btn.is-active::after,
.tab-btn:hover:after{
  opacity: 0;
}


.tab-container-wrap.is-at-top::before {
    opacity: 1;
}

.tab-container {
  width: 100%; 
  height: 78px;
  padding-top: 10px; 
  /*background-color: #fff;*/
  display: flex; 
  justify-content: center; 
  gap: 20px; 
  border-bottom: 4px solid #333; 
  pointer-events: none;
    
  position: relative;
  z-index: 2;
  overflow: visible;

}
@media (max-width: 1024px) {
  /*.tab-container-wrap::before {
    height: 200px;
    background-size: auto 100vh;
  }*/
  .tab-container {
    gap: 0;
  }
  .tab-btn {
    padding: 1em 0;
  }
}

.tab-btn {
    cursor: pointer; 
    width: 50%; 
    display: flex; 
    align-items: center;
    justify-content: center;
    padding-top: 4px;
    opacity: 0.5; 
    transition: opacity 0.3s; 
    position: relative; 
    top: 4px;
    z-index: 1;
    pointer-events: all;
    
  /* 非アクティブはグラデーション帯より下 */
  z-index: 1;

}
.tab-btn:hover {
  opacity: 1;
  /*transition: top 0.1s;*/
  top: 0;
}
.tab-btn.is-active { 
  opacity: 1;
  z-index: 4;
  top: 4px;
  pointer-events: none;
}

/* 追従タブ (!important でCMS負け防止) */
.tab-container.is-fixed { 
    position: fixed !important; 
    left: 0 !important; 
    width: 100% !important; 
    z-index: 150 !important; 
}
/* すりガラス透け防止の白い板 */
.tab-container.is-fixed::before {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 0;
    width: 100%;
    height: 150px;
    background-color: #fff;
    z-index: -1;
    pointer-events: none;
}
.tab-container.is-absolute { 
    position: absolute !important; 
    bottom: 0 !important; 
    left: 0 !important; 
    top: auto !important; 
    z-index: 150 !important;
}

/* タブコンテンツのアニメーション */
.tab-contents-wrap {
  width: 100%;
  position: relative;
  z-index: 2;
}

/* 影グラデーション帯 */
.tab-contents-wrap::before {
  content: "";
  position: absolute;
  left: 0;
  top: -30px;
  width: 100%;
  height: 30px;
  pointer-events: none;

  /* グラデーション帯そのもの 
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );*/
  /* 非アクティブタブより上、アクティブタブより下 */
  z-index: 3;
}

.tab-content { display: none; padding: 30px 0; background-color: #fff; }
.tab-content.is-active { display: block; }

@keyframes slideInLeft { 0% { transform: translateX(-500px); opacity: 0; } 100% { transform: translateX(0); opacity: 1; } }
@keyframes slideInRight { 0% { transform: translateX(500px); opacity: 0; } 100% { transform: translateX(0); opacity: 1; } }
.is-slide-left { animation: slideInLeft 0.4s cubic-bezier(0.25, 1, 0.5, 1); }
.is-slide-right { animation: slideInRight 0.4s cubic-bezier(0.25, 1, 0.5, 1); }

/* 下部追従 購入ボタン (!important強化版) */
.fixed-bottom-bar {
    position: fixed; 
    bottom: 0; 
    left: 0; 
    width: 100%; 
    display: flex;
    justify-content: center; 
    gap: 20px; 
    z-index: 999 !important;
    transform: translateY(100%); 
    transition: transform 0.3s ease-in-out;
}
.fixed-bottom-bar.is-visible { transform: translateY(0); }
.fixed-bottom-bar button { width: 300px; }

.fixed-bottom-bar.is-absolute {
    position: absolute !important;
    bottom: 0 !important;
    transform: translateY(0) !important;
    transition: none !important; 
}


/* =========================================================
   5. 既存メインCSS (モジュール・コンポーネント群)
========================================================= */

/* swiper周り */
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  pointer-events: inherit;
  opacity: 0;
}
.swiper {
  position: initial;
}

/* gap control */
.mt-s {margin-top: var(--gap-v--s)!important ;}
.mt-m {margin-top: var(--gap-v--m)!important ;}
.mt-l {margin-top: var(--gap-v--l)!important ;}
.m-s {margin: var(--gap-v--s)  auto!important;}
.m-l {margin: var(--gap-v--l)  auto!important;}
.px {padding: 0 var(--gap-v);}

/* =========================================================
   CMS(AEM)環境によるSticky(追従)阻害の強制解除
========================================================= */
body {
    overflow-x: clip !important;
    background-color: #fff;
}

.sticky_category_menu {
    position: relative;
}



/* =========================================================
   ベーススタイル（SP・PC共通 / スマートフォンファースト）
========================================================= */

/* 共通ブロックパーツ */
.ant-block__wrapper {
  width: calc(100% - var(--gap-h) * 2);
  margin: var(--gap-v) auto;
}
.ant-block__head {
  font-size: 2.6rem;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
  font-weight: 600;
  text-align: center;
  margin: calc(var(--gap-v--s) * 1.5) auto;
}
.ant-block__text {
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: center;
  display: inline-block;
}
.ant-block__figure {
  margin: var(--gap-v) auto;
  width: 100%;
}
.ant-block__img {
  width: 100%;
  height: auto;
}

/* ユーティリティ・表示制御 */
.ant-brSP {
  display: block;
}
.ant-brPC {
  display: none;
}

/* ボタン */
.ant-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
  color: #fff;
  padding: .4rem 1.6rem;
  border-radius: 100rem;
  transition: opacity 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
.ant-btn:hover {
  opacity: .7;
}
.ant-btn--ghost {
  color: #333;
  border: 1px solid #333;
}
.ant-btn--white {
  color: #ffffff;
  border: 1px solid #fff;
}
.ant-btn--rect {
  border-radius: 0;
}
.ant-btn--bg-blue {
  background-color: #428ee6;
}
.ant-btn--bg-black {
  background-color: #333;
}
.ant-closeBtn {
  cursor: pointer;
}
.ant-closeBtn::before,
.ant-closeBtn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.ant-closeBtn::before {
  transform: translate3d(-50%, -50%, 0) rotate(-45deg);
}
.ant-closeBtn::after {
  transform: translate3d(-50%, -50%, 0) rotate(45deg);
}

/* swiperボタン */
.ant-swiperBtn__next,
.ant-swiperBtn__prev {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  transition: opacity 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
.ant-swiperBtn__next::after,
.ant-swiperBtn__prev::after {
  transform: scale(0.5);
}
.ant-swiperBtn__next {
  padding-left: .3rem;
  right: 1rem;
}
.ant-swiperBtn__prev {
  padding-right: .3rem;
  left: 1rem;
}

/* グラデーション */
.ant-gradient {
  position: relative;
}
.ant-gradient::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0) 40%);
  z-index: 1;
}
.ant-gradient--toBottom::before {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0) 40%);
}
.ant-gradient--toTop::before {
  background: linear-gradient(to top, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0) 40%);
}
.ant-gradient--toLeft::before {
  background: linear-gradient(to left, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0) 40%);
}
.ant-gradient--black::before {
  filter: invert(100%);
}

/* 画像設定 */
.ant-img {
  width: 100%;
  height: auto;
}
.ant-img--100 {
  width: auto;
  height: auto;
  max-width: none;
}
.ant-img--cover {
  height: 100%;
  object-fit: cover;
}
.ant-img--contain {
  height: 100%;
  object-fit: contain;
}
.ant-img--bg {
  position: absolute;
  top: 0;
  left: 0;
}

/* ページャー設定 */
.ant-pager {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  box-sizing: border-box;
  margin: var(--gap-v--ss) 0 var(--gap-v) 0;
  overflow: visible;
  z-index: 10;
}
.ant-pager__bullets {
  justify-content: center;
  align-items: center;
  width: 100%;
}
.ant-pager__bullet {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 100%;
  border: 1px solid #ccc;
  cursor: pointer;
  margin: 0 .5rem;
}
.ant-pager__bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: calc(2.3rem + 1rem);
  height: calc(2.3rem + 1rem);
  border-radius: 100%;
  transition: all 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  border: 2px solid #ff0000;
  opacity: 0;
}
.ant-pager__bullet.swiper-slide-thumb-active::after {
  width: calc(2.3rem + .6rem);
  height: calc(2.3rem + .6rem);
  opacity: 1;
}

/* 見出し (ヘッド) */
.ant-head {
  font-size: 1.8rem;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 var(--gap-v--s) 0;
}
.ant-head--s {
  font-size: clamp(14px, 3.13vw, 24px);
  margin: 0 0 calc(var(--gap-v) / 2) 0;
}
.ant-head--ss {
  font-size: 1.3rem;
  margin: 0 0 calc(var(--gap-v) / 2) 0;
}
.ant-head--l {
  font-size: 2.3rem;
  margin: 0 0 calc(var(--gap-v) / 2) 0;
}
.ant-head--30 {
  font-size: 2.0rem;
}
.ant-head--40 {
  font-size: clamp(1.8rem, 3.33vw, 4.0rem);
}
.ant-head--xl,
.ant-head--xl2 {
  font-size: 6.0vw;
  line-height: 1.1;
}
.ant-head--xl sup,
.ant-head--xl2 sup {
  font-size: 1.4rem;
  top: -1.2rem;
}
.ant-head--mainCopy {
  text-align: center;
  font-size: 2.6rem;
  padding: 0 var(--gap-h);
  margin: var(--gap-v--xl) 0 var(--gap-v--s) 0;
}
.ant-head--underbar {
  text-align: center;
  font-size: 2.4rem;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
  font-weight: 600;
}
.ant-head--underbar::after {
  content: "";
  display: block;
  margin: 1rem auto 2rem;
  width: 5rem;
  height: .5rem;
  background-color: #d0af4c;
}

/* テキスト設定 */
.ant-text {
  font-size: 1.4rem;
  line-height: 1.6;
  margin: 0 0 var(--gap-v) 0;
}
.ant-text--s {
  font-size: clamp(11px, 1.82vw, 14px);
}
.ant-text--link {
  font-size: 1.2rem;
}
.ant-text--note {
  font-size: 1.2rem;
  margin: 0 0 var(--gap-v--s) 0;
}

/* リンク */
.ant-blankLink {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
.ant-blankLink:hover {
  opacity: .5;
}
.ant-blankLink::after {
  content: "";
  display: inline-block;
  position: relative;
  margin: 0 0 0 .6rem;
  width: 1.4rem;
  height: 1.4rem;
  background-image: url(../img/common/icon_blank-black.png);
  background-repeat: no-repeat;
  background-size: contain;
}
.ant-blankLink--white::after {
  background-image: url(../img/common/icon_blank-white.png);
}

/* コンポーネント: CardSlider */
.ant-CardSlider {
  position: relative;
  margin: calc(var(--gap-v)/2) auto var(--gap-v) auto;
  width: 100%;
  max-width: 140rem;
}
.ant-CardSlider__slider {
  width: 100%;
  max-width: 120rem;
  padding: 1rem 0;
}
.ant-CardSlider__wrapper {
  width: 100%;
}
.ant-CardSlider__slide {

  width: 100%;
  height: auto;
  background-color: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  filter: drop-shadow(0 0 0.4rem rgba(0, 0, 0, 0.3));
}
.ant-CardSlider__figure,
.ant-CardSlider__figure--contain {
  aspect-ratio: 4 / 3;
}
.ant-CardSlider__cntWrap {
  padding: calc(var(--gap-h) / 2) calc(var(--gap-h) / 3);
  text-align: center;
  background-color: #fff;
}
.ant-CardSlider__cntWrap *:last-child {
  margin-bottom: 0;
}

/* コンポーネント: Col */
.ant-Col {
  display: flex;
  justify-content: center;
  width: 100%;
  /*max-width: 100rem;*/
  margin: var(--gap-v) auto;
  gap: var(--gap-v);
}
.ant-Col-wrap {
  flex-wrap: wrap;
}
.ant-Col > * {
  flex-grow: 1;
}
.ant-Col > div {
  width: 100%;
}

.ant-Col--two > div {
  width: 50%;
}
.ant-Col--three > div {
  width: 33%;
}


/* コンポーネント: Drawer */
.ant-Drawer {
  width: 100%;
  margin: var(--gap-v--l) auto;
  padding: 0 var(--gap-h);
}
.ant-Drawer__list {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}
.ant-Drawer__head {
  position: relative;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  padding: var(--gap-v) 0;
  cursor: pointer;
}
.ant-Drawer__head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 1.6rem;
  height: 1.6rem;
  border-top: 2px solid #969696;
  border-left: 2px solid #969696;
  transform: translate3d(0, -40%, 0) rotate(225deg);
  transition: transform 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
.ant-Drawer__head.is-act::after {
  transform: translate3d(0, 20%, 0) rotate(45deg);
}
.ant-Drawer__body {
  position: relative;
}
.ant-Drawer__body--full {
  width: calc(100% + var(--gap-h) * 2);
  left: 50%;
  transform: translateX(-50%);
}
.ant-Drawer__border {
  width: 100%;
  margin: 0 auto;
  border-top: 2px solid #ccc;
}
.ant-Drawer__btnWrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 120rem;
  /*margin: var(--gap-v) auto;*/
}
.ant-Drawer__btnWrap > a {
  width: 100%;
  height: 6rem;
  /*margin: var(--gap-v--s) auto;*/
  border-radius: 3rem;
}
.ant-Drawer__col {
  justify-content: space-between;
}
.ant-Drawer__modalTrigger {
  cursor: pointer;
}
.ant-Drawer__caption {
  position: relative;
  transition: opacity 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
.ant-Drawer__caption:hover {
  opacity: .5;
}
.ant-Drawer__caption::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate3d(0, -40%, 0);
  margin: 0 0 0 .6rem;
  width: 1.4rem;
  height: 1.4rem;
  background-image: url(../img/common/icon_zoom.png);
  background-size: contain;
}
.ant-Drawer__modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100vh;
}
.ant-Drawer__modal.is-visible {
  display: flex;
}
.ant-Drawer__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.ant-Drawer__closeBtn {
  position: absolute;
  top: 5%;
  right: var(--gap-h);
  width: 5rem;
  height: 5rem;
}
.ant-Drawer__modalImages {
  width: calc(100% - var(--gap-h) * 2);
  position: relative;
  margin: auto;
}
.ant-Drawer__modalImage {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  max-width: 120rem;
  height: auto;
}

/* コンポーネント: FadeSlider */
.ant-FadeSlider {
  margin: 0;
}
.ant-FadeSlider__images {
  width: 100%;
  height: 100%;
}
.ant-FadeSlider__slide {
  display: flex;
  justify-content: center;
  position: relative;
  background-color: #fff;
  width: 100%;
  max-width: 100%;
  min-height: 35rem;
  aspect-ratio: 3 / 4;
  padding: var(--gap-h);
}
.ant-FadeSlider__cntWrap {
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
}
.ant-FadeSlider__cntWrap > *:last-child {
  margin-bottom: 0;
}
.ant-FadeSlider__cntWrap--top {
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
.ant-FadeSlider__cntWrap--bottom {
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}
.ant-FadeSlider__cntWrap--left {
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}
.ant-FadeSlider__cntWrap--right {
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}
.ant-FadeSlider__cntWrap--white {
  color: #fff;
}
.ant-FadeSlider__cntWrap--black {
  color: #333;
}

/* コンポーネント: Feature */
.ant-Feature {
  width: 100%;
  margin: 0 auto;
  border-radius: unset;
  position: relative;
}
/*
.ant-Feature > div {
  height: 100%;
}
.ant-feauter-height--long > div {
  aspect-ratio: 1300 / 1300;
}
.ant-feauter-height--short > div {
  aspect-ratio: unset;
  padding-top: var(--gap-v--xl) !important;
  padding-bottom: var(--gap-v--xl) !important;
}
*/
/*
.ant-Feature.ant-u-max-width--1000px > div {
  padding: var(--gap-h--l) calc((100% - 100rem) / 2 + var(--gap-h));
}
.ant-Feature.ant-u-max-width--1200px > div {
  padding: var(--gap-h--l) calc((100% - 120rem) / 2 + var(--gap-h));
}
*/
.ant-Feature__container {
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 2 / 3;
  padding: calc(var(--gap-h) / 2);
}
.ant-Feature__container--sub {
  aspect-ratio: 1 / 1;
}
.ant-Feature__container--top {
  justify-content: flex-start;
  align-items: center;
}
.ant-Feature__container--center {
  justify-content: center;
  align-items: center;
  overflow: unset;
}
.ant-Feature__container--bottom {
  justify-content: flex-end;
  align-items: center;
}
.ant-Feature__container--left {
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
}
.ant-Feature__container--leftTop {
  justify-content: flex-start;
  align-items: center;
  text-align: left;
}
.ant-Feature__container--leftBottom {
  justify-content: flex-end;
  align-items: left;
  text-align: left;
}
.ant-Feature__container--right {
  justify-content: flex-start;
  align-items: flex-end;
  text-align: left;
}
.ant-Feature__container--black {
  background-color: #000;
}
.ant-Feature__bgImg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ant-Feature__cntWrap {
  position: relative;
  z-index: 2;
}
.ant-Feature__cntWrap--white {
  color: #fff;
}
.ant-Feature__cntWrap--black {
  color: #333;
}
.ant-Feature__cntWrap > *:last-child {
  margin-bottom: 0;
}
.ant-Feature__subArea {
  width: 100%;
  gap: var(--gap-v);
}
.ant-Feature__subArea--column {
  flex-direction: column;
  text-align: center;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: calc(var(--gap-h) / 2);
  background-color: #f4f4f4;
}
.ant-Feature__subArea--column img {
  width: auto;
  max-width: 100%;
  margin: 0 auto var(--gap-v--s) auto;
}
.ant-Feature__subArea--column p {
  margin: 0 0 var(--gap-v--s);
}
.ant-Feature__img {
  width: 100%;
  height: auto;
  margin: 0 0 var(--gap-v) 0;
}
.ant-Feature__btn {
  position: relative;
  align-items: center;
  width: 100%;
  height: 4rem;
  background-color: #000000;
  z-index: 2;
  cursor: pointer;
  filter: drop-shadow(0 -2px 12px rgba(0, 0, 0, 0.1));
}
.ant-Feature__btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border-bottom: 2px solid #969696;
  border-right: 2px solid #969696;
  transform: translate3d(-50%, -80%, 0) rotate(45deg);
  transition: transform 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
.ant-Feature__btn.is-act::after {
  transform: translate3d(-50%, -20%, 0) rotate(225deg);
}
.ant-Feature .ant-Video {
  width: 70%;
  margin: var(--gap-h) auto;
}
.ant-Feature__containerRounded {
  border-radius: 1.2rem;
}

/* コンポーネント: GallerySlider */
.ant-GallerySlider {
  margin: calc(var(--gap-v)/2) auto var(--gap-v) auto;
  position: relative;
  max-width: 140rem;
}
.ant-GallerySlider--small {
  max-width: 120rem;
}
.ant-GallerySlider__images {
  width: 100%;
  max-width: 120rem;
  height: auto;
}
.ant-GallerySlider--small .ant-GallerySlider__images {
  max-width: 100rem;
}
.ant-GallerySlider__slide {
  height: auto;
}
.ant-GallerySlider--small .ant-GallerySlider__slide {
  padding: var(--gap-v);
}
.ant-GallerySlider__figure {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
}
.ant-GallerySlider__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ant-GallerySlider__modal {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999;
  width: 100%;
  height: 100vh;
}
.ant-GallerySlider__modal.is-visible {
  display: flex;
}
.ant-GallerySlider__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
.ant-GallerySlider__closeBtn {
  position: absolute;
  top: 5%;
  right: var(--gap-h);
  width: 5rem;
  height: 5rem;
}
.ant-GallerySlider__modalImages {
  width: calc(100% - var(--gap-h) * 2);
  position: relative;
}
.ant-GallerySlider__modalSlide {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* コンポーネント: HeroSlider */
.ant-HeroSlider {
  display: grid;
  grid-template-rows: auto;
  grid-template-columns: auto auto auto;
  grid-template-areas: "images" "header" "pager";
  position: relative;
  width: 100%;
  min-height: 600px;
  margin: auto;
}
.ant-HeroSlider__images {
  grid-area: images;
  width: 100%;
  height: auto;
}
.ant-HeroSlider__slide {
  background-color: unset;
}
.ant-HeroSlider__figure {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ant-HeroSlider__img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0px 0px rgba(0, 0, 0, 0));
}
.ant-HeroSlider__main {
  grid-area: header;
  width: 100%;
  text-align: center;
  padding: 0 var(--gap-h);
  margin: var(--gap-v--s) 0;
}
.ant-HeroSlider__header {
  align-items: center;
  position: initial;
  display: inline-block;
  width: auto;
}
.ant-HeroSlider__badge {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: var(--gap-v);
  left: var(--gap-h);
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  border: 1px solid #ff0000;
  color: #ff0000;
  font-size: 1.6rem;
  z-index: 1;
}
.ant-HeroSlider__head {
  display: inline-block;
  font-size: 3.2rem;
  font-weight: 600;
  font-family: Frutiger, Helvetica, sans-serif;
  margin: var(--gap-v--ss) 0;
}
.ant-HeroSlider__text {
  margin: var(--gap-v--ss) 0;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.4;
}
.ant-HeroSlider__pager {
  grid-area: pager;
}

/* コンポーネント: Nav */
.ant-Nav {
  width: 100%;
  z-index: 99999;
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border-top: 0.1rem solid #ccc;
  position: sticky;
  top: 0;
}
.ant-Nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
}
.ant-Nav__wrap {
  display: grid;
  grid-template-rows: calc(var(--nav-h) / 2) calc(var(--nav-h) / 2);
  grid-template-columns: auto 1fr;
  grid-template-areas: "head btns" "nav nav";
  width: 100%;
  max-width: 1260px;
  height: auto;
  margin: 0 auto;
}
.ant-Nav__head {
  grid-area: head;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0 var(--gap-v--s) 0 15px;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
  font-weight: 600;
  /*font-size: 1.9rem;*/
  font-size: clamp(12px, 2.34vw, 24px);
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.ant-Nav__btns {
  grid-area: btns;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 var(--gap-h);
  margin: 0 var(--gap-v--ss);
}
.ant-Nav__nav {
  grid-area: nav;
  position: relative;
  width: 100%;
  overflow: visible;
  border-top: 0.1rem solid #ccc;
  border-bottom: 0.1rem solid #ccc;
  margin: 0 12px;
}
.ant-Nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  margin: 0 var(--gap-h);
}
.ant-Nav__listLink {
  font-size: 1.2rem;
  transition: color 0.2s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
.ant-Nav__listLink:hover {
  color: #ff0000;
}
.ant-Nav__bar {
  position: absolute;
  bottom: -0.1rem;
  left: 0;
  width: 100%;
  height: 0.1rem;
  background-color: #ccc;
}
.ant-Nav__bar > * {
  background-color: #ff0000;
}

/* コンポーネント: ProductCard */
.ant-ProductCard {
  margin: var(--gap-v) auto;
  width: calc(100% - var(--gap-h) * 2);
  border-radius: 1.2rem;
  overflow: hidden;
  background-color: #fff;
  filter: drop-shadow(0 0 0.4rem rgba(0, 0, 0, 0.3));
  padding: var(--gap-h);
}
.ant-ProductCard__body {
  width: 100%;
  margin: 0;
  position: relative;
}
.ant-ProductCard__images {
  width: 100%;
  height: 100%;
  margin: 0 0 var(--gap-v) 0;
  padding: 0 calc(var(--gap-h));
}
.ant-ProductCard__slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.ant-ProductCard__figure {
  width: 100%;
  aspect-ratio: 4 / 3;
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.250, 0.100, 0.250, 1.000);
}
.swiper-slide-active .ant-ProductCard__figure {
  opacity: 1;
}
.ant-ProductCard__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ant-ProductCard__nav {
  position: absolute;
  width: 3rem;
  height: 3rem;
}
.ant-ProductCard__nav--next {
  right: -1rem;
}
.ant-ProductCard__nav--prev {
  left: -1rem;
}
.ant-ProductCard__nav::after {
  transform: scale(0.3);
}
.ant-ProductCard__pager {
  position: relative;
  margin: var(--gap-v) 0 var(--gap-v) 0;
}
.ant-ProductCard__bullet {
  position: relative;
}
.ant-ProductCard__input {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 10;
  opacity: 0;
  cursor: pointer;
  display: none;
}
.ant-ProductCard__label {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 1;
  border-radius: 50%;
  pointer-events: none;
}
.ant-ProductCard__header {
  width: 100%;
  margin: 3rem 0 var(--gap-v) 0;
  text-align: center;
}
.ant-ProductCard__header > *:last-of-type {
  margin-bottom: 0;
}
.ant-ProductCard__logoWrap {
  width: 100%;
  max-width: 21rem;
  margin: 0 auto var(--gap-v--ss) auto;
}
.ant-ProductCard__logo {
  width: 100%;
  height: auto;
}
.ant-ProductCard__text {
  font-size: 1.3rem;
  line-height: 1.6;
  margin: 0 0 var(--gap-v) 0;
}
.ant-ProductCard__head {
  font-size: 1.9rem;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
  font-weight: 600;
}
.ant-ProductCard__price {
  font-size: 2rem;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
  font-weight: 600;
}
.ant-ProductCard__tax {
  font-size: 1.3rem;
  font-family: "FP-ヒラギノ角ゴ ProN W6";
  font-weight: 600;
}
.ant-ProductCard__btnWrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--gap-v--s);
  margin: 1.6rem 0;
}
.ant-ProductCard__textSmall {
  font-size: 1.2rem;
  line-height: 1.6;
  margin: 0;
}

/* コンポーネント: Section / Table / Video */
.ant-Section {
  margin: var(--gap-v--l) 0;
}
.ant-Table {
  width: 100%;
  margin: var(--gap-v) 0;
  display: flex;
}
.ant-Table__row {
  margin: var(--gap-v) 0;
}
.ant-Table__head {
  padding: 0 var(--gap-h) var(--gap-v--s) 0;
  white-space: nowrap;
}
.ant-Table__body {
  padding: 0 var(--gap-h) var(--gap-v--s) 0;
  vertical-align: middle;
}
.ant-subTable {
  width: 100%;
  margin: var(--gap-v) 0;
}
.ant-subTable th {
  padding: 0.4em;
  text-align: center;
  border: solid 1px #aaa;
}
.ant-subTable td {
  padding: 0.4em;
  text-align: center;
  border: solid 1px #aaa;
}
.ant-subTable .ant-head--ss {
  font-size: 1.4rem;
}
.ant-Video {
  position: relative;
  width: calc(100% - var(--gap-h) * 2);
  margin: var(--gap-v--l) auto;
}
.ant-Video__video {
  width: 100%;
  height: 100%;
  border-radius: 1.2rem;
}
.ant-Video__btn {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%, -50%, 0);
  width: 8rem;
  height: 8rem;
  border: 2px solid #fff;
  border-radius: 50%;
  transition: opacity 0.3s cubic-bezier(0.250, 0.100, 0.250, 1.000);
  cursor: pointer;
}
.ant-Video__btn:hover {
  opacity: .5;
}
.ant-Video__btn.is-playing {
  opacity: 0;
}
.ant-Video__btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 35%;
  transform: translateY(-50%);
  width: 0px;
  height: 0px;
  border: 1.8rem solid transparent;
  border-left: 3rem solid currentColor;
  box-sizing: border-box;
  color: #fff;
}
.ant-Video iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 560 / 315;
  overflow: hidden;
  border-radius: 1.2rem;
}

/* その他ユーティリティ */
.container-col {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ant-u-root {
  width: 100%;
  overflow: visible !important;
}
.ant-u-max-width--1200px {
  max-width: 120rem;
}
.ant-u-max-width--1000px {
  max-width: 100rem;
}
.ant-u-bg--lightGray {
  background-color: unset;
  position: relative;
}
.ant-u-bg--lightGray::after {
  content: "";
  width: 100%;
  height: 80px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, #f4f4f4, transparent 100%);
  z-index: 2;
}
.ant-u-color--white {
  color: #fff;
}
.ant-u-color--black {
  color: #333;
}
.ant-u-posX--left {
  text-align: left;
  margin-right: auto;
}
.ant-u-posX--center {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
.ant-u-posX--right {
  text-align: right;
  margin-left: auto;
}
.ant-u-posY--top {
  justify-content: flex-start;
}
.ant-u-posY--middle {
  justify-content: center;
}
.ant-u-posY--bottom {
  justify-content: flex-end;
}
.ant-u-sp--block {
  display: block;
}
.ant-u-pc--block {
  display: none;
}

.ant-wide___1200px {
  width: 1200px!important;
  margin: 0 auto!important;
  position: relative!important;
}

/* =========================================================
   スマートフォン専用スタイル (max-width: 1024px)
========================================================= */
@media (max-width: 1024px) {
  /* コンポーネント: Col */
  .ant-Col--spRow {
    flex-direction: column;
  }
  .ant-Col--spRow > div {
    width: 100%;
  }
  .ant-Col--sp2Col > div {
    width: 50%;
  }
  .ant-Col--sptwo > div {
  width: 50%;
  }
  .ant-Col--spthree > div {
    width: 33%;
  }

  .ant-img {
    width: 100%;
    height: auto;
  }
  .ant-img--100 {
    width: 100%;
   }
   .ant-Fature {
    padding: 0 var(--gap-v);
   }
   
  /* コンポーネント: Feature 
  .ant-Feature > div {
    aspect-ratio: 750 / 1000;
  }
  .ant-feauter-height--long > div {
    aspect-ratio: 750 / 1200;
  }
  .ant-feauter-height--short > div {
    aspect-ratio: unset;
    padding: var(--gap-v--xl) calc(var(--gap-h)) !important;
  }
  */
  /*
  .ant-Feature.ant-u-max-width--1000px > div,
  .ant-Feature.ant-u-max-width--1200px > div {
    padding: var(--gap-h);
  }
    */
  .ant-Feature__container--left,
  .ant-Feature__container--right {
    justify-content: flex-start;
    text-align: center;
    padding: 0;
    aspect-ratio: 4 / 3;
  }
  .ant-Feature__container--left img,
  .ant-Feature__container--right img {
    position: absolute;
  }
  .ant-Feature__container--center {
    aspect-ratio: auto;
  }
  .ant-Feature__container--leftTop {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    aspect-ratio: 4 / 3;
  }
  .ant-Feature__container--leftTop img {
    position: relative;
  }
  .ant-Feature__container--leftBottom {
    justify-content: flex-start;
    align-items: flex-start;
    text-align: left;
    padding: 0;
    aspect-ratio: 4 / 3;
  }
  .ant-Feature__container--leftBottom img {
    position: relative;
  }
  .ant-Feature__cntWrap--bottom {
    width: 100%;
    background-color: #f4f4f4;
    padding: var(--gap-h) calc(var(--gap-h) / 2);
    color: #333;
  }
  .ant-Feature__cntWrap--center {
    padding: var(--gap-h) calc(var(--gap-h) / 2);
    color: #333;
  }
  .ant-Feature .ant-Video {
    width: 100%;
    margin: 0;
  }

  /* 見出し (ヘッド) */
  .ant-head--xl sup,
  .ant-head--xl2 sup {
    top: -3vw;
  }

  /* コンポーネント: Table */
  .ant-Table__head {
    padding: 0;
    display: block;
    width: 100%;
    margin: 0 0 calc(var(--gap-v) / 4) 0;
  }
  .ant-Table__body {
    padding: 0;
    display: block;
    width: 100%;
  }
}


/* =========================================================
   タブレット・PCサイズ用スタイル (min-width: 1025px)
========================================================= */
@media (min-width: 1025px) {
  /* 共通ブロックパーツ */
  .ant-block__head {
    font-size: 6.4rem;
  }
  .ant-block__text {
    font-size: 1.8rem;
  }

  /* ユーティリティ・表示制御 */
  .ant-brSP {
    display: none;
  }
  .ant-brPC {
    display: block;
  }
  .ant-u-sp--block {
    display: none;
  }
  .ant-u-pc--block {
    display: block;
  }

  /* ボタン */
  .ant-btn {
    font-size: 1.5rem;
    padding: .6rem 2.2rem;
  }
  .ant-swiperBtn__next,
  .ant-swiperBtn__prev {
    width: 7rem;
    height: 7rem;
  }

  /* ページャー設定 */
  .ant-pager__bullet {
    width: 1.8rem;
    height: 1.8rem;
  }
  .ant-pager__bullet::after {
    width: calc(1.8rem + 1rem);
    height: calc(1.8rem + 1rem);
  }
  .ant-pager__bullet.swiper-slide-thumb-active::after {
    width: calc(1.8rem + .6rem);
    height: calc(1.8rem + .6rem);
  }

  /* 見出し (ヘッド) */
  .ant-head {
    font-size: 3rem;
  }
  .ant-head--s {
    font-size: clamp(14px, 2.00vw, 24px);
    margin: 0 0 calc(var(--gap-v--s) / 2) 0;
  }
  .ant-head--ss {
    font-size: 1.5rem;
    margin: 0 0 calc(var(--gap-v--s) / 2) 0;
  }
  .ant-head--l {
    font-size: 2rem;
    margin: 0 0 calc(var(--gap-v--s) / 2) 0;
  }
  .ant-head--30 {
    font-size: 3rem;
  }
  .ant-head--40 {
    font-size: clamp(1.8rem, 3.33vw, 4.0rem);
  }
  .ant-head--xl,
  .ant-head--xl2 {
    font-size: 5.4rem;
  }
  .ant-head--xl sup {
    font-size: 2rem;
    top: -4.0rem;
  }
  .ant-head--mainCopy {
    font-size: 8rem;
  }
  .ant-head--underbar {
    font-size: 3rem;
  }

  /* テキスト設定 */
  .ant-text {
    font-size: 1.8rem;
  }
  .ant-text--s {
    font-size: 1.5rem;
  }
  .ant-text--note {
    font-size: 1.2rem;
  }

  /* コンポーネント: CardSlider */
  .ant-CardSlider__slider {
    padding: 1rem;
    width: calc(100% + 2rem);
  }

  /* コンポーネント: Drawer */
  .ant-Drawer__head {
    padding: calc(var(--gap-v) / 2) 0;
  }
  .ant-Drawer__btnWrap {
    flex-direction: row;
    gap: var(--gap-v--s);
  }
  .ant-Drawer__btnWrap > a {
    height: 5rem;
    line-height: 1.2;
  }
  .ant-Drawer__modalImages {
    max-width: 70%;
    max-height: 90%;
  }

  /* コンポーネント: FadeSlider */
  .ant-FadeSlider__slide {
    aspect-ratio: 16 / 9;
  }
  .ant-FadeSlider__cntWrap {
    width: 80%;
  }
  .ant-FadeSlider__cntWrap--left {
    justify-content: center;
    align-items: flex-start;
    text-align: left;
  }
  .ant-FadeSlider__cntWrap--right {
    justify-content: center;
    align-items: flex-end;
    text-align: left;
  }

  /* コンポーネント: Feature */
  .ant-Feature__container {
    aspect-ratio: 16 / 9;
  }
  .ant-Feature__container--sub {
    width: 50%;
  }
  .ant-Feature__subArea {
    display: flex;
  }

  /* コンポーネント: GallerySlider */
  .ant-GallerySlider__figure--modal {
    aspect-ratio: 16 / 9;
  }
  .ant-GallerySlider__modalImages {
    max-height: 90%;
    max-width: 120rem;
  }

  /* コンポーネント: HeroSlider */
  .ant-HeroSlider {
    grid-template-rows: auto;
    grid-template-columns: 45% 55%;
    grid-template-areas: "header images";
  }
  .ant-HeroSlider__main {
    flex-direction: column;
    justify-content: center;
    text-align: left;
    padding: 0;
  }
  .ant-HeroSlider__main--withBadge {
    margin: var(--gap-v--s) 0 calc(var(--gap-v--s) + 7.5rem) 0;
  }
  .ant-HeroSlider__header {
    position: relative;
  }
  .ant-HeroSlider__badge {
    position: initial;
    width: 7.5rem;
    height: 7.5rem;
    font-size: 2.4rem;
    top: -7.5rem;
    left: 0;
  }
  .ant-HeroSlider__head {
    font-size: 7.2rem;
  }
  .ant-HeroSlider__text {
    font-size: 3rem;
  }
  .ant-HeroSlider__pager {
    position: absolute;
    bottom: 0;
    left: 0;
  }

  /* コンポーネント: Nav */
  .ant-Nav {
    /*min-width: 128rem;*/
    border-bottom: 0.1rem solid #ccc;
  }
  .ant-Nav__wrap {
    grid-template-rows: var(--nav-h);
    grid-template-columns: auto 1fr auto;
    grid-template-areas: "head nav btns";
  }
  .ant-Nav__head {
    font-size: 2rem;
    margin: 0 var(--gap-v--s) 0 30px;
  }
  .ant-Nav__btns {
    margin: 0 0 0 var(--gap-v--s);
  }
  .ant-Nav__nav {
    width: auto;
    border: none;
    margin: 0 0 0 auto;
    overflow: hidden;
  }
  .ant-Nav__list {
    margin: 0 0 0 var(--gap-h);
  }
  .ant-Nav__listLink {
    font-size: 1.5rem;
  }

  /* コンポーネント: ProductCard */
  .ant-ProductCard {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    padding: 5rem 10rem;
  }
  .ant-ProductCard__body {
    width: 60%;
  }
  .ant-ProductCard__images {
    margin: 0;
    padding: 0 calc(var(--gap-h));
  }
  .ant-ProductCard__nav {
    width: 5rem;
    height: 5rem;
  }
  .ant-ProductCard__nav::after {
    transform: scale(0.4);
  }
  .ant-ProductCard__pager {
    bottom: 0;
    left: 0;
    margin: var(--gap-v--s) 0 0 0;
  }
  .ant-ProductCard__header {
    width: 40%;
    padding: 0;
    margin: 0;
  }
  .ant-ProductCard__logoWrap {
    max-width: 24rem;
    margin: 0 auto 1rem auto;
  }
  .ant-ProductCard__text {
    font-size: 1.5rem;
    margin: 0 0 var(--gap-v--s) 0;
  }
  .ant-ProductCard__head {
    font-size: 2rem;
  }
  .ant-ProductCard__price {
    font-size: 3rem;
  }
  .ant-ProductCard__tax {
    font-size: 1.5rem;
  }
  .ant-ProductCard__btnWrap {
    margin: 1.6rem 0 3rem 0;
  }
  .ant-ProductCard__textSmall {
    font-size: 1.2rem;
  }

  /* コンポーネント: Table */
  .ant-Table {
    margin: var(--gap-v--s) 0;
  }
  .ant-Table__head {
    min-width: 25rem;
  }
}


/* =========================================================
   大型モニター用スタイル
========================================================= */

/* (1001px以上) */
@media (min-width: 1001px) {
  .ant-head--xl,
  .ant-head--xl2 {
    font-size: 5.4vw;
  }
}

/* (1201px以上) */
@media (min-width: 1201px) {
  .ant-head--xl,
  .ant-head--xl2 {
    font-size: 6.4rem;
  }
}

#productA.tab-content {
    position: relative;
    clip-path: inset(0);
    
    /* 背景画像の設定 
    background-image: url(../images/totan.jpg);
    background-size: cover;
    background-position: top left;
    background-attachment: fixed;
    background-repeat: no-repeat;
    */
}
#productA.tab-content::before {
    content: "";
    position: fixed; /* 画面に対して固定 */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    
    background-image: url(../images/kh-crz100t/background100.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    z-index: -1; /* コンテンツより奥に配置 */
    will-change: transform; /* スクロールのガタつき防止 */
}


#productB.tab-content {
    position: relative;
    clip-path: inset(0);
}
#productB.tab-content::before {
    content: "";
    position: fixed; /* 画面に対して固定 */
    top: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    
    background-image: url(../images/kh-crz90t/background90.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    
    z-index: -1; /* コンテンツより奥に配置 */
    will-change: transform; /* スクロールのガタつき防止 */
}

.tab-btn.tab-100 {
  background: url(../images/kh-crz100t/background100.jpg);
  border: 4px solid #333;
  border-bottom: none;
  border-left: none;
  /*background-position-x: -150px;
  background-position-x: calc((100vw / 2 - 514px) * -1);*/
  background-position-x: left;
  background-position-y: 0;
  background-size: 100vw 1000px;
}
#productA.tab-content::before {
    background-size: 100% 100%;
}
.tab-btn.tab-90 {
  background: url(../images/kh-crz90t/background90.jpg);
  border: 4px solid #333; /* まず全体に4pxの実線を引く */
  border-bottom: none;
  border-right: none;
  background-position-x: right;
  background-size: 100vw 1000px;
}
#productB.tab-content::before {
    background-size: 100% 100%;
}
/*
@media (max-width: 1024px) {
  .tab-btn.tab-100 {
    border-left: none;
    background-size: 100vw auto;
    background-position: 0 0;
  }
  .tab-btn.tab-90 {
    border-right: none;
    background-position: calc(-50vw - 4px) -80px;
  }
}
*/

/* =========================================
   1. PC時のみ左右の並びを反転させるヘルパークラス
========================================= */
@media (min-width: 1025px) {
    .ant-Col--rowReversePC {
        flex-direction: row-reverse;
    }
}

/* =========================================
   2. main.cssの「.ant-u-max-width--1200px」に
      中央揃え（margin: 0 auto;）を補完
========================================= */
.ant-u-max-width--1200px {
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   3. ant-head--xl の文字サイズを画面幅に合わせて可変
      clamp(最小サイズ, 推奨サイズ(vw), 最大サイズ)
========================================= */
.ant-head--xl {
    /* SPでは3.2rem、画面幅の5%で可変し、最大6.4remでストップ */
    font-size: clamp(3.2rem, 5vw, 5.4rem) !important;
    line-height: 1.2 !important;
}
.ant-head--xl sup {
    /* 小さい文字（※など）も親に合わせて可変させる */
    font-size: clamp(1.4rem, 2vw, 2.4rem) !important;
    top: -0.5em !important;
}
@media (max-width: 1024px) {
    .ant-head--xl {
        font-size: clamp(2.4rem, 8vw, 6.4rem)!important;
    }
}

/*------------ メニューグリッド ------------*/
/* グリッド */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.menu-grid > div {
  width: 100%;
}

/* アイテム */
.menu-item {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  aspect-ratio: 16 / 9;
}

/* 画像 */
.menu-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* オーバーレイ */
.menu-content {
  position: absolute;
  inset: 0;
  padding: 16px;
  display: flex;
  flex-direction: column;
  /*justify-content: flex-end;*/
  /*background: linear-gradient(
    to top,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.2),
    transparent
  );*/
}

/* テキスト */
.menu-title {
  font-size: clamp(14px, 2.73vw, 20px);
  font-weight: bold;
  line-height: 1.4;
  text-align: left;

  /* 2行制限（崩れ防止） 
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;*/
}

/* 矢印 */
.menu-arrow {
  position: absolute;
  left: 16px;
  bottom: 16px;
  width: 28px;
  height: 28px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}

.menu-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

/* ホバー */
.menu-item:hover img {
  transform: scale(1.05);
  transition: 0.3s;
}

/* SP */
@media (max-width: 1024px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gap-v--s);
  }
  .menu-grid p {
    font-size: clamp(11px, 2.08vw, 16px);
  }
  .menu-content {
    padding: 8px;
  }
  .menu-arrow {
    position: absolute;
    left: 12px;
    bottom: 4px;
  }
}
/*------------ メニューグリッド ------------*/

.col-grid-two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.feature-k2 {
  background: url(../images/kh-crz100t/feature06-background-pc.jpg) no-repeat;
  background-color: #000;

  padding: 1em;
}
.feature-k2 img {
  max-width: 100%;
}
.feature-k2 .ant-Col {
  align-items: center;
  margin: 0;
}
@media (max-width: 1024px) {
  .ant-Col {
    gap: var(--gap-v--s);
  }
  .feature-k2 {
    background: url(../images/kh-crz100t/feature06-background-sp.jpg) no-repeat;
    background-color: #000;
  }
  .col-grid-two {
    gap: var(--gap-v--s);
  }
}

/*------------ 機能アイコンエリア ------------*/
.feature-icon-area {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature-icon-area .ant-text--note {
  font-size: 1.4rem;
}
.feature-icon-area > div > img {
  width: 75px;
}
.feature-icon-area p {
  line-height: 1.2;
  font-size: 1.6rem;
}
/* アイテム */

/* SP */
@media (max-width: 1024px) {
  .feature-icon-area {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-icon-area > div > img {
    width: 42px;
  }
  .feature-icon-area p {
    font-size: clamp(11px, 2.08vw, 16px);
  }
  .feature-icon-area .ant-text--note {
    font-size: clamp(9px, 1.82vw, 14px);
  }
}
/*------------ 機能アイコンエリア ------------*/

.banner_ss {
  max-width: 250px;
  margin: 4px;
}
@media (max-width: 1024px) {
  .banner_ss {
    width: 100%;
  }
}

/*------------ 微調整 ------------*/
.ant-Drawer,
.footer,
footer{
  position: relative;
  /*z-index: 0;*/
}
a.ant-u-color--white:hover {
  color: #fff!important;
}
a.ant-u-color--black:hover {
  color: #333!important;
}


/* ギャラリーモーダル表示中だけ clip-path を解除 */
body.is-gallery-open #glass-core-area,
body.is-gallery-open #productA.tab-content,
body.is-gallery-open #productB.tab-content,
body.is-gallery-open .anime-bunkai {
  clip-path: none !important;
}

/* モーダル表示中は背景スクロールも止める */
body.is-gallery-open {
  overflow: hidden;
}

.spec-Table td.ant-text {
  text-align: center;
  vertical-align: middle;
}
.spec-Table th {
  font-size: clamp(11px, 1.82vw, 14px);
}

.spec-Table tr:hover th,
.spec-Table tr:hover td {
  background-color: #d9efff;
}


/* =========================================
   固定動画部のグラデーション追加
========================================= */
.feature-gradient-top {
  position: relative;
}
.feature-gradient-top::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 100%;
  height: 600px;
  pointer-events: none;
  z-index: -1;
  background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 1.0) 0%,
      rgba(0, 0, 0, 0.4) 50%,
      rgba(0, 0, 0, 0) 100%
      );
  background-image: url(../images/top-gradient.png);
  background-size: 100% 100%;
}
@media (max-width: 1024px) {
    .feature-gradient-top::before {
        height: 600px;
    }
}

.support-btn {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap-v--s);
  margin-bottom: var(--gap-v);
}
@media (max-width: 1024px) {
    .support-btn {
      grid-template-columns: repeat(1, 1fr);
    }
}

/* iPad対応 */
@media (max-width: 1200px) and (min-width: 769px) {
    body {
        min-width: unset;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .mf_finder_header .mf_finder_searchBox_items {
        font-size: 11px;
        width: 110px;
    }
    #header .container {
        min-width: 100%;
        padding: 0 15px;
    }
    #header .navbar-collapse {
        width: calc(100% - 100px);
    }
    #header h2.navbar-nav {
        font-size: 10px;
        line-height: 30px;
        margin-right: 10px !important;
        width: unset;
        padding: 0 8px;
    }
    ul.navbar-nav a {
        padding-left: 4px;
        padding-right: 4px;
        font-size: clamp(10.00px, calc(1.96vw + -5.08px), 15.00px);
    }
    ul.navbar-nav:last-of-type li {
        white-space: nowrap;
    }

    ul.navbar-nav:first-of-type > li {
        font-size: clamp(8.00px, calc(1.08vw + 3.96px), 12.00px);
    }
    .ant-Nav {
        min-width: unset;
    }
}
ul.navbar-nav:last-of-type a {
    font-size: 10px;
}

#category_header div p {
    flex-basis: 40%!important;
    font-size: clamp(18px, calc(0.73vw + 15px), 23px);
}

/* 画像はイメージです */
.image-note {
  position: absolute;
  bottom: 40px;
  transform: translateY(var(--overflow-spacer, 0px));
  right: 20px;
  z-index: 1;
  color: #fff;
}
@media (max-width: 768px) {
    .image-note {
      right: 20px;
    }
}


#main-visual {
    background: url("../images/glass-core-opening_pc.webp") center / cover no-repeat;
}
@media (max-width: 768px) {
  #main-visual {
      background: url("../images/glass-core-opening_sp.webp") center / cover no-repeat;
  }
}