@charset "UTF-8";

/* ===============================================
   1. Variables & Base (style_responsive + style breakpoints)
   =============================================== */

@media screen and (min-width: 769px) {
  html {
    scrollbar-gutter: stable;
  }
}

:root {
  --font-jp: "Inter", "Noto Sans JP", sans-serif;
  --font-title: "montserrat", sans-serif;
  --mincho-title: "fot-tsukumin-pr6n", sans-serif;
  --color-bg: #ffffff;
  --color-text: #000000;
  --max-width: 1200px;
  --padding-side: 24px;
  --mask-gradient: linear-gradient(to bottom, #000 45%, transparent 65%);
}

/* ★修正: スクロールの引っかかり対策 */
html,
body {
  overscroll-behavior: none; /* バウンス（跳ね返り）を無効化 */
  height: auto;
}

body {
  font-family: var(--font-jp);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.8;
  font-weight: 400;
  width: 100%;
  overflow-x: hidden;
  transition: background-color 0.6s ease;
}

body > * {
  pointer-events: auto;
}

section {
  pointer-events: auto;
}

body.is-bg-dark {
  background-color: #000;
}

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

a {
  transition: opacity 0.3s;
}

.force-justify {
  text-align: justify;
}

/* ユーティリティ: PC/SP 切り替え */
.sp-only {
  display: contents;
}

.pc-only {
  display: block;
}

@media screen and (max-width: 768px) {
  html {
    scrollbar-gutter: auto !important;
  }
  .sp-only {
    display: block;
  }
  .pc-only {
    display: contents;
  }
  .hero,
  .cmy-section,
  .tangle-section,
  .concept {
    width: 100%;
  }
}

/* ===============================================
   2. Utilities / Components
   =============================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--padding-side);
  width: 100%;
  position: relative;
}

.section-title {
  font-family: var(--font-title), var(--font-en);
  font-size: 3.2rem;
  margin-bottom: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.section-title--center {
  text-align: center;
}

.section-title--white {
  color: #fff;
}

.text-white {
  color: #fff;
}

.mb-large {
  margin-bottom: 6.4rem;
}

/* Button Style */
.btn-arrow {
  display: inline-flex;
  align-items: center;
  font-size: 1.44rem;
  font-weight: 500;
  margin-top: 1.6rem;
  cursor: pointer;
}

.btn-arrow .arrow {
  margin-left: 8px;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-arrow:hover .arrow {
  transform: translateX(5px);
}

/* ============================================
   Custom Cursor Styles
============================================ */
@media (min-width: 769px) {
  body,
  a,
  button,
  .hamburger-btn {
    cursor: none;
  }

  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    background-color: #fff;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition:
      width 0.2s,
      height 0.2s,
      background-color 0.2s;
    mix-blend-mode: difference;
  }

  body.is-hovering .custom-cursor {
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.8);
  }
}

/* ===============================================
   Header
   =============================================== */
.header {
  padding: 40px 0 10px 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.header__inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 var(--padding-side);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  pointer-events: auto;
  position: fixed;
  z-index: 10;
  left: 5%;
  top: 3%;
  mix-blend-mode: difference;
  color: #fff;
  transform: scale(1);
  transform-origin: left top;
}

.header__logo .h1main {
  font-family: "gotham", sans-serif;
  font-size: 3.84rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.1;
  margin: 0;
}

.h1sub {
  font-size: 1.6rem;
  letter-spacing: 0.2em;
}

.header__logo img {
  width: 100%;
  display: block;
}

.header__nav {
  pointer-events: auto;
  mix-blend-mode: difference;
  z-index: 1000;
  position: fixed;
  right: calc((100% - 1200px) / 2 + var(--padding-side));
}

