@charset "UTF-8";
*, *:before, *:after {
  box-sizing: border-box
}

* {
  margin: 0;
  padding: 0;
  color: inherit
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  text-size-adjust: none
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%
}

img {
  -o-object-fit: cover;
  height: auto;
  object-fit: cover
}

input, button, textarea, select {
  font: inherit
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word
}

ol, ul {
  list-style: none
}

a {
  color: inherit;
  font: inherit;
  text-decoration: none
}

address {
  font-style: normal
}

:where(a) {
  text-decoration: none
}

:where(a) * {
  text-decoration: none
}

:where(img) {
  width: 100%
}

:where(ol), :where(ul) {
  list-style: none
}

:where(li) {
  list-style: none
}

:root {
  --base-vw: 375;
  --font-helvetica: "Helvetica", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  --font-perpetua: Perpetua, Baskerville, "Big Caslon", "Palatino Linotype", Palatino, "URW Palladio L", "Nimbus Roman No9 L", serif;
  --font-tsukumin: "fot-tsukumin-pr6n", sans-serif;
  --font-yugo: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --wf-notosans: "Noto Sans JP", sans-serif;
  --wf-notoserif: "Noto Serif JP", serif;
  --wf-quicksand: "Quicksand", sans-serif;
  --color-text-base: #262626;
  --color-black01: #262626;
  --color-grey01: #707070;
  --color-grey02: #4d4e53;
  --color-grey03: #a0a0a0;
  --color-grey04: #4c4d52;
  --color-grey05: #898989;
  --color-water01: #eff8ff;
  --color-blue01: #0075c4;
  --icon-add: url(../images/svg/icon_add.svg);
  --icon-list: url(../images/svg/icon_list.svg);
  --icon-filter: url(../images/svg/icon_filter.svg);
  --icon-setting: url(../images/svg/icon_setting.svg)
}

html {
  font-size: calc(100 / var(--base-vw) * 1vw * 16);
  font-family: var(--wf-notoserif)
}

.body {
  width: 100%
}

.c-more {
  display: inline-block;
  padding: 8px 24px 10px;
  border: 2px solid #4d4d4d;
  border-radius: 1000px;
  background-color: #4d4d4d;
  color: #fff;
  font-weight: 400;
  font-size: 12px;
  line-height: 2;
  letter-spacing: .06em;
  text-align: center;
  white-space: nowrap
}

.c-video {
  position: relative
}

.c-video__cover {
  z-index: 1;
  position: relative;
  overflow: hidden;
  transition: opacity .4s ease-out
}

.c-video__cover:before {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #c1c1c1;
  content: "";
  opacity: .54;
  transition: opacity .4s ease-out
}

.c-video__cover img {
  transition: scale .4s ease-out
}

.c-video.is-play .c-video__cover, .c-video.is-play .c-video__play {
  opacity: 0;
  pointer-events: none
}

.c-video__source {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 100%;
  max-height: 100%;
  translate: -50% -50%
}

.c-video__play {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%
}

.c-popup-item {
  display: none;
  z-index: 40;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0 25px;
  opacity: 0;
  transition: opacity .4s ease
}

.c-popup-item__mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  opacity: .4
}

.c-popup-item__close {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  translate: 40% -40%;
  border-radius: 100px;
  background-color: #4d4d4d
}

.c-popup-item__close span {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  translate: -50% -50%;
  border-radius: 2px;
  background-color: #fff
}

.c-popup-item__close span:nth-of-type(1) {
  rotate: 45deg
}

.c-popup-item__close span:nth-of-type(2) {
  rotate: -45deg
}

.c-popup-item__block {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 50px);
  max-height: calc(100vh - 50px);
  translate: -50% -50%;
  border-radius: 25px;
  background-color: #fff;
  box-shadow: 4px 4px 2px #4c4545bf
}

.c-popup-item__contents {
  height: 100%;
  padding: 32px 40px;
  overflow: auto
}

.c-popup-item__heading {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: .32em;
  text-align: center
}

.c-popup-item__text {
  margin: 26px 0 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0;
  text-align: center
}

.c-popup-item__text+.c-popup-item__image, .c-popup-item__image+.c-popup-item__image {
  margin: 32px 0 0
}

.wrapper {
  width: 100%;
  min-height: calc(var(--vh) * 1px);
  overflow: hidden
}

.header {
  z-index: 20;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 12px;
  background-color: #fff
}

.header__logo {
  display: block;
  width: 102px
}

.header__logo a {
  display: block
}

.menu-button {
  z-index: 40;
  position: fixed;
  top: 12px;
  right: 12px;
  width: 26px;
  height: 32px
}

.menu-button__line {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  translate: -50% -50%;
  background-color: #4d4d4d;
  transition: opacity .4s ease, top .4s ease, rotate .4s ease
}

.menu-button__line:nth-of-type(1) {
  top: 2px
}

.menu-button__line:nth-of-type(2) {
  top: 10px
}

.menu-button__line:nth-of-type(3) {
  top: 18px
}

.menu-button.is-open .menu-button__line:nth-of-type(1) {
  rotate: 35deg
}

.menu-button.is-open .menu-button__line:nth-of-type(2) {
  opacity: 0
}

.menu-button.is-open .menu-button__line:nth-of-type(3) {
  rotate: -35deg
}

.menu-button__text {
  position: absolute;
  top: 24px;
  left: 50%;
  width: 100%;
  translate: -50% 0;
  text-align: center
}

.menu {
  z-index: 10;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0 25px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease
}

.menu.is-open {
  opacity: 1;
  pointer-events: auto
}

.menu__mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  opacity: .4
}

.menu__close {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  translate: 40% -40%;
  border-radius: 100px;
  background-color: #4d4d4d
}

.menu__close span {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  translate: -50% -50%;
  border-radius: 2px;
  background-color: #fff
}

.menu__close span:nth-of-type(1) {
  rotate: 45deg
}

.menu__close span:nth-of-type(2) {
  rotate: -45deg
}

.menu__block {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 50px);
  max-height: calc(100vh - 50px);
  translate: -50% -50%;
  border-radius: 25px;
  background-color: #fff;
  box-shadow: 4px 4px 2px #4c4545bf
}

.menu__contents {
  height: 100%;
  padding: 32px 40px;
  overflow: auto
}

.menu__list {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: .32em;
  text-align: center
}

.menu__list li span {
  cursor: pointer
}

.menu__list li+li {
  margin: 16px 0 0
}

.menu__text+.menu__image, .menu__image+.menu__image {
  margin: 32px 0 0
}

.main {
  display: block;
  width: 100%
}

.top-firstview {
  position: relative;
  padding: 56px 0 0
}

.top-firstview__images-item img {
  width: 100%;
  height: 100%
}

.top-firstview__images-dots {
  padding: 10px 0 0;
  gap: 10px
}

.top-firstview__images-dots li button {
  width: 8px;
  height: 8px;
  border: 2px solid #b7b7b7;
  border-radius: 100%;
  background-color: #fff;
  transition: background-color .4s ease, border-color .4s ease
}

.top-firstview__images-dots li button.is-active {
  border-color: #666;
  background-color: #666
}

.top-firstview__text {
  z-index: 4;
  position: absolute;
  top: 56px;
  left: 0;
  width: 100%;
  padding: 28px 0 0;
  color: #4d4d4d
}

.top-firstview__text span, .top-firstview__text small {
  display: block;
  font-weight: 400;
  text-align: center
}

.top-firstview__text span {
  font-size: 12px;
  line-height: 2;
  letter-spacing: .2em
}

.top-firstview__text small {
  margin: 14px 0 0;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .18em
}

.top-firstview__logo {
  position: absolute;
  bottom: 46px;
  left: 0;
  width: 100%;
  padding: 0 38px
}

.top-price {
  margin: 24px 0 0
}

.top-price>span, .top-price>small {
  display: block;
  color: #000;
  text-align: center
}

.top-price>span {
  font-weight: 400;
  font-size: 40px;
  line-height: 1.4;
  letter-spacing: .12em
}

.top-price>span .build_price {
  font-size: 24px;
  letter-spacing: 0.05em;
}

.top-price>span small {
  font-size: 26px
}

.top-price>small {
  margin: 10px 0 0;
  font-weight: 400;
  font-size: 10px;
  line-height: 1;
  letter-spacing: .12em
}

