@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,300..700;1,300..700&family=Noto+Serif+JP:wght@200..900&display=swap');

body {
    font-family: "Noto Serif JP", serif;
    font-weight: 400;
    font-style: normal;
    background-color: #fff;
    font-size: 16px;
    line-height: 1.6;
    color: rgba(13, 19, 27, 1);
}

.cormorant {
    font-family: "Cormorant", serif;
}

.js-fade {
    transform: translateZ(0);
    filter: blur(7px);
    opacity: 0;
    transition: all 1.3s cubic-bezier(.165, .84, .44, 1);
    transition-property: opacity, filter;
    transition-timing-function: cubic-bezier(.165, .84, .44, 1);
    will-change: auto;
}

.scroll {
    opacity: 1;
    filter: blur(0);
}

img {
    width: 100%;
    display: block;
}

.inner {
    max-width: 1200px;
    margin: 0 auto;
    width: calc(100% - 40px);
}

.abs {
    position: absolute;
}

.flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.flex.reverse {
    flex-direction: row-reverse;
}

.wrapper {
    position: relative;
}

.btn,
a {
    cursor: pointer;
}

a {
    transition: all .7s;
}

a:hover {
    opacity: .6;
}

header {
    position: relative;
    z-index: 11;
}

.header-bar {
    position: fixed;
    width: 100%;
    transition: all .7s;
    z-index: 4;
}

.header-bar.bg-white {
    background: #fff;
    box-shadow: 0 0px 3px 0px rgba(0, 0, 0, .2);
}

.drawer-open .header-bar.bg-white {
    background: initial;
}

.header-left {
    width: 300px;
    margin-left: 15px;
}

.header-left a {
    display: block;
}

.header-left img {
    display: block;
    margin-bottom: 5px;
}

.header-inner {
    align-items: center;
    justify-content: space-between;
}

.header-left a .logo_head {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.08em;
    color: #fff;
    white-space: nowrap;
}

.header-bar.bg-white .header-left a .logo_head {
    color: rgb(177, 136, 58);
    transition: all .7s;
}

.header-right {
    display: flex;
    align-items: stretch;
    max-width: 700px;
    width: 100%;
}

.header-right .drawer-hamburger {
    position: relative;
}

.header-right-left {
    width: calc(100% - 55px);
    background: rgba(13, 19, 27, 1);
    padding: 0px 40px;
}

.header-right-left ul {
    display: flex;
    justify-content: space-between;
}

.header-right-left ul li a {
    display: block;
    width: 100%;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: #fff;
    padding-block: 30px;
}

.header-right-right {
    width: 55px;
    background: #fff;
}

.header-right-right .drawer-hamburger {
    width: 30px;
    padding: 26px 13px 30px;
}

.drawer-nav {
    z-index: 3;
    width: 100%;
    height: 100%;
    color: #fff;
    background-color: rgba(13, 19, 27, 1);
}

.drawer--right.drawer-open .header-left,
.drawer--right.drawer-open .header-right-left {
    opacity: 0;
}

.drawer--right .drawer-nav {
    right: -100%;
}

.drawer--right.drawer-open .drawer-hamburger {
    right: 0;
}

.drawer-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: calc(100% - 40px);
    max-width: 1080px;
    margin: 0 auto;
    height: 100vh;
}

.drawer-nav-flex-left {
    width: 210px;
}

.drawer-nav-flex-right {
    width: calc(100% - 360px);
}

.drawer-nav-flex-right-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

.drawer-nav-flex-right-top ul {
    width: calc(100% - 300px);
}

.drawer-nav-flex-right-top ul li a {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
    display: block;
}

.drawer-nav-flex-right-top ul li:last-child a {
    margin-bottom: 0;
}

.drawer-nav-flex-right-top .btns {
    width: 280px;
}

.drawer-nav-flex-right-top .btns .nav-btn:nth-child(1) {
    margin-bottom: 40px;
}

.nav-btn a {
    background: rgba(177, 136, 58, 1);
    display: block;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 0;
}

.nav-btn a img {
    height: 20px;
    width: auto;
    margin-right: 10px;
}

.drawer-nav-flex-right-top .btns .nav-btn:nth-child(1) a img {
    height: 15px;
}

.nav-btn a p {
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.08em;
    color: #fff;
    font-weight: 700;
}

.drawer-nav-flex-right-bottom {
    padding-top: 20px;
    border-top: 1px solid #fff;
    display: flex;
    justify-content: flex-end;
}

.drawer-nav-flex-right-bottom-left ul {
    display: flex;
}

.drawer-nav-flex-right-bottom-left ul li:nth-child(1) a {
    display: flex;
    align-items: center;
    margin-right: 25px;
}

.drawer-nav-flex-right-bottom-left ul li:nth-child(1) a p {
    font-size: 12px;
    color: #fff;
}

.drawer-nav-flex-right-bottom-left ul li:nth-child(1) a img {
    width: 12.5px;
    margin-left: 5px;
    margin-top: 2.5px;
}

.drawer-nav-flex-right-bottom-left ul li a {
    font-size: 12px;
    color: #fff;
}

.drawer-nav-flex-right-bottom-right {
    width: 240px;
}

.drawer-nav-flex-right-bottom-right ul {
    margin-bottom: 60px;
    width: 150px;
    display: flex;
    justify-content: space-between;
    margin-left: auto;
}

.drawer-nav-flex-right-bottom-right ul li img {
    width: auto;
    height: 21px;
    display: block;
}

.drawer-nav-flex-right-bottom-right p {
    font-size: 10px;
    color: #fff;
    text-align: right;
    white-space: nowrap;
}

.drawer-nav-flex-left img {
    margin-bottom: 15px;
}

.drawer-nav-flex-left p {
    font-size: 14px;
    color: #fff;
    white-space: nowrap;
}

.fv {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.fv-txt,
.fv-logo,
.fv-scroll {
    opacity: 0;
    filter: blur(20px);
    transition: all 1s ease;
}

.fv-txt.active,
.fv-logo.active,
.fv-scroll.active {
    opacity: 1;
    filter: blur(0px);
}

.fv .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fv::before {
    content: "";
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .5);
}

.fv-txt {
    position: absolute;
    left: 10vw;
    bottom: 60px;
    color: #fff;
    z-index: 3;
}

.fv-txt p {
    font-size: 4vw;
    line-height: 1.2;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding-bottom: 25px;
}

.fv-txt h2 {
    font-size: 1.75vw;
    font-weight: 700;
    letter-spacing: 0.06em;
}

.fv-scroll {
    position: absolute;
    bottom: 0;
    right: 60px;
    width: 30px;
    z-index: 3;
}

.fv-scroll p {
    font-size: 16px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    color: #fff;
    height: 120px;
    padding-left: 4.5px;
    position: relative;
}

.fv-scroll::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 1px;
    height: 0;
    /* 最初は高さ0 */
    background: #fff;
    animation: lineAnimation 1.75s ease-in-out infinite;
}

@keyframes lineAnimation {
    0% {
        height: 0;
        /* 最初は線なし */
        top: 0;
        /* 初期位置 */
    }

    50% {
        height: 100%;
        /* 下に向かって伸びる */
        top: 0;
        /* 上端の位置を固定 */
    }

    100% {
        height: 0;
        /* 伸びた位置からさらに下に向かって短くなる */
        top: 100%;
        /* 上端も下に移動 */
    }
}

.fv-logo {
    position: absolute;
    opacity: 1;
    top: 14.5%;
    width: 250px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 5;
}

.concept {
    padding: 120px 0;
    background-image: url(../img/top/concept_bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: -1px;
    z-index: 1;
    position: relative;
}

.concept .inner {
    max-width: 800px;
    margin: 0 auto;
}

.concept-title {
    margin-bottom: 40px;
}

.concept-title h2 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.13em;
    color: #fff;
    line-height: 1.8;
    text-align: center;
}

.concept-txt p {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: #fff;
    line-height: 2;
}

.purchase {
    padding: 120px 0;
}

.cmn-title {
    margin-bottom: 80px;
}

.cmn-title h2 {
    color: rgba(177, 136, 58, 1);
    font-size: 36px;
}

.cmn-title h2 span {
    font-size: 28px;
    display: block;
    padding-bottom: 15px;
    color: rgba(177, 136, 58, 1);
}

.property-list {
    max-width: 1000px;
    margin: 0 auto 80px;
}

.property-list .property-list-cont {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px 40px;
}

.property-list .property-list-cont a:hover {
    opacity: 1;
}

.property-list-img {
    position: relative;
    height: 250px;
    display: block;
}

.property-list-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-list-img p {
    position: absolute;
    padding: 5px 15px;
    background: rgba(13, 19, 27, 1);
    top: 0;
    right: 0;
    line-height: 1;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #fff;
}

.property-list-txt {
    background: rgba(248, 248, 248, 1);
    color: rgba(13, 19, 27, 1);
    font-family: "Noto Sans JP", serif;
}

.property-list-txt-inner {
    padding: 25px 40px;
}

.property-list-txt-inner a {
    display: block;
    color: #0D131B;
}

