/* Normalize */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden] {
  display: none;
}
html {
  font-family: sans-serif;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  line-break: strict;
  -webkit-line-break: strict;
  word-break: break-strict;
  -webkit-word-break: break-strict;
}
a:focus {
  outline: thin dotted;
}
a:active,
a:hover {
  outline-width: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b {
  font-weight: 700;
}
strong {
  font-weight: 400;
}
dfn {
  font-style: italic;
}
mark {
  background: #ff0;
  color: #000;
}
a {
  text-decoration: none;
}
ol,
ul {
  list-style: none;
}
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}
pre {
  white-space: pre;
  white-space: pre-wrap;
  word-wrap: break-word;
}
q {
  quotes: "“" "”" "‘" "’";
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  vertical-align: middle;
  border: 0;
  max-width: 100%;
  height: auto;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button,
input {
  line-height: normal;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  appearance: button;
  cursor: pointer;
}
button[disabled],
input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
*:focus {
  outline: none;
}
/* Animation */
@keyframes fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes sound_bar_animation {
  0% {
    transform: scaleY(0.5);
  }
  25% {
    transform: scaleY(1);
  }
  50% {
    transform: scaleY(0.2);
  }
  75% {
    transform: scaleY(0.8);
  }
  100% {
    transform: scaleY(0.5);
  }
}
@keyframes scroll_arrow_animation {
  0% {
    top: -100%;
    opacity: 0;
  }
  5% {
    top: -100%;
    opacity: 1;
  }
  50% {
    top: 0;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
/* Base */
:root {
  --black: #212121;
  --offWhite: #fcfcfc;
  --white: #ffffff;
  --gray: #d0d0e0;
  --headerHeight: 50px;
  --commonSidePadding: 6%;
  --commonCornerMargin: 32px;
  --contentsWidth: 950px;
  --bgBlack: rgba(0, 0, 0, 0.4);
  --resizingMatrixScale: 1;
  --resizingMargin: 0;
  --resizingRadius: 0;
  --bodyTopIsModalRunning: 0;
}
body {
  --dynamicColor: var(--black);
  font-family: YuMincho, "Yu Mincho", serif;
  line-height: 1;
  color: var(--black);
  letter-spacing: 0;
  position: relative;
  overscroll-behavior: none;
  overflow-x: hidden;
  overflow-y: hidden;
}
body.pace-done.sound-done {
  overflow-y: scroll;
}
body[data-color="white"] {
  --dynamicColor: var(--white);
}
@media (orientation: landscape) {
  body {
    padding-right: env(safe-area-inset-right);
    padding-left: env(safe-area-inset-left);
  }
}
a,
a:link,
a:visited,
a:focus {
  text-decoration: none;
  color: inherit;
}
button {
  background: none;
  border: none;
  -webkit-tap-highlight-color: transparent;
}
h2 {
  text-align: center;
  font-size: 21px;
  font-weight: 600;
}
.ff-prata {
  font-family: "Prata", serif;
}
.ff-hirakaku {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ",
    Meiryo, "MS Ｐゴシック", sans-serif;
}
.pc {
  display: none;
}
.wrapper {
  width: 100%;
  position: relative;
  opacity: 0;
  pointer-events: none;
  margin-top: calc(var(--vh, 1vh) * 100);
  will-change: margin;
}
.resize-done .wrapper {
  opacity: 1;
  pointer-events: auto;
  margin-top: 0;
}
.contents {
  width: min(100%, var(--contentsWidth));
  margin-inline: auto;
}
/* Header */
.header {
  display: none;
  position: fixed;
  z-index: 9990;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--headerHeight);
  opacity: 0;
  pointer-events: none;
  padding: 0 var(--commonSidePadding);
  align-items: center;
  transition: opacity 0.2s linear;
}
.pace-done.sound-done .header {
  display: flex;
}
.resize-done .header {
  opacity: 1;
  pointer-events: auto;
}
.header__title {
  font-size: 10px;
  margin-right: auto;
  color: var(--dynamicColor);
}
/* Sound Player */
.sound-player {
  display: none;
  position: fixed;
  bottom: 18px;
  right: var(--commonSidePadding);
  z-index: 9990;
  opacity: 0;
  pointer-events: none;
  align-items: center;
  transition: opacity 0.2s linear;
}
.pace-done.sound-done .sound-player {
  display: flex;
}
.resize-done .sound-player {
  opacity: 1;
  pointer-events: auto;
}
.sound-player__list {
  display: flex;
  height: 14px;
}
.sound-player__list li {
  display: flex;
  align-items: center;
  height: 100%;
}
.sound-player__list li + li::before {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  margin-inline: 14px;
  background: var(--dynamicColor);
}
.sound-player__button {
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--dynamicColor);
}
.sound-player__animation {
  display: flex;
  width: 12px;
  height: 10px;
  margin-left: 14px;
  justify-content: space-between;
}
.highlight .sound-player__animation {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  width: 17px;
  height: 14px;
  color: var(--white);
}
.sound-player__animation-bar {
  display: block;
  height: 100%;
  width: 1px;
  transform-origin: center bottom;
  transform: scaleY(0.4);
  background: var(--dynamicColor);
}
.highlight .sound-player__animation-bar {
  right: 10px;
  bottom: 10px;
  width: 2.5px;
  background: var(--white);
}
[data-sound="on"] .sound-player__animation-bar,
.highlight .sound-player__animation-bar {
  -webkit-animation: sound_bar_animation infinite;
  animation: sound_bar_animation infinite;
}
[data-sound="on"] .sound-player__animation-bar:nth-child(1),
.highlight .sound-player__animation-bar:nth-child(1) {
  -webkit-animation-delay: -0.85s;
  animation-delay: -0.85s;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}
[data-sound="on"] .sound-player__animation-bar:nth-child(2),
.highlight .sound-player__animation-bar:nth-child(2) {
  -webkit-animation-delay: -0.17s;
  animation-delay: -0.17s;
  -webkit-animation-duration: 0.85s;
  animation-duration: 0.85s;
}
[data-sound="on"] .sound-player__animation-bar:nth-child(3),
.highlight .sound-player__animation-bar:nth-child(3) {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
  -webkit-animation-duration: 0.99s;
  animation-duration: 0.99s;
}
[data-sound="on"] .sound-player__animation-bar:nth-child(4),
.highlight .sound-player__animation-bar:nth-child(4) {
  -webkit-animation-delay: -1.19s;
  animation-delay: -1.19s;
  -webkit-animation-duration: 1.2s;
  animation-duration: 1.2s;
}
/* Mobile Menu */
.menu-open,
.menu-close {
  display: block;
  font-size: 0;
  width: 30px;
  outline: none;
  border: none;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  cursor: pointer;
}
.menu-open.is-active,
.menu-close.is-active {
  transform: scale(1);
}
.menu-open {
  height: 13px;
  background-image: url("../img/burger-black.svg");
  transform: scale(0);
  transition: transform 0.3s ease-out;
  transform-origin: right center;
}
body[data-color="white"] .menu-open {
  background-image: url("../img/burger-white.svg");
}
body.scroll-done .menu-open {
  background-image: url("../img/burger-black.svg");
}
.menu-close {
  height: 30px;
  overflow: hidden;
  background-image: url("../img/close.svg");
  position: absolute;
  top: 25px;
  right: var(--commonSidePadding);
  transform: scale(0);
  transition: transform 0.3s 0s ease-out;
  transform-origin: center center;
}
.menu {
  --liMargin: 45px;
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 100px var(--commonSidePadding);
  transition: opacity 0.4s ease-out 0.2s;
  background-color: #000;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0;
  pointer-events: none;
}
.menu.is-active {
  opacity: 1;
  pointer-events: auto;
  background-image: url("../img/bg-mobile-menu.webp");
}
.pace-done.sound-done .menu {
  display: block;
}
.menu__list {
  display: none;
}
.is-active .menu__list {
  display: block;
}
.menu__list li + li {
  margin-top: var(--liMargin);
}
.menu__list a {
  font-size: min(6.035vw, 25px);
  color: var(--offWhite);
  text-align: left;
  font-weight: 300;
  letter-spacing: 0.3em;
  white-space: nowrap;
  cursor: pointer;
}
/* Footer */
.footer {
  display: none;
  position: relative;
}
[data-sticky-lifestyle="true"] .footer {
  display: block;
}
.footer__inner {
  display: flex;
  justify-content: center;
  position: absolute;
  width: 100%;
  background: #f5f2ef;
  z-index: 4;
}
.footer__content {
  width: 300px;
  text-align: center;
}
.footer__content a {
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.footer__title {
  font-size: 21px;
  font-weight: 600;
}
.footer__title:not(.footer__info .footer__title) {
  margin-top: 63px;
}
.footer__image {
  margin-top: 26px;
}
.footer__image > img {
  border: 1px solid #707070;
}
.footer__info {
  margin-top: 88px;
  padding-bottom: 80px;
}
.footer__info > div + div {
  margin-top: 40px;
}
.footer__company_link {
  margin-top: 20px;
}
.footer__contact_list {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.footer__contact_list li + li {
  margin-left: 24px;
}
.copyright {
  display: none;
  position: fixed;
  z-index: 9990;
  font-size: 10px;
  bottom: 20px;
  left: var(--commonSidePadding);
  color: var(--dynamicColor);
  opacity: 0;
  transition: opacity 0.2s linear;
}
.pace-done.sound-done .copyright {
  display: block;
}
.resize-done .copyright {
  opacity: 1;
}
/* Progress */
.pace {
  --percentageNumberTextWidth: 52px;
  --percentageTextWidth: 14px;
  --progressImageMargin: -38px;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-clip: padding-box;
  position: fixed;
  z-index: 2000;
  margin: auto;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 80px;
  opacity: 1;
  overflow: hidden;
  transition: opacity 0.4s ease-out;
}
.pace .pace-progress {
  border-radius: 2px;
  transform: translate3d(0, -50%, 0);
  display: block;
  position: absolute;
  top: 50%;
  right: 100%;
  width: calc(
    100% - (var(--percentageNumberTextWidth) + var(--percentageTextWidth))
  );
  height: 1px;
  background: var(--black);
  color: var(--black);
  font-family: "Prata", serif;
}
.pace .pace-progress::before,
.pace .pace-progress::after {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.pace .pace-progress::before {
  content: attr(data-progress-text);
  width: var(--percentageNumberTextWidth);
  right: calc(
    (var(--percentageNumberTextWidth) + var(--percentageTextWidth)) * -1
  );
  font-size: 24px;
  text-align: right;
  padding-right: calc(var(--percentageTextWidth) + 4px);
}
.pace .pace-progress::after {
  content: "%";
  width: var(--percentageTextWidth);
  right: calc(
    (var(--percentageNumberTextWidth) + var(--percentageTextWidth)) * -1
  );
  font-size: 14px;
  padding-top: 5px;
}
.pace .pace-progress[data-progress-text="0%"]:after {
  right: -200px;
}
.pace .pace-progress[data-progress-text="1%"]:after {
  right: -198.14px;
}
.pace .pace-progress[data-progress-text="2%"]:after {
  right: -196.28px;
}
.pace .pace-progress[data-progress-text="3%"]:after {
  right: -194.42px;
}
.pace .pace-progress[data-progress-text="4%"]:after {
  right: -192.56px;
}
.pace .pace-progress[data-progress-text="5%"]:after {
  right: -190.7px;
}
.pace .pace-progress[data-progress-text="6%"]:after {
  right: -188.84px;
}
.pace .pace-progress[data-progress-text="7%"]:after {
  right: -186.98px;
}
.pace .pace-progress[data-progress-text="8%"]:after {
  right: -185.12px;
}
.pace .pace-progress[data-progress-text="9%"]:after {
  right: -183.26px;
}
.pace .pace-progress[data-progress-text="10%"]:after {
  right: -181.4px;
}
.pace .pace-progress[data-progress-text="11%"]:after {
  right: -179.54px;
}
.pace .pace-progress[data-progress-text="12%"]:after {
  right: -177.68px;
}
.pace .pace-progress[data-progress-text="13%"]:after {
  right: -175.82px;
}
.pace .pace-progress[data-progress-text="14%"]:after {
  right: -173.96px;
}
.pace .pace-progress[data-progress-text="15%"]:after {
  right: -172.1px;
}
.pace .pace-progress[data-progress-text="16%"]:after {
  right: -170.24px;
}
.pace .pace-progress[data-progress-text="17%"]:after {
  right: -168.38px;
}
.pace .pace-progress[data-progress-text="18%"]:after {
  right: -166.52px;
}
.pace .pace-progress[data-progress-text="19%"]:after {
  right: -164.66px;
}
.pace .pace-progress[data-progress-text="20%"]:after {
  right: -162.8px;
}
.pace .pace-progress[data-progress-text="21%"]:after {
  right: -160.94px;
}
.pace .pace-progress[data-progress-text="22%"]:after {
  right: -159.08px;
}
.pace .pace-progress[data-progress-text="23%"]:after {
  right: -157.22px;
}
.pace .pace-progress[data-progress-text="24%"]:after {
  right: -155.36px;
}
.pace .pace-progress[data-progress-text="25%"]:after {
  right: -153.5px;
}
.pace .pace-progress[data-progress-text="26%"]:after {
  right: -151.64px;
}
.pace .pace-progress[data-progress-text="27%"]:after {
  right: -149.78px;
}
.pace .pace-progress[data-progress-text="28%"]:after {
  right: -147.92px;
}
.pace .pace-progress[data-progress-text="29%"]:after {
  right: -146.06px;
}
.pace .pace-progress[data-progress-text="30%"]:after {
  right: -144.2px;
}
.pace .pace-progress[data-progress-text="31%"]:after {
  right: -142.34px;
}
.pace .pace-progress[data-progress-text="32%"]:after {
  right: -140.48px;
}
.pace .pace-progress[data-progress-text="33%"]:after {
  right: -138.62px;
}
.pace .pace-progress[data-progress-text="34%"]:after {
  right: -136.76px;
}
.pace .pace-progress[data-progress-text="35%"]:after {
  right: -134.9px;
}
.pace .pace-progress[data-progress-text="36%"]:after {
  right: -133.04px;
}
.pace .pace-progress[data-progress-text="37%"]:after {
  right: -131.18px;
}
.pace .pace-progress[data-progress-text="38%"]:after {
  right: -129.32px;
}
.pace .pace-progress[data-progress-text="39%"]:after {
  right: -127.46px;
}
.pace .pace-progress[data-progress-text="40%"]:after {
  right: -125.6px;
}
.pace .pace-progress[data-progress-text="41%"]:after {
  right: -123.74px;
}
.pace .pace-progress[data-progress-text="42%"]:after {
  right: -121.88px;
}
.pace .pace-progress[data-progress-text="43%"]:after {
  right: -120.02px;
}
.pace .pace-progress[data-progress-text="44%"]:after {
  right: -118.16px;
}
.pace .pace-progress[data-progress-text="45%"]:after {
  right: -116.3px;
}
.pace .pace-progress[data-progress-text="46%"]:after {
  right: -114.44px;
}
.pace .pace-progress[data-progress-text="47%"]:after {
  right: -112.58px;
}
.pace .pace-progress[data-progress-text="48%"]:after {
  right: -110.72px;
}
.pace .pace-progress[data-progress-text="49%"]:after {
  right: -108.86px;
}
.pace .pace-progress[data-progress-text="50%"]:after {
  right: -107px;
}
.pace .pace-progress[data-progress-text="51%"]:after {
  right: -105.14px;
}
.pace .pace-progress[data-progress-text="52%"]:after {
  right: -103.28px;
}
.pace .pace-progress[data-progress-text="53%"]:after {
  right: -101.42px;
}
.pace .pace-progress[data-progress-text="54%"]:after {
  right: -99.56px;
}
.pace .pace-progress[data-progress-text="55%"]:after {
  right: -97.7px;
}
.pace .pace-progress[data-progress-text="56%"]:after {
  right: -95.84px;
}
.pace .pace-progress[data-progress-text="57%"]:after {
  right: -93.98px;
}
.pace .pace-progress[data-progress-text="58%"]:after {
  right: -92.12px;
}
.pace .pace-progress[data-progress-text="59%"]:after {
  right: -90.26px;
}
.pace .pace-progress[data-progress-text="60%"]:after {
  right: -88.4px;
}
.pace .pace-progress[data-progress-text="61%"]:after {
  right: -86.54px;
}
.pace .pace-progress[data-progress-text="62%"]:after {
  right: -84.68px;
}
.pace .pace-progress[data-progress-text="63%"]:after {
  right: -82.82px;
}
.pace .pace-progress[data-progress-text="64%"]:after {
  right: -80.96px;
}
.pace .pace-progress[data-progress-text="65%"]:after {
  right: -79.1px;
}
.pace .pace-progress[data-progress-text="66%"]:after {
  right: -77.24px;
}
.pace .pace-progress[data-progress-text="67%"]:after {
  right: -75.38px;
}
.pace .pace-progress[data-progress-text="68%"]:after {
  right: -73.52px;
}
.pace .pace-progress[data-progress-text="69%"]:after {
  right: -71.66px;
}
.pace .pace-progress[data-progress-text="70%"]:after {
  right: -69.8px;
}
.pace .pace-progress[data-progress-text="71%"]:after {
  right: -67.94px;
}
.pace .pace-progress[data-progress-text="72%"]:after {
  right: -66.08px;
}
.pace .pace-progress[data-progress-text="73%"]:after {
  right: -64.22px;
}
.pace .pace-progress[data-progress-text="74%"]:after {
  right: -62.36px;
}
.pace .pace-progress[data-progress-text="75%"]:after {
  right: -60.5px;
}
.pace .pace-progress[data-progress-text="76%"]:after {
  right: -58.64px;
}
.pace .pace-progress[data-progress-text="77%"]:after {
  right: -56.78px;
}
.pace .pace-progress[data-progress-text="78%"]:after {
  right: -54.92px;
}
.pace .pace-progress[data-progress-text="79%"]:after {
  right: -53.06px;
}
.pace .pace-progress[data-progress-text="80%"]:after {
  right: -51.2px;
}
.pace .pace-progress[data-progress-text="81%"]:after {
  right: -49.34px;
}
.pace .pace-progress[data-progress-text="82%"]:after {
  right: -47.48px;
}
.pace .pace-progress[data-progress-text="83%"]:after {
  right: -45.62px;
}
.pace .pace-progress[data-progress-text="84%"]:after {
  right: -43.76px;
}
.pace .pace-progress[data-progress-text="85%"]:after {
  right: -41.9px;
}
.pace .pace-progress[data-progress-text="86%"]:after {
  right: -40.04px;
}
.pace .pace-progress[data-progress-text="87%"]:after {
  right: -38.18px;
}
.pace .pace-progress[data-progress-text="88%"]:after {
  right: -36.32px;
}
.pace .pace-progress[data-progress-text="89%"]:after {
  right: -34.46px;
}
.pace .pace-progress[data-progress-text="90%"]:after {
  right: -32.6px;
}
.pace .pace-progress[data-progress-text="91%"]:after {
  right: -30.74px;
}
.pace .pace-progress[data-progress-text="92%"]:after {
  right: -28.88px;
}
.pace .pace-progress[data-progress-text="93%"]:after {
  right: -27.02px;
}
.pace .pace-progress[data-progress-text="94%"]:after {
  right: -25.16px;
}
.pace .pace-progress[data-progress-text="95%"]:after {
  right: -23.3px;
}
.pace .pace-progress[data-progress-text="96%"]:after {
  right: -21.44px;
}
.pace .pace-progress[data-progress-text="97%"]:after {
  right: -19.58px;
}
.pace .pace-progress[data-progress-text="98%"]:after {
  right: -17.72px;
}
.pace .pace-progress[data-progress-text="99%"]:after {
  right: -15.86px;
}
.pace .pace-progress[data-progress-text="100%"]:after {
  right: calc(
    (var(--percentageNumberTextWidth) + var(--percentageTextWidth)) * -1
  );
}
.progress {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1999;
  width: 100vw;
  min-height: calc(var(--vh, 1vh) * 100);
  top: 0;
  left: 0;
  background: var(--offWhite);
  transition: opacity 0.4s ease-out;
}
.progress__image {
  width: 80px;
  height: 80px;
  background: rgba(0, 0, 0, 0) url("../img/loading-01.webp") no-repeat 0 0;
}
.pace.pace-inactive,
.pace-done .progress {
  opacity: 0;
  pointer-events: none;
}
.pace-running .sound {
  position: relative;
  opacity: 0;
}
/* Sound */
.sound {
  --soundSelectButtonSize: 96px;
  display: block;
  position: fixed;
  top: 0;
  z-index: 1998;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background: url("../img/bg-sound-mobile.webp") no-repeat center center/cover;
  transition: opacity 0.4s 0.4s ease-out;
}
.sound__inner {
  display: flex;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  align-items: center;
  justify-content: center;
  background: var(--bgBlack);
}
.sound__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: all 0.4s 0s ease-out;
}
.sound__icon {
  display: block;
  width: 42px;
}
.sound__controller {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding-top: 25px;
}
.sound__button {
  display: flex;
  position: relative;
  width: var(--soundSelectButtonSize);
  height: var(--soundSelectButtonSize);
  font-size: 16px;
  justify-content: center;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.3em;
  transition: color 0.4s;
}
.sound__button + .sound__button {
  margin-left: calc(var(--soundSelectButtonSize) / 2);
}
.sound__button::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 1px solid var(--offWhite);
  transform: translate(-50%, -50%) scale(0);
  transform-origin: center center;
  border-radius: 100%;
  opacity: 0;
  transition: all 0.4s;
}
.sound-done .sound__contents {
  opacity: 0;
  transform: translateY(-50px);
}
.sound-done .sound {
  opacity: 0;
  pointer-events: none;
}
/* Movie */
.movie {
  --movieTitleFontSize: 14px;
  --movieOtherFontSize: 10px;
  --movieScrollBottom: var(--commonCornerMargin);
  --movieMadeMarginTop: 31px;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: calc(var(--vh, 1vh) * 100);
  background: var(--white);
  will-change: margin;
}
.pace-done.sound-done .movie {
  display: block;
}
.resize-done .movie {
  position: relative;
  margin-top: var(--resizingMargin);
}
.movie__player {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  transform: matrix(
    var(--resizingMatrixScale),
    0,
    0,
    var(--resizingMatrixScale),
    0,
    0
  );
  border-radius: var(--resizingRadius);
  will-change: transform;
}
.movie__video {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  top: 0;
  left: 0%;
  z-index: 2;
}
.movie__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3;
  color: var(--white);
}
.movie__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-family: "Pinyon Script", cursive;
}
.movie__title {
  font-size: var(--movieTitleFontSize);
  font-weight: normal;
  opacity: 0;
  letter-spacing: 4.2px;
}
.pace-done.sound-done .movie__title {
  -webkit-animation: fade_in 2.8s ease-out 4.5s forwards;
  animation: fade_in 2.8s ease-out 4.5s forwards;
}
.movie__made {
  font-size: 12px;
  margin-top: var(--movieMadeMarginTop);
  opacity: 0;
}
.pace-done.sound-done .movie__made {
  -webkit-animation: fade_in 2.8s ease-out 5s forwards;
  animation: fade_in 2.8s ease-out 5s forwards;
}
.movie__scroll {
  opacity: 1;
  transition: opacity 0.4s ease-in-out;
}
.resize-running .movie__scroll,
.resize-done .movie__scroll {
  opacity: 0;
}
.movie__scroll-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  left: 50%;
  bottom: var(--movieScrollBottom);
  font-size: var(--movieOtherFontSize);
  color: inherit;
  letter-spacing: 0.1em;
  transform: translateX(-50%);
  opacity: 0;
}
.movie__scroll-arrow {
  display: block;
  position: relative;
  width: 10px;
  height: 104px;
  overflow: hidden;
}
.movie__scroll-arrow-svg {
  position: absolute;
  top: -100%;
  left: 50%;
  height: 104px;
  transform: translate(-50%, 0);
  -webkit-animation: scroll_arrow_animation 2.4s ease-in-out 8.4s infinite;
  animation: scroll_arrow_animation 2.4s ease-in-out 8.4s infinite;
}
.pace-done.sound-done .movie__scroll-content {
  -webkit-animation: fade_in 2.8s ease-out 6.5s forwards;
  animation: fade_in 2.8s ease-out 6.5s forwards;
}
.movie__scroll-text {
  margin-top: 14px;
}
/* Vision */
.vision {
  --visionLineHeight: 2.8;
  --visionInnerPadding: 100px;
  position: relative;
  z-index: 10;
  background: url("../img/bg-vision.webp") repeat;
  padding: 0 var(--commonSidePadding);
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.2s;
  letter-spacing: 0;
}
.vision__contents {
  max-width: 780px;
  padding-top: var(--visionInnerPadding);
  padding-bottom: var(--visionInnerPadding);
  transition: transform 0.4s ease-in-out;
}
.vision__title {
  text-align: left;
  opacity: 0;
  transition: opacity 2s ease-in-out 0.4s;
}
.vision__title::after {
  display: inline-block;
  content: "";
  width: 130px;
  height: 1px;
  background: var(--black);
  transform: translate(1rem, -6px);
  transition: width 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}
