@charset "UTF-8";
:root {
  --base-vw: 1920; /* 基準となるビューポート幅 */
}

/* ---------------------------------------------
   CSS Reset（normalize.cssベース簡易版）
--------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --base-vw: 1920; /* 基準となるビューポート幅 */
  --lvh: 100vh; /* Large Viewport Height（初期値、JavaScriptで更新） */
}

html {
  font-size: 100%;
  box-sizing: border-box;
  height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  width: 0;
  height: 0;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: 16px;
  line-height: 1.6;
  color: #343a40;
  background: #ffffff;
  min-height: 100vh;
  margin: 0;
}

a {
  color: #000000;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/**
 * ヘッダー レイアウト
 * 
 * @package Website-Template
 * @version 1.0.0
 */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  transform: translateY(-100%);
}
@media (max-width: 767px) {
  .site-header {
    padding: 0;
  }
}
.site-header.is-visible {
  transform: translateY(0);
}

.site-header__container {
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 0;
}
@media (max-width: 767px) {
  .site-header__container {
    padding: 28px 0;
  }
}

.site-header__brand {
  display: flex;
  align-items: center;
}

.site-header__logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #000000;
  transition: opacity 0.3s ease;
}
.site-header__logo-link:hover {
  opacity: 0.7;
}

.site-header__logo {
  width: calc(350 / var(--base-vw) * 100vw);
  max-width: 350px;
  display: block;
}
@media (max-width: 767px) {
  .site-header__logo {
    width: 168px;
  }
}

.site-header__nav {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-right: 80px;
}
@media (max-width: 767px) {
  .site-header__nav {
    gap: 24px;
    margin-right: 0;
  }
}

.site-header__nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
@media (max-width: 767px) {
  .site-header__nav-links {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .site-header__nav-links {
    display: none;
  }
}
@media (min-width: 769px) {
  .site-header__nav-links {
    display: flex;
  }
}

.site-header__nav-link {
  font-family: "FuturaLTPro-Book", "futura-pt", sans-serif;
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .site-header__nav-link:hover {
    opacity: 0.7;
  }
}
.site-header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}
.site-header__nav-link:last-child::after {
  right: -6px;
}

.site-header__menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  gap: 14px;
  width: auto;
  height: auto;
  min-width: 48px;
  min-height: 48px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  transition: opacity 0.3s ease;
  position: fixed;
  top: 18px;
  right: calc(0% + 2.5vw);
  z-index: 9999999;
  transform: translateY(-200px);
}
@media (max-width: 767px) {
  .site-header__menu-toggle {
    top: 10px;
    right: 2vw;
    gap: 10px;
  }
}
.site-header__menu-toggle.is-visible {
  transform: translateY(0);
}
@media (hover: hover) and (pointer: fine) {
  .site-header__menu-toggle:hover {
    opacity: 0.7;
  }
}
.site-header__menu-line {
  display: block;
  width: 64px;
  height: 1px;
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .site-header__menu-line {
    width: 48px;
  }
}
.site-header__menu-line:nth-child(2) {
  width: 64px;
}
@media (max-width: 767px) {
  .site-header__menu-line:nth-child(2) {
    width: 48px;
  }
}

/**
 * ローディング画面 コンポーネント
 * 
 * @package Website-Template
 * @version 1.0.0
 */
.loading-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100lvh;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  background: transparent;
  --loading-pseudo-top-height: 50lvh;
  --loading-pseudo-bottom-height: 50lvh;
}
@media (max-width: 767px) {
  .loading-screen {
    height: 100lvh;
    --loading-pseudo-top-height: 50%;
    --loading-pseudo-bottom-height: 50%;
  }
}
.loading-screen::before {
  width: 100%;
  height: var(--loading-pseudo-top-height);
  position: absolute;
  left: 0;
  top: 0;
  background-color: #54250D;
  content: "";
  display: block;
}
.loading-screen::after {
  width: 100%;
  height: var(--loading-pseudo-bottom-height);
  position: absolute;
  left: 0;
  top: 50lvh;
  background-color: #54250D;
  content: "";
  display: block;
}
@media (max-width: 767px) {
  .loading-screen::after {
    top: 50%;
  }
}
.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-screen__line {
  position: absolute;
  height: 2px;
  width: 5%;
  z-index: 3;
  top: 50%;
  transform: translateY(-50%);
}
.loading-screen__line--1 {
  left: 0;
  transform: translateY(-50%);
  transform-origin: left;
  background: #006577;
}
.loading-screen__line--2 {
  left: 0;
  right: 0;
  margin: auto;
  transform-origin: center;
  background: #E1584B;
}
.loading-screen__line--3 {
  right: 0;
  left: auto;
  transform-origin: right;
  background: #EACCBB;
}

/**
 * ヒーローセクション コンポーネント
 * 
 * @package Website-Template
 * @version 1.0.0
 */
.hero_and_below-wrap {
  position: relative;
  background: url(../../dist/images/hero_and_below-wrap.webp) no-repeat center center/cover;
  min-height: calc(200vh + 200px);
  z-index: 10;
}
@media (max-width: 767px) {
  .hero_and_below-wrap {
    min-height: calc(200vh + 200px);
  }
}

.hero__progress-overlay {
  pointer-events: none !important;
}

.hero__carousel-container,
.hero__carousel,
.hero__carousel-track {
  touch-action: pan-y !important;
}

.hero {
  position: absolute;
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  left: 0;
  top: 0;
  z-index: 1;
  pointer-events: none !important;
}
@media (max-width: 767px) {
  .hero {
    height: 130lvh;
  }
}

.hero__copy-line {
  display: block;
  font-size: clamp(32px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: 0.05em;
  white-space: nowrap;
  will-change: transform;
}
@media (max-width: 767px) {
  .hero__copy-line {
    font-size: 32px;
  }
}
.hero__copy-line:first-child {
  margin-bottom: 0.2em;
}

.hero__copy-title {
  display: block;
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: 0.05em;
  white-space: nowrap;
  will-change: transform;
  position: absolute;
}
@media (max-width: 767px) {
  .hero__copy-title {
    font-size: 22px;
  }
}
.hero__copy-title:first-child {
  margin-bottom: 0.2em;
}

.hero__carousel-container {
  position: absolute;
  width: 100%;
  height: 100vh;
  transform-origin: center center;
  will-change: transform;
  top: 0;
  z-index: 1;
}
@media (max-width: 767px) {
  .hero__carousel-container {
    height: 100lvh;
  }
}

.hero__carousel {
  position: absolute;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  z-index: 10;
}
@media (max-width: 767px) {
  .hero__carousel {
    height: 50%;
  }
}
.hero__carousel--top {
  top: 0;
  left: 0;
}
.hero__carousel--bottom {
  bottom: 0;
  left: 0;
}

.hero__carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  will-change: transform;
}