.property-list-txt-top {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.property-list-favorite {
    width: 18px;
    cursor: pointer;
}

.cat-list li {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    padding: 5px 15px;
    border-radius: 30px;
    background: rgba(177, 136, 58, 1);
    border: 1px solid rgba(177, 136, 58, 1);
    margin-right: 10px;
    color: #fff;
}

.cat-list li.soldout {
    background: #fff;
    border-color: rgba(13, 19, 27, 1);
    color: rgba(13, 19, 27, 1);
}

.property-list-txt-title {
    margin-bottom: 15px;
}

.property-list-txt-title h3 {
    font-size: 18px;
    font-weight: 700;
}

.property-list-txt-table table tr {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.property-list-txt-table table th {
    width: 20%;
    border-left: 2px solid #000;
    padding: 5px 5px;
    line-height: 1;
    font-size: 14px;
    font-weight: 700;
    display: block;
}

.property-list-txt-table table td {
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    display: block;
    width: 78.5%;
}

.cmn-btn a {
    max-width: 340px;
    border: 1px solid rgba(13, 19, 27, 1);
    text-align: center;
    position: relative;
    display: block;
    padding: 15px 0;
    line-height: 1;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.08em;
    margin: 0 auto;
    color: rgba(13, 19, 27, 1);
    background: #fff;
    transition: all .7s;
}

.cmn-btn a::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border: 0;
    border-top: solid 1px rgba(13, 19, 27, 1);
    border-right: solid 1px rgba(13, 19, 27, 1);
    right: 25px;
    top: 50%;
    transform: translateY(-50%)rotate(45deg);
    -webkit-transform: translateY(-50%)rotate(45deg);
    -ms-transform: translateY(-50%)rotate(45deg);
    transition: all .7s;
}

.cmn-btn a:hover::before {
    right: 15px;
}

.sale {
    position: relative;
    background-image: url(../img/top/achive_bg.webp);
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    padding: 60px 0 100px;
}

.sale .inner {
    position: relative;
    z-index: 1;
}

.sale .cmn-btn a {
    margin-left: 0;
}

.top-sale-cont {
    max-width: 700px;
    margin: 0 auto;
    z-index: 1;
}

.top-sale-cont-txt {
    margin-bottom: 60px;
}

.top-sale-cont-txt h2 {
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    padding-bottom: 20px;
}

.top-sale-cont-txt p {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.04em;
    color: #fff;
}

.nav-cont {
    padding: 120px 0;
    background: rgba(248, 248, 248, 1);
}

.nav-cont-list ul {
    display: flex;
    overflow: hidden;
}

.nav-cont-list ul li {
    overflow: hidden;
    position: relative;
    width: 50%;
    transition: all .7s;
}

.nav-cont-list ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/common/nav_img01.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.7s ease-in-out;
}

.nav-cont-list ul li:nth-child(2)::before {
    background-image: url(../img/common/nav_img02.webp);
}

.nav-cont-list ul li:hover::before {
    transform: scale(1.1);
}

.nav-cont-list ul li::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    top: 0;
    left: 0;
}

.nav-cont-list ul li a {
    position: relative;
    width: 100%;
    display: block;
    padding: 200px 0;
    text-align: center;
    z-index: 1;
}

.nav-cont-list ul li a:hover {
    opacity: 1;
}

.nav-cont-list ul li a p.cormorant {
    font-size: 22px;
    font-weight: 400;
    padding-bottom: 0px;
    color: #fff;
    letter-spacing: 0;
}

.nav-cont-list ul li a h3 {
    font-size: 32px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: #fff;
    padding-bottom: 10px;
}

.nav-cont-list ul li a p.link {
    width: 200px;
    margin: 0 auto;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
    letter-spacing: 0.08em;
    position: relative;
    color: #fff;
}

.nav-cont-list ul li a p.link::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    right: 25px;
    top: 50%;
    transform: translateY(-50%)rotate(45deg);
    -webkit-transform: translateY(-50%)rotate(45deg);
    -ms-transform: translateY(-50%)rotate(45deg);
    transition: all .7s;
}

.news {
    padding: 120px 0;
}

.top-post-flex {
    display: flex;
    justify-content: space-between;
}

.top-post-flex .cmn-title {
    margin-bottom: 0;
}

.top-post-link a {
    width: 200px;
    border-bottom: 1px solid rgba(217, 217, 217, 1);
    position: relative;
    display: block;
    padding-bottom: 10px;
    text-align: center;
    font-size: 14px;
    color: rgba(13, 19, 27, 1);
}

.top-post-link a::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    border: 0;
    border-top: solid 1px rgba(13, 19, 27, 1);
    border-right: solid 1px rgba(13, 19, 27, 1);
    right: 12.5px;
    top: 36.5%;
    transform: translateY(-50%)rotate(45deg);
    -webkit-transform: translateY(-50%)rotate(45deg);
    -ms-transform: translateY(-50%)rotate(45deg);
    transition: all .7s;
}

.top-post-link a::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 32px;
    height: 1px;
    background: rgba(13, 19, 27, 1);
    transition: all .7s;
}

.top-post-link a:hover {
    opacity: 1;
}

.top-post-link a:hover::after {
    width: 100%;
}

.news-list {
    max-width: 840px;
    margin-left: auto;
}

.news-list ul li a {
    padding: 30px 0;
    border-bottom: 1px solid rgba(217, 217, 217, 1);
    display: block;
    position: relative;
}

.news-list ul li:nth-child(1) a {
    border-top: 1px solid rgba(217, 217, 217, 1);
}

.news-list ul li a::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 32px;
    height: 1px;
    background: rgba(13, 19, 27, 1);
    transition: all .7s;
}

.news-list ul li a:hover {
    opacity: 1;
}

.news-list ul li a:hover::after {
    width: 100%;
}

.news-list ul li:nth-child(1) a::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 32px;
    height: 1px;
    background: rgba(13, 19, 27, 1);
}

.news-list ul li a p {
    font-size: 16px;
    padding-bottom: 15px;
    color: rgba(13, 19, 27, 1);
}

.news-list ul li a h3 {
    font-size: 16px;
    color: rgba(13, 19, 27, 1);
}

.column {
    padding: 120px 0;
    background: rgba(248, 248, 248, 1);
    overflow: hidden;
}

.column .top-post-flex {
    align-items: flex-end;
    margin-bottom: 80px;
}

.column-list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 40px;
}

.column-list-img {
    margin-bottom: 30px;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.column-list-img img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.column-list-txt span {
    font-size: 16px;
    color: rgba(182, 182, 182, 1);
    padding-bottom: 5px;
    display: block;
}

.column-list-txt h3 {
    font-size: 18px;
    color: rgba(13, 19, 27, 1);
    display: block;
    margin-bottom: 7.5px;
}

.column-list-txt p {
    font-size: 16px;
    color: rgba(13, 19, 27, 1);
}

.footer-contact {
    background: rgba(13, 19, 27, 1);
    padding: 150px 0;
}

.footer-contact-flex {
    display: flex;
    justify-content: space-between;
}

.footer-contact-flex .cmn-title {
    width: calc(100% - 700px);
}

.footer-contact-flex .cmn-title h2,
.footer-contact-flex .cmn-title h2 span {
    color: #fff;
}

.footer-contact-flex-right {
    width: 620px;
}

.footer-contact-flex-right-top {
    margin-bottom: 60px;
}

.footer-contact-flex-right-top p {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: #fff;
}

.footer-contact-flex-right-bottom .nav-btn:nth-child(1) a {
    padding: 30px 0;
    margin-bottom: 30px;
}

.footer-contact-flex-right-bottom .nav-btn:nth-child(2) a {
    margin-bottom: 30px;
    background: #fff;
    display: block;
    color: rgba(13, 19, 27, 1);
    text-align: center;
}

.footer-contact .nav-btn-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 5px;
}

.footer-contact .nav-btn-flex p {
    color: rgba(13, 19, 27, 1);
}

.footer-contact-flex-right-bottom .nav-btn:nth-child(3) a {
    border: 1px solid #fff;
    background: initial;
    margin-bottom: 30px;
}

.footer-contact-flex-right-bottom .nav-btn:nth-child(3) a img {
    width: 32px;
    height: auto;
}

.footer-contact-flex-right-bottom .nav-btn:nth-child(3) a p {
    font-size: 16px;
}

.footer-contact-flex-right-bottom .nav-btn:nth-child(4) a {
    background: #03C755;
}

.footer-contact-flex-right-bottom .nav-btn:nth-child(4) a img {
    width: 40px;
    height: auto;
}

.footer-contact-flex-right-bottom .nav-btn:nth-child(4) a p {
    font-size: 16px;
}

footer {
    background: rgba(18, 28, 40, 1);
    padding: 80px 0;
}

.footer-flex-top {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.footer-flex-top-left {
    width: 120px;
}

.footer-flex-top-logo {
    width: 100%;
}

.footer-flex-bottom {
    padding-top: 30px;
    border-top: 1px solid #fff;
    display: flex;
    justify-content: space-between;
}

.footer-flex-bottom-left ul {
    display: flex;
}

.footer-flex-bottom-left ul li:nth-child(1) a {
    display: flex;
    align-items: center;
    margin-right: 25px;
}

.footer-flex-bottom-left ul li:nth-child(1) a p {
    font-size: 12px;
    color: #fff;
}

.footer-flex-bottom-left ul li:nth-child(1) a img {
    width: 12.5px;
    margin-left: 5px;
    margin-top: 2.5px;
}

.footer-flex-bottom-left ul li a {
    font-size: 12px;
    color: #fff;
}

.footer-flex-bottom-right p {
    font-size: 10px;
    color: #fff;
}

.footer-flex-top-right {
    width: calc(100% - 480px);
    display: flex;
}

.footer-flex-top-right ul:nth-child(1) {
    margin-right: 120px;
}

.footer-flex-top-right ul {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-flex-top-right ul li {
    width: 50%;
}

.footer-flex-top-right ul li a {
    font-size: 16px;
    letter-spacing: 0.08em;
    color: #fff;
    margin-bottom: 25px;
    display: block;
}

.footer-flex-top-right ul li:last-child a {
    margin-bottom: 0;
}

.fixed-btn {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: 0;
    z-index: 3;
    transition: all .6s;
    display: flex;
}

.fixed-btn.is-hidden {
    opacity: 0;
    visibility: hidden;
}

.fixed-btn ul li .nav-btn a {
    display: block;
    padding: 15px 10px;
}

.fixed-btn ul li:nth-child(1) {
    margin-bottom: 10px;
}

.fixed-btn ul li .nav-btn a p {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    font-size: 16px;
}

.fixed-btn ul li .nav-btn a img {
    margin-right: 0;
    margin-bottom: 5px;
    height: 12.5px;
}

.fixed-btn ul li:nth-child(2) .nav-btn a img {
    height: 17px;
    margin-left: 1.5px;
}

.under-wrap {
    padding-top: 73px;
}

.under-fv {
    padding: 100px 20px 100px 120px;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    background-image: url(../img/under/fv.webp);
}

#service01 .under-fv {
    background-image: url(../img/top/srvice_img01.webp);
}

#service02 .under-fv {
    background-image: url(../img/top/srvice_img02.webp);
}

#service03 .under-fv {
    background-image: url(../img/top/srvice_img03.webp);
}

#service04 .under-fv {
    background-image: url(../img/top/srvice_img04.webp);
}

