@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');


/* リセット（ブラウザのデフォルトスタイルを整える） */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ページ全体のフォントと背景 */
body {
  width: 100%;
  font-family: 'Helvetica Neue', 'Yu Gothic', sans-serif;
  background-color: #F8F6F5;
  color: #333;
  padding: 0;
  line-height: 1;
  letter-spacing: 0.1em;
  scroll-behavior: smooth;
}

.spbr {
  display: none;
}

.mv-slider {
  display: block;
}

.sp_mv-slider {
  display: none;
}

.product-text,
.product-name,
.product-price{
  color: #333;
}



/* 見出し */
h1 {
  font-family: "futura-pt", sans-serif;
  font-weight: 500;
  font-style: medium;
  font-size: 36px;
  margin-bottom: 0;
  letter-spacing: 0.05em;
}

h2 {
  font-size: 28px;
  font-weight: 550;
}

/* 段落 */
p {
  font-size: 18px;
  letter-spacing: 0.02em;
}

img {
  width: 100%;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
}

.layout-container {
  display: flex;
  width: 100%;
  height: auto;
  min-height: 100vh;
  position: relative;
}

.main-content,
.right-menu {
  opacity: 0;
  transform: translateX(50px);
  /* 右にずらしておく */
  transition: transform 1s ease, opacity 1s ease;
}

.main-content.show,
.right-menu.show {
  opacity: 1;
  transform: translateX(0);
  /* 元の位置に戻る */
}

.left-mv .scroll {
  display: none;
}

.fade {
  opacity: 0;
  transition: opacity 1.5s ease;
  transform-origin: top left;
  /* 左上から */
}

.fade.visible {
  opacity: 1;
  transform: scale(1);
  /* 拡大・縮小なし */
}

.fade-delay>* {
  opacity: 0;
  transition: opacity 1.5s ease;
  transform-origin: top left;
  /* 左上から */
}

.fade-delay.visible>* {
  opacity: 1;
}

.sp_cart {
  display: none;
}



/* --------  left-mv  -------- */

.left-mv {
  margin: 0;
  width: 100%;
  height: 100dvh;
  background-color: #F8F6F5;
  position: relative;
  z-index: 3;
}

.left-mv.shrink {
  width: 50vw;
  transition: width 1s ease;
}

.mv-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mv-slider img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: auto;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.05);
  /* 中央固定 */
  opacity: 0;
  transition: opacity 1.5s ease, transform 5s ease, filter 1.5s ease;
  object-fit: cover;
}

.mv-slider img.active {
  opacity: 1;
  transform: scale(1);
}

/* 初期状態でブラー */
.mv-slider img.blur {
  filter: blur(10px);
}

.loading {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}

.logo {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  /* gap: 8px; */
}

.logo .char {
  height: 30px;
  width:auto;
  opacity: 0;
  transform: translateY(20px);
  /* transition: opacity 0.8s ease, transform 0.8s ease; */
}

.copyright {
  width: 100%;
  position: absolute;
  margin: 0 auto;
  bottom: 10px;
  color: #FFF;
}

.copyright p {
  font-size: 12px;
  text-align: center;
}


/* --------  main-content  -------- */

/* .main-content {
  margin: 0;
  width: 0;
  flex-shrink: 0;
  overflow-y: auto;
  background-color: #F8F6F5;
}

.main-content.show {
  width: 523px;
  position: absolute;
  top: 0;
  left: 50vw;
} */

.main-content {
  margin: 0;
  flex-shrink: 0;
  background-color: #F8F6F5;
  opacity: 0;
  transform: translateX(50px);
  transition: transform 1s ease, opacity 1s ease;
  width: 523px;
  min-height: 200vh; /* フロー確保 */
  margin-left: 50vw; /* left-mv を避ける */
  position: relative; /* フローに残す */
  z-index: 2;
}

.main-content.show {
  opacity: 1;
  transform: translateX(0);
  /* position を absolute にしない */
}

#sp_mv {
  display: none;
}

