@charset "UTF-8";
/* ******************************
 *
 * RESPONSIVE MIXIN
 *
 * ****************************** */
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
@font-face {
  font-family: "tsukuhou";
  src: url("../font/Tsukuhou-35Point-Gothic.ttf") format("truetype");
}
/* ******************************
 *
 * FONT SETTINGS
 *
 * ****************************** */
@-webkit-keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loopCl {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loopClRv {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes loopClRv {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
:root {
  --color-base: #FFFFFF;
  --color-main: #212121;
  --color-accent: #b68a5f;
  --color-white: #FFFFFF;
  --color-black: #22282a;
  --color-gray: #F0F0F0;
  --font-main: "neue-haas-grotesk-text", "ryo-gothic-plusn", sans-serif;
  --font-unique: "times-new-roman", sans-serif;
  --burger-size: 48px;
  --burger-line: 2px;
  --burger-color: var(--text-color, #111);
  --burger-bg: transparent;
  --burger-shadow: 0 6px 20px rgba(0,0,0,.08);
  --ease-squish: cubic-bezier(.2,.7,.2,1.1);
}

[data-theme=dark] {
  --color-base: #3a335c;
  --color-main: #ecabbf;
  --color-accent: #ecabbf;
  --color-white: #FFFFFF;
  --color-black: #22282a;
  --color-gray: #F0F0F0;
}
[data-theme=dark] .gHeader_logo::before {
  opacity: 0;
}
[data-theme=dark] .gHeader_logo img {
  opacity: 1;
}
[data-theme=dark] .topVideo .img {
  mix-blend-mode: color-dodge;
}

html {
  font-family: var(--font-main);
  background: var(--color-base);
  color: var(--color-main);
  scroll-behavior: smooth;
  scrollbar-width: none;
  margin-top: 0 !important;
}
@media screen and (min-width: 320px) {
  html {
    font-size: 2.56411vw;
  }
}
@media screen and (min-width: 600px) {
  html {
    font-size: 1.5vw;
  }
}
@media screen and (min-width: 1025px) {
  html {
    font-size: 0.5208335vw;
  }
}
@media screen and (min-width: 1921px) {
  html {
    font-size: 0.5208335vw;
  }
}
html::-webkit-scrollbar {
  display: none;
}

a {
  color: inherit;
  text-decoration: none;
}

.img {
  overflow: hidden;
}
.imgWrapper {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 66.67%;
  background: var(--color-accent);
}
.imgWrapper img, .imgWrapper video {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gHeader {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 1000;
  width: 100%;
  background: var(--color-base);
  border-bottom: solid 1px;
}
@media screen and (min-width: 320px) {
  .gHeader {
    padding: 16px 2.5%;
  }
}
@media screen and (min-width: 600px) {
  .gHeader {
    padding: 16px 2.5%;
  }
}
.gHeader_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.gHeader_logo {
  position: relative;
}
@media screen and (min-width: 320px) {
  .gHeader_logo {
    width: 12.4rem;
  }
}
@media screen and (min-width: 600px) {
  .gHeader_logo {
    width: 16.4rem;
  }
}
.gHeader_logo * {
  display: block;
  width: 100%;
  height: auto;
}
.gHeader_logo::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: url("../img/logo_header_light.png") center center/contain no-repeat;
  opacity: 1;
}
.gHeader_logo img {
  opacity: 0;
}
.gHeader_cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.gHeader_cta a {
  color: var(--color-accent);
}
@media screen and (min-width: 320px) {
  .gHeader_cta a {
    font-size: 1.24rem;
  }
}
@media screen and (min-width: 600px) {
  .gHeader_cta a {
    font-size: 1.8rem;
  }
}
.gHeader_cta a span {
  position: relative;
  display: inline-block;
}
.gHeader_cta a span::after {
  content: "";
  display: block;
  position: absolute;
  inset: auto auto -2px 0;
  width: 100%;
  height: 1px;
  background: var(--color-main);
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: center left;
          transform-origin: center left;
  -webkit-transition: -webkit-transform 400ms ease;
  transition: -webkit-transform 400ms ease;
  transition: transform 400ms ease;
  transition: transform 400ms ease, -webkit-transform 400ms ease;
}
.gHeader_cta a:hover span::after {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center right;
          transform-origin: center right;
}

.themeToggle {
  width: 42px;
  height: 42px;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.themeToggle svg {
  width: 24px;
  height: 24px;
  stroke: var(--color-main);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.themeToggle .icon-light {
  opacity: 1;
}

[data-theme=dark] .themeToggle .icon-light {
  opacity: 0;
}

.themeToggle .icon-dark {
  opacity: 0;
}

[data-theme=dark] .themeToggle .icon-dark {
  opacity: 1;
}

.gFooter {
  overflow: clip;
}
.gFooter_slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gFooter_sliderWrapper, .gFooter_sliderItemwrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gFooter_sliderWrapper {
  border-top: solid 1px;
  border-bottom: solid 1px;
}
.gFooter_sliderItemwrapper {
  -webkit-animation: loopCl 40000ms linear infinite both;
          animation: loopCl 40000ms linear infinite both;
}
.gFooter_sliderItem {
  font-family: var(--font-unique);
  font-style: italic;
  line-height: 1;
  color: var(--color-accent);
}
@media screen and (min-width: 320px) {
  .gFooter_sliderItem {
    font-size: 6.4rem;
    width: 57rem;
  }
}
@media screen and (min-width: 600px) {
  .gFooter_sliderItem {
    font-size: 16rem;
    width: 142rem;
  }
}
.gFooter_cta {
  display: grid;
}
@media screen and (min-width: 320px) {
  .gFooter_cta {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 600px) {
  .gFooter_cta {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 320px) {
  .gFooter_ctaItem {
    padding: 2.5vw;
  }
}
@media screen and (min-width: 600px) {
  .gFooter_ctaItem {
    padding: 2.5vw;
  }
}
@media screen and (min-width: 320px) {
  .gFooter_ctaItem:first-child {
    border-bottom: solid 1px;
    border-right: none;
  }
}
@media screen and (min-width: 600px) {
  .gFooter_ctaItem:first-child {
    border-bottom: none;
    border-right: solid 1px;
  }
}
.gFooter_ctaItemWrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  background: var(--color-accent);
  color: var(--color-base);
}
@media screen and (min-width: 320px) {
  .gFooter_ctaImg {
    padding: 1.5vw;
  }
}
@media screen and (min-width: 600px) {
  .gFooter_ctaImg {
    padding: 1.5vw;
  }
}
.gFooter_ctaImg .imgWrapper {
  background: var(--color-base);
}
@media screen and (min-width: 320px) {
  .gFooter_ctaImg .imgWrapper {
    padding-bottom: 124%;
  }
}
@media screen and (min-width: 600px) {
  .gFooter_ctaImg .imgWrapper {
    padding-bottom: 124%;
  }
}
.gFooter_ctaInfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 320px) {
  .gFooter_ctaInfo {
    padding: 4.5vw 1.5vw 1.5vw 0;
  }
}
@media screen and (min-width: 600px) {
  .gFooter_ctaInfo {
    padding: 1.5vw 1.5vw 1.5vw 0;
  }
}
.gFooter_ctaInfoBottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.gFooter_ctaTitleEn {
  font-family: var(--font-unique);
  line-height: 1;
}
@media screen and (min-width: 320px) {
  .gFooter_ctaTitleEn {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 600px) {
  .gFooter_ctaTitleEn {
    font-size: 7.2rem;
  }
}
.gFooter_ctaTitleJa {
  font-family: var(--font-unique);
  font-weight: 400;
}
@media screen and (min-width: 320px) {
  .gFooter_ctaTitleJa {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 600px) {
  .gFooter_ctaTitleJa {
    font-size: 2.4rem;
  }
}
.gFooter_ctaDesc {
  width: 80%;
}
@media screen and (min-width: 320px) {
  .gFooter_ctaDesc {
    font-size: 1.1rem;
  }
}
@media screen and (min-width: 600px) {
  .gFooter_ctaDesc {
    font-size: 1.6rem;
  }
}
.gFooter_ctaIcon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 15%;
}
.gFooter_ctaIcon svg {
  stroke: var(--color-base);
  display: block;
}
@media screen and (min-width: 320px) {
  .gFooter_ctaIcon svg {
    width: 2rem;
    height: 2rem;
  }
}
@media screen and (min-width: 600px) {
  .gFooter_ctaIcon svg {
    width: 64%;
    height: 64%;
  }
}
.gFooter_copy {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 320px) {
  .gFooter_copy {
    font-size: 0.9rem;
    padding: 0 0 2rem;
  }
}
@media screen and (min-width: 600px) {
  .gFooter_copy {
    font-size: 1.4rem;
    padding: 0 0 2rem;
  }
}
.gFooter_copyItem {
  width: 100%;
  border-top: solid 1px;
  border-bottom: solid 1px;
  padding: 16px 0;
}

.burger {
  inline-size: var(--burger-size);
  block-size: var(--burger-size);
  display: grid;
  place-items: center;
  outline: none;
  border: none;
  background: transparent;
  cursor: pointer;
  -webkit-transition: border-color 0.28s ease, background-color 0.28s ease, -webkit-transform 0.28s var(--ease-squish);
  transition: border-color 0.28s ease, background-color 0.28s ease, -webkit-transform 0.28s var(--ease-squish);
  transition: transform 0.28s var(--ease-squish), border-color 0.28s ease, background-color 0.28s ease;
  transition: transform 0.28s var(--ease-squish), border-color 0.28s ease, background-color 0.28s ease, -webkit-transform 0.28s var(--ease-squish);
  -webkit-tap-highlight-color: transparent;
}

.burger:focus-visible {
  outline: 2px solid color-mix(in oklab, var(--burger-color), transparent 40%);
  outline-offset: 3px;
}

.burger:hover {
  -webkit-transform: translateY(-1px) scale(1.02);
          transform: translateY(-1px) scale(1.02);
}

/* ライン容器（3Dっぽい深みを少し） */
.burger .lines {
  position: relative;
  inline-size: 24px;
  block-size: 18px;
  display: block;
  -webkit-perspective: 500px;
          perspective: 500px;
}

/* ライン */
.burger .lines i {
  position: absolute;
  inset-inline: 0;
  block-size: var(--burger-line);
  background: var(--color-accent);
  border-radius: 2px;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transition: opacity 0.25s ease, translate 0.35s var(--ease-squish), -webkit-transform 0.4s var(--ease-squish);
  transition: opacity 0.25s ease, translate 0.35s var(--ease-squish), -webkit-transform 0.4s var(--ease-squish);
  transition: transform 0.4s var(--ease-squish), opacity 0.25s ease, translate 0.35s var(--ease-squish);
  transition: transform 0.4s var(--ease-squish), opacity 0.25s ease, translate 0.35s var(--ease-squish), -webkit-transform 0.4s var(--ease-squish);
}

/* 上・中・下 */
.burger .lines i:nth-child(1) {
  top: 0;
}

.burger .lines i:nth-child(2) {
  top: calc(50% - var(--burger-line) / 2);
}

.burger .lines i:nth-child(3) {
  bottom: 0;
}

/* 開閉アニメ（Xへモーフィング ＋ 軽い3D） */
.burger.is-open {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}

.burger.is-open .lines {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.burger.is-open .lines i:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(45deg) translateZ(0.01px);
          transform: translateY(9px) rotate(45deg) translateZ(0.01px);
}

.burger.is-open .lines i:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(8px) rotateY(40deg);
          transform: translateX(8px) rotateY(40deg);
}

.burger.is-open .lines i:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-45deg) translateZ(0.01px);
          transform: translateY(-9px) rotate(-45deg) translateZ(0.01px);
}

/* 動きに敏感な方への配慮 */
@media (prefers-reduced-motion: reduce) {
  .burger,
  .burger .lines i {
    -webkit-transition: none;
    transition: none;
  }
}
:root {
  --menu-w: 260px;
  --menu-radius: 16px;
  --menu-border: color-mix(in oklab, var(--text-color, #111), transparent 80%);
  --menu-bg: color-mix(in oklab, var(--bg-color, #fff), #ffffff 10%);
  --menu-ink: var(--text-color, #111);
  --menu-shadow: 0 10px 40px rgba(0,0,0,.18);
  --menu-highlight: linear-gradient(90deg, rgba(255,255,255,.45), rgba(255,255,255,0) 40%);
}

[data-theme=dark] {
  --menu-bg: color-mix(in oklab, #101013, var(--bg-color, #000) 60%);
  --menu-ink: var(--text-color, #fff);
  --menu-border: color-mix(in oklab, var(--text-color, #fff), transparent 86%);
  --menu-shadow: 0 16px 60px rgba(0,0,0,.55);
}

.miniMenu {
  position: fixed; /* JSでボタン座標に追随 */
  inset: 0 auto auto 0; /* 初期値は0でもOK。JSで上書き */
  width: var(--menu-w);
  border-radius: var(--menu-radius);
  border: 1px solid var(--menu-border);
  color: var(--menu-ink);
  background: var(--menu-bg);
  -webkit-box-shadow: var(--menu-shadow);
          box-shadow: var(--menu-shadow);
  padding: 10px;
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  /* 初期は少し上&縮小&傾き */
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: translateY(-8px) translateX(6px) rotate(-7deg) scale(0.96);
          transform: translateY(-8px) translateX(6px) rotate(-7deg) scale(0.96);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.28s ease, -webkit-transform 0.42s cubic-bezier(0.2, 0.7, 0.2, 1.1);
  transition: opacity 0.28s ease, -webkit-transform 0.42s cubic-bezier(0.2, 0.7, 0.2, 1.1);
  transition: transform 0.42s cubic-bezier(0.2, 0.7, 0.2, 1.1), opacity 0.28s ease;
  transition: transform 0.42s cubic-bezier(0.2, 0.7, 0.2, 1.1), opacity 0.28s ease, -webkit-transform 0.42s cubic-bezier(0.2, 0.7, 0.2, 1.1);
  position: fixed;
}
@media screen and (min-width: 320px) {
  .miniMenu {
    inset: 10rem auto auto 2.5vw;
  }
}
@media screen and (min-width: 600px) {
  .miniMenu {
    inset: 10rem auto auto 2.5vw;
  }
}

.miniMenu::after {
  /* 小さな矢印（ハンバーガー側を指す） */
  content: "";
  position: absolute;
  top: -6px;
  left: 18px;
  width: 12px;
  height: 12px;
  background: var(--menu-bg);
  border: 1px solid var(--menu-border);
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-box-shadow: -2px -2px 8px rgba(0, 0, 0, 0.04);
          box-shadow: -2px -2px 8px rgba(0, 0, 0, 0.04);
}

.miniMenu_list {
  list-style: none;
  margin: 0;
  padding: 6px;
  display: grid;
  gap: 6px;
}

.miniMenu_list a {
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-auto-flow: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
  border-radius: 12px;
  position: relative;
  isolation: isolate;
  -webkit-transition: background-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-color 0.25s ease, transform 0.25s ease;
  transition: background-color 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
}
@media screen and (min-width: 320px) {
  .miniMenu_list a {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 600px) {
  .miniMenu_list a {
    font-size: 1.6rem;
  }
}

.miniMenu_list a::after {
  /* うっすら右方向グロー */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 60% at 100% 50%, color-mix(in oklab, var(--menu-ink), transparent 92%) 0%, transparent 60%);
  opacity: 0;
  -webkit-transition: opacity 0.25s ease;
  transition: opacity 0.25s ease;
  border-radius: inherit;
  z-index: -1;
}

.miniMenu_list a:hover {
  background: color-mix(in oklab, var(--menu-ink), transparent 94%);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.miniMenu_list a:hover::after {
  opacity: 0.6;
}

.miniMenu--open {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0) translateX(0) rotate(0deg) scale(1);
          transform: translateY(0) translateX(0) rotate(0deg) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .miniMenu {
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
            transform: none;
  }
  .miniMenu--open {
    -webkit-transform: none;
            transform: none;
  }
}/*# sourceMappingURL=style.css.map */