@charset "UTF-8";
/* 
Theme Name: ◆◆◆site_name◆◆◆
Author: ◆◆◆site_name◆◆◆
Author URI: https://◆◆◆◆◆◆/
Version: 1.0
*/
/* CSS Document */
:root {
    --font-jp: "Zen Kaku Gothic New", sans-serif;
    --font-en: "Lexend", sans-serif;
    --color-gray: #F2F2F2;
    --color-black: #101010;
    --header-height: 110px;
    --inner__outer__width: calc((min(100vw, 1920px) - min(100vw, 1682px) * 0.88) / 2);
}
@media (max-width: 1280px) {
    :root {
        --header-height: 80px;
    }
}
@media (max-width: 1000px) {
    :root {
        --header-height: 55px;
    }
}

.font-jp {
    font-family: var(--font-jp);
}

.font-en {
    font-family: var(--font-en);
}

html {
    font-size: 62.5%;
    scroll-padding-top: var(--header-height);
    scroll-behavior: smooth;
    -moz-text-size-adjust: 100%;
         text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    font-feature-settings: "palt";
    -webkit-font-smoothing: antialiased;
}
html body {
    min-height: 100%;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.032em;
    color: #604117;
    background-color: #FFF5E8;
    font-weight: 500;
    font-family: var(--font-jp);
}
@media (max-width: 1000px) {
    html body {
        font-size: 1.4rem;
    }
}
html body main {
    margin-top: var(--header-height);
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease-in;
}
a:hover {
    text-decoration: none;
    opacity: 0.7;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

/* ------------------------------------- /
/   共通
/* ------------------------------------- */
.taC {
    text-align: center;
}

.taR {
    text-align: right;
}

.iB {
    display: inline-block;
}

.inner {
    width: min(100%, 1682px);
    margin: 0 auto;
    padding: 0 min(6%, 101px);
}
@media (max-width: 768px) {
    .inner {
        padding: 0 4%;
    }
}

.sp768 {
    display: none;
}
@media (max-width: 768px) {
    .sp768 {
        display: block;
    }
}

.m0a {
    margin: 0 auto;
}

.grecaptcha-badge {
    visibility: hidden;
}

/* ------------------------------------- /
/   menu-trigger
/* ------------------------------------- */
.menu-trigger {
    display: none;
    width: 20px;
    height: 12px;
    background: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    position: absolute;
    right: 19px;
    top: 21px;
    z-index: 100001;
    padding-block-end: 0;
    padding-block-start: 0;
}
.menu-trigger span {
    display: inline-block;
    width: 20px;
    height: 1px;
    background-color: var(--color-black);
    position: absolute;
    left: calc(50% - 10px);
    transition-duration: 0.6s;
}
.menu-trigger span:nth-of-type(1) {
    top: calc(50% - 5px);
}
.menu-trigger span:nth-of-type(2) {
    top: calc(50% + 5px);
}
.menu-trigger span:nth-of-type(3) {
    top: 50%;
}
.menu-trigger.opened span {
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.menu-trigger.opened span:nth-of-type(1) {
    animation-name: menu-close_01;
}
.menu-trigger.opened span:nth-of-type(2) {
    animation-name: menu-close_02;
}
.menu-trigger.opened span:nth-of-type(3) {
    animation-name: menu-close_03;
}
.menu-trigger.active span {
    background-color: var(--color-black);
}
.menu-trigger.active span:nth-of-type(1) {
    animation-name: menu-open_01;
}
.menu-trigger.active span:nth-of-type(2) {
    animation-name: menu-open_02;
}
.menu-trigger.active span:nth-of-type(3) {
    animation-name: menu-open_03;
}
@media (max-width: 1000px) {
    .menu-trigger {
        display: block;
    }
}
@keyframes menu-open_01 {
    0% {
        top: calc(50% - 5px);
        transform: rotate(0deg);
    }
    33.3333% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
}
@keyframes menu-close_01 {
    0% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
    33.3333% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - 5px);
        transform: rotate(0deg);
    }
}
@keyframes menu-open_03 {
    0% {
        width: 20px;
        left: calc(50% - 10px);
    }
    66.6666% {
        width: 20px;
        left: calc(50% - 10px);
    }
    70% {
        width: 0;
        left: calc(50% - 0px);
    }
    100% {
        width: 0;
        left: calc(50% - 0px);
    }
}
@keyframes menu-close_03 {
    0% {
        width: 0;
        left: calc(50% - 0px);
    }
    66.6666% {
        width: 20px;
        left: calc(50% - 10px);
    }
    70% {
        width: 20px;
        left: calc(50% - 10px);
    }
    100% {
        width: 20px;
        left: calc(50% - 10px);
    }
}
@keyframes menu-open_02 {
    0% {
        top: calc(50% + 5px);
        transform: rotate(0deg);
    }
    33.3333% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
}
@keyframes menu-close_02 {
    0% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
    33.3333% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + 5px);
        transform: rotate(0deg);
    }
}

/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
    background: #FFF5E8;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    height: var(--header-height);
    border-bottom: 1px solid #604117;
}
header .header__sp__contact {
    display: none;
}
@media (max-width: 1000px) {
    header .header__sp__contact {
        display: block;
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        width: 55px;
        height: 55px;
        border-right: 1px solid #604117;
    }
    header .header__sp__contact::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 14px;
        aspect-ratio: 14/10;
        background: url(../img/common/mail.svg) center/contain no-repeat;
    }
}
header .header__wrapper {
    height: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 var(--inner__outer__width) 0 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-en);
    font-weight: 400;
    font-size: 2rem;
    letter-spacing: 0.04em;
    line-height: 1.25;
    position: relative;
}
@media (max-width: 1440px) {
    header .header__wrapper {
        padding: 0 40px;
        font-size: 1.8rem;
    }
}
@media (max-width: 1000px) {
    header .header__wrapper {
        padding: 0 55px;
        justify-content: center;
    }
    header .header__wrapper::before {
        content: "";
        position: absolute;
        top: 0;
        right: 55px;
        width: 1px;
        height: 100%;
        background: #604117;
        z-index: 1000;
    }
}
@media (max-width: 1440px) {
    header .header__logo {
        max-width: 180px;
    }
}
@media (max-width: 1000px) {
    header .header__logo {
        max-width: 122px;
    }
}
header .header__menu {
    display: flex;
    align-items: center;
    gap: 50px;
}
@media (max-width: 1440px) {
    header .header__menu {
        gap: 20px;
    }
}
@media (max-width: 1000px) {
    header .header__menu {
        display: none;
    }
}
header .header__menu .header__contact {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    border-radius: 17px;
    padding: 0 23px;
    background: #604117;
    color: #fff;
}
@media (max-width: 1440px) {
    header .header__menu .header__contact {
        padding: 0 15px;
    }
}

