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

/*!
Theme Name: HOUSE CIRCULATION THEME 0704
*/


/* common-css */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin:0;
	padding:0;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
	background:transparent;
}

input::placeholder{
	color: #ccc;
}
input::-ms-input-placeholder{
	color: #ccc;
}
input:-ms-input-placeholder{
	color: #ccc;
}

:root{
    --base-color: #181A16;
    --base-font: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --font-md-text: 18px;

    --wrap: 1400px;
    --space: calc((100vw - var(--wrap))/2);
    --padding: 100px;
    --poppins: 'Poppins', "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Verdana, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    --mincho: "Noto Serif JP", 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,MS明朝,serif;

    --header-height: 100px;

    --blue: #0037b1;

    --transition: .2s;
}

body{
    min-width: 1200px;
    overflow-x: hidden;
    -webkit-text-size-adjust: 100%;
    line-height: 1.8;
    color: var(--base-color);
    letter-spacing: .025em;
    font-family: var(--base-font);
}
body:not(.home){
    padding-top: var(--header-height);
}

body.home .wrap,
.wrap{
    width: 100%;
    max-width: var(--wrap);
    margin: 0 auto;
}

a{
    transition: var(--transition);
    text-decoration: none;
}
a:not([href]){
    pointer-events: none;
    text-align: center;
    padding: 0 !important;
}
a:not([href])::before{
    display: none;
}
a:hover{
    opacity: .6;
    text-decoration: none;
}
img{
    max-width: 100%;
    vertical-align: bottom;
}
.flex{
    display: flex;
    flex-wrap: wrap;
}
.ps-re{
    position: relative;
    z-index: 0;
}
.ps-ab{
    position: absolute;
}
.padding-top{
    padding-top: var(--padding);
}
.padding-bottom{
    padding-bottom: var(--padding);
}
.padding-tb{
    padding: var(--padding) 0;
}
.view-more a{
    height: 65px;
    line-height: 59px;
    width: 300px;
    display: block;
    background-color: #fff;
    border-radius: 35px;
    border: 3px solid var(--base-color);
    color: var(--base-color);
    padding-left: 40px;
    font-weight: bold;
    position: relative;
}
.view-more a::before{
    content: "";
    width: 47px;
    height: 9px;
    position: absolute;
    transform: translateY(-50%);
    top: calc(50% - 3px);
    right: 30px;
    background: url(img/common/view-more-arrow.svg) no-repeat center center / contain;
    transition: var(--transition);
}
@media screen and (min-width: 992px) {
    .view-more a:hover{
        opacity: 1;
        background-color: var(--base-color);
        color: #fff;
    }
    .view-more a:hover::before{
        right: 20px;
        -webkit-filter: brightness(0) grayscale(100%) invert(1);
        -moz-filter: brightness(0) grayscale(100%) invert(1);
        -o-filter: brightness(0) grayscale(100%) invert(1);
        -ms-filter: brightness(0) grayscale(100%) invert(1);
        filter: brightness(0) grayscale(100%) invert(1);
    }
}

.title{
    text-align: center;
    margin-bottom: 60px;
}
.title-en{
    font-size: 22px;
    font-family: var(--poppins);
    color: var(--blue);
    font-weight: bold;
}
.title-en::before{
    content: "";
    display: block;
    margin: 0 auto 15px;
    width: 1px;
    height: 80px;
    background-color: var(--blue);
}
.title-text{
    font-size: 34px;
    margin-top: 15px;
    line-height: 1.3;
    font-weight: bold;
}
.title-text.color{
    color: var(--blue);
}
#fixed-bar{
    display: none;
}


/* FADE */
.fadein {
    opacity : 0;
    transform : translate(0, 50px);
    filter: blur(10px);
    transition : all 600ms;
}
.fadeinr {
    opacity : 0;
    transform : translate(50px, 0);
    filter: blur(10px);
    transition : all 600ms;
}
.fadeinb {
    opacity : 0;
    transform : translate(0, -50px);
    filter: blur(10px);
    transition : all 600ms;
    }

.fadeinl {
    opacity : 0;
    transform : translate(-50px, 0);
    filter: blur(10px);
    transition : all 600ms;
    }

.fadeino {
    opacity : 0;
    filter: blur(10px);
    transition : all 600ms;
}

.ts1 {
    transition-delay: 300ms;
}

.ts2 {
    transition-delay: 600ms;
}

.ts3 {
    transition-delay: 900ms;
}

.ts4 {
    transition-delay: 1200ms;
}

.fadein.scrollin, .fadeinr.scrollin, .fadeinb.scrollin, .fadeinl.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    filter: blur(0);
}

.fadeino.scrollin {
   opacity : 1;
}

.blur{
    opacity: 0;
    filter: blur(10px);
    transition: 1s;
}
.blur.scrollin{
    opacity: 1;
    filter: blur(0);
}
.img-animation img{
    clip-path: inset(0 100% 0 0);
    transition: 1s;
}
.img-animation.scrollin img{
    clip-path: inset(0 0 0 0);
}


/* HEADER */
#header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    padding-left: 20px;
}
#header .header-nav{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#header .header-nav ul{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2em;
}
#header .header-nav ul li a{
    font-size: 14px;
    font-weight: bold;
}
#header .header-nav ul li a span{
    display: none;
}
#header .header-btn{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
#header .header-btn__item a{
    display: flex;
}
#header .header-btn__item a,
#header .header-btn__item.nav-toggle-wrap{
    align-items: center;
    justify-content: center;
    width: var(--header-height);
    height: var(--header-height);
}
#header .header-btn__item a{
    background: linear-gradient(to right, #00B31D, #008B20);
}
#header .header-tel{
    margin-left: 30px;
    margin-right: 20px;
}
#header .header-tel a{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    line-height: 1.3;
}
#header .header-tel a span{
    font-family: var(--poppins);
    color: #005DB1;
    font-weight: bold;
    font-size: 28px;
    line-height: 1.3;
}
#header .header-tel small{
    font-size: 11px;
    font-weight: 500;
    font-family: var(--base-font);
    color: var(--base-color);
    display: block;
}
.nav-toggle-wrap{
    background: linear-gradient(to right, #005DB1, #203586);
    cursor: pointer;
    display: none;
}
.nav-toggle{
    width: 46px;
    height: 25px;
    position: relative;
}
.nav-toggle span{
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 5px;
    transition: var(--transition);
}
.nav-toggle span:nth-of-type(1){
    top: 0;
}
.nav-toggle span:nth-of-type(2){
    top: 11px;
}
.nav-toggle span:nth-of-type(3){
    top: 22px;
}


/* ASIDE */
#aside{
    position: fixed;
    transform: translateY(-50%);
    top: 50%;
    right: 0;
    overflow: hidden;
    z-index: 99;
    filter: drop-shadow(0 0 15px rgba(29 66 148 / .3));
}
#aside .aside-btn{
    position: relative;
    right: -30px;
}
#aside .aside-btn a{
    display: block;
}