#intro .under-fv {
    background-image: url(../img/common/nav_img01.webp);
    background-position: center 25%;
}

#alliance .under-fv {
    background-image: url(../img/common/alliance_bg.webp);
    background-position: center 25%;
}

#alliance .under-fv::before {
    background: rgba(0, 0, 0, .8);
}

.under-fv::before {
    background: rgba(0, 0, 0, .5);
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
    left: 0;
}

.under-fv-txt {
    position: relative;
    z-index: 1;
}

.under-fv-txt span {
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    padding-bottom: 10px;
}

.under-fv-txt h1 {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
}

.under-page .concept {
    background-image: initial;
    background: rgba(248, 248, 248, 1);
}

#about .concept {
    background: #fff;
}

.under-page .concept-title h2,
.under-page .concept-txt p {
    color: #0D131B;
}

.under-page .concept-txt p span {
    font-weight: 700;
}

.reason {
    padding: 120px 0;
}

.reason .cmn-title {
    text-align: right;
}

.reason-list ol {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px 25px;
    margin-bottom: 40px;
}

#strong .reason-list ol {
    display: block;
}

#intro .reason-list ol {
    gap: 40px 25px;
}

.reason-list ol li {
    background: rgba(248, 248, 248, 1);
}

#strong .reason-list ol li {
    margin-bottom: 40px;
}

#strong .reason-list ol li:last-child {
    margin-bottom: 0;
}

.reason-list-inner {
    padding: 25px 25px 40px;
}

.reason-list-num {
    margin-bottom: 15px;
    width: 45px;
    text-align: center;
}

.reason-list-num span {
    font-size: 14px;
}

.reason-list-num p {
    font-size: 42px;
    line-height: 1;
    margin-top: -12.5px;
}

.reason-list-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.reason-list-flex .reason-list-txt {
    width: 70%;
}

.reason-list-img {
    margin-bottom: 25px;
}

.reason-list-flex .reason-list-img {
    width: 25%;
    margin-bottom: 0;
}

.reason-list-img img {
    height: 175px;
    width: auto;
    display: block;
    margin: 0 auto;
}

#selling-property .reason-list ol li:last-child .reason-list-img img {
    height: 150px;
    margin-top: 40px;
}

.reason-list-txt h3 {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 15px;
}

.reason-list-txt p {
    font-size: 14px;
    font-weight: 500;
}

.reason-list-txt p span {
    font-weight: 700;
    padding-bottom: 10px;
}

#strong .reason-list ol li:nth-child(2) .reason-list-num {
    margin-left: auto;
}

#strong .reason-list ol li:nth-child(2) .reason-list-flex {
    flex-direction: row-reverse;
}

#strong .reason-list ol li:nth-child(2) .reason-list-txt h3 {
    text-align: right;
}

#intro .reason-list-num {
    width: 100%;
    text-align: center;
}

#intro .reason-list-num h3 {
    font-size: 20px;
}

#intro .reason-list-inner {
    padding: 25px;
}

#intro .reason-list-txt h3 {
    padding-bottom: 10px;
    color: rgb(177, 136, 58);
}

#intro .reason-list ol li {
    border: 1px solid rgb(177, 136, 58);
}

.support {
    padding: 120px 0;
    background: rgba(248, 248, 248, 1);
}

.support-cont-wrap {
    max-width: 1440px;
    margin: 0 auto;
}

.support-cont {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #0D131B;
}

.support-cont:last-child {
    border-bottom: none;
}

.support-cont .cmn-btn {
    margin-top: 30px;
}

.support-cont:last-child {
    margin-bottom: 0;
}

.support-cont-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.support-cont:nth-child(even) .support-cont-flex {
    flex-direction: row-reverse;
}

.support-cont-flex-img {
    width: 600px;
    border-radius: 10px;
}

.support-cont-flex-txt {
    width: calc(100% - 660px);
    text-align: left;
}

.support-cont-flex-txt h3 {
    margin-bottom: 20px;
    font-size: 24px;
    font-weight: 700;
}

.support-cont-flex-txt p {
    font-size: 14px;
    line-height: 2;
}

.support-cont:nth-child(even) .support-cont-flex-txt h3,
.support-cont:nth-child(even) .support-cont-flex-txt p {
    margin-left: auto;
}

.contact-box {
    margin: 120px auto 60px;
    background: rgba(13, 19, 27, 1);
}

.home .contact-box {
    background-image: url(../img/common/alliance_bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.home .contact-box::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    top: 0;
    left: 0;
}

.home .contact-box-inner {
    position: relative;
    z-index: 1;
}

.contact-box-inner {
    padding: 80px 100px;
}

.contact-box-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.contact-box-title {
    width: 240px;
}

.contact-box-title h2 {
    font-size: 36px;
    white-space: nowrap;
    color: #fff;
}

.contact-box-txt {
    width: calc(100% - 330px);
}

.contact-box-txt h3 {
    font-size: 18px;
    color: #fff;
    padding-bottom: 20px;
}

.contact-box-txt p {
    font-size: 14px;
    color: #fff;
    padding-bottom: 40px;
    line-height: 1.8;
}

.contact-box-txt .nav-btn {
    max-width: 480px;
}

.contact-box .nav-btn a p {
    padding-bottom: 0;
}

.faq {
    padding: 60px 0 120px;
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
    border-top: 1px solid rgba(51, 63, 76, 1);
}

.faq-list ul li .acc {
    position: relative;
}

.faq-list ul li .acc:before,
.faq-list ul li .acc:after {
    content: "";
    background-color: rgba(13, 19, 27, 1);
    width: 30px;
    height: 2px;
    position: absolute;
    top: 50%;
    right: 35px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform-origin: center center;
}

.faq-list ul li .acc:before {
    width: 2px;
    height: 30px;
    top: 50%;
    right: 49px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.faq-list ul li .acc.open:before {
    transform: translateY(-50%)rotate(90deg);
    -webkit-transform: translateY(-50%)rotate(90deg);
    -ms-transform: translateY(-50%)rotate(90deg);
}

.acc-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px 70px 25px 40px;
    position: relative;
    border-bottom: 1px solid rgba(217, 217, 217, 1);
    cursor: pointer;
    transition: all .7s;
}

.acc.open .acc-title {
    border-bottom: none;
}

.acc.open .acc-title::before {
    display: none;
}

.acc-title::before {
    content: "";
    width: 32px;
    background: rgba(51, 63, 76, 1);
    left: 0;
    bottom: -1px;
    height: 1px;
    position: absolute;
}

.acc-title span {
    width: 35px;
    font-size: 32px;
    font-weight: 400;
}

.acc-title h3 {
    width: calc(100% - 60px);
    font-size: 18px;
}

.acc-item {
    display: none;
}

.acc-item-txt {
    border-bottom: 1px solid rgba(13, 19, 27, 1);
    padding: 0 40px 40px;
    display: flex;
    justify-content: space-between;
}

.acc-item-txt span {
    width: 35px;
    font-size: 32px;
    font-weight: 400;
}

.acc-item-txt p {
    width: calc(100% - 60px);
    font-size: 14px;
    line-height: 2
}

.concept.about-concept {
    background: #fff;
}

.concept.about-concept .concept-title {
    margin-bottom: 95px;
    text-align: center;
    position: relative;
}

.concept.about-concept .concept-title::before {
    content: "";
    width: 1px;
    height: 40px;
    background: rgba(177, 136, 58, 1);
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    position: absolute;
}

.concept.about-concept .concept-title h2 {
    font-size: 42px;
    color: rgba(177, 136, 58, 1);
    line-height: 1.6;
    letter-spacing: .09em;
}

.concept.about-concept .concept-txt {
    text-align: center;
}

.concept.about-concept .concept-txt h3 {
    font-size: 24px;
    line-height: 2;
    padding-bottom: 40px;
}

.concept.about-concept .concept-txt p {
    font-size: 14px;
    line-height: 2;
    padding-bottom: 30px;
}

.concept.about-concept .concept-txt p:last-child {
    padding-bottom: 0;
}

.support.about-support .cmn-title {
    text-align: center;
}

.service-under .support-cont-flex-txt h3 {
    margin-bottom: 40px;
    font-size: 32px;
    font-weight: 500;
}

.service-under .support-cont-flex-txt p {
    font-size: 16px;
}

.service-under .support-cont-flex-txt p:last-child {
    padding-top: 20px;
}

.service-under .support {
    background: #fff;
}

.service-under .reason {
    background: rgba(248, 248, 248, 1);
}

.service-under .reason-list ol li {
    background: #fff;
}

.service-under .reason-list ol li:nth-child(1) .reason-list-img img {
    height: 167.5px;
    margin-top: 30px;
}

.service-under .reason-list ol li:nth-child(2) .reason-list-img img {
    height: 145px;
    margin-top: 50px;
}

.flow {
    padding: 120px 0;
}

.flow-list {
    max-width: 500px;
    margin: 0 auto 100px;
}

.flow-list ol {
    border-left: 1px dotted rgb(177, 136, 58);
    padding: 0;
}

.flow-list ol li {
    margin-bottom: 50px;
}

.flow-list-title {
    padding-left: 40px;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flow-list-title::before {
    content: "⚫︎";
    top: 55.5%;
    left: -6px;
    font-size: 12px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    position: absolute;
}

.flow-list-title p {
    padding-right: 55px;
    font-size: 42px;
    font-weight: 400;
    position: relative;
    line-height: 1;
}

.flow-list-title p::before {
    content: "";
    width: 24px;
    background: rgba(182, 182, 182, 1);
    height: 1px;
    position: absolute;
    top: 62%;
    right: 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}

.flow-list-title h3 {
    font-size: 18px;
    font-weight: 700;
    width: calc(100% - 95px);
    padding-top: 7.5px;
}

.flow-list-txt {
    padding-left: 40px;
}

.flow-list-txt p {
    font-size: 14px;
}

.flow-list ol li:last-child {
    margin-bottom: 10px;
}

.service-under .contact-box {
    margin: 0 auto 120px;
}

#policy .under-fv,
#contact .under-fv,
#post .under-fv {
    border-bottom: 1px solid #0D131B;
}

#post .under-fv::before,
#policy .under-fv::before,
#contact .under-fv::before {
    background: #fff;
}