#brandstory,
#brand-image,
#product {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.inner {
  width: 95%;
  margin: 100px auto;
}

.inner h1 {
  width: 100%;
  display: flex;
  justify-content: center;
}


/* --------  brandstory  -------- */

#brandstory {
  width: 100%;
  height: 100vh;
  color: #fff;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    /* 薄い黒の半透明グラデ */
    url(../img/top/altinor-2.jpg) no-repeat center center / cover;
}

#brandstory .inner {
  display: grid;
  gap: 50px;
}

#brandstory .inner p {
  line-height: 1.8em;
}

/* --------  brand-image  -------- */

#brand-image {
  height: auto;
}

/* #brand-image h1 {
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 0.2em;
  line-height: 1em;
} */

#brand-image h1 img{
  width:70%;
  height:auto;
}

#brand-image .brand-image-text {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 16px auto 100px;
}

#brand-image .brand-image-text p {
  font-family: "futura-pt", sans-serif;
  text-align: center;
  font-size: 20px;
  margin-right: 8px;
  letter-spacing: 0.08em;
}

#brand-image .brand-image-text p:last-child {
  margin-right: 0;
}

#brand-image .brand-image-text p span {
  font-size: 70%;
}

#brand-image .brand-image-main {
  margin: 0 auto;
}


/* --------  scene-1  -------- */

.scene {
  display: grid;
  gap: 40px;
}

.scene-blk {
  position: relative;
}

.scene-blk .scene-text {
  position: absolute;
  top: 20px;
  left: 20px;
}

.scene-blk .main-text {
  font-size: 28px;
  line-height: 1.2em;
  margin-bottom: 8px;
  font-weight: 300;
}

.scene-blk .sub-text {
  font-size: 14px;
  line-height: 1.2em;
  letter-spacing: 0.02em;
}

.scene-blk .img-blk {
  overflow: hidden;
  /* はみ出し防止 */
}



/* --------  product-swiper  -------- */

.swiper {
  width: 100%;
  max-width: 1200px;
}

.swiper p {
  text-align: center;
  margin: 100px auto;
  font-size: 20px;
  line-height: 2em;
}

.swiper-slide img {
  width: 100%;
  display: block;
}


/* --------  product  -------- */

#product {
  background-color: #FFF;
}

#product .sub-text {
  text-align: center;
  margin: 20px auto 40px;
  font-size: 16px;
}

.grid-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  /* 左:右 の幅比 */
  aspect-ratio: 1 / 1;
  /* ★ 幅＝高さで正方形に */
  width: 100%;
  /* 親カラムに合わせる */
  gap: 5px;
}

.left,
.right {
  display: grid;
  height: 100%;
  gap: 5px;
}

.left {
  grid-template-rows: repeat(3, 1fr);
  /* 左：3段 */
}

.right {
  grid-template-rows: repeat(2, 1fr);
  /* 右：2段 */
}

.grid-item {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  /* ↓ 子要素の absolute 配置の基準にする */
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  cursor: pointer;
}

.item-label {
  font-family: "futura-pt", sans-serif;
  font-size: 13px;
  color: #fff;
  letter-spacing: 0.08em;
  text-align: right;
  margin: 0;
  padding: 2px 4px;
  position: absolute;
  bottom: 1px;
  right: 3px;
  border-radius: 4px;
  z-index: 99;
  background-color: rgba(0, 0, 0, 0.1);
}

/* 疑似要素で背景を作る */
.item-label::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: scaleX(0);
  transform-origin: left;
  /* 左から表示される */
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 4px;
  transition: transform 0.5s ease;
  z-index: -1;
}

/* ホバーで左から右へ伸びる */
.grid-item:hover .item-label::before {
  transform: scaleX(1);
  transform-origin: left;
  /* 入るときは左から */
}

/* ホバー解除で右に縮む */
.grid-item .item-label::before {
  transform-origin: right;
  /* 消えるときは右に消える */
}