.nav {
    display: none;
}
@media (max-width: 1000px) {
    .nav {
        display: flex;
        justify-content: center;
        width: min(100%, 400px);
        height: 100vh;
        background: #FFF5E8;
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        transition-duration: 0.8s;
        transition-delay: 0.4s;
        transform: translateX(100%);
        z-index: 999;
        font-size: 1.5rem;
        font-family: var(--font-en);
        font-weight: 400;
    }
    .nav.active {
        transform: translateX(0);
        transition-delay: 0s;
    }
    .nav.active .wrapper {
        transition-delay: 0.8s;
        opacity: 1;
    }
    .nav .nav__header {
        font-size: 1.6rem;
        height: 55px;
        border-bottom: 1px solid #604117;
        width: 100%;
        padding-right: 55px;
        padding-left: 40px;
        display: flex;
        align-items: center;
    }
    .nav .wrapper {
        width: 100%;
        opacity: 0;
        transition-duration: 0.4s;
    }
    .nav .wrapper .nav__menu li a {
        display: flex;
        align-items: center;
        width: 100%;
        padding: 0 40px;
        height: 50px;
        border-bottom: 1px solid #604117;
        position: relative;
    }
    .nav .wrapper .nav__menu li a::before {
        content: "";
        position: absolute;
        top: 50%;
        right: 40px;
        width: 16px;
        aspect-ratio: 16/5;
        transform: translateY(-50%);
        background: url(../img/common/nav_arrow.svg) center/contain no-repeat;
    }
    .nav .wrapper .nav__menu li a.header__contact {
        height: 30px;
        border-radius: 15px;
        color: #fff;
        background: #604117;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.6rem;
        width: -moz-fit-content;
        width: fit-content;
        margin: 40px auto 15px;
        padding: 0 30px;
    }
    .nav .wrapper .nav__menu li a.header__contact::before {
        display: none;
    }
    .nav .wrapper .nav__copyright {
        font-size: 1.2rem;
        letter-spacing: 0.032em;
        font-family: var(--font-jp);
        text-align: center;
    }
}

