@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/***************************

foundation/base.scss

***************************/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

:root {
  --black: #151515;
  --white: #f6f8f9;
  --dfja: "Noto Sans JP", sans-serif;
  --0_1rem: calc(1rem / 16);
  --0_2rem: calc(2rem / 16);
  --0_5rem: calc(5rem / 16);
  --0_6rem: calc(6rem / 16);
  --0_7rem: calc(7rem / 16);
  --0_8rem: calc(8rem / 16);
  --1rem: calc(10rem / 16);
  --1_1rem: calc(11rem / 16);
  --1_2rem: calc(12rem / 16);
  --1_3rem: calc(13rem / 16);
  --1_5rem: calc(15rem / 16);
  --2rem: calc(20rem / 16);
  --2_1rem: calc(21rem / 16);
  --2_2rem: calc(22rem / 16);
  --2_3rem: calc(23rem / 16);
  --2_4rem: calc(24rem / 16);
  --2_5rem: calc(25rem / 16);
  --2_6rem: calc(26rem / 16);
  --2_8rem: calc(28rem / 16);
  --3rem: calc(30rem / 16);
  --3_3rem: calc(33rem / 16);
  --3_4rem: calc(34rem / 16);
  --3_5rem: calc(35rem / 16);
  --4rem: calc(40rem / 16);
  --4_3rem: calc(43rem / 16);
  --4_9rem: calc(49rem / 16);
  --5rem: calc(50rem / 16);
  --5_2rem: calc(52rem / 16);
  --5_5rem: calc(55rem / 16);
  --5_8rem: calc(58rem / 16);
  --6rem: calc(60rem / 16);
  --6_5rem: calc(65rem / 16);
  --7_3rem: calc(73rem / 16);
  --8rem: calc(80rem / 16);
  --7rem: calc(70rem / 16);
  --8rem: calc(80rem / 16);
  --9rem: calc(90rem / 16);
  --10rem: calc(100rem / 16);
  --10_1rem: calc(101rem / 16);
  --12rem: calc(120rem / 16);
  --13rem: calc(130rem / 16);
  --14rem: calc(140rem / 16);
  --14_6rem: calc(146rem / 16);
  --15rem: calc(150rem / 16);
  --19rem: calc(190rem / 16);
  --20rem: calc(200rem / 16);
  --25rem: calc(250rem / 16);
  --27_9rem: calc(279rem / 16);
  --f12: calc(12rem / 16);
  --f16: clamp(calc(14rem / 16), 2vw, calc(16rem / 16));
  --f17: clamp(calc(15rem / 16), 2vw, calc(17rem / 16));
  --f18: clamp(calc(16rem / 16), 2vw, calc(18rem / 16));
  --f21: clamp(calc(18rem / 16), 3vw, calc(21rem / 16));
  --f24: clamp(calc(18rem / 16), 3vw, calc(24rem / 16));
  --f26: clamp(calc(18rem / 16), 3vw, calc(26rem / 16));
  --f27: clamp(calc(18rem / 16), 3vw, calc(27rem / 16));
  --f28: clamp(calc(18rem / 16), 3vw, calc(28rem / 16));
  --f32: clamp(calc(22rem / 16), 3vw, calc(32rem / 16));
  --f36: clamp(calc(22rem / 16), 3vw, calc(36rem / 16));
  --f43: clamp(calc(24rem / 16), 3vw, calc(43rem / 16));
  --f54: clamp(calc(2.7rem / 16), 7vw, calc(54rem / 16));
  --fwel: 200;
  --fwl: 300;
  --fwn: 400;
  --fwm: 500;
  --fwsb: 600;
  --fwb: 700;
}

html {
  font-size: 100%;
  -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;
  scroll-behavior: smooth;
  color: var(--black);
  background-color: var(--white);
}

body {
  font-family: var(--dfja);
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1;
  width: 100%;
}

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;
}

/* PC/SP表示切り替え（834pxを境に） */
.is_pc {
  display: block !important;
}
.is_sp {
  display: none !important;
}
@media screen and (max-width: 834px) {
  .is_pc {
    display: none !important;
  }
  .is_sp {
    display: block !important;
  }
}

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,
i {
  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;
}

video {
  width: 100%;
}

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

layout/_header.scss

***************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: var(--3rem) var(--6rem) 0 var(--5rem);
  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: var(--3rem);
  z-index: 99;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease;
}
@media screen and (max-width: 834px) {
  .header {
    padding: var(--3rem) var(--3rem) 0 var(--4rem);
  }
}
@media screen and (max-width: 500px) {
  .header {
    padding: var(--1_5rem) var(--1_5rem) 0 var(--2rem);
  }
}
.header-logo {
  position: relative;
  z-index: 101;
}
@media screen and (max-width: 500px) {
  .header-logo {
    max-width: var(--15rem);
    width: 45%;
  }
}

.header .gnav {
  mix-blend-mode: difference;
  z-index: -1;
}
@media screen and (max-width: 834px) {
  .header .gnav {
    z-index: 100; /* ハンバーガーメニュー時は前面に */
  }
}

