@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');

@font-face {
    font-family: 'Mado';
    src: url('../font/mado.otf') format('opentype'),
        url('../font/mado.ttf') format(' truetype');
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #fff;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(31, 31, 31, 1);
    transition: all .5s;
    min-width: 1200px;
    width: 100%;
}

.mado {
    font-family: 'Mado';
}

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

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

.abs {
    position: absolute;
}

.wh-bg {
    position: relative;
    background: #fff;
}

.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;
    color: rgba(13, 19, 27, 1);
}

a:hover {
    opacity: .7;
}

.js-reveal {
    opacity: 0;
    transition: all 1s ease;
    will-change: all;
}

.js-reveal--up {
    transform: translateY(30px);
    filter: blur(5px);
}

.js-reveal--fade {
    transform: none;
    filter: blur(5px);
}

.js-reveal.is-show {
    opacity: 1;
    transform: translateY(0);
    filter: none;
}

.concept-img.js-reveal {
    transition: opacity 1s ease, filter 1s ease !important;
    /* allを無効化 */
    will-change: opacity, filter !important;
}

.concept-img.js-reveal--up,
.concept-img.js-reveal--fade,
.concept-img.js-reveal.is-show {
    transform: none !important;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    min-width: 1000px;
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    z-index: 1000;
    z-index: 12;
}

header.is-show {
    transform: translateY(0);
    opacity: 1;
}

.header-bar {
    position: fixed;
    width: 100%;
    transition: all .7s;
    z-index: 4;
    background: rgba(255, 255, 255, .6);
}

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

.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: 27px;
    margin-left: 30px;
}

.header-right {
    display: flex;
    width: 780px;
}

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

.header-right-left {
    width: 430px;
}

.header-right-left ul {
    display: flex;
}

.header-right-left ul li {
    width: 20%;
}

.header-right-left ul li:nth-child(5) {
    border-right: none;
}

.header-right-left ul li a {
    display: block;
    width: 100%;
    text-align: center;
    color: #fff;
    padding-block: 11px;
    border-right: 1px solid #fff;
}

.header-right-left ul li:nth-child(1) a {
    border-left: 1px solid #fff;
}

.header-right-left ul li a img {
    height: 24px;
    width: auto;
    display: block;
    margin: 0 auto 5px;
}

.header-right-left ul li a p {
    font-size: 10px;
    letter-spacing: .08rem;
    color: #000;
    font-weight: 700;
}

.header-right-center {
    width: 280px;
}

.header-right-center ul {
    display: flex;
}

.header-right-center ul li {
    width: 50%;
}

.header-right-center ul li:nth-child(1) {
    border-right: 1px solid #fff;
}

.header-right-center ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: center;
    color: #fff;
    position: relative;
    background: #000;
    padding: 15px 10px;
    transition: all .7s;
}

.header-right-center ul li:nth-child(2) a {
    border-right: 1px solid #fff;
}

.header-right-center ul li a:hover {
    background: #2B79FF;
    opacity: 1;
}

.header-right-center ul li a p {
    width: calc(100% - 30px);
    font-weight: 500;
    font-size: 14px;
    letter-spacing: .02rem;
    text-align: left;
    line-height: 1.35;
}

.header-right-center ul li a img {
    width: 24px;
}

.favorite-badge,
.history-badge {
    position: absolute;
    top: 35px;
    right: 22.5px;
    background: #fff;
    color: #242424;
    font-size: 10px;
    font-weight: bold;
    width: 17.5px;
    height: 17.5px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    line-height: 17.5px;
    letter-spacing: 0;
    text-align: center;
}

.header-right-right {
    width: calc(100% - 710px);
    background: #000;
    transition: all .7s;
}

.header-right-right:hover {
    background: #2B79FF;
}

.header-right-right .drawer-hamburger {
    width: 24px;
    padding: 28.5px 25px;
}

.drawer-hamburger-icon,
.drawer-hamburger-icon:before,
.drawer-hamburger-icon:after {
    height: 1px !important;
    background-color: #fff !important;
}

.drawer-hamburger-icon:before {
    width: 16px;
}

.drawer-hamburger-icon:after {
    opacity: 0;
    transition: all .6s cubic-bezier(.19, 1, .22, 1);
}

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

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

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

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

.drawer-open .drawer-hamburger-icon {
    background-color: transparent !important;
}

.drawer-open .drawer-hamburger-icon:before {
    width: 100%;
}

.drawer-open .drawer-hamburger-icon::after {
    opacity: 1;
    width: 100%;
}

.drawer-open .header-right-right .drawer-hamburger {
    padding: 24px;
}

.drawer-nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    height: 100%;
}

.drawer-nav-flex-left {
    width: 35%;
    background-image: url(../img/common/drawer_img.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    height: 100%;
}

.drawer-nav-flex-left img {
    max-width: 50px;
    width: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    position: absolute;
}

.drawer-nav-flex-right {
    width: 65%;
    position: relative;
}

.drawer-nav-flex-right-wrap {
    padding-block: 200px 100px;
    position: relative;
}

.drawer-nav-flex-right-wrap-cont {
    overflow-y: scroll;
    height: 100%;
}

.drawer-nav-flex-right-top {
    display: block;
    margin: 0px auto;
    max-width: 380px;
    width: 100%;
}

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

.drawer-nav-flex-right-top ul li a:hover {
    opacity: 1;
    color: #707074;
}

.drawer-nav-flex-right-top ul li:nth-child(2) a {
    margin-bottom: 0;
}

.drawer-nav-flex-right-top ul li ul {
    display: flex;
    flex-wrap: wrap;
    margin-block: 7.5px 20px;
    column-gap: 15px;
}

.drawer-nav-flex-right-top ul li ul>li {
    width: auto;
}

.drawer-nav-flex-right-top ul li ul li:nth-child(2)::before {
    content: "";
    width: 250px;
    position: relative;
    display: block;
}

.drawer-nav-flex-right-top ul li ul li a {
    font-size: 12px;
    display: block;
}

.drawer-nav-flex-right-bottom {
    padding-block: 0 60px;
    border-top: none;
    display: block;
    width: 120px;
    margin: 0 100px 0 auto;
}

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

.drawer-nav-flex-right-bottom-sns ul li {
    width: 17.5px;
}

.drawer-nav-flex-right-bottom-sns ul li a:hover {
    opacity: .6;
}

.drawer-nav-flex-right-bottom-link ul li {
    margin-bottom: 12.5px;
}

.drawer-nav-flex-right-bottom-link ul li a p {
    font-size: 12px;
    color: #000;
    letter-spacing: 0;
}

.drawer-nav-flex-right-bottom-link ul li a:hover {
    opacity: 1;
}

.drawer-nav-flex-right-bottom-link ul li a:hover p {
    color: #707074;
}

/* 初期状態 */
header {
    transform: translateY(-100px);
    transition: opacity .9s ease, transform .7s ease;
}

.fixed-btn {
    opacity: 0;
    transform: translateY(12px);
    transition: opacity .6s ease, transform .8s ease;
}

body.is-loaded header.is-show {
    opacity: 1;
    transform: translateY(0);
}

body.is-loaded .fixed-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 1s;
}

body.is-loaded .fixed-btn.fade-out {
    opacity: 0;
}

.fv {
    position: fixed;
    height: 100vh;
    width: 100%;
    min-width: 1200px;
    background: #86888c;
    top: 0;
    left: 0;
    z-index: 1;
}

.top-wrap {
    margin-top: 100vh;
    z-index: 2;
    position: relative;
    overflow: hidden;
}

.top-wrap #luxy {
    background: #000;
    transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 1200px;
}

.top-wrap #luxy.is-white {
    background-color: #fff;
}

.top-wrap #luxy.is-black {
    background-color: #000;
}