.hero__carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.hero__carousel-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.hero__carousel-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  will-change: transform;
}
.hero__carousel-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #54250D;
  z-index: 2;
  transform-origin: bottom;
  transform: scaleY(0);
  will-change: transform;
}
.hero__carousel-overlay.is-exiting {
  transform-origin: top;
}

.hero__progress {
  position: absolute;
  top: 50vh;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: 15;
  pointer-events: none;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .hero__progress {
    top: 50%;
  }
}

.hero__progress-overlay {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 40px;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: auto;
  background: transparent;
}
@media (max-width: 767px) {
  .hero__progress-overlay {
    height: 30px;
  }
}

.hero__progress-bar {
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.2);
  margin: 0;
  padding: 0;
  z-index: 99999;
}
@media (max-width: 767px) {
  .hero__progress-bar {
    height: 2px;
  }
}
.hero__progress-bar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #E1584B;
  z-index: -1;
}
@media (max-width: 767px) {
  .hero__progress-bar::before {
    height: 2px;
  }
}

.hero__progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #006577;
  will-change: width;
}

/**
 * FV直下コンテンツセクション コンポーネント
 * 
 * @package Website-Template
 * @version 1.0.0
 */
.hero_texts_container {
  position: sticky;
  top: 0;
  left: 5vw;
  width: calc(50% - 20px);
  max-width: calc(45vw - 20px);
  z-index: 10;
  margin: 0;
  margin-left: 0;
  opacity: 0;
  will-change: padding-top;
  transform: translateZ(0);
}
@media (max-width: 767px) {
  .hero_texts_container {
    position: sticky;
    top: 0;
    left: 0;
    width: calc(100% - 5vw);
    max-width: 100%;
    will-change: transform;
    transform: translateZ(0);
  }
}

.below-hero-section {
  position: relative;
  width: 100%;
  padding-right: 5vw;
  padding-left: 5vw;
  box-sizing: border-box;
  display: block;
  z-index: 5;
  opacity: 0;
  min-height: calc(100vh + 200px);
}
@media (max-width: 767px) {
  .below-hero-section {
    padding-right: 5vw;
    padding-bottom: 60px;
    padding-left: 5vw;
    min-height: 285lvh;
  }
}

.below-hero-section__copy-marker {
  width: min(90%, 1200px);
  margin: 0 auto;
  height: 0;
  pointer-events: none;
  position: relative;
}
@media (max-width: 767px) {
  .below-hero-section__copy-marker {
    margin-bottom: 1px;
  }
}

.below-hero-section__spImg {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 40px;
  display: none;
}
@media (max-width: 767px) {
  .below-hero-section__spImg {
    display: block;
  }
}

.hero__copy {
  position: relative;
  color: #ffffff;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  line-height: 1.3;
  pointer-events: none;
  width: 100%;
  margin: 0;
  text-align: left;
}
@media (max-width: 767px) {
  .hero__copy {
    margin-bottom: 0;
    transform: none;
  }
}

.hero__copy-title {
  display: block;
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: 0.05em;
  white-space: nowrap;
  will-change: transform;
  position: absolute;
  transform: translateY(-60px);
}
@media (max-width: 767px) {
  .hero__copy-title {
    font-size: 22px;
    transform: translateY(-30px);
  }
}
.hero__copy-title:first-child {
  margin-bottom: 0.2em;
}

.hero__copy-line-wrapper {
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  position: relative;
  height: clamp(50px, 7.2vw + 10px, 110px);
  padding: 5px 0;
}
@media (max-width: 767px) {
  .hero__copy-line-wrapper {
    height: 50px;
    padding: 2px 0;
  }
}

.hero__copy-line {
  display: block;
  font-size: clamp(32px, 6vw, 80px);
  font-weight: 400;
  letter-spacing: 0.05em;
  white-space: nowrap;
  will-change: transform;
  line-height: 1.2;
  margin: 0;
  position: relative;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .hero__copy-line {
    font-size: 32px;
    line-height: 1.4;
  }
}
.hero__copy-line:first-child {
  margin-bottom: 0.2em;
}

.below-hero-section__body {
  position: relative;
  color: #ffffff;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  will-change: opacity;
  pointer-events: none;
  opacity: 0;
  padding-bottom: 100px;
  padding-top: 30px;
}
@media (max-width: 767px) {
  .below-hero-section__body {
    opacity: 1;
  }
}

.below-hero-section__body-text {
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: left;
}
@media (max-width: 767px) {
  .below-hero-section__body-text {
    font-size: 15px;
    line-height: 2.5;
    letter-spacing: 0;
  }
}

.below-hero-section__brand {
  margin-top: 60px;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
}
@media (max-width: 767px) {
  .below-hero-section__brand {
    margin-top: 40px;
  }
}

.below-hero-section__brand-line {
  display: block;
  font-size: clamp(22px, 2vw, 24px);
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: left;
  margin-bottom: 0.5em;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
}
@media (max-width: 767px) {
  .below-hero-section__brand-line {
    font-size: 22px;
    line-height: 1.5;
  }
}

.below-hero-section__brand-line--emphasis {
  font-size: clamp(22px, 2vw, 24px);
  font-weight: 400;
  margin-top: 0.5em;
  margin-bottom: 0;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
}
@media (max-width: 767px) {
  .below-hero-section__brand-line--emphasis {
    font-size: 22px;
  }
}

.below-hero-section__gallery {
  position: relative;
  right: auto;
  width: 90%;
  margin-left: auto;
  margin-right: 0;
  z-index: 5;
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  .below-hero-section__gallery {
    display: none;
  }
}

.below-hero-section__gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto;
  gap: 0;
}
@media (max-width: 767px) {
  .below-hero-section__gallery-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.below-hero-section__gallery-item {
  position: relative;
  width: 100%;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .below-hero-section__gallery-item {
    aspect-ratio: 4/3;
  }
}
.below-hero-section__gallery-item--top-left {
  grid-column: 1;
  grid-row: 1;
}
.below-hero-section__gallery-item--top-right {
  grid-column: 2;
  grid-row: 1;
}
@media (max-width: 767px) {
  .below-hero-section__gallery-item--top-right {
    grid-column: 1;
    grid-row: 2;
  }
}
.below-hero-section__gallery-item--middle {
  grid-column: 1/3;
  grid-row: 2;
}
@media (max-width: 767px) {
  .below-hero-section__gallery-item--middle {
    grid-column: 1;
    grid-row: 3;
  }
}
.below-hero-section__gallery-item--bottom-left {
  grid-column: 1;
  grid-row: 3;
}
@media (max-width: 767px) {
  .below-hero-section__gallery-item--bottom-left {
    grid-column: 1;
    grid-row: 4;
  }
}
.below-hero-section__gallery-item--bottom-right {
  grid-column: 2;
  grid-row: 3;
}
@media (max-width: 767px) {
  .below-hero-section__gallery-item--bottom-right {
    grid-column: 1;
    grid-row: 5;
  }
}

.below-hero-section__gallery-item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.below-hero-section__gallery-item-image--default {
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}

.below-hero-section__gallery-item-image--hover {
  opacity: 0;
  z-index: 2;
  transition: opacity 0.3s ease 0.3s, clip-path 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  clip-path: inset(0 100% 0 0);
}

@media (hover: hover) and (pointer: fine) {
  .below-hero-section__gallery-item:hover .below-hero-section__gallery-item-image--hover {
    opacity: 1;
    clip-path: inset(0 0% 0 0);
    transition: opacity 0.3s ease, clip-path 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  }
}
.below-hero-section__gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #6994DC;
  transform: scaleX(0);
  z-index: 3;
  pointer-events: none;
  will-change: transform;
}