.gnav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: var(--4rem);

}
@media screen and (max-width: 1100px) {
  .gnav-list {
    gap: var(--2rem);
  }
}
@media screen and (max-width: 834px) {
  .gnav-list {
    max-width: var(--27_9rem);
    width: 90%;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: var(--4rem);
  }
}
@media screen and (max-width: 834px) and (max-width: 500px) {
  .gnav-list {
    max-width: var(--14rem);
    gap: var(--3rem);
  }
}
@media screen and (max-width: 834px) {
  .gnav-item:has(.--btn) {
    width: 100%;
  }
  .gnav-item:not(:has(.--btn)) {
    margin-bottom: var(--3rem);
  }
}
@media screen and (max-width: 834px) and (max-width: 500px) {
  .gnav-item:not(:has(.--btn)) {
    margin-bottom: var(--f1_5);
  }
}
.gnav-link {
  display: block;
  
}
.gnav-link.--btn {
  padding: 4px var(--3_3rem) var(--0_6rem);
  border: 1px solid #fff;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
@media screen and (max-width: 834px) {
  .gnav-link.--btn {
    padding: var(--2_2rem) var(--1rem);
    text-align: center;
  }
}
@media screen and (max-width: 500px) {
  .gnav-link.--btn {
    padding: var(--0_7rem) var(--0_5rem) var(--1_1rem);
  }
}
.gnav-link.--btn img {
  max-height: var(--1_1rem);
}
@media screen and (max-width: 834px) {
  .gnav-link.--btn img {
    max-height: var(--2_1rem);
  }
}
@media screen and (max-width: 500px) {
  .gnav-link.--btn img {
    max-height: var(--1_1rem);
  }
}
.gnav-link img {
  max-height: var(--1_2rem);
}
@media screen and (max-width: 834px) {
  .gnav-link img {
    max-height: var(--2_6rem);
  }
}
@media screen and (max-width: 500px) {
  .gnav-link img {
    max-height: var(--1_3rem);
  }
}
@media screen and (max-width: 834px) {
  .gnav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    opacity: 0;
    pointer-events: none;
    z-index: 100;
    transition: all 0.5s ease;
    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;
    background-color: rgba(59, 62, 66, 0.95);
  }
  .gnav.active {
    opacity: 1;
    pointer-events: all;
  }
}

.toggle {
  display: none;
}
@media screen and (max-width: 834px) {
  .toggle {
    position: relative;
    display: block;
    width: var(--14_6rem);
    height: var(--5rem);
    border: 1px solid #fff;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 100vmax;
    -webkit-border-radius: 100vmax;
    z-index: 101;
  }
  .toggle-bar {
    position: absolute;
    top: calc(50% - 1px);
    left: var(--3_4rem);
    width: var(--1_3rem);
    height: var(--0_2rem);
    background-color: #fff;
    z-index: 1;
  }
  .toggle-bar::before, .toggle-bar::after {
    position: absolute;
    content: "";
    left: 0;
    width: var(--1_3rem);
    height: var(--0_2rem);
    background-color: #fff;
    z-index: 1;
    transition: all 0.5s ease;
  }
  .toggle-bar::before {
    top: calc(50% - 1px - 5px);
  }
  .toggle-bar::after {
    top: calc(50% - 1px + 5px);
  }
  .toggle-title {
    position: absolute;
    content: url(../img/common/toggle-menu.png);
    max-width: var(--5_5rem);
    top: 50%;
    left: var(--5_5rem);
    transform: translateY(-50%);
    z-index: 1;
    transition: all 0.5s ease;
  }
}
.toggle.active {
  border-width: 0;
}
.toggle.active .toggle-bar {
  background-color: transparent;
}
.toggle.active .toggle-bar::before {
  -webkit-transform: translateY(5px) rotate(45deg);
  transform: translateY(5px) rotate(45deg);
}
.toggle.active .toggle-bar::after {
  -webkit-transform: translateY(-5px) rotate(-45deg);
  transform: translateY(-5px) rotate(-45deg);
}
.toggle.active .toggle-title {
  content: url(../img/common/toggle-close.png);
  max-width: var(--5_8rem);
}
@media screen and (max-width: 500px) {
  .toggle {
    width: var(--12rem);
    height: var(--4rem);
  }
  .toggle-bar {
    left: var(--2rem);
    width: var(--1_2rem);
  }
  .toggle-bar::before, .toggle-bar::after {
    width: var(--1_2rem);
  }
  .toggle-bar::before {
    top: calc(50% - 1px - 5px);
  }
  .toggle-bar::after {
    top: calc(50% - 1px + 5px);
  }
  .toggle-title {
    max-width: var(--5rem);
    left: var(--4rem);
    transform: translateY(-50%);
    z-index: 1;
    transition: all 0.5s ease;
  }
  .toggle.active .toggle-title {
    max-width: var(--5_2rem);
  }
}

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

layout/_footer.scss

***************************/
.footer {
  position: relative;
  z-index: 1;
  padding: var(--10rem) 5% var(--2rem);
  text-align: center;
  background-color: #35383d;
  border-top: 1px solid #6d7075;
}
@media screen and (max-width: 834px) {
  .footer {
    padding-top: var(--8rem);
    padding-bottom: var(--5rem);
  }
}
@media screen and (max-width: 450px) {
  .footer {
    padding-top: var(--5rem);
  }
}