/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    border-top: 1px solid #604117;
    background: #EFEBE5;
}
footer .footer__logo {
    display: block;
    max-width: 249px;
}
@media (max-width: 1000px) {
    footer .footer__logo {
        max-width: 138px;
        margin: 0 auto;
    }
}
footer .footer__container {
    border-bottom: 1px solid #604117;
    display: flex;
    justify-content: space-between;
}
@media (max-width: 1000px) {
    footer .footer__container {
        flex-direction: column;
        row-gap: 25px;
    }
}
footer .footer__left {
    font-size: 1.8rem;
    line-height: 2;
}
@media (max-width: 1000px) {
    footer .footer__left {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    footer .footer__left {
        font-size: 1.2rem;
    }
}
footer .font20 {
    font-size: 2rem;
    line-height: 1.8;
}
@media (max-width: 1000px) {
    footer .font20 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    footer .font20 {
        font-size: 1.6rem;
    }
}
footer .footer__right {
    max-width: 400px;
    font-size: 2rem;
    letter-spacing: 0.04em;
    font-family: var(--font-en);
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 35px 140px;
}
@media (max-width: 1440px) {
    footer .footer__right {
        font-size: 1.8rem;
        gap: 20px 80px;
    }
}
@media (max-width: 1000px) {
    footer .footer__right {
        font-size: 1.6rem;
        gap: 14px;
        max-width: unset;
        justify-content: flex-start;
    }
}
@media (max-width: 768px) {
    footer .footer__right {
        font-size: 1.4rem;
    }
}
footer .footer__right > a {
    width: 125px;
}
@media (max-width: 1000px) {
    footer .footer__right > a {
        width: 100%;
    }
}
footer .footer__right > a.header__contact {
    color: #fff;
    background: #604117;
    height: 30px;
    border-radius: 17px;
    padding: 0 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
}
footer .footer__copyright {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-size: 2rem;
}
@media (max-width: 1440px) {
    footer .footer__copyright {
        font-size: 1.8rem;
    }
}
@media (max-width: 1000px) {
    footer .footer__copyright {
        font-size: 1.4rem;
    }
}
@media (max-width: 768px) {
    footer .footer__copyright {
        font-size: 1.2rem;
    }
}

/* ------------------------------------- /
/  共通ブロック
/* ------------------------------------- */
.lower__header {
    color: #fff;
    background: #604117;
    padding: 70px 0;
}
@media (max-width: 1440px) {
    .lower__header {
        padding: 50px 0;
    }
}
@media (max-width: 1000px) {
    .lower__header {
        padding: 40px 0;
    }
}
@media (max-width: 768px) {
    .lower__header {
        padding: 30px 0;
    }
}
.lower__header .h1__en {
    font-family: var(--font-en);
    font-size: 7rem;
    letter-spacing: 0.04em;
    font-weight: 600;
    line-height: 1.26;
}
@media (max-width: 1440px) {
    .lower__header .h1__en {
        font-size: 5rem;
    }
}
@media (max-width: 1000px) {
    .lower__header .h1__en {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .lower__header .h1__en {
        font-size: 2.9rem;
    }
}
.lower__header .h1 {
    font-size: 2.5rem;
    line-height: 1.44;
}
@media (max-width: 1440px) {
    .lower__header .h1 {
        font-size: 2rem;
    }
}
@media (max-width: 1000px) {
    .lower__header .h1 {
        font-size: 1.4rem;
    }
}
@media (max-width: 768px) {
    .lower__header .h1 {
        font-size: 1.2rem;
    }
}

.lower__breadcrumb {
    background: #FFF5E8;
    border-bottom: 1px solid #604117;
    padding: 12px 0;
}
@media (max-width: 1000px) {
    .lower__breadcrumb {
        font-size: 1.4rem;
        padding: 8px 0;
    }
}
@media (max-width: 768px) {
    .lower__breadcrumb {
        font-size: 1.2rem;
        padding: 5px 0;
    }
}
.lower__breadcrumb .breadcrumb {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.lower__breadcrumb .breadcrumb li {
    max-width: 400px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
@media (max-width: 1000px) {
    .lower__breadcrumb .breadcrumb li {
        max-width: 200px;
    }
}
.lower__breadcrumb .breadcrumb li:not(:first-child) {
    padding-left: 50px;
    position: relative;
}
.lower__breadcrumb .breadcrumb li:not(:first-child)::before {
    content: "・";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 20px;
    color: #604117;
}
.lower__breadcrumb .breadcrumb .this {
    color: #CBBEAD;
}

.pagination .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.pagination .btn__return {
    width: 270px;
    height: 60px;
    border: 1px solid #604117;
    border-radius: 58px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--font-en);
    letter-spacing: 0.04em;
    font-weight: 400;
    font-size: 2rem;
    position: relative;
}
@media (max-width: 1000px) {
    .pagination .btn__return {
        font-size: 1.8rem;
    }
}
.pagination .btn__return::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 35px;
    width: 16px;
    aspect-ratio: 16/5;
    background: url(../img/common/arrow_back.svg) center/contain no-repeat;
}
.pagination .btn__return:hover {
    opacity: unset;
    background: #fff;
}
@media (max-width: 768px) {
    .pagination .btn__return.pc {
        display: none;
    }
}
.pagination .btn__return.sp {
    display: none;
}
@media (max-width: 768px) {
    .pagination .btn__return.sp {
        display: flex;
        margin: 0 auto 30px;
    }
}

.prop__container {
    display: flex;
    flex-wrap: wrap;
    gap: 95px 7%;
}
@media (max-width: 1440px) {
    .prop__container {
        gap: 80px 4%;
    }
}
@media (max-width: 1000px) {
    .prop__container {
        flex-direction: column;
        row-gap: 70px;
    }
}
.prop__container .prop__box {
    width: 28.6666666667%;
}
@media (max-width: 1440px) {
    .prop__container .prop__box {
        width: 30.6666666667%;
    }
}
@media (max-width: 1000px) {
    .prop__container .prop__box {
        width: 100%;
    }
}
.prop__container .prop__box .thumbnail img {
    border-radius: 15px;
    aspect-ratio: 420/310;
    -o-object-fit: cover;
       object-fit: cover;
}
.prop__container .prop__box .area {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.prop__container .prop__box .area span {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #F5E5CF;
    border-radius: 26px;
    padding: 0 25px;
}
.prop__container .prop__box .address {
    font-size: 1.8rem;
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
@media (max-width: 1440px) {
    .prop__container .prop__box .address {
        font-size: 1.6rem;
    }
}
@media (max-width: 1000px) {
    .prop__container .prop__box .address {
        font-size: 1.4rem;
        gap: 8px;
    }
}
.prop__container .prop__box .address::before {
    content: "";
    display: block;
    width: 13px;
    aspect-ratio: 13/16;
    background: url(../img/common/address.svg) center/contain no-repeat;
}
@media (max-width: 1000px) {
    .prop__container .prop__box .address::before {
        width: 10px;
    }
}
.prop__container .prop__box .top__search__bottom {
    display: flex;
    flex-direction: column;
    row-gap: 45px;
}
@media (max-width: 1000px) {
    .prop__container .prop__box .top__search__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
}
.prop__container .prop__box .price__layout__container {
    min-width: 240px;
    position: relative;
    padding: 0 9px;
}
.prop__container .prop__box .price__layout__container::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 9px;
    border: 1px solid #604117;
    border-right: none;
}
.prop__container .prop__box .price__layout__container::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 9px;
    border: 1px solid #604117;
    border-left: none;
}
.prop__container .prop__box .price__layout__container .price__layout__content {
    display: flex;
}
.prop__container .prop__box .price__layout__container .price__layout__content .price {
    width: 50%;
    padding: 5px 40px 5px 20px;
}
@media (max-width: 1440px) {
    .prop__container .prop__box .price__layout__container .price__layout__content .price {
        padding: 5px 20px 5px 10px;
    }
}
.prop__container .prop__box .price__layout__container .price__layout__content .layout {
    width: 50%;
    padding: 5px 20px 5px 40px;
    border-left: 1px solid #604117;
}
@media (max-width: 1440px) {
    .prop__container .prop__box .price__layout__container .price__layout__content .layout {
        padding: 5px 10px 5px 20px;
    }
}
.prop__container .prop__box .price__layout__container .price__layout__content .bg {
    font-size: 3rem;
    line-height: 1.47;
}
@media (max-width: 1440px) {
    .prop__container .prop__box .price__layout__container .price__layout__content .bg {
        font-size: 2.4rem;
    }
}
@media (max-width: 1000px) {
    .prop__container .prop__box .price__layout__container .price__layout__content .bg {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .prop__container .prop__box .price__layout__container .price__layout__content .bg {
        font-size: 1.8rem;
    }
}
.prop__container .prop__box .arrow {
    display: block;
    width: 62px;
    aspect-ratio: 62/21;
    margin-left: auto;
    background: url(../img/common/news.svg) center/contain no-repeat;
}
@media (max-width: 1000px) {
    .prop__container .prop__box .arrow {
        width: 45px;
        aspect-ratio: 1;
        background: url(../img/common/news_sp.svg) center/contain no-repeat;
    }
}

/* ------------------------------------- /
/  トップページ
/* ------------------------------------- */
.page-template-front-page h2 {
    font-size: 2.5rem;
    letter-spacing: 0;
    line-height: 1.44;
    font-weight: 500;
}
@media (max-width: 1440px) {
    .page-template-front-page h2 {
        font-size: 2rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page h2 {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page h2 {
        font-size: 1.3rem;
    }
}
.page-template-front-page .h2__en {
    font-size: 7rem;
    font-weight: 600;
    font-family: var(--font-en);
    letter-spacing: 0.04em;
    line-height: 1.26;
}
@media (max-width: 1440px) {
    .page-template-front-page .h2__en {
        font-size: 5rem;
    }
}
@media (max-width: 1000px) {
    .page-template-front-page .h2__en {
        font-size: 4rem;
    }
}
@media (max-width: 768px) {
    .page-template-front-page .h2__en {
        font-size: 2.9rem;
    }
}

.top__mv {
    position: relative;
}
.top__mv::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 30%;
    left: 0;
    right: 0;
    background: linear-gradient(rgba(255, 245, 232, 0) 0%, #fff5e8 100%);
}
@media (max-width: 1000px) {
    .top__mv::before {
        height: 12%;
    }
}
.top__mv img {
    display: block;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
}
.top__mv .top__mv__abs {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}
.top__mv .top__mv__abs .inner {
    height: 100%;
    color: #fff;
}
.top__mv .top__mv__abs .inner .top__mv__txt {
    position: relative;
    top: 25%;
}
.top__mv .top__mv__abs .inner .top__mv__en {
    font-family: var(--font-en);
    font-size: 10rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.26;
}
@media (max-width: 1440px) {
    .top__mv .top__mv__abs .inner .top__mv__en {
        font-size: 8rem;
    }
}
@media (max-width: 1000px) {
    .top__mv .top__mv__abs .inner .top__mv__en {
        font-size: 5rem;
    }
}
.top__mv .top__mv__abs .inner .top__mv__jp {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.46;
}
@media (max-width: 1440px) {
    .top__mv .top__mv__abs .inner .top__mv__jp {
        font-size: 3rem;
    }
}
@media (max-width: 1000px) {
    .top__mv .top__mv__abs .inner .top__mv__jp {
        font-size: 2rem;
    }
}

.top__about {
    overflow: hidden;
    background: #FFF5E8;
}
.top__about .top__about__container {
    display: flex;
}
.top__about .top__about__txt {
    width: 50%;
}
@media (max-width: 1000px) {
    .top__about .top__about__txt {
        width: 100%;
    }
}
.top__about .top__about__txt h3 {
    font-size: 2.5rem;
    font-weight: 700;
}
@media (max-width: 1440px) {
    .top__about .top__about__txt h3 {
        font-size: 2.1rem;
    }
}
@media (max-width: 1000px) {
    .top__about .top__about__txt h3 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .top__about .top__about__txt h3 {
        font-size: 1.6rem;
    }
}
.top__about .top__about__img {
    width: 50%;
    position: relative;
}
@media (max-width: 1000px) {
    .top__about .top__about__img {
        display: none;
    }
}
.top__about .top__about__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 8%;
    width: calc(50vw - 8%);
    aspect-ratio: 883/440;
    background: url(../img/top/about.svg) center/contain no-repeat;
}
@media (max-width: 1000px) {
    .top__about .top__about__img::before {
        display: block;
        position: unset;
    }
}
.top__about .top__about__sp__bg {
    display: none;
}
@media (max-width: 1000px) {
    .top__about .top__about__sp__bg {
        display: block;
    }
    .top__about .top__about__sp__bg img {
        width: 70%;
        margin-left: auto;
    }
}
.top__about .top__about__btn__container {
    display: flex;
    gap: 15px 50px;
}
@media (max-width: 1000px) {
    .top__about .top__about__btn__container {
        flex-direction: column;
        align-items: center;
    }
}
.top__about .top__about__btn__container > a {
    width: 270px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 60px;
    border: 1px solid #604117;
    font-family: var(--font-en);
    font-size: 2rem;
    letter-spacing: 0.04em;
    font-weight: 400;
    position: relative;
}
@media (max-width: 1000px) {
    .top__about .top__about__btn__container > a {
        font-size: 1.8rem;
    }
}
.top__about .top__about__btn__container > a:hover {
    opacity: unset;
    background: #fff;
}
.top__about .top__about__btn__container > a::before {
    content: "";
    position: absolute;
    width: 16px;
    aspect-ratio: 16/5;
    top: 50%;
    transform: translateY(-50%);
    right: 36px;
    background: url(../img/common/arrow.svg) center/contain no-repeat;
}

.top__service {
    border-top: 1px solid #604117;
    background: #FFFBF5;
}
.top__service .top__service__container {
    border-top: 1px solid #604117;
    border-left: 1px solid #604117;
    border-right: 1px solid #604117;
    display: flex;
}
@media (max-width: 768px) {
    .top__service .top__service__container {
        margin-top: 0;
        padding-top: 0;
    }
}
.top__service .top__service__container:nth-child(2n) .top__service__img {
    border-left: 1px solid #604117;
}
.top__service .top__service__container:nth-child(2n+1) {
    flex-direction: row-reverse;
}
.top__service .top__service__container:nth-child(2n+1) .top__service__txt {
    border-left: 1px solid #604117;
}
@media (max-width: 1000px) {
    .top__service .top__service__container:nth-child(2n+1) .top__service__txt {
        border-left: unset;
    }
}
.top__service .top__service__container:last-child {
    border-bottom: 1px solid #604117;
}
.top__service .top__service__container .top__service__txt {
    width: 50%;
    padding: 50px;
    position: relative;
}
@media (max-width: 1440px) {
    .top__service .top__service__container .top__service__txt {
        padding: 40px;
    }
}
@media (max-width: 1000px) {
    .top__service .top__service__container .top__service__txt {
        width: 100%;
        padding: 30px;
    }
}
@media (max-width: 768px) {
    .top__service .top__service__container .top__service__txt {
        padding: 25px;
    }
}
.top__service .top__service__container .top__service__txt .img__sp {
    display: none;
}
@media (max-width: 1000px) {
    .top__service .top__service__container .top__service__txt .img__sp {
        display: block;
        position: absolute;
        top: 30px;
        right: 20px;
        width: 22%;
        max-height: 120px;
    }
}
@media (max-width: 768px) {
    .top__service .top__service__container .top__service__txt .img__sp {
        top: 25px;
        max-height: 100px;
    }
}
.top__service .top__service__container .top__service__txt .num {
    font-size: 1.8rem;
    font-family: var(--font-en);
    font-weight: 400;
    letter-spacing: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #604117;
    width: -moz-fit-content;
    width: fit-content;
}
@media (max-width: 768px) {
    .top__service .top__service__container .top__service__txt .num {
        font-size: 1.4rem;
    }
}
.top__service .top__service__container .top__service__txt h3 {
    font-size: 2.5rem;
    font-weight: 700;
}
@media (max-width: 1440px) {
    .top__service .top__service__container .top__service__txt h3 {
        font-size: 2.2rem;
    }
}
@media (max-width: 1000px) {
    .top__service .top__service__container .top__service__txt h3 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .top__service .top__service__container .top__service__txt h3 {
        font-size: 1.8rem;
    }
}
.top__service .top__service__container .top__service__img {
    width: 50%;
    padding: 80px;
}
.top__service .top__service__container .top__service__img img {
    max-height: 370px;
}
@media (max-width: 1000px) {
    .top__service .top__service__container .top__service__img {
        display: none;
    }
}

.top__search {
    border-top: 1px solid #604117;
    background: #FFF5E8;
}
.top__search .btn {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 270px;
    height: 60px;
    border: 1px solid #604117;
    border-radius: 58px;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    font-family: var(--font-jp);
    position: relative;
}
@media (max-width: 1000px) {
    .top__search .btn {
        font-size: 1.8rem;
    }
}
.top__search .btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    aspect-ratio: 16/5;
    right: 35px;
    background: url(../img/common/arrow.svg) center/contain no-repeat;
}
.top__search .btn:hover {
    opacity: unset;
    background: #fff;
}

.top__company {
    background: #604117;
    color: #fff;
}
.top__company h2, .top__company .h2__en {
    text-align: center;
}
.top__company .top__company__detail {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 100px;
}
@media (max-width: 1440px) {
    .top__company .top__company__detail {
        gap: 15px 60px;
    }
}
@media (max-width: 1000px) {
    .top__company .top__company__detail {
        gap: 10px;
    }
}
.top__company .top__company__detail dl {
    display: flex;
    width: calc((100% - 100px) / 2);
    border-bottom: 1px solid #fff;
    font-size: 1.8rem;
    padding: 20px 0;
}
@media (max-width: 1440px) {
    .top__company .top__company__detail dl {
        font-size: 1.6rem;
        padding: 15px 0;
    }
}
@media (max-width: 1000px) {
    .top__company .top__company__detail dl {
        width: 100%;
        padding: 10px 0;
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    .top__company .top__company__detail dl {
        font-size: 1.4rem;
    }
}
.top__company .top__company__detail dl dt {
    width: 120px;
}
@media (max-width: 1440px) {
    .top__company .top__company__detail dl dt {
        width: 100px;
    }
}
@media (max-width: 1000px) {
    .top__company .top__company__detail dl dt {
        width: 90px;
    }
}
.top__company .top__company__detail dl dd {
    flex: 1 1;
}

.top__news {
    background: #FFF5E8;
}
.top__news .top__news__container {
    display: flex;
    justify-content: space-between;
    gap: 10%;
}
@media (max-width: 1000px) {
    .top__news .top__news__container {
        flex-direction: column;
        gap: 40px;
    }
}
.top__news .top__news__container .top__news__right {
    display: flex;
    flex: 1 1;
    flex-direction: column;
    gap: 30px;
}
@media (max-width: 1000px) {
    .top__news .top__news__container .top__news__right {
        gap: 20px;
    }
}
.top__news .top__news__container .top__news__right a {
    padding: 30px 80px 30px 0;
    display: flex;
    align-items: baseline;
    gap: 30px;
    border-bottom: 1px solid #604117;
    position: relative;
}
@media (max-width: 1000px) {
    .top__news .top__news__container .top__news__right a {
        flex-direction: column;
        padding: 15px 80px 15px 0;
        gap: 15px;
    }
}
.top__news .top__news__container .top__news__right a::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 62px;
    aspect-ratio: 62/21;
    background: url(../img/common/news.svg) center/contain no-repeat;
}
@media (max-width: 1000px) {
    .top__news .top__news__container .top__news__right a::before {
        width: 45px;
        aspect-ratio: 1;
        background: url(../img/common/news_sp.svg) center/contain no-repeat;
        top: unset;
        transform: unset;
        bottom: 15px;
    }
}
.top__news .top__news__container .top__news__right a .date__cat {
    display: flex;
    align-items: baseline;
    gap: 30px;
}
@media (max-width: 1000px) {
    .top__news .top__news__container .top__news__right a .date__cat {
        gap: 8px;
    }
}
.top__news .top__news__container .top__news__right a .date__cat .date {
    font-size: 1.8rem;
    font-family: var(--font-en);
    font-weight: 400;
    letter-spacing: 0;
}
@media (max-width: 1000px) {
    .top__news .top__news__container .top__news__right a .date__cat .date {
        font-size: 1.2rem;
    }
}
.top__news .top__news__container .top__news__right a .date__cat .categories {
    font-size: 1.6rem;
}
@media (max-width: 1000px) {
    .top__news .top__news__container .top__news__right a .date__cat .categories {
        font-size: 1.2rem;
    }
}
.top__news .top__news__container .top__news__right a .date__cat .categories span {
    height: 30px;
    border-radius: 15px;
    border: 1px solid #604117;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 13px;
}
@media (max-width: 1000px) {
    .top__news .top__news__container .top__news__right a .date__cat .categories span {
        height: 24px;
        border-radius: 12px;
        padding: 0 10px;
    }
}
.top__news .top__news__container .top__news__right a .ttl {
    font-size: 1.8rem;
    flex: 1 1;
}
@media (max-width: 1000px) {
    .top__news .top__news__container .top__news__right a .ttl {
        font-size: 1.4rem;
    }
}
.top__news .btn {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    font-family: var(--font-en);
    font-weight: 400;
    letter-spacing: 0.04em;
    width: 270px;
    height: 60px;
    border-radius: 58px;
    border: 1px solid #604117;
    position: relative;
}
@media (max-width: 1000px) {
    .top__news .btn {
        font-size: 1.8rem;
    }
}
.top__news .btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    aspect-ratio: 16/5;
    right: 35px;
    background: url(../img/common/arrow.svg) center/contain no-repeat;
}
.top__news .btn:hover {
    opacity: unset;
    background: #fff;
}

.top__access {
    border-top: 1px solid #604117;
    background: #FFFBF5;
}
.top__access .top__access__container {
    display: flex;
}
@media (max-width: 1000px) {
    .top__access .top__access__container {
        flex-direction: column;
        row-gap: 25px;
    }
}
.top__access .top__access__container iframe {
    width: 50%;
    aspect-ratio: 740/480;
    border-radius: 15px;
}
@media (max-width: 1000px) {
    .top__access .top__access__container iframe {
        width: 100%;
        border-radius: 10px;
    }
}
.top__access .top__access__container .top__access__txt {
    width: 50%;
    padding-left: 10%;
    font-size: 1.8rem;
}
@media (max-width: 1440px) {
    .top__access .top__access__container .top__access__txt {
        padding-left: 5%;
    }
}
@media (max-width: 1000px) {
    .top__access .top__access__container .top__access__txt {
        width: 100%;
        padding-left: unset;
        font-size: 1.4rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}
.top__access .top__access__container .top__access__txt .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 270px;
    height: 60px;
    border: 1px solid #604117;
    border-radius: 58px;
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    position: relative;
}
@media (max-width: 1000px) {
    .top__access .top__access__container .top__access__txt .btn {
        font-size: 1.8rem;
    }
}
.top__access .top__access__container .top__access__txt .btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    aspect-ratio: 16/5;
    right: 35px;
    background: url(../img/common/arrow.svg) center/contain no-repeat;
}
.top__access .top__access__container .top__access__txt .btn:hover {
    opacity: unset;
    background: #fff;
}

.top__contact {
    border-top: 1px solid #604117;
    background: #FFF5E8;
    color: #fff;
    font-size: 1.8rem;
}
@media (max-width: 1440px) {
    .top__contact {
        font-size: 1.6rem;
    }
}
@media (max-width: 1000px) {
    .top__contact {
        font-size: 1.4rem;
    }
}
@media (max-width: 768px) {
    .top__contact {
        font-size: 1.2rem;
    }
}
.top__contact .bg {
    padding: 100px;
    background: url(../img/top/contact_bg.webp) center/cover no-repeat;
    border-radius: 15px;
    display: flex;
}
@media (max-width: 1440px) {
    .top__contact .bg {
        padding: 60px;
    }
}
@media (max-width: 1000px) {
    .top__contact .bg {
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px;
        border-radius: 10px;
    }
}
.top__contact .bg .top__contact__left {
    width: 50%;
}
@media (max-width: 1000px) {
    .top__contact .bg .top__contact__left {
        width: 100%;
        text-align: center;
    }
}
.top__contact .bg .top__contact__right {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1000px) {
    .top__contact .bg .top__contact__right {
        width: 100%;
    }
}
.top__contact .bg .top__contact__right .btn {
    width: 270px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #fff;
    border-radius: 58px;
    font-family: var(--font-en);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.04em;
    position: relative;
}
@media (max-width: 1000px) {
    .top__contact .bg .top__contact__right .btn {
        font-size: 1.8rem;
    }
}
.top__contact .bg .top__contact__right .btn:hover {
    opacity: unset;
    background: #fff;
    color: #604117;
}
.top__contact .bg .top__contact__right .btn:hover::before {
    background: url(../img/common/arrow.svg) center/contain no-repeat;
}
.top__contact .bg .top__contact__right .btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 35px;
    width: 16px;
    aspect-ratio: 16/5;
    background: url(../img/common/arrow_wh.svg) center/contain no-repeat;
}