/* FOOTER */
#footer{
    margin-top: 240px;
}
body.home #footer,
body.post-type-archive-post #footer,
body.single-post #footer{
    margin-top: 0;
}
#footer .footer-owner{
    padding: 160px 0 200px;
    background: url(img/common/owner-bg.webp) no-repeat center center / cover;
    color: #fff;
}
#footer .footer-owner__flex{
    column-gap: 200px;
}
#footer .footer-owner__flex-ttl{
    font-family: var(--mincho);
    font-size: 66px;
    letter-spacing: 0.1em;
    line-height: 1;
}
#footer .footer-owner__flex-box{
    width: 100%;
    max-width: 480px;
}
#footer .footer-owner__flex-box__lead{
    font-weight: 600;
    font-size: 30px;
    letter-spacing: 0.1em;
    line-height: 1.6;
    font-family: var(--mincho);
    margin-bottom: 20px;
}
#footer .footer-owner__flex-box__text{
    line-height: 2;
    font-size: 20px;
}
#footer .footer-owner__flex-box__view-more{
    margin-top: 60px;
}
#footer .footer-bnr__cont{
    max-width: 1200px;
    margin: -125px auto 0;
    position: relative;
    z-index: 1;
    background: url(img/common/footer-bnr-bg.webp) no-repeat center center / cover;
    border-radius: 25px;
    padding: 60px 80px;
    box-shadow: 0 0 9px rgb(29 66 148 / .3);
}
#footer .footer-bnr__cont__view-more{
    margin-top: 40px;
}
body.home #footer .footer-tel{
    margin-top: 0;
}
#footer .footer-tel__text{
    margin-bottom: 50px;
    text-align: center;
    font-size: 20px;
    line-height: 2;
    letter-spacing: 0.1em;
    font-weight: 500;
}
#footer .footer-tel{
    margin-top: 240px;
    padding: 150px 0;
    color: #fff;
    background: url(img/common/footer-bg.webp) no-repeat center center / cover;
}
#footer .footer-tel__flex{
    align-items: center;
    justify-content: center;
    gap: 60px;
}
#footer .footer-tel__flex-icon img{
    display: block;
}
#footer .footer-tel__flex-item__text{
    font-size: 24px;
    font-weight: 500;
}
#footer .footer-tel__flex-item__num{
    font-family: var(--poppins);
    font-weight: 500;
    font-size: 80px;
}
#footer .footer-tel__flex-item__num,
#footer .footer-tel__flex-item__num a{
    line-height: 1.1;
}
#footer .footer-tel__flex-item__num a{
    display: inline-block;
}
#footer .footer-tel__flex-item__time{
    letter-spacing: 0.1em;
}
#footer .footer-tel__link{
    margin-top: 60px;
}
#footer .footer-tel__link a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    border: 3px solid #fff;
    position: relative;
    height: 100px;
    font-weight: 500;
}
#footer .footer-tel__link a img{
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 30px;
}
#footer .footer-tel__link a::before{
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 30px;
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: url(img/common/arrow.svg) no-repeat center center / 24px;
    -webkit-filter: brightness(0) grayscale(100%) invert(1);
    -moz-filter: brightness(0) grayscale(100%) invert(1);
    -o-filter: brightness(0) grayscale(100%) invert(1);
    -ms-filter: brightness(0) grayscale(100%) invert(1);
    filter: brightness(0) grayscale(100%) invert(1);
}
#footer .footer-link{
    background: linear-gradient(to right, var(--blue), #0000a0);
    color: #fff;
    padding: 80px 0;
}
#footer .footer-link__grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
#footer .footer-link__grid-item{
    border-left: 1px solid #fff;
}
#footer .footer-link__grid-item a{
    display: block;
    height: 100%;
    position: relative;
    padding: 0 40px 20px;
}
#footer .footer-link__grid-item:last-child{
    border-right: 1px solid #fff;
}
#footer .footer-link__grid-item__ttl{
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.5;
}
#footer .footer-link__grid-item__ttl span{
    font-size: 64px;
    font-family: var(--mincho);
    font-weight: normal;
    display: block;
    letter-spacing: 0.1em;
}
#footer .footer-link__grid-item__arrow{
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    transform: translateY(-50%);
    top: 50%;
    right: 30px;
    background: #fff url(img/common/arrow.svg) no-repeat center 26px / 30px;
}
#footer .footer-link .wrap,
#footer .footer-content .wrap{
    max-width: 1200px;
}
#footer .footer-content{
    padding: 100px 0;
}
#footer .footer-content__flex{
    justify-content: space-between;
}
#footer .footer-content__flex-menu{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    position: relative;
    gap: 100px;
}
#footer .footer-content__flex-menu ul li a{
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
}
#footer .footer-content__flex-menu ul li:not(:last-child){
    margin-bottom: 30px;
}
#footer .footer-content__flex-menu ul li a::before{
    content: "";
    width: 10px;
    height: 15px;
    display: inline-block;
    margin-right: 10px;
    background: url(img/common/footer-menu-arrow.svg) no-repeat center center / contain;
}
#footer .footer-content__flex-menu__link{
    position: absolute;
    bottom: 0;
    right: 0;
}
#footer .footer-content__flex-menu__link a{
    display: inline-block;
    font-size: 13px;
}
#footer .footer-content__copy{
    position: absolute;
    bottom: 0;
    left: 0;
}
#footer .footer-content__copy-text{
    font-size: 13px;
    margin-top: 30px;
}


/* TOP */
#home{
    padding-top: calc(150px + var(--header-height));
    background: url(img/frontpage/mv-bg.webp) no-repeat center top / 100% 1850px;
}
.mv-text{
    text-align: center;
    margin-bottom: 280px;
}
.top-select__inner{
    max-width: 1000px;
    margin: 0 auto;
}
#home .top-select__tab ul{
    gap: 0;
}
#home .top-select__tab ul > li{
    font-size: 14px;
    border-top: 3px solid #fff;
}
#home .top-select__tab ul > li:nth-of-type(1){
    border-left: 3px solid #fff;
}
#home .top-select__tab ul > li:nth-of-type(2){
    border-right: 3px solid #fff;
}
#home .top-select__tab ul > li span{
    font-size: 20px;
}
#home .top-select__tab ul > li.current{
    font-size: 22px;
    border-top: transparent !important;
    border-left: transparent !important;
    border-right: transparent !important;
}
#home .top-select__tab ul > li.current span{
    font-size: 32px;
}
.top-select__cont{
    background: linear-gradient(to right, var(--blue), #131d6e);
    color: #fff;
    box-shadow: 0 0 25px rgb(0 0 0 / .3);
}
.top-select__cont-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
}
.top-select__cont-grid__item:not(:last-child){
    border-right: 1px solid #000;
}
.top-select__cont-grid__item a{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    height: 220px;
    padding-top: 50px;
    position: relative;
}
.top-select__cont-grid__item a::before{
    content: "";
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: url(img/common/view-more-arrow.svg) no-repeat center center / contain;
    width: 60px;
    height: 10px;
    -webkit-filter: brightness(0) grayscale(100%) invert(1);
    -moz-filter: brightness(0) grayscale(100%) invert(1);
    -o-filter: brightness(0) grayscale(100%) invert(1);
    -ms-filter: brightness(0) grayscale(100%) invert(1);
    filter: brightness(0) grayscale(100%) invert(1);
}
.top-select__cont-grid__item-icon{
    position: relative;
    bottom: -6px;
}
.top-select__cont-grid__item-icon img{
    display: block;
}
.top-select__cont-grid__item-text{
    font-size: 18px;
    font-weight: bold;
    line-height: 1.6;
}
.top-select__cont-grid__item-text span{
    display: block;
    font-size: 22px;
}
.top-bnr__cont{
    border-radius: 20px;
    background: url(img/frontpage/bnr-bg.webp) no-repeat center center / cover;
    padding: 60px 100px;
    max-width: 1200px;
    margin: 80px auto 0;
}
.top-bnr__cont__view-more{
    margin-top: 30px;
}
.top-house{
    margin-top: 100px;
}
.top-house__slider-wrap{
    background-color: #000;
    padding: 10px 0;
}
.top-house__padding{
    padding: var(--padding) 0;
    background: linear-gradient(to right, var(--blue), #0000a0);
}
.top-house__slider-item{
    margin-right: 80px;
}
.top-house__list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 30px;
}
.top-house__list-item{
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
}
.top-house__list-item a{
    display: block;
    height: 100%;
    position: relative;
    z-index: 0;
}
.top-house__list-item a::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(to bottom, #003bff, #131dbc);
    opacity: 0;
    transition: var(--transition);
}
@media screen and (min-width: 992px) {
    .top-house__list-item a:hover{
        opacity: 1;
    }
    .top-house__list-item a:hover::before{
        opacity: 1;
    }
}
.top-house__btn{
    margin-top: 50px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.top-house__btn .view-more a{
    margin: 0 auto;
}
.top-house__no-article{
    color: #fff;
}
.top-house .house-card{
    background: linear-gradient(to right, var(--blue), #0000a0);
    color: #fff;
    border: 3px solid #fff;
}
.top-house .house-card .house-card__meta-cat.type span{
    background-color: #fff;
    color: var(--blue);
}
.top-house .house-card .house-card__meta-cat span{
    border: 1px solid #fff;
    color: #fff;
}
.top-house .house-card .house-card__detail-label__box-price,
.top-house .house-card .house-card__detail-label__box-info dl dt{
    color: #fff;
}
.top-house .house-card .house-card__info-box__text span img{
    -webkit-filter: brightness(0) grayscale(100%) invert(1);
    -moz-filter: brightness(0) grayscale(100%) invert(1);
    -o-filter: brightness(0) grayscale(100%) invert(1);
    -ms-filter: brightness(0) grayscale(100%) invert(1);
    filter: brightness(0) grayscale(100%) invert(1);
}
.top-property{
    padding: 100px 0 220px;
    position: relative;
}
.top-property::after{
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #000 url(img/frontpage/property-bg.webp) no-repeat center top / 100% auto;
    z-index: -2;
}
.top-property__ttl{
    text-align: center;
    margin-bottom: 100px;
}
.top-property__ttl-en{
    margin-bottom: 40px;
}
.top-property__text{
    text-align: center;
    letter-spacing: 0.1em;
    font-size: 34px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 60px;
    font-family: var(--mincho);
}
.top-property__slider-wrap{
    overflow: hidden;
}
.top-property__slider .slick-list{
    overflow: initial;
}
.top-property__slider-item{
    width: 800px;
    position: relative;
    margin: 0 120px;
    transform: scale(0.73);
    transition: 1s;
}
.top-property__slider-item.slick-current{
    transform: scale(1);
}
.top-property__slider-item__num{
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    position: absolute;
    transform: translateX(50%);
    top: 40px;
    right: 0;
    line-height: 1;
    color: #fff;
    background-color: #000;
    padding: 20px 0;
    font-family: var(--mincho);
    font-size: 18px;
    letter-spacing: 0.1em;
    z-index: 1;
    pointer-events: none;
}
.top-property__slider-item__thumb{
    position: relative;
    padding: 4%;
}
.top-property__slider-item__thumb::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(img/frontpage/frame.svg) no-repeat center center / contain;
    opacity: 0;
    transition: 1s;
}
.top-property__slider-item.slick-current .top-property__slider-item__thumb::before{
    opacity: 1;
}
.top-property__slider-item__thumb a{
    display: block;
    padding-top: 65.224%;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}
.top-property__slider-item__thumb a img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;   
}
.top-property__slider-item__box{
    position: absolute;
    bottom: -120px;
    left: -30px;
    background-color: #000;
    color: #fff;
    width: 420px;
    padding: 40px 30px 0;
    opacity: 0;
    transition: 1s;
}
.top-property__slider-item.slick-current .top-property__slider-item__box{
    opacity: 1;
}
.top-property__slider-item__box-type{
    font-size: 15px;
    font-weight: 500;
}
.top-property__slider-item__box-name{
    font-size: 24px;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 15px;
}
.top-property__slider-item__box-meta{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 60px;
    margin-bottom: 5px;
}
.top-property__slider-item__box-meta__price{
    font-size: 28px;
    font-weight: 500;
}
.top-property__slider-item__box-meta__price small{
    font-size: 12px;
}
.top-property__slider-item__box-meta__yield{
    font-size: 12px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(to right, var(--blue), #131D6E);
    padding: 0 5px;
}
.top-property__slider-item__box-info dl{
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid #fff;
    padding: 2px 0;
}
.top-property__slider-item__box-info dl:last-child{
    border-bottom: none;
}
.top-property__slider-item__box-info dl dt,
.top-property__slider-item__box-info dl dd{
    font-size: 12px;
}
.top-property__slider-item__box-info dl dt{
    font-weight: bold;
    width: 80px;
}
.top-property__slider-item__box-info dl dd{
    width: calc(100% - 80px);
}
.top-property__slider .slick-dots{
    position: initial;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin-top: 150px;
    gap: 8px;
}
.top-property__slider .slick-dots li,
.top-property__slider .slick-dots li button,
.top-property__slider .slick-dots li button::before{
    width: 9px;
    height: 9px;
    margin: 0;
    padding: 0;
}
.top-property__slider .slick-dots li button::before{
    content: "";
    border-radius: 50%;
    opacity: 1;
    background-color: #ccc;
}
.top-property__slider .slick-dots li.slick-active button:before{
    background-color: var(--blue);
    opacity: 1;
}
.top-property__view-more a{
    margin: 0 auto;
}
.top-property__view-more{
    margin-top: 20px;
}
.top-news__flex{
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 30px;
}
.top-news__flex-ttl__en{
    font-size: 70px;
    letter-spacing: 0.1em;
    font-family: var(--mincho);
    line-height: 1.3;
}
.top-news__flex-ttl__text{
    font-weight: bold;
}
.news-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.news-card{
    border-bottom: 1px solid var(--base-color);
}
.news-card:nth-of-type(1),
.news-card:nth-of-type(2){
    border-top: 1px solid var(--base-color);
}
.news-card:nth-of-type(2n - 1){
    border-right: 1px solid var(--base-color);
}
.news-card a{
    padding: 5% 80px 5% 10%;
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 0;
}
.news-card a::before{
    content: "";
    width: 78px;
    height: 14px;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 100px;
    background: url(img/common/view-more-arrow.svg) no-repeat center center / contain;
    transition: var(--transition);
}
.news-card a::after{
    content: "";
    background: linear-gradient(to right, var(--blue), #0000a0);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
}
.news-card__thumb{
    width: 34%;   
}
.news-card__thumb-inner{
    position: relative;
    padding-top: 54.2%;
    overflow: hidden;
}
.news-card__thumb-inner img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .6s;
}
.news-card__box{
    width: 66%;
    padding-left: 5%;
}
.news-card__box-cat span{
    display: inline-block;
    font-size: 12px;
    letter-spacing: 0.075em;
    border: 1px solid var(--base-color);
    padding: 0 15px;
    border-radius: 15px;
    transition: var(--transition);
}
.news-card__box-cat{
    margin-bottom: 10px;
}
.news-card__box-text{
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 15px;
    font-weight: 500;
    padding-right: 100px;
}
.news-card__box-date{
    font-family: var(--poppins);
    font-size: 14px;
    font-weight: 500;
}
    

@media screen and (min-width: 992px) {
    .news-card a:hover{
        opacity: 1;
        color: #fff;
    }
    .news-card a:hover::after{
        opacity: 1;
    }
    .news-card a:hover::before{
        -webkit-filter: brightness(0) grayscale(100%) invert(1);
        -moz-filter: brightness(0) grayscale(100%) invert(1);
        -o-filter: brightness(0) grayscale(100%) invert(1);
        -ms-filter: brightness(0) grayscale(100%) invert(1);
        filter: brightness(0) grayscale(100%) invert(1);
        right: 80px;
    }
    .news-card a:hover .news-card__thumb-inner img{
        transform: scale(1.1);
    }
    .news-card a:hover .news-card__box-cat span{
        border-color: #fff;
    }
}



/* PAGE */
.page-mv{
    margin-bottom: 300px;
}
.archive-mv{
    margin-bottom: 100px;
}
#page-common{
    padding-top: 200px;
    background: url(img/common/mv-bg.webp) no-repeat center top / 100% 1350px;
}