.below-hero-section__content {
  width: min(90%, 1200px);
  margin: 80px auto 0;
  box-sizing: border-box;
}
@media (max-width: 767px) {
  .below-hero-section__content {
    margin-top: 60px;
  }
}

/**
 * 商品セクション コンポーネント
 * 
 * @package Website-Template
 * @version 1.0.0
 */
html {
  scroll-behavior: auto;
  scroll-padding-top: 95.8px;
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 0px;
  }
}

.product-section {
  position: relative;
  width: 100%;
  min-height: auto;
  padding: 0;
  box-sizing: border-box;
  background-color: #00454E;
  z-index: 10;
}
.product-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 100%;
  z-index: 1;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgb(0, 56, 64) 100%);
}
@media (max-width: 767px) {
  .product-section::before {
    width: 50px;
  }
}
.product-section::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 320px;
  height: 100%;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(0, 56, 64) 100%);
}
@media (max-width: 767px) {
  .product-section::after {
    width: 50px;
  }
}
.product-section__header {
  position: relative;
  width: 100%;
  padding: calc(240 / var(--base-vw) * 100vw) 0;
  text-align: center;
  background-color: #00454E;
}
@media (max-width: 767px) {
  .product-section__header {
    padding: 60px 5vw 20px;
  }
}

.product-section__title {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(32px, 68 / var(--base-vw) * 100vw, 68px);
  font-weight: normal;
  line-height: 1.2;
  color: #EACCBB;
  margin: 0 0 20px 0;
}
@media (max-width: 767px) {
  .product-section__title {
    font-size: 45px;
    margin-bottom: 15px;
  }
}

.product-section__subtitle {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(28px, 32 / var(--base-vw) * 100vw, 32px);
  font-weight: normal;
  line-height: 1.6;
  color: #EACCBB;
  margin: 0;
}
@media (max-width: 767px) {
  .product-section__subtitle {
    font-size: 18px;
  }
}

.product-section__catchphrase {
  position: sticky;
  top: 0;
  z-index: 10;
  width: 100%;
  padding: 25px 0;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #00454E;
  border-bottom: 1px solid #EACCBB;
}
@media (max-width: 767px) {
  .product-section__catchphrase {
    padding: 12px 0;
  }
}
.product-section__catchphrase-line {
  position: absolute;
  top: 0px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #EACCBB;
  z-index: 15;
}
@media (max-width: 767px) {
  .product-section__catchphrase-line {
    top: 0px;
  }
}
.product-section__catchphrase:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(300px, 10vw, 320px);
  height: 100%;
  background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgb(0, 56, 64) 100%);
  z-index: 10;
  pointer-events: none;
}
@media (max-width: 767px) {
  .product-section__catchphrase:after {
    width: 50px;
  }
}
.product-section__catchphrase:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: clamp(300px, 10vw, 320px);
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgb(0, 56, 64) 100%);
  z-index: 10;
  pointer-events: none;
}
@media (max-width: 767px) {
  .product-section__catchphrase:before {
    width: 50px;
  }
}

.product-section__catchphrase-container {
  display: flex;
  align-items: center;
  gap: 60px;
  width: -moz-max-content;
  width: max-content;
  will-change: transform;
}
@media (max-width: 767px) {
  .product-section__catchphrase-container {
    gap: 10px;
  }
}

.product-section__catchphrase-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: calc(46.6666666667vw - 30px);
  opacity: 0.3;
  transition: opacity 0.6s ease;
  pointer-events: none;
  transform: scale(1);
}
.product-section__catchphrase-item--active {
  opacity: 1;
}
@media (max-width: 767px) {
  .product-section__catchphrase-item {
    width: calc(66.6666666667vw - 20px);
  }
}

.product-section__catchphrase-text {
  color: #EACCBB;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(20px, 28 / var(--base-vw) * 100vw, 28px);
  line-height: 1.6;
  text-align: center;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .product-section__catchphrase-text {
    font-size: 14px;
  }
}

.product-section__sidebar {
  position: sticky;
  top: 60px;
  left: 2vw;
  z-index: 5;
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: calc(100vh - 60px);
  justify-content: space-between;
  gap: 0;
}
@media (max-width: 767px) {
  .product-section__sidebar {
    position: sticky;
    height: 100vh;
    top: 0;
  }
}

.product-section__nav {
  width: 100%;
  position: relative;
  top: 100px;
}
@media (max-width: 767px) {
  .product-section__nav {
    opacity: 0;
  }
}