/* ------------------------------------- /
/  お知らせ一覧ページ
/* ------------------------------------- */
.news__list__inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media (max-width: 1000px) {
    .news__list__inner {
        gap: 25px;
    }
}
.news__list__inner a {
    padding: 30px 80px 30px 0;
    border-bottom: 1px solid #604117;
    display: flex;
    align-items: baseline;
    gap: 30px;
    position: relative;
}
@media (max-width: 1000px) {
    .news__list__inner a {
        padding: 15px 60px 15px 0;
        flex-direction: column;
        gap: 15px;
    }
}
.news__list__inner a::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 62px;
    aspect-ratio: 62/21;
    background: url(../img/common/news.svg) center/contain no-repeat;
}
@media (max-width: 1000px) {
    .news__list__inner a::before {
        width: 45px;
        aspect-ratio: 1;
        background: url(../img/common/news_sp.svg) center/contain no-repeat;
        transform: unset;
        top: unset;
        bottom: 15px;
    }
}
.news__list__inner a .date__category {
    display: flex;
    align-items: baseline;
    gap: 30px;
}
@media (max-width: 768px) {
    .news__list__inner a .date__category {
        gap: 8px;
    }
}
.news__list__inner a .date {
    font-family: var(--font-en);
    letter-spacing: 0;
    font-size: 1.8rem;
    line-height: 1.28;
    font-weight: 400;
}
@media (max-width: 1440px) {
    .news__list__inner a .date {
        font-size: 1.6rem;
    }
}
@media (max-width: 1000px) {
    .news__list__inner a .date {
        font-size: 1.4rem;
    }
}
@media (max-width: 768px) {
    .news__list__inner a .date {
        font-size: 1.2rem;
    }
}
.news__list__inner a .category {
    display: flex;
    gap: 10px;
}
.news__list__inner a .category span {
    border: 1px solid #604117;
    border-radius: 15px;
    height: 30px;
    font-size: 1.6rem;
    padding: 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1000px) {
    .news__list__inner a .category span {
        font-size: 1.4rem;
        padding: 0 16px;
        height: 26px;
        border-radius: 13px;
    }
}
@media (max-width: 768px) {
    .news__list__inner a .category span {
        font-size: 1.2rem;
        padding: 0 13px;
        height: 24px;
        border-radius: 12px;
    }
}
.news__list__inner a .ttl {
    flex: 1 1;
    font-size: 1.8rem;
}
@media (max-width: 1440px) {
    .news__list__inner a .ttl {
        font-size: 1.6rem;
    }
}
@media (max-width: 1000px) {
    .news__list__inner a .ttl {
        font-size: 1.4rem;
    }
}

