@charset "UTF-8";

.header_show .globalHeader {
  z-index: 4;
}

.header_show .pagetop {
  z-index: 3;
}

.breadcrumbsList li a {
  color: #fff;
}

.breadcrumbsList li a::after {
  background: #fff;
}

/* ::::::::::  ブランド  :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.shippori-mincho-b1-regular {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Inter';
  src: url('../../../../fonts/Inter-Bold.woff2') format('woff2'),
    url('../../../../fonts/Inter-Bold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  /* 読み込み中もテキストを表示させる（ガクつき防止） */
}

@font-face {
  font-family: 'Outfit';
  src: url('../../../../fonts/Outfit.woff2') format('woff2'),
    url('../../../../fonts/Outfit.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ShipporiMinchoB1';
  src: url('../../../../fonts/ShipporiMinchoB1.woff2') format('woff2'),
    url('../../../../fonts/ShipporiMinchoB1.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'ZenKurenaido';
  src: url('../../../../fonts/ZenKurenaido.woff2') format('woff2'),
    url('../../../../fonts/ZenKurenaido.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@media (max-width: 1024px) {
  .tab {
    display: block;
  }

  .pc_tab {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 194px;
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 75px;
  }
}

.wrapper {
  position: relative;
}

small {
  position: relative;
  bottom: 20px;
  display: block;
  font-size: 1.3rem;
  max-width: 1250px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  small {
    width: 90%;
    font-size: 1.1rem;
  }
}



.breadcrumbsList {
  padding: 25px 45px 0;
}

@media (max-width: 1024px) and (min-width: 769px) {
  .breadcrumbsList {
    padding: 25px 0;
  }
}

.b_questND1 {
  font-size: 1.7rem;
}

@media (max-width: 1024px) and (max-width: 768px) {
  .b_questND1 {
    font-size: 1.4rem;
  }
}

/* ===== 購入はこちら & スクロールバー ===== */

.buy_link {
  position: fixed;
  right: 0;
  top: 40%;
  z-index: 10;
}

.buy_link a {
  width: 55px;
  color: #fff;
  writing-mode: vertical-lr;
  background: #cc3d00;
  font-weight: bold;
  padding: 30px 10px;
  border-radius: 5px 0 0 5px;
  text-decoration: none;
  letter-spacing: 1.5px;
}

@media (max-width: 768px) {
  .buy_link a {
    width: 50px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 150px;
    position: relative;
    right: -3px;
  }
}

.kv-scroll-area {
  position: absolute;
  bottom: 40px;
  right: 40px;
  text-align: center;
  color: #fff;
  z-index: 5;
}

.kv-scroll-text {
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
  writing-mode: vertical-lr;
}

.kv-scroll-bar {
  display: block;
  width: 1px;
  height: 100px;
  background: rgba(255, 255, 255, 0.2);
  /* ベースの細い線 */
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* 動く白いライン */
.kv-scroll-bar span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40px;
  background: rgba(255, 255, 255, 0.6);
  /* ベースの細い線 */
  animation: scroll-move 2.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

/* 上から下へ流れて消えるアニメーション */
@keyframes scroll-move {
  0% {
    transform: translateY(-40px);
    /* 自分の高さ分、上に隠れた状態から開始 */
  }

  60% {
    transform: translateY(100px);
    /* 親の高さ分、下まで突き抜ける */
  }

  100% {
    transform: translateY(100px);
    /* 下で少し待機してループ */
  }
}




/* ナビゲーション */
.header-logo {
  display: none;
}

.header-logo img {
  width: 80px;
  height: auto;
  vertical-align: middle;
}

/* 帯状（is-fixed）になった時だけロゴを表示 */
.kv-nav.is-fixed .header-logo {
  display: flex;
  align-items: center;
}

.kv-nav.is-fixed .header-logo p {
  font-size: 2.1rem;
  font-weight: bold;
  color: #2d2d2d;
  border-left: 1px solid;
  line-height: normal;
  margin-left: 20px;
  /* vertical-align: middle; */
  position: relative;
  top: 2px;
  padding-left: 20px;
}

.kv-nav.is-fixed .header-logo p span {
  font-family: "Roboto", serif;

}

/* ===== ナビゲーション基本（初期状態） ===== */
.kv-nav {
  position: absolute;
  top: 40px;
  right: 60px;
  z-index: 1000;
}

.kv-nav-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.kv-nav-list {
  display: flex;
  gap: 30px;
}


.kv-nav-list a {
  font-weight: bold;
}

.kv-nav-list a,
.kv-nav-list .nav-feature {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}

.nav-feature {
  font-weight: bold;
}

/* ① 矢印アイコン（円と「く」の字の線） */
.nav-feature::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 1px solid currentColor;
  border-radius: 50%;
  margin-left: 8px;
  position: relative;
  transition: all 0.3s;
}

.nav-feature::before {
  content: "";
  position: absolute;
  right: 6.0px;
  top: 45%;
  width: 5px;
  height: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(135deg);
  transition: all 0.3s;
}


.kv-nav-list li a:hover, .kv-nav-list li.has-child:hover {
  text-decoration: underline;
  transition: 0.3s ease;
}

.kv-nav-list li:hover>.nav-feature, .kv-nav-list li.has-child:hover {
  transition: 0.3s ease;
}



/* ===== ③ 子メニュー（吹き出し） ===== */
.child {
  position: absolute;
  top: 100%;
  left: -70px; 
    /* left: -100px; */
  background: #fff;
  display: none;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 20px;
  width: 400px;
}

/* 吹き出しの三角部分 */
.child::after {
  content: "";
  position: absolute;
  top: -12px;
  left: 180px;
   /* left: 210px; */
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #fff;
}

/* 特徴からメニューへ移動する際の隙間を埋める */
.has-child::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 25px;
  display: none;
}

.has-child:hover::after {
  display: block;
}

.has-child:hover .child {
  display: block;
  animation: drop .3s ease forwards;
}

@media (max-width: 768px) {

  .has-child:hover .child {

    animation: none;
  }
}


.child li {
  list-style: none;
  transform: 0.3s ease;
}

.child li a {
  color: #2b2b2b !important;
  font-size: 18px;
  margin: 3px 0;
  display: inline-block;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}

.child li a:hover {
  text-decoration: none !important;
  border-bottom: 1px solid #a27174;
  color: #a27174 !important;
}

.child li :hover {
  transform: 0.3s ease;
  border-bottom: 1px solid #a27174;

}


@media (max-width: 768px) {
  .child li a:hover {
    border-bottom: none;
  }
}

.child li a span {
  margin-right: 15px;
}

@keyframes drop {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== ② スクロール後の帯ナビ（PC） ===== */
.kv-nav.is-fixed {
  position: fixed;
  top: 124px;
  left: 0;
  right: 0;
  background: #f0e5e4;
  padding: 20px 40px;
  z-index: 0;

  /* 初期状態：上へ隠す */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);

  /* ヌルっと動くアニメーション */
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
}

/* アクティブ状態：ヌルっと下りてくる */
.kv-nav.is-fixed.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  z-index: 3;
}

.kv-nav.is-fixed .kv-nav-inner {
  justify-content: space-between;
}

.kv-nav.is-fixed a, .kv-nav.is-fixed .nav-feature {
  color: #2b2b2b;
}

/* ホバー時にテキストとアイコンをオレンジにする */
.kv-nav.is-fixed.active .kv-nav-list li:hover>a,
.kv-nav.is-fixed.active .kv-nav-list li:hover>.nav-feature {
  color: #a27174 !important;
}

.kv-nav.is-fixed.active .kv-nav-list li:hover>span {
  text-decoration: underline;
}


.kv-nav.is-fixed .child {
  top: 50px;
  left: auto;
  right: 40px;
}

.kv-nav.is-fixed .child::after {
  top: -12px;
  left: 180px;
   /* left: 250px; */
}

.kv-nav.is-fixed .has-child::after {
  top: 20%;
  height: 55px;
  width: 100px;
  left: auto;
}

/* ===== ハンバーガーボタン（共通） ===== */
.kv-hamburger {
  display: none;
  /* PCでは隠す */
  position: fixed;
  top: 100px;
  right: 20px;
  z-index: 2000;
  width: 50px;
  height: 50px;
  background: #2b2b2b;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.kv-hamburger span {
  display: block;
  width: 20px;
  height: 1px;
  background-color: #fff;
  margin: 3px 0;
  transition: all 0.3s ease-in-out;
}

/* メニュー展開時の「×」アニメーション */
.kv-hamburger.active span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.kv-hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.kv-hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== スマホスタイル ===== */
@media (max-width: 768px) {
  .kv-hamburger {
    display: flex;
  }

  .kv-nav {
    position: fixed;
    top: 69px;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    padding: 100px 20px 140px;
    overflow-y: auto;
    transition: 0.4s ease-in-out;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    backdrop-filter: blur(11px);
    -webkit-backdrop-filter: blur(11px);
  }

  .kv-nav.open {
    right: 0;
  }

  .kv-nav-inner {
    flex-direction: column;
    gap: 0;
  }

  .kv-nav-list {
    flex-direction: column;
    width: 100%;
    gap: 0;
    border-top: 1px solid #2d2d2d;
  }

  .kv-nav-list a.logo {
    width: 80px;
    position: absolute;
    top: 30px;

  }

  .kv-nav-list li {
    border-bottom: 1px solid #2d2d2d;
  }

  .kv-nav-list li .nav-feature {
    border-bottom: 1px solid #cccccc;
  }

  .kv-nav-list a, .kv-nav-list .nav-feature {
    color: #2b2b2b;
    padding: 10px 0;
    font-size: 15px;
    font-weight: bold;
  }

  .nav-feature::before, .nav-feature::after {
    display: none;
  }

  .child {
    position: static;
    display: block;
    transform: none;
    min-width: 100%;
    box-shadow: none;
    background: transparent;
    padding: 0;
    margin: 17px 0;
  }

  .child::after {
    display: none;
  }

  .child li {
    border-bottom: none !important;
  }

  .child li a {
    font-size: 1.44rem;
    margin: 0;
    padding: 0;
  }

  .sp-menu-footer {
    margin-top: 20px;
  }

  .sp-menu-footer li a {
    border-radius: 40px;
    font-family: YuGothic, "游ゴシック", "Noto Sans JP", Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN", Roboto, "Droid Sans", Meiryo, "メイリオ", Verdana, sans-serif;
    font-weight: bold;
  }

  .sp-buy-btn {
    background: #333;
    color: #fff;
    text-align: center;
    padding: 18px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
  }
}


.b_questND1 .kv {
  width: 100vw;
  /* height: 800px; */
  height: calc(100vh - 124px);
  min-height: 600px;
  background: url(../../../../img/brand/becks/b_questND1/kv_img.jpg) center center / cover no-repeat;
  color: #fff;
  position: relative;
}

.b_questND1 .kv .wrapper {
  position: relative;
  height: 100%;
  width: 100%;
}

.b_questND1 .kv .wrapper .txt_wrap {
  text-shadow: 0 0 2px rgba(34, 23, 20, 0.5);
}

.b_questND1 .kv .wrapper .kv_logo {
  position: relative;
  margin-bottom: 40px;
  width: 120px;
}

@media (max-width: 768px) {
  .b_questND1 .kv .wrapper .kv_logo {
    left: 0;
    margin-bottom: 15px;
  }
}



.b_questND1 .kv .wrapper {
  position: relative;
  z-index: 1;
  padding: 80px 0;
}

@media (max-width: 767px) {
  .b_questND1 .kv .wrapper {
    padding: 40px 0;
  }
}

@media (max-width: 767px) {
  .b_questND1 .kv {
    height: calc(100vh - 75px);
    background: url(../../../../img/brand/becks/b_questND1/sp_kv_img.jpg) center center / cover no-repeat;
  }
}

@media (max-width: 767px) {
  .b_questND1 .kv .txt_wrap {
    position: absolute;
    bottom: 60px;
  }
}



.b_questND1 .kv .wrapper .kv_txt {
  font-size: 5rem;
  line-height: normal;
  margin-bottom: 20px;
  font-family: 'ZenKurenaido', sans-serif;
}

@media (max-width: 767px) {
  .b_questND1 .kv .wrapper .kv_txt {
    font-size: 4rem;
  }
}

.b_questND1 .kv .wrapper .kv_sub_txt {
  display: block;
  font-size: 1.7rem;
  line-height: 1.7;
  margin-top: 20px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

@media (max-width: 767px) {
  .b_questND1 .kv .wrapper .kv_sub_txt {
    font-size: 1.3rem;
  }
}


.b_questND1 .kv .wrapper .kv_name {
  font-size: 1.8rem;
  border: 1px solid #fff;
  display: inline-block;
  text-align: center;
  padding: 20px 50px;
  margin-top: 50px;
  letter-spacing: -0.5px;
  font-family: 'Zen Kaku Gothic New', sans-serif;
}

@media (max-width: 767px) {
  .b_questND1 .kv .wrapper .kv_name {
    border: none;
    padding: 0;
    margin-top: 20px;
  }
}

@media (min-width: 1250px) and (max-height: 850px) {
  .b_questND1 .kv .wrapper .kv_name {
    position: absolute;
    right: 50px;
    bottom: 150px;
  }
}

.b_questND1 .kv .wrapper .kv_name span.Quest {
  font-size: 3.7rem;
  font-family: "Roboto", serif;
  line-height: normal;
  font-weight: bold;
  display: block;
  letter-spacing: 1.4px;
}



/* ::::::::::  concept::::::::::::::::::::::::::::::::: */
.concept .flex {
  gap: 25px;
}

.concept .concept-item img {
  width: 370px;
}

@media (max-width: 1024px) {
  .concept .concept-item img {
    width: 100%;
  }
}

.concept .concept-item.center {
  width: 420px;
  position: relative;
  top: -30px;
}

@media (max-width: 1024px) {
  .concept .concept-item.center {
    width: 420px;
    top: inherit;
    margin: 30px auto;
  }
}

.concept .concept-item.center .main_txt {
  font-size: 4.2rem;
  font-family: "Shippori Mincho B1", serif;
  margin-bottom: 15px;
}

@media (max-width: 1024px) {
  .concept .concept-item.center .main_txt {
    font-size: 3.3rem;
  }
}

.concept .concept-item.center .main_txt span {
  font-size: 6.2rem;
  display: block;
  letter-spacing: -10px;
  margin-bottom: -30px;
  margin-left: -20px;
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .concept .concept-item.center .main_txt span {
    font-size: 5rem;
    margin-bottom: -20px;
  }
}

.concept .concept-item.center .sub_txt span {
  display: block;
  margin-bottom: 9px;
}

.concept .concept-item.center .sub_txt span:last-child {
  margin-bottom: 0 !important;
}

.concept .concept-item.center .sub_txt span.sub_fort {
  font-size: 1.9rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .concept .concept-item.center .sub_txt span.sub_fort {
    font-size: 1.6rem;
  }
}


/* ::::::::::  color:::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.bg_beige {
  background: #f4f0ec;
  position: relative;
  margin-top: 180px;
}

@media (max-width: 768px) {
  .bg_beige {
    margin-top: 50px;
  }
}

.ab_img {
  position: absolute;
  width: 50%;
  top: -10px;
  left: 0;
  z-index: 1;
}

@media (min-width: 1601px) {
  .ab_img {
    width: 42%;
  }
}

@media (max-width: 1024px) {
  .concept .flex {
    display: block;
  }

  .ab_img {
    width: 500px;
    top: 170px;
  }
}

@media (max-width: 768px) {
  .ab_img {
    width: 210px;
    top: 30px;
  }
}


.color .color_main {
  font-size: clamp(10rem, 26vw, 35.4rem);
  font-family: 'Outfit', serif;
  position: relative;
  margin-top: clamp(-350px, -20vw, -110px);
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}


@media (max-width: 768px) {
  .color .color_main {
    font-size: 10rem;
    margin-top: -110px;
    text-align: center;
  }
}

.co_blue {
  color: #4778b0 !important;
}

.co_red {
  color: #db4b6b !important;
}

.co_yellow {
  color: #ffa800 !important;
}

.co_purple {
  color: #9933cc !important;
}

.co_gray {
  color: #808080 !important;
}

.color .color_sub {
  text-align: center;
}

@media (max-width: 768px) {
  .color .color_sub {
    text-align: left;
    width: 50%;
    margin: auto 0 0 auto;
  }
}

.color .color_sub span {
  display: block;
  font-size: 3.7rem;
  font-family: "Shippori Mincho B1", serif;
}

@media (max-width: 768px) {
  .color .color_sub span {
    font-size: 2.6rem;
    letter-spacing: -0.5px;
    line-height: normal;
    margin-bottom: 10px;
  }
}

@media (min-width: 769px) {
  .color_slider .slider-main {
    display: grid !important;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    width: 100%;
    margin: 0 auto;
  }

  .color_slider .slide-item {
    padding: 50px;
    text-align: center;
    border-radius: 30px;
  }

  /* 1つ目：4列目から6列目まで（右側） */
  .color_slider .slide-item:nth-child(1) {
    grid-column: 3 / 5;
  }

  /* 2つ目：6列目から8列目まで（右端） */
  .color_slider .slide-item:nth-child(2) {
    grid-column: 5 / 7;
  }

  /* --- 下段（3つ）：均等に3つ並べる --- */
  .color_slider .slide-item:nth-child(3) {
    grid-column: 1 / 3;
  }

  .color_slider .slide-item:nth-child(4) {
    grid-column: 3 / 5;
  }

  .color_slider .slide-item:nth-child(5) {
    grid-column: 5 / 7;
  }
}

.color_slider .slide-item img {
  width: 75%;
}

@media (max-width: 768px) {
  .color_slider .slide-item img {
    width: 60%;
    margin: 0 auto;
  }
}

.color_slider .slide-item p.co_name {
  font-size: 4rem;
  margin: 20px auto 10px;
  font-weight: bold;
  font-family: "Roboto", serif;
  line-height: normal;
}

@media (max-width: 768px) {
  .color_slider .slide-item p.co_name {
    font-size: 3rem;
    margin: 20px auto 0;
  }
}

.color_slider .slide-item p.color_txt {
  font-size: 2.3rem;
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: -3px;
}

@media (max-width: 768px) {
  .color_slider .slide-item p.color_txt {
    font-size: 1.8rem;
  }
}

.color_slider .slide-item p.btn {
  margin: 20px 0 0;
}

.color_slider .slide-item p.btn a {
  width: 100%;
  background: #fff;
  border: 1px solid;
  padding: 15px 20px;
  border-radius: 40px;
  position: relative;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .color_slider .slide-item p.btn a {
    padding: 10px 20px;
    font-size: 1.2rem;
  }
}

.color_slider .slide-item p.btn a::before {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

@media (max-width: 768px) {
  .color_slider .slide-item p.btn a::before {
    right: 15px;
    width: 6px;
    height: 6px;
  }
}

.color_slider .slider-main .slick-prev, .color_slider .slider-main .slick-next {
  bottom: 20px !important;
}

.color_slider .slick-prev, .color_slider .slick-next {
  background: none !important;
}

.color_slider .slick-prev::after, .color_slider .slick-next::after {
  border-top: 1px solid #2d2d2d !important;
  border-right: 1px solid #2d2d2d !important;
}



.color_slider .slider-main .slick-prev {
  left: 15px;
  margin-left: 0;
}

.color_slider .slider-main .slick-next {
  right: 15px;
  margin-right: 0;
}

.item-blue {
  background-color: #dfe3e5;
}

.item-red {
  background-color: #ead8d4;
}

.item-yellow {
  background-color: #f4e6d3;
}

.item-purple {
  background-color: #e4dadf;
}

.item-gray {
  background-color: #e8e4df;
}


@media (max-width: 768px) {
  .slidewrap.color_slider {
    padding: 40px 0 0;
    margin: 0;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }

  .color_slider .slide-item {
    margin: 0 10px;
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
  }
}

@media (max-width: 768px) {

  /* サムネコンテナ */
  .color_slider .slider-nav.sp {
    display: flex !important;
    justify-content: center;
    gap: 15px;
    width: 90%;
    margin: 30px auto 0;
  }

  .dot-blue {
    background-color: #4b81b5 !important;
  }

  .dot-red {
    background-color: #d8516d !important;
  }

  .dot-yellow {
    background-color: #f9a600 !important;
  }

  .dot-purple {
    background-color: #9b4cd3 !important;
  }

  .dot-gray {
    background-color: #888888 !important;
  }

  .color_slider .slider-nav .slick-slide {
    height: 45px;
    width: 45px !important;
    border-radius: 40px;
    position: relative;
  }

  .color_slider .slider-nav .slick-slide div {
    background-color: inherit;
  }

  /* アクティブ時の外線（二重円） */
  .color_slider .slider-nav .slick-slide.slick-current::before {
    content: "";
    position: absolute;
    width: 58px;
    height: 58px;
    top: -6.4px;
    left: -6.1px;
    border: 1px solid #b3b3b3;
    border-radius: 50%;
  }
}

.color_slider .slider-nav .slick-list {
  width: 85%;
}

.color_slider .slider-nav .slick-list .slick-track {
  width: 100% ! IMPORTANT;
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}

/* ::::::::::  特徴:::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
.features_ {
  margin-top: 100px;
}

.features_wrapper {
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .features_wrapper {
    width: 100%;
  }
}

/* レイアウトの基盤 */
.features .feature-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  padding-bottom: 250px;
}

@media (max-width: 768px) {
  .features .feature-list {
    display: block;
    padding-bottom: 50px;
  }
}




/* テキストBOX */
.features .feature-list .feature-item.txt_box {
  grid-column: 1 / 6;
  grid-row: 1;
  z-index: 2;
  background: #fff;
  padding: 120px 100px;
  border-radius: 0 60px 60px 0;
  transform: translateY(-50px);
  text-align: center;
  width: 630px;
}

@media (max-width: 768px) {
  .features .feature-list .feature-item.txt_box {
    padding: 40px 20px;
    border-radius: 40px;
    transform: inherit;
    text-align: center;
    width: 90%;
    margin: 0 auto;
    z-index: 1;
    position: relative;
  }
}


/* 画像BOX */
.features .feature-list .feature-item.img {
  grid-column: 5 / -1;
  grid-row: 1;
  z-index: 1;
  transform: translateY(50px);
}

@media (max-width: 768px) {
  .features .feature-list .feature-item.img {
    transform: inherit;
    margin-top: -80px;
  }
}

.features .feature-list .feature-item.img img {
  width: 100%;
  height: auto;
  border-radius: 60px 0 0 60px;
  height: 660px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .features .feature-list .feature-item.img img {
    border-radius: 0;
    height: auto;
  }
}

.features .feature-list .feature-item.img .feature-sub {
  width: auto;
  position: absolute;
  right: 150px;
  bottom: 10px;
  background: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .features .feature-list .feature-item.img .feature-sub {
    right: 0;
    left: 0;
    bottom: 50px;
    display: inline-table;
    justify-content: center;
    text-align: center;
    margin: 20px auto;
  }
}

/* --- Reverse（左右反転）の設定 --- */

.features .feature-list.reverse .txt_box {
  grid-column: 8 / -1;
  border-radius: 60px 0 0 60px;
  transform: translateY(50px);
}

@media (max-width: 768px) {
  .features .feature-list.reverse .txt_box {
    border-radius: 40px;
    transform: inherit;
  }
}

.features .feature-list.reverse .img {
  grid-column: 1 / 9;
  transform: translateY(-50px);
}

@media (max-width: 768px) {
  .features .feature-list.reverse .img {
    transform: inherit;
  }
}

.features .feature-list.reverse .img img {
  border-radius: 0 60px 60px 0;
}

@media (max-width: 768px) {
  .features .feature-list.reverse .img img {
    border-radius: 0;
  }
}


/* 1501px以上の処理もシンプルに */
@media (min-width: 1651px) {

  /* .features .feature-list .feature-item.txt_box,
  .features .feature-list .feature-item.img img {
    border-radius: 60px;
  } */
  .features .feature-list .feature-item .img {
    grid-column: 1 / 8;
  }

  .features .feature-list.reverse .img {
    grid-column: 1 / 8;
  }

  .features .feature-list .feature-item.txt_box {
    width: auto;
    grid-column: 1 / 6;
  }

  .features .feature-list.reverse .txt_box {
    grid-column: 7 / -1;
  }

  .features .feature-list .feature-item.img .feature-sub {
    right: 200px;
  }

}

/* スマホ対応：重なりを解除して縦に並べる */
@media (max-width: 768px) {
  .grid-container {
    display: block;
    padding: 0 20px;
  }

  .text-content {
    margin-right: 0;
    transform: translateY(0);
    margin-bottom: -20px;
    /* スマホでは少しだけ画像に被せる */
  }
}


.feature-item p.nom {
  font-family: "Roboto", serif;
  color: #fff;
  background: #a27174;
  font-size: 1.9rem;
  font-weight: bold;
  line-height: normal;
  border-radius: 30px;
  margin-bottom: 30px;
  padding: 12px 30px;
  letter-spacing: 1.5px;
  display: inline-block;
}

@media (max-width: 768px) {
  .feature-item p.nom {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}



.feature-item p.feature-title {
  font-size: 2.7rem;
  line-height: normal;
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: -1.5px;
}

@media (max-width: 768px) {
  .feature-item p.feature-title {
    font-size: 2.2rem;
  }
}


.feature-item p.feature-sub {
  border-radius: 30px;
  border: 1px solid #a27174;
  color: #a27174;
  padding: 10px 25px;
  display: block;
  margin: 30px auto;
  font-size: 1.8rem;
  font-weight: bold;
  width: 430px;
}

@media (max-width: 768px) {
  .feature-item p.feature-sub {
    padding: 10px 25px;
    font-size: 1.4rem;
    margin: 20px auto;
    width: auto;
  }
}




.features .feature-item.center img {
  margin-top: 60px;
}

@media (max-width: 768px) {
  .features .feature-item:last-child {
    width: 100%;
  }
}

.feature-list#feature02 {
  position: relative;
}

.feature-list#feature03 {
  display: block;
  max-width: 1250px;
  margin: -100px auto;
  width: 95%;
}

