@charset "UTF-8";

.abc {
    margin-bottom: 0;
}

#modelhouse02 .pc-tb {
    display: block;
}

@media screen and (max-width: 768px) {
    #modelhouse02 .pc-tb {
        display: none;
    }
}

#modelhouse02 .sp-only {
    display: none;
}

@media screen and (max-width: 640px) {
    #modelhouse02 .sp-only {
        display: block;
    }
}

main {
    width: 100% !important;
    max-width: 1920px;
    margin-bottom: 0 !important;
    overflow: hidden;
}

.footer-bg {
    height: auto;
}

#modelhouse02 {
    overflow: hidden;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
}

.mh-common-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.mh-common__ttl {
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 1024px) {
    .mh-common__ttl {
        margin-bottom: 4%;
    }
}

@media screen and (max-width: 640px) {
    .mh-common__ttl {
        margin-bottom: 6%;
    }
}



.mh-common__ttl:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background: #D3C8BE;
}

.mh-common__ttl h3 {
    position: relative;
    width: fit-content;
    z-index: 2;
    margin: 0 auto;
    font-family: "Noto Sans JP";
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    background-color: #FFF;
    padding: 0 14px;
}

@media screen and (max-width: 640px) {
    .mh-common__ttl h3 {
        font-size: 20px;
    }
}

/**********fv START**********/
.mh-fv {
    position: relative;
    overflow: hidden;
}

.mh-fv-slider {
    position: relative;
    width: 100%;
}

.mh-fv-slider__item {
    width: 100%;
    line-height: 0;
}

.mh-fv-slider__item picture {
    display: block;
    width: 100%;
}

/* 1枚目はposition:relativeでコンテナ高さを確保 */
.mh-fv-slider__item--1 {
    position: relative;
    animation: mh-fv-fade 15s infinite;
    animation-delay: 0s;
}

.mh-fv-slider__item--2 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    animation: mh-fv-fade 15s infinite;
    animation-delay: 5s;
}

.mh-fv-slider__item--3 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    opacity: 0;
    animation: mh-fv-fade 15s infinite;
    animation-delay: 10s;
}

.mh-fv-slider__item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes mh-fv-fade {
    0%   { opacity: 0; }
    13%  { opacity: 1; }
    46%  { opacity: 1; }
    60%  { opacity: 0; }
    100% { opacity: 0; }
}

.mh-fv__inner {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
    box-sizing: border-box;
    z-index: 2;
}

@media screen and (max-width: 640px) {
    .mh-fv__inner {
        padding: 0 4%;
    }
}

.mh-fv__title {
    padding-top: 100px;
}

.mh-fv__title-sub {
    display: block;
    font-size: 32px;
    font-weight: 500;
    color: #FFF;
    letter-spacing: 0;
    line-height: 1.8;
}

@media screen and (max-width: 640px) {
    .mh-fv__title-sub {
        font-size: 20px;
    }
}

.mh-fv__title-main-wrap {
    display: flex;
    align-items: baseline;
    gap: 24px;
}

@media screen and (max-width: 768px) {
    .mh-fv__title-main-wrap {
        flex-direction: column;
    }
}

.mh-fv__title-main {
    font-size: 56px;
    font-weight: 500;
    color: #FFF;
    line-height: 1.4;
    letter-spacing: 0;
}

@media screen and (max-width: 768px) {
    .mh-fv__title-main {
        border-bottom: 1px solid #fff;
    }
}

@media screen and (max-width: 640px) {
    .mh-fv__title-main {
        font-size: 32px;
    }
}

.mh-fv__title-address {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 24px;
    font-weight: 500;
    color: #FFF;
}

@media screen and (max-width: 640px) {
    .mh-fv__title-address {
        font-size: 20px;
    }
}

.mh-fv__title-address:before {
    content: '';
    display: block;
    background-image: url(../images/modelhouse02/page-modelhouse-fv-address-icon.svg);
    width: 18px;
    height: 24px;
    background-size: cover;
    background-repeat: no-repeat;
}

/**********fv END**********/

/* fv-banner */
.mh-fv-banner {
    padding-top: 107px;
    background: #F6F4F2;
}

.mh-fv-banner__inner {
    max-width: 1258px;
    margin: 0 auto;
    padding: 0 20px;
}

.mh-fv-banner img {
    display: block;
    width: 100%;
    height: auto;
}

.mh-fv-banner a {
    display: block;
    transition: opacity 0.4s;
}

.mh-fv-banner a:hover {
    opacity: 0.8;
}

@media screen and (max-width: 640px) {
    .mh-fv-banner {
        padding-top: 10%;
    }

    .mh-fv-banner__inner {
        padding: 0 24px;
    }
}

/**********concept START**********/
.mh-concept {
    padding: 120px 0 56px;
    position: relative;
    background: #F6F4F2;
    z-index: -1;
}

.mh-concept:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    display: block;
    width: 100%;
    height: 700px;
    z-index: -1;
    background: url(../images/modelhouse02/page-modelhouse-concept-bg_pc.png) no-repeat center top;
}

@media screen and (max-width: 768px) {
    .mh-concept {
        padding: 14% 0;
    }
}

.mh-concept__wrap {
    background-color: #FFF;
    box-shadow: 0 0 40px 0 rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    padding: 32px 64px 80px;
}

@media screen and (max-width: 1024px) {
    .mh-concept__wrap {
        padding: 32px 8% 80px;
    }
}

@media screen and (max-width: 768px) {
    .mh-concept__wrap {
        padding: 8% 4%;
    }
}

.mh-concept__label {
    display: block;
    text-align: center;
    font-family: "Abel", sans-serif;
    font-size: 16px;
    color: #D3C8BE;
    font-weight: 400;
    padding-bottom: 32px;
}

@media screen and (max-width: 768px) {
    .mh-concept__label {
        padding-bottom: 4%;
    }
}

.mh-concept__title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.6;
}

@media screen and (max-width: 768px) {
    .mh-concept__title {
        font-size: 18px;
        margin-bottom: 2%;
    }
}

@media screen and (max-width: 640px) {
    .mh-concept__title {
        margin-bottom: 4%;
    }
}

.mh-concept__body {
    display: flex;
    justify-content: space-between;
    gap: 56px;
}

@media screen and (max-width: 1024px) {
    .mh-concept__body {
        gap: 0;
        align-items: flex-end;
        ;
    }
}

@media screen and (max-width: 768px) {
    .mh-concept__body {
        flex-direction: column-reverse;
        align-items: flex-start;
    }
}

.mh-concept__text {
    max-width: 396px;
}

@media screen and (max-width: 1024px) {
    .mh-concept__text {
        max-width: 52%;
    }
}

@media screen and (max-width: 768px) {
    .mh-concept__text {
        max-width: 100%;
    }
}

.mh-concept__lead {
    font-size: 18px;
    letter-spacing: 0;
    font-weight: 500;
    margin: 32px 0 16px;
    font-feature-settings: "halt" on;
}

@media screen and (max-width: 768px) {
    .mh-concept__lead {
        line-height: 1.7;
        margin: 5% 0 2%;
        font-size: 1.8rem;
    }
}

@media screen and (max-width: 640px) {
    .mh-concept__lead {
        font-size: 1.6rem;
        margin: 5% 0;
    }
}

.mh-concept__desc {
    font-size: 16px;
    letter-spacing: 0;
    font-weight: 400;
    font-feature-settings: "halt" on;
}

@media screen and (max-width: 768px) {
    .mh-concept__desc {
        font-size: 14px;
        line-height: 2;
    }
}

.mh-concept__img {
    max-width: 380px;
}

.mh-concept__img img {
    width: 100%;
    height: auto;
}

@media screen and (max-width: 1024px) {
    .mh-concept__img {
        max-width: 46%;
    }
}