.top-transform {
  margin: 64px 0 0
}

.top-transform__heading picture {
  display: block;
  width: 180px;
  margin: 0 auto;
  text-align: center
}

.top-transform__title span {
  display: block
}

.top-transform__title span {
  color: #4d4d4d;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: .3em
}

.top-transform__text {
  font-weight: 400;
  line-height: 2.4;
  letter-spacing: .3em
}

.top-transform__video {
  margin: 56px 0 0;
  padding: 0 25px
}

.top-view {
  margin: 48px 0 0;
  padding: 48px 0;
  background-color: #e6dfc1
}

.top-view__heading {
  color: #4d4d4d;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: .3em;
  text-align: center
}

.top-view__text {
  margin: 48px 0 0;
  color: #4d4d4d;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: .3em;
  text-align: center
}

.top-view__more {
  margin: 36px 0 0;
  text-align: center
}

.top-view__title {
  margin: 52px 0 0
}

.top-view__title picture {
  width: 156px;
  margin: 0 auto
}

.top-view__vr {
  margin: 28px 0 0;
  padding: 0 25px
}

.top-view__vr iframe {
  aspect-ratio: 400/300;
  width: 100%;
  height: auto
}

.top-strength {
  margin: 48px 0 0
}

.top-strength__heading {
  color: #4d4d4d;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: .3em;
  text-align: center
}

.top-strength__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 48px 0 0;
  padding: 0 25px;
  gap: 16px
}

.top-strength__item {
  padding: 0 0 16px;
  background-color: var(--color-strength-base)
}

.top-strength__item--purple {
  --color-strength-heading: #7e0063;
  --color-strength-base: #ddcfda
}

.top-strength__item--blue {
  --color-strength-heading: #0086cf;
  --color-strength-base: #c3dce8
}

.top-strength__item-heading {
  padding: 6px 0 8px;
  background-color: var(--color-strength-heading);
  color: #fff;
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  letter-spacing: .12em;
  text-align: center
}

.top-strength__item-title {
  margin: 18px 0 0;
  color: #4d4d4d;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .08em;
  text-align: center
}

.top-strength__item-text {
  margin: 28px 0 0;
  color: #4d4d4d;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: .06em;
  text-align: center
}

.top-strength__item-title+.top-strength__item-text {
  position: relative
}

.top-strength__item-title+.top-strength__item-text:before {
  position: absolute;
  top: -14px;
  right: 10px;
  left: 10px;
  height: .5px;
  background-color: #4d4d4d;
  content: ""
}

.top-strength__item-more {
  margin: 16px 0 0;
  padding: 0 10px
}

.top-strength__item-more .c-more {
  width: 100%;
  padding: 2px 24px 4px
}

.top-strength__video {
  margin: 56px 0 0;
  padding: 0 25px
}

.top-wall {
  margin: 46px 0 0
}

.top-wall__heading {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: .3em
}

.top-wall__text {
  margin: 32px 0 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 2.2;
  letter-spacing: 0
}

.top-wall__image {
  margin: 36px 0 0
}

.top-window {
  margin: 64px 0 0
}

.top-window__video {
  padding: 0 25px
}

.top-window__heading {
  margin: 32px 0 0;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: .3em
}

.top-window__text {
  margin: 32px 0 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 2.2;
  letter-spacing: 0
}

.top-window__image {
  margin: 36px 0 0;
  padding: 0 25px
}

.top-pro {
  margin: 64px 0 0;
  color: #4d4d4d
}

.top-pro__heading {
  font-weight: 400;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: .3em;
  text-align: center
}

.top-pro__name {
  margin: 40px 0 0
}

.top-pro__name small, .top-pro__name span {
  display: block;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: .26em
}

.top-pro__name small {
  font-size: 12px
}

.top-pro__name span {
  margin: 8px 0 0;
  font-size: 20px
}

.top-pro__text {
  margin: 32px 0 0;
  padding: 0 64px;
  font-weight: 400;
  font-size: 12px;
  line-height: 2.2;
  letter-spacing: .14em
}

.top-pro__name+.top-pro__text {
  position: relative
}

.top-pro__name+.top-pro__text:before {
  position: absolute;
  top: -14px;
  right: 44px;
  left: 44px;
  height: .5px;
  background-color: #4d4d4d;
  content: ""
}

.top-pro__image {
  margin: 36px 0 0;
  padding: 0 25px
}

.top-pro__images {
  margin: 62px 0 0;
  padding: 0 50px 0 0
}

.top-pro__images .splide__track {
  overflow: visible
}

.top-pro__images .splide__slide p {
  font-weight: 400;
  font-size: 10px;
  line-height: 2.5;
  letter-spacing: .18em;
  text-align: right
}

.top-bim {
  margin: 48px 0 0
}

.top-bim__heading {
  color: #4d4d4d;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: .3em;
  text-align: center
}

.top-bim__text {
  margin: 32px 0 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 2.2;
  letter-spacing: 0;
  text-align: center
}

.top-bim__video {
  margin: 56px 0 0;
  padding: 0 25px
}

.top-lifestyle {
  margin: 48px 0 0
}

.top-lifestyle__heading {
  color: #4d4d4d;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: .3em;
  text-align: center
}

.top-lifestyle__title {
  width: 196px;
  padding: 6px 0 8px;
  border: 1px solid #808080;
  border-radius: 100px;
  color: #4d4d4d;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .3em;
  text-align: center
}

.top-lifestyle__images-arrows {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 46px 0 0;
  gap: 12px
}

.top-lifestyle__images-arrows .splide__arrow {
  width: 14px;
  height: 16px;
  background: url(../images/webp/lifestyle_images_arrow.webp) no-repeat;
  background-position: center;
  background-size: contain
}

.top-lifestyle__images-arrows .splide__arrow--next {
  scale: -1 1
}

.top-lifestyle__images .splide__track {
  margin: 24px 40px 0
}

.top-lifestyle__images .splide__list {
  align-items: flex-start
}

.top-lifestyle__images .splide__slide {
  --lifestyle-color: #c8a519;
  position: relative
}

.top-lifestyle__images .splide__slide.blue {
  --lifestyle-color: #268ece
}

.top-lifestyle__images .splide__slide.purple {
  --lifestyle-color: #762262
}

.top-lifestyle__images .splide__slide p {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 72px;
  padding: 10px;
  background-color: var(--lifestyle-color);
  color: #fff;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: .16em
}

.top-lifestyle__images-dots {
  padding: 10px 0 0;
  gap: 10px
}

.top-lifestyle__images-dots li button {
  width: 8px;
  height: 8px;
  border: 2px solid #b7b7b7;
  border-radius: 100%;
  background-color: #fff;
  transition: background-color .4s ease, border-color .4s ease
}

.top-lifestyle__images-dots li button.is-active {
  border-color: #666;
  background-color: #666
}

.top-lifestyle__cursor {
  z-index: 1;
  position: absolute;
  right: 16px;
  bottom: 120px;
  width: 139px;
  height: 170px;
  background: url(../images/webp/lifestyle_pointer.webp) no-repeat;
  background-position: center;
  background-size: contain;
  cursor: pointer
}

.top-lifestyle-popup {
  z-index: 40;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0 25px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .4s ease
}

.top-lifestyle-popup.is-open {
  opacity: 1;
  pointer-events: auto
}

.top-lifestyle-popup__mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  opacity: .4
}

.top-lifestyle-popup__close {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 40px;
  translate: 40% -40%;
  border-radius: 100px;
  background-color: #4d4d4d
}

.top-lifestyle-popup__close span {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 2px;
  translate: -50% -50%;
  border-radius: 2px;
  background-color: #fff
}

.top-lifestyle-popup__close span:nth-of-type(1) {
  rotate: 45deg
}

.top-lifestyle-popup__close span:nth-of-type(2) {
  rotate: -45deg
}

.top-lifestyle-popup__block {
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: calc(100% - 50px);
  max-height: calc(100vh - 50px);
  translate: -50% -50%;
  border-radius: 25px;
  background-color: #fff;
  box-shadow: 4px 4px 2px #4c4545bf
}

.top-lifestyle-popup__contents {
  display: none;
  height: 100%;
  padding: 24px 32px
}

.top-lifestyle-popup__contents.is-life {
  display: block
}

.top-lifestyle-popup__contents .splide__arrows {
  z-index: 1;
  position: absolute;
  top: 50%;
  right: 10px;
  left: 10px;
  translate: 0 -50%
}