@media (max-width: 768px) {
  .feature-list#feature03 {
    max-width: 100%;
    margin: 0;
    width: 100%;
    padding-bottom: 30px;
  }
}

.feature-list#feature03 .feature-item {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 40px;
  text-align: left;
  background: none;
  padding: 0;
  margin-top: -40px;
  width: 100%;
}

@media (max-width: 768px) {
  .feature-list#feature03 .feature-item {
    gap: 20px;
    text-align: center;
    padding: 40px 20px;
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .feature-list#feature03 .feature-item.txt_box {
    background: #fff;
    padding: 40px 20px 60px;
    display: block;
    width: 90%;
  }
}

.feature-list#feature03 .feature-item.txt_box img {
  width: 170px;
}

@media (max-width: 1024px) {
  .feature-list#feature03 .feature-item.txt_box img {
    width: 110px;
  }
}


@media (max-width: 768px) {
  .feature-list#feature03 .feature-item.txt_box img {
    width: 150px;
    position: absolute;
    right: -10px;
    bottom: -185px;
  }
}



.feature-list#feature03 .feature-item p.feature-sub {
  display: block;
  text-align: center;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .feature-list#feature03 .feature-item p.feature-sub {
    margin-bottom: auto;
  }
}

@media (max-width: 768px) {
  .feature-list#feature03 .feature-item.img {
    width: 90%;
    margin: 40px auto 0;
    padding: 0 !important;
  }
}