@media screen and (max-width: 768px) {
    .mh-concept__img {
        max-width: 100%;
        width: 100%;
    }
}

/**********concept END**********/

/**********point START**********/
.mh-point {
    padding-block: 80px;
}

@media screen and (max-width: 768px) {
    .mh-point {
        padding-block: 14%;
    }
}

/* .mh-point .mh-common__ttl h3 {
    background-color: transparent;
} */

/* .mh-point .mh-common__ttl:before {
    background: none;
} */

.mh-point__nav {
    margin-bottom: 56px;
}

@media screen and (max-width: 768px) {
    .mh-point__nav {
        margin-bottom: 4%;
    }
}

.mh-point__nav-list {
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

@media screen and (max-width: 640px) {
    .mh-point__nav-list {
        flex-wrap: wrap;
        justify-content: center;
    }
}

.mh-point__nav-item {
    max-width: 310px;
    width: 100%;
}

@media screen and (max-width: 640px) {
    .mh-point__nav-item {
        max-width: 100%;
        width: 48%;
    }
}

.mh-point__nav-btn {
    width: 100%;
    background-color: #E4DED9;
    border: none;
    border-radius: 10px;
    padding: 50px 32px 55px 32px;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

@media screen and (min-width: 1024px) {
    .mh-point__nav-btn:hover {
        opacity: 0.5;
    }

    .mh-point__nav-btn--active:hover {
        opacity: 1;
    }
}

@media screen and (max-width: 768px) {
    .mh-point__nav-btn {
        padding: 40px 10px 43px 10px;
    }
}

@media screen and (max-width: 640px) {
    .mh-point__nav-btn {
        padding: 12% 0;
    }
}

.mh-point__nav-btn p {
    font-weight: 700;
    font-size: 24px;
    color: #463A3D;
    position: relative;
    z-index: 3;
    line-height: 1.3;
    letter-spacing: 0.04em;
}

@media screen and (max-width: 1024px) {
    .mh-point__nav-btn p {
        font-size: 18px;
    }
}

@media screen and (max-width: 640px) {
    .mh-point__nav-btn p {
        font-size: 16px;
    }
}

.mh-point__nav-btn p:after {
    content: '';
    background-image: url(../images/modelhouse02/point-nav-btn-arrow_pc.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -28px;
}

@media screen and (max-width: 640px) {
    .mh-point__nav-btn p:after {
        bottom: -15px;
        width: 12px;
        height: 12px;
    }
}

.mh-point__nav-btn--active {
    background-color: #A19182;
    cursor: default;
}

.mh-point__nav-btn--active p {
    color: #FFF;
}

.mh-point__nav-btn--active p::after {
    background-image: url(../images/modelhouse02/point-nav-btn-arrow_active_white_pc.svg);
}

.mh-point__nav-btn-num {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    font-family: "Abel";
    color: #D3C8BE;
    font-size: 64px;
    font-weight: 400;
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .mh-point__nav-btn-num {
        font-size: 45px;
        top: 6px;
        right: 6px;
    }
}

@media screen and (max-width: 640px) {
    .mh-point__nav-btn-num {
        font-size: 28px;
    }
}

.mh-point__img {
    max-width: 480px;
}

@media screen and (max-width: 1024px) {
    .mh-point__img {
        max-width: 48%;
    }
}

@media screen and (max-width: 768px) {
    .mh-point__img {
        max-width: 100%;
    }
}

.mh-point__text {
    max-width: 440px;
}

@media screen and (max-width: 1024px) {
    .mh-point__text {
        max-width: 48%;
    }
}

@media screen and (max-width: 768px) {
    .mh-point__text {
        max-width: 100%;
        width: 100%;
    }
}

.mh-point__lead {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 32px;
    line-height: 1.5;
    letter-spacing: 0.04em;
}

@media screen and (max-width: 768px) {
    .mh-point__lead {
        font-size: 20px;
        margin: 4% 0;
    }
}

@media screen and (max-width: 640px) {
    .mh-point__lead {
        font-size: 18px;
    }
}

.mh-point__desc {
    font-size: 16px;
    letter-spacing: 0;
    font-weight: 400;
    font-feature-settings: "halt" on;
}
.mh-point__desc small {
	display: block;
	margin-top: 1rem;
	padding: 1rem;
	background: #eee;
	font-size: 0.875em;
}

@media screen and (max-width: 768px) {
    .mh-point__desc {
        font-size: 14px;
        line-height: 1.7;
    }
}

.mh-point__desc {}

.mh-point__item {
    display: none;
}

.mh-point__item.is-active {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .mh-point__item.is-active {
        flex-direction: column;
    }
}

/**********point END**********/

/**********plan START**********/
.mh-plan {
    padding: 120px 0;
    background-color: #F6F4F2;
}

@media screen and (max-width: 768px) {
    .mh-plan {
        padding: 14% 0;
    }
}

.mh-plan .mh-common__ttl h3 {
    background-color: #F6F4F2;
}

.mh-plan__desc {
    text-align: center;
    padding-bottom: 40px;
    font-size: 16px;
    letter-spacing: 0;
    font-weight: 400;
    line-height: 1.7;
}

@media screen and (max-width: 768px) {
    .mh-plan__desc {
        padding-bottom: 6%;
    }
}

@media screen and (max-width: 640px) {
    .mh-plan__desc {
        font-size: 14px;
    }
}

.mh-plan__img {
    display: flex;
}

@media screen and (max-width: 640px) {
    .mh-plan__img {
        flex-direction: column;
    }
}

.mh-plan__img-first {
    max-width: 586px;
    position: relative;
}

@media screen and (max-width: 640px) {
    .mh-plan__img-first {
        max-width: 100%;
    }
}

.mh-plan__img-num-item {
    color: #FFF;
    font-family: "Abel";
    font-size: 32px;
    position: relative;
    z-index: 2;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

@media screen and (max-width: 1024px) {
    .mh-plan__img-num-item {
        font-size: 20px;
    }
}

@media screen and (max-width: 640px) {
    .mh-plan__img-num-item {
        font-size: 18px;
    }
}

@media screen and (min-width: 1024px) {
    .mh-plan__img-num-item:hover {
        opacity: 0.7;
    }
}

.mh-plan__img-num-item:before {
    content: '';
    display: block;
    background-image: url(../images/modelhouse02/plan-img-num-item-circle.png);
    width: 58px;
    height: 58px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
	opacity: 0.7;
}

.mh-plan__img-num-item.is-active:before {
    background-image: url(../images/modelhouse02/plan-img-num-item-circle_active.png);
	opacity: 1;
}

.mh-plan__img-first-item-text {
    position: absolute;
    top: 40px;
    left: 40px;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 14px;
    font-weight: 600;
    color: #463A3D;
    background-color: #D3C8BE;
    border-radius: 5px;
    width: 49px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .mh-plan__img-first-item-text {
        top: 0;
    }
}

.mh-plan__img-second-item-text {
    position: absolute;
    top: 40px;
    left: 40px;
    transform: translate(-50%, -50%);
    z-index: 2;
    font-size: 14px;
    font-weight: 600;
    color: #463A3D;
    background-color: #D3C8BE;
    border-radius: 5px;
    width: 49px;
    height: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .mh-plan__img-second-item-text {
        top: 0;
    }
}

@media screen and (max-width: 1024px) {
    .mh-plan__img-num-item:before {
        width: 50px;
        height: 50px;
    }
}

@media screen and (max-width: 640px) {
    .mh-plan__img-num-item:before {
        width: 8vw;
        height: 8vw;
    }
}

.mh-plan__img-num-item.num01 {
    position: absolute;
    bottom: 186px;
    right: 216px;
}

@media screen and (max-width: 1024px) {
    .mh-plan__img-num-item.num01 {
        bottom: 19vw;
        right: 21vw;
    }
}

@media screen and (max-width: 640px) {
    .mh-plan__img-num-item.num01 {
        bottom: 30vw;
        right: 35vw;
    }
}

.mh-plan__img-num-item.num02 {
    position: absolute;
    bottom: 278px;
    right: 298px;
}

@media screen and (max-width: 1024px) {
    .mh-plan__img-num-item.num02 {
        bottom: 28vw;
        right: 30vw;
    }
}

@media screen and (max-width: 640px) {
    .mh-plan__img-num-item.num02 {
        bottom: 43vw;
        right: 48vw;
    }
}


.mh-plan__img-num-item.num03 {
    position: absolute;
    bottom: 283px;
    right: 220px;
}

@media screen and (max-width: 1024px) {
    .mh-plan__img-num-item.num03 {
        bottom: 29vw;
        right: 23vw;
    }
}

@media screen and (max-width: 640px) {
    .mh-plan__img-num-item.num03 {
        bottom: 44vw;
        right: 39vw;
    }
}

.mh-plan__img-num-item.num04 {
    position: absolute;
    bottom: 180px;
    right: 97px;
}

@media screen and (max-width: 1024px) {
    .mh-plan__img-num-item.num04 {
        bottom: 19vw;
        right: 10vw;
    }
}

@media screen and (max-width: 640px) {
    .mh-plan__img-num-item.num04 {
        bottom: 28vw;
        right: 17vw;
    }
}

.mh-plan__img-second {
    max-width: 324px;
    position: relative;
}

@media screen and (max-width: 640px) {
    .mh-plan__img-second {
        max-width: 100%;
    }

    .mh-plan__img-second img {
        width: 55%;
        margin: 0 10% 0 auto;
        display: block;
    }
}

.mh-plan-point {
    overflow: visible;
    margin-top: 40px;
}

@media screen and (max-width: 1024px) {
    .mh-plan-point {
        padding: 0 4% !important;
    }
}

.mh-plan-point .swiper-slide {
    position: relative;
    width: 832px;
    height: 320px;
}

@media screen and (max-width: 900px) {
    .mh-plan-point .swiper-slide {
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .mh-plan-point .swiper-slide {
        height: auto;
    }
}

.swiper-wrapper {
    height: auto !important;
}

.mh-plan-point__item>div {
    width: 100%;
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 768px) {
    .mh-plan-point__item>div {
        flex-direction: column;
    }
}

@media screen and (max-width: 640px) {
    .mh-plan-point__item>div {
        padding: auto;
    }
}

.mh-plan-point__img {
    flex: 0 0 400px;
}

@media screen and (max-width: 900px) {
    .mh-plan-point__img {
        flex: 0 0 380px;
    }
}

@media screen and (max-width: 870px) {
    .mh-plan-point__img {
        flex: 0 0 320px;
    }
}

@media screen and (max-width: 640px) {
    .mh-plan-point__img {
        flex: auto;
        height: 58vw;
    }
}


.mh-plan-point__img img {
    height: 100%;
    object-fit: cover;
    border-radius: 20px 0 0 20px;
}

@media screen and (max-width: 768px) {
    .mh-plan-point__img img {
        border-radius: 20px 20px 20px 20px;
    }
}

@media screen and (max-width: 768px) {
    .mh-plan-point__img img {
        width: 100%;
    }
}

.mh-plan-point__content {
    background-color: #FFF;
    border-radius: 0 20px 20px 0;
    padding: 24px 40px;
}

@media screen and (max-width: 1024px) {
    .mh-plan-point__content {
        width: 48%;
        padding: 3%;
    }
}

@media screen and (max-width: 768px) {
    .mh-plan-point__content {
        width: 100%;
        margin-top: 2%;
        border-radius: 20px 20px 20px 20px;
        padding: 4%;
    }
}

.mh-plan-point__label {
    display: flex;
    gap: 6px;
    align-items: center;
    font-weight: 400;
    color: #727171;
    font-family: "Abel";
    font-size: 12px;
    padding-bottom: 16px;
}

@media screen and (max-width: 640px) {
    .mh-plan-point__label {
        padding-bottom: 10px;
    }
}

.mh-plan-point__label:before {
    content: '';
    display: block;
    background-color: #E85471;
    border-radius: 1px;
    width: 5px;
    height: 4px;
}

.mh-plan-point__title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 16px;
    letter-spacing: 0.04em;
}

@media screen and (max-width: 1024px) {
    .mh-plan-point__title {
        font-size: 20px;
        line-height: 1.6;
        margin-bottom: 2%;
    }
}

@media screen and (max-width: 640px) {
    .mh-plan-point__title {
        font-size: 16px;
    }
}

.mh-plan-point__desc {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0;
    font-weight: 400;
}

@media screen and (max-width: 640px) {
    .mh-plan-point__desc {
        font-size: 1.4rem;
    }
}

.mh-plan-point__nav {
    visibility: hidden;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 99;
    max-width: 1280px;
    margin: 0 auto;
}

@media screen and (max-width: 1200px) {
    .mh-plan-point__nav {
        max-width: 1020px;
    }
}

@media screen and (max-width: 768px) {
    .mh-plan-point__nav {
        top: 30vw;
    }
}

.mh-plan-point.swiper-initialized .mh-plan-point__nav {
    visibility: visible;
}

.mh-plan-point__prev {
    width: 80px;
    height: 48px;
    position: absolute;
    left: 140px;
    z-index: 4;
    top: 50%;
    transform: translateY(-100%);
}

@media screen and (max-width: 1260px) {
    .mh-plan-point__prev {
        left: 120px;
    }
}

@media screen and (max-width: 1200px) {
    .mh-plan-point__prev {
        left: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .mh-plan-point__prev {
        left: -10px;
    }
}

@media screen and (max-width: 640px) {
    .mh-plan-point__prev {
        left: 20px;
        transform: translateY(-50%);
    }
}

.mh-plan-point__next {
    position: absolute;
    right: 140px;
    z-index: 4;
    top: 50%;
    transform: translateY(-100%);
}

@media screen and (max-width: 1260px) {
    .mh-plan-point__next {
        right: 120px;
    }
}

@media screen and (max-width: 1200px) {
    .mh-plan-point__next {
        right: 20px;
    }
}

@media screen and (max-width: 1024px) {
    .mh-plan-point__next {
        right: -10px;
    }
}

@media screen and (max-width: 640px) {
    .mh-plan-point__next {
        right: 20px;
        transform: translateY(-50%);
    }
}

.mh-plan-point__prev:before {
    content: "";
    background-image: url(../images/modelhouse02/plan-point-nav-prev_pc.svg);
    display: block;
    width: 80px;
    height: 48px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    pointer-events: auto;
}

@media screen and (max-width: 640px) {
    .mh-plan-point__prev:before {
        width: 50px;
        height: 50px;
    }
}

.mh-plan-point__next:before {
    content: "";
    background-image: url(../images/modelhouse02/plan-point-nav-next_pc.svg);
    display: block;
    width: 80px;
    height: 48px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    pointer-events: auto;
}

@media screen and (max-width: 640px) {
    .mh-plan-point__next:before {
        width: 50px;
        height: 50px;
    }
}


/**********plan END**********/

/**********access START**********/
.mh-access {
    padding: 160px 0 120px;
    position: relative;
    background-color: #F6F4F2;
}

@media screen and (max-width: 768px) {
    .mh-access {
        padding: 14% 0;
    }
}

.mh-access .mh-common__ttl h3 {
    padding: 0 48px;
    background-color: #FEFDFD;
}

.mh-access:after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    display: block;
    width: 100%;
    height: 600px;
    z-index: 1;
/*     background: url(../images/modelhouse02/page-modelhouse-access-bg_pc.png); */
	background: #FEFDFD;
    background-size: cover;
    background-position: top;
}

.mh-access__body {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 768px) {
    .mh-access__body {
        flex-direction: column;
    }
}

.mh-access__info {
    max-width: 440px;
}

@media screen and (max-width: 1024px) {
    .mh-access__info {
        max-width: 48%;
    }
}

@media screen and (max-width: 768px) {
    .mh-access__info {
        max-width: 100%;
    }
}

.mh-access__table-label {
    border: 1px solid #D4CBCD;
    width: 68px;
    height: 32px;
    text-align: center;
    font-size: 12px;
    /* color: #463A3D; */
    border-radius: 40px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.mh-access__table-value {
    font-size: 16px;
    letter-spacing: 0;
    font-weight: 400;
    line-height: 1.7;
}

@media screen and (max-width: 640px) {
    .mh-access__table-value {
        font-size: 14px;
    }
}

.mh-access__table-desc {
    font-size: 14px;
    letter-spacing: 0;
    font-weight: 400;
    line-height: 1.7;
}

.mh-access__name {
    color: #E85471;
    font-weight: 600;
    font-size: 24px;
    padding-bottom: 16px;
    margin-bottom: 24px;
    border-bottom: 1px solid #D3C8BE;
}

@media screen and (max-width: 768px) {
    .mh-access__name {
        font-size: 20px;
        margin-bottom: 2%;
        padding-bottom: 2%;
    }
}


.mh-access__table ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mh-access__table ul li {
    display: flex;
    gap: 24px;
    align-items: center;
    padding: 10px 0;
}

@media screen and (max-width: 640px) {
    .mh-access__table ul li {
        gap: 16px;
    }
}

.mh-access__table {
    border-collapse: separate;
    border-spacing: 0 16px;
}

.mh-access__table th {
    width: 68px;
    font-size: 12px;
    border-radius: 40px;
    border: 1px solid #D4CBCD;
}

.mh-access__table td {
    padding-left: 24px;
    width: calc(100% - 68px);
}

.mh-access__map {
    width: 466px;
}

@media screen and (max-width: 1024px) {
    .mh-access__map {
        width: 48%;
    }
}

@media screen and (max-width: 768px) {
    .mh-access__map {
        width: 100%;
        height: 300px;
        margin-top: 2%;
    }
}

@media screen and (max-width: 500px) {
    .mh-access__map {
        height: 42vw;
    }
}

.mh-access__map iframe {
    display: block;
    border-radius: 15px;
    width: 100%;
    height: 100%;
}

/**********access END**********/


.mh-mh-works {
    padding: 120px 0;
}

@media screen and (max-width: 768px) {
    .mh-mh-works {
        padding: 14% 0 10%;
    }
}

/**********mh-works END**********/

.mh-mh-button {
    padding-bottom: 80px;
}

@media screen and (max-width: 768px) {
    .mh-mh-button {
        padding-bottom: 12%;
    }
}

.mh-mh-button__content {
    width: calc((100% - 8px * 2) / 3);
}

@media screen and (max-width: 640px) {
    .mh-mh-button__content {
        width: 100%;
    }
}

.mh-mh-button__inner {
    display: flex;
    justify-content: center;
    gap: 8px;
}

@media screen and (max-width: 640px) {
    .mh-mh-button__inner {
        flex-direction: column;
    }
}

.mh-mh-button__btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 112px;
    border-radius: 10px;
    text-decoration: none;
    color: #fff;
    background: #E85471;
    font-weight: 600;
    letter-spacing: 0;
    transition: background .2s ease, color .2s ease;
    padding: 23px 32px;
}

@media screen and (min-width: 1024px) {
    .mh-mh-button__btn {
        padding: 23px 20px;

    }
}

@media screen and (max-width: 768px) {
    .mh-mh-button__btn {
        height: 90px;
        padding: 4% 8%;
    }
}

.mh-mh-button__btn-text-inner {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mh-mh-button__btn-text01 {
    display: block;
    font-size: 40px;
    font-weight: 400;
    letter-spacing: .08em;
    font-family: 'Abel';
    line-height: 1;
}

@media screen and (max-width: 768px) {
    .mh-mh-button__btn-text01 {
        font-size: 28px;
    }
}

@media screen and (max-width: 640px) {
    .mh-mh-button__btn-text01 {
        font-size: 20px;
    }
}

.mh-mh-button__btn-text02 {
    display: block;
    font-size: 12px;
    font-weight: 400;
    line-height: 1;
}

.mh-mh-button__btn-text02::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}

@media screen and (min-width: 1024px) {
    .mh-mh-button__btn:hover {
        opacity: .8;
        transition: .4s;
        text-decoration: auto;

    }
}

.works {
    padding: 100px 0 80px;
    background: url(./img/features_bg.svg);
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 1024px) {
    .works {
        padding: 10% 0 8%;
    }
}

#works {
    padding-top: 100px;
    margin-top: -100px;
}

.works__container {
    position: relative;
    width: 100%;
    max-width: 1240px;
    padding: 0 20px;
    margin: 0 auto;
}

@media screen and (max-width: 1024px) {
    .works__container {
        padding: 0 2%;
    }
}

@media screen and (max-width: 640px) {
    .works__container {
        padding: 0 4%;
    }
}

.works__txt {
    padding-bottom: 80px;
    padding-left: 65px;
    font-size: 1.8rem;
    letter-spacing: 0.06em;
    line-height: 1.8;
}

@media screen and (max-width: 1024px) {
    .works__txt {
        padding-bottom: 8%;
        padding-left: 8%;
    }
}

@media screen and (max-width: 640px) {
    .works__txt {
        font-size: 1.4rem;
    }
}

.works__sub-ttl {
    display: block;
    font-size: 1.6rem;
    letter-spacing: 0.2em;
    line-height: 1.5em;
    position: absolute;
    padding-top: 40px;
    margin: 0 auto;
    writing-mode: vertical-rl;
    color: #E01515;
    top: -15px;
    z-index: 2;
    left: 35px;
}

.works__sub-ttl::before {
    content: "";
    background-color: #E01515;
    width: 1px;
    height: 60px;
    position: absolute;
    top: -30px;
    right: 10px;
}

@media screen and (max-width: 640px) {
    .works__sub-ttl {
        right: auto;
        left: 2%;
        font-size: 1.4rem;
        top: -2%;
    }
}

@media screen and (max-width: 500px) {
    .works__sub-ttl {
        top: -1%;
    }
}

@media screen and (max-width: 375px) {
    .works__sub-ttl {
        top: 0;
    }
}

.works__inner {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

@media screen and (max-width: 640px) {
    .works__inner {
        padding: 0;
    }
}

.works__inner--cnt {
    width: 100%;
    position: relative;
}

@media screen and (max-width: 640px) {
    .works__inner--cnt {
        padding-left: 0;
    }
}

.works__inner--data {
    position: relative;
    padding-bottom: 56px;
}

@media screen and (max-width: 1024px) {
    .works__inner--data {
        padding-bottom: 5%;
    }
}

@media screen and (max-width: 640px) {
    .works__inner--data {
        font-size: 1.2rem;
        position: relative;
        left: auto;
        top: auto;
        margin-bottom: 3%;
        writing-mode: horizontal-tb;
    }
}

.works__inner--data--01 {
    font-size: 3.2rem;
    font-family: "Futura", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 158px;
}

.works__inner--data--01::after {
    content: "";
    position: absolute;
    right: 0;
    height: 1px;
    background-color: #1A1A1A;
    width: calc(100% - 158px);
}

@media screen and (max-width: 1024px) {
    .works__inner--data--01 {
        font-size: 2.6rem;
        justify-content: left;
    }
}

@media screen and (max-width: 640px) {
    .works__inner--data--01 {
        font-size: 2rem;
    }
}

@media screen and (max-width: 640px) {
    .works__inner--data--01::after {
        width: calc(100% - 100px);
    }
}

.single-works-slider-main {
    position: relative;
}

.single-works-slider-main--popup {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    z-index: 1;
}

.single-works-slider-main--popup img {
    width: 100%;
    display: block;
}

.y-scroll {
    white-space: normal;
    overflow-x: hidden;
    overflow-y: auto;
}

.y-scroll::-webkit-scrollbar {
    width: 8px;
    height: 1px;
    border-radius: 50px;

}

.y-scroll::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}

.y-scroll::-webkit-scrollbar-thumb {
    background: #A19182;
    border-radius: 50px;
}

.y-scroll::-webkit-scrollbar-thumb:hover,
.y-scroll::-webkit-scrollbar-thumb:active {
    background: #606060;
}

.y-scroll::-webkit-scrollbar-track {
    background: #ddd;
    border: 0px none #ddd;
    border-radius: 0;
}

.y-scroll::-webkit-scrollbar-track:hover,
.y-scroll::-webkit-scrollbar-track:active {
    background: #ddd;
}

.y-scroll::-webkit-scrollbar-corner {
    background: rgba(0, 0, 0, 0);
}

.mfp-content {
    max-width: 1024px;
}

.works-single__headline-ttl {
	margin-bottom: 24px;
    font-size: 20px;
}
@media screen and (max-width: 640px) {
.works-single__headline-ttl {
	margin-bottom: 16px;
    font-size: 16px;
}
}

.single-works-slider {
    margin: 0 0 80px;
}

.single-works-slider-photo {
    display: flex;
    /* flex-wrap: wrap; */
    justify-content: space-between;
    width: 100%;
    gap: 30px;
}

@media screen and (max-width: 640px) {
    .single-works-slider-photo {
        flex-wrap: wrap;
        gap: 10px;
    }
}

.single-works-slider-photo .single-works-slider-main {
    width: calc(100% - 150px);
    position: relative;
}

.single-works-slider-photo .single-works-slider-main *:focus {
    outline: none;
}

.single-works-slider-photo .single-works-slider-main i {
    content: "";
    width: 68px;
    height: 68px;
    border-radius: 100px;
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
}

.single-works-slider-photo .single-works-slider-main i::before {
    content: "";
    background: url(../images/modelhouse02/popup.svg) no-repeat center center/contain;
    display: block;
    width: 60px;
    height: 60px;
    position: absolute;
    bottom: 0;
    right: 0;
    pointer-events: none;
}

.single-works-slider-photo .single-works-slider-main .slick-slide {
    position: relative;
}

.single-works-slider-photo .single-works-slider-main .slick-slide figure {
    height: 596px;
    position: relative;
    margin: 0;
}

.single-works-slider-photo .single-works-slider-main .slick-slide img {
    width: 100%;
    height: 530px;
    -o-object-fit: cover;
    object-fit: cover;
}

.single-works-slider-photo button.slick-prev.slick-arrow,
.single-works-slider-photo button.slick-next.slick-arrow,
.single-works-slider-photo button.slick-prev.slick-arrow,
.single-works-slider-photo button.slick-next.slick-arrow {
    position: absolute;
    display: block !important;
    width: 50px;
    height: 50px;
    z-index: 10;
}

.single-works-slider-photo button.slick-prev.slick-arrow {
    left: 15px;
}

.single-works-slider-photo button.slick-next.slick-arrow {
    right: 15px;
}

.single-works-slider-photo button.slick-prev::before,
.single-works-slider-photo button.slick-next::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: no-repeat center center/contain;
    z-index: 100;
}

.single-works-slider-photo button.slick-prev::before {
    background-image: url(./img/merit_left.svg);
}

.single-works-slider-photo button.slick-next::before {
    background-image: url(./img/merit_right.svg);
}

@media screen and (max-width: 640px) {

    .single-works-slider-photo button.slick-prev.slick-arrow,
    .single-works-slider-photo button.slick-next.slick-arrow {
        width: 7.8125vw;
        height: 7.8125vw;
    }
}

@media screen and (max-width: 1024px) {
    .single-works-slider-photo button.slick-prev.slick-arrow {
        left: 1.9296875vw;
    }
}

@media screen and (max-width: 640px) {
    .single-works-slider-photo button.slick-prev.slick-arrow {
        left: 2.6875vw;
    }
}

@media screen and (max-width: 1024px) {
    .single-works-slider-photo button.slick-next.slick-arrow {
        right: 1.9296875vw;
    }
}

@media screen and (max-width: 640px) {
    .single-works-slider-photo button.slick-next.slick-arrow {
        right: 2.6875vw;
    }
}

@media screen and (max-width: 640px) {

    .single-works-slider-photo button.slick-prev::before,
    .single-works-slider-photo button.slick-next::before {
        width: 7.8125vw;
        height: 7.8125vw;
    }
}

.detailsPhoto__thumb {
    overflow-y: auto;
    width: 120px;
    padding-right: 10px;
    height: 530px;
}

.detailsPhoto__thumb-inner {
    /* display: flex; */
    flex-wrap: wrap;
    justify-content: space-between;
    height: auto;
}

.single-works-popup {
    max-width: 1000px;
    color: #ffffff;
    margin: 0 auto;
}

.single-works-popup figure {
    text-align: center;
    margin: 0 auto 2em;
}

.single-works-popup img {
    width: 100%;
    display: block;
    max-height: 80vh;
    margin: 0 auto;
}

.single-works-popup span {
    font-family: "BIZ UDMincho", serif;
    color: #2b2b2b;
    padding: 1em;
}

.panel-item {
    cursor: pointer;
    width: 100%;
    height: 80px;
    position: relative;
    margin-bottom: 4%;
}

.panel-item:nth-of-type(2n) {
    margin-right: 0;
}

.panel-item figure {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0;
}

.panel-item img {
    font-family: "object-fit: cover;";
    width: 100%;
    max-width: unset;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    image-rendering: -webkit-optimize-contrast;
    backface-visibility: visible;
}

.single-works-popup p {
    font-size: 1.5rem;
    line-height: 1.75;
    text-align: center;
}

.mfp-close-btn-in .mfp-close {
    width: 77px;
    height: 77px;
    color: #ffffff;
    font-size: 50px;
    top: 0;
    cursor: pointer;
}

.mfp-close:active {
    top: 0 !important;
}

.mfp-wrap.mfp-ready .mfp-content {
    pointer-events: none;
}

@media screen and (max-width: 1240px) {
    .single-works-slider {}

    /* .single-works-slider-photo .single-works-slider-main {
        width: calc(100% - 25vw);
    } */
    .single-works-slider-photo .single-works-slider-main i {
        width: 6.4516129032vw;
        height: 6.4516129032vw;
    }

    .single-works-slider-photo .single-works-slider-main i::before {
        width: 6.4516129032vw;
        height: 6.4516129032vw;
    }

    .single-works-slider-photo .single-works-slider-main .slick-slide figure {
        height: 48.064516129vw;
    }

    .detailsPhoto__thumb {
        /* width: 23.3870967742vw;
        height: 48.064516129vw; */
    }

    .single-works-popup figure {
        margin: 0 auto 2.5806451613vw;
    }

    /* .panel-item {
        width: calc((100% - 1.1290322581vw) / 2);
        height: 11.4516129032vw;
    } */
    .single-works-popup p {
        font-size: 1.2096774194vw;
    }

    .mfp-close-btn-in .mfp-close {
        width: 6.2096774194vw;
        height: 6.2096774194vw;
        color: #ffffff;
        font-size: 4.0322580645vw;
        top: 0;
    }

    .single-works-slider .slick-prev {
        width: 3.2258064516vw;
        height: 2.5806451613vw;
        left: 1.6129032258vw;
    }

    .single-works-slider [dir=rtl] .slick-prev {
        left: auto;
        right: 1.6129032258vw;
    }

    .single-works-slider .slick-prev:before {
        border-width: 1.2096774194vw 3.2258064516vw 1.2903225806vw 0;
    }

    .single-works-slider .slick-next {
        width: 3.2258064516vw;
        height: 2.5806451613vw;
        right: 1.6129032258vw;
    }

    .single-works-slider [dir=rtl] .slick-next {
        left: 1.6129032258vw;
        right: auto;
    }

    .single-works-slider .slick-next:before {
        border-width: 1.2903225806vw 0 1.2903225806vw 3.2258064516vw;
    }
}

@media screen and (max-width: 1024px) {
    .single-works-slider {
        margin: 0 0 8%;
    }

    .single-works-slider-photo .single-works-slider-main {
        /* width: calc(100% - 30.2734375vw); */
    }

    .single-works-slider-photo .single-works-slider-main i {
        width: 7.8125vw;
        height: 7.8125vw;
    }

    .single-works-slider-photo .single-works-slider-main i::before {
        width: 7.8125vw;
        height: 7.8125vw;
    }

    .single-works-slider-photo .single-works-slider-main .slick-slide figure {
        height: 58.203125vw;
    }

    .detailsPhoto__thumb {
        /* width: 28.3203125vw;
        height: 58.203125vw; */
    }

    .single-works-popup figure {
        margin: 0 auto 3.125vw;
    }

    .panel-item {
        /* width: calc((100% - 1.3671875vw) / 2);
        height: 13.8671875vw; */
    }

    .single-works-popup p {
        font-size: 1.46484375vw;
    }

    .mfp-close-btn-in .mfp-close {
        width: 7.51953125vw;
        height: 7.51953125vw;
        color: #ffffff;
        font-size: 4.8828125vw;
        top: 0;
    }

    .single-works-slider .slick-prev {
        width: 3.90625vw;
        height: 3.125vw;
        left: 1.953125vw;
    }

    .single-works-slider [dir=rtl] .slick-prev {
        left: auto;
        right: 1.953125vw;
    }

    .single-works-slider .slick-prev:before {
        border-width: 1.46484375vw 3.90625vw 1.5625vw 0;
    }

    .single-works-slider .slick-next {
        width: 3.90625vw;
        height: 3.125vw;
        right: 1.953125vw;
    }

    .single-works-slider [dir=rtl] .slick-next {
        left: 1.953125vw;
        right: auto;
    }

    .single-works-slider .slick-next:before {
        border-width: 1.5625vw 0 1.5625vw 3.90625vw;
    }

}

@media screen and (max-width: 640px) {
    .single-works-slider-photo .single-works-slider-main .slick-slide img {
        height: 58vw;
    }

    .single-works-slider {
        margin: 0 0 7.8125vw;
    }

    .single-works-slider-photo .single-works-slider-main {
        width: 100%;
    }

    .single-works-slider-photo .single-works-slider-main i {
        width: 10.625vw;
        height: 10.625vw;
        bottom: 0;
        right: 0;
    }

    .single-works-slider-photo .single-works-slider-main i::before {
        width: 10.625vw;
        height: 10.625vw;
    }

    .single-works-slider-photo .single-works-slider-main .slick-slide figure {
        height: 93.125vw;
    }

    .detailsPhoto__thumb {
        overflow-x: auto;
        width: 100%;
        height: 22.1875vw;
        padding-right: 0;
    }

    .detailsPhoto__thumb-inner {
        overflow-x: auto;
        overflow-y: hidden;
        display: block;
        height: 22.1875vw;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }

    .single-works-popup figure {
        margin: 0 auto;
    }

    .panel-item {
        display: inline-block;
        width: 22.1875vw;
        height: 22.1875vw;
        margin-right: 0.5rem;
    }

    .panel-item:nth-of-type(2n) {
        margin-right: 0.5rem;
    }

    .single-works-popup p {
        font-size: 2.34375vw;
    }

    .mfp-close-btn-in .mfp-close {
        width: 12.03125vw;
        height: 12.03125vw;
        color: #ffffff;
        font-size: 7.8125vw;
        top: 0;
    }

    .single-works-slider .slick-prev {
        width: 6.25vw;
        height: 5vw;
        left: 3.125vw;
    }

    .single-works-slider [dir=rtl] .slick-prev {
        left: auto;
        right: 3.125vw;
    }

    .single-works-slider .slick-prev:before {
        border-width: 2.34375vw 6.25vw 2.5vw 0;
    }

    .single-works-slider .slick-next {
        width: 6.25vw;
        height: 5vw;
        right: 3.125vw;
    }

    .single-works-slider [dir=rtl] .slick-next {
        left: 3.125vw;
        right: auto;
    }

    .single-works-slider .slick-next:before {
        border-width: 2.5vw 0 2.5vw 6.25vw;
    }

    .single-works-slider-photo .slick-prev::before,
    .single-works-slider-photo .slick-next::before {
        width: 30.5px;
        height: 4px;
    }
}

.mfp-bg {
    overflow: hidden;
    background: #0b0b0b;
    z-index: 1042;
    opacity: 0.8;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
}

.mfp-wrap {
    z-index: 1043;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    width: 100%;
    height: 100%;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    padding: 0 !important;
    padding: 0 8px;
}

.mfp-container:before {
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    z-index: 1045;
    display: inline-block;
    text-align: left;
    position: relative;
    margin: 0 auto;
    vertical-align: middle;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    cursor: auto;
    width: 100%;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur {
    cursor: zoom-out;
}

.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    z-index: 1044;
    width: auto;
    color: #cccccc;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 8px;
    right: 8px;
    margin-top: -0.8em;
}

.mfp-preloader a {
    color: #cccccc;
}

.mfp-preloader a:hover {
    color: #ffffff;
}

.mfp-s-ready .mfp-preloader,
.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close,
button.mfp-arrow {
    overflow: visible;
    background: transparent;
    cursor: pointer;
    z-index: 1046;
    display: block;
    border: 0;
    box-shadow: none;
    padding: 0;
    outline: none;
    -webkit-appearance: none;
    touch-action: manipulation;
}

button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

.mfp-close {
    font-family: Arial, Baskerville, monospace;
    opacity: 0.65;
    width: 44px;
    height: 44px;
    color: #ffffff;
    font-style: normal;
    font-size: 28px;
    line-height: 44px;
    text-align: center;
    text-decoration: none;
    position: absolute;
    top: -44px;
    right: 0;
    padding: 0 0 18px 10px;
}

.mfp-close:hover,
.mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: -43px;
}

.mfp-close-btn-in .mfp-close {
    color: #ffffff;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    width: 100%;
    color: #ffffff;
    text-align: right;
    right: -6px;
    padding-right: 6px;
}

.mfp-counter {
    color: #cccccc;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
    position: absolute;
    top: 0;
    right: 0;
}

.mfp-arrow {
    opacity: 0.65;
    width: 65px;
    height: 110px;
    position: absolute;
    top: 50%;
    padding: 0;
    margin: 0;
    margin-top: -55px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover,
.mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: medium inset transparent;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 35px;
    margin-left: 35px;
}

.mfp-arrow:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: medium inset transparent;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 35px;
    margin-left: 35px;
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    opacity: 0.7;
    border-top-width: 21px;
    border-bottom-width: 21px;
}