.product-section__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product-section__nav-item {
  font-weight: normal;
  position: relative;
}
.product-section__nav-item--active .product-section__nav-link {
  color: #E1584B !important;
}
.product-section__nav-item--active .product-section__nav-marker {
  opacity: 1;
  transform: translateX(0);
  margin-right: 8px;
}
.product-section__nav-item .product-section__nav-link {
  color: #EACCBB;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(14px, 18 / var(--base-vw) * 100vw, 18px);
  line-height: 1.6;
  text-decoration: none;
  display: inline-block;
  transition: color 0.3s ease;
  cursor: pointer;
}
@media (max-width: 767px) {
  .product-section__nav-item .product-section__nav-link {
    font-size: 16px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .product-section__nav-item .product-section__nav-link:hover {
    color: #E1584B;
  }
}
.product-section__nav-item .product-section__nav-marker {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #E1584B;
  vertical-align: middle;
  opacity: 0;
  transform: translateX(-10px);
  margin-right: 0;
  position: relative;
  top: -2px;
  left: 3px;
}
@media (max-width: 767px) {
  .product-section__nav-item .product-section__nav-link {
    font-size: clamp(16px, 20 / var(--base-vw) * 100vw, 20px);
  }
}

.product-section__counter {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  color: #EACCBB;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  margin-top: auto;
  padding-bottom: 2vw;
}
@media (max-width: 767px) {
  .product-section__counter {
    margin-top: 20px;
    padding-bottom: 0;
    padding-left: 1.5vw;
  }
}

.product-section__counter-current {
  position: relative;
  width: auto;
  min-width: 60px;
  height: 3.5em;
  overflow: hidden;
  display: block;
}
@media (max-width: 767px) {
  .product-section__counter-current {
    height: 2em;
  }
}

.product-section__counter-number {
  font-size: clamp(32px, 48 / var(--base-vw) * 100vw, 48px);
  font-weight: normal;
  line-height: 1.2;
  position: absolute;
  width: auto;
  text-align: left;
  top: 0;
  left: 0;
  color: #EACCBB;
  font-family: "FuturaLTPro-Book", "futura-pt", sans-serif;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 1;
}
@media (max-width: 767px) {
  .product-section__counter-number {
    font-size: 19px;
  }
}
.product-section__counter-number.--active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.product-section__counter-separator {
  font-size: 0;
  color: #EACCBB;
  margin: 0.6em 0;
  width: auto;
  min-width: calc(50 / var(--base-vw) * 100vw);
  height: 1px;
  background-color: #EACCBB;
  border: none;
  padding: 0;
  align-self: flex-start;
  position: relative;
  left: 4px;
}
@media (max-width: 767px) {
  .product-section__counter-separator {
    min-width: 20px;
  }
}

.product-section__counter-total {
  font-size: clamp(32px, 48 / var(--base-vw) * 100vw, 48px);
  font-weight: normal;
  color: #EACCBB;
  line-height: 1.2;
  margin-top: 0;
  font-family: "FuturaLTPro-Book", "futura-pt", sans-serif;
  padding-top: 0.1em;
}
@media (max-width: 767px) {
  .product-section__counter-total {
    font-size: 19px;
    margin-top: 5px;
  }
}

.product-section__footer {
  color: #EACCBB;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(12px, 14 / var(--base-vw) * 100vw, 14px);
  line-height: 1.6;
  opacity: 1;
  position: relative;
  top: 20px;
}
@media (max-width: 767px) {
  .product-section__footer {
    font-size: 12px;
    position: relative;
    top: -155px;
    left: -62px;
    transform: rotate(90deg);
  }
}

.product-section__products {
  position: relative;
  width: 100%;
  padding-left: 250px;
  box-sizing: border-box;
  padding-top: 100px;
  margin-top: calc(-100vh + 200px);
  z-index: 2;
}
@media (max-width: 767px) {
  .product-section__products {
    padding-left: 8vw;
    padding-top: 0;
    overflow: hidden;
    clip-path: inset(0 0 0 0);
    margin-top: calc(-100vh + 65.8px);
  }
}

#product-0 {
  padding-top: 50px;
}

.product-section__product-marker {
  display: none;
}
@media (max-width: 767px) {
  .product-section__product-marker {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
    margin: 0;
    padding: 0;
    scroll-margin-top: 120px;
  }
}

.product-section__product {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 5vw;
  box-sizing: border-box;
  gap: 60px;
  padding-top: 0px;
  padding-bottom: 150px;
  scroll-margin-top: 220px;
}
@media (max-width: 767px) {
  .product-section__product {
    flex-direction: column;
    padding: 60px 0 60px 5vw;
    padding-top: 60px;
    gap: 25px;
    min-height: auto;
  }
}

.product-section__product-content {
  position: sticky;
  top: 150px;
  z-index: 3;
  width: 50%;
  max-width: 48%;
  color: #EACCBB;
}
@media (max-width: 767px) {
  .product-section__product-content {
    position: relative;
    top: auto;
    width: 100%;
    max-width: 100%;
  }
}

.product-section__product-tips {
  width: clamp(70px, 9vw, 120px);
  position: absolute;
  top: clamp(0px, -2vw, 20px);
  left: clamp(160px, 11vw, 210px);
  z-index: 1;
  transition: opacity 0.5s ease;
}
@media (max-width: 767px) {
  .product-section__product-tips {
    width: clamp(110px, 9vw, 120px);
    left: calc(550 / var(--base-vw) * 100vw);
    top: calc(-80 / var(--base-vw) * 100vw);
  }
}

.product-section__product-tips--raspberry {
  width: clamp(130px, 10vw, 200px);
  top: clamp(10px, -5vw, -20px);
  left: clamp(220px, 16vw, 310px);
}
@media (max-width: 767px) {
  .product-section__product-tips--raspberry {
    left: calc(850 / var(--base-vw) * 100vw);
    top: calc(-120 / var(--base-vw) * 100vw);
  }
}

.product-section__product-tips--chocolate-butter-sand {
  width: clamp(140px, 12vw, 180px);
  top: clamp(-10px, -10vw, -40px);
  left: clamp(250px, 20vw, 320px);
}
@media (max-width: 767px) {
  .product-section__product-tips--chocolate-butter-sand {
    left: calc(880 / var(--base-vw) * 100vw);
    top: calc(-280 / var(--base-vw) * 100vw);
  }
}

.product-section__product-tips--chocolate {
  top: clamp(0px, 1vw, 10px);
  left: clamp(190px, 16vw, 350px);
}
@media (max-width: 767px) {
  .product-section__product-tips--chocolate {
    width: clamp(120px, 9vw, 120px);
    left: calc(900 / var(--base-vw) * 100vw);
    top: calc(-80 / var(--base-vw) * 100vw);
  }
}

.product-section__product-tips--original {
  width: clamp(110px, 9vw, 140px);
  top: clamp(-10px, -1vw, -20px);
  left: clamp(220px, 13vw, 260px);
}
@media (max-width: 767px) {
  .product-section__product-tips--original {
    left: calc(750 / var(--base-vw) * 100vw);
    top: calc(-180 / var(--base-vw) * 100vw);
  }
}

.product-section__product-tips--assortment {
  width: clamp(150px, 13vw, 200px);
  top: clamp(-20px, -3vw, -40px);
  left: clamp(210px, 18vw, 350px);
}
@media (max-width: 767px) {
  .product-section__product-tips--assortment {
    left: calc(900 / var(--base-vw) * 100vw);
    top: calc(-200 / var(--base-vw) * 100vw);
  }
}

.product-section__product-link {
  display: block;
  width: 100%;
  margin-bottom: 50px;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.3s ease;
}
.product-section__product-link:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .product-section__product-link {
    width: 95%;
  }
}

.product-section__product-link-image {
  width: 100%;
  overflow: hidden;
}
.product-section__product-link-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}

.product-section__product-link-info {
  background-color: #6994dc;
  padding: 40px 20px;
  text-align: center;
}

.product-section__product-link-name {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(14px, 24 / var(--base-vw) * 100vw, 24px);
  font-weight: normal;
  color: #EACCBB;
  margin: 0 0 8px 0;
  line-height: 1.4;
}

.product-section__product-link-details {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(14px, 24 / var(--base-vw) * 100vw, 24px);
  font-weight: normal;
  color: #EACCBB;
  margin: 0 0 16px 0;
  line-height: 1.4;
}