.feature-list#feature03 .feature-item.img ul {
  display: flex;
  gap: 10px;
  text-align: center;
}

@media (max-width: 768px) {
  .feature-list#feature03 .feature-item.img ul {
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media (max-width: 768px) {
  .feature-list#feature03 .feature-item.img ul li {
    width: calc(50% - 5px);
  }
}

@media (max-width: 768px) {
  .feature-list#feature03 .feature-item.img ul li:first-child {
    margin-right: 50%;
  }
}

.feature-list#feature03 .feature-item.img ul li img {
  border-radius: 0;
  height: auto;
}

@media (max-width: 768px) {
  .feature-list#feature03 .feature-item.img ul li img {
    max-width: 100%;
    display: block;
  }
}

.feature-list#feature03 .feature-item.img ul li p {
  margin-top: 10px;
  font-size: 1.8rem;
  font-family: "Roboto", serif;
}

@media (max-width: 768px) {
  .feature-list#feature03 .feature-item.img ul li p {
    margin-top: 5px;
    font-size: 1.3rem;
  }
}


.feature-list#feature04 {
  position: relative;
}

.feature-list#feature04 .img_ab {
  position: absolute;
  bottom: -250px;
  right: 0;
  width: 500px;
  margin: auto;
  height: auto;
}

@media (max-width: 768px) {
  .feature-list#feature04 .img_ab {
    bottom: -70px;
    right: 0;
    width: 300px;
    z-index: 2;
  }
}