.nav__list {
  display: flex;
  gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item a {
  font-family: var(--font-title);
  font-size: 1.44rem;
  font-weight: 100;
  letter-spacing: 0.15em;
  display: block;
  color: #ffffff;
  text-decoration: none;
  position: relative;
  padding-left: 15px;
}

.nav__item a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: translateY(-50%) rotate(45deg);
  transition: left 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.nav__item a:hover::before {
  left: 4px;
}

/* style.cssのブレイクポイント: 1200px */
@media screen and (max-width: 1200px) {
  .header__logo img {
    width: 90px;
  }
  .header__nav {
    right: calc((100% - 1200px) / 50 + var(--padding-side));
  }
  .nav__list {
    gap: 2vw;
  }
  .nav__item a {
    font-size: 1.3vw;
    padding-left: 1.2em;
  }
}

/* style.cssのブレイクポイント: 768px */
@media screen and (max-width: 768px) {
  .header {
    padding: 20px 0 0;
  }
  .header__nav {
    top: auto;
    bottom: 20px;
    right: 20px;
  }
  .nav__list {
    gap: 20px;
  }
  .nav__item a {
    font-size: 1.28rem;
  }
}

/* ===============================================
   Hero Section
   =============================================== */
.hero {
  padding-top: 85px;
  position: relative;
  width: 100%;
  height: 100vh;
  -webkit-font-smoothing: antialiased;
  /* 背景を単色の円に変更 */
  /*background: 
    radial-gradient(circle at 85% 45%, #f5f5f5 0%, #f5f5f5 40%, transparent 40%),
    #ffffff;
  background-size: cover;*/
}

.hero__container {
  position: relative;
  height: 100vh;
}

.hero__text {
  position: absolute;
  top: 50%;
  left: 18%;
  font-family: var(--font-jp);
  font-size: clamp(0.96rem, 1.5vw, 1.76rem);
  flex: 1;
  padding-bottom: 15%;
  position: relative;
  letter-spacing: 0.18em;
  z-index: 2;
  min-width: 200px;
  opacity: 0;
  will-change: opacity, transform;
}

.hero__copy {
  line-height: 1.8;
  margin-bottom: 3.2rem;
}
.hero__copy--highlight {
  font-size: clamp(2.56rem, 4vw, 3.84rem);
}
.hero__sub-copy {
  line-height: 2.3;
}

.hero__visual {
  position: absolute;
  top: -100px;
  right: -130px;
}

/* 2枚を重ねるための基準 */
.hero-cube-wrap {
  position: relative;
  margin-left: auto;
  width: clamp(300px, 70%, 800px);
}

/* 共通 */
.hero-cube {
  display: block;
  width: 100%;
  height: auto;
}

/* 下の画像 */
.hero-cube--base {
  position: relative;
  z-index: 1;
}

/* 上の画像 */
.hero-cube--active {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
}

@media screen and (min-width: 1400px) {
  .hero__text {
    flex: 1;
    padding-left: 5%;
    padding-right: 5%;
  }
}

/* ===============================================
   Concept Sticky & Overlap
   =============================================== */
.concept__container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.concept-sticky {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 80px 0;
  top: -300px;
}

.concept-sticky__visual {
  position: sticky;
  top: 0;
  flex: 0 0 50%;
  max-width: 600px;
  height: 100vh;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.overlap-visual {
  position: absolute; /* ← これが抜けていました */
  top: 0; /* ← これも必要 */
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  pointer-events: none;
}

.overlap-visual__img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.concept-sticky__visual > div:last-child {
  width: 100%;
}

.concept-sticky__right {
  flex: 1;
  padding-top: 80vh;
}

.concept-sticky__text {
  line-height: 2.5;
  font-size: 1.76rem;
  font-weight: 400;
  color: #000;
  letter-spacing: 0.5em;
  font-feature-settings: "palt";
}

.concept__vertical-text {
  writing-mode: vertical-rl;
  font-family: var(--mincho-title);
  font-weight: 200;
  font-style: normal;
  font-size: 3.52rem;
  letter-spacing: 0.15em;
  line-height: 1.8;
  margin-right: 200px;
  z-index: 20;
  position: relative;
  left: 50%;
  top: 50%;
  transform: translateX(-50%);
}

/* スマホ用Overlap (Display control handled in media query) */
.overlap-visual-sp {
  display: none;
}

/* ===============================================
   Rainbow Section
   =============================================== */
.rainbow {
  position: relative;
  top: -400px;
  z-index: 4;
  min-height: 1400px;
}

.rainbow::before {
  content: none !important;
}

.rainbow__bg {
  position: absolute;
  text-align: center;
  top: 0;
  z-index: 0;
  pointer-events: none;
}

.rainbow__bg img {
  width: 100%;
  height: auto;
  object-position: bottom top;
}

.rainbow__content {
  position: absolute;
  top: clamp(30%, 5vw + 50%, 70%);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
  color: #fff;
}

.rainbow__content .section-title {
  margin: 0 0 3.2rem;
  line-height: 1.05;
  white-space: nowrap;
    font-size: 4.96rem;
    font-weight: 300;
      mix-blend-mode: difference;

}

.rainbow__content .section-title .content__main-text_en {
  display: block;
  margin: 10px 0 0;
  line-height: 1;
  font-size: 1.2rem;
  letter-spacing: 0.4em;
  font-family: var(--font-title);
}

.rainbow__content p {
  margin: 0;
  font-size: 1.6rem;
}

/* ===============================================
   CMY Cube Section
   =============================================== */
.cmy-section {
  position: relative;
  top: -20px;
}
.cmy-section__layout {
  position: relative;
  min-height: 100vh;
  padding-bottom: 20vh;
}

.cmy-section__header {
  margin: 0 8rem 8rem 12.8rem;
}

.cmy-title {
  font-family: "montserrat", "Noto Sans JP", sans-serif;
  font-size: 3.84rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.cmy-subtitle {
  font-family: var(--font-title);
  font-size: 1.28rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  padding-left: 0.32rem;
  opacity: 0; /* Animation init */
}

/* style.css ブレイクポイント */
@media screen and (max-width: 1100px) {
  .cmy-title {
    font-size: 3.5vw;
  }
}

.cmy-section__visual {
  position: absolute;
  width: 55%;
  max-width: 850px;
  left: 0px;
  bottom: 80px;
}

.cmy-section__visual img {
  width: 100%;
  height: auto;
}

  .cmy-section__visual02 {
    position: absolute;
    width: 100%;
    max-width: 720px;
    top: -350px;
    right: -400px;
  }

.cmy-section__body {

  display: flex;
  justify-content: center;
  max-width: 550px;
}

.cmy-section__body p {
  font-size: 1.6rem;
  line-height: 2.3;
  margin:0;
  text-align: justify;
}

.cmy-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.cmy-img.active {
  opacity: 1;
  position: relative;
}

/* ===============================================
   Refraction (Prism) Section
   =============================================== */
.refraction {
  padding: 0 0 200px;
  background-color: transparent;
  height: 100vh;
  position: relative;
  margin-top: 0;
}

.refraction__layout {
  display: grid;
  grid-template-columns: 1fr 420px 1fr;
  gap: 9%;
  align-items: start;
  height: 100vh;
}

.refraction__visual {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 65vh;
  overflow: hidden;
  will-change: clip-path;
}

.refraction__visual--left {
  background-image: url(/assets/img/prism-1_1.png);
  margin-top: 180px;
  clip-path: inset(100% 0% 0% 0%);
  -webkit-clip-path: inset(100% 0% 0% 0%);
}

.refraction__visual--right {
  background-image: url(/assets/img/prism-1_2.png);
  margin-top: 0;
  clip-path: inset(0% 0% 100% 0%);
  -webkit-clip-path: inset(0% 0% 100% 0%);
}

.refraction__content {
  text-align: left;
  padding-top: 20px;
}

.refraction__header {
  text-align: center;
  margin-bottom: 7.2rem;
  position: relative;
}

.refraction-title {
  font-family: var(--font-jp);
  font-size: 3.84rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.refraction-subtitle {
  font-family: var(--font-title);
  font-size: 1.28rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
}

.refraction-body p {
  font-size: 1.6rem;
  line-height: 2.5;
  margin-bottom: 3.2rem;
  text-align: center;
}

/* ===============================================
   Animation Layers
   =============================================== */
.bg-fixed-layer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

/* ===============================================
   Form Section
   =============================================== */
.form-section {
  position: relative;
  background-color: transparent;
  padding: 0;
  height: 100vh;
  color: #fff;
    display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 100px;
}

.form-section__bg01 {
  position: absolute;
  top: -00px;
  left: -500px;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.form-section__bg02 {
  position: absolute;
  bottom: -100px;
  right: -500px;
  width: 80%;
  height: 80%;
  pointer-events: none;
}

.form-section__bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0;
}

.form-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.form-section__layout {
  position: relative;
  z-index: 11;
}

.form-section__visual {
  width: 55%;
  display: flex;
  justify-content: center;
  opacity: 0;
  z-index: 11;
  position: relative;
  bottom: 70px;
}

.form-section__visual img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.form-section__content {
  position: relative;

}

.form-title {
  font-family: var(--font-jp);
  font-size: 4.96rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  writing-mode: vertical-rl;
  color: #fff;
  display: grid;
  position: relative;
  left: 50%;
  transform: translateX(-60%);
  margin-bottom: 30px;
}

.form-title .content__main-text_en {
  color: #fff;
  margin-top: 1.6rem;
  font-size: 1.28rem;
}

.form-body {

}

.form-body p {
  color: #fff;
  font-size: 1.6rem;
  line-height: 2.4;
  text-align: center;
}
.form-body p .content__main-text_en {
  color: #bfbfbf;
  margin: 0.8rem 0;
}

/* ===============================================
   Tangle Section (Horizontal Scroll)
   =============================================== */
.tangle-section {
  color: #fff;
  padding: 0;
  width: 100%;
  position: relative;
}

.tangle-section .container {
  width: 100%;
  max-width: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.tangle-section .panel02 .container {
  width: 100%;
  max-width: none;
  padding: 200px 0 0 0;
  margin: 0;
  position: relative;
  background-color: #000;
}

.tangle-section .title-area {
  z-index: 10;
  position: relative;
  left: 10%;
  padding-bottom: 80px;
}

.tangle-section .title-main {
  font-family: var(--font-jp);
  font-size: 3.84rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

.tangle-section .title-sub {
  display: block;
  font-family: var(--font-title);
  font-weight: 200;
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding-left: 0.32rem;
}

.tangle-section .content-card {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--color-text);
  z-index: 1;
}

.tangle-section .card-inner {
  position: relative;
  align-items: center;
  background: linear-gradient(to bottom, #f8f8f8, #e8e8e8);
  margin-left: 10%;
  margin-right: 0;
}

.tangle-section .card-image {
  position: relative;
  width: 85%;
  z-index: 12;
  margin: 0 auto;
}

.tangle-section .card-text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 80px;
  font-size: 1.44rem;
  line-height: 2.5;
  font-feature-settings: "palt";
  padding-left: 20px;
  padding-top: 90px;
  padding-bottom: 90px;
  z-index: 5;
}

.tangle-section .card-text p {
  margin-bottom: 2em;
}


@media (max-width: 1024px) {
  .tangle-section {
    padding-top: 200px;
  }
  .tangle-section .title-main {
    font-size: 4vw;
  }
  .tangle-section .title-sub {
    font-size: 1.4vw;
  }
  .tangle-section .card-image {
    flex: 1.5;
  }
  .tangle-section .card-text {
    font-size: 1.3vw;
  }
}



/* ===============================================
   Lucky Section (Horizontal Scroll)
   =============================================== */
.lucky-section {
  color: #fff;
  padding: 0;
  width: 100%;
  position: relative;
  padding-bottom: 100px;
  margin-top: 200px;
  display: block;
}

.lucky-section .container {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  gap: clamp(20px, 5vw, 80px);
}

.lucky-section .container.panel02 {
  align-items: center;
  position: relative;
  margin-top: 200px;
  height: 100vh;
  overflow-y: hidden;
}

.panel02-text {
  position: absolute;
  right: 2%;
  width: 370px;
  font-family: var(--font-title);
  font-weight: 200;
  font-size: 1.408rem;
  letter-spacing: 0.2em;
  line-height: 2.5;
}

.panel02-text h5 {
  margin-bottom: 2.5em;
  font-weight: 400;
  letter-spacing: 0.5em;
  font-size: 1.36rem;
}

.lucky-image-frame {
  flex: 7;
  width: 100%;
  background-color: #e0e0e0;
}

.container.panel02 .lucky-image-frame {
  width: 100vw;
  flex: 1;
}

.lucky-text-area {
  flex: 3;
  display: flex;
  flex-direction: column;
  justify-content: start;
}

.lucky-title-group {
  margin-bottom: 40px;
}

.lucky-title-ja {
  font-family: var(--font-jp);
  font-size: 3.84rem;
  font-weight: 300;
  margin-bottom: 0.8rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
}

.lucky-title-en {
  font-family: var(--font-title);
  font-weight: 200;
  font-size: 1.28rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
  padding-left: 0.32rem;
}

.lucky-desc {
  font-size: 1.44rem;
  line-height: 2.5;
  color: #fff;
}
.lucky-desc p {
  margin-bottom: 1.5em;
}

/* style.css ブレイクポイント */
@media (max-width: 1024px) {
  .lucky-section .container {
    gap: 50px;
  }
  .lucky-title-ja {
    font-size: 3.8vw;
  }
  .lucky-title-en {
    font-size: 1vw;
  }
  .lucky-desc {
    font-size: 1.3vw;
  }
}


/* ===============================================
   Overlap Bottom
   =============================================== */
.overlap-visual--bottom {
  position: relative;
  z-index: 100;
  pointer-events: none;
  margin-top: 0px;
}
.overlap-visual--bottom .overlap-visual__img {
  width: 38%;
  max-width: 450px;
  position: absolute;
  left: -20px;
  top: 1.6rem;
}
@media (max-width: 1000px) {
  .overlap-visual--bottom .overlap-visual__img {
    width: 35%;
    top: -120px;
  }
}

/* ===============================================
   Book Section
   =============================================== */
.book-section {
  position: relative;
  padding: 50px 50px 200px;
  margin-top: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  background-color: #fff;

}

.book-bg-anim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

}

.cube-shadow-img {
  position: absolute;
  width: 38%;
  max-width: 450px;
  left: -20px;
  top: -15.52rem;
}

@media (max-width: 1000px) {
  .cube-shadow-img {
    width: 35%;
    top: -120px;
  }
}

.book-container {
  width: 100%;
  max-width: 800px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 50px 1fr 1fr;
  gap: 60px;
  align-items: center;
  border-top: 1px solid #d4d4d4;
  padding-top: 90px;
}

.book-title-area {
  justify-self: start;
  transform: translateY(-20px);
}

.book-section .vertical-title {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: var(--font-jp);
  font-size: 3.2rem;
  letter-spacing: 0.3em;
  font-weight: 300;
  margin: 0;
}

.book-section .book-image-area {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.book-section .book-shadow {
  max-width: 320px;
  width: 100%;
}

.book-section .book-info-area {
  padding-top: 0;
}

.book-section .book-main-title {
  font-family: var(--font-jp);
  font-size: 1.7rem;
  font-weight: 400;
  margin-bottom: 3rem;
  letter-spacing: 0.1em;
  margin-left: -15px;
}

.book-section .book-desc {
  font-size: 1.44rem;
  line-height: 2.2;
  margin-bottom: 6.4rem;
  color: #000;
  text-align: justify;
  max-width: 380px;
}

.book-section .book-desc p {
  margin-bottom: 1.5em;
}

@media (max-width: 1000px) {
  .book-section .book-main-title {
    font-size: 2.5vw;
  }
  .book-section .book-desc {
    font-size: 1.5vw;
  }
}

.book-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 320px;
  height: 60px;
  border: 1px solid #fff;
  transition: opacity 0.3s;
  position: relative;
  font-size: 1.28rem;
  letter-spacing: 0.1em;
  overflow: visible;
  margin-right: 45px;
}

.book-btn:hover {
  opacity: 0.7;
}

.btn-text {
  color: #fff;
}

.btn-arrow-icon {
  position: absolute;
  top: 50%;
  right: -45px;
  width: 80px;
  height: 1px;
  background-color: #fff;
  transition: transform 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
}

.btn-arrow-icon::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 12px;
  height: 1px;
  background-color: #fff;
  transform-origin: right center;
  transform: rotate(45deg);
}

.book-btn:hover .btn-arrow-icon {
  transform: translateX(15px);
}

@media (max-width: 1024px) {
  .book-container {
    grid-template-columns: 80px 1fr 1fr;
    gap: 30px;
  }
}

/* ===============================================
   About Section
   =============================================== */
.about-section {
  padding: 200px 0 0 0;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
  background-color: #fff;
  pointer-events: none;
 background-image: url("/assets/img/about_arch.svg");
  background-repeat: no-repeat;
  background-position: top center;
}

.about-container {
  width: 100%;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  max-width: 800px;
}




.about-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.about-label {
  font-family: var(--font-title);
  font-size: 1.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #141414;
}

.about-lead {
  font-family: var(--font-jp);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #141414;
  line-height: 1.2;
}

.about-line {
  width: 100px;
  height: 1px;
  background-color: #d4d4d4;
  display: block;
  flex: 1;
}

.about-text-col {
  width: 100%;
  max-width: 540px;
}

.about-desc {
  font-size: 1.44rem;
  font-weight: 400;
  line-height: 2.4;
  letter-spacing: 0.11em;
  color: #141414;
  text-align: justify;
}
.about-desc p {
  margin-bottom: 4em;
}

/* ===============================================
   Profile Section
   =============================================== */
.profile-section {
  width: 100%;
  height: 580px;
  min-height: 600px;
  background-image: url("/assets/img/profile02.png");
  background-size: cover;
  background-position: center right;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: -2;
  pointer-events: none;
}

.profile-container {
  position: absolute;
  color: #fff;
  max-width: 380px;
  top: 50%;
  transform: translateY(-50%);
  right: 17%;
  z-index: 10;
  pointer-events: auto;
}

@media (max-width: 1100px) {
  .profile-section {
    background-position: center 50%;
  }
  .profile-container {
    max-width: 300px;
    right: 15%;
  }
}

.profile-name-group {
  margin-bottom: 4em;
}

.profile-name-ja {
  font-size: 2.88rem;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: block;
}

.profile-name-en {
  font-family: var(--font-title);
  font-size: 1.12rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: block;
}

.profile-desc {
  font-size: 1.408rem;
  line-height: 2.2;
  text-align: justify;
  margin-bottom: 2em;
  letter-spacing: 0.08em;
}

.profile-link-wrap {
  display: flex;
  align-items: center;
  gap: 30px;
  text-decoration: none;
  color: inherit;
  width: fit-content;
  transition: opacity 0.3s;
  z-index: 10;
}

.profile-link-wrap:hover {
  opacity: 0.7;
}

.link-label {
  font-family: var(--font-title);
  font-size: 1.44rem;
  letter-spacing: 0.1em;
  font-weight: 300;
}

.arrow-visual {
  display: block;
  width: 120px;
  height: 40px;
  position: relative;
}

.arrow-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: transform 0.3s;
}

.arrow-line::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 15px;
  height: 1px;
  background-color: #fff;
  transform-origin: right center;
  transform: rotate(45deg);
}

.profile-link-wrap:hover .arrow-line {
  transform: translateX(15px);
}

#profile {
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* ===============================================
   Footer
   =============================================== */
.site-footer {
  --font-jp: "Noto Sans JP", sans-serif;
  --font-en: "gotham", sans-serif;
  --footer-bg: #000;
  --footer-text: #fff;
  --footer-padding: 80px 0 40px;
  font-family: var(--font-en), var(--font-jp);
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: var(--footer-padding);
  width: 100%;
  position: relative;
  z-index: 10;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

.footer-contents {
  display: flex;
  gap: 60px;
  width: calc(100% - 350px);
}

.footer-article {
  flex: 1;
  border-left: #fff solid 1px;
  padding-left: 20px;
}

.footer-article p.txt {
  font-size: 1.12rem;
  line-height: 1.8;
  letter-spacing: 0.15em;
}

.footer-article p.subtitle {
  font-size: 1.232rem;
  line-height: 1.8;
  letter-spacing: 0.15em;
  margin-bottom: 1.6rem;
}

.footer-top {
  margin-bottom: 80px;
  width: 300px;
}

.footer-logo {
  font-size: 1.6rem;
  letter-spacing: 0.25em;
  font-weight: 600;
  font-family: "gotham", sans-serif;
  width: 220px;
}

.footer-logo-txt {
  text-align: justify;
  font-size: 1.2rem;
  margin-top: 10px;
  letter-spacing: 0.1em;
}

.footer-nav ul {
  display: flex;
  list-style: none;
  gap: 30px;
}

.footer-nav li {
  font-size: 1.2rem;
  letter-spacing: 0.15em;
  font-weight: 500;
}

.footer-nav a {
  text-decoration: none;
  color: #fff;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding-left: 14px;
}
.footer-nav a:hover {
  opacity: 0.7;
}

.footer-nav a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: left 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}
.footer-nav a:hover::before {
  left: 3px;
}

.footer-bottom {
  text-align: center;
  padding-top: 0;
  margin-top: 60px;
}
.copyright {
  font-size: 1.024rem;
  letter-spacing: 0.2em;
  display: block;
}

/* ===============================================
   Animations Helper Classes
   =============================================== */
[data-reveal="chars"] {
  display: inline-block;
  line-height: 1.25;
}

.reveal-char__wrap {
  display: inline-block;
  overflow: hidden;
  height: 1.25em;
  line-height: 1.25;
  vertical-align: bottom;
}

.reveal-char__char {
  display: inline-block;
  transform: translateY(120%);
  opacity: 0;
  will-change: transform, opacity;
}

.js-reveal-img {
  --mask-size: 1%;
  -webkit-mask-image: radial-gradient(circle at center, #000 0%, rgba(0, 0, 0, 0.8) 35%, transparent 70%);
  -webkit-mask-size: var(--mask-size) var(--mask-size);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: radial-gradient(circle at center, #000 0%, rgba(0, 0, 0, 0.8) 35%, transparent 70%);
  mask-size: var(--mask-size) var(--mask-size);
  mask-repeat: no-repeat;
  mask-position: center;
}

.tangle-section[data-hs="tangle"] .container {
  display: block;
}
.tangle-section[data-hs="tangle"] .hs__pin {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.tangle-section[data-hs="tangle"] .hs__track {
  display: flex;
  will-change: transform;
}
.tangle-section[data-hs="tangle"] .hs__panel {
  flex: 0 0 100%;
  width: 100%;
}
.tangle-section[data-hs="tangle"] .content-card {
  width: 100%;
}

/* ===============================================
   MOBILE RESPONSIVE OVERRIDES
   style.cssの768pxルールを強制適用
   =============================================== */

@media screen and (min-width: 1600px) {
  .hero__visual img {
    max-width: 1100px;
  }
}

@media screen and (max-width: 1200px) {
  .header__nav.is-sticky {
    right: var(--padding-side);
  }
  .overlap-visual__img {
    margin-right: 0;
  }
}

@media screen and (max-width: 768px) {
  main {
    overflow-x: hidden;
  }
  /* Flex containers layout switch */
  .hero__container,
  .concept__container,
  .refraction__container,
  .white-space__content {
    flex-direction: column;
    gap: 40px;
  }

  /* Header */
  .header {
    padding: 20px 0;
  }
  .nav__list {
    gap: 20px;
  }
  .nav__item a {
    font-size: 1.28rem;
  }
  .header__nav.is-sticky {
    top: auto;
    bottom: 20px;
    right: 20px;
  }

  /* Hero */
  .hero {
    padding: 3.2rem 0 0;
    height: auto;
    overflow-x: hidden;
    min-height: 100vh;
  }
  .hero__container {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: auto;
  }
  .hero__text {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    padding: 0 0 8rem 8%;
    order: 2;
    min-width: auto;
    font-size: clamp(1.44rem, 3vw, 1.76rem);
    opacity: 0;
    transform: none;
    will-change: opacity, filter, transform;
  }
  .hero__visual {
    width: 100%;
    order: 1;
    position: relative;
    top: auto;
    right: auto;
    transform: translateY(1.6rem) translateX(-3.2rem);
  }
  .hero__visual,
  .hero-cube-wrap {
    width: 100%;
    position: relative;
    right: -60px;
    top:10px;
  }

  .hero__copy {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
  }
  .hero__copy--highlight {
    font-size: clamp(2.88rem, 4vw, 3.84rem);
  }
  .hero__sub-copy {
    line-height: 1.8;
    letter-spacing: 0.1em;
    font-size: 1.3rem;
  }
  /* Overlap */
  .overlap-visual-sp {
    display: block;
    position: relative;
    width: 100%;
    z-index: 10;
    margin-top: -80px;
  }
  .overlap-visual-sp .overlap-visual__img {
    width: 80%;
    max-width: 600px;
  }

  /* Concept */
  .concept-sticky {
    position: relative;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 0 10%;
    top: -110px;
    height: auto;
    text-align: center;
  }
  .concept-sticky__visual {
    position: relative;
    top: auto;
    flex: none;
    width: 100%;
    max-width: none;
    height: auto;
    gap: 20px;
  }
  /* PC用overlapは非表示 */
  .concept-sticky__visual .overlap-visual {
    display: none !important;
  }

  .concept__vertical-text {
    height: auto !important;
    margin-right: 0;
    position: relative;
    transform: none;
    font-size: 2.64rem;
    line-height: 1.6;
    top: 90px;
    left: 220px;
    text-align: left;
    transform: none;
  }
  .concept-sticky__right {
    position: relative;
    width: 100%;
    min-height: auto;
    padding-top: 0;
    top: -190px;
  }
  .concept-sticky__text {
    width: 100%;
    height: auto;
    letter-spacing: 0.2em;
  }
  .concept-sticky__text p {
    font-size: clamp(1.3rem, 3vw, 1.4rem);
    line-height: 2.3;
  }

  /* ===============================================
   Rainbow Section
   =============================================== */
  .rainbow {
    position: relative;
    overflow: hidden;
    top: -300px;
    z-index: 4;
    height: 100vh;
        min-height: auto;
  }

  .rainbow__bg {
    position: absolute;
    z-index: 0;
    pointer-events: none;
    top: 0;
    left: -150px;
    transform: translate(0, 0);
    height: 90vh;
    width: 650px;
  }

  .rainbow__bg img {
    max-width: none;
  }

  .rainbow__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    height: 90vh;
    top: 48%;
  }

  .rainbow__content .section-title {
    font-size: 4rem;
    margin: 0 0 10px;
    line-height: 1.05;
    white-space: nowrap;
  }

  .rainbow__content .section-title .content__main-text_en {
    display: block;
    margin: 10px 0 0;
    line-height: 1;
    font-size: 1.28rem;
    letter-spacing: 0.4em;
    font-family: var(--font-title);
  }

  .rainbow__content p {
    margin: 0;
    font-size: 1.28rem;
  }
   .cmy-section {
    position: relative;
    top: -100px;
   }

  /* CMY Section */
  .cmy-section__layout {
    position: relative;
    min-height: auto;
    padding-bottom: 0vh;
    padding-top: 0;
  }
  .cmy-img {
    transition: 0s all;
  }
  .cmy-section__header {
    width: 100%;
    margin: 0;
    text-align: left;
    order: 1;
    padding: 0 3.2rem;
  }
  .cmy-title {
    font-size: 2.88rem;
  }
  .cmy-section__visual {
    position: relative;
    width: 100%;
    max-width: 720px;
    left: 0;
    bottom: auto;
    order: 3;
  }
  .cmy-section__visual img {
    width: 120%;
    max-width: none;
    margin-left: -10%;
  }

  .cmy-section__visual02 {
    position: absolute;
    width: 100%;
    max-width: 300px;
    top: -200px;
    right: -120px;
    z-index: 5;
  }




  .cmy-section__body {
    width: 100%;
    max-width: none;
    order: 2;
    padding: 0 5%;
  }
  .cmy-section__body p {
    margin: 0 0 3.2rem;
    font-size: 1.4rem;
  }
  .js-reveal-img {
    -webkit-mask-image: none !important;
    mask-image: none !important;
    opacity: 1 !important;
  }
  /* Refraction */
  .refraction {
    padding: 0;
    top: auto;
    height: auto;
    margin-top: 80px;
  }
  .refraction__layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    align-items: center;
    height: auto;
  }
  .refraction__visual {
    width: 100%;
    height: 250px;
    margin-top: 0 !important;
  }
  .refraction__visual--left {
    background-image: url(/assets/img/prism-1_1.png);
    background-position: top;
  }
  .refraction__visual--right {
    background-image: url(/assets/img/prism-1_2.png);
  }

  .refraction__content {
    text-align: left;
    padding: 4.8rem 3.2rem 2.4rem;
  }
  .refraction__header {
    margin-bottom: 4rem;
  }
  .refraction-title {
    font-size: 2.88rem;
  }
  .refraction-body p {
    font-size: 1.4rem;
  }

  /* Form */
  .form-section {
    margin-top: 200px;
    margin-bottom: 200px;
    padding: 1.8rem 0;
    height: auto;
    top: auto;
  }
  .form-section__bg {
    opacity: 0;
    height: auto;
    display: flex;
    top: auto;
    bottom: -200px;
    width: 150%;
  }
  .form-section__layout {
    flex-direction: column;
    gap: 60px;
    padding: 0 1.6rem;
    margin-top: -200px;
  }
  .form-section__visual {
    width: 90%;
    padding-top: 0;
    transform: translateY(25px);
    z-index: 10;
    position: relative;
    top: -120px;
    right: -20px;
  }


.form-section__bg01 {
  position: absolute;
  top: -120px;
  left: -300px;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.form-section__bg02 {
  position: absolute;
  bottom: -350px;
  right: -220px;
  width: 110%;
  height: 110%;
  pointer-events: none;
  rotate: 30deg;
}
  .form-section__content {
    width: 100%;
    height: auto;
    display: block;
    padding-top: 0;
  }
  .form-title {
    height: 200px;
    margin: 0 1.6rem 0 0.8rem;
    line-height: 1.4;
    opacity: 1;
    font-size: 4rem;
  }


  .form-title .content__main-text_en {
  color: #fff;
  margin-top: 0.8rem;
  font-size: 1.1rem;
}
  .form-body {
    position: static;
    width: auto;
    flex: 1;
    padding-top: 0;
  }
  .form-body p {
    font-size: 1.36rem;
    line-height: 2.2;
  }

  /* Tangle */
  .tangle-section {
    padding: 6rem 0 0 0;
    padding-left: 0;
  }
  .tangle-hs__track {
    display: block;
    height: auto;
  }
  .tangle-section .container {
    flex-direction: column;
    gap: 50px;
    padding: 0 var(--padding-side);
    height: auto;
    display: flex;
  }
  .tangle-section .title-area {
    position: static;
    width: 100%;
    margin-bottom: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: baseline;
    line-height: 1.5;
  }
  .tangle-section .title-main {
    font-size: 2.5rem;
    margin-bottom: 0;
  }
  .tangle-section .title-sub {
    margin-top: 0.8rem;
    font-size: 1.1rem;
  }

  .tangle-section .panel02 .container {
  width: 100%;
  max-width: none;
  padding: 10px 0 0 0;

}


  .tangle-section .content-card {
    width: calc(100% + var(--padding-side));
    background-color: #ebebeb;
    padding: 0;
    display: block;
    border-radius: 4px 0 0 4px;
    order: -1;
  }
  .tangle-section .card-inner {
    display: flex;
    flex-direction: column;
    align-items: start;
    max-width: none;
    height: auto;
    margin: 0;
  }
  .tangle-section .card-image {
    width: 100%;
    max-width: 100%;
    position: static;
    transform: none;
  }
  .tangle-section .card-text {
    position: static;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    transform: none;
    padding: 40px 0 300px 7%;
    flex: 1;
    order: -1;
  }

  /* Lucky Section: スマホ用縦並びレイアウト */
  .lucky-section {
    color: #fff;
    padding: 4.8rem 0;
    width: 100%;
    position: relative;
    margin-top: 0;
  }
  .lucky-title-ja {
    font-size: 2.5rem;
  }
  .lucky-title-en {
    font-size: 1.1rem;
  }
  /* 横スクロール用の枠を無効化して縦積みに */
  .lucky-hs__pin,
  .lucky-hs__track {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    transform: none !important; /* JSが残したスタイルを強制リセット */
    overflow: visible !important;
  }

  /* 各パネル（スライド）の設定 */
  .lucky-hs__panel {
    margin-bottom: 10px; /* パネルごとの間隔 */
   display: block;
  }

  .lucky-section .container.panel02 {
    margin-top: 0;
    overflow-y:inherit;
  }

  /* 最後のパネルだけ余白なし */
  .lucky-hs__panel:last-child {
    margin-bottom: 0;
  }

  /* コンテナ（中身のレイアウト） */
  .lucky-section .container {
    width: 100%;
    padding: 0 5% 0 0;
    height: auto !important;
    display: flex;
    flex-direction: column; /* 縦並び：画像 → タイトル */
    gap: 60px;
  }

  /* 画像フレーム */
  .lucky-image-frame {
    width: 100%;
    background-color: #e0e0e0;
  }
  .lucky-image-frame .lucky_image_light {
    aspect-ratio: 1 / 1.3;
    object-position: 20%;
    object-fit: cover;
  }
  /* タイトルエリア */
  .lucky-text-area {
    width: 100%;
    padding: 0; /* padding二重掛け防止 */
    text-align: left;
    padding-left: 7%;
  }

  .container.panel02 .lucky-image-frame {
  width: 100%;
  position: absolute;
  min-height: 800px;
  top: 0;
  left: 0;
  background-color: #000;
}

  /* 2枚目以降のテキスト（もしあれば） */
  .panel02-text {
    position: static; /* 絶対配置を解除 */
    width: 100%;
    margin-top: 0;
    padding-top: 40px;
    padding-left: 50%;
    order: -1;
    padding-bottom: 60px;
    font-size: 1.2em;
    letter-spacing: 0.06em;
    line-height: 1.8;
    text-align: justify;
    z-index: 4;
  }
  /* Overlap Bottom */
  .overlap-visual--bottom .overlap-visual__img {
    width: 65%;
    top: 8rem;
  }

  /* Book */
  .book-section {
    padding: 0;

  }
  .cube-shadow-img {
    width: 65%;
    top: -9.12rem;
  }
  .book-container {
    padding: 30px 0 0;
    flex-direction: column;
    gap: 3.2rem;
    display: flex;
    transform: none;
  }
  .book-title-area {
    width: 100%;
    text-align: center;
    padding-top: 0;
    transform: none;
    justify-self: center;
  }
  .book-section .vertical-title {
    writing-mode: horizontal-tb;
    width: 100%;
    text-align: center;
    font-size: 2.88rem;
  }
  .book-section .book-image-area {
    width: 50%;
    margin-right: -32px;
    padding: 0;
  }
  .book-section .book-info-area {
    width: 100%;
    padding: 0 3.2rem;
  }
  .book-section .book-main-title {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 2rem;
  }
  .book-section .book-desc {
    font-size: 1.4rem;
    line-height: 2;
  }
  .book-btn {
    max-width: calc(100% - 50px);
  }

  /* About */
  .about-section {
    padding: 7.2rem 0;
  }
  .about-container {
    gap: none;
    display: block;
    padding: 0 10%;
  }
  .about-title-col {
  }
  .about-text-col,
  .about-title-col {
    max-width: 100%;
  }


.about-lead {
  font-family: var(--font-jp);
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #141414;
  line-height: 1.2;
  text-align: center;
}

.about-desc p {
    margin-bottom: 2em;
    font-size: 1.4rem;
    line-height:1.8;
    letter-spacing: 0.01em;
    }

  /* Profile */
  .profile-section {
    height: auto;
    min-height: auto;
    background-image: url("/assets/img/profile-sp.webp");
    background-position: 85% top;
    position: relative;
    z-index: 1;
    bottom: auto;
    left: auto;
  }
  .profile-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 5%;
    top: auto;
    right: auto;
    transform: none;
  }
  .profile-name-ja {
    font-size: 2.56rem;
    margin-bottom: 0;
  }
  .profile-desc {
    font-size: 1.1rem;
    line-height: 2;
    width: 55%;
  }
  .profile-link-wrap {
    gap: 10px;
  }
  .arrow-visual {
    width: 60px;
  }
  .arrow-line::after {
    width: 11px;
  }

  /* Footer */
  .footer-container {
    display: block;
  }
  .footer-logo {
    width: 220px;
    margin: 0 auto;
  }

  .footer-bottom {
  text-align: center;
  padding-top: 0;
  margin-top: 30px;
  margin-bottom: 30px;
}

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 50px;
    margin-left: 0;
    width: 100%;
  }
  .footer-nav ul {
    flex-direction: column;
    gap: 15px;
  }
.footer-contents {
    display: flex;
    gap: 20px;
    width: 90%;
    margin: 0 auto;
}
.footer-article {
  padding-left: 10px;
}

.footer-article h5 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    line-height: 1.2;
  }
.footer-article p.subtitle {
    font-size: 1.0rem;
    margin-bottom: 15px;
    line-height: 1.4;
  }
  .footer-article p.txt {
    font-size: 1.0rem;
    line-height: 1.6;
  }
.site-footer {
  font-family: var(--font-en), var(--font-jp);
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 40px 0 0 0;
  width: 100%;
  position: relative;
  z-index: 10;
}
}

/* ===============================================
   Lucky Panel02 - マスク拡大アニメーション
   =============================================== 
.lucky-hs__panel .container.panel02 {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.lucky-hs__panel .container.panel02 .lucky-image-frame {
  background-color: #000;
}

.lucky-hs__panel .panel02 .lucky-image-frame {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%; 
  right: 0;
  height: 100vh;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.lucky-hs__panel .panel02 .lucky-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  clip-path: inset(50% 50% 50% 50%);
  transform: scale(1);
}*/

@media screen and (max-width: 767px) and (min-height: 768px) {
    .rainbow__content {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        height: 80vh;
        top: 48%;
    }
    .rainbow {
        position: relative;
        overflow: hidden;
        top: -300px;
        z-index: 4;
        height: 75vh;
        min-height: auto;
    }
}