.copy {
  margin-top: var(--8rem);
  display: block;
}
@media screen and (max-width: 834px) {
  .copy {
    margin-top: var(--3rem);
  }
}

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

object/object/project/_mv.scss

***************************/
.fv {
  position: relative;
  width: 100%;
  height: 100svh;

}

@media screen and (max-width: 450px) {
  .fv {
    height: 65lvh;
    aspect-ratio: 1/1.2;
  }
}
.fv .fv-img {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 90lvh;
  top: 0;
  left: 0;
  opacity: 0;
  filter: brightness(0.2);
  transition: opacity 1s ease, filter 1s ease;
}

.fv .fv-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 15%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
  pointer-events: none;
  z-index: 3;
}
@media screen and (max-width: 450px) {
  .fv .fv-img {
    position: relative;
    aspect-ratio: 1/1.3;
    height: 85%;
  }
}

@media screen and (max-width: 834px) {
  .fv .fv-img::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: 0;
    width: 100%;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    pointer-events: none;
    z-index: 3;
  }
}

.fv .fv-img.is-blur {
  filter: blur(4px);
}
.fv .fv-img__open,
.fv .fv-img__close {
  position: absolute;
  width: 100%;
  height: 120%;
  top: 0;
  left: 0;
  z-index: 2;
  opacity: 1;
  transition: opacity 1s ease;
}
.fv .fv-img img {
  width: 100%;
  height: 120%;

  object-fit: cover;
  object-position: center;
}
.fv-catch {
  position: absolute;
  z-index: 3;
  bottom: var(--4rem);
  left: var(--5rem);
  z-index: 2;
  color: #fff;
  opacity: 0;
  transition: opacity 0.8s ease;
}


@media screen and (max-width: 1100px) {
  .fv-catch {
    bottom: var(--2rem);
    left: var(--3rem);
  }
}
@media screen and (max-width: 834px) {
  .fv-catch {
    bottom: var(--4rem);
    left: var(--5rem);
  }

  .fv-catch__en{
    width: 180px;
  }
}
@media screen and (max-width: 600px) {
  .fv-catch {
    bottom: var(--2rem);
    left: var(--3rem);
  }
}
.fv-catch__big {
  margin: var(--2rem) 0;
  font-size: var(--f43);
  font-weight: var(--fwl);
  letter-spacing: 6px;
}
@media screen and (max-width: 834px) {
  .fv-catch__big {
    margin: var(--1rem) 0;
    line-height: 1.2;
    font-size: var(--f54);
    letter-spacing: var(--1rem);
  }
  .fv-catch__big span {
    display: inline-block;
    width: 0.5em;
    margin-left: -0.5em;
  }
}
@media screen and (max-width: 450px) {
  .fv-catch__big {
    letter-spacing: 3vw;
  }
}
.fv-catch__sml {
  font-size: var(--f17);
  font-weight: var(--fwl);
}
@media screen and (max-width: 834px) {
  .fv-catch__sml {
    font-size: 2.9vw;
  }
}
.fv-scroll {
  position: absolute;
  z-index: 3;
  bottom: var(--3rem);
  right: var(--5rem);
  z-index: 2;
  padding-bottom: var(--6rem);
  opacity: 0;
  transition: opacity 0.8s ease;
  mix-blend-mode: difference;
}

@media screen and (max-width: 834px) {
  .fv-scroll {
    mix-blend-mode: normal;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
  }
}


@media screen and (max-width: 1100px) {
  .fv-scroll {
    bottom: var(--2rem);
    right: var(--3rem);
  }
}
@media screen and (max-width: 450px) {
  .fv-scroll {
    right: var(--1rem);
  }
}
.fv-scroll::before {
  position: absolute;
  content: "";
  width: 1px;
  height: var(--4_9rem);
  bottom: 0;
  left: calc(36% - 0.5px);
  z-index: 2;
  background-color: #d2d4d6;
  animation: scroll 1.5s infinite;
}