.product-section__product-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #6994dc;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(14px, 24 / var(--base-vw) * 100vw, 24px);
  font-weight: normal;
  padding: 12px 50px;
  border-radius: 4px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 1px solid #EACCBB;
  background: #EACCBB;
}
.product-section__product-link-button::before {
  content: "";
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%) translate(-10px, 10px);
  width: 14px;
  height: 14px;
  background-image: url("../images/arrow-blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.product-section__product-link-button::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background-image: url("../images/arrow-blue.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .product-section__product-link-button:hover {
    background-color: #eaccbb;
    color: #6994dc;
  }
  .product-section__product-link-button:hover::after {
    transform: translate(10px, -10px);
    opacity: 0;
  }
  .product-section__product-link-button:hover::before {
    transform: translateY(-50%) translate(0, 0);
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .product-section__product-link-button {
    padding: 10px 40px;
  }
  .product-section__product-link-button::before {
    right: 40px;
    width: 12px;
    height: 12px;
  }
  .product-section__product-link-button::after {
    width: 12px;
    height: 12px;
  }
}

.product-section__product-title-en {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(32px, 64 / var(--base-vw) * 100vw, 64px);
  font-weight: normal;
  line-height: 1.2;
  margin: 0 0 15px 0;
  color: #EACCBB;
}
.product-section__product-title-en .sp-only {
  display: none;
}
@media (max-width: 767px) {
  .product-section__product-title-en {
    font-size: 40px;
  }
  .product-section__product-title-en .sp-only {
    display: inline;
  }
}

.product-section__product-title-ja {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(20px, 28 / var(--base-vw) * 100vw, 28px);
  font-weight: normal;
  line-height: 1.4;
  margin: 0 0 30px 0;
  color: rgba(234, 204, 187, 0.9);
}
@media (max-width: 767px) {
  .product-section__product-title-ja {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.product-section__product-description {
  width: 80%;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(18px, 20 / var(--base-vw) * 100vw, 20px);
  line-height: 220%;
  letter-spacing: 0.05em;
  color: rgba(234, 204, 187, 0.9);
  margin: 0;
  transition: opacity 0.8s ease;
}
@media (max-width: 767px) {
  .product-section__product-description {
    width: 90%;
    font-size: 14px;
  }
}

.product-section__product--limited-edition {
  min-height: 150vh;
}
@media (max-width: 767px) {
  .product-section__product--limited-edition {
    min-height: auto;
  }
}
.product-section__product--limited-edition .product-section__product-description {
  margin-bottom: 40px;
}

.product-section__event-info {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(234, 204, 187, 0.3);
  width: 80%;
}
@media (max-width: 767px) {
  .product-section__event-info {
    margin-top: 30px;
    padding-top: 30px;
  }
}

.product-section__event-name {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(16px, 18 / var(--base-vw) * 100vw, 18px);
  font-weight: normal;
  line-height: 1.4;
  color: #EACCBB;
  margin: 0 0 20px 0;
}
@media (max-width: 767px) {
  .product-section__event-name {
    font-size: 20px;
    margin-bottom: 15px;
  }
}

.product-section__event-description {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  line-height: 220%;
  letter-spacing: 0.05em;
  color: rgba(234, 204, 187, 0.9);
  margin: 0 0 30px 0;
}
@media (max-width: 767px) {
  .product-section__event-description {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.product-section__event-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (max-width: 767px) {
  .product-section__event-details {
    gap: 12px;
  }
}

.product-section__event-detail-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
}
@media (max-width: 767px) {
  .product-section__event-detail-item {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}

.product-section__event-detail-label {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(12px, 14 / var(--base-vw) * 100vw, 14px);
  font-weight: normal;
  color: rgba(234, 204, 187, 0.8);
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .product-section__event-detail-label {
    font-size: 14px;
  }
}

.product-section__event-detail-value {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  font-weight: normal;
  line-height: 180%;
  letter-spacing: 0.05em;
  color: rgba(234, 204, 187, 0.9);
  position: relative;
  top: -5px;
}
@media (max-width: 767px) {
  .product-section__event-detail-value {
    font-size: 16px;
  }
}

.product-section__product-image {
  position: relative;
  width: 48%;
  flex-shrink: 0;
  min-height: 120vh;
  padding-top: 150px;
}
@media (max-width: 767px) {
  .product-section__product-image {
    min-height: auto;
    padding-top: 50px;
  }
}
.product-section__product-image img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
.product-section__product-image-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
  will-change: transform;
  transform: translateZ(0);
}
.product-section__product-image-wrapper:last-child {
  margin-bottom: 0;
}
.product-section__product-image-inner {
  position: relative;
  width: 100%;
  transform-origin: center center;
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
  transform: translateZ(0);
}
.product-section__product-image-main {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
  will-change: height, width;
  transform: translateZ(0);
}
@media (max-width: 767px) {
  .product-section__product-image {
    width: 100%;
    max-width: 100%;
  }
}

.product-section__product-image--opera {
  padding-top: 0px !important;
}

/**
 * ノベルティーセクション コンポーネント
 * 
 * @package Website-Template
 * @version 1.0.0
 */
.novelty-section {
  position: relative;
  width: 100%;
  background-color: #BAAAA2;
  z-index: 0;
  margin: 0;
  padding: 0;
}
.novelty-section__parallax {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  z-index: 1;
  margin: 0;
  padding: 0;
}
@media (max-width: 767px) {
  .novelty-section__parallax {
    height: 40vh;
  }
}

.novelty-section__parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 150%;
  will-change: transform;
  transform: translateY(var(--parallax-y, 0px));
  z-index: 1;
}
@media (max-width: 767px) {
  .novelty-section__parallax-bg {
    height: 180%;
  }
}
.novelty-section__parallax-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

.novelty-section__content {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0;
  padding-right: 3vw;
  gap: 60px;
  min-height: 100vh;
  box-sizing: border-box;
  z-index: 2;
  background: url(../../dist/images/novelty-section__content.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  scroll-margin-top: 80px;
}
@media (max-width: 767px) {
  .novelty-section__content {
    flex-direction: column;
    padding: 60px 5vw;
    gap: 40px;
    min-height: auto;
  }
}

.novelty-section__image-sticky {
  height: 100vh;
  position: sticky;
  top: 0px;
  width: 48%;
  flex-shrink: 0;
  z-index: 5;
  will-change: transform;
  background: url(../../dist/images/novelty-section-pouch.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.novelty-section__image-sticky img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767px) {
  .novelty-section__image-sticky {
    position: relative;
    top: auto;
    width: 100%;
    display: none;
  }
}

.novelty-section__info {
  width: 48%;
  flex-shrink: 0;
  color: #ffffff;
  padding: calc(120 / var(--base-vw) * 100vw) 0;
  will-change: transform;
  transform: translate3d(0px, 0px, 0px) !important;
}
@media (max-width: 767px) {
  .novelty-section__info {
    width: 100%;
  }
}

.novelty-section__title {
  font-family: "baskerville-urw", serif;
  font-size: clamp(36px, 64 / var(--base-vw) * 100vw, 64px);
  font-weight: normal;
  color: #ffffff;
  margin: 0 0 30px 0;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .novelty-section__title {
    font-size: 64px;
    margin-bottom: 15px;
  }
}

.novelty-section__subtitle {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(14px, 28 / var(--base-vw) * 100vw, 28px);
  font-weight: normal;
  color: #ffffff;
  margin: 0 0 40px 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .novelty-section__subtitle {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.novelty-section__description {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .novelty-section__description {
    margin-bottom: 40px;
  }
}

.novelty-section__description-title {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(18px, 28 / var(--base-vw) * 100vw, 28px);
  font-weight: normal;
  color: #ffffff;
  margin: 0 0 48px 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .novelty-section__description-title {
    font-size: 24px;
    margin-bottom: 15px;
  }
}

.novelty-section__description-text {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(14px, 24 / var(--base-vw) * 100vw, 24px);
  font-weight: normal;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 15px 0;
  line-height: 240%;
  letter-spacing: 0.05em;
}
.novelty-section__description-text:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .novelty-section__description-text {
    font-size: 16px;
  }
}

.novelty-section__images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-bottom: 60px;
}
.novelty-section__images img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
}
@media (max-width: 767px) {
  .novelty-section__images {
    gap: 0;
    margin-bottom: 40px;
  }
}

.novelty-section__gift-info {
  margin-top: 60px;
  border: 1px solid #ffffff;
  padding: 30px;
}
@media (max-width: 767px) {
  .novelty-section__gift-info {
    margin-top: 40px;
  }
}

.novelty-section__gift-title {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(16px, 18 / var(--base-vw) * 100vw, 18px);
  font-weight: normal;
  color: #ffffff;
  margin: 0 0 15px 0;
  line-height: 1.4;
}
@media (max-width: 767px) {
  .novelty-section__gift-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
}

.novelty-section__gift-condition {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  font-weight: normal;
  color: #ffffff;
  margin: 0 0 20px 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .novelty-section__gift-condition {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

.novelty-section__gift-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.novelty-section__gift-list li {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(12px, 14 / var(--base-vw) * 100vw, 14px);
  font-weight: normal;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 10px 0;
  line-height: 1.6;
  padding-left: 1em;
  position: relative;
  list-style: none;
}
.novelty-section__gift-list li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 50%;
}
.novelty-section__gift-list li:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .novelty-section__gift-list li {
    font-size: 14px;
    padding-left: 15px;
    margin-bottom: 5px;
  }
}

.novelty-section__product-image {
  position: relative;
  width: 100%;
  min-height: 50vh;
  overflow: hidden;
  scroll-margin-top: 80px;
}
@media (max-width: 767px) {
  .novelty-section__product-image {
    min-height: auto;
  }
}

.novelty-section__product-image-wrapper {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
}
@media (max-width: 767px) {
  .novelty-section__product-image-wrapper {
    height: 35vh;
  }
}

.novelty-section__product-image-main {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  display: block;
}

.novelty-section__product-text-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.novelty-section__product-text {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #ffffff;
  z-index: 5;
}

.novelty-section__product-text-title-wrapper {
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  position: relative;
  height: calc(85 / var(--base-vw) * 100vw);
  padding: 5px 0;
}
@media (max-width: 767px) {
  .novelty-section__product-text-title-wrapper {
    height: 42px;
  }
}

.novelty-section__product-text-title {
  font-family: "baskerville-urw", serif;
  font-size: clamp(32px, 64 / var(--base-vw) * 100vw, 64px);
  font-weight: normal;
  margin: 0 0 10px 0;
  line-height: 1.2;
  transform: translateY(0);
}
@media (max-width: 767px) {
  .novelty-section__product-text-title {
    font-size: 25px;
    line-height: 1.4;
    margin-bottom: 0;
  }
}

.novelty-section__product-text-subtitle {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(14px, 20 / var(--base-vw) * 100vw, 20px);
  font-weight: normal;
  margin: 0;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .novelty-section__product-text-subtitle {
    font-size: 18px;
  }
}

/**
 * アバウトセクション コンポーネント
 * 
 * @package Website-Template
 * @version 1.0.0
 */
.about-section {
  position: relative;
  width: 100%;
  background-color: #BAAAA2;
  padding: 100px 0 0 0;
}
@media (max-width: 767px) {
  .about-section {
    padding: 80px 0 0 0;
  }
}

.about-section__logo {
  text-align: center;
  margin-bottom: 60px;
}
.about-section__logo img {
  width: auto;
  height: calc(80 / var(--base-vw) * 100vw);
  display: inline-block;
}
@media (max-width: 767px) {
  .about-section__logo {
    margin-bottom: 40px;
  }
  .about-section__logo img {
    height: 65px;
  }
}

.about-section__intro {
  max-width: 90%;
  margin: 0 auto 80px;
  padding: 0 5vw;
  text-align: center;
}
@media (max-width: 767px) {
  .about-section__intro {
    margin-bottom: 60px;
    padding: 0;
  }
}

.about-section__intro-text {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(20px, 24 / var(--base-vw) * 100vw, 24px);
  line-height: 2.2;
  color: #54250D;
}
@media (max-width: 767px) {
  .about-section__intro-text {
    font-size: 15px;
    line-height: 2.2;
  }
}

.about-section__image-area {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 5vw;
}
@media (max-width: 767px) {
  .about-section__image-area {
    margin-bottom: 60px;
  }
}

.about-section__parallax {
  position: relative;
  width: 100%;
  aspect-ratio: 16/6;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about-section__parallax {
    aspect-ratio: 16/6;
  }
}

.about-section__parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-section__parallax-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  position: relative;
}

.about-section__text-area {
  max-width: 90%;
  margin: 0 auto 100px;
  padding: 0 5vw;
  text-align: center;
}
@media (max-width: 767px) {
  .about-section__text-area {
    margin-bottom: 60px;
    padding: 0;
  }
}

.about-section__text {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(16px, 24 / var(--base-vw) * 100vw, 24px);
  line-height: 2.2;
  color: #54250D;
  margin-bottom: 24px;
}
.about-section__text:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .about-section__text {
    font-size: 14px;
    line-height: 2.2;
    margin-bottom: 20px;
  }
}

.about-section__gallery {
  width: 100%;
  padding: 0;
  margin-top: 80px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .about-section__gallery {
    margin-top: 60px;
  }
}

.about-section__gallery-track {
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  width: 200vw;
  animation: slideGallery 30s linear infinite;
}
@media (max-width: 767px) {
  .about-section__gallery-track {
    width: 200vw;
    animation: slideGallery 18s linear infinite;
  }
}
@media (max-width: 480px) {
  .about-section__gallery-track {
    width: 200vw;
    animation: slideGallery 12s linear infinite;
  }
}

.about-section__gallery-slide {
  flex-shrink: 0;
  width: 20vw;
  aspect-ratio: 16/9;
}
@media (max-width: 767px) {
  .about-section__gallery-slide {
    width: 33.3333333333vw;
  }
}
@media (max-width: 480px) {
  .about-section__gallery-slide {
    width: 50vw;
  }
}
.about-section__gallery-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}

@keyframes slideGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/**
 * フッター コンポーネント
 * 
 * @package Website-Template
 * @version 1.0.0
 */
.footer {
  width: 100%;
  background-color: #C85A4A;
  color: #ffffff;
}
.footer__content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 767px) {
  .footer__content {
    flex-direction: column;
    gap: 0px;
  }
}