.fv-bg {
    position: absolute;
    inset: -10%;
    background-image: url("../img/top/fv.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    filter: blur(5px);
    transition:
        opacity 1.4s ease,
        filter 1.4s ease;
    will-change: transform, opacity, filter;
    z-index: 0;
}

.fv.is-loaded .fv-bg {
    opacity: 1;
    filter: none;
}

.fv-txt {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 3;
    filter: blur(5px);
    opacity: 0;
    transition: all 1s ease;
    transition-delay: .5s;
    z-index: 1;
}

.fv.is-loaded .fv-txt {
    opacity: 1;
    filter: blur(0px);
}

.fv-txt p {
    font-size: 80px;
    line-height: 1;
    padding-top: 30px;
}

.fv-txt p .batsu {
    display: inline-block;
    position: relative;
    width: 30px;
    height: 30px;
    margin-right: 7.5px;
    top: 2.5px;
}

.fv-txt p .batsu::before,
.fv-txt p .batsu::after {
    /* 共通設定 */
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    /* 棒の幅（太さ） */
    height: 30px;
    /* 棒の高さ */
    background: #fff;
}

.fv-txt p .batsu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.fv-txt p .batsu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.fv-txt h2 {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.under-nav-wrap {
    padding: 80px 0;
    border-bottom: 1px solid rgba(215, 215, 215, 1);
    margin: 0 auto;
}

.under-nav ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px 40px;
    margin-bottom: 55px;
}

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

.under-nav ul li a {
    width: 100%;
    background: rgba(31, 31, 31, 1);
    display: block;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    transition: all .7s;
}

.under-nav ul li a:hover {
    background: #2B79FF;
    opacity: 1;
}

.under-nav ul li a img {
    width: 120px;
}

.under-nav ul li a p {
    width: calc(100% - 130px);
    font-size: 14px;
    font-weight: 500;
    color: #fff;
}

.under-nav ul li a .nav-icon {
    position: relative;
    display: inline-block;
}

.under-nav ul li a .nav-icon img {
    display: block;
    transition: opacity 0.7s ease;
}

/* hover画像 */
.under-nav ul li a .nav-icon img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

/* hover時 */
.under-nav ul li a:hover .nav-icon img:nth-child(1) {
    opacity: 0;
}

.under-nav ul li a:hover .nav-icon img:nth-child(2) {
    opacity: 1;
}

.cmn-btn {
    display: flex;
    justify-content: center;
}

/* カスタムプロパティをアニメ対象として登録（重要） */
@property --ring-angle {
    syntax: '<angle>';
    inherits: false;
    initial-value: 0deg;
}

.cmn-btn a,
.cmn-btn button {
    /* 色・見た目 */
    --_bg: rgba(255, 255, 255, .2);
    --_bg-hover: rgba(255, 255, 255, .5);
    --_border-color: rgba(255, 255, 255, .35);
    --_gradient-from: #fff;
    /* 線色（白でOK） */
    --_gradient-to: #fff;
    /* サイズ */
    --_border-width: 1.5px;
    --_radius: 45px;
    /* アニメ */
    --_duration: .35s;
    --_easing: cubic-bezier(.4, 0, .2, 1);
    --_start-angle: -75deg;
    /* 左上起点に寄せる */
    --ring-angle: 0deg;
    /* 初期：線なし */
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12.5px 25px;
    border-radius: var(--_radius);
    background: var(--_bg);
    border: 1px solid rgba(255, 255, 255, .4);
    /* 背景もじわっと */
    transition:
        background .6s ease,
        transform .2s ease;
}

.cmn-btn button:disabled {
    opacity: .4;
    pointer-events: none;
    cursor: not-allowed;
}

.cmn-btn.blue-btn a {
    background: #2B79FF;
}

.cmn-btn.blue-btn a:hover {
    background: #2B79FF;
}

.is-white .cmn-btn a,
.is-white .cmn-btn button {
    --_bg: rgba(112, 112, 116, 0.70);
    --_bg-hover: rgba(112, 112, 116, 0.85);
    border: 1px solid #FFFFFF66;
}

.is-white .prop-filter__actions .cmn-btn button {
    --_bg: #000;
    --_bg-hover: #000;
    border: 1px solid #000;
    cursor: pointer;
}

.is-white .prop-filter__actions .cmn-btn button:hover {
    --_bg: rgba(112, 112, 116, 0.70);
    --_bg-hover: rgba(112, 112, 116, 0.85);
    border: 1px solid #FFFFFF66;
}

/* “リング（枠線）”を擬似要素で描画 */
.cmn-btn a::before,
.cmn-btn button::before {
    content: "";
    position: absolute;
    inset: calc(-1 * var(--_border-width));
    border-radius: calc(var(--_radius) + var(--_border-width));
    pointer-events: none;
    /* conic-gradient で「描画される線」を作り、maskで“枠だけ”にする */
    background:
        conic-gradient(from var(--_start-angle),
            var(--_gradient-from) 0deg,
            var(--_gradient-to) var(--ring-angle),
            transparent var(--ring-angle) 360deg);
    /* 枠だけ表示（中身を抜く） */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    padding: var(--_border-width);
    /* ここが“線が回る”本体 */
    transition: --ring-angle var(--_duration) var(--_easing);
}

@media (any-hover:hover) {

    .cmn-btn a:hover,
    .cmn-btn button:hover {
        background: var(--_bg-hover);
    }

    .cmn-btn a:hover::before,
    .cmn-btn button:hover::before {
        --ring-angle: 360deg;
    }

    /* .is-white .cmn-btn a:hover,
    .is-white .cmn-btn button {
        --_gradient-from: rgba(0, 0, 0, 0.60);
        --_gradient-to: rgba(0, 0, 0, 0.60);
    } */
}

/* 中身が線に埋もれないように */
.cmn-btn a p,
.cmn-btn a svg,
.cmn-btn button p,
.cmn-btn button svg {
    position: relative;
    z-index: 1;
}

.cmn-btn a:hover,
.cmn-btn button:hover,
.cmn-btn.bgn a:hover {
    opacity: 1;
}

.cmn-btn.bgn a::before {
    display: none;
}

.cmn-btn.bgn a:hover p {
    color: #2B79FF !important;
}

.cmn-btn.bgn a svg path {
    transition: all .7s;
}

.cmn-btn.bgn a:hover svg path {
    stroke: #2B79FF;
}

.cmn-btn a p,
.cmn-btn button p {
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    margin-right: 5px;
    transition: all .7s;
}

.cmn-btn a svg,
.cmn-btn button svg {
    width: 12px;
    transition: all .7s;
    position: relative;
}

.cmn-btn a:hover svg,
.cmn-btn button:hover svg {
    transform: translateX(10px);
}

.purchase {
    padding: 120px 0;
}

.title-flex {
    margin-bottom: 55px;
    display: flex;
    justify-content: space-between;
}

.cmn-title {
    width: calc(100% - 110px);
}

.cmn-title h2 {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}

.wh-bg .cmn-title h2 {
    color: #0D131B;
}

.swiper-arrow {
    width: 90px;
    display: flex;
    justify-content: space-between;
}

.swiper-arrow .swiper-button-prev,
.swiper-arrow .swiper-button-next {
    position: relative;
    top: initial;
    transform: initial;
    -webkit-transform: initial;
    -ms-transform: initial;
    left: initial;
    right: initial;
    width: 32px;
    height: 32px;
    background: #777171;
    z-index: 2;
    border-radius: 50%;
    cursor: pointer;
    border: 1px solid #D9D9D9;
    transition: all .7s;
}

@media (hover: hover) and (pointer: fine) {

    .swiper-arrow .swiper-button-prev:hover,
    .swiper-arrow .swiper-button-next:hover {
        background: #000;
    }

    .bl-bg .swiper-arrow .swiper-button-prev:hover,
    .bl-bg .swiper-arrow .swiper-button-next:hover {
        background: #3f3c3c;
    }
}

/* スマホ tap */
@media (hover: none) and (pointer: coarse) {

    .swiper-arrow .swiper-button-prev:active,
    .swiper-arrow .swiper-button-next:active {
        background: #000;
    }

    .bl-bg .swiper-arrow .swiper-button-prev:active,
    .bl-bg .swiper-arrow .swiper-button-next:active {
        background: #3f3c3c;
    }
}

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

.swiper-slide a img,
.swiper-slide a p,
.swiper-slide a h3 {
    transition: all .7s;
}

.swiper-slide a:hover {
    opacity: 1;
}

.swiper-slide a:hover img {
    filter: blur(2px);
}

a:hover .favorite-icon img {
    filter: none !important;
}

.private-cont-txt .cmn-btn a:hover img {
    filter: initial;
}

.private-cont-txt .cmn-btn a:hover p {
    color: #fff;
}

.cmn-btn.bgn a::before .swiper-slide a:hover p,
.swiper-slide a:hover h3 {
    color: #707074;
}

.property-list-img {
    margin-bottom: 15px;
    border-radius: 15px;
    position: relative;
    background: #F5F5F5;
    transition: all .7s;
}

.property-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1/1;
    border-radius: 15px;
}

.property-list-img-txt {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: right;
    top: 15px;
    right: 12.5px;
    z-index: 2;
}

.property-list-img-txt ul {
    display: flex;
    gap: 2.5px;
}

.property-list-img-txt ul li {
    background: #fff;
    padding: 4px;
    font-size: 12px;
    line-height: 1;
}

.property-list-img-txt .favorite-icon {
    width: 24px;
    margin-left: 7.5px;
}

.property-list-txt-top {
    display: flex;
}

.property-list-txt p {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(112, 112, 116, 1);
}

.bl-bg .property-list-txt p {
    color: #fff;
}

.property-list-txt p.money {
    color: #fff;
}

.is-white .property-list-txt p.money {
    color: #000;
}

.privacy-img {
    position: relative;
}

.privacy-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: rgba(2, 2, 2, .5);
    top: 0;
    left: 0;
    z-index: 1;
}

.privacy-img img {
    filter: blur(3.5px);
}

.privacy-img .favorite-icon img {
    filter: none;
}

.private-cont-txt-bage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    z-index: 1;
}

.private-cont-txt-bage img {
    width: 60px;
    margin: 0 auto 10px;
    filter: none;
    border-radius: 0;
    aspect-ratio: initial;
}

.private-cont-txt-bage p {
    text-align: center;
    font-size: 14px;
    color: #fff;
}

.private-cont-txt .cmn-btn a {
    position: absolute;
    width: calc(100% - 40px);
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    bottom: 20px;
    z-index: 1;
    padding-inline: 15px;
    transition: all .7s;
}

.private-cont-txt .cmn-btn a p {
    font-size: 11px;
}