.mfp-arrow-left {
    left: 5%;
}

.mfp-arrow-left:after {
    content: "";
    background-image: url(./img/prev-arrow-02.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 61px;
    height: 8px;
    border: none;
    top: 0;
    left: 20px;
    margin-left: 0;
    transform: none;
}

.mfp-arrow-right {
    right: 5%;
}

.mfp-arrow-right:after {
    content: "";
    background-image: url(./img/next-arrow-02.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 61px;
    height: 8px;
    border: none;
    top: 0;
    left: auto;
    right: 20px;
    transform: none;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    width: 100%;
    max-width: 900px;
    line-height: 0;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    background: #000;
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

/* Main image in popup */
img.mfp-img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    line-height: 0;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: "";
    background: #444444;
    z-index: -1;
    display: block;
    width: auto;
    height: auto;
    position: absolute;
    top: 40px;
    left: 0;
    bottom: 40px;
    right: 0;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.mfp-figure small {
    display: block;
    color: #bdbdbd;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    cursor: auto;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: -36px;
}

.mfp-title {
    color: #f3f3f3;
    line-height: 18px;
    text-align: left;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape),
screen and (max-height: 300px) {

    /**
       * Remove all paddings around the image on small screen
       */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }

    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }

    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }

    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }

    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        top: auto;
        bottom: 0;
        box-sizing: border-box;
        padding: 3px 5px;
        margin: 0;
    }

    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }

    .mfp-img-mobile .mfp-counter {
        top: 3px;
        right: 5px;
    }

    .mfp-img-mobile .mfp-close {
        background: rgba(0, 0, 0, 0.6);
        width: 35px;
        height: 35px;
        line-height: 35px;
        text-align: center;
        position: fixed;
        top: 0;
        right: 0;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        transform: scale(0.75);
        -webkit-transform: scale(0.75);
    }

    .mfp-arrow-left {
        transform-origin: 0;
    }

    .mfp-arrow-right {
        transform-origin: 100%;
    }

    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.mfp-bg {
    opacity: 0;
    transition: opacity 0.5s;
}

