@charset "UTF-8";
/***************************

foundation/base.scss

***************************/
@import url("https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=Shippori+Mincho+B1&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

:root {
  --black: #143e5d;
  --white: #dfded7;
  --en: "Crimson Text", serif;
  --ja: "Shippori Mincho B1", serif;
  --f10: 1rem;
  --f11: 1.1rem;
  --f12: clamp(1rem, 2vw, 1.2rem);
  --f13: clamp(1.2rem, 2vw, 1.3rem);
  --f14: clamp(1.2rem, 2vw, 1.4rem);
  --f15: clamp(1.4rem, 2vw, 1.5rem);
  --f16: clamp(1.5rem, 2vw, 1.6rem);
  --f17: clamp(1.6rem, 2vw, 1.7rem);
  --f18: clamp(1.7rem, 2vw, 1.8rem);
  --f20: clamp(1.6rem, 2vw, 2rem);
  --f24: clamp(1.6rem, 2vw, 2.4rem);
  --f28: clamp(2.2rem, 5vw, 2.8rem);
  --f32: clamp(2.4rem, 5vw, 3.2rem);
  --f38: clamp(2.4rem, 5vw, 3.8rem);
  --f42: clamp(2.6rem, 5vw, 4.2rem);
  --f50: clamp(2.5rem, 5vw, 5rem);
  --f60: clamp(3rem, 5vw, 6rem);
  --fwel: 200;
  --fwl: 300;
  --fwn: 400;
  --fwm: 500;
  --fwsb: 600;
  --fwb: 700;
}

html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 100px;
  background-color: #143e5d;
}

body {
  font-family: "Shippori Mincho B1", serif;
  font-weight: normal;
  height: 100%;
  color: #dfded7;
  margin: 0;
  padding: 0;
  line-height: 1;
  width: 100%;
}
body.is-opening {
  overflow: hidden;
}
body.is-modal-open {
  overflow: hidden !important;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 0.5s;
  -moz-transition: 0.5s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  -ms-transition: 0.5s;
  display: block;
}

a:hover {
  opacity: 0.6;
}