.member-cont {
    padding: 250px 0 50px;
    background-image: url(../img/top/top_bg_img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.member-cont-txt {
    text-align: center;
    display: flex;
    justify-content: space-between;
    margin: 0 auto 150px;
    max-width: 480px;
    align-items: anchor-center;
}

.member-cont-txt-left {
    width: 80px;
}

.member-cont-txt-right {
    width: calc(100% - 95px);
}

.member-cont-txt h2 {
    font-size: 40px;
    font-weight: 500;
    color: #fff;
}

.member-cont-in-txt p {
    font-size: 14px;
    text-align: center;
    color: #fff;
}

.cmn-btn.bgn {
    margin-top: 55px;
    justify-content: right;
}

.cmn-btn.bgn a {
    background: initial;
    border: none;
    color: #fff;
}

.cmn-btn.bgn a p {
    color: #2B79FF;
}

.cmn-btn.bgn a path {
    stroke: #2B79FF;
}

.bl-bg .cmn-btn.bgn a path {
    stroke: #fff;
}

.bl-bg .cmn-btn.bgn a p {
    color: #fff;
}

.bl-bg .cmn-btn.bgn a:hover path {
    stroke: #2B79FF;
}

.bl-bg {
    color: #fff;
    background: #000;
}

/* .is-white .bl-bg .cmn-btn.bgn a path {
    stroke: #0D131B;
}

.is-white .bl-bg .cmn-btn.bgn a p {
    color: #0D131B;
} */
.column {
    padding: 120px 0;
    background: initial;
}

.home .column {
    background: #000;
}

.column-list-img {
    margin-bottom: 17.5px;
    overflow: hidden;
    border-radius: 15px;
}

.column-list-txt h3 {
    font-size: 14px;
    padding-bottom: 5px;
    color: #fff;
}

.column-list-txt p {
    font-size: 12px;
    color: rgba(112, 112, 116, 1);
}

/* 
.home .is-white .column-list-txt h3 {
    color: #0D131B;
} */
.concept {
    padding: 200px 0 260px;
    position: relative;
    z-index: 1;
}

.concept.wh-bg {
    background: initial;
}

.concept-img {
    position: absolute;
    overflow: hidden;
    border-radius: 20px;
    will-change: transform;
}

.concept-img-inner {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 120%;
    margin-inline: auto;
    position: absolute;
    width: 120%;
    top: -85%;
}

.concept-img01 {
    width: 180px;
    height: 255px;
    top: 12.5%;
    left: 20%;
}

.concept-img02 {
    width: 400px;
    height: 280px;
    top: 40%;
    left: -40px;
}

.concept-img03 {
    width: 280px;
    height: 410px;
    bottom: 27.5%;
    right: 5%;
}

.concept-img04 {
    width: 280px;
    height: 205px;
    bottom: 5.5%;
    right: 30%;
}

.concept-img01 .concept-img-inner {
    background-image: url(../img/top/concept_img01.webp);
}

.concept-img02 .concept-img-inner {
    background-image: url(../img/top/concept_img02.webp);
}

.concept-img03 .concept-img-inner {
    background-image: url(../img/top/concept_img03.webp);
    top: -75%;
}

.concept-img04 .concept-img-inner {
    background-image: url(../img/top/concept_img04.webp);
    top: -145.5%;
}

.concept-txt {
    max-width: 500px;
    margin: -50px auto 0;
    width: 100%;
}

.concept-txt p {
    font-size: 14px;
    line-height: 1.8;
    padding-bottom: 220px;
    max-width: 400px;
    color: rgba(112, 112, 116, 1);
    letter-spacing: .02rem;
}

.concept-txt p:nth-child(2) {
    margin-left: 100px;
}

.concept-txt p:nth-child(3) {
    padding-bottom: 200px;
}

.concept-title {
    display: flex;
    justify-content: flex-end;
}

.concept-title h2 {
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: upright;
    -webkit-text-orientation: upright;
    display: block;
    white-space: nowrap;
    line-height: 1.2;
    margin: 0;
    color: #fff;
}

.concept-title h2 span {
    display: block;
    font-size: 40px;
    font-weight: 500;
    color: inherit;
}

.is-white .concept-title h2 span {
    color: #1F1F1F;
}

.concept-title h2 span:nth-child(3) {
    padding-top: 40px;
}

.cmn-txt {
    font-size: 20px;
    line-height: 1.7;
}

.member {
    padding: 120px 0 200px;
}

.member .column-list-txt h3 {
    color: #fff;
}

.member.wh-bg .column-list-txt h3 {
    color: rgb(31, 31, 31);
}

.member .title-flex {
    align-items: flex-end;
}

.cmn-txt {
    margin-bottom: 30px;
}

.merit {
    padding: 120px 0;
}

.merit-list {
    margin-block: 55px 70px;
}

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

.merit-list ul li .merit-list-img {
    padding: 40px 30px;
    border: 1px solid rgba(62, 62, 64, 1);
    border-radius: 15px;
}

.merit-list ul li .merit-list-img img {
    width: 150px;
    margin: 0 auto 35px;
}

.merit-list ul li .merit-list-img h3 {
    font-size: 14px;
    text-align: center;
    color: #fff;
}

.is-white .merit-list ul li .merit-list-img h3 {
    color: #0D131B;
}

.ex-cont {
    padding: 120px 0;
}

.ex-list {
    margin-top: 55px;
}

.ex-cont .ex-list-cont {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 45px;
}

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

.ex-cont .property-list-img {
    background: initial;
    overflow: hidden;
    border-radius: 15px;
    background: #F5F5F5;
}

.ex-cont .property-list-img {
    width: 100%;
    height: initial;
    object-fit: initial;
    aspect-ratio: initial;
}

.ex-cont .property-list-img img {
    transition: all .7s;
}

.ex-cont .ex-list-cont a:hover .property-list-img img {
    filter: blur(2px);
}

.ex-cont .ex-list-cont a:hover .property-list-img .favorite-icon img {
    filter: none;
}

.ex-cont p,
.ex-cont h3 {
    transition: all .7s;
    color: #fff;
}

.is-white .ex-cont p,
.is-white .ex-cont h3 {
    color: #0D131B;
}

.is-white .ex-cont .privacy-img p,
.is-white .ex-cont .privacy-img h3 {
    color: #fff;
}

.ex-cont .ex-list-cont a:hover p,
.ex-cont .ex-list-cont a:hover h3 {
    color: #777171;
}

.ex-cont .ex-list-cont .privacy-img a:hover p,
.ex-cont .ex-list-cont .privacy-img a:hover h3 {
    color: #fff;
}

.blog-cont {
    padding: 140px 0;
}

.footer-contact {
    background-image: url(../img/common/footer_bg_img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 90px 0;
}

.footer-contact-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px 40px;
}

.footer-contact-cont a {
    background: rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    padding: 65px 0;
    text-align: center;
    display: block;
}

.footer-contact-cont a:hover {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.footer-contact-cont a p {
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    padding-bottom: 35px;
    color: #fff;
    transition: all .7s;
}

.footer-contact-cont a span {
    font-size: 14px;
    text-align: center;
    color: #fff;
}

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

footer {
    background: #fff;
    padding: 50px 0;
}

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

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

.footer-flex-top-logo {
    width: 27.5px;
    margin-bottom: 40px;
}

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

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

.footer-flex-top-sns ul li {
    width: 17.5px;
}

.footer-flex-top-sns ul li a:hover {
    opacity: .6;
}

.footer-flex-bottom p {
    font-size: 12px;
    letter-spacing: 0;
}

.footer-flex-top-right {
    width: calc(100% - 335px);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.footer-flex-top-right-left ul li a {
    font-size: 14px;
    margin-bottom: 25px;
    display: block;
}

.footer-flex-top-right-left ul li a:hover {
    opacity: 1;
    color: #707074;
}

.footer-flex-top-right-left ul li.in-ul {
    display: flex;
}

.footer-flex-top-right-left ul li.in-ul a {
    margin-right: 20px;
}

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

.footer-flex-top-right-left ul li.in-ul ul {
    display: flex;
    align-items: center;
}

.footer-flex-top-right-left ul li.in-ul ul a {
    font-size: 12px;
    margin-right: 15px;
    margin-bottom: 20px;
}

.footer-flex-top-right-right ul li a {
    font-size: 12px;
    letter-spacing: 0;
    margin-bottom: 15px;
    display: block;
}

.footer-flex-top-right-right ul li a:hover {
    opacity: 1;
    color: #707074;
}

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

.fixed-btn {
    position: fixed;
    right: 0px;
    bottom: 15px;
    z-index: 3;
    transition: all .6s;
    display: flex;
}

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

.fixed-btn li {
    margin-bottom: 10px;
}

.fixed-btn .nav-btn {
    position: relative;
}

.fixed-btn .nav-btn .batsu {
    display: inline-block;
    position: absolute;
    top: 8px;
    right: 8px;
    width: 8px;
    height: 8px;
    cursor: pointer;
}

.fixed-btn .nav-btn .batsu::before,
.fixed-btn .nav-btn .batsu::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 8px;
    background: #fff;
}

.fixed-btn .nav-btn .batsu::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.fixed-btn .nav-btn .batsu::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.fixed-btn li:nth-child(1) .nav-btn a {
    background: #2B79FFCC;
}

.fixed-btn .nav-btn a {
    display: block;
    border-radius: 12px 0 0 12px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: #020202;
    padding: 20px;
    min-height: 195px;
    text-align: center;
    position: relative;
}

.fixed-btn li:nth-child(1) .nav-btn a {
    padding-top: 60px;
}

.fixed-btn li:nth-child(1) .nav-btn.search-re-btn a {
    padding-top: 52.5px;
}

.fixed-btn li:nth-child(3) .nav-btn a {
    padding-bottom: 60px;
}

.fixed-btn .nav-btn:hover a {
    background: rgba(2, 2, 2, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.fixed-btn li:nth-child(1) .nav-btn:hover a {
    background: #2B79FF;
}

.fixed-btn .nav-btn a p {
    font-size: 12px;
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    writing-mode: vertical-rl;
    letter-spacing: .3em;
}

/* .fixed-btn li:nth-child(1) a p::before {
    content: '';
    width: 6px;
    height: 6px;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    position: absolute;
    top: 70%;
    transform: translateY(-50%)rotate(45deg);
    -webkit-transform: translateY(-50%)rotate(45deg);
    -ms-transform: translateY(-50%)rotate(45deg);
    right: 25px;
} */
.fixed-btn .nav-btn a img {
    position: absolute;
    width: 70px;
    max-width: 70px;
    height: auto;
    display: block;
    right: -5px;
    bottom: -10px;
}

.under-wrap {
    padding-top: 70px;
    margin-top: 0;
}

.under-wrap.under-page {
    padding-top: 0;
}

.under-wrap.under-page#single {
    background: #fff;
}

.under-fv {
    padding: 70px 0px 10px;
    position: relative;
    background: #fff;
}

.under-fv.bl-bg {
    background: #000;
}

.under-archive-wrap#post .under-fv {
    padding-bottom: 70px;
}

.under-fv.bb {
    border-bottom: 2px solid rgba(62, 62, 64, .2);
}

.under-fv-title {
    margin-bottom: 50px;
}

.under-fv-title h1 {
    font-size: 48px;
    font-weight: 700;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumbs .bc-sep {
    display: inline-flex;
    align-items: center;
    margin: 0 10px;
    line-height: 0;
    color: #3E3E40;
}

.breadcrumbs span,
.breadcrumbs a {
    font-size: 14px;
}

.breadcrumbs span {
    color: #707074;
}

.breadcrumbs a span {
    color: rgba(13, 19, 27, 1);
}

.under-wrap .under-nav ul li a {
    background: #F5F5F5;
}

.under-wrap .under-nav ul li a p {
    color: #1F1F1F;
}

.under-wrap .under-nav ul li a:hover {
    background: #1F1F1F;
}

.under-wrap .under-nav ul li a:hover p {
    color: #F5F5F5;
}

.under-wrap section {
    padding: 120px 0;
}

.under-cmn-title {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
}

.under-cmn-title h2 {
    font-size: 24px;
    font-weight: 700;
}

.under-cmn-txt {
    text-align: center;
    margin-bottom: 70px;
}

.under-cmn-txt p {
    font-size: 14px;
    line-height: 2.4;
}

thanks-cont .under-cmn-txt p {
    line-height: 1.7;
}

.is-white .under-cmn-txt p {
    color: #1F1F1F;
}

.under-search-wrap .swiper-arrow {
    margin: 50px 0 60px auto;
}

.under-search-wrap .property-list-img-txt ul li {
    color: #1F1F1F;
}

.site-search {
    display: flex;
    gap: 25px;
    align-items: center;
    max-width: 780px;
    margin: 0 auto;
}

.site-search__field {
    position: relative;
    flex: 1;
    display: block;
}

.site-search__icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    pointer-events: none;
}

.site-search__input {
    width: 100%;
    height: 48px;
    padding: 0 16px 0 45px;
    border: 1px solid rgba(112, 112, 116, 1);
    border-radius: 15px;
    background: initial;
    font-size: 16px;
    color: #fff;
}

.free-word-cont {
    background: #000;
}

.free-word-cont .cmn-title h2 {
    color: #fff;
}

.under-archive-wrap section {
    padding: 60px 0 120px;
}

.pagination {
    margin-top: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination .page-numbers {
    background: #F5F5F5;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 16px;
    text-align: center;
    margin-inline: 5px;
    color: #020202;
    position: relative;
    display: block;
}

.pagination .page-numbers:hover {
    background: #707074;
    opacity: 1;
    color: #fff;
}

.pagination .page-numbers.current {
    background: #707074;
    color: #fff;
}

.pagination .page-numbers.dots {
    pointer-events: none;
}

.pagination .page-numbers.next,
.pagination .page-numbers.prev {
    background: #707074;
}

.pagination .page-numbers.next {
    margin-left: 10px;
}

.pagination .page-numbers.prev {
    margin-right: 10px;
}

.pagination .page-numbers.next:hover,
.pagination .page-numbers.prev:hover {
    background: rgba(2, 2, 2, 0.8);
}

.pagination .page-numbers.next::before {
    content: '';
    width: 7px;
    height: 7px;
    border: 0;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    top: 50%;
    left: 47.5%;
    transform: translate(-50%, -50%)rotate(45deg);
    -webkit-transform: translate(-50%, -50%)rotate(45deg);
    -ms-transform: translate(-50%, -50%)rotate(45deg);
    position: absolute;
}

.pagination .page-numbers.prev::before {
    content: '';
    width: 7px;
    height: 7px;
    border: 0;
    border-top: solid 1px #fff;
    border-right: solid 1px #fff;
    top: 50%;
    left: 53.5%;
    transform: translate(-50%, -50%)rotate(-135deg);
    -webkit-transform: translate(-50%, -50%)rotate(-135deg);
    -ms-transform: translate(-50%, -50%)rotate(-135deg);
    position: absolute;
}

.contact-box {
    margin: 120px auto 60px;
    background: rgba(13, 19, 27, 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
}

#about .under-fv {
    background-image: url(../img/about/fv_img.webp);
}

.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;
}

#purchase .under-fv {
    background-image: url(../img/purchase/fv_img.webp);
}

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

#purchase .support-cont-flex-txt p {
    font-size: 16px;
}

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

#purchase .support {
    background: #fff;
}

