@charset "utf-8";

/* -------------------
    reset
------------------- */
h1, h2, p, ul, dl, dd {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
}

/* -------------------
    共通
------------------- */
* {
    box-sizing: border-box;
}

/*html,*/
/*body {*/
/*    scroll-behavior: smooth;*/
/*    scroll-padding-top: 100px;*/
/*}*/

body {
    font-size: 13px;
    font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    line-height: 2;
    letter-spacing: .1em;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.pc-none {
    display: none;
}

.sp-none {
    display: block;
}

.br-1000 {
    display: none;
}

.display-none {
    display: none;
}

.fade-in-element {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 2s, transform 1s;
}

.fade-in-element.fade-in {
    opacity: 1;
    transform: translateY(0);
}

/* -------------------
    TOP
------------------- */
/* HEADER */
.header {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 20;
}

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0 50px;
}

.header__container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 23px;
}

.header__logo {
    max-width: 134px;
}

.header__text {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
}

/* HEADER CONTACT */
.header-contact {
    position: fixed;
    top: 0;
    left: 0;
    padding: 18px 0;
    background: #ffffff;
    width: 100%;
    z-index: 20;
}

.header-contact__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 0 45px 0 50px;
}

.header-contact__container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 23px;
}

.header-contact__logo {
    max-width: 134px;
}

.header-contact__text {
    font-size: 12px;
    font-weight: 700;
    color: #0051A4;
}


/* NAVIGATION */
.gnav {
    max-width: 592px;
    width: 100%;
    color: #fff;
}
.gnav__nav {
    display: flex;
    justify-content: space-between;
    gap: 5px;
}
.gnav__list:nth-of-type(even) {
    width: 1px;
    height: 32px;
    background: #fff;
}

.gnav__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    transition: color .3s;
}

.gnav__link:hover {
    color: #E98B2A;
}

.gnav__link--en {
    line-height: 16px;
}

.gnav__link--ja {
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
}

/**/
.gnav-contact {
    max-width: 592px;
    width: 100%;
    color: #000;
}
.gnav-contact__nav {
    display: flex;
    justify-content: space-between;
    gap: 5px;
}
.gnav-contact__list:nth-of-type(even) {
    width: 1px;
    height: 32px;
    background: #0051A4;
}

.gnav-contact__link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1px;
    transition: color .3s;
    width: auto;
}

.gnav-contact__link:hover {
    color: #E98B2A;
}

.gnav-contact__link--en {
    line-height: 16px;
}

.gnav-contact__link--ja {
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
}


/* mv */
.mv {
    position: relative;
    height: 1000px;
    /*background: url(../images/mv/mv_img.jpg) center center / cover;*/
}

.mv__parallax--box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mv__parallax--elm {
    height: 100%;
}

.mv__parallax--elm .mv__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mv::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    background: #000;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0));
}

.mv__wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.mv__container {
    position: absolute;
    top: 372px;
    /*bottom: calc(1000px - 100svh + 77.5px);*/
    left: 79px;
    /*z-index: 10;*/
}


.mv__catch {
    display: flex;
    flex-direction: column;
    /* 子要素の高さが+2px加わっているので減らす */
    gap: calc(12px - 2px);
    margin-bottom: calc(47.6px - 2px);
}

@keyframes title_text {
    0% {
        transform: scaleX(0);
        opacity: 1;
    }
    100% {
        transform: scaleX(100%);
        opacity: 1;
    }
}

@keyframes slide_bg {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(100%);
    }
}

.mv__catch--top,
.mv__catch--middle,
.mv__catch--bottom {
    position: relative;
    line-height: 1;
    overflow: hidden;
    animation: title_text 1.0s linear 2s forwards;
    transform-origin: left center;
    opacity: 0;
}

.mv__catch--top::after,
.mv__catch--middle::after,
.mv__catch--bottom::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    animation: slide_bg 1.0s linear 3.5s forwards;
}

.mv__catch--top {
    display: inline-block;
    max-width: 278px;
    padding: 9.4px 11.8px 7.1px 12.5px;
    background: #fff;
}

.mv__catch--top .mv__catch--pic {
    display: inline-block;
}


.mv__catch--middle {
    display: inline-block;
    max-width: 217px;
    padding: 9.7px 15.8px 8.9px 12.5px;
    background: #fff;
}

.mv__catch--middle .mv__catch--pic {
    display: inline-block;
}

.mv__catch--bottom {
    display: inline-block;
    max-width: 325px;
    padding: 8.1px 14.4px 8.2px 12.5px;
    background: #fff;
}

.mv__catch--bottom .mv__catch--pic {
    display: inline-block;
}

.mv__text {
    margin-bottom: 19.7px;
}

.mv__button {
    position: relative;
    max-width: 284.42px;
    text-align: center;
}

.mv__button::after {
    content: "";
    position: absolute;
    bottom: -17px;
    right: -15px;
    width: 36.37px;
    height: 47.57px;
    background: url(../images/common/hand_icon.svg) center center / contain;
}

.mv__link {
    position: relative;
    display: block;
    padding: 12.2px 0;
    color: #fff;
    background: #E98B2A;
    border: 1px solid #fff;
    border-radius: 5px;
    overflow: hidden;
}


.mv__link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.mv__link:hover::after {
    transform: scale(1, 1);
}

.mv__link--span {
    position: relative;
    display: block;
    font-size: 11px;
    font-weight: 700;
    line-height: 12px;
    z-index: 1;
}

.mv__link:hover .mv__link--span {
    color: #E98B2A;
}

/* cta */
.cta {
    padding: 150px 0 655px;
    position: relative;
    /*width: 100%;*/
    z-index: 1;
}

.cta__abimg{
    position: absolute;
}

.shadow{
    box-shadow: 0px 0px 30px 0 rgba(0, 0, 0, 0.1);
}

.cta__abimg1{
    top: -80px;
    right: 50px;
    width: 320px;
    height: 213px;


}

.cta__abimg2{
    top: 0;
    left:-326px;
    width: 480px;
    height: 346px;
    z-index: 0;
}

.cta__abimg3{
    top: -256px;
    right:113px;
    width: 208px;
    height: 138px;
    z-index: 0;

}

.cta__abimg4{
    display: block;
    width: 1156px;
    height: 596px;
    bottom: 151px;
    left:calc(50% + 21px);
    transform: translateX(-50%);
    z-index: -1;
}

.cta__abimg4-1{
    bottom: 0;
    left: 142px;
    width: 704px;
    height: 404px;
}

.cta__abimg4-2{
    top: 0;
    right: 0;
    width: 496px;
    height: 346px;
    z-index: -1;
}

.cta__abimg4-3{
    top: 123px;
    left: 0;
    width: 208px;
    height: 138px;
}

.cta__abimg5{
    bottom: -89px;
    right: 101px;
    width: 267px;
    height: 178px;
}


.cta__wrapper {
    margin: 0 auto;
    max-width: 760px;
}

.cta__title {
    position: relative;
    margin-bottom: 50px;
    font-size: 21px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.33em;
    z-index: 1;
}

.cta__title--span {
    display: inline-block;
    padding-bottom: 3.5px;
    line-height: 1.4;
    border-bottom: 1px solid #000;
}

.cta__text--top {
    position: relative;
    margin-bottom: 54px;
    font-size: 14px;
    font-weight: 500;
    line-height: 2.4;
    letter-spacing: 4px;
    z-index: 1;
}