/* SERVICE */
#page-service{
    padding-top: 400px;
    background: url(img/service/mv.webp) no-repeat center top / auto 1330px;
}
.page-mv__title{
    font-weight: bold;
    line-height: 1.2;
    font-size: 22px;
    letter-spacing: 0.1em;
}
.page-mv__title span{
    display: block;
    font-size: 70px;
    letter-spacing: 0.1em;
    font-family: var(--mincho);
    font-weight: normal;
    margin-bottom: 20px;
}
.service-sec01__flex{
    justify-content: space-between;
}
.service-sec01__flex-lead{
    font-size: 36px;
    font-weight: 600;
    font-family: var(--mincho);
    line-height: 1.6;
}
.service-sec01__flex-text{
    width: 100%;
    max-width: 545px;
    font-size: var(--font-md-text);
    line-height: 2;
    letter-spacing: 0.025em;
}
.service-sec01__cont{
    padding-top: 120px;
    position: relative;
    margin-top: 120px;
}
.service-sec01__cont-inner{
    box-shadow: 0 0 15px rgb(0 0 0 / .1);
    background-color: #fff;
    padding: 60px 50px;
    position: relative;
}
.service-sec01__cont-inner.color{
    background: linear-gradient(to right, var(--blue), #131D6E);
    color: #fff;
}
.service-sec01__cont-flex{
    justify-content: space-between;
}
.service-sec01__cont-flex__item{
    width: 100%;
    max-width: 545px;
}
.service-sec01__cont-flex__list{
    width: 100%;
    max-width: 520px;
    padding-top: 220px;
}
.service-sec01__cont-flex__list ul li{
    padding-left: 1em;
    font-size: var(--font-md-text);
}
.service-sec01__cont-flex__list ul li::before{
    content: "●";
    margin-left: -1em;
    color: var(--blue);
}
.service-sec01__cont-flex__item-ttl{
    margin-bottom: 50px;
    line-height: 1.6;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.service-sec01__cont-flex__item-ttl span{
    color: var(--blue);
    font-family: var(--mincho);
    font-size: 48px;
    display: block;
    letter-spacing: 0.1em;
    font-weight: normal;
    line-height: 1.3;
    margin-bottom: 10px;
}
.service-sec01__cont-flex__item-text{
    font-size: var(--font-md-text);
    line-height: 2;
}
.service-sec01__cont-img{
    width: calc(520px + 100px + var(--space));
    height: calc(60px + 220px + 80px);
    position: absolute;
    top: 0;
    right: calc(-1 * (var(--space) + 50px));
}
.service-sec01__cont-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: drop-shadow(6px 6px 10px rgb(0 0 0 / .2));
}
.service-sec01__cont-flex.reverse{
    flex-direction: row-reverse;
}
.service-sec01__cont-flex.reverse .service-sec01__cont-flex__list{
    text-align: right;
}
.service-sec01__cont-flex.reverse .service-sec01__cont-flex__list ul{
    display: inline-block;
    text-align: left;
}
.service-sec01__cont-img.left{
    right: auto;
    left: calc(-1 * (var(--space) + 50px));
}
.service-sec01__cont-inner.color .service-sec01__cont-flex__list ul li::before{
    color: #fff;
}
.service-sec01__cont-inner.color .service-sec01__cont-flex__item-ttl span{
    color: #fff;
}


/* FORM COMMON */
.select-item{
    display: inline-block;
    position: relative;
}
.select-item::before{
    content: "";
    width: 12px;
    height: 5px;
    background: url(img/common/select-arrow.svg) no-repeat center center / contain;
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 8px;
    z-index: 1;
    pointer-events: none;
}
.select-item select{
    display: block;
    border: 2px solid #ccc;
    font-size: 14px;
    height: 35px;
    padding-right: 30px;
    padding-left: 10px;
    cursor: pointer;
}
.select-item__unit{
    font-size: 13px;
    margin-left: 5px;
}
.wpcf7-list-item-label,
.checkbox-item__elm label{
    display: inline-block;
    font-size: 14px;
    position: relative;
    padding-left: 30px;
    cursor: pointer;
}
.wpcf7-list-item-label::before,
.checkbox-item__elm label::before{
    content: "";
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    position: absolute;
    top: 3px;
    left: 0;
    transition: var(--transition);
}
.wpcf7-list-item-label::after,
.checkbox-item__elm label::after{
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    top: 3px;
    left: 0;
    background: url(img/common/icon-check.svg) no-repeat center center / 18px;
    opacity: 0;
    transition: var(--transition);
}
.checkbox-item__elm input{
    display: none;
}
.wpcf7-list-item input:checked + .wpcf7-list-item-label::before,
.checkbox-item__elm input:checked + label::before{
    background-color: var(--blue);
    border-color: var(--blue);
}
.wpcf7-list-item input:checked + .wpcf7-list-item-label::after,
.checkbox-item__elm input:checked + label::after{
    opacity: 1;
}



/* HOUSE */
#content-list{
    padding-top: var(--padding);
}
.content-flex{
    flex-direction: row-reverse;
}
.content-flex__side{
    width: 100%;
    max-width: 300px;
}
.content-flex__main{
    width: 100%;
    max-width: calc(100% - 300px);
    padding-right: 75px;
}
.content-flex__main-list{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 60px;
}
.content-flex__main-list__item{
    box-shadow: 0 0 15px rgb(29 66 148 / .2);
}
.select-area{
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}
.select-area__label span{
    display: inline-block;
    background: linear-gradient(to right, var(--blue), #0000a0);
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    padding: 5px 20px;
    box-shadow: 0 0 15px rgb(29 66 148 / .2);
}
.select-area__map svg *{
    transition: var(--transition);
}
@media screen and (min-width: 992px) {
    .select-area__map a:hover{
        opacity: 1;
    }
    .select-area__map a:hover .st5,
    .select-area__map a:hover .st8,
    .select-area__map a:hover .st9,
    .select-area__map a:hover .st10,
    .select-area__map a:hover .st15{
        fill: var(--base-color) !important;
    }
}
.select-area__list{
    margin-top: 30px;
    border: 2px solid #ccc;
    padding: 15px 30px;
}
.select-area__list.himeji li:nth-of-type(1){
    width: 100%;
}
.select-area__list.himeji li:not(:nth-of-type(1)) a{
    font-size: 16px;
    font-weight: normal;
}
.select-area__list ul{
    display: flex;
    flex-wrap: wrap;
    gap: 5px 25px;
}
.select-area__list ul li a{
    font-size: 18px;
    display: inline-block;
    position: relative;
    font-weight: 500;
}
.select-area__list ul li a::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #ccc;
}
.content-flex__side-box__area .select-item-wrap:nth-of-type(2){
    padding-left: 2em;
    margin-top: 0.5em;
}
.content-flex__side-ttl{
    background-color: var(--blue);
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 5px 0;
    position: relative;
    filter: drop-shadow(0 0 15px rgb(29 66 148 / .2));
    margin-bottom: 30px;
}
.content-flex__side-ttl::before{
    content: "";
    position: absolute;
    transform: translate(-50%,100%);
    left: 50%;
    bottom: 1px;
    width: 20px;
    height: 10px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background-color: var(--blue);
}
.content-flex__side-inner{
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgb(0 0 0 / .15);
    padding: 15px 15px 30px;
}
.content-flex__side-box{
    padding: 25px 0;
    border-bottom: 1px solid #ccc;
}
.content-flex__side-box:first-child{
    padding-top: 0;
}
.content-flex__side-box:last-child{
    border-bottom: none;
    padding-bottom: 0;
}
.content-flex__side-box__label{
    text-align: center;
    color: #fff;
    background-color: var(--blue);
    font-weight: bold;
    padding: 5px 0;
    margin-bottom: 15px;
}
.content-flex__side-box__condition-item:not(:last-child){
    margin-bottom: 30px;
}
.content-flex__side-box__condition-item__label{
    font-weight: bold;
    margin-bottom: 5px;
}
.content-flex__side-box__condition-item__range{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.content-flex__side-box__condition-item__range-symbol{
    width: 30px;
    font-size: 14px;
    text-align: center;
}
.content-flex__side-box__condition-item__range .select-item-wrap{
    width: calc((100% - 30px)/2);
}
.content-flex__side-box__condition-item__range .select-item,
.content-flex__side-box__condition-item__range .select-item select{
    width: 100%;
}
.content-flex__side-box__condition-item__grid{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 5px 10px;
}
.content-flex__side-box__search-ttl,
.faq-sec01__keyword-text{
    font-weight: bold;
    margin-bottom: 5px;
}
.content-flex__side-box__search-ttl::before,
.faq-sec01__keyword-text::before{
    content: "";
    width: 22px;
    height: 24px;
    background: url(img/common/icon-search.svg) no-repeat center center / contain;
    display: inline-block;
    margin-right: 8px;
    vertical-align: sub;
}
.content-flex__side-box__search-flex__input{
    width: calc(100% - 65px);
    padding-right: 15px;
}
.content-flex__side-box__search-flex__input input,
.faq-sec01__keyword-flex__input input{
    border: 2px solid #ccc;
    font-size: 14px;
    height: 35px;
    padding: 0 10px;
    width: 100%;
    background-color: #fff;
}
.content-flex__side-box__search-flex__btn{
    width: 65px;
}
.content-flex__side-box__search-flex__btn input,
.faq-sec01__keyword-flex__btn input{
    display: block;
    background-color: var(--blue);
    height: 35px;
    font-size: 11px;
    font-weight: bold;
    color: #fff;
    width: 100%;
    text-align: center;
    border: 1px solid var(--blue);
    transition: var(--transition);
}
@media screen and (min-width: 992px) {
    .content-flex__side-box__search-flex__btn input:hover,
    .faq-sec01__keyword-flex__btn input:hover{
        opacity: 1;
        background-color: #fff;
        color: var(--blue);
    }
}
.content-flex__side-submit{
    margin-top: 30px;
}
.content-flex__side-submit input{
    display: block;
    background-color: var(--blue);
    text-align: center;
    color: #fff;
    padding: 15px 0;
    border-radius: 30px;
    width: 100%;
    font-weight: bold;
    border: 1px solid var(--blue);
    transition: var(--transition);
}
@media screen and (min-width: 992px) {
    .content-flex__side-submit input:hover{
        opacity: 1;
        background-color: #fff;
        color: var(--blue);
    }
}
.content-flex__main-nav{
    margin-top: 50px;
    padding-top: 10px;
    border-top: 1px solid #251e1c;
}
.content-flex__main-nav__flex{
    justify-content: space-between;
}
.content-flex__main-nav__flex-count{
    font-size: 26px;
    font-weight: bold;
}
.content-flex__main-nav__flex-count span{
    font-size: 40px;
    font-weight: bold;
    margin-right: 6px;
    color: var(--blue);
}
.content-flex__main-nav__flex-pagenavi{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.content-flex__main-nav__flex-pagenavi span.page,
.content-flex__main-nav__flex-pagenavi a{
    background-color: #fff;
    font-size: 20px;
    font-weight: bold;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--base-color);
}
.content-flex__main-nav__flex-pagenavi span.current{
    border-color: transparent;
    color: var(--blue);
    pointer-events: none;
}
.content-flex__main-nav__flex-pagenavi a.next{
    width: auto;
    padding-right: 10px;
    padding-left: 10px;
    font-size: 16px;
}
.content-flex__main-nav__flex-pagenavi a img{
    vertical-align: middle;
}
.content-flex__main-nav__flex-pagenavi a.next img{
    margin-left: 15px;
}
.content-flex__main-nav__flex .wp-pagenavi{
    margin-top: 0;
}


/* FAQ */
#page-faq{
    padding-top: 300px;
    background: url(img/faq/mv-bg.webp) no-repeat center top / 100% 1350px;
    min-height: 1350px;
}
#page-faq .page-mv{
    margin-bottom: 100px;
}
.faq-sec01__keyword{
    max-width: 415px;
    width: 100%;
    margin: 0 auto;
}
.faq-sec01__keyword-flex__input input,
.faq-sec01__keyword-flex__btn input{
    height: 45px;
}
.faq-sec01__keyword-flex__btn{
    width: 100px;
}
.faq-sec01__keyword-flex__btn input{
    font-size: 14px;
}
.faq-sec01__keyword-flex__input{
    width: calc(100% - 100px);
    padding-right: 15px;
}
.faq-sec01__content{
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    margin-top: var(--padding);
}
.faq-sec01__content-ttl{
    margin-bottom: 20px;
}
.faq-sec01__content-ttl span{
    font-weight: 500;
    color: var(--blue);
    padding: 0 5px;
}
.faq-sec01__content-ttl em{
    font-style: normal;
    font-size: 20px;
    font-weight: bold;
    color: var(--blue);
    margin-right: 5px;
}
.faq-sec01__content-tab ul,
.top-select__tab ul{
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.faq-sec01__content-tab ul li,
.top-select__tab ul li{
    height: 35px;
    line-height: 30px;
    background-color: #b3b3b3;
    padding: 2px 50px;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    transition: var(--transition);
    letter-spacing: 0.1em;
    cursor: pointer;
}
.faq-sec01__content-tab ul li.current,
.top-select__tab ul li.current{
    /* background: linear-gradient(to right, #005DB1, #203586); */
    background: linear-gradient(to right, var(--blue), #131d6e);
    font-size: 30px;
    height: 60px;
    line-height: 60px;
    margin-top: -25px;
    pointer-events: none;
}
.faq-sec01__content-inner{
    padding: 50px;
    box-shadow: 0 0 15px rgb(0 0 0 / .15);
    background-color: #fff;
}
.faq-sec01__content-box__elm{
    position: relative;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 15px rgb(0 0 0 / .15);
    padding: 15px 30px;
    min-height: 65px;
    cursor: pointer;
    transition: var(--transition);
    margin-bottom: 15px;
}
.faq-sec01__content-box__elm:last-child{
    margin-bottom: 0;
}
.faq-sec01__content-box__elm::before{
    content: "Q";
    position: absolute;
    top: 10px;
    left: 20px;
    color: var(--blue);
    font-family: var(--poppins);
    font-size: 48px;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.1em;
}
.faq-sec01__content-box__elm-ttl{
    font-size: 20px;
    font-weight: bold;
    padding: 0 50px 0 50px;
}
.faq-sec01__content-box__elm-ttl span{
    transition: var(--transition);
}
.faq-sec01__content-box__elm.open{
    padding-bottom: 50px;
    padding-top: 50px;
}
.faq-sec01__content-box__elm.open .faq-sec01__content-box__elm-ttl span{
    opacity: 0;
}
.faq-sec01__content-box__elm-toggle{
    position: absolute;
    top: 20px;
    right: 20px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--blue);
    transition: var(--transition);
}
.faq-sec01__content-box__elm.open .faq-sec01__content-box__elm-toggle{
    width: 45px;
    height: 45px;
}
.faq-sec01__content-box__elm-toggle::before,
.faq-sec01__content-box__elm-toggle::after{
    content: "";
    width: 55%;
    height: 1px;
    background-color: #fff;
    position: absolute;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    transition: var(--transition);
}
.faq-sec01__content-box__elm-toggle::before{
    transform: translate(-50%,-50%) rotate(90deg);
}
.faq-sec01__content-box__elm.open .faq-sec01__content-box__elm-toggle::before{
    transform: translate(-50%,-50%) rotate(45deg);
}
.faq-sec01__content-box__elm.open .faq-sec01__content-box__elm-toggle::after{
    transform: translate(-50%,-50%) rotate(-45deg);
}
.faq-sec01__content-box__elm-inner{
    display: none;
}
.faq-sec01__content-box__elm-inner__question,
.faq-sec01__content-box__elm-inner__answer{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: 490px;
}
.faq-sec01__content-box__elm-inner__question{
    margin-left: auto;
    flex-direction: row-reverse;
}
.faq-sec01__content-box__elm-inner__question-icon{
    width: 82px;
}
.faq-sec01__content-box__elm-inner__answer-icon{
    width: 100px;
}
.faq-sec01__content-box__elm-inner__question-body,
.faq-sec01__content-box__elm-inner__answer-body{
    padding-top: 30px;
}
.faq-sec01__content-box__elm-inner__question-body{
    width: calc(100% - 82px);
    padding-right: 50px;
}
.faq-sec01__content-box__elm-inner__answer-body{
    width: calc(100% - 100px);
    padding-left: 50px;
}
.faq-sec01__content-box__elm-inner__question-body__item,
.faq-sec01__content-box__elm-inner__answer-body__item{
    line-height: 1.5;
    border-radius: 10px;
    border: 2px solid var(--blue);
    position: relative;
}
.faq-sec01__content-box__elm-inner__question-body__item::before,
.faq-sec01__content-box__elm-inner__answer-body__item::before{
    content: "";
    width: 25px;
    height: 25px;
    position: absolute;
    top: 10px;
}
.faq-sec01__content-box__elm-inner__question-body__item::before{
    background: url(img/faq/balloon-right.svg) no-repeat center center / contain;
    right: -20px;
}
.faq-sec01__content-box__elm-inner__answer-body__item::before{
    background: url(img/faq/balloon-left.svg) no-repeat center center / contain;
    left: -20px;
}
.faq-sec01__content-box__elm-inner__question-body__item{
    font-weight: bold;
    padding: 20px 20px 20px 50px;
}
.faq-sec01__content-box__elm-inner__question-body__item::after{
    content: "Q";
    font-family: var(--poppins);
    font-size: 36px;
    line-height: 1;
    position: absolute;
    top: 15px;
    left: 10px;
    color: var(--blue);
    font-weight: 500;
}
.faq-sec01__content-box__elm-inner__answer-body__item{
    font-weight: 500;
    padding: 20px;
    background-color: #ecf6fe;
}



/* ASSESSMENT */
.assessment-sec01__tel{
    color: #fff;
    max-width: 1200px;
    width: 100%;
    margin: -100px auto 0;
    background: url(img/sell/tel-bg.webp) no-repeat center center / cover;
    border-radius: 20px;
    box-shadow: 0 0 15px rgb(0 0 0 / .15);
    padding: 100px 0;
    position: relative;
    z-index: 1;
}
.assessment-sec01__tel-ttl{
    text-align: center;
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 500;
}
.assessment-sec01__tel-flex{
    justify-content: center;
    align-items: flex-end;
    gap: 40px;
}
.assessment-sec01__tel-flex__item-num{
    font-family: var(--poppins);
    font-weight: 500;
    font-size: 80px;
}
.assessment-sec01__tel-flex__item-num,
.assessment-sec01__tel-flex__item-num a{
    line-height: 1.1;
}
.assessment-sec01__tel-flex__item-num a{
    display: inline-block;
}
.assessment-sec01__tel-flex__item-time{
    letter-spacing: 0.1em;
    font-size: 20px;
}
.assessment-sec02__ttl{
    text-align: center;
    margin-bottom: 20px;
}
.assessment-sec02__ttl span{
    background-color: var(--blue);
    color: #fff;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    padding: 5px 100px;
    position: relative;
    filter: drop-shadow(0 0 15px rgb(29 66 148 / .2));
    margin-bottom: 30px;
    display: inline-block;
}
.assessment-sec02__ttl span::before{
    content: "";
    position: absolute;
    transform: translate(-50%,100%);
    left: 50%;
    bottom: 1px;
    width: 20px;
    height: 10px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    background-color: var(--blue);
}
.assessment-sec02__cont-inner{
    box-shadow: 0 0 15px rgb(0 0 0 / .15);
    border-radius: 20px;
    padding: 50px;
    background-color: #fff;
}
.form-wrap dl{
    display: flex;
    flex-wrap: wrap;
}
.form-wrap dl:not(:last-child){
    margin-bottom: 60px;
}
.form-wrap dl dt{
    width: 320px;
    padding-left: 20px;
    border-left: 10px solid var(--blue);
    font-size: 20px;
}
.form-wrap dl dt span.must{
    background-color: #ff0000;
    color: #fff;
    font-size: 18px;
    padding: 0 5px;
    margin-left: 15px;
    display: inline-block;
    line-height: 1.4;
}
.form-wrap dl dd{
    font-size: 20px;
    width: calc(100% - 320px);
}
.form-wrap__checkbox{
    display: flex;
    flex-wrap: wrap;
    gap: 5px 30px;
}
.wpcf7-list-item-label{
    font-size: 18px;
}
.wpcf7-list-item-label::before,
.wpcf7-list-item-label::after{
    top: 7px;
}
.form-wrap dl dd input[type="text"],
.form-wrap dl dd input[type="tel"],
.form-wrap dl dd input[type="email"],
.form-wrap dl dd input[type="search"],
.form-wrap dl dd input[type="date"],
.form-wrap dl dd select{
    width: 100%;
    border: 2px solid #ccc;
    height: 46px;
    max-width: 565px;
    padding: 0 10px;
}
.form-wrap dl dd input[type="date"]{
    width: auto;
    margin-right: 25px;
}
.form-wrap dl dd select{
    max-width: 200px;
    cursor: pointer;
}
.form-wrap dl dd textarea{
    resize: none;
    width: 100%;
    border: 2px solid #ccc;
    height: 230px;
    max-width: 565px;
    padding: 10px 15px;
}
.wpcf7-not-valid-tip{
    font-size: 14px;
    margin-top: 5px;
    font-weight: 500;
}
.assessment-sec02__cont-text{
    text-align: center;
    font-size: 20px;
    margin-top: 60px;
}
.assessment-sec02__cont-text a{
    color: var(--blue);
    text-decoration: underline;
}
.assessment-sec02__cont-btn{
    text-align: center;
    margin-top: 60px;
}
.assessment-sec02__cont-btn input{
    background-color: var(--blue);
    color: #fff;
    font-size: 20px;
    border: 1px solid var(--blue);
    padding: 15px 0;
    width: 100%;
    max-width: 320px;
    transition: var(--transition);
}
@media screen and (min-width: 992px) {
    .assessment-sec02__cont-btn input:hover{
        background-color: #fff;
        color: var(--blue);
    }
}
.assessment-intro-sec__lead{
    text-align: center;
    margin-bottom: 60px;
}
.assessment-intro-sec__lead-text{
    display: inline-block;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.5;
    padding-bottom: 5px;
    letter-spacing: 0.1em;
    position: relative;
    border-bottom: 2px solid var(--blue);
}
.assessment-intro-sec__lead-text::before{
    content: "";
    width: 36px;
    height: 16px;
    position: absolute;
    transform: translate(-50%,100%);
    left: 50%;
    bottom: 0;
    background-color: var(--blue);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.assessment-intro-sec__lead-text span{
    display: inline-block;
    font-size: 32px;
}
.assessment-intro-sec__grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0 50px;
}
.assessment-intro-sec__grid-item__img{
    height: 175px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.assessment-intro-sec__grid-item__ttl{
    margin: 20px 0 5px;
    font-size: 28px;
    letter-spacing: 0.1em;
    font-weight: bold;
}
.assessment-intro-sec__grid-item ul li{
    padding-left: 1em;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.assessment-intro-sec__grid-item ul li::before{
    content: "●";
    color: var(--blue);
}
.assessment-intro-sec__cont{
    color: #fff;
    background: linear-gradient(to right, #0037b1, #0000a0);
    position: relative;
    padding: 160px 0 210px;
    margin-top: 100px;
}
.assessment-intro-sec__cont::before{
    content: "";
    position: absolute;
    transform: translateX(-50%);
    top: -1px;
    left: 50%;
    width: 570px;
    height: 110px;
    background-color: #fff;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    z-index: 1;
}
.assessment-intro-sec__cont-ttl{
    text-align: center;
    font-size: 34px;
    line-height: 1.4;
    font-weight: bold;
    letter-spacing: 0.15em;
    margin-bottom: 50px;
}
.assessment-intro-sec__cont-ttl span{
    font-size: 46px;
}
.assessment-intro-sec__cont-grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0 150px;
}
.assessment-intro-sec__cont-grid__item-lead{
    font-size: 26px;
    font-weight: bold;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
}
.assessment-intro-sec__cont-grid__item-lead span{
    display: inline-block;
    font-weight: 600;
    font-size: 66px;
    line-height: 1;
    font-family: var(--mincho);
    margin-right: 10px;
}
.assessment-intro-sec__cont-grid__item-text{
    letter-spacing: 0.1em;
}



/* NEWS */
.single-sec__header{
    margin-bottom: 60px;
    padding-bottom: 15px;
    border-bottom: 2px dashed #888;
}
.single-sec__header-meta{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 25px;
}
.single-sec__header-meta__date{
    font-weight: bold;
    font-family: var(--poppins);
}
.single-sec__header-meta__cat{
    background-color: var(--blue);
    color: #fff;
    padding: 2px 15px;
    border-radius: 15px;
    font-size: 13px;
}
.single-sec__header-title{
    font-size: 26px;
    font-weight: bold;
}
.single-sec__thumb{
    text-align: center;
    margin-bottom: 50px;
}
.single-sec__body > *:first-child {
    margin-top: 0;
}
.single-sec__body > * {
    margin-bottom: 35px;
}
.single-sec__body > *:last-child {
    margin-bottom: 0;
}
.single-sec__body > h2,
.single-sec__body > h3,
.single-sec__body > h4,
.single-sec__body > h5 {
    margin: 60px 0 15px;
}
.single-sec__body h2 {
    background-color: var(--blue);
    color: #fff;
    padding: 10px 30px;
    font-size: 20px;
    border-radius: 8px;
    font-weight: bold;
}
.single-sec__body h3 {
    border-bottom: 2px solid var(--blue);
    padding-bottom: 5px;
    font-size: 20px;
    font-weight: bold;
    color: var(--blue);
}
.single-sec__body h4,
.single-sec__body h5 {
    font-size: 18px;
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .single-sec__header {
        margin-bottom: 30px;
    }
    .single-sec__header-title {
        font-size: 18px;
    }
    .single-sec__body {
        font-size: 14px;
    }
    .single-sec__body h2 {
        font-size: 16px;
    }
    .single-sec__body h3,
    .single-sec__body h4, .single-sec__body h5 {
        font-size: 16px;
    }
}
.single-sec__view-more{
    margin-top: 60px;
}
.single-sec__view-more a{
    margin: 0 auto;
}


/* ページネーション */
.wp-pagenavi{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px;
    gap: 6px;
}
.wp-pagenavi a,
.wp-pagenavi span{
    margin: 0;
    border: none !important;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    font-weight: 500;
    color: var(--base-color);
    background-color: #fff;
    font-family: var(--poppins);
    letter-spacing: -0.04em;
}
.wp-pagenavi a.current,
.wp-pagenavi span.current{
    pointer-events: none;
    background-color: var(--base-color);
    color: #fff;
}
.wp-pagenavi a.current,
.wp-pagenavi a:hover,
.wp-pagenavi span.current,
.wp-pagenavi span:hover{
    background-color: var(--base-color);
    color: #fff;
    opacity: 1;
}
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink{
    background-color: var(--blue);
}
.wp-pagenavi a.previouspostslink{
    margin-right: 14px;
}
.wp-pagenavi a.nextpostslink{
    margin-left: 14px;
}
.wp-pagenavi a.previouspostslink::before,
.wp-pagenavi a.nextpostslink::before{
    content: "";
    width: 19px;
    height: 17px;
    display: block;
    background: url(img/common/arrow.svg) no-repeat center center / contain;
    -webkit-filter: brightness(0) grayscale(100%) invert(1);
    -moz-filter: brightness(0) grayscale(100%) invert(1);
    -o-filter: brightness(0) grayscale(100%) invert(1);
    -ms-filter: brightness(0) grayscale(100%) invert(1);
    filter: brightness(0) grayscale(100%) invert(1);
}
.wp-pagenavi a.previouspostslink::before{
    transform: scaleX(-1);
}

.house-single-sec__dummy{
    padding: 30px;
    background-color: #fff;
    border-radius: 10px;
}

/* 検索結果 */
.form-result{
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 5px 0;
}
.form-result dl{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.form-result dl::after{
    content: "";
    width: 10px;
    height: 1px;
    background-color: var(--base-color);
    margin: 0 30px;
}
.form-result dl:last-child:after{
    display: none;
}
.form-result dl dd{
    color: var(--blue);
}
.form-result dl dd span{
    color: var(--base-color);
    font-size: 14px;
}

.modified-date__text{
    font-size: 14px;
    color: var(--base-color);
    margin-bottom: 10px;
    text-align: right;
}
.modified-date__text span{
    color: var(--blue);
    font-weight: bold;
}


/* 会社概要 */
.company-sec01 .wrap,
.company-sec02 .wrap,
.company-sec03 .wrap{
    max-width: 1200px;
}
.company-title{
    margin-bottom: 30px;
    font-weight: bold;
    text-align: center;
}
.company-title span{
    display: flex;
    align-items: center;
    font-family: var(--mincho);
    font-size: 38px;
    font-weight: bold;
    line-height: 1.3;
    letter-spacing: 0.15em;
}
.company-title span::before,
.company-title span::after{
    content: "";
    height: 1px;
    background-color: var(--base-color);
    flex-grow: 1;
}
.company-title span::after{
    margin-left: 30px;
}
.company-title span::before{
    margin-right: 30px;
}
.company-sec01__text{
    margin-bottom: 30px;
}
.company-sec01__grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.company-sec01__grid-img{
    position: relative;
}
.company-sec01__grid-img__item img{
    width: 100%;
}
.company-sec01__grid-img__text{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 30px 5px;
    background-color: #fff;
    font-size: 18px;
    font-weight: bold;
    width: max-content;
}
.company-sec02__table table{
    border-collapse: separate;
    border-spacing: 10px 0;
}
.company-sec02__table table th,
.company-sec02__table table td{
    padding: 12px 25px;
}
.company-sec02__table table th{
    border-bottom: 2px solid var(--blue);
    font-weight: bold;
    width: 20%;
}
.company-sec02__table table td{
    border-bottom: 1px solid #ccc;
    width: 80%;
}
.company-sec03__map iframe{
    width: 100%;
    height: 500px;
    vertical-align: bottom;
}



/* お問い合わせ */
.contact-sec01__text{
    text-align: center;
    margin-bottom: 40px;
}


/* プライバシーポリシー */
.policy-sec{
    line-height: 1.8;
    font-weight: 500;
}
.policy-sec__text{
    margin-bottom: 30px;
}
.policy-sec__text.right{
    text-align: right;
    margin-top: 30px;
    margin-bottom: 0;
}
.policy-sec .sin-ul>li{
    margin-bottom: 30px;
}
.policy-sec .sin-ul>li span{
    font-weight: bold;
}
.policy-sec .sec-ul{
    margin-top: 10px;
}
.policy-sec .sec-ul>li{
    font-size: 14px;
    padding-left: 1em;
}
.policy-sec .sec-ul>li::before{
    content: "・";
    margin-left: -1em;
}

.acf-map {
    width: 100%;
    height: 400px;
}
.acf-map img {
   max-width: inherit !important;
}
.acf-map__link{
    margin-top: 30px;
}
.acf-map__link .view-more a{
    margin: 0 auto;
    height: 50px;
    line-height: 45px;
    padding-left: 30px;
    width: 250px;
    border: 2px solid var(--blue);
    background-color: var(--blue);
    color: #fff;
    font-size: 14px;
}
.acf-map__link .view-more a::before{
    display: none;
}
.acf-map__link .view-more a svg{
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 20px;
}
.acf-map__link .view-more a svg *{
    transition: var(--transition);
}
.acf-map__link .view-more a svg circle{
    fill: #fff;
}
.acf-map__link .view-more a svg path{
    fill: var(--blue);
}
@media screen and (min-width: 992px) {
    .acf-map__link .view-more a:hover{
        opacity: 1;
        background-color: #fff;
        border-color: var(--blue);
        color: var(--blue);
    }
    .acf-map__link .view-more a:hover svg circle{
        fill: var(--blue);
    }
    .acf-map__link .view-more a:hover svg path{
        fill: #fff;
    }
}

body.page-service #footer{
    margin-top: 0;
}
body.page-service main{
    padding-bottom: var(--padding);
}


/* WP MEMBER */
.wpmem-sec__form{
    max-width: 700px;
    margin: 0 auto;
    border-radius: 8px;
    background-color: #fff;
    padding: 50px;
    box-shadow: 0 0 10px rgb(0 0 0 / .16);
}
#wpmem_login, #wpmem_msg, #wpmem_reg, .wpmem_msg{
    width: 100%;
}
#wpmem_reg fieldset{
    margin: 0 auto;
}
#wpmem_login legend, #wpmem_reg legend{
    margin-bottom: 30px;
}
#wpmem_login label[for="rememberme"]{
    margin-bottom: 10px;
    display: inline-block;
}
#wpmem_login label:not([for="rememberme"]),
#wpmem_reg label{
    display: inline-block;
    margin-bottom: 5px;
    border-left: 4px solid var(--blue);
    padding-left: 10px;
    font-weight: 500;
}
#wpmem_login .div_text, #wpmem_reg .div_checkbox, #wpmem_reg .div_date, #wpmem_reg .div_file, #wpmem_reg .div_image, #wpmem_reg .div_membership, #wpmem_reg .div_multicheckbox, #wpmem_reg .div_multiselect, #wpmem_reg .div_number, #wpmem_reg .div_radio, #wpmem_reg .div_select, #wpmem_reg .div_text, #wpmem_reg .div_textarea, #wpmem_reg .div_url{
    margin: 0 0 30px 0;
}
#wpmem_login .button_div,
#wpmem_reg .button_div{
    text-align: center;
}
#wpmem_login .button_div input[type="submit"],
#wpmem_reg .button_div input[type="submit"]{
    display: block;
    max-width: 320px;
    margin: 0 auto;
    width: 100%;
    padding: 15px 0;
    text-align: center;
    background-color: var(--blue);
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    border: 1px solid var(--blue);
    cursor: pointer;
    transition: var(--transition);
}
@media screen and (min-width: 992px) {
    #wpmem_login .button_div input[type="submit"]:hover,
    #wpmem_reg .button_div input[type="submit"]:hover{
        background-color: #fff;
        color: var(--blue);
    }
}
#wpmem_login input[type=checkbox]{
    appearance: auto;
    -webkit-appearance: auto;
}
#wpmem_login .link-text{
    margin-top: 30px;
}
#wpmem_login .link-text a{
    text-decoration: underline;
}
.register_status{
    text-align: center;
    margin-bottom: 30px;
}
.register_links{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    max-width: 600px;
    gap: 20px;
}
.register_links li a{
    display: block;
    text-align: center;
    color: #fff;
    padding: 14px 0;
    border-radius: 8px;
}
.register_links li:nth-of-type(1) a{
    background-color: gray;
    border: 1px solid gray;
}
.register_links li:nth-of-type(2) a{
    background-color: var(--blue);
    border: 1px solid var(--blue);
}
@media screen and (min-width: 992px) {
    .register_links li:nth-of-type(1) a:hover{
        color: gray;
    }
    .register_links li:nth-of-type(2) a:hover{
        color: var(--blue);
    }
    .register_links li:nth-of-type(1) a:hover,
    .register_links li:nth-of-type(2) a:hover{
        background-color: #fff;
        opacity: 1;
    }
}
.login_status{
    text-align: center;
}
.login_status a{
    display: block;
    width: 300px;
    margin: 30px auto 0;
    background-color: gray;
    color: #fff;
    border: 1px solid gray;
    padding: 14px 0;
    border-radius: 8px;
    font-size: 14px;
}
@media screen and (min-width: 992px) {
    .login_status a:hover{
        background-color: #fff;
        color: gray;
    }
}
#wpmem_msg, .wpmem_msg{
    margin-bottom: 30px;
}

