@charset "UTF-8";
* {
  min-height: 0;
  box-sizing: border-box;
}

body {
  font-family: "YakuHanJP", "Noto Sans JP", sans-serif;
  color: #000;
  padding-top: 0 !important;
  text-align: justify;
}
body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
}

.wrap {
  font-size: 17px;
  letter-spacing: 0;
  line-height: 1.6;
  font-weight: 400;
  overflow: hidden;
}
@media screen and (max-width: 1220px) {
  .wrap {
    font-size: 15px;
  }
}
@media screen and (max-width: 800px) {
  .wrap {
    font-size: 14px;
    font-weight: 400;
  }
}
.wrap img {
  max-width: 100%;
  vertical-align: bottom;
}

/* common */
.pc {
  display: block !important;
}
@media screen and (max-width: 800px) {
  .pc {
    display: none !important;
  }
}

.sp {
  display: none !important;
}
@media screen and (max-width: 800px) {
  .sp {
    display: block !important;
  }
}

.pc-inline {
  display: inline-block !important;
}
@media screen and (max-width: 800px) {
  .pc-inline {
    display: none !important;
  }
}

.sp-inline {
  display: none !important;
}
@media screen and (max-width: 800px) {
  .sp-inline {
    display: inline !important;
  }
}

a:hover {
  opacity: 0.8;
}

picture {
  display: block;
}