.cta__text--bottom {
    margin-bottom: 100.5px;
    font-size: 14px;
    font-weight: 500;
    line-height: 2.4;
    letter-spacing: 4px;
}

.cta__button {
    position: relative;
    margin: 0 auto;
    max-width: 345px;
    /*max-height: 70px;*/
    text-align: center;
}

.cta__button::after {
    content: "";
    position: absolute;
    bottom: -33.9px;
    right: -20.3px;
    width: 51.76px;
    height: 67.7px;
    background: url(../images/common/hand_icon.svg) center center / contain;
}

.cta__link {
    position: relative;
    display: block;
    padding: 16px 0;
    color: #fff;
    background: #E98B2A;
    border: 1px solid #E98B2A;
    border-radius: 5px;
    overflow: hidden;
}

.cta__link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}
.cta__link:hover::after {
    transform: scale(1, 1);
}

.cta__link--en {
    position: relative;
    display: block;
    font-size: 19px;
    font-weight: 500;
    line-height: 23px;
    z-index: 1;
}

.cta__link--ja {
    position: relative;
    display: block;
    font-size: 11px;
    font-weight: 700;
    line-height: 15px;
    z-index: 1;
}

.cta__link:hover .cta__link--en,
.cta__link:hover .cta__link--ja {
    color: #E98B2A;
}

/* APPROACH */
.renovation {
    padding: 80px 0 164px;
}

.renovation__wrapper {
    padding: 0 50px;
}

.renovation__title {
    margin-bottom: 96px;
    padding-left: calc(96px - 50px);
}

.renovation__title--en {
    display: block;
    font-size: 39px;
    font-weight: 300;
    line-height: 1.23;
}

.renovation__title--ja {
    display: block;
    font-size: 13px;
    font-weight: 500;
    line-height: 19px;
    letter-spacing: 0.22em;
}

.renovation__list {
    margin: 0 auto;
    max-width: 831px;

}

.renovation__item {
    display: flex;
    gap: 36px;
}

.renovation__item + .renovation__item {
    margin-top: 60px;
}

.renovation__pic {
    position: relative;
    /*flex-shrink: 0;*/
    max-width: 387px;
}

.renovation__pic::after {
    content: "SUDOホーム施工事例";
    position: absolute;
    bottom: 0;
    right: 4px;
    font-size: 9px;
    color: #fff;
}

/*.renovation__item:nth-of-type(3) .renovation__pic::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: -40px;*/
/*    left: -78px;*/
/*    width: 185px;*/
/*    aspect-ratio: 185 / 139;*/
/*    background: url(../images/renovation/renovation_img-3-.jpg) center center / cover;*/
/*    box-shadow: 0 0 30px rgba(0, 0, 0, .07);*/
/*}*/

/*.renovation__item:last-of-type .renovation__pic::before {*/
/*    content: "";*/
/*    position: absolute;*/
/*    top: -40px;*/
/*    left: -78px;*/
/*    width: 185px;*/
/*    aspect-ratio: 185 / 139;*/
/*    background: url(../images/renovation/renovation_img-4-.jpg) center center / cover;*/
/*    box-shadow: 0 0 30px rgba(0, 0, 0, .07);*/
/*}*/

.renovation__img {
}

.renovation__contents {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 5px;
    max-height: 263px;
}

.renovation__heading {
    font-weight: 600;
    line-height: 1.2;
}

.renovation__heading--num {
    margin-left: 13px;
    font-size: 55px;
    font-weight: 300;
}

.renovation__box {
}

.renovation__lead {
    display: inline-block;
    margin-bottom: 21px;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: 0.25em;
}

.renovation__lead span{
    display: inline-block;
    padding-bottom: 1.5px;
    line-height: 26px;
    border-bottom: 1px solid #000;
}

.renovation__text {
    max-width: 408px;
}


/* MODELROOM */
.modelroom {
    position: relative;
    padding: 72px 0 328px;
    background: url(../images/modelroom/modelroom_bg.jpg) center center / cover;
}

.modelroom__wrapper {
    padding-top: 80px;
}

.modelroom__title {
    margin: 0 auto 72px;
    padding: 0 50px;
    max-width: calc(1200px - 2 * 95px + 2 * 50px);
}

.modelroom__title--en {
    padding-right: 32px;
    font-size: 39px;
    font-weight: 300;
    position: relative;
}

.modelroom__title--ja {
    padding-left: 30px;
    font-size: 13px;
    font-weight: 500;
    position: relative;
    top: -5px;
    left: 0;
}
.modelroom__title--ja::before{
    position: absolute;
    top: -7px;
    left: 0;
    content: "";
    width: 1px;
    height: 160%;
    background: #000;
}

.concept {
    margin-bottom: 150px;
}

.concept__wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 50px 300px;
    max-width: calc(831px + 2 * 22px + 2 * 73px + 2 * 50px);
}

.concept__scroll {
}
.concept__scroll--inner {
    position: sticky;
    top: 100px;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.concept__scroll--bar {
    /*position: sticky;*/
    /* headerの高さ +  */
    /*top: calc(10px);*/
    width: 1px;
    height: 75px;
    background: #000;
}
.concept__scroll--text {
    /*position: sticky;*/
    /*top: calc(90px);*/
    font-size: 18px;
    font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
}

.concept__container {
    position: relative;
    max-width: 831px;
    width: 100%;
}

.concept__title {
    margin-bottom: 22px;
}

.concept__title--top {
    margin-bottom: 5px;
    display: block;
    font-size: 13px;
    font-weight: 700;
    line-height: 19px;
}

.concept__title--bottom {
    display: block;
    font-size: 33px;
    font-weight: 600;
    line-height: 40px;
}

.concept__text {
    position: relative;
    line-height: 2.4;
    max-width: calc(831px + 2 * 22px + 2 * 73px + 2 * 50px);
}

.cta__abimgml1{
    bottom: 0;
    right: -116px;
    width: 289px;
    height: 196px;
    z-index: -1;
}

.cta__abimgml2{
    bottom: 116px;
    right: -166px;
    width: 252px;
    height: 351px;
    z-index: -1;
}

.cta__abimgml3{
    bottom: 0;
    right: calc(-38px + 202px);
    width: 348px;
    height: 238px;
}

.concept__button {
    position: relative;
    /* bottom: 0;
    right: 0; */
    margin-top: 80px;
    max-width: 256px;
    width: 100%;
    max-height: 58px;
    text-align: center;
}

.concept__button::after {
    content: "";
    position: absolute;
    bottom: -33.9px;
    right: -20.3px;
    width: 51.76px;
    height: 67.7px;
    background: url(../images/common/hand_icon.svg) center center / contain;
}

.concept__link {
    position: relative;
    display: block;
    padding: 14px 0 10px;
    color: #fff;
    background: #E98B2A;
    border: 1px solid #E98B2A;
    border-radius: 5px;
    overflow: hidden;
}

.concept__link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

.concept__link:hover::after {
    transform: scale(1, 1);
}

.concept__link--en {
    position: relative;
    display: block;
    font-size: 19px;
    font-weight: 500;
    line-height: 20px;
    z-index: 1;
}

.concept__link--ja {
    position: relative;
    display: block;
    margin-top: -1px;
    font-size: 11px;
    font-weight: 700;
    line-height: 15px;
    z-index: 1;
}

.concept__link:hover .concept__link--en,
.concept__link:hover .concept__link--ja {
    color: #E98B2A;
}


.point {
    margin-bottom: 150px;
    position: relative;
}

.point__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto;
    padding: 0 50px;
    max-width: calc(831px + 2 * 22px + 2 * 73px + 2 * 50px);
}