@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
/***************************

object/object/project/_philo.scss

***************************/
@media screen and (max-width: 450px) {
  .philo .inner {
    opacity: 0;
    transition: opacity 0.6s ease;
  }
}
.philo-flex {
  padding: 16rem 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: var(--3rem);
}
@media screen and (max-width: 1100px) {
  .philo-flex {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 834px) {
  .philo-flex {
    padding: 3rem 0;
    gap: var(--2rem);
  }
}
.philo-lft {
  max-width: 36.6875rem;
}
@media screen and (max-width: 1100px) {
  .philo-lft {
    max-width: 100%;
    width: 100%;
  }
}
.philo-hg__ttl {
  font-size: var(--f36);
  font-weight: var(--fwl);
  line-height: 2;
  margin-top: 0.5rem;
}
.philo-video01 {
  margin-top: 16.5rem;
}
@media screen and (max-width: 1100px) {
  .philo-video01 {
    margin: var(--3rem) auto 0;
    max-width: 36.6875rem;
    display: block;
  }
}
@media screen and (max-width: 834px) {
  .philo-video01 {
    margin-top: var(--2rem);
  }
}
.philo-rht {
  max-width: 45rem;
  min-width: 38.0625rem;
}
@media screen and (max-width: 1100px) {
  .philo-rht {
    max-width: 100%;
    width: 100%;
    min-width: fit-content;
  }
}
.philo-txt {
  font-size: var(--f18);
  line-height: 3;
  font-weight: var(--fwl);
}

@media screen and (max-width: 450px) {
  .philo-txt  {
    font-size: var(--f16);
  }
}

@media screen and (max-width: 450px) {
  .philo-txt br {
    display: none;
  }
}
.philo-txt + .philo-txt {
  margin-top: var(--4rem);
}
@media screen and (max-width: 834px) {
  .philo-txt + .philo-txt {
    margin-top: var(--2rem);
  }
}
.philo-video02 {
  margin: var(--8rem) 0 0 auto;
  width: 15.375rem;
  aspect-ratio: 247/298;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .philo-video02 {
    margin-top: var(--4rem);
    width: 10.3rem;
  }
}
.philo-video02 video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

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

object/object/project/_arrange.scss

***************************/
.arrange {
  position: relative;
  --arrange-reveal: 0.25;
  --arrange-p1: 1;
  --arrange-p2: 0;
  --arrange-p3: 0;
  --arrange-p4: 0;
}
.arrange::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #f6f8f9;
}
.arrange-flex {
  padding: var(--25rem) 0 0;
  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: var(--3rem);
}
@media screen and (min-width: 835px) {
  .arrange-flex {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 834px) {
  .arrange-flex {
    padding: var(--8rem) 0 0;
    margin-bottom: -18vh;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .arrange-list-wrap {
    min-height: 500vh;
    width: 100%;
    position: relative;
    z-index: 2;
  }
  .arrange-list {
    top: 0;
    height: 80vh;
  }
}
@media screen and (min-width: 835px) {
  .arrange-cont {
    position: sticky;
    top: 5.625rem;
    min-width: 28.5rem;
    transition: opacity 0.5s ease;
  }
}
@media screen and (max-width: 834px) {
  .arrange-cont {
    margin: 0 auto;
    width: 90%;
    transition: opacity 0.5s ease;
  }
}
.arrange.is-arrange-complete .arrange-cont {
  opacity: 0;
  pointer-events: none;
}
.arrange-list-wrap {
  min-height: 550vh;
  position: relative;
  flex: 1;
  min-width: 0;
}
.arrange-list {
  max-width: 78.75rem;
  width: 100%;
  position: sticky;
  top: 5.65rem;
  height: 100vh;
  overflow: hidden;
}
.arrange-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 80%;
  z-index: 1;
  overflow: hidden;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: 0 0;
  mask-position: 0 0;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.arrange-item:nth-child(1) {
  z-index: 1;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent calc((1 - var(--arrange-p1, 1)) * 100%), black calc((1 - var(--arrange-p1, 1)) * 100%), black 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, transparent calc((1 - var(--arrange-p1, 1)) * 100%), black calc((1 - var(--arrange-p1, 1)) * 100%), black 100%);
}
.arrange-item:nth-child(2) {
  z-index: 2;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent calc((1 - var(--arrange-p2, 0)) * 100%), black calc((1 - var(--arrange-p2, 0)) * 100%), black 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, transparent calc((1 - var(--arrange-p2, 0)) * 100%), black calc((1 - var(--arrange-p2, 0)) * 100%), black 100%);
}
.arrange-item:nth-child(3) {
  z-index: 3;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent calc((1 - var(--arrange-p3, 0)) * 100%), black calc((1 - var(--arrange-p3, 0)) * 100%), black 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, transparent calc((1 - var(--arrange-p3, 0)) * 100%), black calc((1 - var(--arrange-p3, 0)) * 100%), black 100%);
}
.arrange-item:nth-child(4) {
  z-index: 4;
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent calc((1 - var(--arrange-p4, 0)) * 100%), black calc((1 - var(--arrange-p4, 0)) * 100%), black 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, transparent calc((1 - var(--arrange-p4, 0)) * 100%), black calc((1 - var(--arrange-p4, 0)) * 100%), black 100%);
}
.arrange-item figure {
  height: 100%;
  position: relative;
}

@media screen and (max-width: 834px) {
  .arrange-item {
    height: 70%;
  }
}