.mfp-bg.mfp-ready {
    opacity: 0.8;
}

.mfp-bg.mfp-removing {
    opacity: 0;
}

.mfp-wrap .mfp-content {
    opacity: 0;
    transition: opacity 0.5s;
}

.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}

.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}

.sp-only {
    display: none;
}

@media screen and (max-width: 640px) {
    .sp-only {
        display: block;
    }
}

/* form */
/* ************************************************************************************ */
/* ************************************************************************************ */
/* ************************************************************************************ */
/* フォーム部分 */

.section-form-privacy {
    text-align: left;
}

.mh-form-common {
    padding: 120px 0;
    background: #F1F0EE;
    font-weight: 400;
    position: relative;
    overflow: hidden;
}

.mh-form-common__inner {
    position: relative;
    z-index: 2;
}

.mh-form-common:before {
    content: '';
    background-image: url(../images/modelhouse02/page-modelhouse-form-bg_pc.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: -200px;
    left: -100px;
    width: 610px;
    height: 610px;
    z-index: 1;
}

.mh-form-common:after {
    content: '';
    background-image: url(../images/modelhouse02/page-modelhouse-form-bg_pc.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: -200px;
    right: -400px;
    width: 610px;
    height: 610px;
    z-index: 1;
}

@media (max-width: 1024px) {
    .mh-form-common {
        padding: 12% 0;
    }
}

.mh-form-common__title {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 40px;
    text-align: center;
    position: relative;
}

.mh-form-common__title:before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    display: block;
    width: 350px;
    height: 1px;
    background: #D3C8BE;
}

@media (max-width: 1024px) {
    .mh-form-common__title:before {
        width: 30%;
    }
}

@media (max-width: 640px) {
    .mh-form-common__title:before {
        width: 25%;
    }
}

.mh-form-common__title:after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    display: block;
    width: 350px;
    height: 1px;
    background: #D3C8BE;
}