.point .scroll {
}
.point .scroll__inner {
    position: sticky;
    top: 100px;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;

}
.point .scroll__bar {
    /*position: sticky;*/
    /* headerの高さ +  */
    /*top: calc(10px);*/
    width: 1px;
    height: 75px;
    background: #000;
}
.point .scroll__text {
    /*position: sticky;*/
    /*top: calc(90px);*/
    font-size: 18px;
    font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
}


.point__list {
    max-width: 831px;
    width: 100%;
}

.point__item{
    display: flex;    
    justify-content: space-between;
}

.point_left{
    position: relative;
    /* min-width: 387px; */
    width: 47%;
    height: 355px;
    margin-right: 80px;
}

.point_left .img{
    height: 355px;
    overflow: hidden;
}

.point_left .img img{
    object-fit: cover;
    height: 355px;
}

.point_left .point__title{
    position: absolute;
    top: 0;
    right: -30px;
    display: inline-block;
    writing-mode: vertical-rl;

    /* background-color: skyblue; */
}


.point_right{
    /* min-width: 387px; */
    width: 44%;
    padding-top: 26px;
}

.point_right .point__title{
    margin-bottom: 30px;
}


.point__item + .point__item {
    margin-top: 75px;
}


.point__title--point {
    font-weight: 600;
}

.point__title--num {
    padding-top: 3px;
    font-weight: 600;
}

.point__title--text {
    font-size: 18px;
    font-weight: 500;
    /* line-height: 22px; */
}

/* .point__title--text::before {
    content: "";
    position: absolute;
    top: 2px;
    left: 20px;
    width: 1px;
    height: 18px;
    background: #000;
} */

.point__heading {
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 22px;
    font-weight: 500;
    font-family: "Zen Kaku Gothic New";
}

.point__lead {
    display: inline-block;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 500;
    font-family: "Zen Kaku Gothic New";
    line-height: 26px;
    border-bottom: 1px solid #000;
}
.point__lead br{
    display: none;
}

.point__text {
    font-family: "Zen Kaku Gothic New";
    letter-spacing: 1.2px;
}

.point__text--small {
    font-size: 10px;
}

.plan {
}

.plan__wrapper {
    position: relative;
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto;
    padding: 0 50px;
    max-width: calc(831px + 2 * 22px + 2 * 73px + 2 * 50px);
}



.plan .scroll{
    position: relative;
    top: -37px;
}
.plan .scroll__inner {
    position: sticky;
    top: 100px;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.plan .scroll__bar{
    /*position: sticky;*/
    /* headerの高さ +  */
    /*top: calc(10px);*/
    width: 1px;
    height: 75px;
    background: #000;
}
.plan .scroll__text{
    /*position: sticky;*/
    /*top: calc(90px);*/
    font-size: 18px;
    font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
}


.plan__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 1100px;
    height: 604px;
    background: #fff;
}

.plan__block {
}

.plan__block .plan__button {
    bottom: 30px;
    left: auto;
    right: 30px;
    z-index: 1;
}

.plan__area {
    position: relative;
    margin-bottom: 100px;
    padding: 77px 0 77px;
    /*height: 604px;*/
}

.plan__inner {
    position: relative;
    margin: 0 auto;
    /* max-width: 391.74px; */
    max-width: 633px;
}

.plan__floor {
}

.plan__floor--after1,
.plan__floor--after2,
.plan__floor--after3,
.plan__floor--before {
    position: absolute;
}

.plan__floor--after1 {
    top: 88px;
    left: -100px;
}

.plan__floor--after2 {
    top: 265px;
    right: -135px;
}

.plan__floor--after3 {
    top: 275px;
    left: -60px;
}

.plan__floor--before {
    top: 168px;
    left: -41px;
}

.plan__number--1,
.plan__number--2,
.plan__number--3,
.plan__number--4,
.plan__number--5,
.plan__number--6 {
    position: absolute;
}

.plan__number--1 {
    top: 320px;
    right: -50px;
}

.plan__number--2 {
    bottom: 245px;
    left: -196px;
}

.plan__number--3 {
    top: 71px;
    right: -191px;
}

.plan__number--4 {
    top: -32px;
    right: -45px;
}

.plan__number--5 {
    top: -32px;
    right: 219px;

    /*調整前*/
    /*top: 270px;*/
    /*left: -270px;*/
}

.plan__number--6 {
    top: 320px;
    right: -140px;
}

.plan__number--1.display-none,
.plan__number--2.display-none,
.plan__number--3.display-none,
.plan__number--4.display-none,
.plan__number--5.display-none,
.plan__number--6.display-none {
    display: none;
}

.plan__button {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    font-size: 12px;
    font-weight: 600;
    line-height: 24px;
    text-align: center;
}

.plan__button--after {
    width: 79px;
    color: #2377CC;
    background: #0051A4;
    /*cursor: pointer;*/
}

.plan__button.after .plan__button--after {
    color: #fff;
}

.plan__button--before {
    width: 79px;
    color: #F0B980;
    background: #E98B2A;
    /*cursor: pointer;*/
}

.plan__button.before .plan__button--before {
    color: #fff;
}

.plan__block .plan__button--after,
.plan__block .plan__button--before {
    padding: 6px 0;
    width: 102px;
    cursor: pointer;
}

.plan__list {
    margin: 0 auto;
    max-width: 831px;
}

.plan__item {
    position: relative;
    display: flex;
    gap: 30px;
    align-items: center;
    border-top: 1px solid #D6D6D6;
    border-bottom: 1px solid #D6D6D6;
}

.plan__item + .plan__item {
    margin-top: 72px;
}

.plan__num {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 44px;
    aspect-ratio: 1;
    color: #fff;
    border-radius: 50%;
    background: #F6F6F6;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.plan__num::before {
    content: "";
    position: absolute;
    width: 36px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #0051A4;
    z-index: -1;
}

.plan__box {
    position: relative;
    flex-shrink: 0;
}

.plan__pic {
    max-width: 327px;
}

.plan__contents {
}

.plan__heading {
    display: inline-block;
    margin-bottom: 13.3px;
    padding-bottom: 2.5px;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    border-bottom: 1px solid #000;
}

.plan__text {
}

/* slider */
.swiper__container {
    position: absolute;
    bottom: calc(-60px - 145px);
    padding-bottom: 32px;
}

.swiper {
    height: 355px;
}

.swiper__wrapper {}

.swiper .swiper__slide {
    flex-shrink: 0;
    width: auto;
}

.swiper__img {
    width: auto;
    height: 100%;
    object-fit: contain;
}

.swiper__container .swiper-pagination {
    bottom: 0 !important;
}

.swiper-pagination .swiper-pagination-bullet {
    margin: 0 7px;
    width: 4px;
    height: 4px;
    opacity: 1;
}

.swiper-pagination .swiper-pagination-bullet-active {
    background: #0051A4;
}

.swiper__container .swiper-button-prev,
.swiper__container .swiper-button-next {
    user-select: none;
    height: 52px;
    width: 52px;
    left: 50%;
    right: 50%;
}