.grid-item img {
  height: 100%;
  position: absolute;
  z-index: 2;
  transition-duration: .5s;
}

.grid-item:hover img {
  transform: scale(1.05);
}

.product-list {
  width: 100%;
  margin: 80px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* 左:右 の幅比 */
  gap: 80px 10px;
}

.product-img {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #eee;
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.product-img img {
  width: auto;
  height: 80%;
}

.feature {
  padding: 0 12px;
}

.product-name {
  margin-top: 10px;
  height: 2.2em;
  font-family: "futura-pt", sans-serif;
  font-weight: normal;
  font-size: 20px;
  line-height: 1.2em;
  letter-spacing: 0.06em;
}

.product-text {
  margin-top: 10px;
  font-size: 12px;
  height: 60px;
  letter-spacing: 0.04em;
  line-height: 1.4em;
}

.price_color {
  margin-top: 10px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: baseline;
}

.product-price {
  font-family: "futura-pt", sans-serif;
  font-size: 18px;
}

.product-price span {
  font-size: 80%;
  letter-spacing: -0.1em;
}

.product-color {
  display: flex;
  gap: 4px;
  /* 間隔 */
}

.product-color .color-tip {
  flex: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid #ccc;
}


.btn {
  position: relative;
  width: 70%;
  padding: 10px;
  margin: 20px auto 0;
  background-color: #333;
  color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  border: 1px solid transparent;
  transition: background-color 0.4s ease, color 0.4s ease, border 0.4s ease;
}

.btn p {
  margin: 0;
  font-size: 14px;
  line-height: 1rem;
  position: relative;
  /* ::before と重ならないように */
  z-index: 1;
}

/* 擬似要素で白い背景を左から流す */
a:hover .btn {
  background-color: #FFF;
  border: 1px solid #333;
  color: #333;
}

.more-btn {
  margin: 70px auto 0;
  width: 60%;
  padding: 15px;
  border: #333 1px solid;
  cursor: pointer;
  transition: opacity 0.5s ease, background-color 0.5s ease, color 0.5s ease;
}

.more-btn p {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

.more-btn:hover {
  background-color: #333;
  color: #fff;
}

.more-btn.hide {
  opacity: 0;
}

.more-item {
  opacity: 0;
  display: none;
  transition: opacity 0.5s ease;
}

.more-item.show {
  opacity: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

/* --------  concept  -------- */

#concept {
  text-align: center;
  padding: 100px 0 0;
}

#concept .inner {
  margin: 0 auto;
  display: grid;
  gap: 40px;
}

#concept .inner p {
  line-height: 1.8em;
  font-size: 14px;
}

.concept-blk {
  margin: 50px auto 100px;
  text-align: left;
}

.concept-blk .inner {
  width: 85%;
  margin-top: 40px !important;
  display: grid;
  gap: 8px !important;
}