#post .under-fv-txt span,
#post .under-fv-txt h1,
#policy .under-fv-txt span,
#policy .under-fv-txt h1,
#contact .under-fv-txt span,
#contact .under-fv-txt h1 {
    color: rgba(13, 19, 27, 1);
}

.privacy-cont {
    padding: 120px 0;
    max-width: 840px;
    margin: 0 auto;
}

.privacy-title {
    text-align: center;
    margin-bottom: 80px;
}

.privacy-title h2 {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 700;
}

.privacy-list ol li {
    margin-bottom: 30px;
}

.privacy-list-title {
    margin-bottom: 12.5px;
}

.privacy-list-title h3 {
    font-size: 16px;
    font-weight: 700;
}

.privacy-list-txt p {
    font-size: 16px;
    line-height: 1.7;
}

.contact-top-cont {
    padding: 80px 0;
}

.contact-tel-cont {
    display: block;
    max-width: 350px;
    margin: 0 auto;
    color: #0D131B;
}

.contact-cont {
    padding: 80px 0;
    background: rgba(248, 248, 248, 1);
}

.contact-top-tel-txt {
    text-align: center;
    margin-bottom: 15px;
}

.contact-top-tel-txt p {
    font-size: 20px;
    font-weight: 700;
}

.contact-tel-cont-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: #0D131B;
}

.contact-tel-cont-flex img {
    width: 32.5px;
    margin-right: 15px;
}

.contact-tel-cont-flex p {
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: #0D131B;
}

.contact-tel-cont-bottom {
    text-align: center;
}

.contact-tel-cont-bottom p {
    font-size: 12px;
    font-weight: 700;
}

.contact-table table {
    width: 100%;
    max-width: 840px;
    margin: 0 auto;
}

.contact-table table th {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 10px;
}

.contact-table table th p {
    margin-right: 10px;
    font-size: 14px;
    font-weight: 700;
}

.contact-table table th span {
    width: 50px;
    background: rgba(13, 19, 27, 1);
    height: 20px;
    line-height: 20px;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    display: block;
}

.contact-table table td {
    display: block;
    width: 100%;
    margin-bottom: 40px;
}

.contact-table table td input[type="text"],
.contact-table table td input[type="tel"],
.contact-table table td input[type="email"],
.contact-table table td select,
.contact-table table td textarea {
    font-family: "Noto Serif JP", serif;
    background: rgba(255, 255, 255, 1);
    border: none;
    border-radius: 5px;
    outline: 0;
    padding: 12.5px;
    width: 100%;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #000;
}

.contact-table table td select {
    cursor: pointer;
}

.contact-table table td select option {
    font-family: "Noto Serif JP", serif;
}

.contact-table table td input[type="text"]::placeholder,
.contact-table table td input[type="tel"]::placeholder,
.contact-table table td input[type="email"]::placeholder,
.contact-table table td select::placeholder,
.contact-table table td textarea::placeholder {
    color: #cccccc;
    letter-spacing: .06em;
}

/* data-name="select-152" を持つ span に適用 */
.wpcf7-form-control-wrap[data-name="select-152"] {
    position: relative;
    display: inline-block;
    width: 100%;
}

/* 擬似要素でカスタム矢印を追加 */
.wpcf7-form-control-wrap[data-name="select-152"]::after {
    content: "▼";
    /* カスタム矢印 */
    font-size: 14px;
    color: #555;
    position: absolute;
    top: 50%;
    right: 10px;
    /* 矢印の位置調整 */
    transform: translateY(-50%);
    pointer-events: none;
    /* クリックを無効化 */
}

input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    color: #cccccc;
}

input:-moz-placeholder,
textarea:-moz-placeholder {
    color: #cccccc;
    opacity: 1;
}

input::-moz-placeholder,
textarea::-moz-placeholder {
    color: #cccccc;
    opacity: 1;
}

input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    color: #cccccc;
}

.wpcf7-list-item label {
    cursor: pointer;
}

.agree-cont {
    text-align: center;
    margin-bottom: 40px;
    cursor: pointer;
}

.agree-cont .wpcf7-list-item {
    margin-left: 0;
}

.agree-cont label {
    align-items: center;
    display: flex;
}

.agree-cont .wpcf7-list-item-label {
    margin-left: 10px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.agree-cont .wpcf7-list-item-label a {
    text-decoration: underline;
    color: #0D131B;
}

.submit-btn {
    max-width: 340px;
    margin: 0 auto;
    position: relative;
    cursor: pointer;
    opacity: 1;
}

.submit-btn:before {
    content: '';
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 2px rgba(13, 19, 27, 1);
    border-right: solid 2px rgba(13, 19, 27, 1);
    top: 50%;
    right: 25px;
    transform: translateY(-50%)rotate(45deg);
    -webkit-transform: translateY(-50%)rotate(45deg);
    -ms-transform: translateY(-50%)rotate(45deg);
    position: absolute;
    transition: all .7s;
}

.submit-btn.disabled-btn {
    opacity: .4;
    pointer-events: none;
}

.submit-btn:hover::before {
    right: 15px;
}

.submit-btn.disabled-btn:hover::before {
    right: 25px;
}

.submit-btn input {
    background: #fff;
    border: 1px solid rgba(13, 19, 27, 1);
    font-size: 20px;
    padding: 15px 0;
    width: 100%;
    cursor: pointer;
    font-family: "Noto Serif JP", serif;
    border-radius: 0;
    color: #000;
}

.wpcf7-spinner {
    display: none !important;
}

.wpcf7-list-item.first {
    margin-left: 0;
}

.thanks-cont {
    padding: 270px 0 200px;
}

.thanks-cont-txt {
    text-align: center;
}

.thanks-cont-txt h2 {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.08em;
    padding-bottom: 20px;
}

.thanks-cont-txt p {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0.08em;
}

.news-archive-cont {
    padding-bottom: 120px;
}

.news-archive-cont .news-list {
    max-width: 840px;
    margin: 120px auto 80px;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-numbers {
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin: 0 12.5px;
    color: #0D131B;
    position: relative;
}

.pagination .page-numbers.current {
    width: 40px;
    height: 40px;
    background: rgba(13, 19, 27, 1);
    text-align: center;
    color: #fff;
    line-height: 40px;
}

.pagination .page-numbers.next,
.pagination .page-numbers.prev {
    width: 15px;
}

.pagination .page-numbers.next::before {
    content: '';
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 2px rgba(13, 19, 27, 1);
    border-right: solid 2px rgba(13, 19, 27, 1);
    top: 50%;
    right: 0px;
    transform: translateY(-50%) rotate(45deg);
    -webkit-transform: translateY(-50%) rotate(45deg);
    -ms-transform: translateY(-50%) rotate(45deg);
    position: absolute;
}

.pagination .page-numbers.prev::before {
    content: '';
    width: 10px;
    height: 10px;
    border: 0;
    border-top: solid 2px rgba(13, 19, 27, 1);
    border-right: solid 2px rgba(13, 19, 27, 1);
    top: 50%;
    left: 0;
    transform: translateY(-50%) rotate(-135deg);
    -webkit-transform: translateY(-50%) rotate(-135deg);
    -ms-transform: translateY(-50%) rotate(-135deg);
    position: absolute;
}

.news-single-conts-wrap {
    padding: 120px 0;
}

.news-single-conts {
    max-width: 840px;
    margin: 0 auto;
}

.news-single-cont-title {
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #0D131B;
}

.news-single-cont-title p {
    font-size: 16px;
    padding-bottom: 5px;
}

.news-single-cont-title h2,
.news-single-cont-title h1 {
    font-size: 36px;
    font-weight: 700;
}

.news-single-cont-thumb {
    margin-bottom: 30px;
}

.news-single-cont-txt strong {
    font-weight: 700;
}

.news-single-cont-txt em {
    font-style: italic;
}

.news-single-cont-txt p {
    font-size: 16px;
    padding-bottom: 20px;
}

.news-single-cont-txt h2 {
    font-size: 24px;
    padding-bottom: 20px;
    font-weight: 700;
}

.news-single-cont-txt h3 {
    font-size: 20px;
    padding-bottom: 20px;
    font-weight: 700;
}

.news-single-cont-txt h4 {
    font-size: 18px;
    padding-bottom: 20px;
    font-weight: 700;
}

.news-single-cont-txt h5 {
    font-size: 16px;
    padding-bottom: 20px;
    font-weight: 700;
}

.news-single-cont-txt a {
    color: rgba(177, 136, 58, 1);
    text-decoration: underline;
}

.news-single-cont-txt ul {
    margin-bottom: 20px;
    padding-inline-start: 20px;
}

.news-single-cont-txt ul li {
    list-style: disc;
}

.news-single-cont-txt ol {
    margin-bottom: 20px;
    padding-inline-start: 20px;
    list-style: decimal;
}

.news-single-cont-txt ol li {
    list-style: decimal;
}

.other-post {
    padding: 120px 0;
    background: rgba(248, 248, 248, 1);
}

.other-post-title {
    text-align: center;
    margin-bottom: 80px;
}

.other-post-title h2 {
    font-size: 32px;
    font-weight: 700;
}

.other-post .news-list {
    margin: 0 auto;
}

#post.column-wrap .under-fv {
    border-bottom: none;
}

.column-archive-cont {
    padding: 120px 0;
    background: rgba(248, 248, 248, 1);
}

.column-archive-cont .column-list ul {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 25px;
}

.column-list {
    margin-bottom: 80px;
}

.column-archive-cont .column-list a {
    display: block;
    background: #fff;
}

.column-archive-cont .column-list-img {
    margin-bottom: 0px;
}

.column-archive-cont .column-list-txt {
    padding: 15px 15px 20px;
}

.column-archive-cont .column-list-txt p.day {
    font-size: 12px;
    font-weight: 400;
    color: rgba(182, 182, 182, 1);
    padding-bottom: 10px;
}

.column-archive-cont .column-list-txt h3 {
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 2.5px;
}

.column-archive-cont .column-list-txt p.txt {
    font-size: 13px;
    font-weight: 500;
    line-height: 1.7;
}

.other-post.column-archive-cont .column-list {
    max-width: 840px;
    margin: 0px auto;
}

.other-post.column-archive-cont .column-list-txt p.day {
    padding-block: 20px 0;
    text-align: right;
}

.column-sns-list {
    padding: 60px 0 40px;
    max-width: 840px;
    margin: 0 auto;
}

.column-sns-list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px 15px;
    max-width: 130px;
    margin-left: auto;
}