.maker-land-sec__grid{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}
.maker-land-sec__grid-item{
    cursor: pointer;
    padding: 6px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgb(0 0 0 / .16);
}
.maker-land-sec__grid-item__img{
    overflow: hidden;
    border-radius: 4px;
}
.maker-land-sec__grid-item__img img{
    width: 100%;
    transition: .6s;
}
@media screen and (min-width: 992px) {
    .maker-land-sec__grid-item:hover .maker-land-sec__grid-item__img img{
        transform: scale(1.1);
    }
}
#modal-overlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgb(0 0 0 / .6);
    z-index: 9997;
    display: none;
}
#modal{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 100%;
    max-width: 900px;
    background-color: #fff;
    border-radius: 10px;
    z-index: 9998;
    display: none;
}
.modal-content{
    max-height: 90svh;
    overflow-y: scroll;
    padding: 60px;
    display: none;
    overscroll-behavior: none;
}
.modal-content__img{
    text-align: center;
    margin-bottom: 30px;
}
.modal-content__text{
    margin: 30px 0;
}
.modal-content__link{
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}
.modal-content__link-item a{
    display: inline-block;
    color: var(--blue);
    font-weight: bold;
    text-decoration: underline;
}
.modal-content__link-item::before{
    content: "";
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--blue) url(img/common/arrow-wh.svg) no-repeat center center / 14px;
    display: inline-block;
    margin-right: 10px;
    position: relative;
    top: -3px;
    vertical-align: middle;
    border: 1px solid var(--blue);
}
.house-card__view-more a[data-id]{
    pointer-events: auto;
    cursor: pointer;
    margin: 0 auto;
}
.modal-content .model-house-single__img.grid{
    grid-template-columns: repeat(2,1fr);
}
@media screen and (min-width: 1200px) {
    .modal-content .model-house-single__title{
        font-size: 20px;
    }
    .modal-content .model-house-single__price span:not(.management-price){
        font-size: 12px;
    }
    .modal-content .model-house-single__price{
        font-size: 32px;
        padding-bottom: 15px;
        border-bottom: 1px dashed var(--blue);
    }
    .modal-content .model-house-single__price small{
        font-size: 14px;
    }
}
.modal-content__document{
    margin: 30px 0;
}
.modal-content__document-flex{
    max-width: 350px;
    border: 1px solid var(--blue);
    width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    align-items: center;
    padding: 6px 6px 10px;
    color: var(--blue);
    font-weight: bold;
}
@media screen and (min-width: 992px) {
    .modal-content__document-flex:hover{
        opacity: 1;
        background-color: var(--blue);
        color: #fff;
    }
}
.modal-content__document-flex__img{
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
}
.modal-content__document-flex__img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.modal-content__document-flex__link{
    padding-top: 10px;
    width: 100%;
    text-align: center;
}
.modal-content__document-flex__link small{
    display: block;
    font-size: 14px;
}
.modal-close{
    position: absolute;
    transform: translate(50%,-50%);
    top: 0;
    right: 0;
    z-index: 1;
    border-radius: 50%;
    background-color: #fff;
    width: 50px;
    height: 50px;
    border: 1px solid var(--blue);
    cursor: pointer;
}
.modal-close::before,
.modal-close::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 2px;
    background-color: var(--blue);
}
.modal-close::before{
    transform: translate(-50%,-50%) rotate(45deg);
}
.modal-close::after{
    transform: translate(-50%,-50%) rotate(-45deg);
}
#fixed-bnr{
    position: fixed;
    z-index: 99;
    bottom: 30px;
    right: 30px;
    width: 100%;
    max-width: 340px;
}
#fixed-bnr a{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    height: 80px;
    font-weight: 500;
    color: #fff;
    background: linear-gradient(to right, var(--blue), #0000a0);
    text-align: left;
    line-height: 1.4;
    font-size: 18px;
    box-shadow: 0 0 10px rgb(0 0 0 / .16);
    border-radius: 8px;
    border: 1px solid #fff;
}
#fixed-bnr a span{
    padding-left: 20px;
}
#fixed-bnr a .fixed-bnr__icon{
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    left: 15px;
    width: 70px;
}
#fixed-bnr a::before{
    content: "";
    position: absolute;
    transform: translateY(-50%);
    top: 50%;
    right: 30px;
    width: 30px;
    height: 30px;
    border: 1px solid #fff;
    border-radius: 50%;
    background: url(img/common/arrow.svg) no-repeat center center / 14px;
    -webkit-filter: brightness(0) grayscale(100%) invert(1);
    -moz-filter: brightness(0) grayscale(100%) invert(1);
    -o-filter: brightness(0) grayscale(100%) invert(1);
    -ms-filter: brightness(0) grayscale(100%) invert(1);
    filter: brightness(0) grayscale(100%) invert(1);
}
.fixed-bnr__close{
    position: absolute;
    width: 28px;
    height: 28px;
    border: 1px solid var(--blue);
    background-color: #fff;
    border-radius: 50%;
    z-index: 1;
    transform: translate(50%,-50%);
    top: 0;
    right: 0;
    cursor: pointer;
}
.fixed-bnr__close::before,
.fixed-bnr__close::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    height: 2px;
    background-color: var(--blue);
}
.fixed-bnr__close::before{
    transform: translate(-50%,-50%) rotate(45deg);
}
.fixed-bnr__close::after{
    transform: translate(-50%,-50%) rotate(-45deg);
}
@media screen and (max-width: 991px){
    #modal{
        width: calc(100% - 40px);
    }
    .modal-close{
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
    }
}
@media screen and (max-width: 767px){
    .wpmem-sec__form{
        padding: 35px 25px;
    }
    #wpmem_login legend, #wpmem_reg legend{
        font-size: 18px;
    }
    #wpmem_login fieldset, #wpmem_reg fieldset{
        margin: 0;
    }
    #wpmem_login .button_div input[type="submit"], #wpmem_reg .button_div input[type="submit"]{
        font-size: 14px;
    }
    #fixed-bnr{
        right: 20px;
        bottom: 60px;
    }
    #fixed-bnr a{
        font-size: 10px;
        height: 55px;
    }
    #fixed-bnr a span{
        padding-left: 25px;
    }
    #fixed-bnr a::before{
        width: 20px;
        height: 20px;
        background-size: 8px;
        right: 10px;
    }
    #fixed-bnr a .fixed-bnr__icon{
        width: 40px;
        left: 12px;
    }
    #fixed-bnr{
        max-width: 200px;
    }
}
#logout-btn{
    position: fixed;
    z-index: 99;
    transform: translateY(-50%);
    top: 50%;
    left: 30px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: var(--blue);
    box-shadow: 0 0 10px rgb(0 0 0 / .46);
    border: 2px solid #fff;
    overflow: hidden;
    animation: bounce 2s infinite;
}
@keyframes bounce {
    0%, 100% {
        transform: translateY(-50%) scale(1);
    }
    50% {
        transform: translateY(-50%) scale(1.1);
    }
}
#logout-btn a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    height: 100%;
    color: #fff;
    font-weight: bold;
    font-size: 11px;
    gap: 5px 0;
}
#logout-btn a .logout-btn__icon{
    width: 20px;
    display: block;
    margin: 0 auto;
}
@media screen and (max-width: 767px){
    #logout-btn a .logout-btn__icon{
        width: 16px;
    }
    #logout-btn a{
        font-size: 8px;
    }
    #logout-btn{
        width: 66px;
        height: 66px;
        border-width: 1px;
        box-shadow: 0 0 10px rgb(0 0 0 / .2);
        transform: initial;
        animation: initial;
        right: 10px;
        left: auto;
        bottom: 50px;
        top: auto;
    }
    .modal-content{
        padding: 30px 20px;
    }
    .modal-content .model-house-single__cat{
        margin-bottom: 0;
    }
    .modal-content .model-house-single__title{
        font-size: 16px;
    }
    .modal-content .model-house-single__price span:not(.management-price){
        font-size: 10px;
        line-height: 18px;
        height: 20px;
    }
    .modal-content .model-house-single__price{
        font-size: 26px;
    }
    .modal-content .model-house-single__price small{
        font-size: 9px;
    }
    .modal-content__link-item::before{
        width: 24px;
        height: 24px;
        background-size: 10px;
    }
    .modal-content__link-item a{
        font-size: 14px;
    }
    .modal-content__link{
        flex-direction: column;
        gap: 10px;
        margin-top: 40px;
    }
}