.footer__column {
  flex: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .footer__column {
    width: 100%;
  }
}

.footer__link {
  display: block;
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.3s ease;
  padding: 5vw 0;
  position: relative;
}
@media (max-width: 767px) {
  .footer__link {
    padding: 40px 0;
  }
}
.footer__link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #6994DC;
  z-index: 1;
  transition: width 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer__link:hover::before {
    width: 100%;
  }
}

.footer__title {
  font-family: "baskerville-urw", serif;
  font-size: clamp(32px, 56 / var(--base-vw) * 100vw, 56px);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.2;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .footer__title {
    font-size: 42px;
    margin-bottom: 12px;
  }
}

.footer__subtitle {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(20px, 24 / var(--base-vw) * 100vw, 24px);
  line-height: 1.6;
  font-weight: 400;
  position: relative;
  z-index: 2;
}
@media (max-width: 767px) {
  .footer__subtitle {
    font-size: 12px;
  }
}

.footer__divider {
  width: 1px;
  height: 100px;
  background-color: #ffffff;
  margin: 0;
}
@media (max-width: 767px) {
  .footer__divider {
    width: 115px;
    height: 1px;
    margin: auto;
  }
}

.footer__social {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-bottom: 45px;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .footer__social {
    gap: 24px;
    margin-bottom: 40px;
  }
}