.top-lifestyle-popup__contents .splide__arrows .splide__arrow {
  position: absolute;
  top: 50%;
  left: 0;
  width: 14px;
  height: 16px;
  border: 0;
  background: url(../images/webp/lifestyle_images_arrow.webp) no-repeat;
  background-position: center;
  background-size: contain
}

.top-lifestyle-popup__contents .splide__arrows .splide__arrow svg {
  display: none
}

.top-lifestyle-popup__contents .splide__arrows .splide__arrow--next {
  right: 0;
  left: auto;
  scale: -1 1
}

.top-lifestyle-popup__contents .splide__track {
  height: 100%;
  overflow: hidden
}

.top-lifestyle-popup__contents .splide__list {
  height: 100%
}

.top-suggestion {
  position: relative;
  margin: 52px 0 0
}

.top-suggestion__block {
  display: flex;
  z-index: 1;
  position: absolute;
  top: 28px;
  right: 0;
  left: 0;
  align-items: center;
  justify-content: center
}

.top-suggestion__heading {
  color: #fff;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: .28em;
  text-align: center
}

.top-suggestion__title {
  margin: 16px 0 0;
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.6;
  letter-spacing: .28em;
  text-align: center
}

.top-suggestion__title span {
  font-size: 32px
}

.top-suggestion__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 26px 0 0;
  gap: 16px
}

.top-suggestion__item {
  --suggestion-item-color: #c8a519;
  display: flex;
  position: relative;
  flex: 0 0 64px;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 0 0 8px 8px;
  background-color: var(--suggestion-item-color);
  color: #fff;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: .2em
}

.top-suggestion__item:before {
  z-index: 1;
  position: absolute;
  top: -4px;
  right: -4px;
  bottom: 4px;
  left: 4px;
  border: 1px solid #fff;
  content: "";
  opacity: .7
}

.top-suggestion__item.yellow {
  --suggestion-item-color: #c8a519
}

.top-suggestion__item.blue {
  --suggestion-item-color: #268ece
}

.top-suggestion__item.purple {
  --suggestion-item-color: #762262
}

.top-floor {
  margin: 42px 0 0
}

.top-floor__heading small {
  display: inline-flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 40px;
  padding: 0 0 0 2px;
  background-color: #b89519;
  color: #fff;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: .2em;
  white-space: nowrap
}

.top-floor__heading span {
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  letter-spacing: .3em
}

.top-floor__item {
  position: relative;
  margin: 20px 0 0
}

.top-floor__item:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 25px;
  background-color: #b89519;
  content: ""
}

.top-floor__title {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 8px;
  width: 26px;
  translate: 0 -50%
}

.top-facility {
  margin: 42px 0 0
}

.top-facility__heading small {
  display: inline-flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 40px;
  padding: 0 0 0 2px;
  background-color: #0086cf;
  color: #fff;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: .2em;
  white-space: nowrap
}

.top-facility__heading span {
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  letter-spacing: .3em
}

.top-facility__item {
  position: relative;
  margin: 20px 0 0
}

.top-facility__item:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 25px;
  background-color: #0086cf;
  content: ""
}

.top-facility__title {
  z-index: 2;
  position: absolute;
  top: 50%;
  right: 14px;
  width: 26px;
  translate: 0 -50%
}

.top-finance {
  margin: 42px 0 0
}

.top-finance__heading small {
  display: inline-flex;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 40px;
  padding: 0 0 0 2px;
  background-color: #7e0063;
  color: #fff;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.5;
  letter-spacing: .2em;
  white-space: nowrap
}

.top-finance__heading span {
  font-weight: 400;
  font-size: 18px;
  line-height: 1;
  letter-spacing: .3em
}

.top-finance__block {
  position: relative;
  margin: 20px 0 0;
  padding: 22px 0 32px 25px;
  background-color: #ddcfda
}

.top-finance__block:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 25px;
  background-color: #7e0063;
  content: ""
}

.top-finance__title {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 8px;
  width: 26px;
  translate: 0 -50%
}

.top-finance__subtitle {
  position: relative;
  color: #7e0063;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  letter-spacing: .14em
}

.top-finance__subtitle:after {
  position: absolute;
  right: 32px;
  bottom: -10px;
  left: 32px;
  height: .75px;
  background-color: #7e0063;
  content: ""
}

.top-finance__list {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin: 6px 0 0;
  padding: 22px 20px 0
}

.top-finance__list+.top-finance__subtitle {
  margin: 32px 0 0
}

.top-finance__item {
  flex: 1 1 33%;
  width: 20%
}

.top-finance__item picture {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 0 auto
}

.top-finance__item p {
  margin: 12px 0 0;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.6;
  letter-spacing: .04em;
  text-align: center
}

.top-finance__item.item01 picture {
  width: 40px
}

.top-finance__item.item02 picture {
  width: 40px
}

.top-finance__item.item03 picture {
  width: 32px
}

.top-finance__item.item04 picture {
  width: 46px
}

.top-finance__item.item05 picture {
  width: 36px
}

.top-finance__item.item06 picture {
  width: 38px
}

.top-line {
  margin: 42px 0 0
}

.top-line__title {
  color: #4d4d4d;
  font-weight: 400;
  font-size: 20px;
  line-height: 2;
  letter-spacing: .03em;
  text-align: center
}

.top-line__title picture {
  display: inline-block;
  width: 105px;
  translate: 0 10px
}

.top-line__more {
  position: relative;
  margin: 22px 0 0;
  padding: 0 40px
}

.top-line__more a {
  display: block;
  position: relative;
  height: 74px;
  padding: 10px;
  border: 2px solid #00a600;
  border-radius: 10px;
  background-color: #fff;
  transition: background-color .4s ease
}

.top-line__more picture {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  translate: -50% -50%;
  transition: opacity .4s ease
}

.top-line__more picture:nth-of-type(1) {
  z-index: 1;
  opacity: 1
}

.top-line__more picture:nth-of-type(2) {
  opacity: 0
}

.top-line__text {
  margin: 8px 0 0;
  color: #333;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  letter-spacing: .1em;
  text-align: center
}

.footer {
  margin: 48px 0 0;
  padding: 48px 0 64px;
  background-color: #333;
  color: #fff
}

.footer__logo picture {
  width: 200px;
  margin: 0 auto
}

.footer__company {
  margin: 32px 0 0;
  padding: 0 25px
}

.footer__intro {
  margin: 48px 0 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: .2em;
  text-align: center
}

.footer__philosophy {
  margin: 48px 0 0;
  font-weight: 400;
  font-size: 12px;
  line-height: 2;
  letter-spacing: .2em;
  text-align: center
}

.footer__shop {
  margin: 48px 0 0;
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  letter-spacing: .2em;
  text-align: center
}

.footer__map {
  margin: 24px 0 0;
  padding: 0 25px
}

.footer__map iframe {
  aspect-ratio: 540/340;
  width: 100%;
  height: auto
}

.footer__tel {
  margin: 22px 0 0;
  text-align: center
}

.footer__tel a {
  display: inline-block;
  position: relative;
  padding: 0 0 0 30px;
  font-weight: 400;
  font-size: 15px;
  line-height: 1;
  letter-spacing: .2em
}

.footer__tel a:before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 16px;
  translate: 0 -50%;
  background: url(../images/webp/footer_tel_icon.webp) no-repeat;
  background-position: center;
  background-size: contain;
  content: ""
}