.super {
  font-size: 0.8em;
  vertical-align: super;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn {
  position: relative;
  width: 100%;
  max-width: 450px;
  height: 100px;
  margin: auto;
  display: grid;
  place-items: center;
  background-color: #2BAC78;
  color: #fff;
  border-radius: 100px;
  padding: 0 40px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .btn {
    height: 80px;
    padding: 0 20px;
  }
}
.btn::after {
  content: "";
  width: 14px;
  height: 12px;
  background-image: url(../img/arrow-right.svg);
  background-size: auto;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 38px;
  margin: auto;
}
@media screen and (max-width: 800px) {
  .btn::after {
    right: 23px;
  }
}
.btn > p {
  font-size: 25px;
  font-weight: 700;
  line-height: 1.3;
}
@media screen and (max-width: 800px) {
  .btn > p {
    font-size: 22px;
  }
}
.btn > p span {
  font-size: 20px;
  font-weight: 500;
  display: block;
}
@media screen and (max-width: 800px) {
  .btn > p span {
    font-size: 18px;
  }
}
.btn_gray {
  background-color: #565656;
}

.cmn-cv {
  display: none;
}

/*アニメーション
********************************/
.js-fadein,
.js-slideInLeft,
.js-slideInRight,
.js-scaleUp {
  opacity: 0;
}

.js-fadein.js-on {
  animation: fadeUp 1.3s cubic-bezier(0, 0.9, 0.59, 0.93);
  animation-fill-mode: forwards;
  animation-delay: 1s;
}

.js-slideInLeft.js-on {
  animation: slideInLeft 0.8s ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
@media screen and (max-width: 800px) {
  .js-slideInLeft.js-on {
    animation: slideInLeft 0.5s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 1s;
  }
}

.js-slideInRight.js-on {
  animation: slideInRight 0.8s ease-in-out;
  animation-fill-mode: forwards;
  animation-delay: 0.3s;
}
@media screen and (max-width: 800px) {
  .js-slideInRight.js-on {
    animation: slideInRight 0.5s ease-in-out;
    animation-fill-mode: forwards;
    animation-delay: 1s;
  }
}

.js-scaleUp.js-on {
  animation: scaleUp 0.4s cubic-bezier(0.5, 2, 0.92, 0.99) both;
}

.js-textUp.js-on span {
  opacity: 0;
  display: inline-block;
  animation: textUp 0.5s ease-out forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes slideInRight {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes scaleUp {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes textUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* common */
.section-inner {
  width: 100%;
  max-width: 1260px;
  margin: auto;
  padding: 0 20px;
}
@media screen and (max-width: 800px) {
  .section-inner {
    padding: 0 20px;
  }
}

.makuhari-header {
  background: #fff;
}

.makuhari-header-container {
  max-width: 1700px;
  margin: auto;
  width: 100%;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1220px) {
  .makuhari-header-container {
    padding: 0.8196721311vw 1.1475409836vw;
  }
}
@media screen and (max-width: 800px) {
  .makuhari-header-container {
    padding: 15px;
  }
}

.makuhari-header-logo img {
  width: 87px;
}
@media screen and (max-width: 1220px) {
  .makuhari-header-logo img {
    width: 7.131147541vw;
  }
}
@media screen and (max-width: 800px) {
  .makuhari-header-logo img {
    width: 70px;
  }
}

.makuhari-header-menu {
  display: flex;
}

.makuhari-header-menu a {
  position: relative;
  display: flex;
  align-items: center;
  color: #000;
  font-size: 17px;
  font-weight: 500;
  padding-bottom: 5px;
  line-height: 1;
}
@media screen and (max-width: 1220px) {
  .makuhari-header-menu a {
    font-size: 1.393442623vw;
  }
}
@media screen and (max-width: 800px) {
  .makuhari-header-menu a {
    font-size: 12px;
  }
}
.makuhari-header-menu a + a {
  margin-left: 35px;
}
@media screen and (max-width: 800px) {
  .makuhari-header-menu a + a {
    margin-left: 10px;
  }
}
.makuhari-header-menu a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
}
.makuhari-header-menu a::after {
  content: "";
  display: block;
  margin-left: 7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 7px 0 7px;
  border-color: #000 transparent transparent transparent;
}
@media screen and (max-width: 1220px) {
  .makuhari-header-menu a::after {
    border-width: 0.9836065574vw 0.5737704918vw 0 0.5737704918vw;
  }
}
@media screen and (max-width: 800px) {
  .makuhari-header-menu a::after {
    margin-left: 1px;
    border-width: 7px 4px 0 4px;
  }
}
.makuhari-header-menu a:focus::before {
  border-bottom: solid 1px #000;
  animation: border_link 1s ease forwards;
}
@media (hover) {
  .makuhari-header-menu a:hover::before {
    border-bottom: solid 1px #000;
    animation: border_link 1s ease forwards;
  }
}

@keyframes border_link {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.mv {
  position: relative;
  max-width: 1920px;
  width: 100%;
  margin: auto;
}
.mv img {
  width: 100%;
}
@media screen and (max-width: 800px) {
  .mv {
    padding-top: 0px;
    background: #fff;
  }
}

.mv-scroll {
  width: 70px;
  position: absolute;
  bottom: -89px;
  height: 114px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1220px) {
  .mv-scroll {
    bottom: -7.2950819672vw;
    width: 5.737704918vw;
    height: 9.3442622951vw;
  }
}
@media screen and (max-width: 800px) {
  .mv-scroll {
    bottom: -9%;
    width: 11.7142857143vw;
    height: 22.8571428571vw;
  }
}
.mv-scroll span {
  position: absolute;
  top: 39%;
  right: -20%;
  font-size: 11px;
}
@media screen and (max-width: 1220px) {
  .mv-scroll span {
    font-size: 0.9016393443vw;
  }
}
@media screen and (max-width: 800px) {
  .mv-scroll span {
    left: -25%;
    top: 40%;
    font-size: 2.8571428571vw;
  }
}
.mv-scroll::before {
  content: "";
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 114px;
  background-color: #000;
  animation: scrollLine 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@media screen and (max-width: 1220px) {
  .mv-scroll::before {
    height: 9.3442622951vw;
  }
}
@media screen and (max-width: 800px) {
  .mv-scroll::before {
    height: 22.8571428571vw;
  }
}

@keyframes scrollLine {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
.section-wrap {
  width: 100%;
  height: 100%;
  background-image: url(../img/wrap_bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 800px) {
  .section-wrap {
    background-image: url(../img/wrap_bg_sp.png);
  }
}

.future {
  padding: 100px 0 150px;
}
@media screen and (max-width: 1220px) {
  .future {
    padding: 8.1967213115vw 0 12.2950819672vw;
  }
}
@media screen and (max-width: 800px) {
  .future {
    padding: 50px 0 80px;
  }
}

@media screen and (max-width: 800px) {
  .future-inner {
    max-width: 100%;
  }
}

.future-title {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  color: #2BAC78;
}
@media screen and (max-width: 1220px) {
  .future-title {
    font-size: 2.868852459vw;
  }
}
@media screen and (max-width: 800px) {
  .future-title {
    font-size: 26px;
  }
}

.future-text {
  margin-top: 40px;
  font-size: 17px;
  text-align: center;
  line-height: 3;
}
@media screen and (max-width: 1220px) {
  .future-text {
    margin-top: 2.868852459vw;
    font-size: 1.393442623vw;
  }
}
@media screen and (max-width: 800px) {
  .future-text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 2;
  }
}

.future-image-wrap {
  position: relative;
  margin-top: 69px;
  height: 819px;
}
@media screen and (max-width: 1220px) {
  .future-image-wrap {
    margin-top: 5.6557377049vw;
    height: 67.131147541vw;
  }
}
@media screen and (max-width: 800px) {
  .future-image-wrap {
    margin-top: 14.2857142857vw;
    height: 0;
    padding-top: max(235px, 67.144%);
  }
}

.future-image {
  position: absolute;
  border-radius: 10px;
}

.future-image-01 {
  width: 47.54%;
  max-width: 580px;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1220px) {
  .future-image-01 {
    width: 47.5409836066vw;
  }
}
@media screen and (max-width: 800px) {
  .future-image-01 {
    width: max(42.428571vw, 166px);
  }
}

.future-image-02 {
  width: 60.66%;
  max-width: 740px;
  top: 35%;
  right: 0;
}
@media screen and (max-width: 1220px) {
  .future-image-02 {
    width: 60.6557377049vw;
  }
}
@media screen and (max-width: 800px) {
  .future-image-02 {
    width: max(54.571429vw, 212px);
  }
}

.future-image-03 {
  width: 29.51%;
  bottom: 0;
  left: 6%;
}
@media screen and (max-width: 1220px) {
  .future-image-03 {
    width: 31.1475409836vw;
  }
}
@media screen and (max-width: 800px) {
  .future-image-03 {
    width: 29.1428571429vw;
    width: max(26.142857vw, 102px);
  }
}

.point {
  position: relative;
  padding: 0;
}
.point-title_block {
  padding: 72px 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/point_title_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 800px) {
  .point-title_block {
    padding: 47px 20px;
    text-align: center;
    background-image: url(../img/point_title_bg_sp.png);
  }
}

.point-title {
  width: 674px;
  margin: auto;
}
@media screen and (max-width: 1220px) {
  .point-title {
    width: 55.2459016393vw;
  }
}
@media screen and (max-width: 800px) {
  .point-title {
    width: 100%;
  }
}

.point-block {
  margin: 0 auto;
}
.point-block-container {
  margin: 0 auto;
  max-width: 100%;
}
@media screen and (max-width: 1220px) {
  .point-block-container {
    width: 58.2786885246vw;
  }
}
@media screen and (max-width: 800px) {
  .point-block-container {
    width: 100%;
  }
}

.area-wrap {
  position: relative;
  padding-top: 100px;
  padding-bottom: 150px;
}
@media screen and (max-width: 800px) {
  .area-wrap {
    padding-top: 50px;
    padding-bottom: 80px;
  }
}
.area-wrap.area01 {
  background: linear-gradient(170.87deg, #EBEBEB 0%, #F4F4F6 25.48%, #FFFFFF 49.52%, #F2F2F3 75.96%, #DBDBDB 100%);
}
.area-wrap.area01::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/area01_bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
}
@media screen and (max-width: 800px) {
  .area-wrap.area01::before {
    background-image: url(../img/area01_bg_sp.png);
  }
}
.area-wrap.area02::before {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/area02_bg.png);
  background-repeat: no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  z-index: 0;
}
@media screen and (max-width: 800px) {
  .area-wrap.area02::before {
    background-image: url(../img/area02_bg_sp.png);
    background-position: bottom;
    background-size: cover;
  }
}
.area-wrap > .section-inner {
  position: relative;
}

.area-title {
  text-align: center;
}
.area-title .title {
  font-size: 35px;
}
@media screen and (max-width: 800px) {
  .area-title .title {
    font-size: 26px;
  }
}
.area-title .title span {
  color: #2BAC78;
}
.area-title .text {
  margin-top: 40px;
  font-size: 17px;
}
@media screen and (max-width: 800px) {
  .area-title .text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 2;
  }
}
.area-title .btnArea {
  margin-top: 40px;
}
@media screen and (max-width: 800px) {
  .area-title .btnArea {
    margin-top: 30px;
  }
}

.area-block {
  position: relative;
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 100px;
}
@media screen and (max-width: 800px) {
  .area-block {
    margin-top: 50px;
    gap: 50px;
  }
}
.area-block_reverse .area-box:nth-child(odd) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 800px) {
  .area-block_reverse .area-box:nth-child(odd) {
    flex-direction: row;
  }
}
.area-block_reverse .area-box:nth-child(even) {
  flex-direction: row;
}

.area-box {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 800px) {
  .area-box {
    flex-wrap: wrap;
    gap: 20px;
  }
}
.area-box:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 800px) {
  .area-box:nth-child(even) {
    flex-direction: row;
  }
}
.area-box_img {
  position: relative;
  width: 48.36%;
  max-width: 590px;
  flex-shrink: 0;
}
@media screen and (max-width: 800px) {
  .area-box_img {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}
.area-box_text {
  width: 100%;
}
.area-box_text .title {
  font-size: 30px;
  border-bottom: 10px solid;
  padding-bottom: 40px;
  margin-bottom: 30px;
}
@media screen and (max-width: 800px) {
  .area-box_text .title {
    font-size: 20px;
    border-bottom: 5px solid;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}
.area-box_text .text {
  line-height: 2;
}
.area-box_full {
  flex-wrap: wrap;
}
.area-box_full .area-box_img {
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.area-box_full .area-box_text {
  width: 100%;
}
.area-box_jishin {
  margin-top: 100px;
}
@media screen and (max-width: 800px) {
  .area-box_jishin {
    margin-top: 0;
  }
}
@media screen and (max-width: 800px) {
  .area-box_jishin .area-box_img {
    margin-top: 20px;
    text-align: right;
  }
  .area-box_jishin .area-box_img img {
    width: max(74.359vw, 290px);
    margin-left: auto;
  }
}
.area-box_jishin .sub_img {
  position: absolute;
  top: -103px;
  left: -71px;
  width: 59.324%;
  max-width: 350px;
}
@media screen and (max-width: 800px) {
  .area-box_jishin .sub_img {
    top: -20px;
    left: 0;
    width: max(40vw, 140px);
    max-width: none;
  }
}
@media screen and (max-width: 800px) {
  .area-box.flex_sp {
    flex-wrap: nowrap;
    gap: 10px;
    flex-direction: row-reverse !important;
  }
  .area-box.flex_sp .area-box_img {
    width: 44.29%;
  }
}

/* LDKcollection photo area */
.ldk-collection {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ldk-collection__item {
  display: block;
  border-radius: 16px;
  overflow: hidden;
}

.ldk-collection__item img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

/* SP：縦3積み */
@media screen and (max-width: 800px) {
  .ldk-collection {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}
.modelhouse {
  background: #ccd9e1;
  padding: 62px 0;
}
@media screen and (max-width: 1220px) {
  .modelhouse {
    padding: 5.0819672131vw 0;
  }
}
@media screen and (max-width: 800px) {
  .modelhouse {
    padding: 8.5714285714vw 0;
    margin-top: 14.2857142857vw;
  }
}

.modelhouse-title {
  width: 81%;
}
@media screen and (max-width: 800px) {
  .modelhouse-title {
    width: 100%;
  }
}

.modelhouse-block-01 {
  margin-top: 50px;
  position: relative;
}
@media screen and (max-width: 1220px) {
  .modelhouse-block-01 {
    margin-top: 4.0983606557vw;
  }
}
@media screen and (max-width: 800px) {
  .modelhouse-block-01 {
    margin-top: 31px;
    display: flex;
    flex-direction: column-reverse;
  }
}

.modelhouse-block-01-inner {
  border-top: 12px solid #000;
  border-bottom: 12px solid #000;
  width: 40%;
  padding: 43px 0;
}
@media screen and (max-width: 1220px) {
  .modelhouse-block-01-inner {
    padding: 3.5245901639vw 0;
    border-width: 0.8196721311vw;
  }
}
@media screen and (max-width: 800px) {
  .modelhouse-block-01-inner {
    border-width: 5px;
    width: 100%;
    margin-top: 35px;
    padding: 20px 0;
  }
}

.modelhouse-block-01-title {
  font-size: 63px;
  text-align: center;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 1220px) {
  .modelhouse-block-01-title {
    font-size: 5.1639344262vw;
  }
}
@media screen and (max-width: 800px) {
  .modelhouse-block-01-title {
    font-size: 45px;
  }
}

.modelhouse-block-01-title span {
  font-size: 37px;
  display: block;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1220px) {
  .modelhouse-block-01-title span {
    font-size: 3.0327868852vw;
  }
}
@media screen and (max-width: 800px) {
  .modelhouse-block-01-title span {
    font-size: 28px;
  }
}

.modelhouse-block-01-text {
  margin-top: 21px;
  padding-left: 14px;
  font-size: 17px;
  line-height: 2.2;
}
@media screen and (max-width: 1220px) {
  .modelhouse-block-01-text {
    margin-top: 1.7213114754vw;
    padding-left: 1.1475409836vw;
    font-size: 1.393442623vw;
  }
}
@media screen and (max-width: 800px) {
  .modelhouse-block-01-text {
    margin: 14px auto 0;
    padding-left: 24px;
    width: 280px;
    font-size: 14px;
  }
}

.modelhouse-block-01-image {
  width: 80%;
  position: absolute;
  right: -30%;
  top: 0;
  width: 683px;
}
@media screen and (max-width: 1220px) {
  .modelhouse-block-01-image {
    width: 55.9836065574vw;
  }
}
@media screen and (max-width: 800px) {
  .modelhouse-block-01-image {
    position: static;
    width: calc(100% + 9.375vw);
  }
}

.modelhouse-block-02 {
  margin-top: 107px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1220px) {
  .modelhouse-block-02 {
    margin-top: 8.7704918033vw;
  }
}
@media screen and (max-width: 800px) {
  .modelhouse-block-02 {
    margin-top: 35px;
    display: block;
  }
}

.modelhouse-block-02-image {
  width: 639px;
}
@media screen and (max-width: 1220px) {
  .modelhouse-block-02-image {
    width: 52.3770491803vw;
  }
}
@media screen and (max-width: 800px) {
  .modelhouse-block-02-image {
    width: 100%;
  }
}

.modelhouse-block-02-text {
  margin-left: 43px;
  width: 154px;
}
@media screen and (max-width: 1220px) {
  .modelhouse-block-02-text {
    margin-left: 3.5245901639vw;
    width: 12.6229508197vw;
  }
}
@media screen and (max-width: 800px) {
  .modelhouse-block-02-text {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
  }
}

.modelhouse-gallery {
  margin-top: 71px;
}
@media screen and (max-width: 1220px) {
  .modelhouse-gallery {
    margin-top: 5.8196721311vw;
  }
}
@media screen and (max-width: 800px) {
  .modelhouse-gallery {
    margin-top: 40px;
  }
}

.modelhouse-gallery-title {
  width: 228px;
  margin: auto;
}
@media screen and (max-width: 1220px) {
  .modelhouse-gallery-title {
    width: 18.6885245902vw;
  }
}
@media screen and (max-width: 800px) {
  .modelhouse-gallery-title {
    width: 122px;
  }
}

.modelhouse-gallery-slider {
  position: relative;
  margin-top: 28px;
  padding: 35px 0;
  background: #f0f4f6;
}
@media screen and (max-width: 1220px) {
  .modelhouse-gallery-slider {
    margin-top: 2.2950819672vw;
    padding: 2.868852459vw 0;
  }
}
@media screen and (max-width: 800px) {
  .modelhouse-gallery-slider {
    margin-top: 20px;
    padding: 30px 0;
  }
}

.modelhouse-gallery-slide {
  width: 569px;
  opacity: 0.5;
}
.modelhouse-gallery-slide.swiper-slide-active {
  opacity: 1;
}
@media screen and (max-width: 1220px) {
  .modelhouse-gallery-slide {
    width: 46.6393442623vw;
  }
}
@media screen and (max-width: 800px) {
  .modelhouse-gallery-slide {
    width: 65.7142857143vw;
  }
}

.modelhouse-gallery-slider-button-wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  margin: auto;
  z-index: 1;
}
@media screen and (max-width: 1220px) {
  .modelhouse-gallery-slider-button-wrap {
    width: 57.3770491803vw;
  }
}
@media screen and (max-width: 800px) {
  .modelhouse-gallery-slider-button-wrap {
    top: 50%;
    height: 7.1428571429vw;
    width: 82.8571428571vw;
  }
}

.modelhouse-gallery-slider-button-prev,
.modelhouse-gallery-slider-button-next {
  width: auto;
  height: auto;
  z-index: 1;
}
@media screen and (max-width: 800px) {
  .modelhouse-gallery-slider-button-prev,
  .modelhouse-gallery-slider-button-next {
    top: 0;
    margin-top: 0;
  }
}

.modelhouse-gallery-slider-button-prev {
  left: 0;
}

.modelhouse-gallery-slider-button-next {
  right: 0;
}

.modelhouse-gallery-slider-button-prev img,
.modelhouse-gallery-slider-button-next img {
  width: 35px;
}
@media screen and (max-width: 1220px) {
  .modelhouse-gallery-slider-button-prev img,
  .modelhouse-gallery-slider-button-next img {
    width: 2.868852459vw;
  }
}
@media screen and (max-width: 800px) {
  .modelhouse-gallery-slider-button-prev img,
  .modelhouse-gallery-slider-button-next img {
    width: 7.1428571429vw;
  }
}

.modelhouse-gallery-slider-button-prev::after,
.modelhouse-gallery-slider-button-next::after {
  display: none;
}

.floormap {
  text-align: center;
}
@media screen and (max-width: 800px) {
  .floormap {
    padding: 0 20px;
    padding-top: 50px;
  }
}

.floormap-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px 0;
  margin: 56px auto 0;
  width: 288px;
  border: 2px solid #000;
  border-radius: 70px;
  color: #000;
  font-size: 21px;
  text-align: center;
  overflow: hidden;
  transition: color 0.3s;
}
@media screen and (max-width: 1220px) {
  .floormap-button {
    padding: 0.5737704918vw 0;
    margin-top: vw1356(56);
    width: 23.606557377vw;
    font-size: 1.7213114754vw;
  }
}
@media screen and (max-width: 800px) {
  .floormap-button {
    border-width: 2px;
    margin-top: 40px;
    max-width: 100%;
    padding: 12px 0 13px;
    height: auto;
    width: 250px;
    font-size: 18px;
    line-height: 1;
  }
}
.floormap-button:hover {
  color: #fff;
}
.floormap-button:hover::before {
  transform: scaleX(1);
}
.floormap-button:hover::after {
  border-color: transparent transparent transparent #fff;
}
.floormap-button::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform-origin: left top;
  z-index: -1;
}
.floormap-button::after {
  content: "";
  display: block;
  margin-left: 7px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #000;
  transition: border-color 0.2s;
}
@media screen and (max-width: 1220px) {
  .floormap-button::after {
    margin-left: 0.5737704918vw;
    border-width: 0.5737704918vw 0 0.5737704918vw 0.9836065574vw;
  }
}
@media screen and (max-width: 800px) {
  .floormap-button::after {
    margin-left: 10px;
    border-width: 6px 0 6px 10px;
  }
}

.modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  padding: 100px 60px;
  z-index: 999999;
  overflow: scroll;
}
@media screen and (max-width: 800px) {
  .modal {
    padding: 70px 20px;
  }
}

.modal-bg {
  content: "";
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: fixed;
  width: 100%;
  display: block;
  top: 0;
  left: 0;
  z-index: -1;
}

.modal-content {
  position: relative;
  background: #fff;
  max-width: 100%;
  padding: 40px;
  width: 1040px;
  margin: auto;
}
@media screen and (max-width: 800px) {
  .modal-content {
    padding: 20px;
    width: 100%;
  }
}

.modal-content-img {
  margin: 20px auto 0;
  text-align: center;
}
.modal-content-img.modal01 {
  width: 100%;
  max-width: 960px;
}
.modal-content-img img {
  width: 100%;
}

.modal-content-text {
  margin-top: 20px;
  font-size: 12px;
}

.modal-content-notes {
  margin-top: 20px;
}
.modal-content-notes.modal02 {
  width: 90%;
  margin: 20px auto 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .modal-content-notes.modal02 {
    width: 100%;
    display: block;
  }
}
.modal-content-notes .big {
  padding: 0px 10px 4px 0;
  font-weight: bold;
}
@media screen and (max-width: 800px) {
  .modal-content-notes .big {
    display: block;
    text-align: center;
  }
}
.modal-content-notes p {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 12px;
}

.modal-content-close {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: -50px;
  width: 40px;
  height: 50px;
}
.modal-content-close span {
  position: absolute;
  top: 15px;
  left: 0;
  background: #fff;
  width: 40px;
  height: 2px;
}
.modal-content-close span:nth-of-type(1) {
  transform: rotate(45deg);
}
.modal-content-close span:nth-of-type(2) {
  transform: rotate(135deg);
}

.info {
  padding: 0px 0 150px;
}
@media screen and (max-width: 1220px) {
  .info {
    padding: 0vw 0 3.5245901639vw;
  }
}
@media screen and (max-width: 800px) {
  .info {
    padding: 0px 0 80px;
  }
}

.info-title {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 1220px) {
  .info-title {
    font-size: 1.9672131148vw;
  }
}
@media screen and (max-width: 800px) {
  .info-title {
    font-size: 18px;
    gap: 13px;
  }
}
.info-title::after {
  background-color: #231815;
  content: "";
  flex-grow: 1;
  height: 1px;
  margin-left: 1em;
}
@media screen and (max-width: 800px) {
  .info-title::after {
    display: block;
    width: 100%;
    margin-left: 0;
  }
}

.info-block {
  margin-top: 30px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1220px) {
  .info-block {
    margin-top: 2.4590163934vw;
  }
}
@media screen and (max-width: 800px) {
  .info-block {
    margin-top: 20px;
    display: block;
    text-align: center;
  }
}

.info-image {
  width: 50%;
}
@media screen and (max-width: 800px) {
  .info-image {
    width: 100%;
    margin-top: 20px;
    margin-left: 0;
  }
}

.info-text {
  width: 50%;
  padding-left: 30px;
}
@media screen and (max-width: 1220px) {
  .info-text {
    padding-left: 2.4590163934vw;
  }
}
@media screen and (max-width: 800px) {
  .info-text {
    display: inline-block;
    width: auto;
    margin-top: 10px;
    padding-left: 0;
    text-align: left;
  }
}
.info-text_box .title {
  font-size: 21px;
}
@media screen and (max-width: 800px) {
  .info-text_box .title {
    font-size: 18px;
  }
}
.info-text_box .text {
  line-height: 2;
}
.info-text_box + .info-text_box {
  margin-top: 40px;
}
@media screen and (max-width: 800px) {
  .info-text_box + .info-text_box {
    margin-top: 20px;
  }
}

.info-btn {
  margin-top: 100px;
}
@media screen and (max-width: 800px) {
  .info-btn {
    margin-top: 50px;
  }
}

.info-link {
  margin-top: 107px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 1220px) {
  .info-link {
    margin-top: 8.7704918033vw;
  }
}
@media screen and (max-width: 800px) {
  .info-link {
    flex-direction: column-reverse;
    margin-top: 40px;
  }
}

.info-link-item {
  width: calc(50% - 20px);
}
@media screen and (max-width: 800px) {
  .info-link-item {
    width: 100%;
    max-width: 375px;
    margin: 30px auto 0;
  }
}
.info-link-item + .info-link-item {
  margin-left: 40px;
}
@media screen and (max-width: 800px) {
  .info-link-item + .info-link-item {
    margin-top: 0;
    margin-left: auto;
  }
}

.info-link-text {
  position: relative;
  margin: auto;
  font-size: 18px;
}
@media screen and (max-width: 1220px) {
  .info-link-text {
    font-size: 1.4754098361vw;
  }
}
@media screen and (max-width: 800px) {
  .info-link-text {
    max-width: 100%;
    font-size: 14px;
  }
}
@media screen and (max-width: 800px) {
  .info-link-text.present {
    width: 260px;
  }
}
.info-link-text.present::before, .info-link-text.present::after {
  content: "";
  background: #000;
  width: 1.4px;
  height: 80px;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 1220px) {
  .info-link-text.present::before, .info-link-text.present::after {
    height: 6.5573770492vw;
  }
}
@media screen and (max-width: 800px) {
  .info-link-text.present::before, .info-link-text.present::after {
    height: 61px;
  }
}
.info-link-text.present::before {
  left: 30px;
  transform: rotate(-30deg);
}
@media screen and (max-width: 1220px) {
  .info-link-text.present::before {
    left: 2.4590163934vw;
  }
}
@media screen and (max-width: 800px) {
  .info-link-text.present::before {
    left: 0;
    transform: rotate(-25deg);
  }
}
.info-link-text.present::after {
  right: 30px;
  transform: rotate(30deg);
}
@media screen and (max-width: 1220px) {
  .info-link-text.present::after {
    right: 2.4590163934vw;
  }
}
@media screen and (max-width: 800px) {
  .info-link-text.present::after {
    right: 0;
    transform: rotate(25deg);
  }
}

.info-link-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 0;
  margin: 50px auto 0;
  width: 400px;
  max-width: 100%;
  border-radius: 70px;
  background: #4c4948;
  border: 2px solid #4c4948;
  color: #fff;
  font-size: 30px;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 1220px) {
  .info-link-button {
    padding: 1.1475409836vw 0;
    margin-top: 4.0983606557vw;
    width: 36.1475409836vw;
    font-size: 2.4590163934vw;
  }
}
@media screen and (max-width: 800px) {
  .info-link-button {
    margin-top: 20px;
    padding: 18px 0 19px;
    width: 270px;
    max-width: 100%;
    font-size: 20px;
    line-height: 1;
  }
}
.info-link-button:hover {
  color: #4c4948;
}
.info-link-button:hover::before {
  opacity: 1;
  transform: scaleX(1);
}
.info-link-button:hover::after {
  border-color: transparent transparent transparent #4c4948;
}
.info-link-button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 70px;
  transform: scaleX(0);
  transition: transform 0.4s cubic-bezier(0.215, 0.61, 0.355, 1), opacity 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  transform-origin: 0 0;
  z-index: -1;
}
.info-link-button::after {
  content: "";
  display: block;
  margin-top: 2px;
  margin-left: 12px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 14.5px;
  border-color: transparent transparent transparent #fff;
}
@media screen and (max-width: 1220px) {
  .info-link-button::after {
    margin-left: 0.9836065574vw;
    border-width: 0.737704918vw 0 0.737704918vw 1.1885245902vw;
  }
}
@media screen and (max-width: 800px) {
  .info-link-button::after {
    margin-left: 10px;
    border-width: 6px 0 6px 9px;
  }
}

.info-link-image {
  margin-top: 30px;
}
@media screen and (max-width: 800px) {
  .info-link-image {
    margin-top: 5px;
  }
}

.info-notes {
  font-size: 11px;
  width: 100vw;
  margin: 57px calc(50% - 50vw) 0;
  text-align: center;
}
@media screen and (max-width: 1220px) {
  .info-notes {
    margin-top: 4.6721311475vw;
    font-size: 0.9016393443vw;
  }
}
@media screen and (max-width: 800px) {
  .info-notes {
    margin: 40px auto 0;
    width: 100%;
    font-size: 10px;
    text-align: left;
  }
}

.footer {
  width: 100%;
  background: #000;
  padding: 20px 0;
  color: #fff;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 800px) {
  .footer {
    display: block;
  }
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
  width: 90.625%;
  max-width: 1000px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .footer-inner {
    display: block;
  }
}

.footer-link > a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
}
.footer-link > a + a {
  margin-left: 16px;
}

.footer-sns {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .footer-sns {
    margin-top: 3.4482758621%;
    width: 100%;
  }
}
.footer-sns a {
  background: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}
.footer-sns a img {
  width: 20px;
  margin: auto;
  height: auto;
  display: block;
  transform: translateY(50%);
}
.footer-sns a.youtube img {
  transform: translateY(95%);
}
.footer-sns a + a {
  margin-left: 6px;
}

.footer-copyright {
  width: 100%;
  max-width: 1000px;
  display: block;
  margin: auto;
  margin-top: 17px;
  padding-top: 17px;
  letter-spacing: 0.02em;
  font-size: 10px;
  text-align: center;
  border-top: 1px solid #fff;
}/*# sourceMappingURL=style.css.map */