.column-sns-list ul li a {
    display: block;
    width: 100%;
    height: 32px;
    background: rgba(4, 4, 4, 1);
    border-radius: 4px;
    position: relative;
}

.column-sns-list ul li a img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.column-sns-list ul li:nth-child(1) a img,
.column-sns-list ul li:nth-child(3) a img {
    width: 20px;
}

.column-sns-list ul li:nth-child(2) a img {
    width: 10px;
}

.property-archive-cont {
    padding: 120px 0;
}

.property-archive-cont .property-list {
    max-width: 100%;
}

.property-archive-cont .property-list .property-list-cont {
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 30px;
}

.property-archive-cont .property-list-txt-inner {
    padding: 15px 25px 25px;
}

.property-archive-cont .property-list-txt-table table td {
    width: 74.5%;
}

.property-archive-cont .property-list-txt-table table th {
    width: 25%;
}

.property-sort {
    max-width: 280px;
    width: 100%;
    margin: 0 0 25px auto;
}

.property-sort form {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Noto Sans JP", serif !important;
}

.property-sort p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    width: 85px;
    white-space: nowrap;
    font-family: "Noto Sans JP", serif !important;
}

.select-box {
    width: 180px;
    position: relative;
    cursor: pointer;
}

.select-box::before {
    content: "";
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(13, 19, 27, 1);
    top: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
}

.select-box::after {
    content: '';
    width: 8px;
    height: 8px;
    border: 0;
    border-bottom: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute;
    top: 45.5%;
    right: 10px;
    transform: translate(-50%, -50%) rotate(45deg);
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    -ms-transform: translate(-50%, -50%) rotate(45deg);
    z-index: 2;
    pointer-events: none;
}

.property-sort select {
    width: 100%;
    appearance: none;
    height: 40px;
    background: rgba(241, 241, 241, 1);
    position: relative;
    padding: 0 45px 0 20px;
    outline: none;
    border: none;
    position: relative;
    font-size: 16px;
    line-height: 40px;
    font-family: "Noto Sans JP", serif !important;
    cursor: pointer;
    color: #000;
}

.property-sort select option {
    font-size: 16px;
    font-family: "Noto Sans JP", serif !important;
    color: #000;
}

.property-single-conts-wrap {
    padding: 160px 0 120px;
}

.property-single-conts-wrap .inner {
    max-width: 840px;
}

.property-single-cont-cat-list {
    margin-bottom: 15px;
}

.property-single-cont-cat-list ul li {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.02em;
    padding: 5px 15px;
    border-radius: 30px;
    background: rgba(177, 136, 58, 1);
    border: 1px solid rgba(177, 136, 58, 1);
    margin-right: 10px;
    color: #fff;
    display: inline-block;
}

.property-single-cont-cat-list ul li.soldout {
    background: #fff;
    border-color: rgba(13, 19, 27, 1);
    color: rgba(13, 19, 27, 1);
}

.property-single-cont-title {
    padding-bottom: 20px;
    margin-bottom: 15px;
    border-bottom: 1px solid #0D131B;
}

.property-single-cont-title h1 {
    font-size: 36px;
    font-weight: 700;
}

.property-single-cont-head-bottom {
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
}

.property-single-cont-head-price {
    width: 280px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.property-single-cont-head-price p.title {
    background: rgba(13, 19, 27, 1);
    padding: 10px 12.5px;
    font-size: 16px;
    line-height: 1;
    color: #fff;
}

.property-single-cont-head-price p.price {
    font-size: 24px;
    font-weight: 700;
}

.property-single-cont-head-price p.price span {
    font-size: 20px;
}

.property-single-cont-head-favorite {
    width: 150px;
    border: 1px solid rgba(13, 19, 27, 1);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    cursor: pointer;
}

.property-single-cont-head-favorite.favorited {
    background: rgba(13, 19, 27, 1);
}

.property-single-cont-head-favorite img {
    width: 20px;
    margin-right: 7.5px;
}

.property-single-cont-head-favorite p {
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.property-single-cont-head-favorite.favorited p {
    color: #fff;
}

.swiperMain {
    position: relative;
    margin-bottom: 15px;
}

.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    right: -25px;
    width: 50px;
    height: 50px;
    background: rgba(13, 19, 27, 0.8);
    z-index: 1;
    cursor: pointer;
}

.swiper-button-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    left: -25px;
    width: 50px;
    height: 50px;
    background: rgba(13, 19, 27, 0.8);
    z-index: 1;
    cursor: pointer
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev1:after,
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next1:after {
    color: #fff;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.swiperThumbnail {
    overflow: hidden;
}

.swiperThumbnail .swiper-slide {
    height: 80px;
    opacity: .7;
    cursor: pointer;
}

.swiperThumbnail .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}

.swiperThumbnail .swiper-slide img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.property-swiper {
    margin-bottom: 80px;
}

.property-single-cont {
    background: rgba(248, 248, 248, 1);
    padding: 80px 0;
}

.property-single-cont-top-title {
    margin-bottom: 40px;
}

.property-single-cont-top-title h2 {
    font-size: 32px;
    font-weight: 700;
}

.property-single-cont-top-list ul {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 25px 40px;
}

.property-single-cont-top-list ul li {
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(217, 217, 217, 1);
    display: flex;
    justify-content: space-between;
}

.property-single-cont-top-list-th {
    width: 40%;
}

.property-single-cont-top-list-td {
    width: 58.5%;
}

.property-single-cont-top-list-th p,
.property-single-cont-top-list-td p {
    font-size: 14px;
}

.property-single-cont-top-list-td span {
    font-size: 10px;
    margin-top: 2.5px;
    display: block;
}

.property-single-cont-top-list-th p {
    font-weight: 700;
}

.property-single-cont-bottom-title {
    text-align: center;
    margin-bottom: 40px;
}

.property-single-cont-bottom-title h2 {
    font-size: 24px;
    font-weight: 700;
}

.property-single-cont-bottom-list ul {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    gap: 15px 0;
}

.property-single-cont-bottom-list ul li {
    text-align: center;
    position: relative;
}

.property-single-cont-bottom-list ul li::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 40px;
    background: rgba(217, 217, 217, 1);
    right: 0;
    top: -5px;
}

.property-single-cont-bottom-list ul li:last-child::before {
    display: none;
}

.property-single-cont-bottom-list ul li img {
    height: 40px;
    width: auto;
    display: block;
    margin: 0 auto 15px;
}

.property-single-cont-bottom-list ul li p {
    font-size: 10px;
    line-height: 1.5;
    letter-spacing: 0;
}

.property-single-cont-bottom-txt-list {
    margin-bottom: 80px;
}

.property-single-cont-bottom-txt-list ul li {
    display: flex;
    padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(217, 217, 217, 1);
}

.property-single-cont-bottom-txt-list-title {
    width: 30%;
}

.property-single-cont-bottom-txt-list-title p {
    font-weight: 700;
    font-size: 14px;
}

.property-single-cont-bottom-txt-list-txt {
    width: 68.5%;
}

.property-single-cont-bottom-txt-list-txt p {
    font-weight: 400;
    font-size: 14px;
}

.property-single-cont-bottom .nav-btn {
    max-width: 340px;
    margin: 0 auto;
}

.property-single-cont-bottom .nav-btn a {
    border: 1px solid rgba(13, 19, 27, 1);
    background: #fff;
}

.property-single-cont-bottom .nav-btn a p {
    color: #0D131B;
}

.property-single-map {
    padding: 120px 0;
}

.property-single-map iframe {
    width: 100%;
    height: 350px;
}

.acf-map {
    width: 100%;
    height: 400px;
}

.acf-map img {
    max-width: inherit !important;
}

.property-cont-txt {
    margin-bottom: 80px;
}

.property-cont-txt h2 {
    font-size: 24px;
    font-weight: 700;
    padding-bottom: 25px;
    line-height: 1.8;
}

.property-cont-txt p {
    font-size: 14px;
    font-weight: 700;
    line-height: 2.2;
    letter-spacing: 0.08em;
}

.wpcf7-response-output {
    display: none !important;
}

.property-single-conts-wrap .swiperMain .swiper-slide {
    aspect-ratio: 20 / 15;
}

.property-single-conts-wrap .swiperMain .swiper-slide {
    opacity: 0 !important;
}

.property-single-conts-wrap .swiperMain .swiper-slide-active {
    opacity: 1 !important;
}

.property-single-conts-wrap .swiperMain .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.property-swiper .swiper {
    opacity: 0;
}

.property-swiper .swiper.swiper-container-initialized {
    opacity: 1;
}

.p-home-journey-units {
    display: flex;
    flex-direction: column;
    gap: 40px 0
}

.p-home-journey-unit-label {
    font-size: 16px;
    border-bottom: 1px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-family: "Cormorant", serif;
    color: #fff;
}

.p-home-journey-unit-body {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.p-home-journey-unit-title {
    font-size: 24px;
    color: #fff;
    font-weight: 700;
    line-height: 1.5
}

.p-home-journey-unit-value {
    line-height: 1;
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}

.p-home-journey-unit-value .num {
    font-size: 90px;
    font-weight: 400;
    color: #fff;
    line-height: .7;
}

.p-home-journey-unit-value .sub {
    position: relative;
    top: -0.1em;
    color: #fff;
    font-size: 32px;
}

.p-global-recommend-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.p-global-recommend-unit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 35px;
    margin-bottom: 35px;
    border-bottom: 1px solid rgb(177, 136, 58)
}

.p-global-recommend-unit:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none
}

.p-global-recommend-unit-num {
    width: 50px;
    font-family: "Cormorant",
        serif;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: .04em;
    color: rgb(177, 136, 58);
}

.p-global-recommend-unit-title {
    width: calc(100% - 60px);
    font-size: 26px;
    font-weight: 500;
    letter-spacing: .04em;
    line-height: 1.3333333333
}

.service-under .support .reason-list ol li {
    background: rgba(13, 19, 27, .05);
    border: 1px solid rgba(13, 19, 27, 1);
}