@media (max-width: 767px) {
  .only--pc {
    display: none!important
  }
  .c-more {
    padding: 2.1333333333vw 6.4vw 2.6666666667vw;
    border-radius: 26.6666666667vw;
    font-size: 3.2vw
  }
  .c-video__play {
    width: 53.3333333333vw
  }
  .c-popup-item {
    padding: 0 6.6666666667vw
  }
  .c-popup-item__close {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    border-radius: 26.6666666667vw
  }
  .c-popup-item__close span {
    width: 6.4vw;
    height: .5333333333vw;
    border-radius: .5333333333vw
  }
  .c-popup-item__block {
    width: calc(100% - 13.3333333333vw);
    height: auto;
    max-height: calc(100vh - 13.3333333333vw);
    border-radius: 6.6666666667vw;
    box-shadow: 1.0666666667vw 1.0666666667vw .5333333333vw #4c4545bf
  }
  .c-popup-item__contents {
    padding: 8.5333333333vw 10.6666666667vw
  }
  .c-popup-item__heading {
    font-size: 4.8vw
  }
  .c-popup-item__text {
    margin: 6.9333333333vw 0 0;
    font-size: 2.6666666667vw
  }
  .c-popup-item__text+.c-popup-item__image, .c-popup-item__image+.c-popup-item__image {
    margin: 8.5333333333vw 0 0
  }
  .header {
    padding: 3.2vw
  }
  .header__logo {
    width: 27.2vw
  }
  .menu-button {
    top: 3.2vw;
    right: 3.2vw;
    width: 6.9333333333vw;
    height: 8.5333333333vw
  }
  .menu-button__line {
    width: 6.4vw;
    height: .5333333333vw
  }
  .menu-button__line:nth-of-type(1) {
    top: .5333333333vw
  }
  .menu-button__line:nth-of-type(2) {
    top: 2.6666666667vw
  }
  .menu-button__line:nth-of-type(3) {
    top: 4.8vw
  }
  .menu-button.is-open .menu-button__line:nth-of-type(1) {
    top: 2.6666666667vw
  }
  .menu-button.is-open .menu-button__line:nth-of-type(3) {
    top: 2.6666666667vw
  }
  .menu-button__text {
    top: 6.4vw
  }
  .menu {
    padding: 0 6.6666666667vw
  }
  .menu__close {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    border-radius: 26.6666666667vw
  }
  .menu__close span {
    width: 6.4vw;
    height: .5333333333vw;
    border-radius: .5333333333vw
  }
  .menu__block {
    width: calc(100% - 13.3333333333vw);
    height: auto;
    max-height: calc(100vh - 13.3333333333vw);
    border-radius: 6.6666666667vw;
    box-shadow: 1.0666666667vw 1.0666666667vw .5333333333vw #4c4545bf
  }
  .menu__contents {
    padding: 8.5333333333vw 10.6666666667vw
  }
  .menu__list {
    font-size: 4.8vw
  }
  .menu__text+.menu__image, .menu__image+.menu__image {
    margin: 8.5333333333vw 0 0
  }
  .top-firstview {
    padding: 14.9333333333vw 0 0
  }
  .top-firstview__images-item {
    aspect-ratio: 1/1
  }
  .top-firstview__images-dots {
    padding: 2.6666666667vw 0 0;
    gap: 2.6666666667vw
  }
  .top-firstview__images-dots li button {
    width: 2.1333333333vw;
    height: 2.1333333333vw
  }
  .top-firstview__text {
    top: 0;
    padding: 7.4666666667vw 0 0
  }
  .top-firstview__text span {
    font-size: 3.2vw
  }
  .top-firstview__text small {
    margin: 3.7333333333vw 0 0;
    font-size: 2.6666666667vw
  }
  .top-firstview__logo {
    bottom: 12.2666666667vw;
    padding: 0 10.1333333333vw
  }
  .top-price {
    margin: 6.4vw 0 0
  }
  .top-price>span {
    font-size: 10.6666666667vw
  }
  .top-price>span .build_price {
    font-size: 3.6666666667vw;
    display: block;
  }
  .top-price>span small {
    font-size: 6.9333333333vw
  }
  .top-price>small {
    margin: 2.6666666667vw 0 0;
    font-size: 2.6666666667vw
  }
  .top-transform {
    margin: 17.0666666667vw 0 0
  }
  .top-transform__heading picture {
    width: 48vw
  }
  .top-transform__title span {
    margin: 10.6666666667vw 0 0;
    text-align: center
  }
  .top-transform__title span {
    padding: 0 0 0 8vw;
    font-size: 6.4vw
  }
  .top-transform__text {
    margin: 10.6666666667vw 0 0;
    font-size: 3.2vw;
    text-align: center
  }
  .top-transform__image {
    margin: 10.6666666667vw 16vw 0
  }
  .top-transform__video {
    margin: 14.9333333333vw 0 0;
    padding: 0 6.6666666667vw
  }
  .top-view {
    margin: 12.8vw 0 0;
    padding: 12.8vw 0
  }
  .top-view__heading {
    font-size: 6.4vw
  }
  .top-view__text {
    margin: 12.8vw 0 0;
    font-size: 3.2vw
  }
  .top-view__more {
    margin: 9.6vw 0 0
  }
  .top-view__title {
    margin: 13.8666666667vw 0 0
  }
  .top-view__title picture {
    width: 41.6vw
  }
  .top-view__vr {
    margin: 7.4666666667vw 0 0;
    padding: 0 6.6666666667vw
  }
  .top-strength {
    margin: 12.8vw 0 0
  }
  .top-strength__heading {
    font-size: 6.4vw
  }
  .top-strength__list {
    margin: 12.8vw 0 0;
    padding: 0 6.6666666667vw;
    gap: 4.2666666667vw
  }
  .top-strength__item {
    padding: 0 0 4.2666666667vw
  }
  .top-strength__item-heading {
    padding: 1.6vw 0 2.1333333333vw;
    font-size: 4.8vw
  }
  .top-strength__item-title {
    margin: 4.8vw 0 0;
    font-size: 3.2vw
  }
  .top-strength__item-text {
    margin: 7.4666666667vw 0 0;
    font-size: 4.2666666667vw
  }
  .top-strength__item-title+.top-strength__item-text:before {
    top: -3.7333333333vw;
    right: 2.6666666667vw;
    left: 2.6666666667vw;
    height: .1333333333vw
  }
  .top-strength__item-more {
    margin: 4.2666666667vw 0 0;
    padding: 0 2.6666666667vw
  }
  .top-strength__item-more .c-more {
    padding: .5333333333vw 6.4vw 1.0666666667vw
  }
  .top-strength__video {
    margin: 14.9333333333vw 0 0;
    padding: 0 6.6666666667vw
  }
  .top-wall {
    margin: 12.2666666667vw 0 0
  }
  .top-wall__heading {
    font-size: 6.4vw;
    text-align: center
  }
  .top-wall__text {
    margin: 8.5333333333vw 0 0;
    font-size: 3.2vw;
    text-align: center
  }
  .top-wall__image {
    margin: 9.6vw 0 0
  }
  .top-window {
    margin: 17.0666666667vw 0 0
  }
  .top-window__video {
    padding: 0 6.6666666667vw
  }
  .top-window__heading {
    margin: 8.5333333333vw 0 0;
    font-size: 6.4vw;
    text-align: center
  }
  .top-window__text {
    margin: 8.5333333333vw 0 0;
    font-size: 3.2vw;
    text-align: center
  }
  .top-window__image {
    margin: 9.6vw 0 0;
    padding: 0 6.6666666667vw
  }
  .top-pro {
    margin: 17.0666666667vw 0 0
  }
  .top-pro__heading {
    font-size: 6.4vw
  }
  .top-pro__name {
    margin: 10.6666666667vw 0 0
  }
  .top-pro__name small, .top-pro__name span {
    text-align: center
  }
  .top-pro__name small {
    font-size: 3.2vw
  }
  .top-pro__name span {
    margin: 2.1333333333vw 0 0;
    font-size: 5.3333333333vw
  }
  .top-pro__text {
    margin: 8.5333333333vw 0 0;
    padding: 0 17.0666666667vw;
    font-size: 3.2vw
  }
  .top-pro__name+.top-pro__text:before {
    top: -3.7333333333vw;
    right: 11.7333333333vw;
    left: 11.7333333333vw
  }
  .top-pro__image {
    margin: 9.6vw 0 0;
    padding: 0 6.6666666667vw
  }
  .top-pro__images {
    margin: 16.5333333333vw 0 0;
    padding: 0 13.3333333333vw 0 0
  }
  .top-pro__images .splide__slide p {
    font-size: 2.6666666667vw
  }
  .top-bim {
    margin: 12.8vw 0 0
  }
  .top-bim__heading {
    font-size: 6.4vw
  }
  .top-bim__text {
    margin: 8.5333333333vw 0 0;
    font-size: 3.2vw
  }
  .top-bim__video {
    margin: 14.9333333333vw 0 0;
    padding: 0 6.6666666667vw
  }
  .top-lifestyle {
    margin: 12.8vw 0 0
  }
  .top-lifestyle__heading {
    font-size: 6.4vw
  }
  .top-lifestyle__title {
    width: 52.2666666667vw;
    padding: 1.6vw 0 2.1333333333vw;
    font-size: 3.2vw
  }
  .top-lifestyle__images-arrows {
    margin: 12.2666666667vw 0 0;
    gap: 3.2vw
  }
  .top-lifestyle__images-arrows .splide__arrow {
    width: 3.7333333333vw;
    height: 4.2666666667vw
  }
  .top-lifestyle__images .splide__track {
    margin: 6.4vw 10.6666666667vw 0
  }
  .top-lifestyle__images .splide__slide {
    aspect-ratio: 468/524
  }
  .top-lifestyle__images .splide__slide p {
    height: 19.2vw;
    padding: 2.6666666667vw;
    font-size: 2.9333333333vw
  }
  .top-lifestyle__images-dots {
    padding: 2.6666666667vw 0 0;
    gap: 2.6666666667vw
  }
  .top-lifestyle__images-dots li button {
    width: 2.1333333333vw;
    height: 2.1333333333vw
  }
  .top-lifestyle__cursor {
    right: 4.2666666667vw;
    bottom: 18.6666666667vw;
    width: 21.8666666667vw;
    height: 34.1333333333vw
  }
  .top-lifestyle-popup {
    padding: 0 6.6666666667vw
  }
  .top-lifestyle-popup__close {
    width: 10.6666666667vw;
    height: 10.6666666667vw;
    border-radius: 26.6666666667vw
  }
  .top-lifestyle-popup__close span {
    width: 6.4vw;
    height: .5333333333vw;
    border-radius: .5333333333vw
  }
  .top-lifestyle-popup__block {
    width: calc(100% - 13.3333333333vw);
    height: auto;
    max-height: calc(100vh - 13.3333333333vw);
    border-radius: 6.6666666667vw;
    box-shadow: 1.0666666667vw 1.0666666667vw .5333333333vw #4c4545bf
  }
  .top-lifestyle-popup__contents {
    padding: 6.4vw 8.5333333333vw
  }
  .top-lifestyle-popup__contents .splide__arrows {
    right: 2.6666666667vw;
    left: 2.6666666667vw
  }
  .top-lifestyle-popup__contents .splide__arrows .splide__arrow {
    width: 3.7333333333vw;
    height: 4.2666666667vw
  }
  .top-lifestyle-popup__contents .splide__slide {
    max-height: calc(100vh - 26.1333333333vw);
    overflow: auto
  }
  .top-suggestion {
    margin: 13.8666666667vw 0 0
  }
  .top-suggestion__block {
    top: 7.4666666667vw
  }
  .top-suggestion__heading {
    font-size: 4vw
  }
  .top-suggestion__title {
    margin: 4.2666666667vw 0 0;
    font-size: 6.4vw
  }
  .top-suggestion__title span {
    font-size: 8.5333333333vw
  }
  .top-suggestion__list {
    margin: 6.9333333333vw 0 0;
    gap: 4.2666666667vw
  }
  .top-suggestion__item {
    padding: 0 0 2.1333333333vw 2.1333333333vw
  }
  .top-suggestion__item:before {
    top: -1.0666666667vw;
    right: -1.0666666667vw;
    bottom: 1.0666666667vw;
    left: 1.0666666667vw
  }
  .top-suggestion__item {
    flex: 0 0 17.0666666667vw;
    width: 17.0666666667vw;
    height: 17.0666666667vw;
    font-size: 3.7333333333vw
  }
  .top-floor {
    margin: 11.2vw 0 0
  }
  .top-floor__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4.2666666667vw
  }
  .top-floor__heading small {
    flex: 0 0 11.2vw;
    width: 11.2vw;
    height: 10.6666666667vw;
    padding: 0 0 0 .5333333333vw;
    font-size: 2.6666666667vw
  }
  .top-floor__heading span {
    color: #4d4d4d;
    font-size: 4.8vw
  }
  .top-floor__item {
    margin: 5.3333333333vw 0 0
  }
  .top-floor__item:before {
    width: 6.6666666667vw
  }
  .top-floor__title {
    left: 2.1333333333vw;
    width: 6.9333333333vw
  }
  .top-facility {
    margin: 11.2vw 0 0
  }
  .top-facility__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4.2666666667vw
  }
  .top-facility__heading small {
    flex: 0 0 11.2vw;
    width: 11.2vw;
    height: 10.6666666667vw;
    padding: 0 0 0 .5333333333vw;
    font-size: 2.6666666667vw
  }
  .top-facility__heading span {
    color: #4d4d4d;
    font-size: 4.8vw
  }
  .top-facility__item {
    margin: 5.3333333333vw 0 0
  }
  .top-facility__item:before {
    width: 6.6666666667vw
  }
  .top-facility__title {
    right: 3.7333333333vw;
    width: 6.9333333333vw
  }
  .top-finance {
    margin: 11.2vw 0 0
  }
  .top-finance__heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4.2666666667vw
  }
  .top-finance__heading small {
    flex: 0 0 11.2vw;
    width: 11.2vw;
    height: 10.6666666667vw;
    padding: 0 0 0 .5333333333vw;
    font-size: 2.6666666667vw
  }
  .top-finance__heading span {
    color: #4d4d4d;
    font-size: 4.8vw
  }
  .top-finance__block {
    margin: 5.3333333333vw 0 0;
    padding: 5.8666666667vw 0 8.5333333333vw 6.6666666667vw
  }
  .top-finance__block:before {
    width: 6.6666666667vw
  }
  .top-finance__title {
    left: 2.1333333333vw;
    width: 6.9333333333vw
  }
  .top-finance__subtitle {
    font-size: 3.7333333333vw;
    text-align: center
  }
  .top-finance__subtitle:after {
    right: 8.5333333333vw;
    bottom: -2.6666666667vw;
    left: 8.5333333333vw
  }
  .top-finance__list {
    margin: 1.6vw 0 0;
    padding: 5.8666666667vw 5.3333333333vw 0
  }
  .top-finance__list+.top-finance__subtitle {
    margin: 8.5333333333vw 0 0
  }
  .top-finance__item picture {
    min-height: 10.6666666667vw
  }
  .top-finance__item p {
    margin: 3.2vw 0 0;
    font-size: 2.6666666667vw
  }
  .top-finance__item.item01 picture {
    width: 10.6666666667vw
  }
  .top-finance__item.item02 picture {
    width: 10.6666666667vw
  }
  .top-finance__item.item03 picture {
    width: 8.5333333333vw
  }
  .top-finance__item.item04 picture {
    width: 12.2666666667vw
  }
  .top-finance__item.item05 picture {
    width: 9.6vw
  }
  .top-finance__item.item06 picture {
    width: 10.1333333333vw
  }
  .top-line {
    margin: 11.2vw 0 0
  }
  .top-line__title {
    font-size: 5.3333333333vw
  }
  .top-line__title picture {
    width: 28vw;
    translate: 0 2.6666666667vw
  }
  .top-line__more {
    margin: 5.8666666667vw 0 0;
    padding: 0 10.6666666667vw
  }
  .top-line__more a {
    height: 19.7333333333vw;
    padding: 2.6666666667vw;
    border-radius: 2.6666666667vw
  }
  .top-line__more picture {
    width: 53.3333333333vw
  }
  .top-line__text {
    margin: 2.1333333333vw 0 0;
    font-size: 3.2vw
  }
  .footer {
    margin: 12.8vw 0 0;
    padding: 12.8vw 0 17.0666666667vw
  }
  .footer__logo picture {
    width: 53.3333333333vw
  }
  .footer__company {
    margin: 8.5333333333vw 0 0;
    padding: 0 6.6666666667vw
  }
  .footer__intro {
    margin: 12.8vw 0 0;
    font-size: 4.2666666667vw
  }
  .footer__philosophy {
    margin: 12.8vw 0 0;
    font-size: 3.2vw
  }
  .footer__shop {
    margin: 12.8vw 0 0;
    font-size: 4.2666666667vw
  }
  .footer__map {
    margin: 6.4vw 0 0;
    padding: 0 6.6666666667vw
  }
  .footer__tel {
    margin: 5.8666666667vw 0 0
  }
  .footer__tel a {
    padding: 0 0 0 8vw;
    font-size: 4vw
  }
  .footer__tel a:before {
    width: 5.3333333333vw;
    height: 4.2666666667vw
  }
  .msp-sample {
    top: -1.0666666667vw;
    right: -1.0666666667vw;
    bottom: 1.0666666667vw;
    left: 1.0666666667vw;
    flex: 0 0 17.0666666667vw;
    width: 5.3333333333vw;
    height: 4.2666666667vw;
    padding: 4.2666666667vw;
    font-size: 3.7333333333vw
  }
}