#purchase .reason {
    background: rgba(248, 248, 248, 1);
}

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

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

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

.flow {
    padding: 120px 0;
}

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

.flow-list ol {
    border-left: 1px solid transparent;
    border-image: linear-gradient(180deg, #EDF0F5 0%, #3C83FF 101.01%) 1;
}

.flow-list ol li {
    margin-bottom: 90px;
    display: flex;
    padding-left: 30px;
    position: relative;
    justify-content: space-between;
    align-items: baseline;
}

.flow-list ol li::before {
    content: "●";
    position: absolute;
    color: rgba(237, 240, 245, 1);
    font-size: 10px;
    left: -5px;
    top: 4.5px;
}

.flow-list ol li:nth-child(2):before {
    color: rgba(194, 213, 247, 1);
}

.flow-list ol li:nth-child(3):before {
    color: rgba(151, 187, 250, 1);
}

.flow-list ol li:nth-child(4):before {
    color: rgba(108, 160, 252, 1);
}

.flow-list ol li:nth-child(5):before {
    color: rgba(60, 131, 255, 1);
}

.flow-num {
    border: 1px solid rgba(43, 121, 255, 1);
    border-radius: 2px;
    width: 60px;
    text-align: center;
    padding-block: 2.5px;
    line-height: 1;
}

.flow-num p {
    font-weight: 400;
    font-size: 12px;
    color: #2B79FF;
}

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

.flow-txt {
    width: calc(100% - 105px);
}

.flow-txt h3 {
    font-size: 16px;
    padding-bottom: 10px;
}

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

#purchase .contact-box {
    margin: 0 auto 120px;
}

.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;
}

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

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

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

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

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

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

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

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

.news-single-cont-txt h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
    padding-left: 15px;
    border-left: 5px solid rgba(43, 121, 255, 1);
}

.news-single-cont-txt h3 {
    font-size: 24px;
    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(108, 160, 252, 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 ul li::marker {
    color: rgba(108, 160, 252, 1);
}

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

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

.news-single-cont-txt ol li::marker {
    color: rgba(108, 160, 252, 1);
}

.post-nav {
    max-width: 860px;
    margin: 0 auto;
}

.post-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.post-nav__link {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 0;
    color: inherit;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.4;
}

.post-nav__link--prev {
    justify-content: flex-start;
}

.post-nav__link--next {
    justify-content: flex-end;
    margin-left: auto;
}

.post-nav__arrow {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    background: #000;
    border-radius: 50%;
}

.post-nav__text {
    display: block;
    max-width: min(520px, 42vw);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.post-nav__dummy {
    width: 1px;
}

.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;
}

.under-archive-wrap section.property-archive-cont {
    padding: 60px 0 120px;
    border-top: 1px solid rgba(215, 215, 215, 1);
}

.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-cont-head-favorite {
    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;
}

.property-btns {
    display: flex;
    margin-top: 35px;
}

.property-btns .property-single-cont-head-favorite {
    border: 1px solid rgba(2, 2, 2, .15);
    padding: 5px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E1E1E1;
    border-radius: 4px;
    margin-right: 20px;
}

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

.property-btns .property-single-cont-head-favorite p {
    font-size: 14px;
    color: #fff;
}

.property-single-btn a {
    border: 1px solid rgba(43, 121, 255, .15);
    padding: 5px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(43, 121, 255, 1);
    border-radius: 4px;
    margin-right: 20px;
}

.property-single-btn a img {
    width: 24px;
    margin-right: 5px;
}

.property-single-btn a p {
    font-size: 14px;
    color: #fff;
}

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

.property-thumb-swiper {
    width: calc(100% - 400px);
    position: relative;
}

.property-thumb-swiper-inner {
    width: calc(100% - 100px);
    margin: 0 auto;
}

.property-thumb-swiper .swiperMain {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.property-thumb-swiper .swiperMain .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.property-thumb-swiper .swiperMain .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 15px;
    aspect-ratio: 654 / 400;
}

.property-thumb-swiper .swiperThumbnail {
    margin-top: 30px;
    overflow: hidden;
}

.property-thumb-swiper .swiperThumbnail .swiper-slide {
    opacity: 0.5;
    cursor: pointer;
    border-radius: 6px;
    overflow: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.property-thumb-swiper .swiperThumbnail .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 15px;
    aspect-ratio: 654 / 400;
}

/* active thumb */
.property-thumb-swiper .swiperThumbnail .swiper-slide-thumb-active {
    opacity: 1;
    transform: translateY(-1px);
}

.property-thumb-swiper .swiper-thumb-button-prev {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: initial;
    border: 1px solid rgba(0, 0, 0, 1);
    top: 50%;
    left: -5px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    cursor: pointer;
    background: #fff;
    z-index: 10;
}

.property-thumb-swiper .swiper-thumb-button-next {
    position: absolute;
    width: 30px;
    height: 30px;
    border-radius: 999px;
    background: initial;
    border: 1px solid rgba(0, 0, 0, 1);
    top: 50%;
    right: -5px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    cursor: pointer;
    background: #fff;
    z-index: 10;
}

.property-thumb-swiper .swiper-thumb-button-next::after,
.property-thumb-swiper .swiper-thumb-button-prev::after {
    font-size: 10px;
    color: rgba(0, 0, 0, 1);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    position: absolute;
}

.property-cont-txt {
    width: 340px;
}

.property-cat {
    margin-bottom: 25px;
}

.property-cat ul {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 5px;
}

.property-cat ul li {
    font-size: 12px;
    padding: 5px 10px;
    border: 1px solid rgba(0, 0, 0, 1);
    line-height: 1;
}

.property-price {
    margin-bottom: 25px;
    display: flex;
}

.property-price-title {
    width: 67.5px;
    text-align: center;
    margin-right: 15px;
}

.property-cont-txt .property-price-title p {
    background: rgba(215, 215, 215, 1);
    padding: 6px 7.5px;
    font-size: 12px;
    line-height: 1;
    position: relative;
    top: 14.5px;
}

.property-cont-txt .property-price-num p {
    color: rgba(43, 121, 255, 1);
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    margin-bottom: 5px;
}

.property-cont-txt .property-price-num p span {
    font-size: 20px;
}

.property-cont-txt .property-price-num p.sml {
    font-size: 12px;
    color: rgba(0, 0, 0, 1);
    font-weight: 400;
}

.property-cont-txt .property-price-num p.sml span {
    font-size: 18px;
    padding-inline: 2.5px;
}

.property-head-txt {
    margin-bottom: 50px;
}

.property-head-txt p {
    font-weight: 500;
    font-size: 14px;
    line-height: 1.7;
}

.property-cont-txt .property-single-btn a {
    margin-right: 0;
}

.property-single-cont-link {
    padding: 100px 0;
}

.property-single-cont-link ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1075px;
    margin: 0 auto;
    gap: 25px;
}

.property-single-cont-link ul li {
    width: calc(25% - 25px);
}

.property-single-cont-link ul li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 25px;
    background: rgba(245, 245, 245, 1);
    border-radius: 16px;
    transition: all .6s;
}

.property-single-cont-link ul li a p {
    font-size: 14px;
    font-weight: 500;
}

.property-single-cont-link ul li a svg {
    width: 10px;
}

.property-single-cont-link ul li a:hover {
    background: #2B79FF;
}

.property-single-cont-link ul li a:hover p {
    color: #fff;
}

.property-single-cont-link ul li a:hover svg path {
    stroke: #fff;
}

.access-map-wrap {
    margin-bottom: 100px;
}

.access-map-cont {
    margin-bottom: 70px;
}

.access-map-wrap iframe {
    border-radius: 15px;
    width: 100%;
    height: 400px;
}

.access-map-txt ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.access-map-txt ul li {
    display: flex;
    align-items: center;
}

.access-map-txt ul li:nth-child(1) {
    margin-right: 35px;
}

.access-map-txt-title {
    margin-right: 7.5px;
}

.access-map-txt-title p {
    padding: 5px 10px;
    border-radius: 2px;
    background: rgba(217, 217, 217, 1);
    font-size: 10px;
    line-height: 1;
    color: #020202;
}

.access-map-txt-txt p {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

.floor-plan-cont {
    margin-bottom: 100px;
}

#single .swiper-slide img {
    border-radius: 15px;
}

.access-map-wrap,
.movie-cont,
.floor-plan-cont {
    max-width: 940px;
    margin-inline: auto;
}

.movie-cont video {
    width: 100%;
    border-radius: 15px;
}

.property-single-cont {
    background: #000;
}

.property-single-cont .inner {
    max-width: 860px;
    margin: 0 auto;
}

.property-single-cont .under-cmn-title {
    margin-bottom: 60px;
}

.property-single-cont .under-cmn-title h2 {
    text-align: center;
    color: #fff;
}

.property-single-cont .cmn-title h2 {
    color: #fff;
}

.property-tag-list {
    margin-bottom: 100px;
}

.property-tag-list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 15px;
}

.property-tag-list ul li {
    background: #fff;
    border: 1px solid rgba(43, 121, 255, 1);
    color: rgba(43, 121, 255, 1);
    font-size: 12px;
    font-weight: 500;
    padding: 5px 10px;
    line-height: 1;
}

.property-single-cont-top-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px 60px;
}

.property-single-cont-top-list ul li {
    padding-block: 30px;
    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: 60%;
}

.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;
}

.surrounding-cont {
    max-width: 1280px;
    margin: 200px auto 0;
    width: calc(100% - 40px);
}

.surrounding-cont .swiper-slide img {
    margin-bottom: 15px;
}

.surrounding-cont .swiper-slide h3 {
    font-size: 14px;
}

.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-swiper .swiper {
    opacity: 0;
}

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

.psp {
    display: none;
}

.area-link-map {
    display: flex;
    justify-content: space-between;
}

.area-link-map-left {
    width: 55%;
}

.area-link-map-right {
    width: 44%;
    position: relative;
    top: -5px;
}

.area-link-map-right-cont {
    margin-bottom: 40px;
}

.area-link-map-right-cont-title {
    margin-bottom: 25px;
}

.area-link-map-right-cont-title h3 {
    font-size: 20px;
    color: #fff;
}

.is-white .area-link-map-right-cont-title h3 {
    color: #020202;
}

.area-link-map-right-cont-list {
    margin-bottom: 25px;
}

.area-link-map-right-cont-list-title {
    margin-bottom: 20px;
}

.area-link-map-right-cont-list-title h4 {
    font-size: 16px;
    color: #fff;
    padding-bottom: 4.5px;
}

.area-link-map-right-cont-list-title h5 {
    font-size: 14px;
    color: #fff;
}

.area-link-map-right-cont-list-title h5 a {
    font-size: 14px;
    color: #fff;
}

.is-white .area-link-map-right-cont-list-title h4,
.is-white .area-link-map-right-cont-list-title h5,
.is-white .area-link-map-right-cont-list-title h5 a {
    color: #020202;
}