a:active,
a:hover {
  outline-width: 0;
}

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

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main,
picture {
  display: block;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

/***************************

layout/_header.scss

***************************/
.header {
  position: fixed;
  top: 0;
  width: 100vw;
  overflow: hidden;
}
.header-txt {
  width: 101%;
  margin-left: -0.5%;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1.2s ease;
  will-change: clip-path;
}
@media screen and (max-width: 834px) {
  .header-txt {
    width: 100%;
  }
}
.header-txt img {
  width: 100%;
}
.header-txt.is-show {
  clip-path: inset(0 0 0 0);
}

/***************************

layout/_footer.scss

***************************/
.footer {
  position: relative;
  z-index: 4;
  padding: 17rem 0 18rem;
  background-color: #293036;
}
@media screen and (max-width: 834px) {
  .footer {
    padding: 5rem 0;
  }
}
.footer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 900px) {
  .footer-flex {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 10rem;
  }
}
.footer-lft {
  max-width: 27.7rem;
}
@media screen and (max-width: 900px) {
  .footer-lft {
    margin: 0 auto;
    text-align: center;
  }
  .footer-lft .c-txt {
    text-align: center;
  }
}
.footer-logo {
  margin-bottom: 3rem;
}
.footer-rht {
  max-width: 98rem;
  width: 100%;
}
.footer-rht__flex {
  margin-top: 14rem;
  max-width: 80rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 3rem;
}
@media screen and (max-width: 834px) {
  .footer-rht__flex {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5rem;
  }
}
.footer-rht__dl:first-of-type {
  max-width: 25rem;
  width: 100%;
}
.footer-rht__dt {
  font-size: var(--f14);
  color: rgba(223, 222, 215, 0.3);
}
@media screen and (max-width: 834px) {
  .footer-rht__dt {
    text-align: center;
  }
}
.footer-rht__dt.en {
  text-transform: uppercase;
}
.footer-rht__dd {
  margin-top: 2rem;
}
@media screen and (max-width: 834px) {
  .footer-rht__dd {
    text-align: center;
  }
}
.footer-rht__ttl {
  font-size: var(--f16);
}
.footer-rht__txt {
  margin-top: 1rem;
  font-size: var(--f14);
  line-height: 1.5;
}
.footer-rht__txt a {
  display: inline-block;
}
.footer-rht__sns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6rem;
}
.footer-rht__btm {
  margin-top: 2rem;
  padding-top: 2.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 834px) {
  .footer-rht__btm {
    padding-top: 2rem;
    gap: 5rem;
    text-align: center;
  }
  .footer-rht__btm .c-txt {
    text-align: center;
  }
}
.footer-modal {
  margin-top: 5rem;
  text-align: right;
}
@media screen and (max-width: 834px) {
  .footer-modal {
    text-align: center;
  }
}
.footer-modal .c-link__underline {
  font-size: var(--f12);
  cursor: pointer;
}
.footer-modal__cont {
  display: none;
  text-align: left;
  position: fixed;
  width: 100vw;
  height: 100dvh;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
}
.footer-modal__cont.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.footer-modal__cont-inner {
  max-width: 120rem;
  width: 90vw;
  max-height: 90vh;
  padding: 8.5rem 11rem 17rem;
  background-color: #143e5d;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}
@media screen and (max-width: 834px) {
  .footer-modal__cont-inner {
    padding: 5rem 5%;
  }
}
.footer-modal__close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  z-index: 101;
}
.footer-modal__ttl01 {
  margin-bottom: 7rem;
  font-size: var(--f32);
  font-weight: var(--fwn);
  letter-spacing: 0.3rem;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .footer-modal__ttl01 {
    margin-bottom: 3rem;
  }
}
.footer-modal__ttl02 {
  margin-top: 7rem;
  font-size: var(--f24);
  line-height: 1.3;
  font-weight: var(--fwn);
}
@media screen and (max-width: 834px) {
  .footer-modal__ttl02 {
    margin-top: 3rem;
  }
}
.footer-modal__txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  font-size: var(--f15);
  line-height: 1.7;
  margin-top: 3rem;
}
@media screen and (max-width: 834px) {
  .footer-modal__txt {
    margin-top: 1.5rem;
  }
}
.footer-modal__txt .en {
  font-family: var(--ja);
  min-width: 2.2em;
}
.footer-modal__txt .footer-modal__txt {
  margin-top: 0;
  font-size: var(--f13);
  line-height: 2;
}
.footer-modal__txt .footer-modal__txt:first-of-type {
  margin-top: 1rem;
}
@media screen and (max-width: 834px) {
  .footer-modal__txt .footer-modal__txt:first-of-type {
    margin-top: 0;
  }
}
.footer-modal__txt a {
  display: inline-block;
}

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 834px) {
  .sitemap-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sitemap-item {
  font-family: var(--en);
  font-size: var(--f18);
  text-transform: uppercase;
}
@media screen and (max-width: 834px) {
  .sitemap-item {
    text-align: center;
  }
}

.copy {
  font-family: var(--en);
  font-size: var(--f12);
  color: rgba(223, 222, 215, 0.3);
}
@media screen and (max-width: 834px) {
  .copy {
    margin: 0 auto;
  }
}

/***************************

object/object/project/_mv.scss

***************************/
.top-fv {
  position: relative;
  z-index: 4;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.top-fv__ttl {
  position: absolute;
  top: calc(8vw + 5vh);
  right: 5rem;
  z-index: 1;
  opacity: 0;
  transform: translateY(1.6rem);
  transition: opacity 1.1s ease, transform 1.1s ease;
  will-change: opacity, transform;
}
@media screen and (max-width: 834px) {
  .top-fv__ttl {
    top: calc(8vw + 3vh);
    right: 4%;
    width: 42%;
  }
  .top-fv__ttl img {
    width: 100%;
  }
}
.top-fv__ttl.is-show {
  opacity: 1;
  transform: translateY(0);
}
.top-fv__catch {
  width: 7.6rem;
}
.top-fv__catch-inner {
  writing-mode: vertical-rl;
  font-size: 2.4rem;
  line-height: 1.58;
  letter-spacing: 0.4rem;
  opacity: 0;
  transform: translateY(1.2rem);
  transition: opacity 1.1s ease, transform 1.1s ease;
  will-change: opacity, transform;
}
.top-fv__catch.is-show .top-fv__catch-inner {
  opacity: 1;
  transform: translateY(0);
}
.top-fv__btm {
  position: absolute;
  bottom: 4rem;
  left: 4rem;
  opacity: 0;
  transform: translateY(1.4rem);
  transition: opacity 1s ease, transform 1s ease;
  will-change: opacity, transform;
}
@media screen and (max-width: 834px) {
  .top-fv__btm {
    width: clamp(12.8rem, 40%, 25.5rem);
    bottom: 2rem;
    left: 4%;
  }
}
.top-fv__btm.is-show {
  opacity: 1;
  transform: translateY(0);
}
.top-fv__btm-txt {
  margin-top: 2rem;
  font-size: var(--f12);
  line-height: 1.3;
}
@media screen and (max-width: 834px) {
  .top-fv__btm-txt {
    display: none;
  }
}
.top-fv__news {
  position: absolute;
  bottom: 4rem;
  right: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 1rem;
  opacity: 0;
  transform: translateY(2.4rem);
  transition: opacity 1s ease, transform 1s ease;
  will-change: opacity, transform;
}
@media screen and (max-width: 834px) {
  .top-fv__news {
    right: 4%;
    bottom: 2.2rem;
    gap: 0.5rem;
  }
}
.top-fv__news.is-show {
  opacity: 1;
  transform: translateY(0);
}
.top-fv__news-date {
  position: relative;
  top: 0.1rem;
  font-family: var(--en);
  font-size: var(--f13);
}
.top-fv__news-ttl {
  margin-left: 0.2rem;
  margin-bottom: 0.1rem;
  font-size: var(--f12);
  font-weight: var(--fwn);
}

/***************************

object/object/project/_intro.scss

***************************/
.top-intro {
  position: relative;
}
.top-intro__blur {
  position: sticky;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 35%, rgba(0, 0, 0, 0.22) 60%, rgba(0, 0, 0, 0.12) 100%);
  backdrop-filter: blur(3rem);
  -webkit-backdrop-filter: blur(3rem);
}
.top-intro__wrap {
  position: relative;
  z-index: 2;
  margin-top: 50vh;
}
.top-intro__cont {
  position: relative;
}
.top-intro__cont:not(:has(.c-txt02)) {
  position: relative;
  width: 100vw;
  height: 100vh;
  padding: 0 5%;
}
.top-intro__cont:has(.c-txt02) {
  padding: 25vh 0 20rem;
  margin-top: 50vh;
}
@media screen and (max-width: 834px) {
  .top-intro__cont:has(.c-txt02) {
    padding: 5rem 0 16rem;
  }
}
.top-intro__ttl {
  position: fixed;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  will-change: transform, filter, opacity;
  text-align: center;
}
.top-intro__ttl img {
  max-width: 48.5rem;
  width: 80%;
}
.top-intro__catch {
  position: fixed;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  font-size: var(--f38);
  line-height: 1.8;
  will-change: transform, filter, opacity;
}
.top-intro__logo {
  margin-top: 12rem;
  text-align: center;
}
@media screen and (max-width: 450px) {
  .top-intro__logo {
    margin-top: 5rem;
  }
  .top-intro__logo img {
    max-width: 15rem;
  }
}

/***************************

object/object/project/_concept.scss

***************************/
.top-concept {
  position: relative;
  width: 100vw;
  padding: 10rem 0 50rem;
  background: url(../img/top/concept-bg.webp) repeat top center/cover;
}
@media screen and (max-width: 834px) {
  .top-concept {
    padding: 6rem 0 165vw;
  }
}
.top-concept::before {
  position: absolute;
  content: "";
  width: clamp(10rem, 30%, 45.8rem);
  aspect-ratio: 458/81;
  top: 32%;
  right: 15%;
  z-index: 2;
  background: url(../img/top/concept-wave01.webp) no-repeat top left/cover;
}
@media screen and (max-width: 834px) {
  .top-concept::before {
    top: 20%;
  }
}
@media screen and (max-width: 450px) {
  .top-concept::before {
    top: 23%;
    width: 56%;
  }
}
.top-concept::after {
  position: absolute;
  content: "";
  width: 52.6rem;
  width: clamp(10rem, 35%, 52.6rem);
  aspect-ratio: 526/303;
  bottom: 22%;
  left: 8%;
  z-index: 2;
  background: url(../img/top/concept-wave02.webp) no-repeat top left/cover;
}
@media screen and (max-width: 834px) {
  .top-concept::after {
    width: clamp(10rem, 50%, 52.6rem);
    left: 50%;
    bottom: 26%;
    transform: translateX(-44%);
  }
}
@media screen and (max-width: 450px) {
  .top-concept::after {
    bottom: 15.5%;
    width: 70%;
    left: 49%;
  }
}
.top-concept__catch {
  margin: 16rem auto 34rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (max-width: 834px) {
  .top-concept__catch {
    margin: 7rem auto 21rem;
  }
}
.top-concept__catch p {
  height: 7em;
  font-size: var(--f32);
  line-height: 2.1;
  writing-mode: vertical-rl;
  letter-spacing: 0.4rem;
}
.top-concept__txt-wrap {
  position: relative;
  z-index: 2;
  width: 50%;
  margin: 0 0 0 auto;
  --reveal: 0%;
  --feather: 12%; /* ここは好みで調整 */
  -webkit-mask-image: linear-gradient(to bottom, rgb(0, 0, 0) clamp(0%, var(--reveal) - var(--feather), 100%), rgba(0, 0, 0, 0) clamp(0%, var(--reveal), 100%));
  mask-image: linear-gradient(to bottom, rgb(0, 0, 0) clamp(0%, var(--reveal) - var(--feather), 100%), rgba(0, 0, 0, 0) clamp(0%, var(--reveal), 100%));
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
@media screen and (max-width: 834px) {
  .top-concept__txt-wrap {
    width: 90%;
    margin-left: 5%;
    margin-right: auto;
    z-index: 3;
  }
}
.top-concept__txt {
  margin-bottom: 8rem;
  font-size: var(--f42);
}
@media screen and (max-width: 450px) {
  .top-concept__txt {
    font-size: clamp(2rem, 5vw, 2.6rem);
  }
}
.top-concept__para01 {
  width: clamp(16rem, 25%, 32rem);
  aspect-ratio: 300/400;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 20%;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .top-concept__para01 {
    aspect-ratio: 250/400;
    top: 14%;
  }
}
@media screen and (max-width: 450px) {
  .top-concept__para01 {
    top: 19%;
    max-width: 25rem;
    width: 33%;
  }
}
.top-concept__para01 img {
  display: block;
  width: 100%;
  height: 160%;
  object-fit: cover;
  position: absolute;
  top: -20%;
  left: 0;
}
.top-concept__para02 {
  width: clamp(15rem, 40%, 64rem);
  aspect-ratio: 640/700;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 33%;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .top-concept__para02 {
    width: clamp(15rem, 55%, 64rem);
    aspect-ratio: 435/700;
    top: auto;
    bottom: 29.5%;
  }
}
@media screen and (max-width: 450px) {
  .top-concept__para02 {
    bottom: 19.4%;
    width: 60%;
  }
}
.top-concept__para02 img {
  display: block;
  width: 100%;
  height: 160%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}
@media screen and (max-width: 450px) {
  .top-concept__para02 img {
    top: -5%;
  }
}
.top-concept__para03 {
  width: clamp(16rem, 30%, 32rem);
  aspect-ratio: 320/400;
  overflow: hidden;
  position: absolute;
  right: 3%;
  bottom: 12%;
  z-index: 1;
}
@media screen and (max-width: 1400px) {
  .top-concept__para03 {
    bottom: 5%;
  }
}
@media screen and (max-width: 834px) {
  .top-concept__para03 {
    width: clamp(16rem, 37%, 32rem);
    aspect-ratio: 255/390;
    right: 0;
    bottom: 5%;
    z-index: 3;
  }
}
@media screen and (max-width: 450px) {
  .top-concept__para03 {
    width: 34%;
    bottom: 6%;
  }
}
.top-concept__para03 img {
  display: block;
  width: 100%;
  height: 160%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  will-change: transform;
}

/***************************

object/object/project/_location.scss

***************************/
.top-location {
  position: relative;
}
.top-location .c-anime__box {
  overflow: hidden;
}
.top-location__flex {
  padding-bottom: 9rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 3rem;
}
@media screen and (max-width: 1100px) {
  .top-location__flex {
    padding-top: 5rem;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 834px) {
  .top-location__flex {
    padding-bottom: 5rem;
  }
}
.top-location__img {
  margin-top: -3rem;
  margin-left: -2rem;
  width: 60%;
}
@media screen and (max-width: 1100px) {
  .top-location__img {
    width: 128vw;
    margin-top: -26vw;
    margin-left: 0;
    margin-right: -11vw;
    max-height: 80rem;
    overflow: hidden;
  }
  .top-location__img img {
    width: 100%;
  }
}
.top-location__cont {
  max-width: 61rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 1100px) {
  .top-location__cont {
    max-width: 100%;
    padding-bottom: 0;
  }
}
.top-location__cont .c-txt {
  margin: 4rem 0 3rem;
}
@media screen and (max-width: 834px) {
  .top-location__cont .c-txt {
    margin-top: 2rem;
  }
}

/***************************

object/object/project/_stay.scss

***************************/
.top-stay {
  position: relative;
  transition: margin-top 0.4s ease;
}
.top-stay.is-shifted {
  margin-top: -100vh;
}
.top-stay.is-shifted .c-anime__box {
  margin-top: 100vh;
}
.top-stay__flex {
  padding: 15rem 0 13rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 3rem;
}
@media screen and (max-width: 1100px) {
  .top-stay__flex {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 834px) {
  .top-stay__flex {
    padding: 5rem 0;
  }
}
.top-stay__swiper {
  width: 50%;
  position: sticky;
  top: 5rem;
  margin-left: 0;
}
@media screen and (max-width: 1100px) {
  .top-stay__swiper {
    position: relative;
    top: 0;
  }
}
@media screen and (max-width: 450px) {
  .top-stay__swiper {
    width: 100%;
  }
}
.top-stay__cont {
  max-width: 64rem;
  width: 46%;
}
@media screen and (max-width: 1100px) {
  .top-stay__cont {
    max-width: 100%;
    width: 100%;
  }
}
.top-stay__cont .c-txt:not(.f12) {
  margin: 7rem 0 2rem;
}
@media screen and (max-width: 834px) {
  .top-stay__cont .c-txt:not(.f12) {
    margin: 2rem 0 1rem;
  }
}
.top-stay__cont .c-txt.f12 {
  margin-bottom: 5rem;
}
@media screen and (max-width: 834px) {
  .top-stay__cont .c-txt.f12 {
    margin-bottom: 3rem;
  }
}
.top-stay__dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.top-stay__dl:not(:last-child) {
  margin-bottom: 6rem;
}
@media screen and (max-width: 834px) {
  .top-stay__dl:not(:last-child) {
    margin-bottom: 3rem;
  }
}
.top-stay__dl:last-child .top-stay__dd {
  width: 100%;
  aspect-ratio: 640/420;
}
.top-stay__dl:last-child .top-stay__modal-btn {
  margin-top: 0;
}
.top-stay__dt {
  width: 100%;
  padding-bottom: 1.5rem;
  font-size: var(--f18);
  border-bottom: 1px solid #c5cfd3;
}
@media screen and (max-width: 834px) {
  .top-stay__dt {
    padding-bottom: 1rem;
  }
}
.top-stay__dt small {
  font-size: var(--f12);
}
.top-stay__dd {
  margin-top: 3rem;
  width: calc(50% - 1rem);
}
@media screen and (max-width: 834px) {
  .top-stay__dd {
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 450px) {
  .top-stay__dd {
    margin-top: 1rem;
    width: calc(50% - 0.5rem);
  }
}
.top-stay__ttl {
  font-size: var(--f15);
  font-weight: var(--fwn);
}
.top-stay__modal-btn {
  margin-top: 1rem;
  width: 100%;
  aspect-ratio: 300/270;
  background-color: #dce2e4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}
.top-stay__modal-btn:hover {
  background-color: #c5cfd3;
}
.top-stay__modal-btn img {
  max-width: 90%;
  max-height: 90%;
}
.top-stay__modal-box {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
}
.top-stay__modal-box.open {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.top-stay__modal-box__inner {
  max-width: 90%;
  max-height: 90vh;
  padding: 5rem;
  background-color: #dce2e4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .top-stay__modal-box__inner {
    padding: 3rem;
  }
}
.top-stay__modal-box__inner img {
  width: 100%;
  max-height: calc(90vh - 10rem);
}

/***************************

object/object/project/_room.scss

***************************/
.top-room {
  position: relative;
  z-index: 2;
  display: flow-root;
  height: 100vh;
}
@media screen and (max-width: 834px) {
  .top-room {
    height: auto;
  }
}
.top-room__inner {
  min-width: max-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  will-change: transform;
  background-color: var(--black);
  color: var(--white);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .top-room__inner {
    position: relative;
    top: auto;
    height: auto;
    padding-bottom: 5rem;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 5rem;
  }
}
.top-room__first {
  width: 100vw;
  height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .top-room__first {
    position: relative;
    height: auto;
    margin-bottom: 4rem;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 2rem;
  }
}
@media screen and (max-width: 1100px) {
  .top-room__first-img {
    width: 30%;
    overflow: hidden;
  }
}
@media screen and (max-width: 834px) {
  .top-room__first-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: auto;
  }
}
.top-room__first-img img {
  width: auto;
  min-height: 100dvh;
}
@media screen and (max-width: 834px) {
  .top-room__first-img img {
    width: 100%;
    min-height: auto;
    height: auto;
    object-fit: cover;
  }
}
.top-room__first-cont {
  position: relative;
  width: 100%;
  height: 100dvh;
  padding: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5vw;
}
@media screen and (max-width: 834px) {
  .top-room__first-cont {
    height: auto;
    padding: 5rem 5% 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
  }
}
.top-room__first-cont .c-ttl {
  position: absolute;
  top: 6rem;
  left: 6rem;
}
@media screen and (max-width: 834px) {
  .top-room__first-cont .c-ttl {
    display: none;
  }
}
.top-room__first-flex {
  margin-left: calc(4.5rem + 3vw);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 5vw;
}
@media screen and (max-width: 834px) {
  .top-room__first-flex {
    margin-top: 192vw;
    margin-left: 0;
    gap: 5rem;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.top-room__first-flex .c-txt {
  max-width: 58rem;
}
@media screen and (max-width: 834px) {
  .top-room__first-flex .c-txt {
    max-width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .top-room__first-catch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 22.8rem;
  }
}
@media screen and (max-width: 480px) {
  .top-room__first-catch {
    height: 16.8rem;
  }
}
.top-room__first-catch p {
  font-size: var(--f32);
  writing-mode: vertical-rl;
  line-height: 1.6;
}
.top-room__c {
  height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .top-room__c {
    width: 100vw;
    height: auto;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.top-room__c:not(:last-child) {
  margin-right: 12rem;
}
@media screen and (max-width: 834px) {
  .top-room__c:not(:last-child) {
    margin-bottom: 3rem;
    margin-right: 0;
  }
}
.top-room__c:last-child .top-room__c-cont {
  margin-right: 12rem;
}
@media screen and (max-width: 834px) {
  .top-room__c:last-child .top-room__c-cont {
    margin-right: 0;
  }
}
.top-room__c-fig {
  position: relative;
}
@media screen and (max-width: 834px) {
  .top-room__c-fig {
    width: 100vw;
    height: auto;
    aspect-ratio: 1;
    order: 1;
    overflow: hidden;
  }
}
.top-room__c-fig-img {
  width: auto;
  min-height: 100dvh;
}
@media screen and (max-width: 834px) {
  .top-room__c-fig-img {
    width: 100vw;
    min-height: auto;
  }
  .top-room__c-fig-img img {
    width: 100%;
    height: 100%;
    object-position: center;
  }
}
.top-room__c-fig-cap {
  position: absolute;
  top: 6rem;
  right: 3rem;
  z-index: 2;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 834px) {
  .top-room__c-fig-cap {
    right: 5%;
  }
}
.top-room__c-fig-cap .en {
  font-size: var(--f32);
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
}
.top-room__c-fig-cap .ja {
  font-weight: var(--fwn);
  font-size: var(--f12);
}
.top-room__c-img-wrap {
  margin-left: 11rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .top-room__c-img-wrap {
    position: relative;
    margin: -13% 5% 0;
    width: 90%;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    order: 2;
    gap: 5rem;
  }
}
@media screen and (max-width: 450px) {
  .top-room__c-img-wrap {
    gap: 2.5rem;
  }
}
.top-room__c-img-wrap:has(.top-room__c-img-sml) .top-room__c-img-big {
  margin-left: 8rem;
}
@media screen and (max-width: 834px) {
  .top-room__c-img-wrap:has(.top-room__c-img-sml) .top-room__c-img-big {
    margin: 0 auto;
    width: 100%;
  }
}
.top-room__c-img-wrap:not(:has(.top-room__c-img-sml)) .top-room__c-img-big {
  margin: 2rem auto 0;
}
@media screen and (max-width: 834px) {
  .top-room__c-img-wrap:not(:has(.top-room__c-img-sml)) .top-room__c-img-big {
    width: 100%;
    margin-top: 0;
  }
}
.top-room__c-img-sml:first-of-type {
  position: relative;
  top: -20vh;
}
@media screen and (max-width: 834px) {
  .top-room__c-img-sml:first-of-type {
    top: auto;
    width: 60%;
  }
}
.top-room__c-img-sml:nth-of-type(2) {
  position: relative;
  top: 20vh;
  margin-left: -7rem;
}
@media screen and (max-width: 834px) {
  .top-room__c-img-sml:nth-of-type(2) {
    top: auto;
    margin-left: auto;
    margin-right: 0;
    width: 60%;
  }
}
.top-room__c-cont {
  max-width: 73rem;
  margin-left: 8rem;
}
@media screen and (max-width: 834px) {
  .top-room__c-cont {
    max-width: 90vw;
    margin: 3rem 0 0;
    order: 3;
  }
  .top-room__c-cont:has(.top-room__c-cont__flex) {
    position: relative;
    margin-top: -5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .top-room__c-cont:has(.top-room__c-cont__flex) .top-room__c-cont__flex {
    margin-top: 0;
    order: 1;
    display: block;
  }
  .top-room__c-cont:has(.top-room__c-cont__flex) .top-room__c-cont__flex picture {
    text-align: left;
  }
  .top-room__c-cont:has(.top-room__c-cont__flex) .top-room__c-cont__flex picture:nth-of-type(even) {
    text-align: right;
  }
  .top-room__c-cont:has(.top-room__c-cont__flex) .top-room__c-cont__flex picture:not(:first-of-type) {
    margin-top: 0.5rem;
  }
  .top-room__c-cont:has(.top-room__c-cont__flex) .top-room__c-ttl {
    margin-top: 3rem;
    order: 2;
  }
  .top-room__c-cont:has(.top-room__c-cont__flex) .c-txt {
    order: 3;
  }
}
.top-room__c-cont__flex {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 834px) {
  .top-room__c-cont__flex {
    gap: 1rem;
  }
  .top-room__c-cont__flex picture {
    text-align: center;
  }
}
.top-room__c-ttl {
  margin-bottom: 3rem;
  font-size: var(--f28);
  line-height: 1.4;
  font-weight: var(--fwn);
  letter-spacing: 0.3rem;
}
@media screen and (max-width: 834px) {
  .top-room__c-ttl {
    margin-bottom: 1.5rem;
  }
}
.top-room__c-dl {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid rgba(223, 222, 215, 0.2);
}
@media screen and (max-width: 834px) {
  .top-room__c-dl {
    margin-top: 2rem;
    padding-top: 2rem;
  }
}
.top-room__c-dt {
  font-size: var(--f18);
  text-transform: uppercase;
  letter-spacing: 0.3rem;
}
.top-room__c-dd {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 834px) {
  .top-room__c-dd {
    margin-top: 1.5rem;
    gap: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .top-room__c-dd {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.top-room__c-dd__img {
  width: 20.5rem;
  aspect-ratio: 1/1;
  background-color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.top-room__c-dd__cont {
  width: calc(100% - 23.5rem);
}
@media screen and (max-width: 600px) {
  .top-room__c-dd__cont {
    width: 100%;
  }
}
.top-room__c-dd__cont-txt {
  font-size: var(--f18);
  line-height: 1.7;
}
@media screen and (max-width: 600px) {
  .top-room__c-dd__cont-txt {
    text-align: center;
  }
}
.top-room__c-dd__cont .c-txt {
  margin: 1rem 0 1.5rem;
  font-size: var(--f14);
}
.top-room__c-dd__cont .c-link__underline {
  font-size: var(--f14);
  font-family: var(--en);
}
@media screen and (max-width: 600px) {
  .top-room__c-dd__cont .c-link__underline {
    display: block;
    width: fit-content;
    margin-right: 0;
    margin-left: auto;
  }
}
.top-room__c-dd__cont-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  font-size: var(--f24);
}
@media screen and (max-width: 600px) {
  .top-room__c-dd__cont-name {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.top-room__c-dd__cont-name small {
  display: inline-block;
  font-size: var(--f14);
}
.top-room__c-dd__cont-name span {
  padding: 0.5rem 1rem;
  display: inline-block;
  font-size: var(--f14);
  background-color: #204e70;
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
}

/***************************

object/object/project/_info.scss

***************************/
.top-info {
  position: relative;
  z-index: 4;
  padding: 12rem 0 16rem;
  background-color: #31383e;
}
@media screen and (max-width: 834px) {
  .top-info {
    padding: 5rem 0;
  }
}
.top-info__flex {
  margin-top: 10rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 834px) {
  .top-info__flex {
    margin-top: 4rem;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.top-info__lft {
  max-width: 72rem;
  width: 45%;
}
@media screen and (max-width: 834px) {
  .top-info__lft {
    max-width: 100%;
    width: 100%;
  }
}
.top-info__lft-txt {
  margin-top: 1.5rem;
  font-size: var(--f18);
}
.top-info__rht {
  max-width: 68rem;
  width: 60%;
}
@media screen and (max-width: 834px) {
  .top-info__rht {
    max-width: 100%;
    width: 100%;
  }
}
.top-info__dl {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7rem;
}
@media screen and (max-width: 1100px) {
  .top-info__dl {
    gap: 3rem;
  }
}
@media screen and (max-width: 450px) {
  .top-info__dl {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1rem;
  }
}
.top-info__dl:not(:first-of-type) {
  margin-top: 6rem;
}
@media screen and (max-width: 834px) {
  .top-info__dl:not(:first-of-type) {
    margin-top: 2rem;
  }
}
.top-info__dt {
  min-width: 9em;
  font-size: var(--f14);
  color: rgba(223, 222, 215, 0.3);
  text-transform: uppercase;
}
.top-info__dd {
  margin-top: -0.5em;
  font-size: var(--f16);
  line-height: 1.75;
}
.top-info__dd small {
  font-size: 0.8em;
  display: block;
}
.top-info__dd .c-link__underline {
  margin-left: 0.5em;
  font-size: var(--f16);
}
.top-info__dd .c-link__underline::after {
  bottom: 0.3rem;
}
.top-info__dd-list li {
  position: relative;
  padding-left: 1em;
}
.top-info__dd-list li:not(:first-of-type) {
  margin-top: 1rem;
}
.top-info__dd-list li::before {
  position: absolute;
  content: "";
  width: 0.6rem;
  aspect-ratio: 1;
  top: 0.75em;
  left: 0;
  z-index: 1;
  background-color: #51616f;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
.top-info__ttl {
  margin-top: 10rem;
  padding-top: 10rem;
  font-size: var(--f24);
  text-align: center;
  font-weight: var(--fwn);
  letter-spacing: 0.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media screen and (max-width: 834px) {
  .top-info__ttl {
    margin-top: 3rem;
    padding-top: 3rem;
  }
}
.top-info__list {
  margin-top: 10rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.4rem;
}
@media screen and (max-width: 1100px) {
  .top-info__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 1.5rem;
  }
}
@media screen and (max-width: 834px) {
  .top-info__list {
    margin-top: 3rem;
    gap: 3rem 1rem;
  }
}
.top-info__list-ttl {
  font-size: var(--f16);
  text-align: center;
  font-weight: var(--fwn);
}
@media screen and (max-width: 400px) {
  .top-info__list-ttl {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 370px) {
  .top-info__list-ttl {
    font-size: 1.3rem;
  }
}
.top-info__list-txt {
  font-size: var(--f13);
  color: rgba(223, 222, 215, 0.5);
  line-height: 1.8;
}
.top-info__list .c-link__underline {
  margin-top: 2rem;
  font-size: var(--f13);
}
@media screen and (max-width: 834px) {
  .top-info__list .c-link__underline {
    margin-top: 1.5rem;
  }
}
.top-info__fig {
  position: relative;
  margin: 2rem 0;
}
@media screen and (max-width: 834px) {
  .top-info__fig {
    margin: 1.5rem 0;
  }
}
.top-info__img {
  position: relative;
}
.top-info__img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.9) 18%, rgba(0, 0, 0, 0) 42%);
}
.top-info__img img {
  width: 100%;
}
.top-info__cap {
  position: absolute;
  bottom: 1.5rem;
  left: 2rem;
  z-index: 2;
  font-size: var(--f18);
  line-height: 1.8;
}
@media screen and (max-width: 834px) {
  .top-info__cap {
    bottom: 1rem;
    left: 1.5rem;
  }
}
@media screen and (max-width: 550px) {
  .top-info__cap {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 500px) {
  .top-info__cap {
    width: calc(100% - 3rem);
  }
  .top-info__cap br {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  .top-info__cap {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 430px) {
  .top-info__cap {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 405px) {
  .top-info__cap {
    font-size: 1.3rem;
  }
}

/***************************

object/component/_heading.scss

***************************/
.c-ttl {
  font-size: var(--f12);
  font-weight: var(--fwn);
}
.c-ttl.en {
  font-size: var(--f14);
}
.c-ttl__en {
  font-size: var(--f60);
  font-weight: var(--fwn);
  font-family: var(--en);
  letter-spacing: 0.6rem;
  text-align: center;
}
.c-ttl__en + .c-ttl {
  margin-top: 1rem;
}

.c-catch {
  font-weight: var(--fwn);
  font-size: var(--f32);
  line-height: 1.875;
}

/***************************

object/component/_box.scss

***************************/
.top {
  overflow-x: hidden;
}

.inner {
  max-width: 415rem;
  width: 90%;
  margin: 0 auto;
}

.sp {
  display: none;
}
@media screen and (max-width: 450px) {
  .sp {
    display: inline-block;
  }
}

@media screen and (max-width: 1100px) {
  .pc-no {
    display: none;
  }
}

.radius10 {
  border-radius: 10px;
  -webkit-border-radius: 10px;
}

.radius60 {
  border-radius: 60px;
  -webkit-border-radius: 60px;
}
@media screen and (max-width: 500px) {
  .radius60 {
    border-radius: 30px;
    -webkit-border-radius: 30px;
  }
}

.radius100vmax {
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}

.top-bg {
  position: fixed;
  width: 100vw;
  height: 100dvh;
  top: 0;
  left: 0;
  z-index: -1;
  background: url(../img/top/fv-img.webp) no-repeat center bottom/cover;
}

/* -------------------
  openig animation
-------------------*/
.opening {
  position: fixed;
  width: 100%;
  height: 100dvh;
  top: 0;
  left: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 1;
  transition: opacity 1.2s ease;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 35%, rgba(0, 0, 0, 0.22) 60%, rgba(0, 0, 0, 0.12) 100%);
  backdrop-filter: blur(3rem);
  transition: opacity 2s ease, backdrop-filter 2s ease;
  will-change: opacity, backdrop-filter;
  transform: translateZ(0);
}
.opening.is-fade-soft {
  backdrop-filter: blur(0rem);
}
.opening.is-fade-out {
  opacity: 0;
}
.opening-logo {
  width: clamp(15rem, 13%, 21.5rem);
  opacity: 0;
  transform: scale(0.95);
}

/* -------------------
  common anime box
-------------------*/
.c-anime__sec {
  position: relative;
}
.c-anime__wrap {
  position: sticky;
  top: 0;
  z-index: 1;
}
.c-anime__img {
  width: 100%;
  height: 100vh;
}
.c-anime__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-anime__hg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  will-change: transform, filter, opacity;
}
@media screen and (max-width: 450px) {
  .c-anime__hg {
    width: 100%;
  }
}
.c-anime__hg .c-ttl {
  font-size: var(--f12);
  text-align: center;
}
.c-anime__box {
  position: relative;
  z-index: 4;
  color: #143e5d;
  background-color: #d4dadc;
  min-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  --box-vw: 80; /* 初期：80vw */
  width: calc(var(--box-vw) * 1vw);
  margin-inline: auto;
}

.c-para {
  position: relative;
  overflow: hidden;
  height: 100vh;
}
.c-para__box {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.c-para__img {
  max-width: none;
  width: auto;
  height: 150vh; /* ← 重要：窓より大きく */
  object-fit: cover;
  will-change: transform;
  z-index: 1;
}

/*////////////////////////

fade

////////////////////////*/
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  opacity: 1;
  animation: fadeUpAnime 0.5s ease-in-out;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeImgTrigger {
  opacity: 0;
}

.fadeImg {
  opacity: 1;
  animation: zoomDown 0.5s ease;
}

/***************************

object/component/_button.scss

***************************/
.c-btn {
  max-width: 25rem;
  width: 100%;
  height: 5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: var(--f18);
  font-family: var(--en);
  background-color: rgba(223, 222, 215, 0.2);
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}

.fix-btn {
  position: fixed;
  z-index: 10;
  max-width: 16rem;
  height: 4.6rem;
  bottom: 2rem;
  right: 2rem;
  font-size: var(--f14);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  backdrop-filter: blur(1rem);
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  opacity: 0;
  pointer-events: none;
}
@media screen and (max-width: 450px) {
  .fix-btn {
    max-width: 90%;
    right: 5%;
  }
}
.fix-btn.is-show {
  opacity: 1;
  pointer-events: all;
}
.fix-btn.none {
  transition: all 0s ease;
  opacity: 0;
  pointer-events: none;
}

/***************************

object/utility/_background.scss

***************************/
.bg-white {
  background-color: #fff;
}

.bg-dark-pink {
  background-color: #f2e7e4;
}

.bg-gold {
  background-color: #a09472;
}

.bg-db {
  color: #f8f8e9;
  background-color: #0b1c25;
}
.bg-db .c-ttl {
  color: #acada1;
}

/***************************

object/utility/_link.scss

***************************/
.c-link__underline {
  font-size: var(--f18);
  position: relative;
  display: inline-block;
}
.c-link__underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: currentColor;
  /* 初期状態：表示されている */
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.c-link__underline:hover {
  opacity: 1;
}
.c-link__underline:hover::after {
  transform: scaleX(0);
  transform-origin: right;
}

/***************************

object/utility/_text.scss

***************************/
.c-txt {
  font-size: var(--f16);
  line-height: 2.25;
}
@media screen and (max-width: 450px) {
  .c-txt {
    font-size: 1.4rem;
    line-height: 2;
  }
}

.c-txt02 {
  font-size: var(--f16);
  line-height: 3.1;
}
@media screen and (max-width: 834px) {
  .c-txt02 {
    line-height: 2.5;
  }
}

.c-txt__undline {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

.c-bg__txt {
  width: fit-content;
  margin: 0 auto;
  padding: 0.3rem 0.5rem 0.5rem;
  border-radius: 0.3rem;
  -webkit-border-radius: 0.3rem;
}
.c-bg__txt.bg-gold {
  color: #fff;
}

.txt-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.txt-ellipsis02 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* ← 最大2行まで */
  max-height: 3em; /* 2行分の高さ */
  white-space: normal;
  text-overflow: ellipsis;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.fwb {
  font-weight: bold;
}

.fwn {
  font-weight: normal;
}

.fwm {
  font-weight: 500;
}

.f8 {
  font-size: 8px;
}

.f12 {
  font-size: var(--f12);
}

.f13 {
  font-size: var(--f13);
}

.f14 {
  font-size: var(--f14);
}

.f15 {
  font-size: var(--f15);
}

.f16 {
  font-size: var(--f16);
}

.f17 {
  font-size: var(--f17);
}

.f18 {
  font-size: var(--f18);
}

.f20 {
  font-size: 2rem;
}

.f21 {
  font-size: 2.1rem;
}
@media screen and (max-width: 450px) {
  .f21 {
    font-size: 4.7vw;
  }
}

.f22 {
  font-size: 2.2rem;
}

.f24 {
  font-size: 2.4rem;
}

.f25 {
  font-size: 2.5rem;
}

.f27 {
  font-size: 2.7rem;
}

.f28 {
  font-size: 2.8rem;
}
@media screen and (max-width: 450px) {
  .f28 {
    font-size: 6vw;
  }
}

.f31 {
  font-size: 3.1rem;
}

.f32 {
  font-size: 3.2rem;
}
@media screen and (max-width: 550px) {
  .f32 {
    font-size: 5.4vw;
  }
}

.f35 {
  font-size: 3.5rem;
}

.f40 {
  font-size: 4rem;
}
@media screen and (max-width: 600px) {
  .f40 {
    font-size: 6.6vw;
  }
}

.f45 {
  font-size: 4.5rem;
}
@media screen and (max-width: 500px) {
  .f45 {
    font-size: 9vw;
  }
}

.f48 {
  font-size: 4.8rem;
}
@media screen and (max-width: 500px) {
  .f48 {
    font-size: 7vw;
  }
}

.f50 {
  font-size: 5rem;
}

.f56 {
  font-size: 5.6rem;
}
@media screen and (max-width: 450px) {
  .f56 {
    font-size: 12vw;
  }
}

.f80 {
  font-size: 8rem;
}
@media screen and (max-width: 500px) {
  .f80 {
    font-size: 16vw;
  }
}

.f120 {
  font-size: 12rem;
}
@media screen and (max-width: 834px) {
  .f120 {
    font-size: 14.4vw;
  }
}

.fc-blue {
  color: #08a6e5;
}

.fc-light-blue {
  color: #6bb7d5;
}

.fc-wht {
  color: #fff;
}

.fc-gold {
  color: #80765a;
}

.lh-1_3 {
  line-height: 1.3;
}

.lh-1_4 {
  line-height: 1.4;
}

.lh-1_5 {
  line-height: 1.5;
}

.lh-1_6 {
  line-height: 1.6;
}

.lh-1_7 {
  line-height: 1.7;
}

.lh-1_8 {
  line-height: 1.8;
}

.lh-2 {
  line-height: 2;
}

.lh-2_2 {
  line-height: 2.2;
}

.lh-2_5 {
  line-height: 2.5;
}
@media screen and (max-width: 450px) {
  .lh-2_5 {
    line-height: 1.8;
  }
}

.lh-2_7 {
  line-height: 2.7;
}
@media screen and (max-width: 450px) {
  .lh-2_7 {
    line-height: 2;
  }
}

.bg-pink_txt {
  display: block;
  width: fit-content;
  padding: 1rem;
  color: #fff;
  background-color: #cd356f;
  border-radius: 5px;
  -webkit-border-radius: 5px;
}

.w-50em {
  display: inline-block;
  width: 0.5em;
}

.wm-rl {
  writing-mode: vertical-rl;
}

/***************************

object/utility/_font.scss

***************************/
.en {
  font-family: var(--en);
  letter-spacing: 0.1rem;
}