.feature-list#feature05 {
  position: relative;
  padding-bottom: 150px;
}

.feature-list#feature05 .img_ab {
  position: absolute;
  bottom: -200px;
  right: 0;
  width: 400px;
  left: 0;
  margin: auto;
  height: auto;
}



@media (max-width: 768px) {
  .feature-list#feature05 .img_ab {
    bottom: 40px;
    right: inherit;
    width: 50%;
    left: 10%;
    margin: auto;
  }
}



.feature-list .txt_sub p {
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: inline-block;
  font-size: 2.0rem;
  padding: 90px 50px;
  position: absolute;
  top: 0;
  /* bottom: 0;
  left: 0; */
  right: 0;
  margin: auto;
  width: 300px;
  height: 300px;
}

@media (max-width: 768px) {
  .feature-list .txt_sub {
    padding: 0 0 80px 0;
    margin-bottom: 40px;
  }

  .feature-list .txt_sub p {
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    padding: 0px;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    font-size: 1.3rem;
    width: 60%;
    height: 60%;
    margin: 0 0 0 auto;
  }

}


/*こんな人におすすめ::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/

.recommended {
  display: flex;
  align-items: center;
  background: #f0e5e4;
}

@media (max-width: 1250px) {
  .recommended {
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .recommended {
    display: block;
  }
}

.recommended img {
  width: 38%;
  height: 450px;
  object-fit: cover;
}

@media (min-width: 1601px) {
  .recommended img {
    width: 45%;
    height: 550px;
    object-fit: cover;
  }
}

@media (max-width: 1024px) {
  .recommended img {
    height: 650px;
  }
}

@media (max-width: 768px) {
  .recommended img {
    width: 100%;
    height: auto;
  }
}

.recommended .recommended_txtBox {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .recommended .recommended_txtBox {
    padding: 40px 0 60px;
    display: inherit;
  }
}

.recommended .recommended_txtBox .txt {
  font-size: 2.7rem;
  line-height: normal;
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: -1.5px;
  width: 100%;
}

@media (max-width: 768px) {
  .recommended .recommended_txtBox .txt {
    font-size: 2.2rem;
  }
}


.recommended .recommended_txtBox ul {
  display: flex;
  justify-content: space-between;
  gap: 50px;
}

@media (max-width: 1300px) {
  .recommended .recommended_txtBox ul {
    gap: 0 30px;
  }
}

@media (max-width: 1024px) {
  .recommended .recommended_txtBox ul {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 50px;
    width: 90%;
    margin: 0 auto;
  }
}



.recommended .recommended_txtBox ul li span {
  position: relative;
  width: 150px;
  display: block;
  height: 150px;
  border: 1px solid #a27174;
  border-radius: 50%;
  margin: 30px 0 20px;
}

@media (max-width: 1024px) {
  .recommended .recommended_txtBox ul li span {
    width: 130px;
    height: 130px;
  }
}

.recommended .recommended_txtBox ul li span img {
  position: absolute;
  display: block;
  width: 80px;
  height: auto;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  left: 0;
}

@media (max-width: 1024px) {
  .recommended .recommended_txtBox ul li span img {
    width: 62px;
  }
}

.recommended .recommended_txtBox ul li:last-child span img {
  width: 65px;
}

@media (max-width: 768px) {
  .recommended .recommended_txtBox ul li:last-child span img {
    width: 55px;
  }
}



/*商品::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
.product .slick-slide {
  padding: 0 20px;
}

.product .ttl {
  font-size: 5.5rem;
  font-weight: bold;
  text-align: center;
  color: #cc3d00;
  font-family: "Roboto", serif;
  margin-bottom: 40px;
  line-height: normal;
}

@media (max-width: 768px) {
  .product .ttl {
    font-size: 4.2rem;
    margin-bottom: 10px;
  }
}

/* PC 横並び */
@media (min-width: 769px) {
  .slider-main {
    display: flex !important;
    gap: 40px;
  }

}