.pagination__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 0;
    font-family: var(--font-en);
}
@media (max-width: 1000px) {
    .pagination__list {
        font-size: 1.4rem;
    }
}
.pagination__list .current {
    width: 49px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid #604117;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 1000px) {
    .pagination__list .current {
        width: 45px;
    }
}

/* ------------------------------------- /
/  お知らせ単体ページ
/* ------------------------------------- */
.post__wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 100px 10% 30px;
}
@media (max-width: 1000px) {
    .post__wrapper {
        padding: 50px 40px;
    }
}
@media (max-width: 768px) {
    .post__wrapper {
        border-radius: 10px;
        padding: 30px 20px;
    }
}

.post__header {
    display: flex;
    align-items: baseline;
    gap: 30px;
}
@media (max-width: 768px) {
    .post__header {
        gap: 8px;
    }
}
.post__header .date {
    font-family: var(--font-en);
    letter-spacing: 0;
    font-size: 1.8rem;
    font-weight: 400;
}
@media (max-width: 1440px) {
    .post__header .date {
        font-size: 1.6rem;
    }
}
@media (max-width: 1000px) {
    .post__header .date {
        font-size: 1.4rem;
    }
}
@media (max-width: 768px) {
    .post__header .date {
        font-size: 1.2rem;
    }
}
.post__header .category {
    display: flex;
    gap: 10px;
}
.post__header .category span {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    border-radius: 15px;
    padding: 0 15px;
    border: 1px solid #604117;
}
@media (max-width: 768px) {
    .post__header .category span {
        font-size: 1.2rem;
        height: 24px;
        border-radius: 12px;
        padding: 0 10px;
    }
}