.swiper__container .swiper-button-prev {
    transform: translateX(-310px);
}
.swiper__container .swiper-button-next {
    transform: translateX(260px);
}

.swiper__container .swiper-button-prev::after,
.swiper__container .swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 52px;
    margin: auto;
    width: 52px;
}

.swiper__container .swiper-button-prev::after {
    background-image: url(../images/carousel/carousel_prev.svg);
}

.swiper__container .swiper-button-next::after {
    background-image: url(../images/carousel/carousel_next.svg);
}

/* DATA / ACCESS */
.data-access {
    margin-top: 195px;
    padding: 70px 0 133px;
}

.data-access__wrapper {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 0 auto;
    padding: 80px 0 50px;
    max-width: calc(831px + 2 * 22px + 2 * 73px);
}

.data-access .scroll__inner {
    position: sticky;
    top: 100px;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.data-access .scroll__bar{
    /*position: sticky;*/
    /* headerの高さ +  */
    /*top: calc(10px);*/
    width: 1px;
    height: 75px;
    background: #000;
}
.data-access .scroll__text{
    /*position: sticky;*/
    /*top: calc(90px);*/
    font-size: 18px;
    font-family: "Montserrat", "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    letter-spacing: 0.15em;
    writing-mode: vertical-rl;
}


.data__list {
    margin-bottom: 100.5px;
}

.data__box {
    display: flex;
}

.data__term {
    flex-shrink: 0;
    padding: 18.5px 0 19px;
    width: 158.5px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #0051A4;
}

.data__term--small {
    font-size: 11px;
}

.data__box:first-of-type .data__term {
    border-top: 1px solid #0051A4;
}

.data__desc {
    padding: 20.5px 0 18px;
    width: 100%;
    border-bottom: 1px solid #DDDDDD;
}

.data__box:first-of-type .data__desc {
    border-top: 1px solid #DDDDDD;
}

.access__container {
    display: flex;
    gap: 30px;
    margin: 0 auto;
    max-width: 830px;
}
.access__map{
    width: 464px;
    height: 277px;
}

.access__contents {
    flex-shrink: 0;
}
.access__title {
    font-weight: 600;
    line-height: 1.1;
    font-size: 13px;
    letter-spacing: 0.0145em;
    margin-bottom: 3px;
}

.access__heading {
    display: inline-block;
    margin-bottom: 4px;
    font-size: 25px;
    font-weight: 500;
    border-bottom: 1px solid #000;
    line-height: 28px;
}

.access__heading--sub {
    font-size: 12px;
    vertical-align: middle;
}

.access__heading--note {
    margin-bottom: 16px;
    font-size: 11px;
    line-height: 16px;
}

.access__list {
}

.access__box {
    display: flex;
    padding: 20px 0 10px;
    border-bottom: 1px solid #DDDDDD;
}

.access__box:first-of-type {
    padding-top: 0;
}

.access__term {
    flex-shrink: 0;
    width: 81px;
}

.access__desc {
    line-height: 1.62;
}

.access__box:not(:first-of-type),
.access__box:not(:first-of-type) .access__desc {
    line-height: 1.46;
}

.data-access__scroll {
}


/* CONTACT */
.contact {
    margin-bottom: 200px;
    padding-top: 80px;
}

.contact__wrapper {
    padding: 0 50px;
}

.contact__container {
    position: relative;
    padding: 142px 83.5px 100px;
    margin: 0 auto;
    max-width: 998px;
    border: 1px solid #000;
}

.contact__title {
    position: absolute;
    top: 0;
    left: 50%;
    padding: 0 50px;
    text-align: center;
    background: #fff;
    transform: translate(-50%, -40%);
}

.contact__title--en {
    display: block;
    margin-bottom: 1px;
    font-size: 39px;
    font-weight: 300;
    line-height: 48px;
}

.contact__title--ja {
    display: block;
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
}

.contact__text {
    margin-bottom: 45px;
}

.wpcf7-form-control-wrap .wpcf7-form-control{
    width: 100%;
    border: none;
}


.modelhouse_req {
    font-family: "Noto Sans JP", YuGothic, "メイリオ", Meiryo, "ヒラギノ角ゴ proNw3", sans-serif;
    font-weight: normal;
    display: inline-block;
    font-size: 12px;
    color: #fff;
    background: #2061A0;
    /* margin: 0 0 0 15px; */
    padding: 2px 10px 4px;
    line-height: 1.2;
    width: auto;
}


.form__desc.model_h_form_table{
    display: flex;
    justify-content: flex-start;
}

.model_h_form_table_inner{
    display: flex;
    justify-content: flex-start;
    white-space: nowrap;
}

.model_h_form_table .model_h_form_table_inner:first-of-type{
margin-right: 10px;
}

.form__list {
    margin-bottom: 30px;
}

.form__box:not(:nth-last-of-type(1)):not(:nth-last-of-type(2)) {
  display: flex;
}

.form__box:last-of-type {
    align-items: normal;
}

.form__term {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 10px 14px 0;
    max-height: 62px;
    font-size: 12px;
    font-weight: 500;
    line-height: 17px;
    border-bottom: 1px solid #0051A4;
    white-space: nowrap;
    width: 100%;
    max-width: 159px;
    min-width: 159px;
}

.form__box:nth-last-of-type(2) .form__term {
    width: 100%;
    max-height: initial;
    max-width: initial;
    min-width: initial;
}

.form__box:last-of-type .form__term{
    display: flex;
    justify-content: flex-start;
    width: auto;
    max-height: none;
    white-space: normal;
    max-width: initial;
    min-width: initial;

    /* background-color: blue; */
}

.form__box:last-of-type .form__term small{
    margin-left: 5px;
}

.form__desc {
    padding: 30px 0 14px;
    width: 100%;
    max-height: 62px;
    border-bottom: 1px solid #EAEAEA;
}

.form__box:first-of-type .form__term,
.form__box:first-of-type .form__desc {
    padding-top: 0;
    max-height: 33px;
}

.form__box:nth-last-of-type(2) .form__desc {
    padding: 0;
    max-height: initial;
    border-bottom: 1px solid #0051A4;
}

.form__box:last-of-type .form__desc{
    padding: 14px 0;
    max-height: none;
    border-bottom: none;
}

.form__box:last-of-type .form__desc .wpcf7-list-item{
    font-size: 12.8px;
    margin: 0 15px 0 0;
    letter-spacing: 0.045em;
}

.form__box:last-of-type .form__desc .wpcf7-form-control{
    margin-top: 10px;
}


.form__desc p {
    line-height: 1;
}

.form__name,
.form__tel,
.form__zip,
.form__municipalities1,
.form__municipalities2,
.form__email {
    padding: 0;
    width: 100%;
    font-size: 12px;
    line-height: 17px;
    background-color: transparent;
    border: none;
}

::placeholder {
    color: #C1C1C1;
}

.form__prefectures {
    font-size: 12px;
    line-height: 17px;
    background-color: transparent;
    border: none;
}

.form__inquiry {
    padding: 14px 5px 0;
    width: 100%;
    height: 150px;
    font-size: 12px;
    line-height: 17px;
    background-color: transparent;
    border: none;
}

.form__check {
    margin-bottom: 50px;
    text-align: center;
    line-height: 1;
}

.form__check .wpcf7-list-item {
    margin: 0;
}

.form__link {
    margin-left: 9px;
    color: #E98B2A;
    border-bottom: 1px solid #E98B2A;
}

.form__button {
    margin-bottom: 20px;
    text-align: center;
}
.form__submit {
    display: inline-block;
    margin-left: 70px;
    padding: 19px 0 20px;
    max-width: 400px;
    width: 100%;
    font-size: 14px;
    font-weight: 900;
    line-height: 19px;
    letter-spacing: 2.2px;
    color: #fff;
    background-color: #E98B2A;
    border: none;
    border-radius: 5px;
}

.form__note {
    margin: 0 auto;
    max-width: 400px;
    font-size: 9px;
    letter-spacing: 2.2px;
}

/* CONTACT 確認画面 */
#contact-confirm .contact {
    padding-top: 200px;
}