/* Add 2025-07-03 */
.top-house__content{
    background-color: #fff;
}
.top-new{
    margin-top: 100px;
}
.top-house__slider-wrap__text{
    font-size: 34px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: center;
}
.top-house__slider-wrap__text small{
    font-size: 24px;
    font-family: var(--poppins);
    letter-spacing: 0;
}
.company-sec02__table td br.s-up{
    display: none;
}
#footer .footer-content__flex-info__address{
    margin-top: 15px;
    font-size: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
#footer .footer-content__flex-info__address b{
    font-size: 14px;
}
#footer .footer-content__copy{
    position: initial;
    margin-top:-20px;
}
#footer .footer-content__flex-menu{
    position: relative;
    z-index: 1;
}
.top-purchase{
    padding: var(--padding) 0;
    position: relative;
    z-index: 0;
    color: #fff;
}
.top-purchase__bg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: grid;
    grid-template-columns: repeat(3,1fr);
    overflow: hidden;
}
.top-purchase__bg::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.45;
    mix-blend-mode: multiply;
    z-index: 2;
}
.top-purchase__bg-box{
    position: relative;
    height: 100%;
}
.top-purchase__bg-box__img{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.top-purchase__bg-box__text{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 21%;
    z-index: 1;
}
.top-purchase__bg-box__text img{
    width: 100%;
    display: block;
}
.top-purchase__bg-box:nth-of-type(3) .top-purchase__bg-box__text{
    left: auto;
    right: 0;
}
.top-purchase__flex{
    gap: 50px 200px;
}
.top-purchase__flex-ttl{
    font-size: 48px;
    font-family: var(--mincho);
    font-weight: bold;
    line-height: 1.4;
}
.top-purchase__flex-box__lead{
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.6;
    font-family: var(--mincho);
    margin-bottom: 15px;
}
.top-purchase__flex-box__text{
    width: 100%;
    font-size: 18px;
    line-height: 2;
    margin-bottom: 60px;
}
@media screen and (min-width: 992px) {
    .top-purchase__flex-box__text{
        max-width: 380px;
    }
}
.top-purchase__flex-box__tag{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.top-purchase__flex-box__tag span{
    width: 150px;
    display: block;
    border: 4px solid #fff;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    text-align: center;
    padding: 0 0 2px;
}
.top-purchase__flex-box__strength{
    font-size: 70px;
    font-family: var(--mincho);
    line-height: 1.3;
    margin: 10px 0 50px;
}
.assessment-intro-sec__detail{
    display: grid;
    grid-template-columns: repeat(2,1fr);
}
.assessment-intro-sec__detail-box__img{
    position: relative;
}
.assessment-intro-sec__detail-box__img-item{
    position: relative;
    z-index: 0;
}
.assessment-intro-sec__detail-box__img-item::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.25;
    mix-blend-mode: multiply;
}
.assessment-intro-sec__detail-box__img-item img{
    width: 100%;
    height: 500px;
    object-fit: cover;
}
.assessment-intro-sec__detail-box__img-text{
    position: absolute;
    top: 160px;
    left: 0;
    width: 100%;
    text-align: center;
    color: #fff;
    z-index: 1;
    line-height: 1.2;
    font-size: 38px;
    letter-spacing: 0.1em;
    font-family: var(--mincho);
}
.assessment-intro-sec__detail-box__img-text small{
    font-size: 20px;
    position: absolute;
    transform: translate(100%,-50%);
    top: 55%;
    right: 0;
}
.assessment-intro-sec__detail-box__img-text span{
    font-size: 82px;
    display: inline-block;
    position: relative;
}
.assessment-intro-sec__detail-box__cont{
    background: linear-gradient(to right, #0037b1, #0000a0);
    padding: 0 30px;
}
.assessment-intro-sec__detail-box__cont.land{
    background: #00b31d;
}
.assessment-intro-sec__detail-box__cont-flex{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    padding: 30px 0;
    align-items: center;
    border-bottom: 1px solid #fff;
}
.assessment-intro-sec__detail-box__cont-flex:last-child{
    border-bottom: none;
}
.assessment-intro-sec__detail-box__cont-flex__illust{
    text-align: center;
}
.assessment-intro-sec__detail-box__cont-flex__item{
    color: #fff;
}
.assessment-intro-sec__grid-item ul li::before{
    margin-left: -1em;
    color: #fff;
}
.assessment-intro-sec__grid-item__ttl{
    margin-top: 0;
}
.assessment-intro-sec__detail-box__img-ex{
    position: absolute;
    transform: translateX(-50%);
    left: 50%;
    bottom: 35px;
    width: max-content;
    color: #fff;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.6;
}
.assessment-intro-sec__detail-box__cont-flex{
    height: 210px;
}
.assessment-intro-sec__text{
    text-align: center;
    margin: 80px 0;
    font-size: 22px;
    font-weight: bold;
    letter-spacing: 0.1em;
}
.assessment-intro-sec__area{
    background: linear-gradient(to right, #0037b1, #0000a0);
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 15px 10px 15px 30px;
}
.assessment-intro-sec__area dt{
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0.1em;
    width: 160px;
}
.assessment-intro-sec__area dd{
    width: calc(100% - 160px);
    font-size: 17px;
}