.vision__main {
  padding-top: 65px;
  line-height: var(--visionLineHeight);
  word-wrap: break-word;
  font-size: 14px;
  font-weight: 600;
}
.vision__main > p {
  opacity: 0;
  transition: opacity 2s ease-in-out 0.4s;
  margin-bottom: 2rem;
}
.vision__main > p.indent {
  text-indent: 1.5em;
}
.vision__main span {
  display: block;
}
.resize-done .is-active .vision__title {
  opacity: 1;
  transition: opacity 2s ease-in-out;
}
.resize-done .is-active .vision__main p {
  opacity: 1;
}
.resize-done .is-active .vision__main p:nth-of-type(1) {
  transition: opacity 2s ease-in-out 0.3s;
}
.resize-done .is-active .vision__main p:nth-of-type(2) {
  transition: opacity 2s ease-in-out 0.4s;
}
.resize-done .is-active .vision__main p:nth-of-type(3) {
  transition: opacity 2s ease-in-out 0.5s;
}
.resize-done .is-active .vision__main p:nth-of-type(4) {
  transition: opacity 2s ease-in-out 0.6s;
}
.resize-done .is-active .vision__main p:nth-of-type(5) {
  transition: opacity 2s ease-in-out 0.7s;
}
.resize-done .is-active .vision__main p:nth-of-type(6) {
  transition: opacity 2s ease-in-out 0.8s;
}
/* Lifestyle */
.lifestyle {
  --lifestyleHeaderHeight: 100px;
  --lifestyleCaptionFontSize: 32px;
  --lifestyleContentsMaxWidth: 950px;
  --lifestyleContentsTitleBGWidth: 372px;
  --lifestyleLifestyleSVGWidth: 186px;
  --lifestyleEnvironmentSVGWidth: 308px;
  position: relative;
}
.lifestyle__header {
  display: flex;
  position: relative;
  z-index: 5;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: var(--lifestyleHeaderHeight);
  padding: 0 var(--commonSidePadding);
  transition: opacity 0.24s ease-in-out;
}
.lifestyle__subtitle {
  font-size: 12px;
  margin-bottom: 1em;
}
.lifestyle__title {
  font-size: 16px;
}
.lifestyle__main-visual {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.lifestyle__main-visual-blur {
  position: relative;
  width: 100%;
  height: 100vh;
  filter: blur(30px);
  transform-origin: center center;
  transform: scale(1.15);
  background: none no-repeat center center/cover;
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.lifestyle__contents-title {
  display: flex;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  padding: 0 var(--commonSidePadding);
}
.lifestyle__contents-title__image {
  position: absolute;
  width: calc(100% - var(--commonSidePadding));
  min-width: var(--lifestyleEnvironmentSVGWidth);
  max-width: var(--lifestyleContentsTitleBGWidth);
  height: auto;
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.75s cubic-bezier(0.25, 0.1, 0.25, 1),
    transform 0.75s cubic-bezier(0.165, 0.84, 0.44, 1),
    -webkit-transform 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
  transition-delay: 0.1s;
}
.lifestyle__contents-title__image img {
  width: 100%;
}
.lifestyle__contents-title__image svg {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.75s cubic-bezier(0.25, 0.1, 0.25, 1);
}
.lifestyle__contents-title__image.-lifestyle svg {
  width: var(--lifestyleLifestyleSVGWidth);
}
.lifestyle__contents-title__image.environment svg {
  width: var(--lifestyleEnvironmentSVGWidth);
}
.lifestyle__contents-title__image.is-active {
  opacity: 1;
  transform: translateY(0);
}
.lifestyle__caption {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  align-items: center;
  pointer-events: none;
  overflow: hidden;
  font-size: var(--lifestyleCaptionFontSize);
  text-shadow: 0px 3px 6px #00000029;
  z-index: 4;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.65s cubic-bezier(0.25, 0.1, 0.25, 1) 0.1s;
}
.lifestyle__caption-text {
  width: min(75%, var(--lifestyleImageLarge));
  color: var(--white);
  line-height: 2;
  padding: 0 1em;
}
.is-hover .lifestyle__main-visual-blur,
.is-hover .lifestyle__caption {
  opacity: 1;
}
.is-hover .lifestyle__contents-title__image svg {
  opacity: 0;
}
.lifestyle__contents-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.lifestyle__contents {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lifestyle__contents.pc {
  display: none;
}
.lifestyle__image {
  position: relative;
  z-index: 2;
  width: min(75%, var(--lifestyleImageLarge));
  margin-top: var(--lifestyleHeaderHeight);
  transition: transform 0.75s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.lifestyle__image > img {
  display: block;
  border-radius: 3px;
}
/* Facade */
.facade {
  --facadeCircleDiameter: 452px;
  --facadeTextMarginTop: 43px;
  --facadeTransitionDuration: 1s;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  height: 100vh;
  background: url("../img/facade.webp") no-repeat center top/cover;
}
.is-activated.facade {
  position: relative;
}
.facade__inner {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
}
.facade__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: var(--facadeCircleDiameter);
  height: var(--facadeCircleDiameter);
  border-radius: 50%;
  background: transparent
    radial-gradient(closest-corner, #fff 0%, rgba(255, 255, 255, 0.52) 100%) 0%
    0%;
  opacity: 0;
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
  transition: opacity var(--facadeTransitionDuration);
}
.is-active .facade__circle {
  opacity: 0.9;
}
.facade__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: var(--facadeCircleDiameter);
  text-align: center;
  font-size: 14px;
  line-height: 2.4rem;
  opacity: 0;
  color: transparent;
  transition: all var(--facadeTransitionDuration);
}
.is-active .facade__text {
  color: var(--black);
  opacity: 1;
}
.facade__text .title {
  margin-bottom: -50px;
}
.facade__text .title::after {
  display: inline-block;
  content: "";
  width: 330px;
  height: 1px;
  background: black;
  transform: translateY(-7px);
}
.facade__text .text {
  margin-top: var(--facadeTextMarginTop);
}
/* Architecture */
.architecture {
  --architectureHeaderHeight: 82px;
  --architectureSectionHeight: 100vh;
  --architectureTitleLineWidth: 80px;
  --architectureTitleLinePosition: 6px;
  display: none;
  position: relative;
  z-index: 6;
  background: var(--white);
  padding: 0 var(--commonSidePadding) 160px;
  font-weight: 600;
}
.is-last + .architecture,
[data-sticky-lifestyle="true"] .architecture {
  display: block;
}
.architecture__header {
  padding: 55px 0 71px;
}
.architecture__section + .architecture__section {
  margin-top: 64px;
}
.architecture__section-contents {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 492px;
  margin: 0 auto;
}
.architecture__section-title {
  font-size: 21px;
  padding: 24px 0;
}
.architecture__section-title::after {
  display: inline-block;
  content: "";
  width: 0;
  height: 1px;
  background: var(--black);
  transform: translate(var(--architectureTitleLinePosition), -7px);
  opacity: 0;
  transition: width 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.6s;
}
.architecture__section-image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 492/334;
}
.architecture__section-texts {
  font-size: 14px;
  opacity: 0;
  transition: all 800ms cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}
.architecture__section-message {
  line-height: 2;
  font-weight: normal;
}
.is-active.architecture__section::before {
  opacity: 1;
}

.is-active .architecture__section-header,
.is-active .architecture__section-texts {
  opacity: 1;
}

.is-active .architecture__section-title::after {
  opacity: 1;
  width: var(--architectureTitleLineWidth);
}
/* Gallery */
.gallery {
  display: none;
  position: relative;
  z-index: 6;
  background: var(--white);
  padding: 0 var(--commonSidePadding);
}
[data-sticky-lifestyle="true"] .gallery {
  display: block;
}
.gallery__title {
  padding: 59px 0 64px 0;
}
.gallery .gallery-container {
  display: grid;
  justify-content: center;
  grid-template-columns: repeat(2, minmax(auto, 186px));
}
.gallery-thumbnail {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  transition: 0.5s all;
}
.gallery-thumbnail img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
/* Property */
.property {
  --propertyInformationPaddingTop: 112px;
  --propertyInformationMarginTop: 140px;
  --propertyInformationTableDlPadding: 38px;
  --propertyInformationTableFontSize: 14px;
  --propertyInformationTableMarginLeft: 26px;
  --propertyContentsMarginTop: 230px;
  display: none;
  position: relative;
  z-index: 6;
  background: var(--white);
  padding: 142px var(--commonSidePadding) 160px;
}
[data-sticky-lifestyle="true"] .property {
  display: block;
}
.property__information {
  padding-top: calc(
    var(--propertyInformationPaddingTop) -
      var(--propertyInformationTableDlPadding)
  );
}
.property__information-table {
  font-size: var(--propertyInformationTableFontSize);
  line-height: 1.6;
}
.property__information-table + .property__information-table {
  margin-top: calc(
    var(--propertyInformationMarginTop) -
      var(--propertyInformationTableDlPadding)
  );
}
.property__information-table dl {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--propertyInformationTableDlPadding) 10px;
}
.property__information-table dl + dl {
  border-top: 1px solid #c3c3c3;
}
.property__information-table dd {
  text-align: right;
}
.property__contents + .property__contents {
  margin-top: calc(
    var(--propertyContentsMarginTop) - var(--propertyInformationTableDlPadding)
  );
}
.property__draw {
  margin-top: 80px;
}
.property__draw-list {
  text-align: center;
}
.property__draw-list li + li {
  margin-top: 80px;
}
.property__draw-list img {
  cursor: pointer;
}
/* Note */
/* Twosun kokokara */
.note {
  --notePaddingTopBottom: 60px;
  display: none;
  position: relative;
  z-index: 6;
  width: 100%;
  background: #f5f2ef;
  font-size: 14px;
  color: var(--black);
  padding: var(--notePaddingTopBottom) var(--commonSidePadding);
}
.note h2 {
  text-align: left;
  padding-bottom: 24px;
}
[data-sticky-lifestyle="true"] .note {
  display: block;
}
.note__content {
  position: relative;
  width: min(100%, 780px);
  margin-inline: auto;
  z-index: 2;
  line-height: 1.7;
  overflow: hidden;
  height: auto;
  max-height: 300px;
  transition: all 1s;
}
.readmore-check:checked ~ .note__content {
  max-height: 200vh;
  transition: all 1s;
}
.note__content > div + div {
  margin-top: 32px;
}
.note__content::before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  content: "";
  height: 40%;
  background: -webkit-linear-gradient(
    top,
    rgb(245, 242, 239, 0.63),
    rgb(245, 242, 239, 1)
  );
  background: linear-gradient(
    top,
    rgb(245, 242, 239, 0.63),
    rgb(245, 242, 239, 1)
  );
  transition: all 1s;
}
.note__sign {
  text-align: right;
  padding-bottom: 24px;
}
.readmore-check {
  display: none;
}
.readmore-label {
  display: block;
  width: 108px;
  height: 132px;
  margin-inline: auto;
  cursor: pointer;
}
.readmore-check:checked ~ .readmore-label {
  position: static;
  transform: translateX(0);
  -webkit-transform: translateX(0);
}
.readmore-check:checked ~ .note__content::before {
  height: 0;
}
.readmore-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: var(--movieOtherFontSize);
  color: inherit;
  letter-spacing: 0.1em;
}
.readmore-arrow {
  display: block;
  position: relative;
  width: 10px;
  height: 104px;
  overflow: hidden;
  transition: all 0.4s;
}
.readmore-check:checked ~ .readmore-label .readmore-arrow {
  transform: rotate(180deg);
}
.readmore-arrow-svg {
  position: absolute;
  top: 0%;
  left: 50%;
  height: 104px;
  transform: translate(-50%, 0);
}
.readmore-text {
  margin-top: 14px;
}
.close-text {
  display: none;
  margin-top: 14px;
}
.readmore-check:checked ~ .readmore-label .readmore-text {
  display: none;
}
.readmore-check:checked ~ .readmore-label .close-text {
  display: unset;
}
/* Twosun kokomade */
/* Highlight */
.highlight {
  --highlightPadding: 200px;
  display: none;
  position: relative;
  z-index: 6;
  background: var(--white);
  padding: var(--highlightPadding) 0;
}
[data-sticky-lifestyle="true"] .highlight {
  display: block;
}
.highlight__inner {
  width: 100%;
  background: var(--white);
}
.highlight__list {
  font-size: 0;
  white-space: nowrap;
  text-align: center;
}
.highlight__list li {
  position: relative;
}
.highlight__list li p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
}
.highlight .scroll-content {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: calc(50% - 180px);
  right: var(--commonSidePadding);
  font-size: 10px;
  color: var(--black);
  letter-spacing: 0.1em;
}
.highlight .scroll-arrow {
  height: 6.8px;
}
/* Modal */
.modal {
  --modalCloseButtonSize: 24px;
  --modalCloseButtonMarginBottom: 5px;
  --modalBackNextWidth: 36px;
  --modalMainImageMaxWidth: 100%;
  --modalMainImageMaxHeight: 50vh;
  --modalMainImageMaxHeight: 50svh;
  --modalMainImageWidth: min(
    var(--modalMainImageMaxWidth),
    var(--modalMainImageMaxHeight)
  );
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  min-height: calc(var(--vh, 1vh) * 100);
  background: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease-in;
}
.modal-running .modal {
  opacity: 1;
  pointer-events: auto;
}
.modal__blur {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100vh;
  filter: blur(30px);
  transform-origin: center center;
  transform: scale(1.35);
  background: #878787 none no-repeat center center/cover;
  pointer-events: none;
}
.modal__closer {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
}
.modal__contents {
  z-index: 4;
  padding-top: calc(
    var(--modalCloseButtonSize) + var(--modalCloseButtonMarginBottom)
  );
  width: 100%;
}
.modal__group {
  display: flex;
  justify-content: space-between;
}
.modal__back,
.modal__next {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--modalBackNextWidth);
  padding-top: var(--modalCloseButtonMarginBottom);
}
.modal[data-modal-controller="0"] .modal__blur {
  display: none;
}
.modal[data-modal-controller="0"] .modal__contents {
  max-width: calc(100% - var(--modalBackNextWidth) * 2);
}
.modal[data-modal-controller="0"] .modal__back,
.modal[data-modal-controller="0"] .modal__next {
  width: 0;
  visibility: hidden;
}
.modal[data-modal-controller="0"] .modal__back-button,
.modal[data-modal-controller="0"] .modal__next-button {
  pointer-events: none;
}
.modal[data-modal-controller="0"] .modal__main-text {
  display: none;
}
.modal__back-button,
.modal__next-button {
  display: block;
  height: 100%;
}
.modal__back-button > span,
.modal__next-button > span {
  display: block;
  font-size: 10px;
  color: var(--white);
  letter-spacing: 0.3em;
  transform-origin: center center;
  transform: scale(0.9) rotate(90deg);
}
.is-disabled .modal__back-button,
.is-disabled .modal__next-button {
  visibility: hidden;
  pointer-events: none;
}
.modal__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: var(--modalMainImageMaxWidth);
}
.modal__main-image {
  position: relative;
  width: var(--modalMainImageWidth);
  aspect-ratio: 1/1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.modal__main-text {
  margin-top: 39px;
  width: var(--modalMainImageWidth);
  height: calc(2em * 6);
  line-height: 2;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  text-shadow: 0px 3px 6px #00000066;
}
.modal__close-button {
  position: absolute;
  width: var(--modalCloseButtonSize);
  height: var(--modalCloseButtonSize);
  top: calc(
    -1 * var(--modalCloseButtonSize) - var(--modalCloseButtonMarginBottom)
  );
  right: 0;
  cursor: pointer;
}
@media (min-width: 414px) {
  .property {
    --propertyInformationTableFontSize: 16px;
  }
}
@media (min-width: 500px) {
  .pace {
    width: calc(100% - var(--commonSidePadding) * 2);
    max-width: 380px;
    transform: translateX(20px);
  }
  .movie {
    --movieMadeMarginTop: 40px;
  }
}
@media (min-width: 600px) {
  .vision__contents {
    transform: translateY(0);
  }
  .vision__main span {
    display: inline;
  }
}
@media (min-width: 768px) {
  .pc {
    display: unset;
  }
  br.mobile {
    display: none;
  }
  .sound {
    background-image: url("../img/bg-sound.webp");
  }
  .sound__contents {
    width: 320px;
  }
  .sound__button + .sound__button {
    margin-left: 0;
  }
  .sound__controller {
    padding-top: 50px;
  }
  .movie {
    --movieTitleFontSize: 22px;
    --movieOtherFontSize: 12px;
    --movieScrollBottom: 96px;
  }
  .movie__player {
    height: 100vh;
  }
  .movie__title {
    margin-top: -1em;
  }
  .vision {
    --visionLineHeight: 2.8;
    --visionInnerPadding: 118px;
  }
  .lifestyle {
    --lifestyleContentsTitleBGWidth: 653px;
    --lifestyleLifestyleSVGWidth: 334px;
    --lifestyleEnvironmentSVGWidth: 551px;
  }
  .facade {
    --facadeCircleDiameter: 530px;
    --facadeTextMarginTop: 68px;
  }
  .architecture {
    --architectureTitleLineWidth: 90px;
    --architectureTitleLinePosition: 10px;
    --architectureSectionHeight: 468px;
  }
  .architecture__section + .architecture__section {
    margin-top: 104px;
  }
  .architecture__section-contents {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 50px;
    max-width: unset;
  }
  .architecture__section-image {
    width: 50%;
    max-width: 450px;
  }
  .architecture__section-texts {
    width: 50%;
    max-width: 450px;
  }
  .gallery .gallery-container {
    grid-template-columns: repeat(3, minmax(auto, 240px));
  }
  .highlight {
    --highlightPadding: 254px;
  }
  .note__content > div + div.note__sign {
    margin-top: 26px;
    padding-bottom: 28px;
  }
  .modal {
    --modalCloseButtonMarginBottom: 10px;
    --modalBackNextWidth: 44px;
    --modalMainImageMaxHeight: 64vh;
    --modalMainImageMaxHeight: 64svh;
  }
  .modal__back-button > span,
  .modal__next-button > span {
    transform: scale(1) rotate(90deg);
  }
}
@media (min-width: 768px) and (orientation: landscape) {
  .modal {
    --modalMainImageMaxWidth: 60vw;
  }
  .modal__main-image {
    aspect-ratio: 4/3;
  }
  .modal__main-text {
    margin-top: 44px;
    height: calc(2.85em * 2);
    line-height: 2.85;
  }
}
@media (min-width: 768px) and (max-width: 1280px) {
  .progress {
    height: 100vh;
  }
  .progress__image {
    margin-top: -78px;
  }
}

@media (min-width: 1280px) {
  :root {
    --headerHeight: auto;
    --commonSidePadding: 0;
  }
  .header {
    padding: var(--commonCornerMargin);
  }
  .resize-done .header,
  .resize-done .sound-player {
    opacity: 0;
    pointer-events: none;
  }
  [data-show="true"] .header,
  [data-show="true"] .sound-player {
    opacity: 1;
    pointer-events: auto;
  }
  .sound-player {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 12px;
    top: var(--commonCornerMargin);
    right: var(--commonCornerMargin);
  }
  .sound-player__list {
    height: 20px;
  }
  .sound-player__list li + li::before {
    margin-inline: 36px;
  }
  .sound-player__animation {
    margin-left: 30px;
  }
  .menu-open,
  .menu-close {
    display: none;
  }
  .menu {
    --liMargin: 28px;
    width: auto;
    height: auto;
    top: 50%;
    right: 0;
    left: auto;
    padding: 0 var(--commonCornerMargin) 0 50px;
    background: rgba(0, 0, 0, 0);
    transform: translateY(-50%);
  }
  .menu.is-active {
    background: rgba(0, 0, 0, 0);
  }
  [data-show="true"] .menu {
    opacity: 1;
  }
  .menu__list {
    display: block;
  }
  .menu__list li {
    display: flex;
    justify-content: flex-end;
  }
  .menu__list li:first-of-type {
    display: none;
  }
  .menu__list a {
    --menuLinkFontSize: 10px;
    --menuLinkCircleSize: calc(var(--menuLinkFontSize) * 0.6);
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: relative;
    justify-content: flex-end;
    align-items: center;
    font-size: var(--menuLinkFontSize);
    padding: 5px;
    color: var(--dynamicColor);
  }
  .menu__list a::before,
  .menu__list a::after {
    content: "";
    display: block;
    background: var(--dynamicColor);
  }
  .menu__list a::before {
    width: 36px;
    height: 1px;
    position: absolute;
    top: 50%;
    right: calc(100% + 6px);
    transform: scaleX(0);
    transition: all 0.3s ease-out;
    transform-origin: left center;
  }
  .menu__list a::after {
    width: var(--menuLinkCircleSize);
    height: var(--menuLinkCircleSize);
    border-radius: 100%;
    margin-left: calc(var(--menuLinkCircleSize) * 2);
  }
  [data-show="true"] .menu__list a {
    pointer-events: auto;
  }
  .copyright {
    padding-left: var(--commonCornerMargin);
    bottom: 30px;
  }
  .resize-done .copyright {
    opacity: 0;
  }
  [data-show="true"] .copyright {
    opacity: 1;
    pointer-events: auto;
  }
  .movie {
    --movieScrollBottom: var(--commonCornerMargin);
  }
  .vision__title {
    color: rgba(0, 0, 0, 0);
    text-shadow: 0 0 14px #fff;
    opacity: 0;
    transition: color 1.5s linear 0.4s, text-shadow 1.5s linear 0.4s,
      opacity 2s linear 0.4s;
  }
  .vision__main > p {
    color: rgba(0, 0, 0, 0);
    text-shadow: 0 0 14px #fff;
    opacity: 0;
    transition: color 1.5s linear 0.4s, text-shadow 1.5s linear 0.4s,
      opacity 2s linear 0.4s;
  }
  .resize-done .is-active .vision__title {
    color: var(--black);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0);
    opacity: 1;
    transition: color 1.5s linear 0.2s, text-shadow 1.5s linear 0.2s,
      opacity 2s linear 0.2s;
  }
  .resize-done .is-active .vision__main p {
    color: var(--black);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0);
    opacity: 1;
  }
  .resize-done .is-active .vision__main p:nth-of-type(1) {
    transition: color 1.5s linear 0.3s, text-shadow 1.5s linear 0.3s,
      opacity 2s linear 0.3s;
  }
  .resize-done .is-active .vision__main p:nth-of-type(2) {
    transition: color 1.5s linear 0.4s, text-shadow 1.5s linear 0.4s,
      opacity 2s linear 0.4s;
  }
  .resize-done .is-active .vision__main p:nth-of-type(3) {
    transition: color 1.5s linear 0.5s, text-shadow 1.5s linear 0.5s,
      opacity 2s linear 0.5s;
  }
  .resize-done .is-active .vision__main p:nth-of-type(4) {
    transition: color 1.5s linear 0.6s, text-shadow 1.5s linear 0.6s,
      opacity 2s linear 0.6s;
  }
  .resize-done .is-active .vision__main p:nth-of-type(5) {
    transition: color 1.5s linear 0.7s, text-shadow 1.5s linear 0.7s,
      opacity 2s linear 0.7s;
  }
  .resize-done .is-active .vision__main p:nth-of-type(6) {
    transition: color 1.5s linear 0.7s, text-shadow 1.5s linear 0.8s,
      opacity 2s linear 0.8s;
  }
  .lifestyle {
    --lifestyleCaptionFontSize: 32px;
  }
  .lifestyle__contents {
    width: min(100%, var(--lifestyleContentsMaxWidth));
    margin: 0 auto;
  }
  .lifestyle__contents.mobile {
    display: none;
  }
  .lifestyle__contents.pc {
    display: flex;
  }
  .lifestyle__caption-text {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 0;
  }
  .property {
    --propertyInformationTableDlPadding: 26px;
    --propertyContentsMarginTop: 276px;
    padding-top: 110px;
  }
  .property__information {
    display: flex;
  }
  .property__information-table {
    width: 50%;
  }
  .property__information-table + .property__information-table {
    margin-top: 0;
    margin-left: var(--propertyInformationTableMarginLeft);
  }
  .property__draw {
    margin-top: 168px;
  }
  .property__draw-list {
    display: flex;
  }
  .property__draw-list li {
    width: 50%;
  }
  .property__draw-list li + li {
    margin-top: 0;
  }
  .note {
    --notePaddingTopBottom: 120px;
  }
  .highlight .scroll-content {
    top: calc(50% - 210px);
    right: 166px;
  }
  /* Footer */
  .footer__content {
    width: 768px;
  }
  .footer__title:not(.footer__info .footer__title) {
    margin-top: 80px;
  }
  .footer__image {
    margin-top: 24px;
  }
  .footer__info {
    display: flex;
    width: 100%;
    margin-top: 42px;
  }
  .footer__info > div + div {
    margin-top: 0;
    margin-left: auto;
  }
  .modal {
    --modalBackNextWidth: 88px;
    --modalBackNextPadding: 8px;
    --modalBackNextLineWidth: 40px;
    --modalMainImageMaxWidth: 951px;
    --modalMainImageMaxHeight: 80vh;
  }
  .modal__contents {
    position: relative;
    width: 100%;
    pointer-events: none;
  }
  .modal__back,
  .modal__next {
    position: absolute;
    padding-top: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .modal__back {
    left: 0;
  }
  .modal__next {
    right: 0;
  }
  .modal__close-button,
  .modal__back-button,
  .modal__next-button {
    pointer-events: auto;
  }
  .modal__back-button,
  .modal__next-button {
    position: relative;
    width: 100%;
    padding: var(--modalBackNextPadding) 0;
  }
  .modal__back-button::after,
  .modal__next-button::after {
    display: block;
    content: "";
    width: var(--modalBackNextLineWidth);
    height: 1px;
    position: absolute;
    top: 50%;
    background: var(--white);
    transform: translateY(-50%);
  }
  .modal__back-button > span,
  .modal__next-button > span {
    transform: rotate(0deg);
  }
  .modal__back-button {
    text-align: right;
  }
  .modal__back-button::after {
    left: 0;
  }
  .modal__next-button {
    text-align: left;
  }
  .modal__next-button::after {
    right: 0;
  }
  .modal__group {
    justify-content: center;
  }
  .modal__main-image {
    aspect-ratio: 16/9;
    max-height: 100%;
  }
  .modal__main-text {
    margin-top: 44px;
    height: calc(2.85em * 2);
    line-height: 2.85;
  }
}
@media (min-width: 1920px) {
  :root {
    --contentsWidth: 1270px;
  }
  .vision {
    --visionLineHeight: 3;
    --visionInnerPadding: 160px;
  }
  .lifestyle {
    --lifestyleContentsMaxWidth: 1080px;
  }
  .property {
    --propertyInformationPaddingTop: 142px;
    --propertyInformationTableDlPadding: 32px;
    --propertyInformationTableFontSize: 20px;
    --propertyInformationTableMarginLeft: 40px;
    --propertyContentsMarginTop: 340px;
    padding-top: 142px;
  }
  .modal {
    --modalBackNextWidth: 112px;
    --modalBackNextPadding: 10px;
    --modalBackNextLineWidth: 60px;
  }
}
@media (hover: hover) {
  .menu__list a:hover::before {
    transform: scaleX(1);
  }
  .sound__button:hover {
    color: #fff;
  }
  .sound__button:hover::before {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  .lifestyle__image:hover {
    z-index: 3;
  }
  .architecture__section.is-hover:hover::before {
    opacity: 1;
  }
  .architecture__section.is-hover:hover .architecture__section-header,
  .architecture__section.is-hover:hover .architecture__section-texts {
    opacity: 1;
  }
  .architecture__section.is-hover:hover .architecture__section-title::after {
    opacity: 1;
    width: var(--architectureTitleLineWidth);
  }
  .gallery-thumbnail img:hover {
    transform: scale(1.1);
    transition: all 0.5s;
  }
}