.arrange-item .img,
.arrange-item .img img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.arrange-item img {
  border-radius: 0 4px 4px 0;
  -webkit-border-radius: 0 4px 4px 0;
}
.arrange-cap {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.arrange-cap .arrange-num,
.arrange-cap .arrange-door {
  pointer-events: auto;
}
.arrange-num {
  position: absolute;
  top: var(--4rem);
  right: var(--4rem);
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .arrange-num {
    top: var(--2rem);
    right: var(--2rem);
  }
}
.arrange-door {
  position: absolute;
  bottom: var(--3rem);
  right: var(--3_5rem);
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .arrange-door {
    bottom: var(--2rem);
    right: var(--2rem);
  }
  .arrange-door img {
    width: auto;
    height: var(--3rem);
  }
}
@media screen and (max-width: 450px) {
  .arrange-door img {
    height: var(--2rem);
  }
}

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

object/object/project/_variation.scss

***************************/
.variation {
  position: relative;
}
.variation::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #e1e7ed;
}
.variation .inner {
  padding: var(--20rem) 0;
  min-width: 1260px;
}
@media screen and (max-width: 834px) {
  .variation .inner {
    padding: var(--8rem) 0;
    min-width: auto;
  }
}
.variation .c-hg__ttl,
.variation .c-txt {
  color: #5c6977;
}
.variation-list {
  margin-top: var(--8rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--4rem);
}
@media screen and (max-width: 1100px) {
  .variation-list {
    gap: var(--2rem);
  }
}
@media screen and (max-width: 834px) {
  .variation-list {
    margin-top: var(--3rem);
    grid-template-columns: repeat(1, 1fr);
    gap: var(--4rem);
  }
}
.variation-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: var(--0_8rem);
  min-width: 360px;
}
@media screen and (max-width: 834px) {
  .variation-item {
    gap: var(--0_5rem);
    min-width: auto;
  }
}


.variation-cont {
  width: 100%;
}
.variation-ttl01 {
  min-width: var(--2rem);
}
.variation-img {
  padding: 7% 26%;
  aspect-ratio: 422/581;
  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;
  background-color: #fff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
}