.slidewrap {
  position: relative;
  margin: 50px auto 100px;
}

@media (max-width: 768px) {
  .slidewrap {
    margin: 0 auto -20px;
  }
}

.slick-slider, .slick-list, .slick-trac {
  position: initial !important;
}

.slider-nav.sp {
  display: none !important;
}

@media (max-width: 768px) {
  .slider-nav.sp {
    display: flex !important;
    margin-top: 20px;
  }
}


.slider-nav {
  position: relative;
  display: flex !important;
  justify-content: center;
  gap: 10px;
  width: fit-content;
  margin: 0 auto;
}

/* メインの矢印を再配置 */
.slider-main .slick-prev,
.slider-main .slick-next {
  position: absolute;
  /* topを%ではなく、固定値か別の基準に変更 */
  top: auto;
  bottom: 0;
  transform: none;
  z-index: 1;
}

/* 左右位置 */
.slider-main .slick-prev {
  left: 50%;
  margin-left: -170px;
}

.slider-main .slick-next {
  right: 50%;
  margin-right: -170px;
}

/* サムネスライド - 幅を制限 */
.slider-nav .slick-slide {
  width: 50px !important;
  padding: 0 5px;
}

/* サムネ */
.slider-nav img {
  width: 40px;
  height: auto;
  border-bottom: none;
  padding-bottom: 0;
}