#contact-confirm .form__box:nth-last-of-type(2) .form__desc p {
    padding: 14px 5px;
}

.confirm {
    margin-bottom: 200px;
    padding-top: 200px;
}

.confirm__wrapper {
    padding: 0 50px;
}

.confirm__container {
    position: relative;
    padding: 142px 83.5px 100px;
    margin: 0 auto;
    max-width: 998px;
    border: 1px solid #000;
}

.confirm__title {
    position: absolute;
    top: 0;
    left: 50%;
    padding: 0 50px;
    text-align: center;
    background: #fff;
    transform: translate(-50%, -40%);
}

.confirm__title--en {
    display: block;
    margin-bottom: 1px;
    font-size: 39px;
    font-weight: 300;
    line-height: 48px;
}

.confirm__title--ja {
    display: block;
    font-size: 15px;
    font-weight: 500;
    line-height: 21px;
}

.confirm__text {
    margin-bottom: 75px;
}

.confirm__list {
    margin-bottom: 100px;
}

.confirm__box:not(:last-of-type) {
    display: flex;
    align-items: center;
}

.confirm__term {
    padding: 30px 0 14px;
    width: 159px;
    font-size: 12px;
    font-weight: 500;
    line-height: 17px;
    border-bottom: 1px solid #0051A4;
}

.confirm__box:last-of-type .confirm__term {
    width: 100%;
}

.confirm__desc {
    padding: 30px 0 14px;
    width: 100%;
    border-bottom: 1px solid #EAEAEA;
}

.confirm__box:first-of-type .confirm__term,
.confirm__box:first-of-type .confirm__desc {
    padding-top: 0;
}

.confirm__box:last-of-type .confirm__desc {
    padding: 0;
    border-bottom: 1px solid #0051A4;
}

.confirm__desc p {
    line-height: 1;
}

.confirm__name,
.confirm__tel,
.confirm__zip,
.confirm__municipalities1,
.confirm__municipalities2,
.confirm__email {
    padding: 0;
    width: 100%;
    font-size: 12px;
    line-height: 17px;
    background-color: transparent;
    border: none;
}

::placeholder {
    color: #C1C1C1;
}

.confirm__prefectures {
    font-size: 12px;
    line-height: 17px;
    background-color: transparent;
    border: none;
}

.confirm__inquiry {
    padding: 14px 0 0;
    width: 100%;
    height: 150px;
    font-size: 12px;
    line-height: 17px;
    background-color: transparent;
    border: none;
}

.confirm__check {
    margin-bottom: 50px;
    text-align: center;
    line-height: 1;
}

.confirm__check .wpcf7-list-item {
    margin: 0;
}

.confirm__link {
    margin-left: 9px;
    color: #E98B2A;
    border-bottom: 1px solid #E98B2A;
}

.contact-confirm .wpcf7-form > p {
    max-width: 550px;
    margin: 0 auto;
}

.confirm__button {
    margin-bottom: 20px;
    text-align: center;
}
.confirm__submit {
    display: block;
    margin: 0 auto;
    padding: 19px 0 20px;
    max-width: 400px;
    width: 100%;
    font-size: 14px;
    font-weight: 900;
    line-height: 19px;
    letter-spacing: 2.2px;
    color: #fff;
    background-color: #E98B2A;
    border: none;
    border-radius: 5px;
}

.confirm__previous {
    display: block;
    margin: 0 auto;
    padding: 19px 0 20px;
    max-width: 400px;
    width: 100%;
    font-size: 14px;
    font-weight: 900;
    line-height: 19px;
    letter-spacing: 2.2px;
    /*color: #fff;*/
    /*background-color: #E98B2A;*/
    border: none;
    border-radius: 5px;
}

.confirm__note {
    margin: 0 auto;
    max-width: 400px;
    font-size: 9px;
    letter-spacing: 2.2px;
}

/*  THANKSページ */
.thanks {
    padding: 200px 0;
}
.thanks__wrapper {
    padding: 0 50px;
    margin: 0 auto;
    max-width: 1000px;
}
.thanks__title {
    margin-bottom: 20px;
}
.thanks__text {
    margin-bottom: 40px;
}
.thanks__button {}
.thanks__link {
    padding: 10px 20px;
    color: #fff;
    background: #e98b2a;
    border-radius: 5px;
}



/* SCROLL */
.scroll-contact {
    position: fixed;
    bottom: 50px;
    right: 50px;
    z-index: 2;
}



/* FOOTER */
.footer {
    position: relative;
    padding: 139px 0 10px;
    color: #fff;
    background: #043669;
}

.footer__wrapper {
    margin: 0 auto;
    max-width: 1200px;
}

.footer__container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 0 auto 118.8px;
    padding: 0 50px;
    max-width: calc(999px + 2 * 50px);
}

.footer__address--sp{
    display: none;
}

.footer__logo {
}

.footer__link {
    display: block;
    width: 168px;
}

.footer__img {
}

.footer__contents {
    max-width: 630px;
    width: 100%;
}

.footer__address {
    margin-bottom: 16.5px;
    line-height: 1.4;
}

.footer__copyright {
    padding-left: 10px;
    line-height: 11px;
}

.footer__small {
    display: block;
    font-size: 9px;
    letter-spacing: 1.45px;
}

/* FOOTER NAV */
.fnav {}