.variation-ttl02 {
  margin-top: var(--4rem);
  font-size: var(--f24);
  font-weight: var(--fwn);
  color: #5c6977;
}
@media screen and (max-width: 834px) {
  .variation-ttl02 {
    margin-top: var(--2rem);
  }
}
.variation-spec {
  margin-top: var(--4rem);
  margin-bottom: var(--3rem);
}
@media screen and (max-width: 834px) {
  .variation-spec {
    margin: var(--2rem) 0;
  }
}
.variation-spec__item {
  position: relative;
  padding-left: var(--2rem);
  font-size: var(--f16);
  font-weight: var(--fwl);
  line-height: 1.75;
  color: #5c6977;
}
.variation-spec__item::before {
  position: absolute;
  content: "";
  width: 3px;
  aspect-ratio: 1;
  top: 0.8em;
  left: var(--0_5rem);
  z-index: 1;
  background-color: #677380;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
.variation-price {
  margin-top: var(--2rem);
  font-size: var(--2rem);
  font-weight: var(--fwl);
  color: #5c6977;
}
@media screen and (max-width: 834px) {
  .variation-price {
    margin-top: var(--1rem);
  }
}
.variation-price span {
  font-size: 0.8em;
}
.variation-side {
  margin-top: var(--12rem);
  padding: var(--6rem) 6% var(--3rem);
  background-color: #c3d1e0;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: var(--6rem);
}
@media screen and (max-width: 834px) {
  .variation-side {
    margin-top: var(--5rem);
    padding: var(--3rem) 12%;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: var(--3rem);
  }
}
@media screen and (max-width: 450px) {
  .variation-side {
    margin-top: var(--3rem);
  }
}
.variation-side .c-txt {
  color: #3b434b;
}
.variation-side__img {
  width: 40%;
}
@media screen and (max-width: 834px) {
  .variation-side__img {
    width: 100%;
  }
}
.variation-hg {
  margin-bottom: var(--6rem);
}
@media screen and (max-width: 834px) {
  .variation-hg {
    margin-bottom: var(--2rem);
  }
}
.variation-hg__big {
  margin: var(--3_5rem) 0 var(--1_5rem);
}
@media screen and (max-width: 834px) {
  .variation-hg__big {
    margin: var(--1_5rem) 0;
    max-width: 90%;
  }
}
@media screen and (max-width: 450px) {
  .variation-hg__big img {
    width: auto;
    max-height: var(--4rem);
  }
}
.variation-hg__ja {
  font-size: var(--f26);
  color: #fff;
}
.variation-att {
  margin-top: var(--1rem);
  font-size: var(--f12);
  font-weight: var(--fwl);
  line-height: 1.3;
}

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

object/object/project/_feature.scss

***************************/
.feature .inner {
  padding: var(--20rem) 0;
  min-width: 1260px;
}
@media screen and (max-width: 834px) {
  .feature .inner {
    padding: var(--9rem) 0 var(--1rem) ;
    min-width: auto;
  }
}
.feature-list {
  margin-top: 6.25rem;
}
@media screen and (max-width: 834px) {
  .feature-list {
    margin-top: var(--6rem);
  }
}
.feature-item {
  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;
  margin-bottom: var(--8rem);
}
@media screen and (max-width: 834px) {
  .feature-item {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: var(--3rem);
  }
}
@media screen and (max-width: 450px) {
  .feature-item {
    gap: var(--2rem);
  }
}
.feature-item:not(:first-of-type) {
  margin-top: 13.5625rem;
}
@media screen and (max-width: 1100px) {
  .feature-item:not(:first-of-type) {
    margin-top: var(--10rem);
  }
}
@media screen and (max-width: 834px) {
  .feature-item:not(:first-of-type) {
    margin-top: var(--5rem);
  }
}
@media screen and (max-width: 450px) {
  .feature-item:not(:first-of-type) {
    margin-top: var(--3rem);
  }
}
@media screen and (min-width: 835px) {
  .feature-item:nth-of-type(odd) {
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  .feature-item:nth-of-type(odd) .feature-hg,
  .feature-item:nth-of-type(odd) .c-txt {
    padding-left: 7%;
  }
  .feature-item:nth-of-type(odd) .feature-img {
    width: fit-content;
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (min-width: 835px) {
  .feature-item:nth-of-type(even) .feature-hg,
  .feature-item:nth-of-type(even) .c-txt {
    padding-right: 7%;
  }
}
.feature-cont {
  max-width: 38.125rem;
  padding-top: var(--2rem);
}
@media screen and (max-width: 834px) {
  .feature-cont {
    max-width: 100%;
    padding-top: 0;
  }
}
.feature-hg {
  margin-bottom: var(--3rem);
  padding-bottom: var(--1_3rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 834px) {
  .feature-hg {
    margin-bottom: var(--2rem);
    padding-bottom: var(--1rem);
  }
}
@media screen and (max-width: 834px) {
  .feature-hg {
    margin-bottom: var(--1rem);
  }
}
.feature-hg__ttl {
  margin-top: var(--2rem);
  font-size: var(--f32);
  font-weight: var(--fwl);
  line-height: 1.3;
}
@media screen and (max-width: 834px) {
  .feature-hg__ttl {
    margin-top: var(--1rem);
  }
}
.feature-video {
  max-width: 51.8125rem;
  width: 58%;
  border-radius: var(--0_6rem);
  -webkit-border-radius: var(--0_6rem);
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .feature-video {
    width: 100%;
  }
}
.feature-img {
  margin-top: var(--4rem);
}
@media screen and (max-width: 834px) {
  .feature-img {
    display: none;
  }
}

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

object/object/project/_spec.scss

***************************/
.spec {
  position: relative;
}
.spec:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #f6f8f9;
}
.spec-flex {
  padding: var(--20rem) 0 var(--19rem);
  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: var(--3rem);
}
@media screen and (max-width: 834px) {
  .spec-flex {
    padding: var(--8rem) 0;
    gap: var(--2rem);
  }
}
@media screen and (max-width: 834px) {
  .spec-hg .c-hg__en img {
    width: var(--3rem);
    max-height: 9rem!important;
    width: 100%!important;
  }
}
@media screen and (max-width: 450px) {
  .spec-hg .c-hg__en {
    min-width: 1.5rem!important;
  }
}
.spec-ttl {
  margin: 3.5rem auto 0;
  font-size: var(--f18);
  font-weight: var(--fwl);
  writing-mode: vertical-rl;
}
@media screen and (max-width: 834px) {
  .spec-ttl {
    margin-top: var(--2rem);
  }
}
.spec-cont {
  max-width: 82.3125rem;
  width: 93%;
}
.spec-scroll {
  position: relative;
  overflow: auto;
}
.spec-tb {
  min-width: 52.4375rem;
  width: 100%;
  
  font-weight: var(--fwl);
  line-height: 1.375;

  @media screen and (max-width: 834px) {
    font-size: var(--f12);
  }
}
.spec-tb__cap {
  margin-top: var(--2rem);
  font-size: var(--f12);
  font-weight: var(--fwl);
  line-height: 1.83;
  text-align: left;
  caption-side: bottom;
}
.spec-tb__th01 {
  padding: var(--4rem) var(--1rem);
  background-color: #e4ebf2;
  border: 1px solid #cfd3d6;
}
@media screen and (max-width: 834px) {
  .spec-tb__th01 {
    padding: var(--2rem) var(--1rem);
  }
}
.spec-tb__th02 {
  padding: var(--1rem) var(--3rem);
  background-color: #ebeff3;
  border: 1px solid #cfd3d6;
  font-weight: var(--fwl);
}
@media screen and (max-width: 834px) {
  .spec-tb__th02 {
    padding: var(--1rem) var(--2rem);
  }
}
.spec-tb__td01 {
  padding: var(--4rem) var(--1rem);
  text-align: center;
  background-color: rgba(235, 239, 243, 0.25);
  border: 1px solid #cfd3d6;
}
@media screen and (max-width: 834px) {
  .spec-tb__td01 {
    padding: var(--2rem) var(--1rem);
  }
}
.spec-tb__td02 {
  padding: var(--4rem) var(--1rem);
  text-align: center;
  background-color: #f6f8f9;
  border: 1px solid #cfd3d6;
}
@media screen and (max-width: 834px) {
  .spec-tb__td02 {
    padding: var(--2rem) var(--1rem);
  }
}

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

object/object/project/_room.scss

***************************/
.room {
  position: relative;
  color: #fff;
  padding-bottom: 3rem;
}

@media screen and (max-width: 834px) {
  .room {
    padding-top: 4rem;
  }
}

@media screen and (max-width: 450px) {
  .room {
    padding-top: 2rem;
  }
}
.room::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #484c52;
}
.room .c-hg__ttl {
  font-size: var(--f36);
  line-height: 1.5;
}
.room-flex {
  padding: var(--19rem) 0 var(--12rem);
  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: var(--3rem);
}
@media screen and (max-width: 1100px) {
  .room-flex {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 834px) {
  .room-flex {
    position: relative;
    padding: var(--5rem) 0;
    gap: var(--2rem);
  }
}
.room-cont {
  max-width: 40.3125rem;
  width: 50%;
  min-width: 40.3125rem;
}
@media screen and (max-width: 1100px) {
  .room-cont {
    max-width: 100%;
    width: 100%;
    min-width: 100%;
  }
}
.room-area {
  margin-top: var(--20rem);
}
@media screen and (max-width: 1100px) {
  .room-area {
    margin-top: var(--3rem);
  }
}
.room-link {
  position: relative;
  padding: var(--4rem) var(--1rem) var(--4rem) var(--2_5rem);
  border-top: 1px solid #6d7075;
  transition: max-height 0.5s ease;
}

@media screen and (max-width: 834px) {
  .room-link {
    padding: var(--4rem) var(--10rem) var(--5rem) var(--1rem);
  }
}
@media screen and (max-width: 500px) {
  .room-link {
    padding-right: var(--2rem);
  }
}
.room-link:last-of-type {
  border-bottom: 1px solid #6d7075;
}
.room-link.is-auto {
  max-height: 15rem;
  opacity: 1;
}

@media screen and (max-width: 500px) {
  .room-link.is-auto {
    max-height: none;
  }
}

.room-link.is-fixed {
  max-height: 7.1875rem;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .room-link.is-fixed {
    max-height: 4.375rem;
  }
}
.room-link.is-fixed .c-txt, .room-link.is-fixed .room-arw, .room-link.is-fixed .room-dl {
  opacity: 0;
}
@media screen and (max-width: 500px) {
  .room-link.--osaka {
    /*margin-top: 106vw;
    padding-bottom: 70vw;*/
  }
  .room-link.--osaka .room-arw {
    top: 24%;
  }
}
@media screen and (max-width: 500px) {
  .room-link.--osaka .room-arw {
    top: 0;
  }
}
.room-link .c-txt {
  margin-top: var(--2rem);
  transition: all 0.5s ease;
}
.room-link:hover {
  opacity: 1;
}

.room-link:hover .room-arw {
  background-color: rgb(158, 158, 158);
  border-radius: 9999px;
}
@media screen and (max-width: 500px) {
  .room-link:hover .room-arw {
    transform: translateY(-50%) scale(1.1);
  }
}



@media screen and (min-width: 501px) {
  .room-link .room-img {
    display: none;
  }
}


@media screen and (max-width: 500px) {
  .room-link .room-img {
    display: block;
  }
}

.room-ttl {
  font-size: var(--f28);
  font-weight: var(--fwl);
}
.room-dl {
  margin-top: var(--0_5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: var(--1rem);
  transition: all 0.5s ease;
}
@media screen and (max-width: 834px) {
  .room-dl {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: var(--0_5rem) var(--1rem);
  }
}
.room-dt {
  padding: 3px var(--0_6rem) 5px;
  color: #484c52;
  font-size: var(--f16);
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  -webkit-border-radius: 2px;
}
.room-dd {
  font-size: var(--f16);
  font-weight: var(--fwl);
}
.room-arw {
  position: absolute;
  top: 50%;
  right: var(--2rem);
  transform: translateY(-50%);
  z-index: 1;
  transition: all 0.5s ease;
}
@media screen and (max-width: 834px) {
  .room-arw {
    width: var(--8rem);
    right: var(--1rem);
  }
}

@media screen and (max-width: 500px) {
  .room-arw {
    width: var(--7rem);
    top: 11%!important;
  }
}


@media screen and (min-width: 501px) {

.room-img__box {
  max-width: 44.9375rem;
  display: block;
  min-width: 600px;
  right: 0;
        position: relative;
}
}

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

.room-img {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(-50%);
  transition: all 0.5s ease;
}


.room-img img{
  max-width: none;
}

@media screen and (max-width: 500px) {
  .room-img img{
    max-width: 100%;
  }
}


@media screen and (max-width: 500px) {
  .room-img {
    position: inherit;
    opacity: 1;
    margin-top: 1rem;
  }
}
.room-img.is-change {
  opacity: 1;
}
@media screen and (max-width: 1100px) {
  .room-img {
    top: auto;
    transform: translateY(0);
  }
}
@media screen and (max-width: 500px) {
  .room-img.--tokyo {
    /*top: 25.3125rem;*/
  }
  .room-img.--osaka {
    display: block;
    /*bottom: 0.9375rem;*/
  }
}
@media screen and (max-width: 450px) {
  .room-img.--tokyo {
    /*top: 24.375rem;*/
  }
  .room-img.--osaka {
    display: block;
    /*bottom: 0.9375rem;*/
  }
}
@media screen and (max-width: 500px) {
  .room-img.--tokyo {
    /*top: 25.1875rem;*/
  }
}

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

object/object/project/_member.scss

***************************/
.member {
  position: relative;
  color: #fff;
  border-top: 1px solid #6d7075;
}

@media screen and (max-width: 450px) {
  .member {
    border-top: 1px solid #6d7075;
  }
}

.member::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #484c52;
}
.member-flex {
  padding: var(--9rem) 0 var(--12rem);
  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: var(--3rem);
}
@media screen and (max-width: 1100px) {
  .member-flex {
    -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: 0;
  }
}
@media screen and (max-width: 834px) {
  .member-flex {
    padding: var(--7rem) 0;
  }
}

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

object/component/_heading.scss

***************************/
.c-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: var(--6_5rem);
}
@media screen and (max-width: 834px) {
  .c-head {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: var(--2rem);
  }
}
.c-head .c-hg__ttl {
  margin-top: 0;
  margin-bottom: var(--3rem);
}
@media screen and (max-width: 834px) {
  .c-head .c-hg__ttl {
    margin-bottom: var(--1_5rem);
  }
}

.c-hg {
  margin-bottom: var(--3rem);
}
@media screen and (max-width: 834px) {
  .c-hg {
    margin-bottom: var(--2rem);
  }
}
.c-hg__ttl {
  margin-top: var(--3rem);
  font-size: var(--f27);
  font-weight: var(--fwl);
}
@media screen and (max-width: 834px) {
  .c-hg__ttl {
    margin-top: var(--1_5rem);
  }
}
@media screen and (max-width: 450px) {
  .c-hg__ttl {
    line-height: 1.3;
  }
}
@media screen and (max-width: 450px) {
  .c-hg__en {
    width: 80%;
  }
  .c-hg__en img {
    width: auto;
    max-height: var(--3rem);
  }
}
.c-hg__txt {
  margin-top: var(--3rem);
  font-size: var(--f16);
  font-weight: var(--fwl);
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .c-hg__txt {
    margin-top: var(--2rem);
  }
}

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

object/component/_box.scss

***************************/
.loading {
  position: fixed;
  inset: 0;
  background: #333;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
@media screen and (max-width: 450px) {
  .loading {
    width: 100%;
    height: 100vh;
    z-index: 3;
  }
}

body.is-start .header {
  transform: translateY(0);
  opacity: 1;
  mix-blend-mode: difference;
}
body.is-start.is-header-over-fv .header {
  mix-blend-mode: normal;
}
body.is-gnav-open .header {
  mix-blend-mode: normal;
}

/* .header内の.gnavは例外で常にmix-blend-mode: difference */
.header .gnav {
  mix-blend-mode: difference;
}

body.is-img-show .fv-img {
  opacity: 1;
  filter: brightness(1);
}
body.is-close-hide .fv-img__close {
  opacity: 0;
  pointer-events: none;
}
body.is-text-show .fv-catch, body.is-text-show .fv-scroll {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 450px) {
  body.is-philo-show .philo .inner {
    opacity: 1;
  }
}
body .fv-scroll {
  transition-delay: 0.25s;
}
body.is-loading-hide .loading {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.c-sec {
  display: block;
}

.c-sec__opacity {
  position: relative;
  color: #fff;
}
.c-sec__opacity::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(53, 56, 61, 0.85);
}
@media screen and (max-width: 450px) {
  .c-sec__opacity::before {
    background-color: #35383d;
  }
}

.inner {
  max-width: 90rem;
  width: 85%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.inner.--l {
  max-width: 122.1875rem;
  width: 95%;
  margin-left: 0;
  margin-right: auto;
}

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

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

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

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

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

fade

////////////////////////*/
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.anime-fade {
  opacity: 0;
}
.anime-fade.start {
  opacity: 1;
  animation: anime-fade 1s ease;
}

@keyframes anime-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.philo-fade {
  opacity: 0;
}
@media screen and (max-width: 450px) {
  .philo-fade {
    opacity: 1;
  }
}
.philo-fade.start {
  opacity: 1;
  animation: anime-fade 0.5s ease;
}
@media screen and (max-width: 450px) {
  .philo-fade.start {
    animation: none;
  }
}

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

object/component/_button.scss

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

object/utility/_background.scss

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

object/utility/_link.scss

***************************/
.c-link {
  margin-top: var(--2rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: var(--2rem);
  font-size: var(--f17);
  font-weight: var(--fwl);
}
@media screen and (max-width: 450px) {
  .c-link {
    gap: var(--1rem);
  }
}
.c-link:hover {
  opacity: 1;
}
.c-link:hover .c-link__arw {
  transform: scale(1.1);
}
.c-link:hover .c-link__arw img {
  transform: scale(0.9);
}
.c-link__arw {
  width: var(--7rem);
  aspect-ratio: 1;
  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;
  border: 1px solid #fff;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  transition: all 0.5s ease;
}
@media screen and (max-width: 450px) {
  .c-link__arw {
    width: var(--5rem);
  }
}
.c-link__arw img {
  transition: all 0.5s ease;
}

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

object/utility/_text.scss

***************************/
.c-txt {
  font-size: var(--f16);
  font-weight: var(--fwl);
  line-height: 2;
}

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

object/utility/_font.scss

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