@media (max-width: 1024px) {
    .mh-form-common__title:after {
        width: 30%;
    }
}

@media (max-width: 640px) {
    .mh-form-common__title:after {
        width: 25%;
    }
}



@media (max-width: 1024px) {
    .mh-form-common__title {
        margin-bottom: 4%;
    }
}

@media (max-width: 640px) {
    .mh-form-common__title {
        font-size: 18px;
        margin-bottom: 6%;
    }
}

.form-common {
    position: relative;
    font-family: "Noto Sans JP";
    color: #463A3D;
}

.underlayer-form-inner {
    max-width: 940px;
    padding: 0 20px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .underlayer-form-inner {
        padding: 0 2%;
    }
}

@media (max-width: 768px) {
    .underlayer-form-inner {
        padding: 0 4%;
    }
}

.underlayer-form-inner-title {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .underlayer-form-inner-title {
        margin-bottom: 4%;
    }
}

@media (max-width: 768px) {
    .underlayer-form-inner-title {
        margin-bottom: 6%;
        display: block;
    }
}

.underlayer-form-inner-title-01 {
    font-size: 24px;
    letter-spacing: 0.04em;
}

@media (max-width: 768px) {
    .underlayer-form-inner-title-01 {
        font-size: 20px;
    }
}

.underlayer-form-h3 {
    font-size: 32px;
    letter-spacing: 0.08em;
    line-height: 1.5em;
    text-align: center;
    margin: 0 auto 70px;
}