.area-link-map-right-cont-list ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.area-link-map-right-cont-list ul li a {
    --_bg: rgba(255, 255, 255, .2);
    --_bg-hover: rgba(255, 255, 255, .5);
    --_border-color: rgba(255, 255, 255, .35);
    --_gradient-from: #fff;
    --_gradient-to: #fff;
    --_border-width: 1.5px;
    --_radius: 45px;
    --_duration: .35s;
    --_easing: cubic-bezier(.4, 0, .2, 1);
    --_start-angle: -75deg;
    --ring-angle: 0deg;
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12.5px 0px;
    border-radius: var(--_radius);
    background: var(--_bg);
    border: 1px solid rgba(255, 255, 255, .4);
    transition: background .6s ease, transform .2s ease;
    width: 100%;
    color: #fff;
    font-size: 14px;
}

.is-white .area-link-map-right-cont-list ul li a {
    --_bg: rgba(112, 112, 116, 0.70);
    --_bg-hover: rgba(112, 112, 116, 0.85);
    border: 1px solid #FFFFFF66;
}

.area-link-map-right-cont-list ul li a::before {
    content: "";
    position: absolute;
    inset: calc(-1 * var(--_border-width));
    border-radius: calc(var(--_radius) + var(--_border-width));
    pointer-events: none;
    /* conic-gradient で「描画される線」を作り、maskで“枠だけ”にする */
    background:
        conic-gradient(from var(--_start-angle),
            var(--_gradient-from) 0deg,
            var(--_gradient-to) var(--ring-angle),
            transparent var(--ring-angle) 360deg);
    /* 枠だけ表示（中身を抜く） */
    -webkit-mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#000 0 0) content-box,
        linear-gradient(#000 0 0);
    mask-composite: exclude;
    padding: var(--_border-width);
    /* ここが“線が回る”本体 */
    transition: --ring-angle var(--_duration) var(--_easing);
}

@media (any-hover:hover) {
    .area-link-map-right-cont-list ul li a:hover {
        background: var(--_bg-hover);
    }

    .area-link-map-right-cont-list ul li aa:hover::before {
        --ring-angle: 360deg;
    }

    .is-white .area-link-map-right-cont-list ul li a:hover {
        --_gradient-from: rgba(0, 0, 0, 0.60);
        --_gradient-to: rgba(0, 0, 0, 0.60);
    }
}

/* 中身が線に埋もれないように */
.area-link-map-right-cont-list ul li a {
    position: relative;
    z-index: 1;
}

.area-link-map-right-cont-list ul li a:hover {
    opacity: 1;
}

.area-link-map-right-cont#yamanashi {
    bottom: -10px;
    position: relative;
    margin: 0;
}

.prop-filter__group {
    margin-bottom: 45px;
}

.prop-filter__title {
    margin-bottom: 30px;
}

h3.prop-filter__title {
    font-size: 20px;
    font-weight: 700;
}

.prop-filter__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 40px;
}

/* ラベル全体 */
.pill {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #f5f5f5;
    padding: 30px 25px;
    border-radius: 25px;
    cursor: pointer;
    transition: all .3s ease;
}

/* チェックボックス本体は隠す */
.pill__check {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* □ボックス */
.pill__box {
    width: 24px;
    height: 24px;
    border: 2px solid #ccc;
    border-radius: 2px;
    background: #fff;
    display: inline-block;
    position: relative;
    transition: all .2s ease;
}

.pill__box::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 2px;
    width: 5px;
    height: 10px;
    border-right: 2px solid rgba(43, 121, 255, 1);
    border-bottom: 2px solid rgba(43, 121, 255, 1);
    transform: rotate(45deg);
    opacity: 0;
}

/* ✓表示 */
.pill__check:checked~.pill__box::after {
    opacity: 1;
}

/* テキスト */
.pill__text {
    font-size: 14px;
    font-weight: 500;
}

.pill:has(.pill__check:checked),
.pill:hover {
    background: #3B7CF4;
    color: #fff;
}

.pill:has(.pill__check:checked) .pill__text,
.pill:hover .pill__text {
    color: #fff;
}

.property-list-txt-tag {
    margin-bottom: 10px;
}

.property-list-txt-tag p,
.property-list-txt-tag h3 {
    display: inline-block;
    font-size: 12px;
    background: rgba(245, 245, 245, 1);
    border-radius: 2px;
    padding: 5px;
}

.under-archive-wrap {
    background: #fff;
}

.under-member-cont {
    border-top: 1px solid rgba(215, 215, 215, 1);
    padding: 120px 0;
}

.under-archive-wrap section.news-archive-cont {
    background: #000;
    padding: 120px 0;
}

.news-archive-cont .blog-list-cont {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.news-archive-cont.ex-archive-cont .ex-list-cont {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.ex-archive-cont .property-list-txt-top h3 {
    color: #fff;
    font-size: 14px;
}

.under-page-wrap {
    border-top: 1px solid rgba(62, 62, 64, 1);
}

.under-page-wrap section {
    padding: 160px 0;
}

#about .concept {
    padding: 500px 0;
}

#about .concept-img-inner {
    height: 120%;
    width: 105%;
    top: -20%;
}

#about .concept-img01 {
    width: 180px;
    height: 255px;
    top: 8.5%;
    left: 20%;
}

#about .concept-img02 {
    width: 290px;
    height: 205px;
    top: 17.5%;
    right: 5%;
    left: initial;
}

#about .concept-img03 {
    width: 400px;
    height: 280px;
    bottom: 25%;
    left: -2.5%;
}

#about .concept-img04 {
    width: 290px;
    height: 410px;
    bottom: 11.5%;
    right: 15%;
}

#about .concept-img01 .concept-img-inner {
    background-image: url(../img/about/img01.webp);
}

#about .concept-img02 .concept-img-inner {
    background-image: url(../img/about/img02.webp);
}

#about .concept-img03 .concept-img-inner {
    background-image: url(../img/about/img03.webp);
    top: -35%;
}

#about .concept-img04 .concept-img-inner {
    background-image: url(../img/about/img04.webp);
}

#about .concept-txt {
    text-align: center;
    margin: 0 auto;
}

#about .concept-txt p {
    padding: 0;
    margin: 0;
    max-width: 100%;
    line-height: 2.2;
    color: #fff;
}

#about .concept-txt h2 {
    text-align: center;
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 100px;
}

.is-white #about .concept-txt p,
.is-white #about .concept-txt h2 {
    color: #020202 !important;
}

.message-cont {
    padding: 160px 0;
}

.message-cont-flex {
    display: flex;
    justify-content: space-between;
}

.message-cont-flex-left {
    width: 40%;
}

.message-cont-flex-right {
    width: 50%;
}

.message-cont-flex-right-txt h2 {
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 70px;
}

.message-cont-flex-right-txt p {
    font-size: 14px;
    padding-bottom: 50px;
    line-height: 2.4;
}

.message-cont-flex-right-txt p.name {
    padding-bottom: 0;
    line-height: 2.4;
}

.message-cont-flex-right-txt p.name span {
    font-size: 24px;
    display: block;
}

#about .member {
    padding: 160px 0;
}

#about .member-list-cont {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px 40px;
}

.company-table {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
    border-collapse: collapse;
}

.company-table th,
.company-table td {
    padding: 30px 0;
    vertical-align: middle;
    border-bottom: 1px solid rgba(215, 215, 215, 1);
    font-size: 14px;
}

.company-table tr:nth-child(1) th,
.company-table tr:nth-child(1) td {
    border-top: 1px solid rgba(215, 215, 215, 1);
}

.company-table th {
    width: 40%;
    color: #fff;
}

.company-table td {
    width: 60%;
    color: #fff;
}

.is-white .company-table th,
.is-white .company-table td {
    color: rgba(31, 31, 31, 1);
}

.under-fv.bl-bg,
.under-fv.pb {
    padding-block: 70px;
}

.bl-bg .under-fv-title h1 {
    color: #fff;
}

.bl-bg .breadcrumbs span,
.bl-bg .breadcrumbs a {
    color: #fff;
}

.company .under-cmn-title {
    margin-bottom: 70px;
}

.company-table td .office {
    margin-bottom: 45px;
}

.company-table td .office:last-child {
    margin-bottom: 0;
}

.detached-house-flex-cont {
    background: #000;
}

.detached-house-flex {
    display: flex;
    justify-content: space-between;
}

.detached-house-flex-left {
    width: 47.5%;
}

.detached-house-flex-left h2 {
    font-size: 24px;
    font-weight: 500;
    padding-bottom: 60px;
}

.detached-house-flex-left p {
    font-size: 14px;
    line-height: 2.2;
}

/* .is-white .detached-house-flex-left h2,
.is-white .detached-house-flex-left p {
    color: #020202;
} */
.detached-house-flex-right {
    width: 47.5%;
}

.under-txt-cont {
    background: #fff;
    padding-block: 70px !important;
}

.under-txt-cont h2,
.under-txt-cont p {
    color: #020202 !important;
}

.under-txt-cont .under-cmn-title {
    margin-bottom: 15px;
}

.under-txt-cont .under-cmn-txt {
    margin-bottom: 0;
}

.reason-list ol li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 70px;
}

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

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

.reason-list-txt {
    width: 45%;
}

.reason-list-txt-title {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.reason-list-txt-title span {
    width: 32px;
    height: 32px;
    background: #fff;
    text-align: center;
    border-radius: 50%;
    line-height: 35px;
    font-size: 16px;
    color: #020202;
    display: block;
    margin-right: 12.5px;
    font-weight: 700;
}

.reason-list-txt-title h3 {
    font-size: 24px;
    font-weight: 700;
    width: calc(100% - 45px);
}

.reason-list-txt-txt h4 {
    font-size: 16px;
    font-weight: 500;
    padding-bottom: 10px;
}

.reason-list-txt-txt p {
    font-size: 14px;
    line-height: 2.2;
}

.is-white .reason-list-txt-title h3,
.is-white .reason-list-txt-txt h4,
.is-white .reason-list-txt-txt p {
    color: #020202;
}

.reason-list-img {
    width: 45%;
}

#guarantee .detached-house-flex-cont {
    align-items: center;
}

.care-cont ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0px 40px;
    max-width: 1000px;
    margin: 0 auto 100px;
}

.care-cont ul li {
    text-align: center;
}

.care-cont ul li img {
    margin-bottom: 20px;
}

.care-cont ul li p {
    font-size: 12px;
    text-align: left;
    position: relative;
}

.care-cont ul li p::before {
    content: '';
    width: 6px;
    height: 6px;
    border: 0;
    border-bottom: solid 2px #000;
    border-right: solid 2px #000;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%)rotate(45deg);
    -webkit-transform: translateY(-50%)rotate(45deg);
    -ms-transform: translateY(-50%)rotate(45deg);
}

.guarantee-lists .reason-list ol li {
    background: #F9F9FB;
    border-radius: 25px;
    padding: 0 30px;
}

.guarantee-lists .reason-list-txt-title {
    display: block;
}

.guarantee-lists .reason-list-txt-title p {
    font-size: 20px;
}

.guarantee-lists .reason-list-txt {
    padding-block: 30px;
}

.guarantee-lists .reason-list-txt-txt p {
    padding-bottom: 30px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: .05rem;
}

.guarantee-lists .reason-list ol li ul li {
    display: flex;
    justify-content: initial;
    align-items: flex-start;
    margin-bottom: 12.5px;
    padding: 0;
    border-radius: initial;
    background: initial;
    flex-direction: initial;
}

.guarantee-lists ul li:last-child {
    margin-bottom: 0;
}

.guarantee-lists ul li img {
    width: 27.5px;
    margin-right: 10px;
}