.footer__social-icons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.footer__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: #ffffff;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer__social-icon:hover {
    opacity: 0.7;
  }
}

.footer__social-icon-img {
  width: 28px;
  height: 28px;
  display: block;
  filter: brightness(0) invert(1);
}

.footer__brand-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  text-decoration: none;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(20px, 24 / var(--base-vw) * 100vw, 24px);
  transition: color 0.3s ease;
  position: relative;
}
.footer__brand-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translate(-10px, 10px);
  width: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  height: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  background-image: url("../images/arrow-w.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .footer__brand-link:hover {
    color: #4A90E2;
  }
  .footer__brand-link:hover::after {
    transform: translateY(-50%) translate(0, 0);
    opacity: 1;
  }
  .footer__brand-link:hover .footer__brand-arrow {
    transform: translate(10px, -10px);
    opacity: 0;
  }
}

.footer__brand-arrow {
  width: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  height: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  display: block;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer__brand-text {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(20px, 24 / var(--base-vw) * 100vw, 24px);
  line-height: 1;
}

.footer__copyright {
  text-align: center;
  padding-bottom: 50px;
}
.footer__copyright p {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(14px, 16 / var(--base-vw) * 100vw, 16px);
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .footer__copyright p {
    font-size: 10px;
  }
}

/**
 * メニューボード コンポーネント
 * 
 * @package Website-Template
 * @version 1.0.0
 */
.menu-board {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background-color: rgba(84, 37, 13, 0.98);
  opacity: 0;
  visibility: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 769px) {
  .menu-board {
    overflow-y: hidden;
  }
}
.menu-board[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}

.menu-board__container {
  max-width: 90%;
  margin: 0 auto;
  padding: calc(80 / var(--base-vw) * 100vw) 0 calc(60 / var(--base-vw) * 100vw);
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
@media (max-width: 767px) {
  .menu-board__container {
    padding: 30px 0;
    min-height: 100svh;
    height: auto;
    overflow: visible;
  }
}

.menu-board__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .menu-board__header {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0;
    margin-bottom: 12px;
    padding-top: 20px;
  }
}

.menu-board__brand {
  flex: 0 0 auto;
}

.menu-board__brand-name {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
}

.menu-board__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(30px, 80 / var(--base-vw) * 100vw, 80px);
  flex: 1;
  justify-content: flex-start;
}
@media (max-width: 767px) {
  .menu-board__nav {
    flex-direction: column;
    align-items: baseline;
    margin-left: 0;
    gap: 12px;
    flex: 1;
  }
}

.menu-board__nav-link {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(24px, 48 / var(--base-vw) * 100vw, 48px);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease, transform 0.3s ease;
  display: inline-block;
  white-space: nowrap;
}
@media (hover: hover) and (pointer: fine) {
  .menu-board__nav-link:hover {
    color: #4A90E2;
  }
}
@media (max-width: 767px) {
  .menu-board__nav-link {
    font-size: 24px;
    transform: none;
  }
  .menu-board__nav-link:nth-child(3), .menu-board__nav-link:nth-child(4) {
    display: none;
  }
}

.menu-board__header-right {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .menu-board__header-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.menu-board__header-link {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .menu-board__header-link:hover {
    color: rgba(255, 255, 255, 0.7);
  }
}

.menu-board__content {
  flex: 1;
}
@media (max-width: 767px) {
  .menu-board__content {
    overflow-y: visible;
  }
}

.menu-board__title {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(24px, 48 / var(--base-vw) * 100vw, 48px);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 40px;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .menu-board__title {
    font-size: 24px;
    margin-bottom: 24px;
    font-weight: 400;
  }
}

.menu-board__product-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 20px;
}
@media (max-width: 767px) {
  .menu-board__product-list {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.menu-board__product-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  padding: 0;
  cursor: pointer;
  padding-bottom: 20px;
}
.menu-board__product-item::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #4A90E2;
  transition: width 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .menu-board__product-item:hover::before {
    width: 100%;
  }
  .menu-board__product-item:hover .menu-board__product-number,
  .menu-board__product-item:hover .menu-board__product-desc,
  .menu-board__product-item:hover .menu-board__product-name {
    color: #4A90E2;
  }
}
@media (max-width: 767px) {
  .menu-board__product-item {
    gap: 5px;
    padding: 0;
    margin-bottom: 24px;
    align-items: flex-start;
  }
  .menu-board__product-item::before {
    display: none;
  }
}

.menu-board__product-number {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(15px, 35 / var(--base-vw) * 100vw, 35px);
  font-weight: 400;
  color: #ffffff;
  flex-shrink: 0;
  width: 32px;
  transition: color 0.3s ease;
  text-align: center;
  padding-top: calc(10 / var(--base-vw) * 100vw);
}
@media (max-width: 767px) {
  .menu-board__product-number {
    font-size: 16px;
    width: auto;
    min-width: 13px;
    line-height: 1.4;
    padding-top: 2px;
  }
}

