@charset "UTF-8";

:root {
    --color-brw: #a48b78;
    --color-grey: #595757;
    --color-grey2: rgba(200, 202, 204, 0.2);
    --color-wh: #fff;
    --color-bk: #333;
    --gradient-brown: linear-gradient(to right, #a48b78, #595757);
    --font-goc:
        '游ゴシック', 'Yu Gothic', YuGothic, '游ゴシック体', 'Lucida Grande', 'Hiragino Kaku Gothic ProN', Meiryo,
        sans-serif !important;
    --font-min: 'fot-tsukuaoldmin-pr6n', sans-serif;
    --font-forum: 'Forum', 'Noto Serif JP', serif;
    --font-weight-normal: 400;
}
.u-mobile {
    display: none;
}
@media screen and (max-width: 767px) {
    .u-mobile {
        display: block;
    }
}
.u-desktop {
    display: block;
}
@media screen and (max-width: 767px) {
    .u-desktop {
        display: none;
    }
}
.c-heading {
    font-size: clamp(0.9rem, 0.72rem + 0.5625vw, 1.8rem);
    line-height: 2.6;
    letter-spacing: 0.05em;
    color: inherit;
    font-family: var(--font-forum);
    font-weight: var(--font-weight-normal);
}
.c-title {
    font-size: clamp(1.9rem, 1.52rem + 1.1875vw, 3.8rem);
    line-height: 1.6;
    letter-spacing: 0.05em;
    color: inherit;
    font-weight: var(--font-weight-normal);
}
.c-text {
    font-size: clamp(1.2rem, 1.04rem + 0.5vw, 2rem);
    line-height: 1.6;
    letter-spacing: 0.05em;
    color: inherit;
}
.c-job-title {
    font-size: clamp(1.2rem, 0.96rem + 0.75vw, 2.4rem);
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: inherit;
}
.c-name {
    margin-top: 1.25rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.25rem;
}
@media screen and (max-width: 767px) {
    .c-name {
        margin-top: 0.625rem;
        gap: 0.625rem;
    }
}
.c-name .c-name-ja {
    font-size: clamp(2.4rem, 1.96rem + 1.375vw, 4.6rem);
    line-height: 1.3;
    letter-spacing: 0.05em;
    color: inherit;
}
.c-name .c-name-en {
    font-size: clamp(1.1rem, 0.88rem + 0.6875vw, 2.2rem);
    line-height: 1.2;
    letter-spacing: 0.1em;
    color: inherit;
}
.c-modal-heading {
    font-size: clamp(1.8rem, 1.4rem + 1.25vw, 3.8rem);
    line-height: 1.6;
    letter-spacing: 0.05em;
    font-weight: var(--font-weight-normal);
    color: inherit;
}
@media screen and (max-width: 767px) {
    .c-modal-heading {
        text-align: center;
    }
}
.c-modal-title {
    font-size: clamp(1.8rem, 1.56rem + 0.75vw, 3rem);
    line-height: 1.6;
    letter-spacing: 0.05em;
    color: inherit;
    font-weight: var(--font-weight-normal);
}
@media screen and (max-width: 767px) {
    .c-modal-title {
        text-align: center;
    }
}
.c-modal-text {
    font-size: clamp(1.2rem, 1.04rem + 0.5vw, 2rem);
    line-height: 2;
    letter-spacing: 0.05em;
    color: inherit;
}
@media screen and (max-width: 767px) {
    .c-modal-text {
        letter-spacing: -0.02em;
        line-height: 1.5;
    }
}
.c-modal-profile-title {
    font-size: clamp(1.3rem, 1.12rem + 0.5625vw, 2.2rem);
    line-height: 1.25;
    letter-spacing: 0.1em;
    color: inherit;
    font-family: var(--font-forum);
    padding-bottom: 0.625rem;
    text-align: center;
    border-bottom: 1px solid var(--color-brw);
}
.c-modal-profile-content {
    margin-top: clamp(1.5rem, 1.2rem + 0.9375vw, 3rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: clamp(1.5rem, 1.2rem + 0.9375vw, 3rem);
}
.p-design {
    font-family: var(--font-min);
    font-weight: var(--font-weight-normal);
}
.p-design h1,
.p-design h2,
.p-design h3,
.p-design h4,
.p-design h5,
.p-design h6 {
    font-weight: inherit;
}
@-webkit-keyframes blurZoomIn {
    from {
        opacity: 0;
        -webkit-filter: blur(20px);
        filter: blur(20px);
        -webkit-transform: translate3d(0, 10px, 0) scaleX(1.2);
        transform: translate3d(0, 10px, 0) scaleX(1.2);
    }
    to {
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0);
        -webkit-transform: none;
        transform: none;
    }
}
@keyframes blurZoomIn {
    from {
        opacity: 0;
        -webkit-filter: blur(20px);
        filter: blur(20px);
        -webkit-transform: translate3d(0, 10px, 0) scaleX(1.2);
        transform: translate3d(0, 10px, 0) scaleX(1.2);
    }
    to {
        opacity: 1;
        -webkit-filter: blur(0);
        filter: blur(0);
        -webkit-transform: none;
        transform: none;
    }
}
.p-design .blurZoomIn {
    -webkit-animation: blurZoomIn 1s ease-out backwards;
    animation: blurZoomIn 1s ease-out backwards;
}
.p-design .cliping-mask {
    overflow: hidden;
}
.p-design__fv-image-wrapper {
    position: relative;
}
@media screen and (max-width: 767px) {
    .p-design__fv-image-wrapper {
        display: contents;
    }
}
.p-design__fv-img {
    position: relative;
    width: 100%;
}
.p-design__fv-img img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.p-design__fv-title {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
}
@media screen and (max-width: 767px) {
    .p-design__fv-title {
        top: 0;
        width: min(28%, 217px);
    }
}
.p-design__fv-title img {
    width: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.p-design__fv-content {
    position: relative;
    padding-block: clamp(2rem, -1.6rem + 11.25vw, 20rem) clamp(5rem, 4rem + 3.125vw, 10rem);
}
.p-design__fv-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/design/design-bg01.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}
.p-design__fv-content-inner {
    position: relative;
    z-index: 2;
    color: var(--color-brw);
    text-align: center;
}
.p-design__fv-content-heading {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 0;
    -ms-flex: 0;
    flex: 0;
    gap: 0.9375rem;
    width: min(40%, 262px);
    height: 1.8125rem;
    margin-inline: auto;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.1em;
    white-space: nowrap;
}
.p-design__fv-content-heading:before {
    content: '';
    width: 100%;
    height: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    border-top: 1px solid var(--color-brw);
    border-bottom: 1px solid var(--color-brw);
    border-left: 1px solid var(--color-brw);
}
.p-design__fv-content-heading:after {
    content: '';
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: 100%;
    height: 100%;
    border-top: 1px solid var(--color-brw);
    border-bottom: 1px solid var(--color-brw);
    border-right: 1px solid var(--color-brw);
}
.p-design__fv-content-main {
    position: relative;
    margin-top: clamp(1.5rem, 1.3rem + 0.625vw, 2.5rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: clamp(11rem, 8.8rem + 6.875vw, 22rem);
}
.p-design__fv-content-main:before {
    content: '';
    position: absolute;
    top: 65%;
    left: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 0.0625rem;
    height: 9.375rem;
    background-color: var(--color-brw);
    display: block;
}
@media screen and (max-width: 767px) {
    .p-design__fv-content-main:before {
        height: 4.6875rem;
    }
}
.p-design__fv-content-title {
    font-size: clamp(2.7rem, 2.16rem + 1.6875vw, 5.4rem);
    line-height: 1.3;
    letter-spacing: 0.07em;
}
.p-design__fv-content-text {
    position: relative;
    font-size: clamp(1.9rem, 1.52rem + 1.1875vw, 3.8rem);
    line-height: 1.6;
    letter-spacing: 0.05em;
}
.p-design__identity {
    position: relative;
}
.p-design__identity-img {
    overflow: hidden;
}
.p-design__identity-img img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.p-design__identity-content {
    position: absolute;
    top: 0;
    right: 0;
    width: min(28%, 370px);
    margin-top: 5%;
    margin-right: 8%;
    z-index: 2;
    color: var(--color-wh);
    text-shadow: 0 0 3px var(--color-bk);
}
@media screen and (max-width: 767px) {
    .p-design__identity-content {
        position: relative;
        top: auto;
        right: auto;
        width: min(100% - 100px, 527px);
        margin-top: 3.125rem;
        margin-inline: auto;
        color: var(--color-brw);
        text-shadow: none;
    }
}
.p-design-identity__text {
    margin-top: clamp(1.5rem, 1.3rem + 0.625vw, 2.5rem);
}
.p-design__facade {
    padding-top: 8%;
    padding-bottom: 0;
}
@media screen and (max-width: 767px) {
    .p-design__facade {
        display: flex;
        flex-direction: column;
        padding-top: 3.5rem;
    }
    .p-design__facade-img{
        order: 1;
    }
    .p-design__facade-inner {
        order: 2;
    }
    .p-design-box{
        order: 3;
    }
    
}
.p-design__facade-inner {
    margin-left: 7%;
    color: var(--color-brw);
}
@media screen and (max-width: 767px) {
    .p-design__facade-inner {
        width: calc(100% - 100px);
        margin-inline: auto;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 2.1875rem;
    }
}
@media screen and (max-width: 767px) {
    .p-design__facade-content {
        display: contents;
    }
}
.p-design__facade-img {
    overflow: hidden;
    width: 60%;
    margin: 3% auto 0;
}
@media screen and (max-width: 767px) {
    .p-design__facade-img {
        width: 100%;
    }
}
.p-design__facade-img img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.p-design-facade__item{
    width: min(50%, 540px);
}
@media screen and (max-width: 767px) {
    .p-design-facade__item{
        width: 100%;
        margin: 3.125rem auto 6.125rem;
    }
}

.p-design-facade__text {
    margin-top: clamp(1.5rem, 1.3rem + 0.625vw, 2.5rem);
    
}
.p-design-box{
    padding-bottom: 8%;
    background: #f4f3f2;
}
.p-design-box01{
    padding-top: 8%;
    padding-left: 7%;
    padding-right: 6%;
    margin-top: 8%;
    width: 100%;
    color: var(--color-brw);
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 11%;
}
.p-design-box01 .p-design__facade-content-img {
    flex: 1;
    min-width: 0;
    max-width: 700px;
}
.p-design-box01 .p-design-facade__item01{
    width: min(50%, 700px);
}
@media screen and (max-width: 767px) {
    .p-design-box {
        background-image: url(../images/design/design-bg01-sp.webp);
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        padding-bottom:  6.25rem;
    }
    .p-design-box01 {
        display: block;
        padding: 6.25rem 0 0;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        margin-top: unset;
    }
    .p-design-box01 .p-design-facade__item01{
        width: 100%;
    }
    .p-design-box01 .p-design__facade-content-img {
        min-width: unset;
        max-width: unset;
        width: calc(100% - 100px);
        margin-inline: auto;
        margin-top: clamp(2.5rem, 2.2rem + 0.9375vw, 4rem);
    }
    .p-design-facade__item-inner {
        width: calc(100% - 100px);
        margin-inline: auto;
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
}
.p-design-box02 {
    margin-top: 6%;
}
.p-design-box02-img {
    overflow: hidden;
    width: 60%;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .p-design-box02 {
        margin-top: 5rem;
    }
    .p-design-box02-img {
        width: calc(100% - 100px);
    }
}




@media screen and (max-width: 767px) {
    .p-design__common-space {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media screen and (max-width: 767px) {
    .p-design__common-space-inner {
        display: contents;
    }
}
.p-design__common-space-item {
    padding-block: clamp(3.5rem, 1.8rem + 5.3125vw, 12rem);
    position: relative;
}
.p-design__common-space-item:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/design/design-bg02.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
    .p-design__common-space-item:before {
        display: none;
        background-image: none;
    }
}
.p-design__common-space-item-inner {
    position: relative;
    z-index: 2;
    color: var(--color-brw);
    width: min(50%, 540px);
    margin-left: 7%;
}
@media screen and (max-width: 767px) {
    .p-design__common-space-item-inner {
        width: calc(100% - 100px);
        margin-inline: auto;
    }
}
.p-design__common-space-text {
    margin-top: clamp(1.5rem, 1.3rem + 0.625vw, 2.5rem);
}
.p-design__common-space-img {
    width: 100%;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .p-design__common-space-img {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
}
.p-design__common-space-img img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.p-design__common-space-content-wrapper {
    padding-block: clamp(7rem, 5.5rem + 4.6875vw, 14.5rem);
    width: min(100%, 1402px);
    margin-inline: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media screen and (max-width: 767px) {
    .p-design__common-space-content-wrapper {
        padding-block: 3.75rem;
        width: 100%;
    }
}
.p-design__common-space-content {
    display: flex;
    align-items: flex-end;
    padding-left: 7%;
    gap: clamp(3.5rem, 2.8rem + 2.1875vw, 7rem);
    color: var(--color-brw);
}
.p-design__common-space-content-wide{
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-top: clamp(7rem, 5.4rem + 5vw, 15rem);
    margin-bottom: clamp(7rem, 5.4rem + 5vw, 15rem);
}
@media screen and (max-width: 767px) {
    .p-design__common-space-content {
        padding-left: 0;
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
        gap: 2.1875rem;
    }
    .p-design__common-space-content-wide{
        margin-bottom: 0;
        margin-top: 5.5rem;
    }
}
.p-design__common-space-content + .p-design__common-space-content {
    margin-top: clamp(7rem, 5.4rem + 5vw, 15rem);
}
@media screen and (max-width: 767px) {
    .p-design__common-space-content + .p-design__common-space-content {
        margin-top: 5.5rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
.p-design__common-space-content-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58%;
    flex: 0 0 58%;
    overflow: hidden;
}
@media screen and (max-width: 767px) {
    .p-design__common-space-content-img {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }
}
.p-design__common-space-content-img img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.p-design__common-space-content-body {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 26%;
    flex: 0 0 26%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: clamp(1rem, 0.9rem + 0.3125vw, 1.5rem);
}
@media screen and (max-width: 767px) {
    .p-design__common-space-content-body {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        width: calc(100% - 100px);
        margin-inline: auto;
    }
}
.p-design__introduction {
    padding-block: clamp(6rem, 2.8rem + 10vw, 22rem);
    position: relative;
}
.p-design__introduction:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/design/design-bg03.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
    .p-design__introduction:before {
        background-image: url(../images/design/design-bg03-sp.webp);
    }
}
.p-design__introduction-inner {
    position: relative;
    z-index: 2;
    color: var(--color-brw);
    width: min(100% - 50px, 1240px);
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-design__introduction-inner {
        width: calc(100% - 100px);
        margin-inline: auto;
    }
}
.p-design__introduction-title {
    width: 73%;
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-design__introduction-title {
        width: 100%;
    }
}
.p-design__introduction-title img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.p-design__introduction-content {
    margin-top: clamp(5rem, 4rem + 3.125vw, 10rem);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(3.5rem, 2.8rem + 2.1875vw, 7rem);
}
@media screen and (max-width: 767px) {
    .p-design__introduction-content {
        grid-template-columns: repeat(1, 1fr);
    }
}

.p-design__guestroom {
    padding-block: clamp(3.5rem, 1.8rem + 5.3125vw, 12rem);
    position: relative;
}
.p-design__guestroom:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/design/design-bg04.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
    .p-design__guestroom:before {
        background-image: url(../images/design/design-bg04-sp.webp);
    }
}
.p-design__guestroom-inner {
    position: relative;
    z-index: 2;
    color: var(--color-brw);
    width: min(100% - 50px, 1040px);
    margin-inline: auto;
}
@media screen and (max-width: 767px) {
    .p-design__guestroom-inner {
        width: 85%;
        margin-inline: auto;
    }
}
.p-design__guestroom-title{
    font-size: clamp(20px, 2.6vw, 40px);
    letter-spacing: .2rem;
    color: #fff;
    font-family: var(--font-forum);
    font-weight: var(--font-weight-normal);
    letter-spacing: .1rem;
}
.p-design__guestroom-text{
    font-size: clamp(14px, 1.3vw, 20px);
    letter-spacing: .1rem;
    color: #fff;
    line-height: 2;
    margin-top: 20px;
}
.p-design__guestroom-img{
    margin-top: 40px;
}
@media screen and (max-width: 767px) {
    .p-design__guestroom-img{
        margin-top: 20px;
    }
}

.p-design__modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background-color: rgba(0, 0, 0, 0.6);
}
.p-design__modal.is-active {
    display: block;
}
.p-design__modal-inner {
    position: relative;
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner {
        padding-block: 3.75rem;
    }
}
.p-design__modal-inner:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.p-design__modal-inner.--architecture:before {
    background-image: url(../images/design/design-bg-modal01.webp);
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner.--architecture:before {
        background-image: url(../images/design/design-bg-modal01-sp.webp);
    }
}
.p-design__modal-inner.--bricks:before {
    background-image: url(../images/design/design-bg-modal02.webp);
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner.--bricks:before {
        background-image: url(../images/design/design-bg-modal02-sp.webp);
    }
}
.p-design__modal-inner.--glass:before {
    background-image: url(../images/design/design-bg-modal01.webp);
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner.--glass:before {
        background-image: url(../images/design/design-bg-modal04-sp.webp);
    }
}
.p-design__modal-inner.--iron:before {
    background-image: url(../images/design/design-bg-modal02.webp);
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner.--iron:before {
        background-image: url(../images/design/design-bg-modal03-sp.webp);
    }
}
.p-design__modal-container {
    position: relative;
    z-index: 2;
    color: var(--color-brw);
    width: min(100% - 25px, 1400px);
    margin-inline: auto;
    padding-bottom: clamp(6rem, 4.8rem + 3.75vw, 12rem);
}
@media screen and (max-width: 767px) {
    .p-design__modal-container {
        width: calc(100% - 80px);
        margin-inline: auto;
        padding-block: 0;
    }
}
.p-design__modal-title {
    position: relative;
    z-index: 2;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}
@media screen and (max-width: 767px) {
    .p-design__modal-title {
        width: 80%;
        margin-inline: auto;
    }
}
.p-design__modal-title img {
    display: block;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.p-design__modal-content {
    margin-top: clamp(6.5rem, 5.2rem + 4.0625vw, 13rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(5rem, 4.2rem + 2.5vw, 9rem);
}
@media screen and (max-width: 767px) {
    .p-design__modal-content {
        margin-top: 2.1875rem;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 1.875rem;
    }
}
.p-design__modal-image-wrapper {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 30%;
    flex: 0 0 30%;
}
@media screen and (max-width: 767px) {
    .p-design__modal-image-wrapper {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
    }
}
@media screen and (max-width: 767px) {
    .p-design__modal-img {
        width: 60%;
        margin-inline: auto;
    }
}
.p-design__modal-img img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.p-design__modal-profile {
    margin-top: clamp(4rem, 3.2rem + 2.5vw, 8rem);
    text-align: center;
}
.p-design__modal-text-items {
    margin-top: clamp(3.5rem, 2.8rem + 2.1875vw, 7rem);
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(6.5rem, 6.8rem - 0.9375vw, 5rem);
}
@media screen and (max-width: 767px) {
    .p-design__modal-text-items {
        grid-template-columns: repeat(1, 1fr);
        gap: 5rem;
    }
}
.p-design__modal-text-item:not(.p-design__modal-text-items .p-design__modal-text-item) {
    margin-top: clamp(3.5rem, 2.8rem + 2.1875vw, 7rem);
}
@media screen and (max-width: 767px) {
    .p-design__modal-text-item:not(.p-design__modal-text-items .p-design__modal-text-item) {
        margin-top: 4.375rem;
    }
}
.p-design__modal-text-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: clamp(1.5rem, 1.2rem + 0.9375vw, 3rem);
    position: relative;
}
@media screen and (max-width: 767px) {
    .p-design__modal-text-item:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 0.9375rem;
        height: 0.9375rem;
        background-color: var(--color-brw);
        border-radius: 50%;
        position: absolute;
        top: -17%;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
        display: block;
    }
    .p-design__modal-text-item:first-child:before {
        display: none;
    }
}
.p-design__modal-profile-detail {
    background-color: hsla(0, 0%, 100%, 0.5);
    padding: clamp(4rem, 3.2rem + 2.5vw, 8rem) clamp(3rem, 2.4rem + 1.875vw, 6rem);
}
.p-design__modal-close {
    margin-top: clamp(6rem, 4.8rem + 3.75vw, 12rem);
    width: 10%;
    margin-inline: auto;
    display: grid;
    place-items: center;
}
@media screen and (max-width: 767px) {
    .p-design__modal-close {
        width: 30%;
        -webkit-box-ordinal-group: 100;
        -ms-flex-order: 99;
        order: 99;
    }
}
.p-design__modal-close img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.p-design__modal-architecture-detail {
    margin-top: clamp(6rem, 4.8rem + 3.75vw, 12rem);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 767px) {
    .p-design__modal-architecture-detail {
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        grid-template-columns: repeat(1, 1fr);
    }
}
.p-design__modal-detail-heading {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    font-size: clamp(1.3rem, 1.08rem + 0.6875vw, 2.4rem);
    line-height: 1.7;
    letter-spacing: 0.1em;
    color: inherit;
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner.--bricks .p-design__modal-title {
        width: min(40%, 285px);
    }
}
.p-design__modal-inner.--bricks .p-design__modal-content {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner.--bricks .p-design__modal-content {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }
}
.p-design__modal-bricks-container {
    margin-left: 7%;
    position: relative;
    z-index: 2;
    color: var(--color-brw);
    padding-bottom: clamp(6rem, 4.8rem + 3.75vw, 12rem);
}
@media screen and (max-width: 767px) {
    .p-design__modal-bricks-container {
        padding-bottom: 0;
        width: calc(100% - 100px);
        margin-inline: auto;
    }
}
@media screen and (max-width: 767px) {
    .p-design__modal-bricks-container .p-design__modal-text-wrapper {
        display: contents;
    }
}
@media screen and (max-width: 767px) {
    .p-design__modal-bricks-container .p-design__modal-text-title {
        margin-top: 3.125rem;
    }
}
.p-design__modal-bricks-img-wrapper {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 36%;
    flex: 0 0 36%;
}
@media screen and (max-width: 767px) {
    .p-design__modal-bricks-img-wrapper {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        width: 60%;
        margin-inline: auto;
    }
}
.p-design__modal-bricks-img-wrapper img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 767px) {
    .p-design__modal-bricks-img .caption {
        position: relative;
    }
}
@media screen and (max-width: 767px) {
    .p-design__modal-bricks-img .is-light {
        color: var(--color-bk);
    }
}
.p-design__modal-bricks-profile {
    margin-top: clamp(6rem, 4.8rem + 3.75vw, 12rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
@media screen and (max-width: 767px) {
    .p-design__modal-bricks-profile {
        margin-top: 0;
        display: contents;
    }
}
.p-design__modal-bricks-profile .p-design__modal-profile {
    margin-top: 0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 60%;
    flex: 0 0 60%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    .p-design__modal-bricks-profile .p-design__modal-profile {
        display: contents;
    }
}
.p-design__modal-bricks-profile .p-design__modal-profile-heading {
    background-color: hsla(0, 0%, 100%, 0.5);
    padding: 3.125rem 1.875rem 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media screen and (max-width: 767px) {
    .p-design__modal-bricks-profile .p-design__modal-profile-heading {
        padding: 0;
        background-color: rgba(0, 0, 0, 0);
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
}
.p-design__modal-bricks-profile .p-design__modal-profile-heading .c-name {
    margin-top: 1.25rem;
    gap: 1.25rem;
}
@media screen and (max-width: 767px) {
    .p-design__modal-bricks-profile .p-design__modal-profile-heading .c-name {
        margin-top: 0.625rem;
        gap: 0.625rem;
    }
}
.p-design__modal-bricks-profile .p-design__modal-profile-detail {
    background-color: hsla(0, 0%, 100%, 0.5);
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    .p-design__modal-bricks-profile .p-design__modal-profile-detail {
        margin-top: 2.5rem;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4;
    }
}
.p-design__modal-bricks-profile .c-modal-text {
    text-align: left;
}
.p-design__modal-bricks-profile-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
}
@media screen and (max-width: 767px) {
    .p-design__modal-bricks-profile-img {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto;
        width: 60%;
        margin-inline: auto;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
}
.p-design__modal-bricks-profile-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner.--glass .p-design__modal-container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner.--glass .p-design__modal-content {
        display: contents;
    }
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner.--glass .p-design__modal-image-wrapper {
        margin-top: 2.1875rem;
        -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
        order: -2;
    }
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner.--glass .p-design__modal-text-wrapper {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner.--glass .p-design__modal-text-title {
        margin-top: 3.75rem;
    }
}
.p-design__modal-inner.--glass .p-design__modal-text-content {
    margin-top: clamp(1.5rem, 1.2rem + 0.9375vw, 3rem);
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner.--glass .p-design__modal-text-content {
        margin-top: 1.875rem;
    }
}
.p-design__modal-image-items {
    margin-top: clamp(1.5rem, 1.2rem + 0.9375vw, 3rem);
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3125rem;
}
@media screen and (max-width: 767px) {
    .p-design__modal-image-items {
        margin-top: 3.75rem;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        gap: 0;
    }
}
.p-design__modal-image-item img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.p-design__modal-glass-detail {
    margin-top: clamp(2rem, 1.6rem + 1.25vw, 4rem);
    background-color: hsla(0, 0%, 100%, 0.5);
    padding: clamp(4rem, 3.2rem + 2.5vw, 8rem) clamp(3rem, 2.4rem + 1.875vw, 6rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: clamp(2rem, 1.6rem + 1.25vw, 4rem);
}
@media screen and (max-width: 767px) {
    .p-design__modal-glass-detail {
        display: contents;
    }
}
.p-design__modal-glass-profile {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
}
@media screen and (max-width: 767px) {
    .p-design__modal-glass-profile {
        margin-top: 2.5rem;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        background-color: hsla(0, 0%, 100%, 0.5);
        padding: clamp(4rem, 3.2rem + 2.5vw, 8rem) clamp(3rem, 2.4rem + 1.875vw, 6rem);
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
}
.p-design__modal-glass-profile-info {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    text-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media only screen and (max-width: 1023px) {
    .p-design__modal-glass-profile-info {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 30%;
        flex: 0 0 30%;
    }
}
@media screen and (max-width: 767px) {
    .p-design__modal-glass-profile-info {
        margin-top: 1.875rem;
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1;
    }
}
.p-design__modal-glass-profile-info .c-job-title {
    display: block;
    white-space: nowrap;
}
@media screen and (max-width: 767px) {
    .p-design__modal-glass-profile-info .c-job-title {
        white-space: normal;
    }
}
.p-design__modal-glass-profile-info .c-name {
    gap: 1.25rem;
}
@media screen and (max-width: 767px) {
    .p-design__modal-glass-profile-info .c-name {
        gap: 0.625rem;
    }
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner.--iron .p-design__modal-container {
        margin-top: 2.1875rem;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        gap: 0;
    }
}
.p-design__modal-inner.--iron .p-design__modal-content {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner.--iron .p-design__modal-content {
        display: contents;
    }
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner.--iron .p-design__modal-image-wrapper {
        display: contents;
    }
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner.--iron .p-design__modal-img {
        -webkit-box-ordinal-group: -2;
        -ms-flex-order: -3;
        order: -3;
    }
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner.--iron .p-design__modal-text-wrapper {
        display: contents;
    }
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner.--iron .p-design__modal-text-wrapper > .c-modal-heading,
    .p-design__modal-inner.--iron .p-design__modal-text-wrapper > .p-design__modal-text-items {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner.--iron .p-design__modal-glass-profile {
        display: contents;
    }
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner.--iron .p-design__modal-iron-profile {
        display: contents;
    }
}
@media screen and (max-width: 767px) {
    .p-design__modal-inner.--iron .c-modal-heading {
        margin-top: 4.375rem;
    }
}
.p-design__modal-iron-profile {
    margin-top: clamp(2.5rem, 2.4rem + 0.3125vw, 3rem);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: clamp(2.5rem, 2rem + 1.5625vw, 5rem);
}
.p-design__modal-iron-profile .p-design__modal-profile {
    margin-top: 0;
}
@media screen and (max-width: 767px) {
    .p-design__modal-iron-profile .p-design__modal-profile {
        margin-top: 2.1875rem;
        -webkit-box-ordinal-group: -1;
        -ms-flex-order: -2;
        order: -2;
    }
}
.p-design__modal-iron-profile-detail {
    background-color: hsla(0, 0%, 100%, 0.5);
    padding: clamp(4rem, 3.2rem + 2.5vw, 8rem) clamp(3rem, 2.4rem + 1.875vw, 6rem);
}
@media screen and (max-width: 767px) {
    .p-design__modal-iron-profile-detail {
        margin-top: 3.75rem;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
}
.p-design__modal-iron-image-wrapper {
    margin-top: clamp(6rem, 4.8rem + 3.75vw, 12rem);
}
@media screen and (max-width: 767px) {
    .p-design__modal-iron-image-wrapper {
        margin-top: 0;
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
}
.p-design__modal-detail-image-2column {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.3125rem;
}