.guarantee-lists ul li p {
    font-size: 16px;
}

.guarantee-lists ul li {
    font-size: 16px;
}

.point-cont {
    background: #000;
}

.point-cont-list ul {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0px 45px;
}

.point-cont-list ul li {
    text-align: center;
}

.point-cont-list ul li h3 {
    font-size: 18px;
    font-weight: 500;
    padding-bottom: 15px;
}

.point-cont-list ul li h3 span {
    font-size: 14px;
}

.point-cont-list ul li p {
    font-size: 14px;
}

/* .is-white .point-cont-list ul li h3,
.is-white .point-cont-list ul li p {
    color: #020202;
} */
.point-cont .under-cmn-title h2 {
    color: #fff;
}

.privacy-policy {
    max-width: 940px;
    margin: 0 auto;
}

.privacy-policy p {
    margin: 0 0 20px;
}

.privacy-policy h2 {
    margin: 40px 0 20px;
    font-size: 20px;
    font-weight: 500;
}

.privacy-policy h3 {
    margin: 30px 0 10px;
    font-size: 16px;
}

.privacy-policy ol,
.privacy-policy ul {
    margin: 20px 0;
    padding-left: 1.2em;
}

.privacy-policy li {
    margin: 5px 0;
    list-style: disc;
}

.privacy-policy a {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.privacy-policy> :last-child {
    margin-bottom: 0;
}

.contact-cont {
    margin: 0 auto;
}

.contact-cont .form-conts {
    margin: 0 auto;
    max-width: 860px;
}

.tel-box {
    background: rgba(245, 245, 245, 1);
    border-radius: 15px;
    padding: 30px 0;
    margin-bottom: 70px;
}

.tel-box .under-cmn-title {
    margin-bottom: 10px;
}

.tel-box-link a {
    display: flex;
    justify-content: center;
}

.tel-box-link a img {
    width: 30px;
    margin-right: 20px;
}

.tel-box-link a p {
    text-align: center;
    color: rgba(43, 121, 255, 1);
    font-size: 40px;
    font-weight: 700;
}

.tel-box-link a p span {
    font-size: 12px;
    font-weight: 400;
    display: block;
    color: rgba(0, 0, 0, 1);
    line-height: 1;
}

.form-flow {
    margin-bottom: 70px;
}

.form-flow ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0px 10px;
}

.form-flow ul li {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(215, 215, 215, 1);
    padding: 12.5px 5px;
}

.form-flow ul li.active {
    background: rgba(43, 121, 255, 1);
}

.form-flow ul li span {
    font-size: 10px;
    margin-right: 5px;
    color: rgba(31, 31, 31, 1);
}

.form-flow ul li p {
    font-size: 16px;
    color: rgba(31, 31, 31, 1);
}

.form-flow ul li.active span,
.form-flow ul li.active p {
    color: #fff;
}

.form-block {
    margin-bottom: 30px;
}

.wpcf7 label {
    display: block;
    color: rgba(31, 31, 31, 1);
    font-size: 14px;
    font-weight: 400;
}

.required {
    background: #2f74ff;
    color: #fff;
    font-size: 11px;
    padding: 2px 8px;
    margin-left: 10px;
    border-radius: 2px;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    background: transparent;
    border: 1px solid rgba(215, 215, 215, 1);
    padding: 10px 15px;
    color: rgba(31, 31, 31, 1);
    font-size: 16px;
    outline: none;
    margin-top: 10px;
    line-height: 1.4;
}

.wpcf7 select,
.under-wrap .under-member-cont #wpmem_reg select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: url("../img/common/select_arrow.webp") no-repeat right 8px center !important;
    background-size: 8px !important;
}

.wpcf7 input[type="text"]#property-zipcode,
.wpcf7 input[type="text"]#zip {
    max-width: 110px;
}

.wpcf7 input[type="text"]#pref,
.wpcf7 input[type="text"]#property-pref {
    max-width: 130px;
    margin-top: 15px;
}

.wpcf7 textarea {
    min-height: 140px;
}

.wpcf7 ::placeholder {
    color: rgba(31, 31, 31, .3);
}

.wpcf7-list-item:nth-child(1) {
    margin-left: 0;
}

.radio-flex {
    margin-top: 10px;
}

.form-flex-wrap {
    display: flex;
    align-items: center;
    margin-block: 10px 5px;
}

.form-flex-wrap .form-flex {
    margin-right: 10px;
}

.form-flex-wrap input[type="text"]#pref,
.form-flex-wrap input[type="text"]#property-pref,
.form-flex-wrap .form-flex input {
    margin-top: 0;
}

.form-flex p {
    display: flex;
    align-items: center;
}

.form-flex p span {
    position: relative;
}

.privacy-box {
    background: rgba(215, 215, 215, 0.2);
    padding: 15px;
    max-height: 140px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.5;
    margin-block: 10px 40px;
}

.wpcf7 .wpcf7-submit:disabled,
.wpcf7 .wpcf7-submit.is-disabled {
    background: rgba(215, 215, 215, 1);
    cursor: not-allowed;
}

.consent {
    text-align: center;
}

.consent input {
    width: 20px;
    height: 20px;
    accent-color: #2f74ff;
    margin-right: 7.5px;
    position: relative;
    top: 5px;
}

.form-submit input[type="submit"],
.form-submit input[type="button"] {
    background: #2f74ff;
    border: none;
    padding: 10px 0px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
    width: 100%;
    border-radius: 50px;
    margin: 0 auto;
    display: block;
    padding-right: 15px;
}

.form-submit input[type="button"] {
    background: rgba(215, 215, 215, 1);
    color: rgba(31, 31, 31, 1);
    padding-inline: 15px 0;
}

.form-submit {
    max-width: 190px;
    width: 100%;
    margin: 60px auto 0;
    position: relative;
}

.form-submit svg {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    width: 10px;
    transition: all .7s;
}

.form-submit.back-btn svg {
    position: absolute;
    top: 50%;
    right: initial;
    left: 20px;
    transform: translateY(-50%)rotate(180deg);
    -webkit-transform: translateY(-50%)rotate(180deg);
    -ms-transform: translateY(-50%)rotate(180deg);
    width: 10px;
    transition: all .7s;
}

.form-submit:hover {
    opacity: .8;
}

.form-submit:hover svg {
    right: 10px;
}

.form-submit.back-btn:hover svg {
    right: initial;
    left: 15px;
}

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

.confirm-table {
    max-width: 550px;
    margin: 0 auto;
}

.confirm-table table th,
.confirm-table table td {
    padding-bottom: 25px;
}

.btn-flex {
    max-width: 415px;
    width: 100%;
    margin: 70px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn-flex .form-submit {
    margin-top: 0;
}

.thanks-cont {
    background: #000;
}

.thanks-cont .under-cmn-txt p,
.thanks-cont .cmn-title h2 {
    color: #fff !important;
}

.slider-container {
    overflow: hidden;
    margin-top: 80px;
}

.slider-track {
    display: flex;
    width: max-content;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.slide {
    width: 290px;
    margin-right: 40px;
    flex-shrink: 0;
}

.solution-list ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.solution-list ul li {
    display: flex;
    padding: 15px 30px;
    background: rgba(245, 245, 245, 1);
    border-radius: 15px;
    display: flex;
    align-items: flex-end;
}

.solution-list ul li img {
    width: 45%;
}

.solution-list ul li p {
    width: 52.5%;
    font-size: 14px;
}

.map-cont {
    max-width: 940px;
    margin: 0 auto;
}

.map-cont iframe {
    border-radius: 15px;
    margin-bottom: 25px;
}

.access-cont .under-cmn-title h2 {
    color: #fff;
}

.map-cont p {
    font-size: 14px;
    color: #fff;
}

.is-white .map-cont p {
    color: #fff;
}

.access-cont {
    background: #000;
}

#wpmem_login,
#wpmem_reg {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
}

#wpmem_login,
#wpmem_msg,
#wpmem_reg,
.wpmem_msg {
    width: 100% !important;
    margin: 0 auto !important;
    max-width: 700px !important;
    padding: 0px !important;
}

.under-member-cont #wpmem_login .button_div,
.under-member-cont #wpmem_reg .button_div {
    padding: 6px 0;
    text-align: center;
}

.under-member-cont #wpmem_reg .button_div input[type="submit"].is-disabled {
    background: rgba(215, 215, 215, 1);
    cursor: not-allowed;
}

.under-member-cont #wpmem_login .button_div input[type="submit"],
.under-member-cont #wpmem_reg .button_div input[type="submit"] {
    background: #2f74ff;
    border: none;
    padding: 10px 0px;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: .3s;
    width: 100%;
    border-radius: 50px;
    margin: 5px auto 30px;
    display: block;
    display: block;
    max-width: 190px;
}

.under-member-cont #wpmem_login .link-text {
    text-align: center;
}

#wpmem_login .link-text a {
    text-decoration: underline;
}

#wpmem_reg .req-text {
    font-size: 14px;
}

.under-member-cont #wpmem_login input[type=password],
.under-member-cont #wpmem_login input[type=text],
.under-member-cont #wpmem_reg input[type=date],
.under-member-cont #wpmem_reg input[type=email],
.under-member-cont #wpmem_reg input[type=number],
.under-member-cont #wpmem_reg input[type=password],
.under-member-cont #wpmem_reg input[type=text],
.under-member-cont #wpmem_reg input[type=url],
.under-member-cont #wpmem_reg select,
.under-member-cont #wpmem_reg textarea {
    border: 1px solid rgba(215, 215, 215, 1);
    border-radius: 2px;
    color: #2b2b2b;
    padding: 10px 15px;
    background: #fff !important;
    background-color: #fff !important;
    margin-top: 5px;
}

#wpmem_login fieldset,
#wpmem_reg fieldset {
    margin: 0 !important;
}

.mypage-link-list {
    margin-bottom: 70px;
}

.mypage-link-list ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.mypage-link-list ul li a {
    display: flex;
    padding: 15px 10px 15px 20px;
    background: rgba(245, 245, 245, 1);
    border-radius: 15px;
    display: flex;
    align-items: flex-end;
    width: 100%;
}

.mypage-link-list ul li a p {
    width: 52.5%;
    font-size: 14px;
}

.mypage-link-list ul li a img {
    width: 45%;
}

.under-member-cont #wpmem_msg {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    font-size: 14px;
    color: #2B79FF;
    line-height: 1.3;
}

.ex-single-conts .news-single-cont-thumb {
    margin-bottom: 40px;
}

.ex-single-conts .news-single-cont-thumb img {
    border-radius: 15px;
}

.ex-flex {
    margin-bottom: 100px;
    display: flex;
    justify-content: space-between;
}

.ex-flex-left {
    width: 47.5%;
}

.ex-flex-left table tr th {
    width: 40%;
    padding-block: 25px;
    font-size: 14px;
    border-bottom: 1px solid rgba(215, 215, 215, 1);
}

.ex-flex-left table tr td {
    width: 60%;
    padding-block: 25px;
    font-size: 14px;
    border-bottom: 1px solid rgba(215, 215, 215, 1);
    padding-left: 10px;
}

.ex-flex-right {
    width: 47.5%;
}

.ex-flex-right p {
    font-size: 16px;
}

.img-txt-cont {
    display: flex;
    justify-content: space-between;
}