.slider-nav .slick-slide img {
  border-bottom: 1px solid #fff;
}

/* アクティブなサムネイルに下線 */
.slider-nav .slick-slide.slick-current img {
  border-bottom: 1px solid #cc3d00;
  padding-bottom: 6px;
  box-sizing: border-box;
}

.slick-slider {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

}

.slick-slider .slick-list {
  margin: 0 auto;
}

.slick-prev:before,
.slick-next:before {
  content: '' !important;
}

.slick-slider .slick-arrow {
  width: 30px;
  height: 30px;
}

.slick-prev,
.slick-next {
  width: 40px;
  height: 40px;
  background: #cc3d00 !important;
  border-radius: 50%;
}

.slick-prev::after,
.slick-next::after {
  content: '';
  display: block;
  width: 9px;
  height: 9px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
}

/* ← 左 */
.slick-prev::after {
  transform: translate(-50%, -50%) rotate(-135deg);
  left: 55%;
}

/* → 右 */
.slick-next::after {
  transform: translate(-70%, -50%) rotate(45deg);
}

.slick-initialized .slick-slide {
  width: 40px;
}


/* 共通 */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 60px auto;
  font-family: YuGothic, "游ゴシック", "Noto Sans JP", Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN", Roboto, "Droid Sans", Meiryo, "メイリオ", Verdana, sans-serif;
}