.concept-ttl-en {
  font-family: "futura-pt", sans-serif;
  font-size: 24px !important;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.concept-ttl-en span {
  font-family: "din-condensed", sans-serif;
  font-size: 32px !important;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.05em;
}

.concept-ttl-jp {
  font-size: 24px !important;
  font-weight: 600;
}

.concept-text {
  font-size: 14px !important;
}

/* --------  right-menu  -------- */

/* .right-menu {
  font-family: "futura-pt", sans-serif;
  width: auto;
  height: 500vh;
  text-align: right;
  margin: 0;
  background-color: #EFEAE1;
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;  /* 縦方向に並べる 
  justify-content: space-between;  /* 上下に離す 
  align-items: flex-end;  /* 横方向（右寄せ） 
  height: 100%;  /* 高さを指定するのが重要 
}

.right-menu.show {
  width: calc(100vw - (50vw + 523px));
  position: fixed;
  padding: 30px;
  top: 0;
  right: 0;
} */

.right-menu {
  font-family: "futura-pt", sans-serif;
  width: calc(100vw - (50vw + 523px));
  background-color: #EFEAE1;
  opacity: 0;
  transform: translateX(50px);
  transition: transform 1s ease, opacity 1s ease;
  padding: 30px;
  height: 100vh;
  display: flex;
  flex-direction: column;  /* 縦方向に並べる */
  justify-content: space-between;  /* 上下に離す */
  align-items: flex-end;  /* 横方向（右寄せ） */
  position: fixed;
  top:0;
  right:0;
  z-index: 1;
}

.right-menu.show {
  opacity: 1;
  transform: translateX(0);
}

.store {
  border-bottom: 1px solid #333;
}

.store a {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  margin-bottom: 3px;
}

.store img {
  width: 25px;
  height: 22px;
  margin-bottom: 4px;
  margin-right: 6px;
}

.store p {
  font-size: 22px;
  font-weight: 600;
}

.right-menu .nav {
  font-size: 22px;
  font-weight: 600;
}

.right-menu .nav ul {
  display: grid;
  gap: 10px;
}

.right-menu .nav ul li {
  position: relative;
  padding-left: 1.2em;
  line-height: 1.2em;
  background-image: linear-gradient(#333, #333);
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 0 1px;
  transition: background-size 0.3s;
}

.right-menu .nav ul li:hover {
  background-position: bottom left;
  background-size: 100% 1px;
}

.right-menu .nav ul li::before {
  content: "▶";
  position: absolute;
  left: 0;
  bottom: 30%;
  margin: auto 0;
  line-height: 0.7em;
  font-size: 16px;
  opacity: 0;
  /* 最初は非表示 */
  transform: translateX(-4px);
  /* 少し左に置いておく */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.right-menu .nav ul li.active::before {
  opacity: 1;
  transform: translateX(0);
  /* 定位置に戻る */
}



/*----------------------
      モーダル設定
----------------------*/
.overlay {
  position: fixed;
  /* layout-container 内で絶対位置 */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
  /* modal より下 */
}

.overlay.active {
  opacity: 1;
  pointer-events: auto;
}


/* モーダル背景 */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* モーダル表示状態 */
.modal.active {
  opacity: 1;
  pointer-events: auto;
}

/* モーダルの中身*/
.modal-content {
  background: #fff;
  width: 523px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  position: relative;
  opacity: 0;
  /* transform: scale(0.8); */
  transform: translateY(30px); /* ← 下から出現する準備 */
  transition: all 0.3s ease;
  z-index: 999;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 32px;
  height: 32px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 9999;
}

.close-btn::before,
.close-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  /* 線の長さ */
  height: 2px;
  /* 線の太さ */
  background-color: #fff;
  /* 色 */
  transform-origin: center;
}

.close-btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* 表示アニメーション */
.modal.active .modal-content {
  animation: fadeInUp 0.4s ease forwards;
}

/* 閉じるアニメーション */
.modal.modal-closing .modal-content {
  animation: fadeOutDown 0.4s ease forwards;
}

/* 出現アニメーション */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 消えるアニメーション */
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(30px);
  }
}

.modal-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.modal-inner-img {
  width: 100%;
  height: auto;
}

.splide__slide img {
  width: 100%;
  height: auto;
}

/* カウンター */
.modal-counter {
  text-align: center;
  margin-top: 8px;
  font-size: 14px;
  color: #333;
}

.modal-inner-text {
  text-align: left;
  padding: 10px 30px 30px;
}

.modal-inner-text .list-item {
  display: grid;
  gap: 10px;
}

.modal-inner-text .product-name {
  font-size: 26px;
  line-height: 1.2em;
  height: auto;
}

.modal-inner-text .product-text {
  height: auto;
  font-size: 16px;
}

.modal-inner-text .product-price {
  font-size: 24px;
}

.modal-inner-text .btn {
  margin-bottom: 15px;
  width: 40%;
}