.img-txt-cont .img-cont {
    width: 47.5%;
}

.img-txt-cont .img-cont img {
    border-radius: 15px;
}

.img-txt-cont .txt-cont {
    width: 47.5%;
}

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

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

.sum-img {
    display: flex;
    justify-content: space-between;
}

.sum-img img {
    width: 47.5%;
    border-radius: 15px;
}

.ex-cont-wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 60px 0;
}

.key-anime-wrap {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.key-anime,
.key-anime-svg {
    width: min(42vw, 290px);
}

.key-svg {
    width: 100%;
    height: auto;
    display: block;
    overflow: visible;
}

.lock-group,
.key-group {
    opacity: 0;
}

.key-group {
    transform: translateX(190px);
    /* 最初だけ右に逃がす */
}

body.key-anime-playing {
    overflow: hidden;
}

#wpmem_login legend,
#wpmem_reg legend {
    display: none;
}

@media screen and (max-width: 1300px) {
    .psp {
        display: block;
    }

    .spc {
        display: none;
    }

    .fixed-btn .nav-btn .batsu.spc {
        display: none;
    }

    .concept-img-inner {
        top: -89.5%;
    }

    .merit-list ul li .merit-list-img img {
        margin: 0 auto;
    }

    .merit-list ul li .merit-list-img {
        padding: 0px 30px 30px;
    }

    .private-cont-txt .cmn-btn a p {
        font-size: 10px;
    }

    .fixed-btn .nav-btn {
        height: 100%;
    }

    .fixed-btn {
        transform: translateY(12px)translateX(-50%);
    }

    body.is-loaded .fixed-btn {
        transform: translateY(0)translateX(-50%);
    }

    .fixed-btn {
        right: initial;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        bottom: 0;
        max-width: 400px;
        width: 100%;
    }

    .fixed-btn li:nth-child(1) .nav-btn a,
    .fixed-btn li:nth-child(1) .nav-btn.search-re-btn a {
        padding-top: 17.5px;
    }

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

    .fixed-btn li {
        margin-bottom: 0;
        width: 30%;
    }

    .fixed-btn li:nth-child(2) {
        width: 30%;
    }

    .fixed-btn li:nth-child(3) {
        width: 40%;
    }

    .fixed-btn .nav-btn a {
        border-radius: 0px;
        padding: 10px 15px;
        min-height: initial;
        height: 100%;
    }

    .fixed-btn .nav-btn a p {
        text-align: center;
        writing-mode: initial;
        line-height: 1.2;
        letter-spacing: .1em;
    }

    .fixed-btn li:nth-child(3) .nav-btn a {
        padding-bottom: 10px;
    }

    .fixed-btn .nav-btn a img {
        width: 57.5px;
        max-width: 57.5px;
        right: 0;
        bottom: 0;
    }

    .fixed-btn li:nth-child(3) .nav-btn a p {
        text-align: left;
        font-weight: 500;
    }

    .fixed-btn .in-search li {
        width: 50%;
    }

    .fixed-btn .in-search li:nth-child(3) .nav-btn a p {
        padding-left: 35px;
    }

    .under-nav ul li a p {
        font-size: 12px;
    }

    .area-link-map-left {
        width: 700px;
    }

    .area-link-map-right {
        width: calc(100% - 715px);
        top: -7.5px;
    }
}

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

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

    body,
    .top-wrap #luxy,
    .fv,
    header {
        min-width: initial;
    }

    .sp {
        display: block !important;
    }

    .pc {
        display: none !important;
    }

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

    .header-right {
        width: 110px;
        background: #000;
    }

    .tel-sp-btn {
        width: 55px;
        border-right: 1px solid #fff;
        position: relative;
    }

    .tel-sp-btn a {
        display: block;
        width: 100%;
        height: 100%;
    }

    .tel-sp-btn img {
        width: 25px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }

    .header-right-right {
        width: 55px;
    }

    .header-right-right .drawer-hamburger {
        width: 20px;
        padding: 22px 18.5px;
    }

    .drawer-open .header-right-right .drawer-hamburger {
        padding: 17px 20px 26px;
    }

    .drawer-nav-flex {
        height: auto;
        flex-direction: column-reverse;
    }

    .drawer-nav-flex-left {
        width: 100%;
        height: 40vh;
    }

    .drawer-nav-flex-left img {
        max-width: 30px;
        width: 30%;
    }

    .drawer-nav-flex-right {
        width: 100%;
        height: 100%;
    }

    .drawer-nav-flex-right-wrap {
        padding-block: 70px 0px;
    }

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

    .drawer-nav-flex-right-top ul li ul>li {
        margin-bottom: 4.5px;
    }

    .drawer-nav-flex-right-top ul li ul {
        margin-block: 10px 20px;
        column-gap: 12.5px;
    }

    .drawer-nav-flex-right-bottom {
        padding-block: 20px 30px;
        margin-right: 30px;
    }

    .drawer-open .drawer-hamburger-icon:after {
        -webkit-transform: rotate(-30deg);
        transform: rotate(-30deg);
    }

    .drawer-open .drawer-hamburger-icon:before {
        -webkit-transform: rotate(30deg);
        transform: rotate(30deg);
    }

    .fv-txt {
        top: 25%;
    }

    .fv-txt p {
        font-size: 52px;
        padding-top: 25px;
    }

    .cmn-btn a {
        padding: 10px 15px;
        gap: 5px;
    }

    .cmn-btn a p {
        margin-right: 0;
    }

    .under-nav-wrap {
        padding: 40px 0;
    }

    .under-nav ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px 0px;
        margin: 0 auto 35px;
        max-width: 300px;
    }

    .inner {
        max-width: 100%;
    }

    .purchase {
        padding: 75px 0;
    }

    .swiper-arrow {
        width: 80px;
    }

    .title-flex {
        margin-bottom: 32.5px;
        align-items: center;
    }

    .swiper {
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }

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

    .member-cont {
        padding: 140px 0 40px;
    }

    .member-cont-txt-left {
        width: 55px;
    }

    .member-cont-txt {
        margin: 0 auto 80px;
        max-width: 320px;
        width: calc(100% - 20px);
        align-items: flex-end;
    }

    .member-cont-txt-right {
        width: calc(100% - 65px);
    }

    .member-cont-in-txt p {
        font-size: 12px;
    }

    .member-cont-txt h2 {
        font-size: 26px;
        padding-top: 10px;
        line-height: 1;
    }

    .column {
        padding: 100px 0 80px;
    }

    .concept {
        padding: 80px 0 180px;
    }

    .concept-inner {
        max-width: 500px;
        margin: 0 auto;
        position: relative;
    }

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

    .concept-txt p {
        line-height: 2.4;
        padding-bottom: 200px;
    }

    .concept-txt p:nth-child(2) {
        margin-left: 0;
        padding-bottom: 280px;
    }

    .concept-img01 {
        width: 120px;
        height: 170px;
        top: 4.5%;
        left: 70px;
    }

    .concept-img02 {
        width: 165px;
        height: 120px;
        top: 45%;
        left: -10px;
    }

    .concept-img03 {
        width: 155px;
        height: 215px;
        bottom: 1.5%;
        right: 20px;
    }

    .concept-img04 {
        width: 140px;
        height: 100px;
        bottom: -20%;
        right: 70px;
    }

    .concept-img-inner {
        top: -120%;
    }

    .concept-img02 .concept-img-inner {
        top: -187.5%;
    }

    .concept-img03 .concept-img-inner {
        top: -115%;
    }

    .concept-img04 .concept-img-inner {
        top: -270%;
    }

    .concept-txt p:nth-child(3) {
        padding-bottom: 0;
    }

    .member {
        padding: 70px 0;
    }

    .member .cmn-txt {
        font-size: 16px;
        max-width: 300px;
    }

    .merit {
        padding: 70px 0;
    }

    .merit-list ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 500px;
        margin: 0 auto;
        align-items: stretch;
    }

    .merit-list {
        margin-block: 55px 30px;
    }

    .merit-list ul li {
        border: 1px solid rgba(62, 62, 64, 1);
        border-radius: 15px;
    }

    .merit-list ul li .merit-list-img {
        padding: 0px 20px 25px;
        border: none;
    }

    .ex-cont {
        padding: 70px 0;
    }

    .ex-list {
        margin-top: 35px;
    }

    .ex-cont .ex-list-cont {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 45px;
        max-width: 500px;
        margin: 0 auto;
        width: calc(100% - 40px);
    }

    .merit-list ul li .merit-list-img h3 {
        font-size: 12px;
        line-height: 1.3;
    }

    .blog-cont {
        padding: 70px 0;
    }

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

    .footer-contact-flex {
        max-width: 400px;
        margin: 0 auto;
        grid-template-columns: repeat(1, 1fr);
        gap: 25px 0px;
    }

    .footer-contact-cont a {
        padding: 45px 0;
    }

    .footer-contact-cont a p {
        padding-bottom: 25px;
    }

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

    .footer-flex-top-left {
        width: 215px;
        margin: 0 auto 40px;
    }

    .footer-flex-top-sns {
        margin: 0 auto;
    }

    .footer-flex-top-right {
        width: 100%;
        display: block;
    }

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

    .footer-flex-top-right-left ul li a {
        text-align: center;
        font-weight: 500;
        margin-bottom: 22.5px;
    }

    .footer-flex-top-right-left ul li.in-ul {
        display: block;
    }

    .footer-flex-top-right-left ul li.in-ul a {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .footer-flex-top-right-left ul li.in-ul ul {
        display: block;
    }

    .footer-flex-top-right-left ul li.in-ul ul a {
        font-size: 12px;
        margin-right: 0;
        margin-bottom: 15px;
    }

    .footer-flex-top-right-right ul li a {
        text-align: center;
    }

    .footer-flex-bottom p {
        text-align: center;
    }

    .cmn-btn.blue-btn a {
        padding-block: 10px;
    }

    .under-nav ul li a p {
        font-size: 14px;
    }

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

    .under-fv-title h1 {
        font-size: 30px;
    }

    .under-fv-title {
        margin-bottom: 25px;
    }

    .under-archive-wrap .under-nav-wrap .inner {
        margin: 0 auto 0 20px;
        width: 100%;
    }

    .under-search-wrap .under-nav,
    .under-archive-wrap .under-nav {
        overflow-x: scroll;
    }

    .under-search-wrap .under-nav-wrap .inner,
    .under-archive-wrap .under-nav-wrap .inner {
        width: 100%;
    }

    .under-archive-wrap .under-nav ul,
    .under-search-wrap .under-nav ul {
        grid-template-columns: repeat(4, 1fr);
        gap: 0px 25px;
        margin: 0 auto;
        max-width: 1200px;
        min-width: 1200px;
        padding-inline: 20px;
    }

    .under-archive-wrap section {
        padding: 50px 0 80px;
    }

    .under-archive-wrap .ex-list {
        margin-top: 0;
    }

    .news-archive-cont.ex-archive-cont .ex-list-cont,
    .news-archive-cont .blog-list-cont {
        grid-template-columns: repeat(1, 1fr);
        gap: 40px 0px;
        width: calc(100% - 30px);
        margin: 0 auto;
    }

    .under-archive-wrap section.news-archive-cont {
        padding: 80px 0;
    }

    .under-archive-wrap .ex-cont .ex-list-cont {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
    }

    .pagination {
        margin-top: 40px;
    }

    .pagination .page-numbers {
        width: 25px;
        height: 25px;
        line-height: 25px;
        font-size: 14px;
    }

    .pagination .page-numbers.next::before,
    .pagination .page-numbers.next::after {
        width: 5px;
        height: 5px;
    }

    .pagination .page-numbers.next {
        margin-left: 5px;
    }

    .pagination .page-numbers.prev {
        margin-right: 5px;
    }

    .under-wrap section {
        padding: 80px 0;
    }

    .area-link-map {
        display: block;
        max-width: 500px;
        margin: 0 auto;
    }

    .area-link-map-left {
        width: 100%;
        margin-bottom: 40px;
    }

    .area-link-map-right {
        width: 100%;
        top: initial;
    }

    .area-link-map-right-cont-list ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .prop-filter__group {
        max-width: 500px;
        margin: 0 auto 40px;
    }

    h3.prop-filter__title {
        font-size: 16px;
    }

    .prop-filter__title {
        margin-bottom: 25px;
    }

    .prop-filter__grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .pill {
        gap: 16px;
        padding: 16px;
    }

    .site-search {
        display: block;
        max-width: 500px;
    }

    .site-search__field {
        margin-bottom: 25px;
    }

    .under-cmn-title {
        margin-bottom: 40px;
    }

    .under-cmn-txt p {
        text-align: left;
        line-height: 2.2;
    }

    .under-cmn-txt {
        text-align: center;
        margin-bottom: 40px;
    }

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

    .under-fv.bl-bg,
    .under-fv.pb {
        padding-block: 40px;
    }

    .under-page-wrap section {
        padding: 80px 0;
    }

    #about .concept {
        padding: 400px 0;
    }

    #about .concept-txt h2 {
        font-size: 20px;
        padding-bottom: 60px;
    }

    #about .concept-img01 {
        width: 120px;
        height: 170px;
        top: -60%;
        left: 0px;
    }

    #about .concept-img02 {
        width: 180px;
        height: 120px;
        top: -30%;
        right: 0;
        left: initial;
    }

    #about .concept-img04 {
        width: 120px;
        height: 180px;
        bottom: -70%;
        right: 10px;
    }

    #about .concept-img03 {
        width: 200px;
        height: 140px;
        bottom: -42.5%;
        left: -5%;
    }

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

    .message-cont-flex-left {
        width: 100%;
        margin-bottom: 40px;
    }

    .message-cont-flex-right {
        width: 100%;
    }

    .message-cont-flex-right-txt h2 {
        font-size: 20px;
        padding-bottom: 25px;
    }

    .message-cont-flex-right-txt p.name span {
        font-size: 18px;
    }

    .message-cont-flex-right-txt p {
        line-height: 2;
    }

    #about .member-list-cont {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }

    #about .concept-img04 .concept-img-inner {
        top: -40%;
    }

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

    .detached-house-flex-left {
        width: 100%;
        margin-bottom: 50px;
    }

    .detached-house-flex-right {
        width: 100%;
    }

    .detached-house-flex-left h2 {
        font-size: 20px;
        padding-bottom: 25px;
    }

    .under-txt-cont.under-cmn-txt h2 {
        font-size: 20px;
    }

    .under-txt-cont .under-cmn-txt p {
        text-align: center;
    }

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

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

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

    .reason-list-txt-title span {
        width: 24px;
        height: 24px;
        line-height: 26px;
        font-size: 16px;
        margin-right: 10px;
    }

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

    .reason-list-txt-title h3 {
        font-size: 20px;
        width: calc(100% - 35px);
    }

    .care-cont ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        max-width: 500px;
        margin: 0 auto 60px;
    }

    .guarantee-lists .reason-list-txt-txt p {
        padding-bottom: 25px;
        font-size: 16px;
    }

    .guarantee-lists ul li img {
        width: 22.5px;
        margin-right: 5px;
    }

    .guarantee-lists ul li p {
        font-size: 14px;
    }

    .guarantee-lists .reason-list-txt {
        padding-block: 30px 0;
    }

    .guarantee-lists .reason-list-txt-title p {
        font-size: 16px;
    }

    .point-cont-list ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
        max-width: 500px;
        margin: 0 auto;
    }

    .point-cont-list ul li h3 {
        font-size: 16px;
        padding-bottom: 10px;
    }

    .point-cont-list ul li h3 span {
        font-size: 12px;
    }

    .point-cont-list ul li p {
        font-size: 12px;
    }

    .contact-cont {
        max-width: 500px;
    }

    .tel-box {
        padding: 20px 0;
        max-width: 500px;
        margin: 0 auto 60px;
    }

    .tel-box-link a img {
        width: 25px;
        margin-right: 15px;
    }

    .tel-box-link a p {
        font-size: 26px;
    }

    .form-flow ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }

    .privacy-policy p {
        margin: 0 0 15px;
        font-size: 12px;
    }

    .privacy-policy h2 {
        margin: 30px 0 20px;
        font-size: 16px;
    }

    .privacy-policy h3 {
        margin: 0px 0 10px;
        font-size: 14px;
    }

    .privacy-policy ol,
    .privacy-policy ul {
        margin: 15px 0;
        font-size: 12px;
    }

    .btn-flex {
        margin: 40px auto 0;
        display: block;
    }

    .btn-flex .form-submit {
        margin-top: 0;
        margin-bottom: 15px;
    }

    .confirm-table table th,
    .confirm-table table td {
        padding-bottom: 30px;
        display: block;
        width: 100%;
    }

    .confirm-table table th {
        padding-bottom: 0;
        margin-bottom: 10px;
    }

    .slider-container {
        margin-top: 60px;
    }

    .slide {
        width: 200px;
        margin-right: 20px;
    }

    .solution-list ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }

    .mypage-link-list ul {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 15px;
    }

    .property-single-cont-head {
        display: block;
    }

    .property-thumb-swiper {
        width: 100%;
        max-width: 500px;
        margin: 0 auto 40px;
    }

    .property-thumb-swiper-inner {
        width: 100%;
    }

    .property-cont-txt {
        margin: 0 auto 60px;
        width: 100%;
        max-width: 500px;
    }

    .property-single-cont-link {
        padding: 60px 0 0;
    }

    .property-single-cont-link ul li {
        width: 100%;
    }

    .property-single-cont-link ul {
        max-width: 500px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 15px;
    }

    .property-single-cont-link ul li a {
        padding: 15px;
        border-radius: 10px;
    }

    .access-map-txt ul {
        display: block;
        max-width: 500px;
        margin: 0 auto;
    }

    .access-map-txt ul li:nth-child(1) {
        margin-right: 0;
        margin-bottom: 10px;
    }

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

    .property-tag-list {
        margin-bottom: 60px;
    }

    .property-single-cont-top-list {
        grid-template-columns: repeat(1, 1fr);
        gap: 0;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .surrounding-cont {
        max-width: 100%;
        margin: 100px auto 0;
        width: calc(100% - 30px);
    }

    .access-map-wrap {
        margin-bottom: 60px;
    }

    .access-map-wrap iframe {
        height: 200px;
    }

    .access-map-cont {
        margin-bottom: 30px;
    }

    .property-tag-list ul {
        gap: 15px 10px;
    }

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

    .news-single-cont-txt h2 {
        font-size: 24px;
        margin-bottom: 25px;
        padding-left: 10px;
    }

    .news-single-cont-txt h3 {
        font-size: 20px;
    }

    .news-single-conts {
        max-width: 100%;
        margin: 0 auto 60px;
    }

    .post-nav__arrow {
        width: 24px;
        height: 24px;
    }

    post-nav__link {
        gap: 10px;
        font-size: 12px;
    }

    .ex-flex {
        margin-bottom: 60px;
        display: block;
    }

    .ex-flex-left {
        width: 100%;
        margin-bottom: 40px;
    }

    .ex-flex-right {
        width: 100%;
    }

    .ex-flex-right p {
        font-size: 14px;
    }

    .ex-flex-left table tr th {
        width: 30%;
        padding-block: 20px;
    }

    .ex-flex-left table tr td {
        width: 70%;
        padding-block: 20px;
    }

    .ex-cont-wrap {
        gap: 40px 0;
    }

    .img-txt-cont {
        display: block;
    }

    .img-txt-cont .img-cont {
        width: 100%;
        margin-bottom: 30px;
    }

    .img-txt-cont .txt-cont {
        width: 100%;
    }

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

    .img-txt-cont .txt-cont p {
        font-size: 13px;
        padding: 0;
    }

    .sum-img {
        display: block;
    }

    .sum-img img {
        width: 100%;
        margin-bottom: 15px;
    }

    .sum-img img:last-child {
        margin-bottom: 0;
    }

    #about .member {
        padding: 80px 0;
    }

    .care-cont ul li p {
        padding-right: 15px;
    }
}