.service-under .support .reason-list ol li .reason-list-num {
    margin-bottom: 20px;
    width: 100%;
}

.service-under .support .reason-list ol li .reason-list-txt h3 {
    margin-bottom: 15px;
    position: relative;
}

.service-under .support .reason-list ol li .reason-list-txt h3::before {
    content: "";
    width: 40px;
    background: rgb(234, 203, 48);
    bottom: 0;
    left: 0;
    position: absolute;
    height: 1px;
}

.caution-txt {
    text-align: right;
    padding-top: 20px;
}

.caution-txt p {
    color: #fff;
    font-size: 16px;
}

.under-page #alliance .concept {
    background: #fff;
}

#alliance .property-single-cont-top-title h2 {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgb(177, 136, 58);
}

.property-single-cont-top:nth-child(2) {
    margin-top: 100px;
}

.property-single-cont-top:nth-child(2) .property-single-cont-top-title {
    text-align: right;
}

.property-single-cont-top-title p {
    text-align: right;
    font-size: 18px;
}

#alliance .property-single-cont-top-list-th {
    width: 30%;
}

#alliance .property-single-cont-top-list-td {
    width: 70%;
}

#alliance .support {
    background: #fff;
}

#alliance .flow {
    background: rgba(248, 248, 248, 1);
}

#alliance .flow .cmn-title {
    text-align: right;
}

@media screen and (max-width: 1200px) {
    .header-left {
        margin-left: 15px;
        width: 200px;
    }

    .header-left a .logo_head {
        font-size: 10px;
    }

    .header-right {
        max-width: 600px;
    }

    .header-right-left ul li a {
        font-size: 13px;
    }

    .header-right-left {
        padding: 0px 15px;
    }

    .property-archive-cont .property-list .property-list-cont {
        gap: 50px 10px;
    }

    .property-archive-cont .property-list-txt-inner {
        padding: 12.5px 12.5px 20px;
    }

    .property-list-txt-table table th,
    .property-list-txt-table table td {
        font-size: 12px;
    }

    .support-cont-flex-img {
        width: 400px;
    }

    .support-cont-flex-txt {
        width: calc(100% - 440px);
        padding-right: 40px;
    }

    .support-cont:nth-child(even) .support-cont-flex .support-cont-flex-txt {
        padding-right: 0;
        padding-left: 20px;
    }

    .service-under .support-cont-flex-txt p {
        font-size: 14px;
    }

    .service-under .support-cont-flex-txt h3 {
        margin-bottom: 20px;
        font-size: 24px;
    }
}

@media screen and (max-width: 1000px) {
    .drawer-nav-flex-right {
        width: calc(100% - 250px);
    }

    .news-list {
        margin-top: 80px;
    }

    .nav-cont-list ul li a {
        padding: 150px 20px;
    }

    .footer-contact-flex .cmn-title {
        width: calc(100% - 600px);
    }

    .footer-flex-top-right {
        width: calc(100% - 300px);
    }
}