/* 共通デザイン */
.splide__arrow {
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  width: 32px;
  /* 見た目の横幅 */
  height: 200px;
  /* ヒットエリアの縦幅 */
  display: flex;
  align-items: center;
  /* 縦中央 */
  justify-content: center;
  /* 横中央 */
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  opacity: 1 !important;
  transition: none !important;
  cursor: pointer;
  position: absolute;
  /* 左右端に配置する場合 */
  top: 50%;
  transform: translateY(-50%);
}

/* 左右端に配置 */
.splide__arrow--prev {
  left: -3px !important;
}

.splide__arrow--next {
  right: -3px !important;
}

/* SVG非表示 */
.splide__arrow svg {
  display: none !important;
}

/* 矢印文字 */
.splide__arrow--prev::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(-135deg);
}

.splide__arrow--next::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  transform: rotate(45deg);
}



#lower_footer {
  width: 100%;
  position: relative;
  z-index: 5;
}

@media screen and (max-width: 768px) {

  .spbr {
    display: block;
  }

  /* 見出し */
  h1 {
    font-size: 30px;
  }

  h2 {
    font-size: 20px;
  }

  /* 段落 */
  p {
    font-size: 14px;
  }

  .layout-container {
    display: block;
    position: relative;
  }

  .right-menu {
    display: none;
  }

  .main-content {
    width: 100%;
    opacity: 1 !important;
    transform: none !important;
    margin-left: 0vw;
  }

  .pcmv {
    display: none;
  }

  .spmv {
    display: block;
  }

  .left-mv .copyright {
    display: none;
  }

  .sp_cart {
    display: block;
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 999;
    mix-blend-mode: difference;
  }

  .sp_cart .store {
    width: 100%;
    border-bottom: 1px solid #FFF;
  }

  .sp_cart .store p {
    font-family: "futura-pt", sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 0.5em;
    color: #FFF;
  }

  .store p::before {
    content: "";
    display: inline-block;
    /* 画像をインラインで表示 */
    width: 12px;
    /* アイコンの幅 */
    height: 12px;
    /* アイコンの高さ */
    margin-right: 4px;
    margin-bottom: 3px;
    /* 本文との間隔 */
    background-image: url('../img/top/cart-wh.png');
    /* アイコン画像のパス */
    background-size: contain;
    /* 画像サイズを要素に合わせる */
    background-repeat: no-repeat;
    /* 繰り返さない */
    vertical-align: middle;
  }


  /* スクロールダウンの位置 */
  .left-mv .scroll {
    display: block;
    opacity: 0;
    position: absolute;
    left: 50%;
    top: 90%;
    transform: translateX(-50%);
    /* ← 要素幅の半分だけ左にずらす */
    /* writing-mode: vertical-rl; */
    color: #FFF;
    transition: opacity 1s ease;
  }

  /* 線のアニメーション部分 */
  .left-mv .scroll::before {
    animation: scroll 2s infinite;
    background-color: #FFF;
    bottom: -115px;
    content: "";
    height: 80px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
  }

  /* 線のアニメーション */
  @keyframes scroll {
    0% {
      transform: scale(1, 0);
      transform-origin: 0 0;
    }

    50% {
      transform: scale(1, 1);
      transform-origin: 0 0;
    }

    51% {
      transform: scale(1, 1);
      transform-origin: 0 100%;
    }

    100% {
      transform: scale(1, 0);
      transform-origin: 0 100%;
    }
  }

  .inner {
    width: 95%;
    margin: 80px auto;
  }

  /* --------  brandstory  -------- */

  #brandstory .inner {
    display: grid;
    gap: 40px;
  }

  #brandstory .inner h2 {
    font-size: 20px;
  }

  #brandstory .inner p {
    line-height: 1.8em;
    font-size: 14px;
  }


  /* --------  brand-image  -------- */

  #brand-image {
    background-color: #F8F6F5;
  }

  #brand-image h1 {
    font-size: 36px;
  }

  #brand-image .brand-image-text {
    margin: 12px auto 80px;
  }

  #brand-image .brand-image-text p {
    font-size: 16px;
  }

  /* --------  scene-1  -------- */

  .scene {
    gap: 20px;
  }

  .scene-blk .scene-text {
    position: absolute;
    top: 15px;
    left: 15px;
  }

  .scene-blk .main-text {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 4px;
  }

  .scene-blk .sub-text {
    font-size: 10px;
  }


  /* --------  product-swiper  -------- */

  .swiper p {
    margin: 60px auto;
    font-size: 14px;
  }

  /* --------  product  -------- */

  #product .sub-text {
    margin: 8px auto 40px;
    font-size: 14px;
    line-height: 1.4em;
  }

  .item-label {
    font-size: 10px;
  }

  .product-list {
    margin: 80px auto 0;
    gap: 40px 10px;
  }

  .product-img {
    width: 100%;
    height: 120px;
  }

  .product-name {
    font-size: 16px;
  }

  .product-text {
    margin-top: 10px;
    font-size: 10px;
    height: 50px;
  }

  .price_color {
    margin: 8px auto;
  }

  .product-price {
    font-size: 12px;
  }

  .product-color .color-tip {
    width: 10px;
    height: 10px;
  }


  .btn {
    width: 75%;
    padding: 6px 15px;
    margin: 8px auto 0;
  }

  .btn p {
    margin: 0;
    font-size: 10px;
    line-height: 1rem;
  }


  .more-btn {
    margin: 40px auto 0;
    width: 60%;
    padding: 10px;
    border: #999 1px solid;
  }

  .more-btn p {
    font-size: 12px;
    font-weight: 500;
  }


  /* --------  concept  -------- */
  #concept {
    padding: 80px 0 0;
  }

  #concept .inner {
    gap: 30px;
  }

  #concept .inner p {
    font-size: 12px;
  }

  .concept-blk {
    margin: 25px auto 80px;
  }

  .concept-blk .inner {
    margin-top: 20px !important;
    gap: 4px !important;
  }

  .concept-ttl-en {
    font-size: 20px;
    margin-top: 0;
  }

  .concept-ttl-en span {
    font-size: 24px !important;
  }

  .concept-ttl-jp {
    font-size: 20px !important;
  }

  .concept-text {
    margin-top: 10px !important;
  }


  /*----------------------
      モーダル設定
----------------------*/

  /* モーダルの中身*/
  .modal-content {
    width: 88vw;
  }

  .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 15px;
    height: 15px;
  }

  .close-btn::before,
  .close-btn::after {
    width: 15px;    /* 線の長さ */
    height: 2px;    /* 線の太さ */
  }

  .splide__counter {
    font-size: 12px;
  }