@media (max-width: 768px) {
  .spec-table {
    margin: 60px auto 40px;
  }
}

.spec-table thead {
  border-top: 1px solid #bfbfbf;
  font-weight: bold;
  font-size: 1.9rem;
  text-align: center;
}

.spec-table thead th {
  text-align: center;
  border: none;
}

.spec-table th,
.spec-table td {
  border-top: 1px solid #e6e6e6;
  padding: 12px 0;
  text-align: left;
  vertical-align: top;
  font-size: 1.5rem;
}

@media (max-width: 768px) {

  .spec-table th,
  .spec-table td {
    text-align: center;
  }
}



.spec-table th {
  width: 30%;
  font-weight: bold;
  border-top: 1px solid #bfbfbf;
}

.spec-table tr:last-child th {
  border-bottom: 1px solid #bfbfbf;
}

.spec-table td:last-child {
  border-bottom: 1px solid #e6e6e6;
}

/* SP（768以下） */
@media screen and (max-width: 768px) {
  .spec-table thead th {
    font-size: 1.5rem;
    background: none;
  }

  .spec-table tr {
    display: block;
    border-bottom: 1px solid #bfbfbf;
  }

  .spec-table th {
    background: #fef5e1;
  }

  .spec-table th,
  .spec-table td {
    display: block;
    width: 100%;
    border: none;
  }

  .spec-table th {
    background: #fef5e1;
  }

  .spec-table td {
    border-top: 1px solid #bfbfbf;
    border-bottom: none !important;
  }

  .spec-table tr:last-child th {
    border-bottom: none;
    padding: 20px 0;
  }
}

