/* オーバーレイテキストセクション全体 */
.OverlayTextSection_overlaySection__yVps8 {
  position: relative;
  z-index: 20;
  margin-top: -100vh;
}

/* 上部スペーサー */
.OverlayTextSection_topSpacer__MWKYw {
  height: 100vh;
}

/* スティッキーコンテナ */
.OverlayTextSection_stickyContainer__LrJFc {
  position: sticky;
  top: 0;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e5e0d2;
  overflow: hidden;
  z-index: 20;
}

/* 追加: コンパイル済みクラス名での上書き（必要に応じてグローバルに効かせたい場合） */
.OverlayTextSection_OverlayTextSection_stickyContainer__LrJFc__HaPOZ {
  height: 70vh;
}

.OverlayTextSection_OverlayTextSection_bottomSpacer__fhnCP__2bRsx {
  height: 40vh;
  background-color: #ded9cb;
}

/* 背景グラデーション */
.OverlayTextSection_backgroundGradient__CDZxM {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, #e5e0d2, #ddd8ca);
}

/* テキストコンテナ */
.OverlayTextSection_textContainer__WFp24 {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1.5rem;
  top: 20vh;
}

/* メインヘッドライン */
.OverlayTextSection_mainHeading__Z8gEJ {
  font-weight: 300;
  letter-spacing: 0.025em;
  line-height: 1.25;
  transition: all 1000ms ease;
  transition-delay: 300ms;
  font-size: 2.5rem;
  color: var(--brand-color-secondary);
}

.OverlayTextSection_mainHeading__Z8gEJ.OverlayTextSection_visible__ECuPw {
  opacity: 1;
  transform: translateY(0);
}

.OverlayTextSection_mainHeading__Z8gEJ.OverlayTextSection_hidden__xwqAH {
  opacity: 0;
  transform: translateY(2rem);
}

/* 下部スペーサー */
.OverlayTextSection_bottomSpacer__fhnCP {
  height: 40vh;
  background-color: #ded9cb;
}
/* concept-section用の背景延長 */
.ImageTextSection_conceptSection__LwY2E {
  position: relative;
  top: 0rem;
  margin-bottom: 0rem;
  /* override padding-top (was 5rem via other styles) */
  padding-top: 0;
  padding-bottom: 10rem;
  z-index: 21;
}

.ImageTextSection_conceptSection__LwY2E::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 20%;
  background-color: #ded9cb;
}

/* タブレット表示時の背景高さ調整 */
@media (min-width: 768px) and (max-width: 1024px) {
  .ImageTextSection_conceptSection__LwY2E::before {
    height: 11%;
  }
}

@media (max-width: 767px) {
  .ImageTextSection_conceptSection__LwY2E::before {
    height: 12rem;
  }
}

/* テキスト行のスタイル */
.ImageTextSection_textLine__k2dJr {
  font-size: 1rem;
  line-height: 1.625;
  color: rgb(51, 65, 85);
  margin-bottom: 1.5rem;
  font-weight: 300;
}

@media (min-width: 768px) {
  .ImageTextSection_textLine__k2dJr {
    font-size: 1.125rem;
  }
}

/* テキストコンテンツエリアの位置調整 */
.ImageTextSection_textContent__keD3T {
  position: relative;
  top: 6vw;
}

/* SP表示時の画像レイアウト調整 */
@media (max-width: 767px) {
  .ImageTextSection_conceptSection__LwY2E {
    overflow-x: hidden;
  }
  
  /* 2枚目の画像を左端にぴったり寄せる */
  .ImageTextSection_conceptSection__LwY2E .image-text-section__images > div:nth-child(2) {
    padding-left: 0;
    position: relative;
  }
  
  .ImageTextSection_conceptSection__LwY2E .image-text-section__images > div:nth-child(2) > div {
    margin-left: 0;
    margin-right: auto;
    position: relative;
    left: -1rem;
  }
  
  /* 3枚目の画像を右下に移動 */
  .ImageTextSection_conceptSection__LwY2E .image-text-section__images > div:nth-child(3) {
    position: relative;
    right: -2rem;
    top: 3rem;
  }
}
/* Shop Nowセクション全体 */
.ShopNowSection_shopNowSection__WrcYs {
  position: relative;
  padding: 4rem 0;
  background-color: var(--brand-color-primary);
}

/* 右上の矢印 */
.ShopNowSection_arrowIcon__aIrOn {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: white;
}

/* ショップボタン */
/* primary action button used by Shop Now and Registration (shape/layout only). Color can be applied inline or via an extra class. */
.ShopNowSection_shopButton__d3aqr {
  margin-bottom: 0.5rem;
  padding: 0.7rem 3rem;
  letter-spacing: 0.1em;
  font-size: 1.075rem;
  width: 100%;
  font-weight: bold;
  border: 2px solid white;
  background-color: white;
  color: var(--brand-color-primary);
  transition: all 0.3s ease;
  text-align: center;
  display: block;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .ShopNowSection_shopButton__d3aqr {
    max-width: 330px;
    min-width: 220px;
    margin-left: auto;
    margin-right: auto;
  }
}


.ShopNowSection_shopButton__d3aqr:hover {
  background-color: transparent;
  color: white;
}


/* 購入するテキスト */
.ShopNowSection_purchaseText__yL9Qm {
  letter-spacing: 0.025em;
  line-height: 1.6;
  color: white;
  opacity: 0.9;
  display: block;
  text-align: center;
  width: 100%;
  font-weight: bold;
  font-size: 1.075rem;
}

/* Mobile adjustments to match the provided mockup: center button, make it compact */
@media (max-width: 767px) {
  .ShopNowSection_shopNowSection__WrcYs .ShopNowSection_flex__bkRUb {
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .ShopNowSection_shopButton__d3aqr {
    width: 100%;
    min-width: 0;
    max-width: 330px;
    display: block;
    margin: 0 auto;
    padding: 0.9rem 0;
    font-size: 1.1rem;
    letter-spacing: 0.13em;
    border-width: 2px;
    box-sizing: border-box;
  }
  .ShopNowSection_purchaseText__yL9Qm {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
    font-size: 0.95rem;
    font-weight: 600;
    margin-top: 0.75rem;
    opacity: 0.95;
    text-align: center;
  }
  .ShopNowSection_arrowIcon__aIrOn {
    top: 2rem;
    right: 1rem;
  }
  .ShopNowSection_shopNowSection__WrcYs {
    padding: 2.5rem 0 1.5rem;
  }
}