@media (max-width: 1024px) {
    .underlayer-form-h3 {
        font-size: 28px;
        margin: 0 auto 7%;
    }
}

@media (max-width: 640px) {
    .underlayer-form-h3 {
        font-size: 5vw;
    }
}

.form-common {
    font-size: 16px;
}

.form-common .wpcf7-not-valid-tip {
    display: none;
}

.form-common__inner {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .form-common__inner {
        max-width: 100%;
    }
}

.form-common__inner--cnt {
    margin: 0 auto 60px;
}

@media (max-width: 1280px) {
    .form-common__inner--cnt {
        margin: 0 auto 6%;
    }
}

@media (max-width: 640px) {
    .form-common__inner--cnt--left {
        font-size: 14px;
    }
}

.form-common__inner--cnt--mail {
    margin: 0 auto 20px;
    font-size: 14px;
    line-height: 1.6em;
}

@media (max-width: 1280px) {
    .form-common__inner--cnt--mail {
        margin: 0 auto 2%;
    }
}

.form-common__inner--cnt--person {
    display: flex;
    align-items: center;
}

.form-common__inner--cnt--person:not(:last-of-type) {
    margin-bottom: 12px;
}

.form-common__inner--cnt--person>span {
    width: 50%;
}

.form-common__inner--cnt ul:not(:last-of-type) {
    margin: 0 auto 20px;
}