@media screen and (max-width: 834px) {
    .sp {
        display: block !important;
    }

    .header-right {
        width: auto;
    }

    .header-right-center {
        width: 100px;
        padding: 14.5px 0;
    }

    .header-right-right {
        width: 50px;
        height: 50px;
    }

    .header-right-right .drawer-hamburger {
        width: 30px;
        padding: 13.5px 0px 15px;
        margin: 0 11px;
    }

    .header-right-center ul li a img {
        width: 22px;
        margin-top: 4px;
    }

    .header-right-center ul li:nth-child(1) a img {
        width: 25px;
        margin-top: 0;
    }

    .drawer-nav-flex {
        display: block;
        width: calc(100% - 30px);
        max-width: 100%;
        padding-block: 70px 40px;
    }

    .drawer-nav-flex-left {
        width: 100px;
        margin-bottom: 40px;
    }

    .drawer-nav-flex-left img {
        margin-bottom: 10px;
    }

    .drawer-nav-flex-left p {
        font-size: 12px;
    }

    .drawer-nav-flex-right {
        width: calc(100% - 50px);
        margin: 0 auto 15px;
    }

    .drawer-nav-flex-right-top {
        display: block;
        margin-bottom: 15px;
    }

    .drawer-nav-flex-right-top ul li a {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .purchase-btn {
        margin-block: 20px 15px;
        background: rgba(51, 63, 76, 1);
        max-width: 300px;
        margin: 30px auto 15px;
    }

    .purchase-btn ul {
        display: flex;
        align-items: center;
    }

    .purchase-btn ul li {
        width: 50%;
        position: relative;
    }

    .purchase-btn ul li:nth-child(1)::before {
        position: absolute;
        content: "";
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        height: 27.5px;
        width: 1px;
        background: #fff;
    }

    .purchase-btn ul li a {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 100%;
        padding: 10px 0;
        margin-bottom: 0;
    }

    .purchase-btn ul li a img {
        height: 17.5px;
        width: auto;
        margin-right: 7.5px;
    }

    .purchase-btn ul li a p {
        font-size: 14px;
        font-weight: 700;
    }

    .drawer-nav-flex-right-top .btns {
        width: 300px;
        margin: 0px auto 40px;
    }

    .drawer-nav-flex-right-top .btns .nav-btn:nth-child(1) {
        margin-bottom: 15px;
    }

    .drawer-nav-flex-right-bottom {
        display: block;
        padding-top: 20px;
        max-width: 300px;
        margin: 0 auto;
    }

    .drawer-nav-flex-right-bottom-right {
        width: 100%;
        margin-top: 15px;
    }

    .drawer-nav-flex-right-bottom-right ul {
        margin-bottom: 40px;
        margin-inline: auto;
    }

    .drawer-nav-flex-right-bottom-right p {
        text-align: center;
    }

    .nav-btn a {
        padding: 5px 0;
    }

    header .nav-btn a {
        padding: 15px 0;
    }

    .nav-btn a p {
        font-size: 14px;
    }

    .drawer-nav-flex-right-top .btns .nav-btn:nth-child(1) a img {
        height: 12.5px;
    }

    .favorite-badge,
    .history-badge {
        position: absolute;
        top: 50%;
        right: 14.5px;
        width: 15px;
        height: 15px;
        line-height: 14.5px;
    }

    .sp-sns-list {
        max-width: 150px;
        margin: 0 auto;
    }

    .sp-sns-list ul {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .sp-sns-list ul li {
        height: 23.5px;
    }

    .concept {
        padding: 80px 0;
    }

    #selling-property .concept {
        padding: 60px 0;
    }

    .concept-title {
        margin-bottom: 25px;
    }

    .concept-title h2 {
        font-size: 28px;
    }

    .concept-txt p {
        font-size: 16px;
    }

    #selling-property .concept-title {
        margin-bottom: 15px;
    }

    #selling-property .concept-title h2 {
        font-size: 24px;
    }

    #selling-property .concept-txt p {
        font-size: 14px;
    }

    .purchase {
        padding: 80px 0;
        overflow: hidden;
    }

    .cmn-title {
        margin-bottom: 35px;
    }

    .cmn-title h2 {
        font-size: 32px;
    }

    .cmn-title h2 span {
        font-size: 20px;
        padding-bottom: 5px;
    }

    .property-list {
        max-width: 500px;
        margin: 0 auto 40px;
        position: relative;
    }

    .property-list .property-list-cont {
        display: flex;
        max-width: 100%;
        margin: 0;
        gap: 0;
    }

    .property-list li {
        margin-bottom: 15px;
    }

    .property-list-txt-inner {
        padding: 20px 15px;
    }

    .property-list-txt-top {
        margin-bottom: 0px;
    }

    .property-archive-cont .property-list-txt-top {
        margin-bottom: 15px;
    }

    .property-list-txt-title h3 {
        font-size: 16px;
    }

    .swiper-pagination {
        position: relative;
        margin: 0;
    }

    .swiper-pagination-bullet-active {
        background: rgba(13, 19, 27, 1);
    }

    .swiper-button-next {
        right: -16.5px;
        width: 32.5px;
        height: 32.5px;
    }

    .swiper-button-prev {
        left: -16.5px;
        width: 32.5px;
        height: 32.5px;
    }

    .purchase .swiper-button-next,
    .purchase .swiper-button-prev {
        top: 24.5vw;
    }

    .column .swiper-button-next,
    .column .swiper-button-prev {
        top: 20vw;
    }

    .swiper-button-next:after,
    .swiper-container-rtl .swiper-button-prev1:after,
    .swiper-button-prev:after,
    .swiper-container-rtl .swiper-button-next1:after {
        font-size: 14px;
    }

    .cmn-btn a {
        max-width: 335px;
        font-size: 16px;
    }

    .sale .cmn-btn a {
        margin-left: auto;
    }

    .top-sale-cont-txt {
        margin-bottom: 40px;
    }

    .sale {
        padding: 80px 0;
    }

    .sale::before {
        display: none;
    }

    .top-sale-cont-txt h2 {
        font-size: 24px;
    }

    .top-sale-cont-txt p {
        font-size: 14px;
    }

    .nav-cont {
        padding-top: 80px;
    }

    .nav-cont-list ul {
        display: block;
    }

    .nav-cont-list ul li {
        width: 100%;
    }

    .nav-cont-list ul li:nth-child(1) {
        margin-bottom: 25px;
    }

    .nav-cont-list ul li a {
        padding: 60px 10px;
    }

    .nav-cont-list ul li a p.cormorant {
        font-size: 14px;
    }

    .nav-cont-list ul li a h3 {
        font-size: 24px;
    }

    .nav-cont-list ul li a p.link {
        width: 200px;
        font-size: 14px;
    }

    .news {
        padding: 80px 0;
    }

    .top-post-flex {
        display: block;
    }

    .top-post-flex .cmn-title {
        margin-bottom: 40px;
    }

    .top-post-link a {
        width: 180px;
        margin: 40px auto 0;
        font-size: 13px;
    }

    .news-list ul li a p {
        font-size: 16px;
        padding-bottom: 10px;
    }

    .news-list ul li a h3 {
        font-size: 14px;
    }

    .news-list {
        margin-top: 20px;
    }

    .column {
        padding: 80px 0;
        overflow: hidden;
    }

    .column-list {
        max-width: 500px;
        margin: 0 auto;
        position: relative;
    }

    .column-list .swiper-wrapper {
        margin-bottom: 40px;
    }

    .column .top-post-flex {
        margin-bottom: 40px;
    }

    .column-list ul {
        display: block;
        max-width: 500px;
        margin: 0 auto;
    }

    .column-list ul li {
        margin-bottom: 40px;
    }

    .column-list ul li:last-child {
        margin-bottom: 0;
    }

    .column-list-txt span {
        font-size: 14px;
    }

    .column-list-txt h3 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .column-list-txt p {
        font-size: 14px;
    }

    .footer-contact {
        padding: 80px 0;
    }

    .footer-contact-flex {
        display: block;
    }

    .footer-contact-flex .cmn-title {
        width: 100%;
        margin-bottom: 40px;
    }

    .footer-contact-flex-right {
        width: 100%;
    }

    .footer-contact-flex-right-top {
        margin-bottom: 40px;
    }

    .footer-contact-flex-right-top p {
        font-size: 14px;
    }

    .footer-contact-flex-right-bottom .nav-btn:nth-child(1) a {
        padding: 20px 0;
        margin: 0 auto 15px;
        max-width: 400px;
    }

    .footer-contact .nav-btn a p {
        font-size: 16px;
    }

    .footer-contact-flex-right-bottom .nav-btn:nth-child(2) a {
        margin: 0 auto 15px;
        max-width: 400px;
        padding: 10px 0 5px;
    }

    .nav-btn a img {
        height: 17.5px;
        width: auto;
        margin-right: 7.5px;
    }

    .footer-contact-flex-right-bottom .nav-btn:nth-child(2) a span {
        font-size: 10px;
        letter-spacing: 0;
        font-weight: 700;
    }

    .footer-contact .nav-btn-flex {
        margin-bottom: 0;
    }

    .footer-contact-flex-right-bottom .nav-btn:nth-child(3) a {
        padding: 15px 0;
        max-width: 400px;
        margin: 0 auto 15px;
    }

    .footer-contact-flex-right-bottom .nav-btn:nth-child(3) a img {
        width: 20px;
    }

    .footer-contact-flex-right-bottom .nav-btn:nth-child(3) a p {
        line-height: 1.4;
    }

    footer {
        padding: 80px 0;
    }

    footer .inner {
        max-width: 500px;
    }

    .footer-flex-top {
        margin-bottom: 30px;
        display: block;
    }

    .footer-flex-top-left {
        width: 120px;
        margin-bottom: 30px;
    }

    .footer-flex-top-right {
        width: 100%;
        margin-bottom: 40px;
    }

    .footer-flex-top-right ul:nth-child(1) {
        margin-right: 15px;
    }

    .footer-flex-top-right ul li a {
        font-size: 14px;
        margin-bottom: 12.5px;
    }

    .footer-flex-bottom {
        padding-top: 30px;
        text-align: center;
        display: block;
    }

    .footer-flex-bottom-left ul {
        display: flex;
        justify-content: center;
        margin-bottom: 25px;
    }

    .footer-flex-top-sns {
        max-width: 175px;
    }

    .fv-scroll {
        right: 20px;
        width: 20px;
    }

    .fv-scroll p {
        font-size: 14px;
        height: 100px;
        padding-left: 3.5px;
    }

    .fv-txt {
        left: 20px;
        bottom: 15vw;
    }

    .fv-txt p {
        font-size: 32px;
        padding-bottom: 20px;
    }

    .fv-txt h2 {
        font-size: 20px;
    }

    .column-list-img {
        margin-bottom: 15px;
        height: 200px;
    }

    .drawer-nav-flex-right-top ul {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 30px;
    }

    .under-wrap {
        padding-top: 50px;
    }

    .under-fv {
        padding: 80px 20px;
    }

    .under-fv-txt span {
        font-size: 20px;
        padding-bottom: 5px;
    }

    .under-fv-txt h1 {
        font-size: 32px;
    }

    .privacy-cont {
        padding: 60px 0;
        max-width: 100%;
    }

    .privacy-title {
        margin-bottom: 60px;
    }

    .privacy-title h2 {
        font-size: 16px;
    }

    .privacy-list ol li {
        margin-bottom: 20px;
    }

    .privacy-list-title {
        margin-bottom: 7.5px;
    }

    .privacy-list-title h3 {
        font-size: 14px;
    }

    .privacy-list-txt p {
        font-size: 14px;
    }

    .contact-top-cont {
        padding: 40px 0;
    }

    .contact-tel-cont {
        max-width: 280px;
    }

    .contact-top-tel-txt {
        margin-bottom: 10px;
    }

    .contact-top-tel-txt p {
        font-size: 16px;
    }

    .contact-tel-cont-flex img {
        width: 22.5px;
        margin-right: 10px;
    }

    .contact-tel-cont-flex p {
        font-size: 32px;
    }

    .contact-tel-cont-bottom p {
        font-size: 10px;
        white-space: nowrap;
    }

    .contact-cont {
        padding: 60px 0;
    }

    .contact-table table td,
    .agree-cont {
        margin-bottom: 30px;
    }

    .submit-btn {
        max-width: 280px;
    }

    .submit-btn input {
        font-size: 16px;
    }

    .news-archive-cont .news-list {
        max-width: 100%;
        margin: 60px auto;
    }

    .news-archive-cont {
        padding-bottom: 80px;
    }

    .pagination .page-numbers {
        font-size: 16px;
        margin: 0px 7.5px;
    }

    .pagination .page-numbers.current {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .pagination .page-numbers.next::before,
    .pagination .page-numbers.prev::before {
        width: 7px;
        height: 7px;
    }

    .pagination .page-numbers.next,
    .pagination .page-numbers.prev {
        width: 10px;
    }

    .thanks-cont {
        padding: 120px 0 60px;
    }

    .thanks-cont-txt h2 {
        font-size: 20px;
        padding-bottom: 15px;
    }

    .thanks-cont-txt p {
        font-size: 14px;
    }

    .news-single-conts-wrap {
        padding: 60px 0;
    }

    .news-single-cont-title {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }

    .news-single-cont-title p {
        font-size: 12px;
    }

    .news-single-cont-title h1,
    .news-single-cont-title h2 {
        font-size: 20px;
    }

    .news-single-cont-thumb {
        margin-bottom: 20px;
    }

    .news-single-cont-txt p {
        font-size: 14px;
        padding-bottom: 15px;
    }

    .news-single-cont-txt h2 {
        font-size: 20px;
        padding-bottom: 15px;
    }

    .news-single-cont-txt h3 {
        font-size: 18px;
        padding-bottom: 15px;
    }

    .news-single-cont-txt h4 {
        font-size: 16px;
        padding-bottom: 15px;
    }

    .news-single-cont-txt h5 {
        font-size: 14px;
        padding-bottom: 15px;
    }

    .news-single-cont-txt ul,
    .news-single-cont-txt ol {
        margin-bottom: 15px;
    }

    .news-single-cont-txt ul li,
    .news-single-cont-txt ol li {
        font-size: 14px;
    }

    .other-post {
        padding: 60px 0;
    }

    .other-post-title {
        margin-bottom: 40px;
    }

    .other-post-title h2 {
        font-size: 24px;
    }

    .column-sns-list {
        padding: 40px 0 20px;
    }

    .column-sns-list ul {
        margin-inline: auto 15px;
    }

    .header-left a .logo_head {
        font-size: 10px;
        line-height: 1.3;
        top: -1px;
        position: relative;
    }

    .header-left a .logo_head span {
        font-size: 12px;
    }

    .drawer-nav-flex-right-bottom-left ul {
        justify-content: center;
        margin-bottom: 20px;
    }

    .property-archive-cont .property-list .property-list-cont {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 15px;
        max-width: 100%;
    }

    .property-archive-cont .property-list li {
        margin-bottom: 0px;
    }

    .property-archive-cont .property-list li.property-item {
        margin-bottom: 30px;
    }

    .fixed-btn {
        left: 50%;
        top: initial;
        transform: translateX(-50%)translateY(0);
        -webkit-transform: translateX(-50%)translateY(0);
        -ms-transform: translateX(-50%)translateY(0);
        width: 100%;
        max-width: 500px;
        bottom: 0px;
        z-index: 10;
        transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
    }

    .fixed-btn.fade-out {
        opacity: 0;
        pointer-events: none;
        transform: translateX(-50%)translateY(40px);
        -webkit-transform: translateX(-50%)translateY(40px);
        -ms-transform: translateX(-50%)translateY(40px);
    }

    .fixed-btn.fade-in,
    .fixed-btn.footer-visible {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%)translateY(0px);
        -webkit-transform: translateX(-50%)translateY(0px);
        -ms-transform: translateX(-50%)translateY(0px);
    }

    .fixed-btn ul {
        display: flex;
        justify-content: space-between;
        width: 100%;
    }

    .fixed-btn ul li {
        width: 49.5%;
    }

    .fixed-btn ul li .nav-btn a p {
        -ms-writing-mode: initial;
        writing-mode: initial;
        font-size: 14px;
    }

    .fixed-btn ul li .nav-btn a {
        display: flex;
        padding: 10px 5px;
        align-items: center;
        justify-content: center;
    }

    .fixed-btn ul li .nav-btn a img {
        margin-right: 0;
        margin-bottom: 0;
    }

    .fixed-btn ul li:nth-child(2) .nav-btn a img {
        height: 15px;
        margin-left: 0;
        margin-right: 5px;
        margin-top: 0;
    }

    .fixed-btn ul li .nav-btn a img {
        margin-right: 5px;
        margin-bottom: 0;
        height: 12.5px;
        margin-top: 2px;
    }

    .fixed-btn ul li:nth-child(1) {
        margin-bottom: 0px;
    }

    .reason {
        padding: 80px 0;
    }

    .reason-list ol {
        display: block;
        max-width: 500px;
        margin: 0 auto;
    }

    .home .reason-list ol {
        margin-bottom: 40px;
    }

    .reason-list-inner {
        padding: 20px 20px 30px;
    }

    .reason-list-num span {
        font-size: 12px;
    }

    .reason-list-num p {
        font-size: 34px;
        margin-top: -10px;
    }

    .reason-list-img {
        margin-bottom: 20px;
    }

    .reason-list-img img {
        height: 135px;
    }

    .reason-list-txt h3 {
        font-size: 16px;
        padding-bottom: 12.5px;
    }

    .reason-list-txt p {
        font-size: 13px;
    }

    .reason-list ol li {
        margin-bottom: 20px;
    }

    .reason-list ol li:last-child {
        margin-bottom: 0;
    }

    .support {
        padding: 80px 0;
    }

    .support-cont-flex {
        display: block;
        max-width: 500px;
        margin: 0 auto;
    }

    .support-cont-flex-img {
        width: 100%;
        margin-bottom: 40px;
    }

    .support-cont-flex-txt {
        width: 100%;
        padding-right: 0;
    }

    .support-cont:nth-child(even) .support-cont-flex .support-cont-flex-txt {
        padding-left: 0px;
    }

    .support-cont-flex-txt h3,
    .service-under .support-cont-flex-txt h3 {
        margin-bottom: 25px;
        font-size: 22px;
    }

    .spn-inner {
        width: 100%;
    }

    .contact-box {
        margin: 0;
    }

    .contact-box-inner {
        padding: 40px 35px;
        display: block;
    }

    .contact-box-title {
        width: 100%;
        margin-bottom: 30px;
    }

    .contact-box-title h2 {
        font-size: 28px;
    }

    .contact-box-txt {
        width: 100%;
    }

    .contact-box-txt h3 {
        padding-bottom: 15px;
    }

    .contact-box-txt p {
        font-size: 13px;
        padding-bottom: 30px;
    }

    .contact-box .nav-btn a {
        padding: 25px 0;
        max-width: 305px;
        margin: 0 auto;
    }

    .contact-box .nav-btn a p {
        font-size: 16px;
    }

    .contact-box-txt .nav-btn {
        max-width: 100%;
    }

    .faq {
        padding: 80px 0;
    }

    .acc-title {
        padding: 15px 30px 15px 15px;
    }

    .acc-title span {
        width: 30px;
        font-size: 24px;
    }

    .acc-title h3 {
        width: calc(100% - 45px);
        font-size: 14px;
    }

    .faq-list ul li .acc:before,
    .faq-list ul li .acc:after {
        width: 20px;
        right: 0;
    }

    .faq-list ul li .acc:before {
        width: 2px;
        height: 20px;
        right: 9px;
    }

    .acc-item-txt {
        padding: 0 15px 15px;
    }

    .acc-item-txt span {
        width: 30px;
        font-size: 24px;
    }

    .acc-item-txt p {
        width: calc(100% - 45px);
        font-size: 13px;
    }

    .support-cont-wrap {
        margin: 0 auto;
        width: calc(100% - 40px);
    }

    .concept.about-concept .concept-title {
        margin-bottom: 85px;
    }

    .concept.about-concept .concept-title h2 {
        font-size: 28px;
        line-height: 1.7;
        letter-spacing: 0.04em;
    }

    .concept.about-concept .concept-txt h3 {
        font-size: 18px;
    }

    .concept.about-concept .concept-txt p {
        padding-bottom: 25px;
        max-width: 300px;
        margin: 0 auto;
        text-align: left;
    }

    .support.about-support .cmn-title {
        text-align: left;
    }

    .flow {
        padding: 80px 0;
    }

    .flow-list-title {
        padding-left: 20px;
    }

    .flow-list-title p {
        padding-right: 40px;
        font-size: 40px;
    }

    .flow-list-title p::before {
        width: 24px;
        top: 60%;
        right: 5px;
    }

    .flow-list-title h3 {
        width: calc(100% - 85px);
        padding-top: 6.5px;
    }

    .flow-list ol li {
        margin-bottom: 40px;
    }

    .flow-list-txt {
        padding-left: 20px;
    }

    .flow-list-title::before {
        top: 60%;
        left: -7px;
        font-size: 14px;
    }

    .property-single-conts-wrap {
        padding: 120px 0 80px;
    }

    .property-single-cont-head-favorite.sp {
        width: 120px;
        padding: 5px 10px;
        display: flex !important;
    }

    .property-single-cont-head-favorite.pc {
        display: none !important;
    }

    .property-single-cont-head-favorite img {
        width: 18px;
        margin-right: 5px;
    }

    .property-single-cont-head-favorite p {
        font-size: 12px;
    }

    .property-single-cont-title {
        padding-bottom: 12.5px;
    }

    .property-single-cont-title h1 {
        font-size: 24px;
    }

    .property-single-cont-head-bottom {
        margin-bottom: 30px;
    }

    .property-single-cont-head-price {
        width: 100%;
        justify-content: initial;
    }

    .property-single-cont-head-price p.title {
        margin-right: 10px;
    }

    .property-single-cont-head-price p.price {
        font-size: 26px;
    }

    .swiperThumbnail .swiper-slide {
        height: 60px;
    }

    .property-single-cont {
        padding: 40px 0 80px;
    }

    .property-single-cont-top-title {
        margin-bottom: 25px;
    }

    .property-single-cont-top-title h2 {
        font-size: 27px;
    }

    .property-single-cont-top-list ul {
        display: block;
    }

    .property-single-cont-top-list ul li {
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .property-single-cont-top-list-th {
        width: 40%;
    }

    .property-single-cont-top-list-td {
        width: 58.5%;
    }

    .property-single-cont-bottom-title h2 {
        font-size: 27px;
        font-weight: 700;
        text-align: left;
    }

    .property-single-cont-bottom-list ul {
        grid-template-columns: repeat(4, 1fr);
        gap: 25px 0;
    }

    .property-single-cont-bottom-list ul li p {
        font-size: 10px;
    }

    .property-single-cont-bottom-list ul li img {
        height: 37.5px;
        margin: 0 auto 10px;
    }

    .property-single-cont-bottom-list ul li:nth-child(4)::before {
        display: none;
    }

    .property-single-cont-bottom-txt-list {
        padding-top: 25px;
        border-top: 1px solid rgba(217, 217, 217, 1);
    }

    .property-single-map {
        padding: 80px 0;
    }

    .property-single-map iframe {
        height: 260px;
    }

    .property-single-cont-cat-list {
        margin-bottom: 15px;
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .property-single-cont-cat-list ul li {
        padding: 2.5px 10px 2px;
    }

    .property-single-cont-bottom-txt-list ul li {
        justify-content: space-between;
        align-items: center;
    }

    .property-single-cont-bottom-txt-list-title {
        width: 40%;
    }

    .property-single-cont-bottom-txt-list-txt {
        width: 57.5%;
    }

    .property-archive-cont {
        padding: 80px 0;
    }

    .property-cont-txt h2 {
        font-size: 20px;
        padding-bottom: 15px;
    }

    .acf-map {
        height: 260px;
    }

    .property-single-cont-bottom-list ul li::before {
        height: 30px;
        top: 2.5px;
    }

    .property-list-img {
        height: 220px;
    }

    .reason-list-flex {
        display: block;
    }

    .reason-list-flex .reason-list-txt {
        width: 100%;
        margin-bottom: 30px;
    }

    .reason-list-flex .reason-list-img {
        width: 100%;
    }

    #strong .concept-title h2 {
        font-size: 18px;
    }

    #strong .concept-txt p {
        font-size: 14px;
    }

    .p-global-recommend-content {
        max-width: 500px;
    }

    .p-global-recommend-unit {
        padding-bottom: 30px;
        margin-bottom: 30px;
    }

    .p-global-recommend-unit-num {
        width: 30px;
        font-size: 16px;
    }

    .p-global-recommend-unit-title {
        width: calc(100% - 35px);
        font-size: 18px;
    }

    .p-home-journey-unit-body {
        display: block;
    }

    .p-home-journey-unit-title {
        font-size: 18px;
        padding-bottom: 15px;
        text-align: right;
    }

    .p-home-journey-unit-value {
        text-align: right;
    }

    .p-home-journey-unit-label {
        font-size: 14px;
        padding-bottom: 10px;
        margin-bottom: 15px;
    }

    .home .reason .cmn-title h2 {
        font-size: 22px;
    }

    #alliance .property-single-cont-top-title h2 {
        margin-bottom: 15px;
        padding-bottom: 10px;
        font-size: 20px;
    }

    .property-single-cont-top-title p {
        font-size: 14px;
    }

    .flow-list-title h3 {
        font-size: 16px;
    }

    .flow-list-title p {
        padding-right: 30px;
        font-size: 32px;
    }

    .flow-list-title p::before {
        width: 20px;
        right: -2px;
    }

    #alliance .property-single-cont-top-list ul li {
        display: block;
    }

    #alliance .property-single-cont-top-list-th {
        width: 100%;
        margin-bottom: 5px;
    }

    #alliance .property-single-cont-top-list-td {
        width: 100%;
    }

    .property-single-cont-top:nth-child(2) {
        margin-top: 60px;
    }

    .fv-logo {
        top: 12.5%;
        width: 200px;
    }
}