.menu-board__product-info {
  flex: 1;
}
@media (max-width: 767px) {
  .menu-board__product-info {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
}

.menu-board__product-desc {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(13px, 18 / var(--base-vw) * 100vw, 18px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .menu-board__product-desc {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 6px;
    color: rgba(255, 255, 255, 0.8);
  }
}

.menu-board__product-name {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(16px, 18 / var(--base-vw) * 100vw, 18px);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  display: inline-block;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .menu-board__product-name {
    font-size: 13px;
    display: block;
    line-height: 1.4;
  }
}
.menu-board__product-name span {
  font-size: clamp(25px, 30 / var(--base-vw) * 100vw, 30px);
}
@media (max-width: 767px) {
  .menu-board__product-name span {
    font-size: 18px;
    font-weight: 400;
    display: inline;
    padding-left: 5px;
  }
}
@media (max-width: 767px) {
  .menu-board__product-name {
    font-size: 14px;
    line-height: 1.4;
  }
}

.menu-board__mobile-nav {
  display: none;
}
@media (max-width: 767px) {
  .menu-board__mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 5px;
    margin-bottom: 12px;
  }
}

.menu-board__mobile-nav-link {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: 24px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 767px) {
  .menu-board__mobile-nav-link {
    display: block;
  }
}

.menu-board__mobile-brand {
  display: none;
}
@media (max-width: 767px) {
  .menu-board__mobile-brand {
    display: block;
    margin-top: 15px;
    margin-bottom: 12px;
  }
}

.menu-board__mobile-brand-name {
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin: 0;
}
@media (max-width: 767px) {
  .menu-board__mobile-brand-name {
    display: block;
  }
}

.menu-board__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
@media (max-width: 767px) {
  .menu-board__footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0;
    padding-top: 0;
    border-top: none;
    margin-top: 0;
  }
}

.menu-board__footer-links {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .menu-board__footer-links {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

.menu-board__footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "FOT-筑紫Aオールド明朝 Pr6 R";
  font-size: clamp(35px, 48 / var(--base-vw) * 100vw, 48px);
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
  position: relative;
}
.menu-board__footer-link::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) translate(-10px, 10px);
  width: clamp(30px, 40 / var(--base-vw) * 100vw, 40px);
  height: clamp(30px, 40 / var(--base-vw) * 100vw, 40px);
  background-image: url("../images/arrow-w.svg");
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  filter: brightness(0) invert(1);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .menu-board__footer-link:hover {
    color: #4A90E2;
  }
  .menu-board__footer-link:hover::before {
    transform: translateY(-50%) translate(0, 0);
    opacity: 1;
  }
  .menu-board__footer-link:hover .menu-board__footer-arrow {
    transform: translate(10px, -10px);
    opacity: 0;
  }
}
.menu-board__footer-link span {
  display: block;
}
@media (max-width: 767px) {
  .menu-board__footer-link {
    font-size: 14px;
    gap: 6px;
  }
  .menu-board__footer-link::before {
    width: 12px;
    height: 12px;
  }
}

.menu-board__footer-arrow {
  width: clamp(30px, 40 / var(--base-vw) * 100vw, 40px);
  height: clamp(30px, 40 / var(--base-vw) * 100vw, 40px);
  display: block;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (max-width: 767px) {
  .menu-board__footer-arrow {
    width: 12px;
    height: 12px;
  }
}

.menu-board__social {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media (max-width: 767px) {
  .menu-board__social {
    gap: 16px;
  }
}

.menu-board__social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .menu-board__social-icon:hover {
    opacity: 0.7;
  }
}

.menu-board__social-icon-img {
  width: clamp(30px, 40 / var(--base-vw) * 100vw, 40px);
  height: clamp(30px, 40 / var(--base-vw) * 100vw, 40px);
  display: block;
  filter: brightness(0) invert(1);
}

.mv-text {
  position: relative;
  width: 90%;
  margin: 0 auto;
  z-index: 10;
}
.mv-text__offset {
  position: relative;
}
.mv-text__container {
  position: relative;
  width: 100%;
  display: flex;
  gap: 100px;
}
@media (max-width: 767px) {
  .mv-text__container {
    gap: 0;
    display: block;
    min-height: 2000px;
  }
}
.mv-text__h1 {
  position: sticky;
  left: 0;
  z-index: 10;
  flex: 0 0 auto;
  align-self: flex-start;
  will-change: top;
  /* overflow: hidden; */
}
@media (max-width: 767px) {
  .mv-text__h1 {
    align-self: auto;
  }
}
.mv-text__h1 p {
  font-size: clamp(30px, 40 / var(--base-vw) * 100vw, 40px);
  color: #ffffff;
  margin: 0;
  position: absolute;
  left: 0;
  top: -50px;
}
@media (max-width: 767px) {
  .mv-text__h1 p {
    font-size: 20px;
    top: -30px;
  }
}
.mv-text__h1 h1 {
  font-size: clamp(40px, 64 / var(--base-vw) * 100vw, 64px);
  font-weight: bold;
  color: #ffffff;
  margin: 0;
  padding-bottom: 40px;
  opacity: 0;
  visibility: hidden;
}
@media (max-width: 767px) {
  .mv-text__h1 h1 {
    font-size: 35px;
  }
}
.mv-text__h1 h1 span {
  display: block;
  overflow: hidden;
  position: relative;
}
.mv-text__h1 h1 span b {
  display: block;
}
.mv-text__h1 h2 {
  font-size: clamp(16px, 24 / var(--base-vw) * 100vw, 24px);
  color: #ffffff;
  margin: 0;
  opacity: 0;
  line-height: 2;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .mv-text__h1 h2 {
    font-size: 16px;
  }
}
.mv-text__h1 h2 img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  margin-bottom: 30px;
}
.mv-text__h1 h3 {
  font-weight: 400;
  font-size: clamp(30px, 40 / var(--base-vw) * 100vw, 40px);
  color: #ffffff;
  opacity: 0;
  transform: translateY(5px);
  padding-bottom: 200px;
}
@media (max-width: 767px) {
  .mv-text__h1 h3 {
    font-size: 24px;
  }
}
.mv-text__gallery {
  flex: 1 1 auto;
  height: clamp(850px, 90vw, 2000px);
  margin-top: 120lvh;
}
@media (max-width: 767px) {
  .mv-text__gallery {
    display: none;
  }
}

[pc-only] {
  display: block !important;
}

[sp-only] {
  display: none !important;
}

@media (max-width: 767px) {
  [pc-only] {
    display: none !important;
  }
  [sp-only] {
    display: block !important;
  }
}
/*# sourceMappingURL=main.css.map */