@media screen and (min-width: 768px), print {
  :root {
    --base-vw: 1280
  }
  .only--sp {
    display: none!important
  }
  .c-more {
    padding: min(20px, 1.25rem) min(62px, 3.875rem) min(20px, 1.25rem);
    font-size: min(20px, 1.25rem);
    cursor: pointer;
    transition: background-color .4s ease-out, color .4s ease-out
  }
  .c-more:hover {
    background-color: #fff;
    color: #4d4d4d
  }
  .c-video__cover {
    cursor: pointer
  }
  .c-video:hover .c-video__cover img {
    scale: 1.05
  }
  .c-video:hover .c-video__cover:before {
    opacity: 0
  }
  .c-video__play {
    width: min(560px, 35rem)
  }
  .c-opoup-button {
    cursor: pointer
  }
  .c-popup-item__close {
    width: min(40px, 2.5rem);
    height: min(40px, 2.5rem);
    border-radius: min(100px, 6.25rem);
    cursor: pointer
  }
  .c-popup-item__close span {
    width: min(24px, 1.5rem);
    height: min(2px, .125rem);
    border-radius: min(2px, .125rem)
  }
  .c-popup-item__block {
    width: min(900px, 56.25rem);
    height: auto;
    border-radius: min(25px, 1.5625rem);
    box-shadow: min(4px, .25rem) min(4px, .25rem) min(2px, .125rem) #4c4545bf
  }
  .c-popup-item__contents {
    padding: min(40px, 2.5rem) min(40px, 2.5rem)
  }
  .c-popup-item__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: min(40px, 2.5rem)
  }
  .c-popup-item__heading {
    font-size: min(26px, 1.625rem)
  }
  .c-popup-item__text {
    margin: min(32px, 2rem) 0 0;
    font-size: min(16px, 1rem)
  }
  .c-popup-item__text+.c-popup-item__image, .c-popup-item__image+.c-popup-item__image {
    margin: 0
  }
  .header {
    padding: min(20px, 1.25rem) min(45px, 2.8125rem)
  }
  .header__logo {
    width: min(174px, 10.875rem);
    transition: opacity .4s ease-out
  }
  .header__logo:hover {
    opacity: .6
  }
  .menu-button {
    top: min(22px, 1.375rem);
    right: min(55px, 3.4375rem);
    width: min(45px, 2.8125rem);
    height: min(55px, 3.4375rem);
    cursor: pointer
  }
  .menu-button__line {
    width: min(40px, 2.5rem);
    height: min(2px, .125rem)
  }
  .menu-button__line:nth-of-type(1) {
    top: min(8px, .5rem)
  }
  .menu-button__line:nth-of-type(2) {
    top: min(20px, 1.25rem)
  }
  .menu-button__line:nth-of-type(3) {
    top: min(32px, 2rem)
  }
  .menu-button.is-open .menu-button__line:nth-of-type(1) {
    top: min(20px, 1.25rem)
  }
  .menu-button.is-open .menu-button__line:nth-of-type(3) {
    top: min(20px, 1.25rem)
  }
  .menu-button__text {
    top: min(40px, 2.5rem);
    width: min(36px, 2.25rem)
  }
  .menu__close {
    width: min(40px, 2.5rem);
    height: min(40px, 2.5rem);
    border-radius: min(100px, 6.25rem);
    cursor: pointer
  }
  .menu__close span {
    width: min(24px, 1.5rem);
    height: min(2px, .125rem);
    border-radius: min(2px, .125rem)
  }
  .menu__block {
    width: min(900px, 56.25rem);
    height: auto;
    border-radius: min(25px, 1.5625rem);
    box-shadow: min(4px, .25rem) min(4px, .25rem) min(2px, .125rem) #4c4545bf
  }
  .menu__contents {
    padding: min(40px, 2.5rem) min(40px, 2.5rem)
  }
  .menu__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: min(40px, 2.5rem)
  }
  .menu__list {
    font-size: min(26px, 1.625rem)
  }
  .menu__list li span {
    transition: opacity .4s ease
  }
  .menu__list li span:hover {
    opacity: .6
  }
  .menu__text+.menu__image, .menu__image+.menu__image {
    margin: 0
  }
  .top-firstview {
    padding: min(96px, 6rem) 0 0
  }
  .top-firstview__images-item {
    aspect-ratio: 1280/750;
    max-height: calc(100vh - 96px)
  }
  .top-firstview__images-dots {
    padding: min(20px, 1.25rem) 0 0;
    gap: min(10px, .625rem)
  }
  .top-firstview__images-dots li button {
    width: min(8px, .5rem);
    height: min(8px, .5rem);
    cursor: pointer
  }
  .top-firstview__text {
    top: max(0px, 0rem);
    padding: min(42px, 2.625rem) 0 0
  }
  .top-firstview__text span {
    font-size: min(24px, 1.5rem)
  }
  .top-firstview__text small {
    margin: min(10px, .625rem) 0 0;
    font-size: min(14px, .875rem)
  }
  .top-firstview__logo {
    bottom: min(64px, 4rem)
  }
  .top-firstview__logo picture {
    width: min(580px, 36.25rem);
    margin: 0 auto
  }
  .top-price {
    margin: min(88px, 5.5rem) 0 0
  }
  .top-price>span {
    font-size: min(122px, 7.625rem)
  }
  .top-price>span small {
    font-size: min(72px, 4.5rem)
  }
  .top-price>small {
    margin: min(12px, .75rem) 0 0;
    font-size: min(30px, 1.875rem)
  }
  .top-transform {
    margin: min(142px, 8.875rem) 0 0
  }
  .top-transform__inner {
    width: min(880px, 55rem);
    margin: 0 auto
  }
  .top-transform__row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin: min(102px, 6.375rem) 0 0;
    gap: min(68px, 4.25rem)
  }
  .top-transform__heading {
    position: relative
  }
  .top-transform__heading:before, .top-transform__heading:after {
    position: absolute;
    top: 55%;
    width: 190px;
    height: 1px;
    translate: 0 40%;
    background-color: #c19a00;
    content: ""
  }
  .top-transform__heading:before {
    left: 0
  }
  .top-transform__heading:after {
    right: 0
  }
  .top-transform__heading picture {
    width: min(390px, 24.375rem)
  }
  .top-transform__block {
    flex: 0 0 min(406px, 25.375rem);
    width: min(406px, 25.375rem)
  }
  .top-transform__title span {
    margin: -1.0666666667vw 0 0
  }
  .top-transform__title span {
    font-size: min(40px, 2.5rem);
    white-space: nowrap
  }
  .top-transform__text {
    margin: min(40px, 2.5rem) 0 0;
    font-size: min(18px, 1.125rem);
    line-height: 2;
    letter-spacing: 0;
    white-space: nowrap
  }
  .top-transform__image {
    flex: 0 0 min(406px, 25.375rem);
    width: min(406px, 25.375rem)
  }
  .top-transform__video {
    width: min(880px, 55rem);
    margin: min(56px, 3.5rem) auto 0;
    padding: 0
  }
  .top-view {
    margin: min(140px, 8.75rem) 0 0;
    padding: min(112px, 7rem) 0 min(128px, 8rem)
  }
  .top-view__heading {
    font-size: min(48px, 3rem)
  }
  .top-view__text {
    margin: min(88px, 5.5rem) 0 0;
    font-size: min(26px, 1.625rem);
    line-height: 2.2
  }
  .top-view__more {
    margin: min(82px, 5.125rem) 0 0
  }
  .top-view__title {
    margin: min(154px, 9.625rem) 0 0
  }
  .top-view__title picture {
    width: min(398px, 24.875rem)
  }
  .top-view__vr {
    width: min(880px, 55rem);
    margin: min(42px, 2.625rem) auto 0;
    padding: 0
  }
  .top-strength {
    margin: min(128px, 8rem) 0 0
  }
  .top-strength__heading {
    font-size: min(48px, 3rem)
  }
  .top-strength__list {
    width: min(880px, 55rem);
    margin: min(112px, 7rem) auto 0;
    padding: 0;
    gap: min(52px, 3.25rem)
  }
  .top-strength__item {
    padding: 0 0 min(52px, 3.25rem)
  }
  .top-strength__item-heading {
    padding: min(18px, 1.125rem) 0 min(20px, 1.25rem);
    font-size: min(40px, 2.5rem)
  }
  .top-strength__item-title {
    margin: min(58px, 3.625rem) 0 0;
    font-size: min(30px, 1.875rem)
  }
  .top-strength__item-text {
    margin: min(80px, 5rem) 0 0;
    font-size: min(40px, 2.5rem)
  }
  .top-strength__item-title+.top-strength__item-text:before {
    top: max(-40px, -2.5rem);
    right: min(30px, 1.875rem);
    left: min(30px, 1.875rem)
  }
  .top-strength__item-more {
    margin: min(46px, 2.875rem) 0 0;
    padding: 0 2.6666666667vw
  }
  .top-strength__video {
    width: min(880px, 55rem);
    margin: min(140px, 8.75rem) auto 0;
    padding: 0
  }
  .top-wall {
    margin: min(112px, 7rem) 0 0
  }
  .top-wall__row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: min(880px, 55rem);
    margin: 0 auto
  }
  .top-wall__heading {
    font-size: min(48px, 3rem);
    letter-spacing: .24em
  }
  .top-wall__text {
    font-size: min(26px, 1.625rem)
  }
  .top-wall__image {
    flex: 0 0 min(402px, 25.125rem);
    width: min(402px, 25.125rem);
    margin: min(36px, 2.25rem) 0 0
  }
  .top-window {
    width: min(880px, 55rem);
    margin: min(140px, 8.75rem) auto 0
  }
  .top-window__video {
    padding: 0
  }
  .top-window__row {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    margin: min(110px, 6.875rem) 0 0
  }
  .top-window__heading {
    margin: 0;
    font-size: min(48px, 3rem)
  }
  .top-window__text {
    margin: min(74px, 4.625rem) 0 0;
    font-size: min(26px, 1.625rem)
  }
  .top-window__image {
    flex: 0 0 min(410px, 25.625rem);
    width: min(410px, 25.625rem);
    padding: 0
  }
  .top-pro {
    margin: min(176px, 11rem) 0 0
  }
  .top-pro__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(920px, 57.5rem);
    margin: min(104px, 6.5rem) auto 0
  }
  .top-pro__block {
    flex: 0 0 min(448px, 28rem);
    width: min(448px, 28rem)
  }
  .top-pro__heading {
    font-size: min(48px, 3rem)
  }
  .top-pro__name small, .top-pro__name span {
    padding: 0 min(22px, 1.375rem)
  }
  .top-pro__name small {
    font-size: min(24px, 1.5rem)
  }
  .top-pro__name span {
    margin: min(12px, .75rem) 0 0;
    font-size: min(38px, 2.375rem)
  }
  .top-pro__text {
    margin: min(60px, 3.75rem) 0 0;
    padding: 0 min(22px, 1.375rem);
    font-size: min(18px, 1.125rem)
  }
  .top-pro__name+.top-pro__text:before {
    top: max(-30px, -1.875rem);
    right: 0;
    left: 0
  }
  .top-pro__image {
    flex: 0 0 min(400px, 25rem);
    width: min(400px, 25rem);
    margin: 0;
    padding: 0
  }
  .top-pro__images {
    width: min(944px, 59rem);
    margin: 0 auto;
    padding: 0
  }
  .top-pro__images .splide__slide p {
    font-size: min(20px, 1.25rem)
  }
  .top-pro__images .splide__slide picture {
    aspect-ratio: 944/558
  }
  .top-pro__images .splide__slide picture img {
    width: 100%;
    height: 100%
  }
  .top-bim {
    width: min(880px, 55rem);
    margin: min(116px, 7.25rem) auto 0
  }
  .top-bim__heading {
    font-size: min(48px, 3rem)
  }
  .top-bim__text {
    margin: min(68px, 4.25rem) 0 0;
    font-size: min(26px, 1.625rem)
  }
  .top-bim__video {
    margin: min(92px, 5.75rem) 0 0;
    padding: 0
  }
  .top-lifestyle {
    margin: min(132px, 8.25rem) 0 0
  }
  .top-lifestyle__heading {
    font-size: min(40px, 2.5rem)
  }
  .top-lifestyle__title {
    width: min(280px, 17.5rem);
    font-size: min(18px, 1.125rem)
  }
  .top-lifestyle__images {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    width: min(880px, 55rem);
    margin: 0 auto
  }
  .top-lifestyle__images-arrows {
    margin: min(50px, 3.125rem) 0 0;
    gap: min(16px, 1rem)
  }
  .top-lifestyle__images .splide__track {
    flex: 0 0 min(468px, 29.25rem);
    width: min(468px, 29.25rem);
    margin: 0
  }
  .top-lifestyle__images .splide__slide {
    aspect-ratio: 468/570
  }
  .top-lifestyle__images .splide__slide p {
    height: min(106px, 6.625rem);
    padding: min(14px, .875rem) min(20px, 1.25rem);
    font-size: min(16px, 1rem)
  }
  .top-lifestyle__images-dots {
    padding: min(20px, 1.25rem) 0 0;
    gap: min(10px, .625rem)
  }
  .top-lifestyle__images-dots li button {
    width: min(8px, .5rem);
    height: min(8px, .5rem)
  }
  .top-lifestyle__cursor {
    right: min(16px, 1rem);
    bottom: min(120px, 7.5rem);
    width: min(139px, 8.6875rem);
    height: min(170px, 10.625rem)
  }
  .top-lifestyle-popup__close {
    width: min(40px, 2.5rem);
    height: min(40px, 2.5rem);
    border-radius: min(100px, 6.25rem);
    cursor: pointer
  }
  .top-lifestyle-popup__close span {
    width: min(24px, 1.5rem);
    height: min(2px, .125rem);
    border-radius: min(2px, .125rem)
  }
  .top-lifestyle-popup__block {
    width: min(440px, 27.5rem);
    height: auto;
    max-height: calc(100vh - min(50px, 3.125rem));
    border-radius: min(25px, 1.5625rem);
    box-shadow: min(4px, .25rem) min(4px, .25rem) min(2px, .125rem) #4c4545bf
  }
  .top-lifestyle-popup__contents {
    padding: min(40px, 2.5rem) min(40px, 2.5rem)
  }
  .top-lifestyle-popup__contents .splide__slide {
    max-height: calc(100vh - min(98px, 6.125rem));
    overflow: auto
  }
  .top-lifestyle-popup__contents picture, .top-lifestyle-popup__contents img {
    width: min(360px, 22.5rem);
    margin: 0 auto
  }
  .top-lifestyle-popup__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: min(40px, 2.5rem)
  }
  .top-suggestion {
    margin: min(136px, 8.5rem) 0 0
  }
  .top-suggestion__block {
    top: 0;
    bottom: 0;
    left: auto;
    width: 68%;
    padding: 0 0 0 min(172px, 10.75rem)
  }
  .top-suggestion__heading {
    font-size: min(34px, 2.125rem)
  }
  .top-suggestion__title {
    font-size: min(46px, 2.875rem);
    line-height: 1.4
  }
  .top-suggestion__title span {
    font-size: min(72px, 4.5rem)
  }
  .top-suggestion__list {
    margin: min(64px, 4rem) 0 0;
    gap: min(34px, 2.125rem)
  }
  .top-suggestion__item {
    padding: 0 0 min(10px, .625rem) min(10px, .625rem)
  }
  .top-suggestion__item:before {
    top: max(-5px, -.3125rem);
    right: max(-5px, -.3125rem);
    bottom: min(5px, .3125rem);
    left: min(5px, .3125rem)
  }
  .top-suggestion__item {
    flex: 0 0 min(138px, 8.625rem);
    width: min(138px, 8.625rem);
    height: min(138px, 8.625rem);
    font-size: min(32px, 2rem)
  }
  .top-floor {
    margin: min(114px, 7.125rem) 0 0;
    background-color: #b89519
  }
  .top-floor__inner {
    position: relative;
    width: min(1280px, 80rem);
    margin: 0 auto;
    padding: 0 0 0 min(64px, 4rem)
  }
  .top-floor__heading {
    z-index: 1;
    position: absolute;
    top: 50%;
    right: min(132px, 8.25rem);
    translate: 0 -50%;
    text-align: center
  }
  .top-floor__heading small {
    z-index: 1;
    position: relative;
    flex: 0 0 min(94px, 5.875rem);
    width: min(94px, 5.875rem);
    height: min(94px, 5.875rem);
    margin: 0 auto;
    background-color: #fff;
    color: #c19a02;
    font-size: min(22px, 1.375rem)
  }
  .top-floor__heading small:before {
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 2px solid #b89519;
    content: ""
  }
  .top-floor__heading small:after {
    z-index: -2;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    translate: max(-5px, -.3125rem) min(5px, .3125rem);
    background-color: #fff;
    content: ""
  }
  .top-floor__heading span {
    display: block;
    margin: min(36px, 2.25rem) 0 0;
    color: #fff;
    font-size: min(42px, 2.625rem);
    line-height: 1.6;
    text-align: center
  }
  .top-floor__item:before {
    display: none
  }
  .top-floor__title {
    left: max(-40px, -2.5rem);
    width: min(65px, 4.0625rem)
  }
  .top-floor__image {
    width: min(768px, 48rem)
  }
  .top-facility {
    margin: min(114px, 7.125rem) 0 0;
    background-color: #0086cf
  }
  .top-facility__inner {
    position: relative;
    width: min(1280px, 80rem);
    margin: 0 auto;
    padding: 0 min(64px, 4rem) 0 min(450px, 28.125rem)
  }
  .top-facility__heading {
    z-index: 1;
    position: absolute;
    top: 50%;
    left: min(105px, 6.5625rem);
    translate: 0 -50%;
    text-align: center
  }
  .top-facility__heading small {
    z-index: 1;
    position: relative;
    flex: 0 0 min(94px, 5.875rem);
    width: min(94px, 5.875rem);
    height: min(94px, 5.875rem);
    margin: 0 auto;
    background-color: #fff;
    color: #0086cf;
    font-size: min(22px, 1.375rem)
  }
  .top-facility__heading small:before {
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 2px solid #0086cf;
    content: ""
  }
  .top-facility__heading small:after {
    z-index: -2;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    translate: max(-5px, -.3125rem) min(5px, .3125rem);
    background-color: #fff;
    content: ""
  }
  .top-facility__heading span {
    display: block;
    margin: min(36px, 2.25rem) 0 0;
    color: #fff;
    font-size: min(42px, 2.625rem);
    line-height: 1.6;
    text-align: center
  }
  .top-facility__item:before {
    display: none
  }
  .top-facility__title {
    right: max(-34px, -2.125rem);
    width: min(65px, 4.0625rem)
  }
  .top-facility__image {
    width: min(768px, 48rem)
  }
  .top-finance {
    margin: min(114px, 7.125rem) 0 0;
    background-color: #7e0063
  }
  .top-finance__inner {
    position: relative;
    width: min(1280px, 80rem);
    margin: 0 auto;
    padding: 0 0 0 min(64px, 4rem)
  }
  .top-finance__heading {
    z-index: 1;
    position: absolute;
    top: 50%;
    right: min(80px, 5rem);
    translate: 0 -50%;
    text-align: center
  }
  .top-finance__heading small {
    z-index: 1;
    position: relative;
    flex: 0 0 min(94px, 5.875rem);
    width: min(94px, 5.875rem);
    height: min(94px, 5.875rem);
    margin: 0 auto;
    background-color: #fff;
    color: #7e0063;
    font-size: min(22px, 1.375rem)
  }
  .top-finance__heading small:before {
    z-index: -1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 2px solid #7e0063;
    content: ""
  }
  .top-finance__heading small:after {
    z-index: -2;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    translate: max(-5px, -.3125rem) min(5px, .3125rem);
    background-color: #fff;
    content: ""
  }
  .top-finance__heading span {
    display: block;
    margin: min(36px, 2.25rem) 0 0;
    color: #fff;
    font-size: min(42px, 2.625rem);
    line-height: 1.6;
    text-align: center
  }
  .top-finance__block {
    width: min(768px, 48rem);
    padding: min(32px, 2rem) min(64px, 4rem) min(30px, 1.875rem)
  }
  .top-finance__block:before {
    display: none
  }
  .top-finance__row {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start
  }
  .top-finance__row+.top-finance__row {
    position: relative;
    margin: min(60px, 3.75rem) 0 0
  }
  .top-finance__row+.top-finance__row:before {
    position: absolute;
    top: -30px;
    right: 0;
    left: 0;
    height: 1px;
    background-color: #7e0063;
    content: ""
  }
  .top-finance__title {
    left: max(-20px, -1.25rem);
    width: min(48px, 3rem)
  }
  .top-finance__subtitle {
    flex: 0 0 min(172px, 10.75rem);
    width: min(172px, 10.75rem);
    padding: min(12px, .75rem) 0 0;
    font-size: min(20px, 1.25rem);
    line-height: 1.6
  }
  .top-finance__subtitle:after {
    display: none
  }
  .top-finance__list {
    position: relative;
    flex: 0 0 min(468px, 29.25rem);
    width: min(468px, 29.25rem);
    padding: 0
  }
  .top-finance__list:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: calc(100% + 34px);
    background-color: #7e0063;
    content: ""
  }
  .top-finance__row+.top-finance__row .top-finance__list:before {
    top: auto;
    bottom: 0
  }
  .top-finance__item picture {
    min-height: min(76px, 4.75rem)
  }
  .top-finance__item p {
    font-size: min(14px, .875rem)
  }
  .top-finance__item.item01 picture {
    width: min(82px, 5.125rem)
  }
  .top-finance__item.item02 picture {
    width: min(80px, 5rem)
  }
  .top-finance__item.item03 picture {
    width: min(76px, 4.75rem)
  }
  .top-finance__item.item04 picture {
    width: min(90px, 5.625rem)
  }
  .top-finance__item.item05 picture {
    width: min(72px, 4.5rem)
  }
  .top-finance__item.item06 picture {
    width: min(76px, 4.75rem)
  }
  .top-line {
    margin: min(136px, 8.5rem) 0 0
  }
  .top-line__title {
    font-size: min(52px, 3.25rem)
  }
  .top-line__title picture {
    width: min(312px, 19.5rem);
    translate: 0 min(32px, 2rem)
  }
  .top-line__more {
    width: min(680px, 42.5rem);
    margin: min(58px, 3.625rem) auto 0
  }
  .top-line__more a {
    height: min(152px, 9.5rem);
    border-radius: min(28px, 1.75rem)
  }
  .top-line__more a:hover {
    background-color: #00a600
  }
  .top-line__more a:hover picture:nth-of-type(1) {
    opacity: 0
  }
  .top-line__more a:hover picture:nth-of-type(2) {
    opacity: 1
  }
  .top-line__more picture {
    width: min(380px, 23.75rem)
  }
  .top-line__text {
    margin: min(22px, 1.375rem) 0 0;
    font-size: min(20px, 1.25rem)
  }
  .footer {
    margin: min(148px, 9.25rem) 0 0;
    padding: min(142px, 8.875rem) 0 min(192px, 12rem)
  }
  .footer__logo picture {
    width: min(520px, 32.5rem)
  }
  .footer__company {
    width: min(674px, 42.125rem);
    margin: min(78px, 4.875rem) auto 0;
    padding: 0
  }
  .footer__intro {
    margin: min(120px, 7.5rem) 0 0;
    font-size: min(30px, 1.875rem)
  }
  .footer__philosophy {
    margin: min(118px, 7.375rem) 0 0;
    font-size: min(18px, 1.125rem)
  }
  .footer__shop {
    margin: min(122px, 7.625rem) 0 0;
    font-size: min(30px, 1.875rem)
  }
  .footer__map {
    width: min(674px, 42.125rem);
    margin: min(48px, 3rem) auto 0
  }
  .footer__map iframe {
    aspect-ratio: 674/426
  }
  .footer__tel {
    margin: min(52px, 3.25rem) 0 0
  }
  .footer__tel a {
    padding: 0 0 0 min(74px, 4.625rem);
    font-size: min(38px, 2.375rem)
  }
  .footer__tel a:before {
    width: min(50px, 3.125rem);
    height: min(34px, 2.125rem)
  }
}