@media screen and (max-width: 500px) {
    .nav-btn a p {
        font-size: 16px;
    }

    .fv {
        height: 90vh;
    }

    .fv-txt p {
        font-size: 26px;
        padding-bottom: 15px;
    }

    .fv-txt h2 {
        font-size: 14px;
    }

    .property-list-txt-table table th {
        width: 30%;
    }

    .cat-list li {
        font-size: 14px;
        padding: 2.5px 10px 2px;
    }

    .property-list-txt-table table th,
    .property-list-txt-table table td {
        font-size: 13px;
    }

    .ppc {
        display: none;
    }

    .property-archive-cont .property-list .property-list-cont {
        display: block;
    }

    .footer-flex-top-right {
        justify-content: space-between;
    }

    .purchase .swiper-button-next,
    .purchase .swiper-button-prev {
        top: 32.5vw;
    }

    .column .swiper-button-next,
    .column .swiper-button-prev {
        top: 30vw;
    }

    .property-list-img {
        height: 200px;
    }

    .support-cont-wrap {
        width: 100%;
    }

    .p-home-journey-unit-value .num {
        font-size: 70px;
    }

    .caution-txt {
        padding-top: 15px;
    }

    .caution-txt p {
        font-size: 12px;
    }

    footer {
        padding: 40px 0 60px;
    }

    .fv-logo {
        width: 160px;
    }
}