.post__ttl {
    margin-top: 15px;
    font-size: 2.5rem;
    font-weight: 500;
    padding-bottom: 30px;
    border-bottom: 1px solid #604117;
    line-height: 1.44;
}
@media (max-width: 1440px) {
    .post__ttl {
        font-size: 2.2rem;
        padding-bottom: 25px;
    }
}
@media (max-width: 1000px) {
    .post__ttl {
        font-size: 2rem;
        padding-bottom: 20px;
    }
}
@media (max-width: 768px) {
    .post__ttl {
        font-size: 1.8rem;
        padding-bottom: 15px;
    }
}

.post__detail {
    font-size: 1.8rem;
}
@media (max-width: 1440px) {
    .post__detail {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .post__detail {
        font-size: 1.4rem;
    }
}
.post__detail p {
    margin-bottom: 60px;
}
@media (max-width: 1440px) {
    .post__detail p {
        margin-bottom: 50px;
    }
}
@media (max-width: 1000px) {
    .post__detail p {
        margin-bottom: 40px;
    }
}
.post__detail img {
    margin-bottom: 70px;
    border-radius: 15px;
}
@media (max-width: 1440px) {
    .post__detail img {
        margin-bottom: 60px;
    }
}
@media (max-width: 1000px) {
    .post__detail img {
        margin-bottom: 50px;
    }
}
@media (max-width: 768px) {
    .post__detail img {
        margin-bottom: 40px;
        border-radius: 10px;
    }
}
.post__detail h2 {
    color: #fff;
    font-size: 2rem;
    background: #CBBEAD;
    font-weight: 500;
    padding: 14px 25px;
    margin-bottom: 30px;
}
@media (max-width: 1000px) {
    .post__detail h2 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .post__detail h2 {
        font-size: 1.6rem;
        margin-bottom: 20px;
        padding: 16px 12px;
    }
}
.post__detail h3 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 30px;
    position: relative;
    padding-left: 31px;
}
@media (max-width: 1440px) {
    .post__detail h3 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .post__detail h3 {
        font-size: 1.6rem;
        margin-bottom: 20px;
        padding-left: 20px;
    }
}
.post__detail h3::before {
    content: "";
    position: absolute;
    top: 8px;
    left: 0;
    width: 21px;
    aspect-ratio: 21/20;
    background: url(../img/common/h3.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .post__detail h3::before {
        width: 15px;
    }
}

/* ------------------------------------- /
/  物件一覧ページ
/* ------------------------------------- */
.area__list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 30px;
}
@media (max-width: 768px) {
    .area__list {
        gap: 10px;
    }
}
.area__list a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    min-width: 270px;
    font-size: 1.8rem;
    border: 1px solid #604117;
    border-radius: 58px;
}
@media (max-width: 768px) {
    .area__list a {
        height: 46px;
        font-size: 1.6rem;
        border-radius: 23px;
        min-width: unset;
        width: calc((100% - 10px) / 2);
    }
}
.area__list a:hover {
    opacity: unset;
    background: #fff;
}
.area__list a.disable {
    background: #fff;
    pointer-events: none;
}

