@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
/* A Modern CSS Reset */
*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg*, symbol*)) {
  all: unset;
  display: revert;
}

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

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  font-size: initial;
  font-weight: 300;
}

a,
button {
  cursor: revert;
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  padding-left: 0;
}

img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

table {
  border-collapse: collapse;
}

th {
  font-weight: normal;
  text-align: left;
}

input,
textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

:where(pre) {
  all: revert;
}

::-moz-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

::marker {
  content: initial;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

:where(dialog:modal) {
  all: revert;
}

:root {
  --wh: #fff;
  --light-blue: #679cbc;
  --light-blue2: #668090;
  --bg-gray: #fcfcfc;
}

@media screen and (max-width: 834px) {
  .pc {
    display: none !important;
  }
}

@media screen and (min-width: 835px) {
  .sp {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .pc-sm {
    display: none !important;
  }
}

@media screen and (min-width: 641px) {
  .sp-sm {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) {
  .pc-tb {
    display: none !important;
  }
}

@media screen and (min-width: 1025px) {
  .sp-tb {
    display: none !important;
  }
}

.under450 {
  display: none;
}
@media (max-width: 450px) {
  .under450 {
    display: block;
  }
}

/* 三点リーダー 一行 */
/* 三点リーダー 複数行 */
.txt-center {
  text-align: center;
}

.fw-400 {
  font-weight: 400;
}

.fs-10 {
  font-size: 10px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-18 {
  font-size: clamp(1.5rem, 1vw + 1rem, 1.8rem) !important;
}

.mt-10 {
  margin-top: 1rem;
}

.mb-20 {
  margin-bottom: 2rem;
}

.mb-30 {
  margin-bottom: 3rem;
}

.pl-30 {
  padding-left: 3rem;
}

/* ====================================================
HTML
==================================================== */
html {
  font-size: 62.5%;
}

body {
  color: #222;
  font-family: "Noto Sans JP", serif;
  font-weight: 300;
  font-size: clamp(1.4rem, 1vw + 0.75rem, 1.6rem);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.4;
  background: transparent;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .inner {
    width: 100%;
    padding: 0 5%;
  }
}

img {
  height: auto;
}

a {
  color: #222;
  text-decoration: none;
  color: #222;
  display: block;
}
a:link {
  color: #222;
}

p {
  line-height: 2;
}

time {
  color: var(--red);
  font-size: 12px;
}

button {
  border: none;
  background-color: transparent;
  color: #222;
}

.c-ft--en {
  background-image: linear-gradient(124deg, rgb(110, 0, 12), rgb(207, 26, 77));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fa-instagram {
  background-image: linear-gradient(124deg, rgb(110, 0, 12), rgb(207, 26, 77));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.link--view-more {
  font-size: clamp(1.4rem, 1vw + 0.75rem, 1.6rem);
  font-family: "Shippori Mincho B1", serif;
  font-weight: 700;
  display: block;
  line-height: 3;
  width: 100%;
  max-width: 200px;
  padding-left: 5px;
  position: relative;
  z-index: 0;
}
.link--view-more::before, .link--view-more::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #222;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: transform 0.4s ease 0.2s, background-color 0.4s ease;
  transform-origin: 0 50%;
  transform: scaleX(1);
}
.link--view-more::after {
  background: #222;
}
.link--view-more::after, .link--view-more:hover::before {
  transition: transform 0.4s ease, background-color 0.4s ease;
  transform-origin: 100% 50%;
  transform: scaleX(0);
}
.link--view-more:hover::after {
  transition: transform 0.4s ease 0.2s, background-color 0.4s ease;
  transform-origin: 0 50%;
  transform: scaleX(1);
}

.btn--view-more {
  display: block;
  width: 8rem;
  height: 8rem;
  border: 1px solid #bbbbbb;
  border-radius: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.btn--view-more::before {
  content: "";
  display: block;
  width: 100%;
  height: 15px;
  background: url(../img/common/arrow.webp) no-repeat;
  background-position: 50% 50%;
  background-size: 35%;
}
.btn--view-more:hover::before {
  animation: arrowSlide 0.5s normal cubic-bezier(0.1, -0.6, 0.2, 0);
}
@keyframes arrowSlide {
  0% {
    background-position: 50% 50%;
    opacity: 1;
  }
  25% {
    background-position: 120% 50%;
    opacity: 0;
  }
  50% {
    background-position: 0 50%;
    opacity: 0;
  }
  75% {
    background-position: 0 50%;
    opacity: 0;
  }
  100% {
    background-position: 50% 50%;
    opacity: 1;
  }
}

.rolle-effect {
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -1.5em 0 #000, 0 0 0 #000;
  transition: text-shadow 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.rolle-effect:hover {
  text-shadow: 0 0 0 #000, 0 1.5em 0 #000;
}

/* ====================================================
BUTTON
==================================================== */
.click-btn {
  background-color: #668090;
  color: var(--wh);
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  width: 100%;
  max-width: 420px;
  height: 90px;
  border-radius: 45px;
  margin: auto;
  letter-spacing: 0.1rem;
  transition: opacity 0.3s ease-out;
  color: var(--wh) !important;
}
@media screen and (max-width: 1200px) {
  .click-btn {
    max-width: none;
    height: 60px;
  }
}
.click-btn:hover {
  opacity: 0.8;
}
.click-btn button {
  color: var(--wh);
  cursor: pointer;
}
.click-btn a {
  color: var(--wh);
}

/* ====================================================
SWIPER
==================================================== */
.swiper-wrapper {
  transition-timing-function: linear !important;
}

/* ====================================================
LOADING
==================================================== */
body {
  animation: fadeIn 2s ease-out 0 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ====================================================
Animation
==================================================== */
/* ====================================================
Module
==================================================== */
/* ====================================================
Pages
==================================================== */
/* ====================================================
INDEX HEADER
==================================================== */
html,
body {
  width: 100%;
}

body {
  scroll-behavior: smooth;
}

body.open {
  overflow: hidden;
}

.main-header {
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 3;
  padding: 3.5rem 4.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  /* SP OPEN Animation */
}
@media screen and (max-width: 834px) {
  .main-header {
    padding: 1rem;
    display: none;
  }
}
.main-header__logo {
  width: 100%;
  max-width: 156px;
}
@media screen and (max-width: 834px) {
  .main-header__logo {
    max-width: 90px;
  }
}
.main-header__mobile-btn {
  width: 90px;
  font-size: 24px;
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  z-index: 100;
  transition: all 500ms cubic-bezier(1, 0, 0, 1);
  z-index: 9998;
}
.main-header__mobile-btn::before, .main-header__mobile-btn::after {
  content: "";
  display: inline-block;
  width: 29px;
  height: 1px;
  background-color: #222;
  position: absolute;
}
.main-header__mobile-btn::before {
  top: 10px;
  left: 0;
}
.main-header__mobile-btn::after {
  top: 20px;
  left: 0;
}
.main-header__navinner {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.8);
  top: 0;
  right: 0;
  width: 100%;
  height: 0;
  opacity: 0;
  z-index: 9996;
}
.main-header__navGlobal {
  background-color: #cbd9e6;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  max-width: 420px;
  height: 100%;
  padding: 13rem 5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease-out;
  z-index: 9997;
}
@media screen and (max-width: 1200px) {
  .main-header__navGlobal {
    padding: 10rem 4rem;
    transition: transform 0.3s ease-out;
  }
}
.main-header__navGlobal .click-btn {
  margin-top: 5rem;
}
.main-header__menu {
  font-size: clamp(1.2rem, 1vw + 0.75rem, 1.4rem);
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .main-header__menu {
    gap: 2rem;
  }
}
.main-header.open .main-header__mobile-btn {
  transition: all 0.5s ease-out;
}
.main-header.open .main-header__mobile-btn::before {
  top: 15px;
  left: 0;
  transform: rotate(45deg);
}
.main-header.open .main-header__mobile-btn::after {
  top: 15px;
  left: 0;
  transform: rotate(-45deg);
}
.main-header.open .main-header__navinner {
  position: fixed;
  width: 100%;
  height: 100vh;
  opacity: 1;
}
.main-header.open .main-header__navGlobal {
  transform: translateX(0);
  transition: all 0.3s ease-out;
}

.main-header-sp {
  display: none;
  width: 100%;
  height: 60px;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  justify-content: space-between;
  background-color: var(--wh);
  z-index: 100;
}
@media screen and (max-width: 834px) {
  .main-header-sp {
    display: flex;
  }
}
.main-header-sp h1 {
  width: 30%;
  flex: 1;
  padding: 1rem;
  text-align: center;
  box-shadow: 0px -5px 10px -7px rgba(0, 0, 0, 0.4);
}
.main-header-sp h1 a {
  display: inline;
}
.main-header-sp .sp-header-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  flex: 1;
  background-color: var(--light-blue2);
  font-size: clamp(1.3rem, 1vw + 0.75rem, 1.5rem);
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  color: var(--wh);
  padding: 1rem;
}
.main-header-sp .sp-header-link-wrapper {
  width: 40%;
  box-shadow: 0px -5px 10px -7px rgba(0, 0, 0, 0.4);
}
.main-header-sp__mobile-btn {
  width: 30%;
  flex: 1;
  font-size: clamp(1.3rem, 1vw + 0.75rem, 1.5rem);
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  padding: 1rem;
  background-color: #cbd9e6;
  box-shadow: 0px -5px 10px -7px rgba(0, 0, 0, 0.4);
}
.main-header-sp__mobile-btn-txt {
  width: 75px;
  display: inline-block;
  position: relative;
  text-align: right;
}
.main-header-sp__mobile-btn-txt::before, .main-header-sp__mobile-btn-txt::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 1px;
  background-color: #222;
  position: absolute;
}
.main-header-sp__mobile-btn-txt::before {
  top: 7px;
  left: 15%;
}
.main-header-sp__mobile-btn-txt::after {
  top: 13px;
  left: 15%;
}
.main-header-sp__navinner {
  display: flex;
  background-color: rgba(0, 0, 0, 0.8);
  height: calc(100vh - 60px);
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  display: none;
  flex-direction: column-reverse;
}
.main-header-sp__navGlobal {
  background-color: #cbd9e6;
  text-align: center;
  padding: 6rem 0 4rem;
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
  right: 0;
}
.main-header-sp__menu {
  font-size: clamp(1.3rem, 1vw + 0.75rem, 1.5rem);
  display: flex;
  flex-direction: column;
  gap: 4.5rem;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .main-header-sp__menu {
    gap: 2rem;
  }
}
.main-header-sp .close-btn {
  background-color: var(--wh);
  color: var(--light-blue2);
  width: 150px;
  height: 45px;
  font-size: 12px;
  border-radius: 45px;
  margin: 3rem auto 0;
}

/* ====================================================
INDEX MV
==================================================== */
.fixed-wave-bg {
  background: url(../img/fixed-bg.webp) no-repeat center/cover;
  position: fixed;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  z-index: 0;
}

.top-mv {
  background: url(../img/wave.webp) no-repeat center/cover;
  background-color: var(--wh);
  position: relative;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .top-mv {
    max-height: none;
    height: auto;
  }
}
@media screen and (max-width: 640px) {
  .top-mv {
    height: auto;
  }
}
.top-mv__woman {
  position: relative;
  top: 0;
  left: 50%;
  transform: translate(-40%, 0);
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
}
@media screen and (max-width: 834px) {
  .top-mv__woman {
    position: relative;
    left: 0;
    transform: none;
  }
}
.top-mv__wrapper {
  width: 22%;
  max-width: 375px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}
@media screen and (max-width: 1200px) {
  .top-mv__wrapper {
    width: 50%;
    max-width: none;
  }
}
@media screen and (max-width: 834px) {
  .top-mv__wrapper {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -25%);
  }
}
@media screen and (max-width: 640px) {
  .top-mv__wrapper {
    top: 30%;
    left: 50%;
    transform: translate(-50%, -25%);
    gap: 2rem;
  }
}
.top-mv__product {
  filter: drop-shadow(24px 0 57px rgba(0, 0, 0, 0.2));
}

/* ====================================================
LEAD
==================================================== */
.lead {
  position: relative;
  z-index: 1;
  background-color: transparent;
  padding: 15rem 0;
}
@media screen and (max-width: 1200px) {
  .lead {
    padding: 7rem 0;
  }
}
@media screen and (max-width: 834px) {
  .lead .inner {
    padding: 0;
  }
}
@media screen and (max-width: 640px) {
  .lead {
    padding: 3rem 0 7rem;
  }
}
.lead__heading {
  font-size: 52px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  text-align: center;
}
@media screen and (max-width: 1200px) {
  .lead__heading {
    font-size: 40px;
  }
}
@media screen and (max-width: 834px) {
  .lead__heading {
    font-size: 26px;
  }
}
.lead__heading-small {
  display: block;
  font-size: clamp(2rem, 2vw + 1rem, 2.4rem);
}
@media screen and (max-width: 834px) {
  .lead .inner.lead-list-inner {
    max-width: none;
    overflow: hidden;
  }
}
.lead__slider {
  overflow: hidden;
  margin-top: 7.5rem;
  gap: 2.5rem;
}
@media screen and (max-width: 1200px) {
  .lead__slider {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .lead__slider {
    flex-direction: column;
  }
}
.lead__slider-item-ttl {
  text-align: center;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
}
.lead__slider-item-ttl-h {
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  line-height: 2;
}
.lead__slider-item-ttl-txt {
  font-size: clamp(2rem, 2vw + 1rem, 2.4rem);
  color: var(--light-blue);
}

/* ====================================================
SUPPORT
==================================================== */
.support {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0;
  color: var(--wh);
  width: 100vw;
}
@media screen and (max-width: 1200px) {
  .support {
    padding: 0;
  }
}
@media screen and (max-width: 640px) {
  .support {
    padding: 0;
  }
}
.support .support-bg {
  width: 100%;
  height: 100vh;
  background: url(../img/support-bg-img.webp) no-repeat center/cover;
  position: sticky;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.support__wrapper {
  position: relative;
  height: 3000px;
}
.support .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  position: relative;
}
@media screen and (max-width: 834px) {
  .support .inner {
    height: 500px;
  }
}
.support__catchbox {
  width: -moz-fit-content;
  width: fit-content;
  padding: 7rem 8rem;
  border: 1px solid #fff;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
}
@media screen and (max-width: 834px) {
  .support__catchbox {
    padding: 2rem 1rem;
    white-space: nowrap;
  }
}
.support__catchbox-en {
  font-family: "Cormorant Garamond", serif;
  opacity: 0.5;
}
.support__catchbox:nth-child(odd) {
  align-self: flex-end;
}
@media screen and (max-width: 834px) {
  .support__catchbox:nth-child(odd):not(:last-child) {
    margin-bottom: 5rem;
  }
}
.support__catchbox:nth-child(even) {
  align-self: flex-start;
}
@media screen and (max-width: 834px) {
  .support__catchbox:nth-child(even) {
    margin-bottom: 5rem;
  }
}
.support__catchbox.upper {
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 834px) {
  .support__catchbox.upper {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}
.support__catchbox.lower {
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 834px) {
  .support__catchbox.lower {
    left: 50%;
    transform: translateX(-50%);
  }
}
.support__heading {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(2rem, 2vw + 1rem, 2.4rem);
}
.support__heading-txt {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(3.8rem, 4vw + 1rem, 5.2rem);
}
@media screen and (max-width: 640px) {
  .support__heading-txt {
    font-size: 26px;
  }
}
.support__heading-en {
  font-family: "Cormorant Garamond", serif;
  opacity: 0.5;
  font-size: clamp(1.3rem, 1vw + 0.75rem, 1.5rem);
}

/* ====================================================
ABOUT
==================================================== */
.about {
  position: relative;
  z-index: 1;
  overflow-x: hidden;
  background-color: transparent;
  padding: 17rem 0 0;
}
@media screen and (max-width: 1200px) {
  .about {
    padding: 8rem 0 0;
  }
}
@media screen and (max-width: 834px) {
  .about {
    padding: 5rem 0 0;
  }
}
.about__content .inner {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .about__content .inner {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .about__content .inner {
    flex-direction: column;
    margin-bottom: 2rem;
  }
}
.about__content-ttl {
  width: 50%;
}
@media screen and (max-width: 834px) {
  .about__content-ttl {
    width: 100%;
  }
}
.about__content-ttl-en {
  color: var(--light-blue2);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 1vw + 1rem, 2.1rem);
}
.about__content-heading {
  font-size: 38px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 400;
  margin-bottom: 3rem;
}
@media screen and (max-width: 1200px) {
  .about__content-heading {
    font-size: clamp(2.2rem, 2vw + 1rem, 2.9rem);
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 834px) {
  .about__content-heading {
    margin-bottom: 1.5rem;
  }
}
.about__content-img {
  width: 50%;
}
@media screen and (max-width: 834px) {
  .about__content-img {
    width: 100%;
  }
}
.about__content-img._01 {
  padding-left: 14rem;
}
@media screen and (max-width: 1200px) {
  .about__content-img._01 {
    padding-left: 7rem;
  }
}
@media screen and (max-width: 834px) {
  .about__content-img._01 {
    padding-left: 0;
  }
  .about__content-img._01 img {
    aspect-ratio: 2/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about__content-img._01 img {
  min-width: 600px;
}
@media screen and (max-width: 1200px) {
  .about__content-img._01 img {
    min-width: auto;
  }
}
.about__content-img._01._pc {
  display: block;
}
@media screen and (max-width: 834px) {
  .about__content-img._01._pc {
    display: none;
  }
}
.about__content-img._01._sp {
  display: none;
}
@media screen and (max-width: 834px) {
  .about__content-img._01._sp {
    display: block;
    margin-bottom: 1.5rem;
  }
}
.about__content-img._02 img {
  min-width: 750px;
}
@media screen and (max-width: 1200px) {
  .about__content-img._02 img {
    min-width: auto;
  }
}
.about__content-large-txt {
  font-size: clamp(2rem, 2vw + 1rem, 2.4rem);
  font-family: "Shippori Mincho B1", serif;
  margin-bottom: 6rem;
}
@media screen and (max-width: 1200px) {
  .about__content-large-txt {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .about__content-large-txt {
    font-size: 1.6rem;
  }
}
.about__content p {
  margin-bottom: 4rem;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  .about__content p {
    margin-bottom: 2rem;
  }
}
.about__content._03 {
  background-color: var(--wh);
}
.about__content._03 .inner {
  background-color: #f8fbfc;
  flex-direction: row-reverse;
  padding: 6rem;
  margin-bottom: 0;
}
@media screen and (max-width: 1200px) {
  .about__content._03 .inner {
    padding: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .about__content._03 .inner {
    padding: 2rem;
    flex-direction: column;
    margin: 0 5%;
    width: 90%;
  }
  .about__content._03 .inner img {
    aspect-ratio: 2/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about__content._03 h2 {
  font-size: 32px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 300;
}
@media screen and (max-width: 834px) {
  .about__content._03 h2 {
    font-size: 26px;
  }
}
@media screen and (max-width: 640px) {
  .about__content._03 h2 {
    font-size: 22px;
  }
}
.about__content._03 ._03 {
  padding-right: 3rem;
}
@media screen and (max-width: 1200px) {
  .about__content._03 ._03 {
    padding-right: 2rem;
    font-size: clamp(2.2rem, 2vw + 1rem, 2.9rem);
  }
}
@media screen and (max-width: 834px) {
  .about__content._03 ._03 {
    padding-right: 0;
  }
}
.about__content .small-list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 834px) {
  .about__content .small-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.about__content .small-list-item {
  background-color: #ebf2f4;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
}
.about__content .small-list-item::before {
  content: "\e5ca";
  font-family: "Material Symbols Outlined";
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: var(--light-blue);
  color: var(--wh);
  border-radius: 50%;
}
.about__content-list {
  padding: 8rem 0;
}
@media screen and (max-width: 1200px) {
  .about__content-list {
    padding: 4rem 0;
  }
}
.about__content-list ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 1200px) {
  .about__content-list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 640px) {
  .about__content-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}
.about__content-list-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: clamp(1.3rem, 1vw + 0.75rem, 1.5rem);
}
.about__content-list-heading::before {
  content: "\e5ca";
  font-family: "Material Symbols Outlined";
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  background-color: var(--light-blue);
  color: var(--wh);
  border-radius: 50%;
}
.about__content._02 {
  background-color: var(--wh);
  padding: 8rem 0;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .about__content._02 {
    padding: 4rem 0;
  }
}
.about__content._02::before {
  content: "";
  display: block;
  width: 100%;
  height: 80px;
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(252, 252, 252) 64%);
  position: absolute;
  top: -35px;
  left: 0;
  filter: blur(16px);
}
.about__slider {
  overflow: hidden;
  width: 100%;
}
.about__slider-item {
  align-self: center;
}
.about__loop {
  width: 100%;
  background-color: var(--wh);
  overflow: hidden;
  padding: 17rem 0 17rem;
  min-height: 400px;
}
@media screen and (max-width: 834px) {
  .about__loop {
    padding: 10rem 0 13rem;
  }
}
.about__loop .swiper-slide {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  height: 100%;
  display: flex;
}
.about__loop .swiper-slide img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}

/* MEDIA Banner */
.media-banner {
  border-radius: 8px;
  position: fixed;
  bottom: 2rem;
  right: 0;
  z-index: 1000;
  width: 350px;
  background-color: var(--wh);
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .media-banner {
    bottom: calc(60px + 2rem);
    width: 300px;
  }
}
.media-banner a {
  display: flex;
}
.media-banner__img {
  flex-shrink: 0;
  border-radius: 8px 0 0 8px;
  background-color: #ffe400;
  max-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 834px) {
  .media-banner__img {
    width: 80px;
  }
}
.media-banner__img img {
  border-radius: 8px 0 0 8px;
  width: 80%;
}
.media-banner__content {
  font-size: 12px;
  border-radius: 0 8px 8px 0;
  line-height: 1.5;
  padding: 2rem 2rem 2rem 5rem;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .media-banner__content {
    padding: 2rem;
  }
}
@media screen and (max-width: 834px) {
  .media-banner__content {
    padding: 1rem;
  }
}
.media-banner__content h2 {
  font-family: "Cormorant Garamond", serif;
  color: var(--light-blue2);
  font-size: 14px;
  line-height: 1;
}
@media screen and (max-width: 834px) {
  .media-banner__content h2 {
    font-size: 12px;
  }
}
.media-banner__content p {
  line-height: 1.2;
}
@media screen and (max-width: 834px) {
  .media-banner__content p {
    font-size: 14px;
  }
}
.media-banner__content .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 8px;
}
.media-banner.visible {
  visibility: visible;
  opacity: 1;
  transition: all 1s ease-out;
}

/* ====================================================
TECHNOLOGY
==================================================== */
.technology {
  position: relative;
  z-index: 1;
  background-color: var(--wh);
}
.technology__wrapper {
  display: flex;
  align-items: flex-start;
  position: relative;
}
@media screen and (max-width: 834px) {
  .technology__wrapper {
    flex-direction: column;
  }
}
.technology__img {
  width: 50%;
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
  padding-right: 14rem;
}
@media screen and (max-width: 1200px) {
  .technology__img {
    padding-right: 7rem;
  }
}
@media screen and (max-width: 834px) {
  .technology__img {
    position: static;
    padding-right: 0;
    width: 100%;
    height: auto;
  }
  .technology__img img {
    aspect-ratio: 2/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.technology__img-fig {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.technology__content {
  margin-bottom: 6rem;
}
@media screen and (max-width: 1200px) {
  .technology__content {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .technology__content {
    margin-bottom: 1.5rem;
  }
}
.technology__content-wrapper {
  width: calc(600px + 5%);
  padding-right: 5%;
  flex-shrink: 0;
}
@media screen and (max-width: 834px) {
  .technology__content-wrapper {
    width: 100%;
    padding-left: 5%;
  }
}
.technology__content-ttl {
  margin-bottom: 5rem;
}
@media screen and (max-width: 1200px) {
  .technology__content-ttl {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 834px) {
  .technology__content-ttl {
    margin-top: 2.5rem;
  }
}
.technology__content-ttl-en {
  font-size: clamp(1.6rem, 1vw + 1rem, 2.1rem);
  font-family: "Cormorant Garamond", serif;
  color: var(--light-blue2);
  margin-bottom: 6rem;
}
@media screen and (max-width: 1200px) {
  .technology__content-ttl-en {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .technology__content-ttl-en {
    margin-bottom: 0;
  }
}
.technology__content-ttl .fs-12 {
  font-size: 11px;
}
.technology__content-list {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}
.technology__content-list-item figure figcaption {
  font-size: 13px;
  text-align: center;
  line-height: 2;
  font-weight: 400;
}
.technology__content-list.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 2rem;
}
.technology__content._01 {
  padding-top: 10rem;
}
@media screen and (max-width: 1200px) {
  .technology__content._01 {
    padding-top: 5rem;
  }
}
@media screen and (max-width: 834px) {
  .technology__content._01 {
    padding-top: 3rem;
  }
}
.technology__content._04 {
  background-color: #f8fbfc;
  padding: 4rem 3rem;
}
@media screen and (max-width: 1200px) {
  .technology__content._04 {
    padding: 2rem;
  }
}
.technology__content._04 .technology__heading {
  font-size: 8rem;
  color: #e9f0f2;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto auto 4rem;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .technology__content._04 .technology__heading {
    font-size: 6rem;
  }
}
.technology__content._04 .technology__heading-small {
  color: initial;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: clamp(1.5rem, 1vw + 1rem, 1.8rem);
}
.technology__content._04 .technology__heading-bl {
  font-size: clamp(1.6rem, 1vw + 1rem, 2.1rem);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.technology__content._04 .technology__heading-bl::before {
  content: "\e5ca";
  font-family: "Material Symbols Outlined";
  font-size: 3rem;
  padding-top: 5px;
}
.technology__content-txt {
  font-weight: 400;
}
.technology__heading {
  font-size: 32px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 300;
  margin-bottom: 2rem;
  line-height: 2;
}
@media screen and (max-width: 834px) {
  .technology__heading {
    font-size: 25px;
    margin-bottom: 2rem;
    line-height: 1.5;
  }
}
.technology__heading-small {
  font-size: clamp(2rem, 2vw + 1rem, 2.4rem);
  display: block;
}
.technology__heading-small._noto {
  font-family: "Noto Sans JP", serif;
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}
.technology__heading p {
  margin-bottom: 4rem;
}
@media screen and (max-width: 834px) {
  .technology__heading p {
    margin-bottom: 2rem;
  }
}
.technology__heading-bl {
  color: var(--light-blue);
  font-size: clamp(1.5rem, 1vw + 1rem, 1.8rem);
  margin-bottom: 2rem;
}
.technology-acc {
  text-align: center;
}

/* ====================================================
SAFETY
==================================================== */
.safety {
  position: relative;
  z-index: 1;
  padding: 13.5rem 0 12rem;
  background-color: var(--wh);
}
@media screen and (max-width: 1200px) {
  .safety {
    padding: 6rem 0 6rem;
  }
}
@media screen and (max-width: 834px) {
  .safety {
    padding: 4rem 0 2rem;
  }
}
.safety__ttl-en {
  font-family: "Cormorant Garamond", serif;
  color: var(--light-blue2);
  margin-bottom: 6rem;
  font-size: clamp(1.6rem, 1vw + 1rem, 2.1rem);
}
@media screen and (max-width: 1200px) {
  .safety__ttl-en {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .safety__ttl-en {
    margin-bottom: 2rem;
  }
}
.safety__ttl-wrapper {
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 6rem;
}
@media screen and (max-width: 1200px) {
  .safety__ttl-wrapper {
    gap: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .safety__ttl-wrapper {
    flex-direction: column;
    gap: 0;
  }
}
.safety__ttl-heading {
  font-size: 40px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 300;
  margin-bottom: 4rem;
  line-height: 2;
  white-space: nowrap;
}
@media screen and (max-width: 834px) {
  .safety__ttl-heading {
    margin-bottom: 2rem;
    line-height: 1;
    font-size: clamp(2.4rem, 2vw + 1rem, 3rem);
  }
}
@media screen and (max-width: 834px) {
  .safety__img {
    margin-top: 3rem;
  }
  .safety__img img {
    max-width: 1000px;
    padding-bottom: 2rem;
  }
}
.safety__img-txt {
  margin-top: 4rem;
}
@media screen and (max-width: 834px) {
  .safety__img-txt {
    margin-top: 2rem;
  }
}
.safety .scroll-hint-icon {
  top: 30%;
}

/* ====================================================
CARE STUDY
==================================================== */
.casestudy {
  position: relative;
  z-index: 1;
  padding: 15rem 0 12rem;
}
@media screen and (max-width: 1200px) {
  .casestudy {
    padding: 7rem 0 6rem;
  }
}
@media screen and (max-width: 834px) {
  .casestudy {
    padding: 5rem 0 4rem;
  }
}
.casestudy__content {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 834px) {
  .casestudy__content {
    flex-direction: column;
  }
}
.casestudy__content-heading {
  font-size: 32px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 300;
  line-height: 2;
}
@media screen and (max-width: 834px) {
  .casestudy__content-heading {
    font-size: 26px;
  }
}
.casestudy__content-heading-small {
  font-size: clamp(2rem, 2vw + 1rem, 2.4rem);
  display: block;
}
.casestudy__content-img {
  width: 50%;
}
@media screen and (max-width: 834px) {
  .casestudy__content-img {
    width: 100%;
  }
}
.casestudy__content-ttl {
  width: 50%;
  padding-left: 8rem;
}
@media screen and (max-width: 1200px) {
  .casestudy__content-ttl {
    padding-left: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .casestudy__content-ttl {
    width: 100%;
    padding-left: 0;
  }
}
.casestudy__content-ttl-en {
  font-size: clamp(1.6rem, 1vw + 1rem, 2.1rem);
  font-family: "Cormorant Garamond", serif;
  color: var(--light-blue2);
  margin-bottom: 6rem;
}
@media screen and (max-width: 1200px) {
  .casestudy__content-ttl-en {
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .casestudy__content-ttl-en {
    margin-bottom: 0;
  }
}
.casestudy__content-list {
  padding: 5rem 0 6rem;
}
@media screen and (max-width: 1200px) {
  .casestudy__content-list {
    padding: 3rem 0 3rem;
  }
}
.casestudy__content-list ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
}
@media screen and (max-width: 834px) {
  .casestudy__content-list ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
.casestudy__content-list-item figcaption {
  text-align: center;
  font-size: clamp(1.4rem, 1vw + 0.75rem, 1.6rem);
}
.casestudy__content._01 .casestudy__content-img img {
  min-width: 745px;
  transform: translateX(calc(50% - 500px));
}
@media screen and (max-width: 1200px) {
  .casestudy__content._01 .casestudy__content-img img {
    min-width: auto;
    transform: none;
  }
}
.casestudy__content._02 {
  gap: 4rem 3rem;
}
@media screen and (max-width: 834px) {
  .casestudy__content._02 {
    gap: 2rem;
  }
}
.casestudy__content._02 .casestudy__content-heading {
  width: 100%;
  text-align: center;
  position: relative;
}
.casestudy__content._02 .casestudy__content-heading::before, .casestudy__content._02 .casestudy__content-heading::after {
  content: "";
  display: block;
  width: calc(50% - 165px);
  height: 1px;
  background-color: #eee;
  position: absolute;
  top: 50%;
}
@media screen and (max-width: 834px) {
  .casestudy__content._02 .casestudy__content-heading::before, .casestudy__content._02 .casestudy__content-heading::after {
    content: none;
  }
}
.casestudy__content._02 .casestudy__content-heading::before {
  left: -2.5rem;
}
.casestudy__content._02 .casestudy__content-heading::after {
  right: -2.5rem;
}
.casestudy__content._02 .casestudy__content-ttl {
  width: calc(50% - 1.5rem);
}
@media screen and (max-width: 834px) {
  .casestudy__content._02 .casestudy__content-ttl {
    width: 100%;
  }
}
.casestudy__content._02 .casestudy__content-ttl-heading {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(2rem, 2vw + 1rem, 2.4rem);
  margin-bottom: 2rem;
}
.casestudy__content._02 .casestudy__content-img {
  width: calc(50% - 1.5rem);
}
@media screen and (max-width: 834px) {
  .casestudy__content._02 .casestudy__content-img {
    width: 100%;
  }
  .casestudy__content._02 .casestudy__content-img img {
    aspect-ratio: 2/1;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.casestudy__content._02 .casestudy__content-box {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-top: clamp(1.5rem, 2vw + 1rem, 3rem);
}
@media screen and (max-width: 834px) {
  .casestudy__content._02 .casestudy__content-box {
    flex-direction: column;
    align-items: center;
  }
}
.casestudy__content._02 .casestudy__content-box img {
  max-width: 150px;
}
.casestudy__content._02 .casestudy__content-box-txt {
  font-family: "Shippori Mincho B1", serif;
  font-size: clamp(1.4rem, 1vw + 0.75rem, 1.6rem);
  line-height: 1.5;
}
.casestudy__content._02 .casestudy__content-box-txt span.fs-14 {
  font-size: clamp(1.2rem, 1vw + 0.75rem, 1.4rem);
}
.casestudy__content._02 .casestudy__content-box-txt span.fs-21 {
  font-size: clamp(1.6rem, 1vw + 1rem, 2.1rem);
}
.casestudy__content._02 .casestudy__content-box-list {
  font-size: 13px;
  margin-top: 1.5rem;
}
.casestudy__content-txt {
  font-weight: 400;
}

/* アパホテルバナー */
.apahotelat {
  padding: 9rem 0;
}
@media screen and (max-width: 1200px) {
  .apahotelat {
    padding: 5rem 0;
  }
}
.apahotelat .wrapper {
  display: flex;
  align-items: center;
  gap: 6rem;
}
@media screen and (max-width: 1200px) {
  .apahotelat .wrapper {
    gap: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .apahotelat .wrapper {
    flex-direction: column;
  }
}
.apahotelat__img {
  flex: 1;
}
.apahotelat__img img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.apahotelat__txtbox {
  flex: 1;
}
.apahotelat__txtbox-title {
  font-size: clamp(2rem, 2vw + 1rem, 2.4rem);
  font-family: "Shippori Mincho B1", serif;
  margin-bottom: 2rem;
}
@media screen and (max-width: 834px) {
  .apahotelat__txtbox-title {
    font-size: clamp(1.6rem, 1vw + 1rem, 2.1rem);
    margin-bottom: 1rem;
  }
}
.apahotelat__txtbox-subtitle {
  font-size: 32px;
  font-family: "Shippori Mincho B1", serif;
  margin-bottom: 6rem;
}
@media screen and (max-width: 1200px) {
  .apahotelat__txtbox-subtitle {
    font-size: clamp(2.4rem, 2vw + 1rem, 3rem);
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .apahotelat__txtbox-subtitle {
    font-size: clamp(2rem, 2vw + 1rem, 2.4rem);
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .apahotelat__txtbox-txt {
    font-size: clamp(1.3rem, 1vw + 0.75rem, 1.5rem);
  }
}

/* ====================================================
LINE UP
==================================================== */
.line-up {
  position: relative;
  z-index: 1;
  padding: 15rem 0 12rem;
  background-color: var(--bg-gray);
}
@media screen and (max-width: 1200px) {
  .line-up {
    padding: 7rem 0 6rem;
  }
}
@media screen and (max-width: 834px) {
  .line-up {
    padding: 4rem 0 3rem;
  }
}
.line-up__ttl {
  text-align: center;
  margin-bottom: 10rem;
}
@media screen and (max-width: 1200px) {
  .line-up__ttl {
    margin-bottom: 5rem;
  }
}
.line-up__ttl-en {
  font-size: 80px;
  color: var(--light-blue2);
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .line-up__ttl-en {
    font-size: 40px;
  }
}
.line-up__ttl-ja {
  width: 70%;
  margin: auto;
  font-weight: 400;
}
@media screen and (max-width: 834px) {
  .line-up__ttl-ja {
    width: auto;
    text-align: left;
  }
}
.line-up__ttl-heading {
  margin: 3rem 0 6rem;
}
@media screen and (max-width: 834px) {
  .line-up__ttl-heading {
    margin: 1.5rem 0 3rem;
  }
}
.line-up__biglist-list-item {
  display: flex;
  flex-wrap: wrap;
  gap: 6.5rem 0;
  margin-top: 5rem;
}
@media screen and (max-width: 1200px) {
  .line-up__biglist-list-item {
    gap: 3rem 0;
  }
}
@media screen and (max-width: 834px) {
  .line-up__biglist-list-item {
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
    margin-top: 5rem;
  }
}
.line-up__biglist-list-ttl {
  width: 100%;
  color: var(--light-blue2);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 834px) {
  .line-up__biglist-list-ttl {
    flex-direction: column;
    padding-bottom: 1rem;
  }
}
.line-up__biglist-list-ttl .fs-12 {
  font-weight: 600;
}
.line-up__biglist-list-heading {
  font-size: 26px;
  font-family: "Shippori Mincho B1", serif;
  font-weight: 300;
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .line-up__biglist-list-heading {
    margin-bottom: 2rem;
    align-self: flex-start;
  }
}
.line-up__biglist-list-heading-small {
  font-size: 13px;
  display: block;
  color: #222;
  font-family: "Noto Sans JP", serif;
}
.line-up__biglist-list-left {
  width: calc(50% - 6rem);
  overflow-x: hidden;
  margin-right: 6rem;
}
@media screen and (max-width: 1200px) {
  .line-up__biglist-list-left {
    width: calc(50% - 3rem);
    margin-right: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .line-up__biglist-list-left {
    width: 100%;
  }
}
.line-up__biglist-list-left [class*=thumbnail-slider-main] .swiper-slide img {
  width: 100%;
  height: 100%;
  max-height: 540px;
  aspect-ratio: 1/1;
  -o-object-fit: cover;
     object-fit: cover;
}
.line-up__biglist-list-right {
  width: 50%;
  font-size: clamp(1.2rem, 1vw + 0.75rem, 1.4rem);
}
@media screen and (max-width: 834px) {
  .line-up__biglist-list-right {
    width: 100%;
  }
}
.line-up__biglist-list-right-chk {
  margin-bottom: 3rem;
  border-bottom: 1px solid #eee;
  padding-bottom: 3rem;
  font-weight: 600;
}
@media screen and (max-width: 834px) {
  .line-up__biglist-list-right-chk {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.line-up__biglist-list-right-chk li {
  font-size: clamp(1.3rem, 1vw + 0.75rem, 1.5rem);
  text-indent: -2rem;
}
.line-up__biglist-list-right-chk li::before {
  content: "\e5ca";
  font-family: "Material Symbols Outlined";
  font-size: 2rem;
  padding-top: 5px;
  color: var(--light-blue2);
}
.line-up__biglist-list-right-dl {
  font-size: clamp(1.3rem, 1vw + 0.75rem, 1.5rem);
}
.line-up__biglist-list-right-dl dt {
  color: var(--light-blue2);
  font-weight: 500;
  font-size: 13px;
}
.line-up__biglist-list-right-dl dd {
  margin-bottom: 3rem;
}
@media screen and (max-width: 640px) {
  .line-up__biglist-list-right-dl dd {
    margin-bottom: 0;
  }
}

/* ====================================================
MOBILE
==================================================== */
.mobile {
  position: relative;
  z-index: 1;
  background: url(../img/mobile-bg.webp) no-repeat center/cover;
  padding: 20rem 0 4rem;
  color: var(--wh);
}
@media screen and (max-width: 1200px) {
  .mobile {
    padding: 10rem 0 4rem;
  }
}
@media screen and (max-width: 834px) {
  .mobile {
    padding: 5rem 5% 5%;
    height: 200vw;
    background: url(../img/mobile-bg-sp.webp) no-repeat center/cover;
  }
}
@media screen and (max-width: 640px) {
  .mobile {
    height: 200vh;
  }
}
@media (max-width: 376px) {
  .mobile {
    height: 125vh;
  }
}
@media (max-width: 360px) {
  .mobile {
    height: 130vh;
  }
}
.mobile__content {
  width: 50%;
  max-width: 600px;
  margin: auto 0 auto auto;
}
@media screen and (max-width: 834px) {
  .mobile__content {
    width: 100%;
    max-width: none;
  }
}
.mobile__content-heading1 {
  margin-bottom: 3rem;
}
@media screen and (max-width: 834px) {
  .mobile__content-heading1 {
    width: 80%;
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.mobile__content-heading1 img {
  width: 100%;
}
.mobile__content-txt {
  font-size: 13px;
  margin-bottom: 3rem;
  font-weight: 400;
  white-space: nowrap;
}
@media (max-width: 1300px) {
  .mobile__content-txt {
    white-space: wrap;
  }
}
@media screen and (max-width: 834px) {
  .mobile__content-txt {
    width: 80%;
    filter: drop-shadow(24px 0 57px rgba(0, 0, 0, 0.2));
    position: absolute;
    bottom: 32%;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(2rem, 2vw + 1rem, 2.4rem);
  }
}
@media screen and (max-width: 640px) {
  .mobile__content-txt {
    width: 100%;
    bottom: 30%;
    left: 50%;
    font-size: 13px;
  }
}
.mobile__content .click-btn {
  font-weight: 600;
}
@media screen and (max-width: 834px) {
  .mobile__content .click-btn {
    width: 100%;
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(2rem, 2vw + 1rem, 2.4rem);
    height: 90px;
  }
}
@media screen and (max-width: 640px) {
  .mobile__content .click-btn {
    bottom: 22%;
    height: 60px;
    font-size: 13px;
  }
}
.mobile__wrapper {
  width: 100%;
  height: 100%;
  max-width: 1400px;
  margin: auto;
}
@media screen and (max-width: 834px) {
  .mobile__wrapper {
    position: relative;
  }
}
.mobile__specification {
  text-align: right;
  font-size: 10px;
  padding: 3rem 3rem 0 0;
  line-height: 1.2;
  font-weight: 400;
}
@media screen and (max-width: 834px) {
  .mobile__specification {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0;
  }
}

/* ====================================================
USER VOICE
==================================================== */
.voice {
  position: relative;
  z-index: 1;
  padding: 16rem 0 12rem;
  background-color: var(--wh);
  overflow-x: hidden;
}
@media screen and (max-width: 1200px) {
  .voice {
    padding: 8rem 0 6rem;
  }
}
@media screen and (max-width: 834px) {
  .voice {
    padding: 4rem 0 3rem;
  }
}
.voice .inner {
  overflow-x: hidden;
}
.voice__ttl {
  text-align: center;
  margin-bottom: 8rem;
}
@media screen and (max-width: 1200px) {
  .voice__ttl {
    margin-bottom: 4rem;
  }
}
.voice__ttl-en {
  font-family: "Cormorant Garamond", serif;
  color: var(--light-blue2);
  font-size: 80px;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .voice__ttl-en {
    font-size: 40px;
  }
}
@media screen and (max-width: 834px) {
  .voice__ttl-en {
    font-size: 32px;
  }
}
.voice__ttl-heading {
  font-size: 13px;
}
.voice__slider {
  overflow: hidden;
}
.voice__slider-item {
  background-color: #ebf2f6;
  border-radius: 10px;
  padding: 7rem 6rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .voice__slider-item {
    padding: 4rem 3rem 3rem;
  }
}
.voice__slider-item-heading {
  font-size: clamp(1.5rem, 1vw + 1rem, 1.8rem);
  font-family: "Shippori Mincho B1", serif;
  margin-bottom: 5rem;
}
@media screen and (max-width: 1200px) {
  .voice__slider-item-heading {
    margin-bottom: 2.5rem;
  }
}
.voice__slider-item-txt {
  font-size: clamp(1.3rem, 1vw + 0.75rem, 1.5rem);
  line-height: 1.4;
}
.voice__slider-item .voice-acc {
  width: 3vw;
  max-width: 25px;
  position: absolute;
  top: 2rem;
  left: 2rem;
}
.voice__slider-item.swiper-slide {
  max-width: 380px;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .voice__slider-item.swiper-slide {
    max-width: 270px;
  }
}
.voice .txt-bl {
  color: var(--light-blue2);
  font-size: 13px;
  text-align: right;
}

/* ====================================================
Movie
==================================================== */
.movie {
  position: relative;
  z-index: 1;
  padding: 12rem 0;
  background-color: var(--wh);
}
@media screen and (max-width: 1200px) {
  .movie {
    padding: 6rem 0 10rem;
  }
}
@media screen and (max-width: 834px) {
  .movie {
    padding: 3rem 0 5rem;
  }
}
.movie__ttl {
  text-align: center;
  margin-bottom: 8rem;
}
@media screen and (max-width: 1200px) {
  .movie__ttl {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .movie__ttl {
    margin-bottom: 2rem;
  }
}
.movie__ttl-en {
  font-family: "Cormorant Garamond", serif;
  color: var(--light-blue2);
  font-size: 80px;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .movie__ttl-en {
    font-size: 40px;
  }
}
@media screen and (max-width: 834px) {
  .movie__ttl-en {
    font-size: 32px;
  }
}
.movie__ttl-heading {
  font-size: 13px;
}
.movie__content-wrapper {
  width: 100%;
  max-width: 850px;
  margin: auto;
}
.movie__list {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  gap: 2rem;
}
@media screen and (max-width: 834px) {
  .movie__list {
    flex-direction: column;
    gap: 2rem;
  }
}
.movie__list-item {
  border-radius: 8px;
  overflow: hidden;
  width: 400px;
}
.movie__list-item iframe {
  border-radius: 8px;
  width: 100%;
  aspect-ratio: 16/9;
  transition: 0.3s all ease;
  transform-origin: center center;
}
.movie__list-item iframe:hover {
  transform: scale(1.1);
}

/* ====================================================
FAQ
==================================================== */
.faq {
  position: relative;
  z-index: 1;
  padding: 12rem 0;
  background-color: var(--wh);
}
@media screen and (max-width: 1200px) {
  .faq {
    padding: 6rem 0 10rem;
  }
}
@media screen and (max-width: 834px) {
  .faq {
    padding: 3rem 0 5rem;
  }
}
.faq__ttl {
  text-align: center;
  margin-bottom: 8rem;
}
@media screen and (max-width: 1200px) {
  .faq__ttl {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .faq__ttl {
    margin-bottom: 2rem;
  }
}
.faq__ttl-en {
  font-family: "Cormorant Garamond", serif;
  color: var(--light-blue2);
  font-size: 80px;
  line-height: 1;
}
@media screen and (max-width: 1200px) {
  .faq__ttl-en {
    font-size: 40px;
  }
}
@media screen and (max-width: 834px) {
  .faq__ttl-en {
    font-size: 32px;
  }
}
.faq__ttl-heading {
  font-size: 13px;
}
.faq__content-wrapper {
  width: 100%;
  max-width: 850px;
  margin: auto;
}
.faq__content-item {
  padding-inline: 2rem;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 640px) {
  .faq__content-item {
    padding-right: 3.5rem;
  }
}
.faq__content-item-q {
  cursor: pointer;
  position: relative;
  font-size: clamp(1.6rem, 1vw + 1rem, 2.1rem);
  padding-top: 4rem;
  margin-bottom: 3rem;
  font-weight: 400;
}
@media screen and (max-width: 1200px) {
  .faq__content-item-q {
    padding-top: 2rem;
  }
}
@media screen and (max-width: 640px) {
  .faq__content-item-q {
    font-size: clamp(1.3rem, 1vw + 0.75rem, 1.5rem);
  }
}
.faq__content-item-q::before {
  content: "Q";
  color: var(--light-blue2);
  font-size: clamp(2.4rem, 2vw + 1rem, 3rem);
  font-family: "Cormorant Garamond", serif;
  margin-right: 2rem;
}
.faq__content-item-q::after {
  content: "\e145";
  font-family: "Material Symbols Outlined";
  font-size: clamp(1.5rem, 1vw + 1rem, 1.8rem);
  color: #555;
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 640px) {
  .faq__content-item-q::after {
    right: -8%;
  }
}
.faq__content-item-q.open {
  transition: all 0.3s;
}
.faq__content-item-q.open::after {
  content: "\e15b";
}
.faq__content-item-a {
  display: none;
  font-size: clamp(1.3rem, 1vw + 0.75rem, 1.5rem);
  padding-left: 5rem;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-top: 1px solid #eee;
}
@media screen and (max-width: 834px) {
  .faq__content-item-a {
    padding-left: 1.5rem;
  }
}

/* ====================================================
FOOTER
==================================================== */
.main-footer {
  position: relative;
  z-index: 1;
  font-family: "Shippori Mincho B1", serif;
  background-color: var(--wh);
}
@media screen and (max-width: 834px) {
  .main-footer {
    padding: 0 0 5rem;
  }
}
.main-footer .inner {
  text-align: center;
  padding: 17rem 5% 0;
  display: flex;
}
@media screen and (max-width: 834px) {
  .main-footer .inner {
    flex-direction: column;
    padding: 8rem 5% 0;
  }
}
@media screen and (max-width: 834px) {
  .main-footer__wrapper {
    position: relative;
    padding: 0;
    background-color: #fafafa;
    height: 160vh;
  }
}
@media screen and (max-width: 640px) {
  .main-footer__wrapper {
    height: 100vh;
  }
}
.main-footer__container {
  background: url(../img/footer-bg-img.webp) no-repeat center/cover;
}
@media screen and (max-width: 1200px) {
  .main-footer__container {
    background-size: 100%;
  }
}
@media screen and (max-width: 834px) {
  .main-footer__container {
    background: url(../img/footer-bg-img-sp.webp) no-repeat center/cover;
    background-position: 0;
    min-height: 750px;
  }
}
@media screen and (max-width: 834px) {
  .main-footer__container {
    background: url(../img/footer-bg-img-sp.webp) no-repeat center/cover;
    background-position: 0;
    min-height: unset;
  }
}
.main-footer__img {
  width: 50%;
}
@media screen and (max-width: 1200px) {
  .main-footer__img {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .main-footer__img img {
    max-width: 50%;
  }
}
@media screen and (max-width: 834px) {
  .main-footer__img {
    height: 178px;
    width: 100%;
    margin-bottom: 2rem;
  }
}
.main-footer__content {
  width: 50%;
}
@media screen and (max-width: 834px) {
  .main-footer__content {
    width: 100%;
    position: absolute;
    bottom: -5%;
    left: 0;
    right: 0;
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 640px) {
  .main-footer__content {
    bottom: -5%;
  }
}
.main-footer__content-img {
  max-width: 468px;
}
@media screen and (max-width: 1200px) {
  .main-footer__content-img {
    max-width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .main-footer__content-img {
    max-width: 80%;
    margin: auto;
    order: 1;
  }
}
.main-footer__content .click-btn {
  font-weight: 600;
}
@media screen and (max-width: 834px) {
  .main-footer__content .click-btn {
    order: 3;
  }
}
@media screen and (max-width: 834px) {
  .main-footer__ttl {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
}
.main-footer__ttl-txt {
  font-size: clamp(1.6rem, 1vw + 1rem, 2.1rem);
  margin-bottom: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .main-footer__ttl-txt {
    color: #222;
    font-size: clamp(2.4rem, 2vw + 1rem, 3rem);
    order: 2;
  }
}
@media screen and (max-width: 640px) {
  .main-footer__ttl-txt {
    font-size: clamp(1.6rem, 1vw + 1rem, 2.1rem);
  }
}
.main-footer__ttl .click-btn {
  max-width: 80%;
}
.main-footer__copyright {
  color: #222;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 834px) {
  .main-footer__copyright {
    height: 67px;
  }
}

.over640 {
  display: block;
}
@media screen and (max-width: 640px) {
  .over640 {
    display: none;
  }
}

.copy-right {
  background-color: var(--wh);
  color: #222;
  padding: 4rem 0;
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 834px) {
  .copy-right {
    padding-bottom: 8rem;
  }
}
.copy-right .inner-1500 {
  width: 90%;
  max-width: 1500px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .copy-right .inner-1500 {
    width: 100%;
    padding: 0 5%;
  }
}
.copy-right .inner-1500.wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .copy-right .inner-1500.wrapper {
    flex-direction: column;
    justify-content: center;
  }
}
.copy-right .distributor {
  font-weight: 300;
  font-size: 13px;
}
@media screen and (max-width: 834px) {
  .copy-right .distributor {
    width: -moz-fit-content;
    width: fit-content;
    margin: auto;
  }
}
.copy-right .distributor span {
  font-size: 15px;
  font-weight: 500;
  display: block;
  margin-bottom: 1rem;
}/*# sourceMappingURL=style.css.map */