@media (max-width: 1024px) {
    .form-common__inner--cnt ul:not(:last-of-type) {
        margin: 0 auto 2%;
    }
}

@media (max-width: 768px) {
    .form-common__inner--cnt ul:not(:last-of-type) {
        margin: 0 auto 6%;
    }
}

.form-common__inner--cnt ul li {
    float: left;
}

.form-common__inner--cnt ul li:first-of-type {
    width: 30%;
    display: flex;
    align-items: baseline;
    margin-right: 6%;
}

@media (max-width: 900px) {
    .form-common__inner--cnt ul li:first-of-type {
        width: 100%;
        margin-right: 0;
        margin-bottom: 2%;
    }
}

.form-common__inner--cnt ul li:first-of-type .form-common__inner--cnt--left {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .form-common__inner--cnt ul li:first-of-type .form-common__inner--cnt--left {
        width: auto;
        flex-direction: row-reverse;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .form-common__inner--cnt ul li:first-of-type .form-common__inner--cnt--left {
        gap: 10px;
    }
}

.form-common__inner--cnt ul li:last-of-type {
    width: 64%;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .form-common__inner--cnt ul li:last-of-type {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .form-common__inner--cnt ul li:last-of-type .form-common__inner--cnt--right--description {
        font-size: 12px;
    }
}

.form-common__inner--label {
    width: 84px;
    display: inline-block;
    margin: 0 0 0 10px;
    padding: 8px 0;
    color: #FFF;
    font-size: 14px;
    font-weight: 300;
    text-align: center;
    border-radius: 21px;
    background: #BCBCBC;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .form-common__inner--label {
        margin: 0;
    }
}

@media (max-width: 640px) {
    .form-common__inner--label {
        padding: 6px 0;
        font-size: 14px;
    }
}

.form-common__inner--label.label-required {
    background: #A19182;
    color: #FFF;
}

.form-common__inner--privacy {
    margin: 0 auto 77px;
    text-align: center;
    color: #1a1a1a;
}

@media (max-width: 1280px) {
    .form-common__inner--privacy {
        margin: 0 auto 8%;
    }
}

.form-common__inner--privacy--check {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.form-common textarea,
.form-common input[type="text"],
.form-common input[type="email"],
.form-common input[type="tel"],
.form-common input[type="date"],
.form-common select {
    width: 100%;
    background: #fff;
    padding: 2% 4%;
    resize: none;
    border: none;
}

.form-common input[type="text"]::placeholder,
.form-common input[type="email"]::placeholder,
.form-common input[type="tel"]::placeholder,
.form-common input[type="date"]::placeholder,
.form-common select::placeholder,
.form-common textarea::placeholder {
    font-weight: normal;
    color: #E0E0E0;
}

.form-common input[type="submit"],
.form-common input[type="button"] {
    width: 100%;
    line-height: 54px;
    text-align: center;
    background: #A19182;
    color: #fff;
    border: 1px solid #A19182;
    transition: 0.4s all;
    display: block;
    max-width: 400px;
    margin: 0 auto;
}


#your-oya,
#your-ko,
#your-age {
    width: 175px;
    max-width: 175px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

#your-oya::-ms-expand,
#your-ko::-ms-expand,
#your-age::-ms-expand {
    display: none;
}

.section-form-privacy {
    height: 200px;
    overflow: auto;
    padding: 1em;
    background: #FFF;
    border: solid 1px #A19182;
    margin-bottom: 50px;
}

.section-form-privacy__cnt h3,
.section-form-privacy__cnt p {
    font-size: 14px !important;
}

/* 260310 */
.mh-fv__title span {
}
.mh-fv__title {
    padding-top: 80px;
    max-width: 550px;
}
@media(max-width: 768px) {
    .mh-fv {
        height: 80%;
    }
}

/* 260325 */
.mh-fv {
    height: 100dvh;
}

.mh-fv__inner {
    padding: 90px 20px 0;
}

@media(max-width: 640px) {
    .mh-fv__inner {
        padding: 30px 20px 0;
    }
}

.mh-fv-performance {
    width: 360px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 40px;
}
@media(max-width: 768px) {
    .mh-fv__title {
        margin: 0 auto;
        padding-top: 56px;
    }
    .mh-fv-performance {
        width: 300px;
        gap: 12px;
        margin: 16px auto 0;
    }
}

.mh-fv-performance__item:nth-of-type(1) {
    width: 70px;
}

.mh-fv-performance__item:nth-of-type(2) {
    width: 67px;
}

.mh-fv-performance__item:nth-of-type(3) {
    width: 55px;
}

.mh-fv-performance__item:nth-of-type(4) {
    width: 72px;
}

.mh-concept__text {
    padding-top: 16px;
    border-top: 1px solid #E4DED9;
    margin-top: 32px;
}

@media(max-width: 768px) {
    .mh-concept__text {
        margin-top: 24px;
    }
}

.mh-concept__desc {
    margin-bottom: 20px;
}

.mh-concept__desc:last-of-type {
    margin-bottom: 0;
}

.mh-point__cnt {
    margin-top: 40px;
}

.mh-point__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 48px;
    border-bottom: 1px solid #D3C8BE;
    margin-bottom: 48px;
}