/* ------------------------------------- /
/  物件詳細ページ
/* ------------------------------------- */
.prop__wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 100px 10% 130px;
}
@media (max-width: 1440px) {
    .prop__wrapper {
        padding: 70px 8% 100px;
    }
}
@media (max-width: 1000px) {
    .prop__wrapper {
        border-radius: 10px;
        padding: 50px 40px 80px;
    }
}
@media (max-width: 768px) {
    .prop__wrapper {
        padding: 30px 20px 60px;
        font-size: 1.4rem;
    }
}

.prop__header .area {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.prop__header .area span {
    height: 30px;
    border-radius: 26px;
    background: #F5E5CF;
    padding: 0 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media (max-width: 768px) {
    .prop__header .area span {
        font-size: 1.4rem;
        height: 24px;
        border-radius: 12px;
        padding: 0 10px;
    }
}

.prop__ttl {
    font-size: 2.5rem;
    font-weight: 500;
}
@media (max-width: 1440px) {
    .prop__ttl {
        font-size: 2rem;
    }
}
@media (max-width: 1000px) {
    .prop__ttl {
        font-size: 1.8rem;
    }
}

.prop__gallery {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
@media (max-width: 1000px) {
    .prop__gallery {
        margin-top: 10px;
        gap: 10px;
    }
}
.prop__gallery img {
    width: calc((100% - 72px) / 4);
}
@media (max-width: 1000px) {
    .prop__gallery img {
        width: calc((100% - 10px) / 2);
    }
}

.prop__detail__container {
    display: flex;
    gap: 70px;
}
@media (max-width: 1440px) {
    .prop__detail__container {
        gap: 40px;
    }
}
@media (max-width: 1000px) {
    .prop__detail__container {
        flex-direction: column;
        gap: 0;
    }
}
.prop__detail__container .left, .prop__detail__container .right {
    width: calc((100% - 70px) / 2);
}
@media (max-width: 1440px) {
    .prop__detail__container .left, .prop__detail__container .right {
        width: calc((100% - 40px) / 2);
    }
}
@media (max-width: 1000px) {
    .prop__detail__container .left, .prop__detail__container .right {
        width: 100%;
    }
}
@media (max-width: 1000px) {
    .prop__detail__container .left dl:last-child {
        border-bottom: none;
    }
}
.prop__detail__container dl {
    display: flex;
    border-top: 1px solid #604117;
    padding: 25px 0;
    letter-spacing: 0;
}
@media (max-width: 1440px) {
    .prop__detail__container dl {
        padding: 20px 0;
    }
}
@media (max-width: 1000px) {
    .prop__detail__container dl {
        padding: 15px 0;
    }
}
.prop__detail__container dl:last-child {
    border-bottom: 1px solid #604117;
}
.prop__detail__container dl dt {
    width: 100px;
}
@media (max-width: 1440px) {
    .prop__detail__container dl dt {
        width: 80px;
    }
}
@media (max-width: 1000px) {
    .prop__detail__container dl dt {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .prop__detail__container dl dt {
        font-size: 1.4rem;
    }
}
.prop__detail__container dl dd {
    flex: 1 1;
    font-size: 1.8rem;
}
@media (max-width: 1000px) {
    .prop__detail__container dl dd {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .prop__detail__container dl dd {
        font-size: 1.4rem;
    }
}

.prop__btn {
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #604117;
    width: 310px;
    height: 60px;
    border-radius: 58px;
    font-size: 1.8rem;
    letter-spacing: 0.04em;
    position: relative;
    gap: 15px;
}
@media (max-width: 1000px) {
    .prop__btn {
        font-size: 1.6rem;
        width: 270px;
    }
}
.prop__btn::after {
    content: "";
    display: block;
    width: 16px;
    aspect-ratio: 16/5;
    background: url(../img/common/arrow.svg) center/contain no-repeat;
}
.prop__btn:hover {
    opacity: unset;
    background: #fff;
}

/* ------------------------------------- /
/  お問い合わせページ
/* ------------------------------------- */
.page-template-page-contact .contact__form {
    background: #FFF5E8;
}

.contact__wrapper {
    background: #fff;
    border-radius: 15px;
    padding: 150px 20px;
}
@media (max-width: 1440px) {
    .contact__wrapper {
        padding: 100px 20px;
    }
}
@media (max-width: 1000px) {
    .contact__wrapper {
        padding: 0 20px 50px;
    }
}
.contact__wrapper .contact__wrapper__inner {
    max-width: 1040px;
    margin: 0 auto;
}
.contact__wrapper .contact__wrapper__inner dl {
    padding: 40px 0;
    display: flex;
    border-bottom: 1px solid #604117;
    font-size: 1.8rem;
}
@media (max-width: 1000px) {
    .contact__wrapper .contact__wrapper__inner dl {
        flex-direction: column;
        row-gap: 20px;
        padding: 30px 0;
        font-size: 1.6rem;
    }
}
.contact__wrapper .contact__wrapper__inner dl dt {
    width: 260px;
    font-weight: 700;
}
.contact__wrapper .contact__wrapper__inner dl dd {
    flex: 1 1;
}
.contact__wrapper .contact__wrapper__inner dl dd input[type=text],
.contact__wrapper .contact__wrapper__inner dl dd input[type=email],
.contact__wrapper .contact__wrapper__inner dl dd input[type=tel],
.contact__wrapper .contact__wrapper__inner dl dd textarea {
    width: 100%;
    border: none;
    background: #F0F0F0;
    border-radius: 28px;
    min-height: 56px;
    font-size: inherit;
    font-family: inherit;
    font-weight: inherit;
    padding: 15px 30px;
}
@media (max-width: 1000px) {
    .contact__wrapper .contact__wrapper__inner dl dd input[type=text],
    .contact__wrapper .contact__wrapper__inner dl dd input[type=email],
    .contact__wrapper .contact__wrapper__inner dl dd input[type=tel],
    .contact__wrapper .contact__wrapper__inner dl dd textarea {
        font-size: 1.5rem;
        padding: 10px 20px;
        min-height: 50px;
        border-radius: 25px;
    }
}
.contact__wrapper .contact__wrapper__inner dl dd textarea {
    border-radius: 15px;
}
@media (max-width: 1000px) {
    .contact__wrapper .contact__wrapper__inner dl dd textarea {
        border-radius: 10px;
    }
}
.contact__wrapper .contact__wrapper__inner dl dd .radio__container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 20px;
}
@media (max-width: 1000px) {
    .contact__wrapper .contact__wrapper__inner dl dd .radio__container {
        flex-direction: column;
        row-gap: 10px;
        font-size: 1.4rem;
    }
}
.contact__wrapper .contact__wrapper__inner dl dd .radio__container input[type=radio] {
    display: none;
}
.contact__wrapper .contact__wrapper__inner dl dd .radio__container label {
    border: 1px solid #604117;
    height: 40px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    cursor: pointer;
}
.contact__wrapper .contact__wrapper__inner dl dd .radio__container .radio__wrapper:has(input[type=radio]:checked) label {
    background: #604117;
    color: #fff;
}
.contact__wrapper .contact__wrapper__inner dl dd .error {
    color: red;
}
.contact__wrapper .contact__wrapper__inner dl dd .error.false {
    display: none;
}
.contact__wrapper .contact__wrapper__inner dl dd .checkbox__container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.contact__wrapper .contact__wrapper__inner dl dd .checkbox__wrapper input[type=checkbox] {
    display: none;
}
.contact__wrapper .contact__wrapper__inner dl dd .checkbox__wrapper label {
    cursor: pointer;
    padding-left: 25px;
    position: relative;
}
.contact__wrapper .contact__wrapper__inner dl dd .checkbox__wrapper label::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 16px;
    aspect-ratio: 1;
    border: 1px solid var(--color-black);
}
.contact__wrapper .contact__wrapper__inner dl dd .checkbox__wrapper:has(input[type=checkbox]:checked) label::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 3px;
    width: 12px;
    aspect-ratio: 8/5;
    border-left: 2px solid var(--color-black);
    border-bottom: 2px solid var(--color-black);
    transform: rotate(310deg);
}

.contact__btn__wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 50px;
}

.contact__btn {
    width: 270px;
    height: 60px;
    border-radius: 58px;
    border: 1px solid #604117;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFF5E8;
    font-family: inherit;
    color: inherit;
    font-size: 1.8rem;
    font-weight: 500;
    gap: 15px;
    cursor: pointer;
}
.contact__btn::after {
    content: "";
    display: block;
    width: 16px;
    aspect-ratio: 16/5;
    background: url(../img/common/arrow.svg) center/contain no-repeat;
}
.contact__btn.back::after {
    display: none;
}
.contact__btn.back::before {
    content: "";
    display: block;
    width: 16px;
    aspect-ratio: 16/5;
    background: url(../img/common/arrow_back.svg) center/contain no-repeat;
}
.contact__btn:hover {
    background: #fff;
    opacity: unset;
}/*# sourceMappingURL=style.css.map */