.spec-table ul {
  align-items: center;
}

.spec-table ul li {
  flex-shrink: 0;
}

.spec-table ul li a {
  height: 50px !important;
  font-size: 15px;
  background: none !important;
  color: #d0161b;
  text-decoration: underline;
  font-size: 1.2rem;
}

@media screen and (min-width: 769px) {
  .spec-table ul li a {
    justify-content: space-between;
  }

  .spec-table ul li:first-child a {
    padding: 0 20px 0 10px;

  }

  .spec-table ul li:last-child a {
    padding: 0 10px 0 20px;
  }

  .spec-table ul li:last-child a::after {
    right: 0;
  }

  .spec-table ul li:first-child a::after {
    right: auto;
    left: 0px;
    rotate: 135deg;
  }

  .spec-table ul li:nth-child(2) a::after {
    right: auto;
    left: -10px;
    rotate: 135deg;
  }

  .spec-table ul li:nth-child(4) a::after {
    right: -10px;
    left: auto;
  }
}

.spec-table ul li:nth-child(3) {
  font-size: 1.9rem;
  flex: 1;
  text-align: center;
  min-width: 0;
  white-space: nowrap;
}


@media screen and (max-width: 768px) {
  .spec-table ul li {
    width: 100% !important;
  }

  .spec-table ul li:nth-child(3) {
    width: 100% !important;
    order: -1;
    font-size: 1.5rem;
    margin-bottom: 5px;
  }

  .spec-table ul li a {
    border: 1px solid #d0161b !important;
    text-decoration: none;
  }
}

.product ul.btnList {
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: nowrap;
  font-family: YuGothic, "游ゴシック", "Noto Sans JP", Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN, "ヒラギノ角ゴ ProN", Roboto, "Droid Sans", Meiryo, "メイリオ", Verdana, sans-serif;
  font-weight: bold;
}


@media screen and (max-width: 768px) {
  .product ul.btnList li {
    width: 100%;
  }
}


.product ul.btnList li a {
  width: 100%;
  min-width: auto;
  border-radius: 50px;
  height: 100px;

}

@media screen and (max-width: 768px) {
  .product ul.btnList li a {
    height: 72px;
  }
}


#buy li a {
  width: 400px;
  min-width: auto;
  border-radius: 50px;
  height: 100px;

}

@media screen and (max-width: 768px) {
  #buy li a {
    height: 72px;
    width: 100%;
  }
}