/* カウンター */
.modal-counter {
  margin-top: 8px;
  font-size: 10px;
}

  .modal-inner-img {
    width: 100%;
    height: auto;
  }

.modal-inner-text .list-item{
  gap: 5px;
}
  .modal-inner-text {
    padding: 10px 20px;
  }

  .modal-inner-text .product-name {
    font-size: 18px;
  }

  .modal-inner-text .product-text {
    margin: 0;
  font-size: 10px;
  height: auto;
}

.modal-inner-text .product-price{
  font-size: 14px;
}

.modal-inner-text .product-color .color-tip {
    width: 14px;
    height: 14px;
}

  .modal-inner-text .btn {
    margin-top: 10px;
  }


  /* 共通デザイン */
  .splide__arrow {
    width: 32px;    /* 見た目の横幅 */
    height: 200px;    /* ヒットエリアの縦幅 */
    font-size: 24px;
  }

  /* 左右端に配置 */
  .splide__arrow--prev {
    left: -5px !important;
  }

  .splide__arrow--next {
    right: -5px !important;
  }

  /* SVG非表示 */
  .splide__arrow svg {
    display: none !important;
  }

/* 矢印文字 */
.splide__arrow--prev::before {
    width: 10px;
    height: 10px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
}

.splide__arrow--next::before {
    width: 10px;
    height: 10px;
    border-top: 2px solid #FFF;
    border-right: 2px solid #FFF;
}

}