.mh-point__item:nth-of-type(2) {
    flex-direction: row-reverse;
}

.mh-point__item:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0;
}

@media(max-width: 768px) {
    .mh-point__item,
    .mh-point__item:nth-of-type(2) {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .mh-point__text {
        display: contents;
    }
    .mh-point__img {
        order: 2;
    }
    .mh-point__lead {
        order: 1;
        gap: 16px;
    }
    .mh-point__desc {
        order: 3;
    }
}

.mh-point__lead {
    display: flex;
    align-items: center;
    gap: 32px;
}

.mh-point__lead-num {
    display: block;
    font-family: "Abel";
    font-size: 64px;
    font-weight: 400;
    color: #D3C8BE;
    line-height: normal;
    text-transform: uppercase;
}

@media(max-width: 768px) {
    .mh-point__lead-num {
        font-size: 48px;
    }
}


/* 260514 */
.mh-performance {
    padding-block: 80px 0;
    background: #F6F4F2;
}
@media(max-width: 640px) {
    .mh-performance {
        padding-block: 8% 0;
    }
}
.mh-performance__inner.mh-common-inner {
    max-width: 680px;
}

.mh-concept {
    padding-top: 80px;
}

.mh-term {
    padding-block: 40px 32px;
    background-image: url(../images/modelhouse02/term-bg_pc.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    position: relative;
    z-index: 2;
}
@media(max-width: 640px) {
    .mh-term {
        padding: 6%;
        background-image: url(../images/modelhouse02/term-bg_sp.jpg);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
    }
}
.mh-term__img img {
    max-width: 536px;
    width: 100%;
    margin-inline: auto;
    text-align: center;
}
@media(max-width: 640px) {
    .mh-term__img img {
        max-width: 282px;
    }
}
.mh-term__scroll {
    margin-inline: auto;
    padding: 16px 12px;
    max-width: 634px;
    width: 100%;
    height: 200px;
    overflow-y: scroll;
    border: 1px solid #E4DED9;
}
@media(max-width: 640px) {
    .mh-term__scroll {
        padding: 4%;
        height: 100px;
    }
}
.mh-term__scroll-txt {
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1.71;
}
@media(max-width: 640px) {
    .mh-term__scroll-txt {
        font-size: 12px;
    }
}

.cmn-btn .arrow-box {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  position: absolute;
  right: 32px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: #eae5e0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cmn-btn {
    background: #FFF;
    margin-block: 16px 24px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    padding: 14px 20px 14px 32px;
    border: solid 1px #937c82;
    position: relative;
    border-radius: 5px;
    font-size: 14px;
    letter-spacing: 0;
    transition: all 0.3s;
    text-decoration: unset;
    max-width: 250px;
}
@media screen and (max-width: 1024px), print {
  .cmn-btn {
    padding: 8px 16px 8px 32px;
  }
}
.cmn-btn::before {
  content: "";
  width: 4px;
  height: 4px;
  background: #e85471;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.cmn-btn .arrow-box {
  right: 20px;
}
.cmn-btn:hover {
  background: #463a3d;
  color: #fff;
  transition: all 0.3s;
  text-decoration: unset;
}

.mh-access:after {
    pointer-events: none;
}

/* fixed-cta */
.mh-fixed-cta {
    position: fixed;
    right: 0;
    bottom: 0;
    z-index: 9000;
    width: 250px;
}

@media screen and (min-width: 1441px) {
    .mh-fixed-cta {
        width: 17.36vw; /* 250px / 1440px */
    }
}

.mh-fixed-cta a {
    display: block;
    transition: opacity 0.4s;
}

.mh-fixed-cta a:hover {
    opacity: 0.8;
}

.mh-fixed-cta img {
    display: block;
    width: 100%;
    height: auto;
}

@media screen and (max-width: 640px) {
    .mh-fixed-cta {
        right: auto;
        left: 0;
        width: 100%;
    }
}