.fnav__nav {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.fnav__list:nth-of-type(even) {
    width: 1px;
    height: 32px;
    background: #fff;
}

.fnav__link {
    text-align: center;
    transition: color .3s;
}

.fnav__link:hover {
    color: #E98B2A;
}

.fnav__link--en {
    display: block;
    margin-bottom: 1px;
    font-weight: 400;
    line-height: 16px;
}

.fnav__link--ja {
    display: block;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.5;
}



/*
    1023px
*/
@media screen and (max-width: 1023px) {
    .concept .scroll{
        left: -4%;
    }
    .point .scroll{
        left: -4%;
    }
    .data-access .scroll{
        left: -4%;
    }
}

/*
    1000px
*/
@media screen and (max-width: 1000px) {
    .br-1000 {
        display: block;
    }

    /* HEADER */
    .header__wrapper {
        padding: 0 29px;
        gap: 10px;
    }
    .header__container {
        gap: 10px;
    }
    .header__text {
        font-size: 1.2vw;
    }

    /* HEADER CONTACT */
    .header-contact__wrapper {
        padding: 0 29px;
        gap: 10px;
    }
    .header-contact__container {
        gap: 10px;
    }
    .header-contact__text {
        font-size: 1.2vw;
    }


    /* NAVIGATION */
    .gnav__link--en {
        font-size: 1.3vw;
    }

    .gnav__link--ja {
        font-size: 1vw;
    }

    /* NAVIGATION CONTACT */
    .gnav-contact__link--en {
        font-size: 1.3vw;
    }

    .gnav-contact__link--ja {
        font-size: 1vw;
    }


    .renovation__lead {
        font-size: 1.8vw;
    }
    .renovation__text {
        font-size: 1.3vw;
    }

    /* MODELROOM */
    .plan__bg {
        height: 424px;
    }
    .plan__inner {
        max-width: 350px;
        /*width: 300px;*/
    }

    /* .plan__floor--after1 {
        top: 50px;
        left: -110px;
    }

    .plan__floor--after2 {
        top: 157px;
        right: -175px;
    }

    .plan__floor--after3 {
        top: 160px;
        left: -115px;
    } */

    .plan__floor--before {
        top: 95px;
        left: -172px;
    }

    .plan__number--1 .plan__img,
    .plan__number--2 .plan__img,
    .plan__number--3 .plan__img,
    .plan__number--4 .plan__img,
    .plan__number--5 .plan__img,
    .plan__number--6 .plan__img {
        /*width: 60%;*/
    }
    .plan__number--1 {
        top: 176px;
        right: -16px;
        max-width: 161px;
    }
    .plan__number--2 {
        bottom: 135px;
        left: -108px;
        max-width: 171px;
    }
    .plan__number--3 {
        top: 42px;
        right: -96px;
        max-width: 122px;
    }
    .plan__number--4 {
        top: -15px;
        right: -7px;
        max-width: 109px;
    }
    .plan__number--5 {
        top: -15px;
        right: 121px;
        max-width: 129px;

        /*調整前*/
        /*top: 160px;*/
        /*left: -155px;*/
        /*max-width: 133px;*/
    }

    .plan__number--6 {
        top: 176px;
        right: -63px;
        max-width: 103px;
    }


    .access__desc {
        font-size: 1.3vw;
    }
    .access__heading--note {
        font-size: 1.1vw;
    }

}

/*
    768px
*/
@media screen and (max-width: 767px) {
    .pc-none {
        display: block;
    }

    .sp-none {
        display: none;
    }

    .cta__abimg{
        display: none;
    }

    .cta__abimgml1{
        width: 100%;
        height: auto;
        margin: 0 auto 50px;
    }

    .cta__abimg4-1{
        width: 100%;
        height: auto;
        margin-top: 55px;
    }
    
    .cta__abimgml3{
        bottom: 0;
        right: 0;
        width: 100%;
        height: auto;
        margin-bottom: 100px;
    }
    
    

    /* HEADER */
    .header {
        top: 30px;
    }

    .header__wrapper {
        padding: 0 30px;
    }

    .header__container {
        position: relative;
        gap: 13px;
        z-index: 21;
    }

    .header__logo {
        max-width: 106px;
    }

    .header__text {
        font-size: 12px;
    }

    /* HEADER */
    .header-contact {
        top: 30px;
    }

    .header-contact__wrapper {
        padding: 0 30px;
    }

    .header-contact__container {
        position: relative;
        gap: 13px;
        z-index: 21;
    }

    .header-contact__logo {
        max-width: 106px;
    }

    .header-contact__text {
        font-size: 12px;
    }

    .humburger.is-active {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 21;
    }

    .humburger__wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 45px;
        height: 45px;
        background: #0051A4;
        z-index: 20;
    }

    .humburger__wrapper.is-active {
        width: 75px;
        height: 75px;
        border-bottom: 1px solid #fff;
        border-left: 1px solid #fff;
    }

    .humburger__bar {
        position: absolute;
        width: 22px;
        height: 1px;
        background: #fff;
        transition: .2s;
    }
    .bar--top {
        transform: translateY(-8px);
    }
    .bar--bottom {
        transform: translateY(8px);
    }

    .rotateTop {
        transform: translateY(0) rotate(45deg);
    }

    .hideMiddle {
        opacity: 0;
    }

    .rotateBottom {
        transform: translateY(0) rotate(-45deg);
    }



    /* NAVIGATION */
    .gnav {
        /*display: none;*/
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: none;
        height: 100svh;
        background: #0051A4;
        transform: translateX(100%);
        transition: transform .3s;
        z-index: 20;
    }

    .gnav-contact{
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: none;
        height: 100svh;
        background: #0051A4;
        transform: translateX(100%);
        transition: transform .3s;
        z-index: 20;

    }

    .gnav.is-active {
        transform: translateX(0);
    }

    .gnav__nav,
    .gnav-contact__nav {
        flex-direction: column;
        gap: 35px;
    }

    .gnav__list:nth-of-type(even) {
        display: none;
    }

    .gnav__link {
        gap: 0;
    }

    .gnav__link--en {
        font-size: 21px;
    }

    .gnav__link--ja {
        font-size: 10px;
    }

    /* NAVIGATION CONTACT */
    .gnav-contact {
        /*display: none;*/
        position: fixed;
        top: 0;
        left: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: none;
        height: 100svh;
        background: #0051A4;
        transform: translateX(100%);
        transition: transform .3s;
        z-index: 20;
    }

    .gnav-contact.is-active {
        transform: translateX(0);
    }

    .gnav-contact__nav {
        flex-direction: column;
        gap: 35px;
    }

    .gnav-contact__list:nth-of-type(even) {
        display: none;
    }

    .gnav-contact__link {
        gap: 0;
    }

    .gnav-contact__link--en {
        font-size: 21px;
    }

    .gnav-contact__link--ja {
        font-size: 10px;
    }

    /* MV */
    .mv {
        height: 100svh;
        z-index: 1;
    }
    .mv__parallax--elm {
        height: 100%;
    }

    .mv__parallax--elm .mv__img {
        height: 100%;
    }

    .mv__wrapper {
        padding: 0 30px;
    }
    .mv__container{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin: 0 auto;
        height: calc(100vh - 120px);
        /* top: 399px; */
        top: 120px;
        /*bottom: 30px;*/
        left: 30px;

    }
    .mv__catch{
        gap: 9px;
        width: 80%;
    }


    .mv__catch--top {
        padding: 6.9px 9.1px 5.6px 9.8px;
        max-width: 220px;
    }

    .mv__catch--middle {
        padding: 6.9px 12.1px 5.6px 9.8px;
        max-width: 175px;
    }

    .mv__catch--bottom {
        padding: 5.4px 11.2px 6.1px 9.8px;
        max-width: 255px;
    }

    .mv__catch--top .mv__catch--pic .catch__img {
        width: 200px;
    }

    .mv__catch--middle .mv__catch--pic .catch__img {
        width: 148px;
    }

    .mv__catch--bottom .mv__catch--pic .catch__img {
        width: 234px;
    }

    .mv__text {
        margin-bottom: 47.6px;
        display: none;
    }

    .mv__text .mv__img{
        width: 315px;
    }

    .mv__button {
        max-width: 315px;
        display: none;
    }

    .cta {
        padding: 98px 0 18px;
    }

    .cta__wrapper {
        padding: 0 30px;
    }

    .cta__title {
        font-size: 18px;
        line-height: 1.74;
    }

    .cta__title--span {
        padding-bottom: 1.5px;
        line-height: 1.3;
    }

    .cta__text--top {
        margin-bottom: 42px;
        letter-spacing: 1.2px;
        line-height: 2.1;
    }

    .cta__text--bottom {
        /*margin-bottom: 75px;*/
        letter-spacing: 1.2px;
        line-height: 2.1;
    }

    .cta__button {
        /*max-width: 315px;*/
    }

    .cta__link--en {
        font-size: 15px;
        line-height: 19px;
    }

    .cta__link {
        padding: 11px 0;
    }

    .cta__link--ja {
        font-size: 10px;
        line-height: 14px;
    }

    /**/
    .renovation {
        padding-bottom: 100px;
    }

    .renovation__wrapper {
        margin: 0 auto;
        padding: 0 30px;
    }

    .renovation__title {
        margin-bottom: 50px;
        padding-left: unset;
    }

    .renovation__title--en {
        margin-bottom: 7px;
        font-size: 37px;
        line-height: 1.1;
    }

    .renovation__title--ja {
        font-size: 12px;
        letter-spacing: 0.125em;
    }

    .renovation__item {
        flex-direction: column;
        gap: 0;
    }

    .renovation__item + .renovation__item{
        margin-top: 50px;
    }

    .renovation__pic{
        max-width: unset;
    }

    .renovation__pic::after{
        right: auto;
        left: 4px;
    }

    /*.renovation__pic::before{*/
    /*    display: none;*/
    /*}*/

    .renovation__heading {
        position: relative;
        top: -20px;
        text-align: right;
    }

    .renovation__heading--num {
        background: #fff;
        font-weight: 500;
        font-size: 39px;
        padding: 8px;
    }

    .renovation__lead {
        font-size: 18px;
    }

    .renovation__text {
        max-width: none;
        font-size: 13px;
        letter-spacing: 1.4px;
    }


    /* MODELROOM */
    .modelroom{
        padding: 100px 0 64px;
    }
    .modelroom__wrapper{
        /*padding: 0 30px;*/
        margin: 0 auto 72px;
    }
    .modelroom__title{
        margin-bottom: 50px;
    }
    .modelroom__title--en {
        font-size: 37px;
        line-height: 1;
        display: block;
        padding-right: unset;
    }

    .modelroom__title--ja {
        display: block;
        font-size: 12px;
        top: unset;
        padding-left: unset;
    }
    .modelroom__title--ja::before{
        content: none;
    }


    .concept{
        margin-bottom: 100px;
    }

    .concept__wrapper{
        display: block;
        padding: 0 30px;
    }

    .concept__scroll{
        display: block;
        margin-bottom: 30px;
    }

    .concept__scroll--inner{
        align-items: flex-start;
    }

    .concept__scroll--bar{
        display: none;
    }

    .concept__scroll--text{
        font-size: 13px;
        display: inline-block;
        border-bottom: 1px solid #000;
        writing-mode: horizontal-tb;
    }

    .concept__container {
        max-width: none;
    }
    .concept__text{
        margin-bottom: 75px;
        font-size: 14px;
        line-height: 2.2;
        letter-spacing: 0.12em;
        font-weight: 500;
    }
    .concept__button{
        position: relative;
        margin: 0 auto;
        max-width: 316px;
    }


    .point{
        /*width: 100%;*/
        /*padding-left: 38px;*/
        margin-bottom: 138px;
    }

    .point__wrapper {
        padding: 0 30px 0 22px;
    }

    /* .point__title{
        display: block;
        margin-bottom: 20px;
    } */
    .point__title--text{
        display: block;
        padding-left: unset;
        font-size: 21px;
        line-height: 1.2;
    }
    .point__title--text::before{
        content: none;
    }
    .point__heading{
        margin-bottom: 12px;
    }
    .point__lead{
        border: none;
        line-height: 1.9;
        letter-spacing: 0.33em;
    }
    .point__lead span{
        border-bottom: 1px solid #000;
    }
    .point__lead br{
        display: block;
    }

    /* .point__item + .point__item{
        margin-top: 30px;
    } */

    .point__item{
        width: 100%;
        flex-direction: column;
        align-items: center;
    }

    .point_left{
        width: 100%;
        height: auto;
        margin: 0 0 30px;
    }

    .point_left .img{
        position: relative;
        width: 100%;
        height: auto;
        padding-top: 100%;
        overflow: hidden;
    }   
    
    .point_left .img img{
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    

    .point_left .point__title{
        display: none;
    }

    .point_right{
        width: 100%;
        padding-top: 0;
    }

    .point_right .point__title{
        margin-bottom: 11px;
    }

    .point_right .point__title .point__title--point,
    .point_right .point__title .point__title--num{
        display: inline-block;
    }


    .point__title--num {
        padding-top: 0;
        padding-left: 3px;
    }    

    .point .scroll__text{
        font-size: 13px;
    }



    .plan__wrapper {
        padding: 0 30px 0 22px;
    }

    .plan__bg {
        left: 0;
        width: 100%;
        height: 499px;
    }

    .plan .scroll {
        position: absolute;
        left: 22px;
        z-index: 100;
    }

    .plan .scroll__text{
        font-size: 13px;
    }

    .plan__area {
        padding: 52px 0 105px;
    }

    .plan__inner {
        /* max-width: 298px; */
        max-width: 280px;
        z-index: 1;
    }

    .plan__floor {
        position: relative;
        left: 10px;
        /*margin-left: 85px;*/
        /*margin-right: 14px;*/
    }

    .plan__floor--direction {
        display: none;
    }

    .plan__floor--after1 {
        top: -5px;
        left: 3px;
        max-width: 76.5px;
    }

    .plan__floor--after2 {
        top: 160px;
        right: -42px;
        max-width: 118.5px;
    }

    .plan__floor--after3 {
        top: 215px;
        left: 10px;
        /*max-width: 158px;*/
    }

    .plan__floor--before {
        top: 130px;
        left: -14px;
        max-width: 106px;
    }

    .plan__floor--after1 .plan__img,
    .plan__floor--after2 .plan__img,
    .plan__floor--before .plan__img {
        object-fit: cover;
    }

    .plan__number--1 .plan__img,
    .plan__number--2 .plan__img,
    .plan__number--3 .plan__img,
    .plan__number--4 .plan__img,
    .plan__number--5 .plan__img,
    .plan__number--6 .plan__img {
        width: 100%;
    }

    .plan__number--1 {
        top: 140px;
        right: 30px;
        max-width: 64px;
    }

    .plan__number--2 {
        bottom: 105px;
        left: 12px;
        max-width: 79px;
    }

    .plan__number--3 {
        top: -27px;
        right: -10px;
        max-width: 20px;
    }

    .plan__number--4 {
        top: -27px;
        right: 55px;
        max-width: 20px;
    }

    .plan__number--5 {
        top: -27px;
        right: 84px;
        max-width: 20px;

        /*調整前*/
        /*top: 295px;*/
        /*left: 5px;*/
    }

    .plan__number--6 {
        top: 140px;
        right: 5px;
        max-width: 20px;
    }

    .plan__block .plan__button {
        /*right: 50%;*/
        font-size: 15px;
        line-height: 19px;
        /*transform: translateX(50%);*/
    }

    .plan__block .plan__button--after,
    .plan__block .plan__button--before {
        padding: 9px 0;
        width: 156px;
    }

    .plan__list {
        padding: 100px 30px 0;
    }

    .plan__item{
        flex-direction: column;
        border: unset;
    }

    .plan__pic{
        max-width: unset;
        width: 100%;
    }

    .plan__text{
        line-height: 1.8;
        letter-spacing: 0.045em;
    }

    /* slider */
    .swiper__container {
        position: relative;
        bottom: 0;
    }

    .swiper {
        height: 198px;
    }

    .swiper__container .swiper-button-prev,
    .swiper__container .swiper-button-next {
        height: 38px;
        width: 38px;
    }

    .swiper__container .swiper-button-prev {
        left: var(--swiper-navigation-sides-offset,10px);
        right: auto;
        transform: none;
    }
    .swiper__container .swiper-button-next {
        left: auto;
        right: var(--swiper-navigation-sides-offset,10px);
        transform: none;
    }

    .swiper__container .swiper-button-prev::after,
    .swiper__container .swiper-button-next::after {
        height: 38px;
        width: 38px;
    }

    /* DATA / ACCESS */
    .data-access{
        margin-top: 0;
        padding: 100px 0 20px;
    }

    .data-access__wrapper {
        padding: 0 30px 0 22px;
    }

    .data-access .scroll{
        position: sticky;
        top: 10px;
        left: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    .data-access .scroll__bar{
        /*position: sticky;*/
        /* headerの高さ +  */
        /*top: calc(10px);*/
        width: 1px;
        height: 75px;
        background: #000;
    }
    .data-access .scroll__text{
        /*position: sticky;*/
        /*top: calc(90px);*/
        font-size: 13px;
    }

    .data__list {
        margin-bottom: 97px;
    }

    .data__box{
        flex-direction: column;
    }

    .data__term{
        width: 100%;
        padding: 30px 0 10px;
        line-height: 20px;
    }

    .data__box:first-of-type .data__term{
        padding-top: 0;
        border-top: unset;
    }

    .data__desc{
        padding: 15px 0 10px;
        line-height: 19px;
    }

    .access__container{
        flex-direction: column;
    }

    .access__map{
        width: 100%;
        height: 166px;
    }

    .access__list {
        margin-bottom: 30px;
    }

    .access__box{
        flex-direction: column;
        padding-top: 30px;
    }
    .access__term{
        padding-bottom: 10px;
        width: 100%;
        font-size: 14px;
        line-height: 20px;
        border-bottom: 1px solid #0051A4;
    }
    .access__desc{
        padding-top: 15px;
        font-size: 13px;
    }
    .access__heading--note {
        font-size: 11px;
        letter-spacing: 0.9px;
    }


    .contact {
        position: relative;
        padding-bottom: 100px;
        margin-bottom: 0;
        background: #fff;
        z-index: 1;
    }

    .contact__wrapper {
        padding: 0 30px;
    }

    .contact__container{
        padding: 0;
        border: none;
    }

    .contact__title {
        position: static;
        margin-bottom: 30px;
        padding: 0;
        text-align: left;
        background: #fff;
        transform: translate(0);
    }

    .contact__title--en {
        margin-bottom: 0;
        font-size: 37px;
        line-height: 45px;
    }

    .contact__title--ja {
        font-size: 12px;
        line-height: 17px;
    }

    .contact__text {
        margin-bottom: 30px;
    }

    .wpcf7-form-control-wrap .wpcf7-form-control{
        width: 100%;
        border: none;
        background-color: #EFEFEF;
    }

    .form__desc.model_h_form_table{
        flex-direction: column;
    }
    

    .model_h_form_table_inner{
    }
    
    .model_h_form_table .model_h_form_table_inner:first-of-type{
    margin-right: 0;
    }

    .fnt_min{
        display: inline-block;
        width: 50px;
    }
    

    .form__list {
        margin-bottom: 75px;
    }

    .form__box {
        flex-direction: column;
    }

    .form__term {
        padding-bottom: 10px;
        width: 100%;
        max-height: initial;
        font-size: 14px;
        line-height: 20px;
    }

    .form__desc {
        max-height: initial;
        padding: 15px 0 10px 11px;
        background: #EFEFEF;
        border-bottom: none;
    }

    .form__box:first-of-type .form__desc {
        padding-top: 15px;
        max-height: initial;
    }

    .form__box:nth-last-of-type(2) .form__desc {
        background-color: #EAEAEA;
        border-bottom: none;
    }

    .form__name,
    .form__tel,
    .form__zip,
    .form__municipalities1,
    .form__municipalities2,
    .form__email {
        font-size: 13px;
        line-height: 19px;
    }

    .form__prefectures {
        font-size: 13px;
        line-height: 19px;
    }

    .form__inquiry {
        padding-left: 11px;
        height: 200px;
        font-size: 13px;
        line-height: 19px;
    }

    .form__button {
        position: relative;
        margin: 0 auto 20px;
        max-width: 313.5px;
    }
    .form__submit {
        margin-left: 0;
        max-width: 313.5px;
    }
    .form__button .wpcf7-spinner {
        position: absolute;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
    }

    .confirm__submit {
        max-width: 313.5px;
    }

    .confirm__previous {
        max-width: 313.5px;
    }


    .scroll-contact {
        /*margin: 0 auto;*/
        max-width: 315px;
        width: 100%;
        /*max-height: 70px;*/
        text-align: center;
        right: 50%;
        transform: translateX(50%);
    }

    .scroll-contact::after {
        content: "";
        position: absolute;
        bottom: -33.9px;
        right: -20.3px;
        width: 36.37px;
        height: 47.57px;
        background: url(../images/common/hand_icon.svg) center center / contain;
    }

    .scroll-contact__link {
        display: block;
        padding: 5px 0;
        color: #fff;
        background: #E98B2A;
        border-radius: 5px;
    }

    .scroll-contact__link--en {
        display: block;
        font-size: 14px;
        font-weight: 500;
        line-height: 18px;
    }

    .scroll-contact__link--ja {
        margin-top: -3px;
        display: block;
        font-size: 9px;
        font-weight: 700;
        line-height: 12px;
    }



    /* FOOTER */
    .footer{
        padding: 100.5px 0 17.7px;
    }

    .footer__wrapper {
        padding: 0 15px;
    }

    .footer__container{
        flex-direction: column-reverse;
        align-items: center;
        gap: 0;
        margin-bottom: 96.5px;
        padding: 0 15px;
    }

    .footer__address--sp{
        display: block;
        text-align: center;
        font-size: 12px;
        line-height: 1.6;
    }

    .footer__logo{
        margin-top: 80px;
        margin-bottom: 30px;
    }

    .footer__contents{
        width: 100%;
    }

    .footer__address{
        display: none;
    }

    .fnav__nav{
        flex-direction: column;
        gap: 20px;
    }

    .fnav__list{
        padding-bottom: 20px;
    }

    .fnav__list:nth-of-type(even) {
        display: none;
    }

    .fnav__list:not(:last-of-type) {
        border-bottom: 1px solid #fff;
    }

    .footer__copyright {
        padding-left: 0;
    }

    .footer__small {
        text-align: center;
        letter-spacing: .45px;
    }

    /*  THANKSページ */
    .thanks__wrapper {
        padding: 0 30px;
    }


}

/*
    500px
*/
@media screen and (max-width: 500px) {
    .point .scroll{
        left: 0;
    }
}