@media screen and (max-width: 500px) {
    .fv-txt {
        top: 30%;
    }

    .concept-img01 {
        top: 0;
    }

    .concept-img-inner {
        top: -12.5%;
    }

    .concept-img02 {
        top: 35%;
    }

    .concept-img02 .concept-img-inner {
        top: -12.5%;
    }

    .concept-txt p:nth-child(2) {
        max-width: 290px;
    }

    .concept-img03 {
        bottom: 9.5%;
    }

    .concept-img03 .concept-img-inner {
        top: -10%;
    }

    .concept-img04 {
        bottom: -12.5%;
    }

    .concept-img04 .concept-img-inner {
        top: -10%;
    }

    .member .title-flex {
        display: block;
    }

    .member .cmn-txt {
        max-width: 100%;
        margin-bottom: 15px;
    }

    .member .swiper-arrow {
        margin-left: auto;
    }

    .under-archive-wrap .ex-cont .ex-list-cont {
        grid-template-columns: repeat(1, 1fr);
    }

    .solution-list ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 15px 0px;
    }

    .private-cont-txt .cmn-btn a p,
    .ex-cont p,
    .ex-cont h3 {
        font-size: 14px;
    }

    .flow-txt {
        width: calc(100% - 75px);
    }

    .map-cont iframe {
        height: 300px;
    }

    .mypage-link-list ul {
        grid-template-columns: repeat(1, 1fr);
    }

    .post-nav {
        flex-wrap: wrap;
        gap: 20px 0;
    }

    .post-nav__link {
        width: 100%;
    }

    .drawer-nav-flex-right-wrap {
        padding: 70px 0px 0px;
    }

    .drawer-nav-flex-left {
        height: 12.5vh;
    }

    .drawer-nav-flex-right-top {
        max-width: 320px;
        width: calc(100% - 40px);
    }

    .point-cont-list ul {
        grid-template-columns: repeat(1, 1fr);
        gap: 0px 20px 20px;
        max-width: 300px;
    }

    #about .concept-img04 .concept-img-inner {
        top: -15%;
    }

    #about .concept-img03 .concept-img-inner {
        top: -20%;
    }

    #about .concept-img02 {
        right: 20px;
    }

    #about .concept-img01 {
        left: 20px;
    }

    .member .column-list-txt h3 {
        font-size: 13px;
    }

    .drawer-nav-flex-right-top ul li ul li:nth-child(2)::before {
        width: 200px;
    }
}
