@charset "utf-8";
/*	ヘッダーa
---------------------------------*/
:root{
	--header: 60px;
	scroll-padding: var(--header);
    --mc: #303030;
}
@media screen and (min-width: 768px){
    :root{
        --header: 90px;
    }
}
@media screen and (min-width: 1230px){
    :root{
        --header: 130px;
    }
}
.dn{
    display: none;
}
.gjs-dashed .dn{
    display: block;
}

.hd-h1{
    display: none;
}
.click_event{
    pointer-events: none;
}
.gjs-dashed .header{
}
.header{
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 98;
}
.header.open{
    z-index: 101;
}
.home .header{
    display: none;
}
.home .header.header--home{
    display: block;
}
.hd-inr{
    height: 60px;
    padding: 5px 10px;
    position: relative;
}
.hd-inr__cont{
    height: 50px;
}
.hd-logo{
    width: 220px;
    position: relative;
    align-items: center;
    z-index: 1000;
}
.hd-logo a{
    display: block;
    position: relative;
}
.hd-right{
    display: none;
}
.sp-phone{
    margin-bottom: 30px;
}
.sp-phone__txt{
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}
.sp-phone__num{
    font-family: "Noto Sans JP", sans-serif;
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-align: center;
}
.hd-nav{
    height: 100vh;
}
@media screen and (min-width: 768px){
    .hd-inr{
        height: 90px;
        padding: 15px 20px;
    }
    .hd-inr__cont{
        height: auto;
    }
    .hd-logo{
        display: block;
        width: auto;
    }
    .hd-phone01{
        font-size: 3rem;
    }
    .hd-phone01:before{
        width: 22px;
    }
}
@media screen and (min-width: 1300px){
    .hd-inr{
        height: auto;
        padding: 0;
    }
    .hd-logo{
        width: 220px;
        padding-left: 30px;
    }
    .hd-right{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        flex-wrap: wrap;
        -webkit-box-pack: end;
        -ms-flex-pack: end;
        justify-content: flex-end;
        -webkit-align-items: center;
        align-items: center;
    }
    .hd-phone{
    }
    .hd-nav{
        height: auto;
    }
    .hd-nav .li{
        padding-left: 30px;
    }
    .hd-nav .li:first-of-type{
        padding-left: 0;
    }
    .hd-nav .li a{
        display: block;
        text-align: center;
        cursor: pointer;
    }
    .hd-nav .li a p{
        font-size: 1.6rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        line-height: 1;
    }
    .hd-nav .li a p.hd-nav__jp{
        margin-bottom: 5px;
    }
    .hd-nav .li a p.hd-nav__en{
        color: var(--mc);
    }
    .hd-btn{
        width: 400px;
        background-color: var(--mc);
        text-align: center;
        padding: 20px 15px;
        margin-left: 40px;
    }
    .hd-btn a{
        display: block;
    }
    .hd-btn p{
    }
    .hd-btn__txt{
        font-size: 2.4rem;
        font-weight: 900;
        letter-spacing: 0.05em;
        color: #fff;
    }
    .hd-btn__num{
        font-family: "Lato", sans-serif;
        font-size: 3.7rem;
        font-weight: 700;
        letter-spacing: 0.05em;
        line-height: 1;
        color: #fff;
    }
}
@media screen and (min-width: 1400px){
    .hd-inr{
    }
    .hd-logo{
        width: auto;
    }
    .hd-nav .li a p{
        font-size: 1.8rem;
    }
    .hd-btn{
    }
}

/*ハンバーガーボタン*/
.navToggle {
	display: block;
	position: absolute;
	right: 0px;
	top: 0px;
	margin: auto;
	width: 50px;
	height: 50px;
	cursor: pointer;
    z-index: 9999;
}
.navToggle div {
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	width: 25px;
	height: 16px;
}
.navToggle span {
	display: block;
	position: absolute;
	height:2px;
	width:100%;
	background: #ffffff;
	left:0;
	-webkit-transition: .35s ease-in-out;
	-moz-transition: .35s ease-in-out;
	transition: .35s ease-in-out;
}
.navToggle span:nth-child(1) {
	top: 0;
}
.navToggle span:nth-child(2) {
	top: 7px;
}
.navToggle span:nth-child(3) {
	top: 14px;
}
/* ハンバーガーボタン 切り替えアニメーション */
.open .navToggle {
	position: fixed;
    z-index: 10002;
}
.open .navToggle span{
    background: #333333;
}
.open .navToggle span:nth-child(1) {
	top: 7px;
	-webkit-transform: rotate(315deg);
	-moz-transform: rotate(315deg);
	transform: rotate(315deg);
}
.open .navToggle span:nth-child(2) {
	width: 0;
	left: 50%;
}
.open .navToggle span:nth-child(3) {
	top: 7px;
	-webkit-transform: rotate(-315deg);
	-moz-transform: rotate(-315deg);
	transform: rotate(-315deg);
}

/*---------- ハンバーガーメニュー ----------*/
.bg-hum-blue{
    background-color: #f99103;
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 50px;
}
.gjs-dashed .navbar{
    background-color: #fff;
    overflow: scroll;
    height: 100vh;
}
.hd-sp-menu{
    position: absolute;
    top: 0;
    right: 0;
    z-index: 100;
}
.hd-sp-menu.open{
    overflow: scroll;
    max-width: 500px;
    width: 100%;
    height: 100vh;
    background-color: #fff;
}
.gjs-dashed .hd-sp-menu{
    max-width: 500px;
    width: 100%;
}
.navbar{
    background: transparent;
    max-width: 500px;
    width: 100%;
    padding: 22.5px 10px;
    margin-left: auto;
}
.navbar.open{
}
.navbar-dark .navbar-toggler {
    color: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 0px;
    width: 20px;
    height: 15px;
    margin: auto;
    margin-right: 5px;
    box-sizing: border-box;
    position: relative;
}

.navbar-dark .navbar-toggler-icon {
    background-image:none;
    background-color: #000;
    width: 20px;
    height: 2px;
    display: block;
    position: absolute;
    transition: ease .5s;
}

.navbar-toggler-icon:nth-of-type(1) {
    top: 0px;
}

.navbar-toggler-icon:nth-of-type(2) {
    top: 50%;
    transform: translateY(-50%);
}

.navbar-toggler-icon:nth-of-type(3) {
    bottom: 0;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon{
    background-color: #000;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(1) {
    top:8px;
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(3) {
    top: 8px;
    transform: rotate(-45deg);
}
button:focus{
    outline: none;
}
.navbar-collapse{
    padding-top: 30px;
}
.navbar-collapse.show{
}
.navbar-nav{
    margin-bottom: 30px;
}
.nav-item{
    padding: 0 15px;
    border-bottom: solid 1px #C9C9C9;
}
.nav-item:first-of-type{
    border-top: solid 1px #C9C9C9;
}
.nav-item p{
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 50px;
}
.sp-nav__info{
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_hd_sp.jpg);
    padding: 40px 10px;
    margin: 0 -10px -22.5px;
}
.sp-nav__info__ttl{
    text-align: center;
    margin-bottom: 40px;
}
.sp-nav__info__ttl__en{
    font-family: "Alegreya", serif;
    font-size: 4.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #fff;
    line-height: 1;
}
.sp-nav__info__ttl__jp{
    color: #fff;
    font-size: 1.8rem;
}
.sp-nav__info__txt{
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}
.sp-nav__info__btn{
    margin-bottom: 40px;
}
.sp-nav__info__btn__item{
    max-width: 320px;
    width: 100%;
    background-color: rgba(255, 255, 255, .9);
    border-radius: 5px;
    padding: 0 30px;
    margin: 0 auto 30px;
}
.sp-nav__info__btn__item:last-of-type{
    margin-bottom: 0;
}
.sp-nav__info__btn__item a{
    display: block;
}
.sp-nav__info__btn__item p{
    line-height: 60px;
    position: relative;
}
.sp-nav__info__btn__item p:before{
    content: "";
    background: no-repeat center center / contain;
    background-image: url(/system_panel/uploads/images/catchArrow.png);
    width: 30px;
    height: 100%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.sp-nav__info__phone{
    text-align: center;
}
.sp-nav__info__phone__txt{
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 30px;
}
.sp-nav__info__phone__num{
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 900;
    font-size: 4rem;
    line-height: 1;
    color: #fff;
}
@media screen and (min-width: 768px){
    .navbar{
        padding: 30px 15px;
    }
    .navbar-dark .navbar-toggler{
        width: 40px;
        height: 30px;
        margin-right: 10px;
    }
    .navbar-dark .navbar-toggler-icon{
        width: 100%;
        height: 3px;
    }
    .navbar-collapse.show{
        height: calc(100vh - 90px);
    }
    .bg-hum-blue{
        width: 90px;
        height: 90px;
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(1){
        top: 13px;
    }
    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:nth-of-type(3){
        top: 13px;
    }
    .hd-nav__item__cont__a__p{
        font-size: 1.8rem;
    }
    .sp-nav__info{
        padding: 50px 15px;
        margin: 0 -15px -30px;
    }
}
@media screen and (min-width: 1080px){
    .bg-hum-blue{
        display: none;
    }
}

/*	フッター共通コンテンツ
---------------------------------*/
.ft-contact{
    padding: 60px 0;
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_ft.jpg);
}
.ft-contact__ttl{
    text-align: center;
    margin-bottom: 40px;
}
.ft-contact__ttl__en{
    font-family: "Alegreya", serif;
    font-size: 5.0rem;
    font-weight: 600;
    font-style: italic;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}
.ft-contact__ttl__jp{
    font-size: 1.6rem;
    color: #fff;
}
.ft-contact__txt{
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}
.ft-contact__txt strong{
    font-weight: 700;
}
.ft-contact__cont{
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
}
.ft-contact__cont.flex-btw{
    display: block;
}
.ft-contact__subttl{
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}
.ft-contact__mail{
    margin-bottom: 40px;
}
.ft-contact__mail__btn__item{
    max-width: 380px;
    width: 100%;
    background-color: rgba(255, 255, 255, .9);
    border-radius: 5px;
    margin: 0 auto 30px;
}
.ft-contact__mail__btn__item:last-of-type{
    margin-bottom: 0;
}
.ft-contact__mail__btn__item a{
    display: block;
    padding: 0 30px;
}
.ft-contact__mail__btn__item p{
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 4.5;
    color: #222;
    padding-right: 40px;
    position: relative;
}
.ft-contact__mail__btn__item p:before{
    content: "";
    background: no-repeat center center / contain;
    background-image: url(/system_panel/uploads/images/catchArrow.png);
    width: 30px;
    height: 100%;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.ft-contact__tel__num{
    font-family: "Lato", sans-serif;
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    color: #fff;
    text-align: center;
}
.ft-cont{
    position: relative;
    z-index: 1;
}
.ft-cont__inr{
    padding-top: 60px;
}
.ft-cont__inr__info{
    padding-bottom: 40px;
}
.ft-cont__inr__info__ttl{
    margin-bottom: 30px;
}
.ft-cont__inr__info__sns{
    margin-bottom: 20px;
}
.ft-cont__inr__info__add{
    font-size: min(4vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--mc);
}
.ft-cont__inr__info__add strong{
    font-weight: 400;
}
.ft-cont__map{
}
.ft-copy{
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_copy.jpg);
    padding: 20px 15px;
}
@media screen and (min-width: 768px){
    .ft-contact{
        padding: 100px 0;
    }
    .ft-contact__ttl{
        margin-bottom: 60px;
    }
    .ft-contact__ttl__en{
        font-size: 6.4rem;
    }
    .ft-contact__ttl__jp{
        font-size: 1.8rem;
    }
    .ft-contact__txt{
        font-size: 2rem;
        margin-bottom: 80px;
    }
    .ft-contact__txt strong br{
        display: none;
    }
    .ft-contact__subttl{
        font-size: 2.4rem;
        margin-bottom: 30px;
    }
    .ft-contact__mail__btn__item{
        margin: 0 auto 40px;
    }
    .ft-contact__mail__btn__item p{
        font-size: 2rem;
        padding-right: 50px;
    }
    .ft-contact__mail__btn__item p:before{
        width: 40px;
    }
    .ft-contact__tel__num{
        font-size: 5.6rem;
    }
    .ft-cont{
    }
    .ft-cont__inr{
    }
    .ft-cont__inr__info__ttl{
        margin-bottom: 50px;
    }
    .ft-cont__inr__info__add{
        font-size: 2rem;
    }
    .ft-cont__inr__info__add strong br{
        display: none;
    }
    .ft-copy{
        padding: 30px 15px;
    }
}
@media screen and (min-width: 1024px){
    .ft-contact__cont.flex-btw{
        display: flex;
        gap: 0 50px;
    }
    .ft-contact__mail{
        min-width: 380px;
        margin-bottom: 0;
    }
    .ft-cont{
        min-height: min(33.3vw, 640px);
        padding: min(5vw, 80px) 0 30px;
    }
    .ft-cont__inr{
        max-width: 500px;
        width: 50%;
        padding-top: 0;
    }
    .ft-cont__inr__info{
        flex: 1;
        padding: 0;
        margin: 0;
    }
    .ft-cont__map{
        width: 50%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
    }
}
@media screen and (min-width: 1230px){
}

/*	フッター
---------------------------------*/
@media screen and (min-width:768px){
}
@media screen and (min-width:1024px){
}
@media screen and (min-width:1080px){
}

/*	マップ
---------------------------------*/
.access-map{
    width: 100%;
    height: 250px;
}
.access-map iframe{
    width: 100%;
    height: 250px;
}
@media screen and (min-width:768px){
    .access-map{
        height: 400px;
    }
    .access-map iframe{
        height: 400px;
    }
}
@media screen and (min-width:1024px){
    .access-map{
        height: 100%;
    }
    .access-map iframe{
        height: 100%;
    }
}

/*ページトップへ戻るボタン*/
.btn-pagetop {
    width: 50px;
    cursor: pointer;
}
@media screen and (max-width:1023px){
    .btn-pagetop{
        display: none !important;
    }
}
.pagetop-sp{
    display: block;
}
.pagetop-sp a {
    display: block;
    height: 67.5px;
    background-color: #000;
    text-align: center;
    position: relative;
}
.pagetop-sp a div {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 25px;
    height: 25px;
}
.pagetop-sp a div:before {
    content: '';
    border-top: solid 1px #fff;
    border-left: solid 1px #fff;
    width: 25px;
    height: 25px;
    transform: rotate(45deg);
    position: absolute;
    top: 10px;
    left: 0;
}
@media screen and (min-width:1024px) {
    .pagetop-sp {
        display: none;
    }
}

/*コピーライト（ｐタグ）*/
.copyright {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: center;
}
@media screen and (min-width:768px) {
    .copyright {
        font-size: 1.2rem;
    }
}

/*	固定スクロール
---------------------------------*/
.scroll__band{
}
.scroll__band__cont{
    width: 100%;
    position: relative;
    top: 0;
    left: 0;
    z-index: -5;
}
@media screen and (min-width: 768px) {
    .scroll__band{
        height: 600px;
    }
    .scroll__band__cont{
        height: 100vh;
        position: fixed;
    }
    .scroll__band__cont.ojf:before{
        content: none;
    }
    .gjs-dashed .scroll__band__cont{
        height: auto;
        position: relative;
        z-index: 0;
    }
    .gjs-dashed .scroll__band__cont.ojf:before{
        content: "";
        padding-top: 600px;
    }
}

/*	メイン画像
---------------------------------*/
.top-mv{
    padding-top: 60px;
    position: relative;
}
.main-img-otr{
    position: relative;
}
.main-img{
    max-height: 800px;
    height: 70vh;
}
.main-img.ojf:before{
    content: none;
}
@media screen and (min-width:768px){
    .top-mv{
        padding-top: 90px;
    }
    .main-img-otr{
    }
    .main-img{
        max-height: 900px;
        height: 60vh;
    }
}
@media screen and (min-width:1024px){
    .top-mv{
    }
    .main-img-otr{
    }
    .main-img{
        max-height: 960px;
        height: min(70vw, 95vh);
    }
}
@media screen and (min-width:1080px){
}
@media screen and (min-width:1300px){
    .top-mv{
        padding-top: 140px;
    }
}

/*	トップページ
---------------------------------*/
.por{
    position: relative;
}
.bg-white{
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -4;
}
.bg-green{
    background-color: var(--mc);
}
.top-overflow{
    overflow: hidden;
}
.top-ttl{
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}
.top-ttl.left{
    text-align: left;
}
.top-ttl .ttl-cmn01{
    line-height: 1;
    position: relative;
}
.top-ttl__en{
    font-size: 8rem;
    font-weight: 700;
    color: transparent;
    line-height: 1;
	-webkit-text-stroke: 1px var(--mc);
    text-shadow: -4px 4px rgba(173, 198, 225, .6);
    margin-bottom: 10px;
    position: relative;
}
.top-ttl__jp{
    font-weight: 700;
}
.top-ttl.vertical{
    display: flex;
    align-items: flex-end;
}
.top-ttl.vertical .top-ttl__jp,
.top-ttl.vertical .top-ttl__en{
    writing-mode: vertical-rl;
    margin: 0;
}
.top-ttl.white .top-ttl__jp{
    color: #fff;
}
.top-ttl.white .top-ttl__en{
	-webkit-text-stroke: 1px #fff;
    text-shadow: -4px 4px rgba(246, 246, 246, .6);
}
.top-ttl.mb0{
    margin-bottom: 0;
}

.top-news{
    max-width: 1000px;
    width: calc(100% - 30px);
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
    padding: 20px 15px;
    margin: -20px auto 0;
    position: relative;
    z-index: 1;
}
.top-news-inr{
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}
.top-news-inr.flex-btw{
    display: block;
}
.top-news .webgene-item .blogdate{
    color: var(--mc);
    margin-right: 15px;
}
.top-news .webgene-item .blogcate{
    min-width: 100px;
    background-color: var(--mc);
    border-radius: 5px;
    font-size: 1.4rem;
    font-weight: 500;
    color: #fff;
    line-height: 1.786;
    text-align: center;
    padding: 0 10px;
}
.top-news .webgene-item .blogttl{
    width: 100%;
    letter-spacing: 0.05em;
    padding-right: 45px;
    margin-top: 10px;
    position: relative;
}
.top-news .webgene-item .blogttl:before{
    content: '';
    background: no-repeat center center / contain;
    background-image: url(/system_panel/uploads/images/icon_arrow01.png);
    width: 35px;
    height: 24.89px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.top-news__right{
    width: 100%;
    text-align: right;
}
.top-news__btn{
    display: inline-block;
}
.top-news__btn a{
    display: block;
}
.top-news__btn p{
    letter-spacing: 0.05em;
    color: #fff;
}
.top-concept{
    padding: 100px 0;
    position: relative;
}
.top-concept__cont{
    position: relative;
}
.top-concept__cont.flex-btw{
    display: block;
}
.top-concept__ttl{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0 30px;
    margin-bottom: 60px;
}
.top-concept__ttl .top-ttl{
    margin-bottom: 0;
}
.top-concept__icon{
    max-width: max-content;
    flex: 1;
}
.top-concept__info__ttl{
    margin-bottom: 50px;
}
.top-concept__info__ttl strong{
    font-weight: 700;
}
.top-concept__info__txt{
    margin-bottom: 50px;
}
.top-concept__cont__bg{
    width: 70vw;
    height: 80%;
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_top_concept01.jpg);
    margin-left: calc(50% - 50vw);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.top-service__cont{
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_top_service01.jpg);
    padding: 120px 0;
}
.top-service__cont--02{
    background-image: url(/system_panel/uploads/images/bg_top_service02.jpg);
}
.top-service__cont__item.flex-btw{
    display: block;
}
.top-service__cont__item__info{
    margin-bottom: 60px;
}
.top-service__cont__item__info__ttl{
    color: #fff;
    margin-bottom: 50px;
}
.top-service__cont__item__info__ttl.ttl-cmn02{
    font-size: min(7vw, 3rem);
}
.top-service__cont__item__info__txt{
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
    margin-bottom: 60px;
}
.top-service__cont__item__img{
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
}
.top-service__cont__item__img__inr.ojf:before{
    padding-top: 62.5%;
}
.top-service__cont__item__img__inr img{
    border-radius: 10px;
}
.top-search{
    padding-top: 100px;
}
.top-search__box{
    padding-bottom: 60px;
    position: relative;
}
.top-search__cont{
    margin-bottom: 40px;
}
.top-search__cont.flex-btw{
    display: block;
}
.top-search__info{
    margin-bottom: 40px;
}
.top-search__slider__inr{
    margin-right: -15px;
}
.top-search__slider__img{
    margin-right: 40px;
}
.top-search__slider__img.ojf:before{
    padding-top: 66.7%;
}
.top-search__slider .slick-list{
    padding-right: min(8%, 140px);
}
.top-search .btn-cmn01__wrap{
    text-align: left;
}
.top-search__box__bg{
    width: 81.25vw;
    height: 80%;
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_top_concept01.jpg);
    position: absolute;
    bottom: 0;
    left: calc(50% - 50vw);
    z-index: -1;
}
.top-search__box__icon{
    max-width: max-content;
    width: 180px;
    position: absolute;
    top: 120px;
    right: 0;
}
.top-company{
    padding-top: 100px;
    position: relative;
}
.top-company__cont.flex-btw{
    display: block;
}
.top-company__cont__info{
    margin-bottom: 60px;
}
.top-company__cont__info__ttl{
    margin-bottom: 50px;
}
.top-company__cont__info__txt{
    margin-bottom: 60px;
}
.top-company__cont__info .btn-cmn01__wrap{
    text-align: left;
}
.top-company__cont__img{
    max-width: 840px;
    width: 100%;
    margin: 0 auto;
}
.top-company__cont__img__inr.ojf:before{
    padding-top: 71.4%;
}
.top-company__bg{
    width: 73vw;
    height: 65%;
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_top_company01.jpg);
    position: absolute;
    top: 230px;
    right: calc(50% - 50vw);
    z-index: -1;
}
.top-news--box{
    padding: 100px 0;
    position: relative;
}
.top-news--box__cont.flex-btw{
    display: block;
}
.top-news--box__cont__left{
    margin-bottom: 70px;
}
.top-news--box__cont__right{
    margin-bottom: 40px;
}
.top-news--box__cont__right .webgene-blog{
    margin-bottom: 50px;
}
.top-news--box__cont__right .webgene-item{
    border-bottom: solid 1px rgba(195, 195, 195, .2);
}
.top-news--box__cont__right .webgene-item a{
    display: block;
    padding: 10px 0;
}
.top-news--box__cont__right .blog-item .blogdate{
    font-size: 1.4rem;
    padding: 0 30px 0 0;
}
.top-news--box__cont__right .blog-item .blogcate{
    min-width: 100px;
    background-color: var(--mc);
    border-radius: 5px;
    font-size: 1.4rem;
    color: #fff;
    line-height: 2;
    text-align: center;
}
.top-news--box__cont__right .blog-item .blogttl{
    width: 100%;
    margin-top: 5px;
}
@media screen and (min-width:768px){
    .top-ttl{
        margin-bottom: 100px;
    }
    .top-ttl__en{
        font-size: 16rem;
    }
    .top-ttl .ttl-cmn01{
    }
    .top-news{
        width: 90%;
        box-shadow: none;
        border-radius: 10px 0 0 0;
        padding: 30px 15px;
        margin: 0;
        position: absolute;
        bottom: 0;
        right: 0;
    }
    .top-news-inr.flex-btw{
        display: flex;
    }
    .top-news .webgene-blog{
        flex: 1;
    }
    .top-news .webgene-item .blogttl{
        flex: 1;
        width: auto;
        padding-right: 55px;
        margin-top: 0;
        margin-left: 60px;
    }
    .top-news .webgene-item .blogttl:before{
        width: 45px;
        height: 32px;
    }
    .top-news__right{
        width: 100%;
        text-align: left;
    }
    .top-news{
    }
    .top-news .webgene-blog{
        flex: 1;
    }
    .top-news__right{
        width: auto;
    }
    .top-news .webgene-item .blogdate{
        margin-right: 40px;
    }
    .top-concept{
        padding: 150px 0;
    }
    .top-concept__info__ttl{
        margin-bottom: 80px;
    }
    .top-concept__info__ttl strong br{
        display: none;
    }
    .top-concept__info__ttl.ttl-cmn02{
        font-size: min(5.5vw, 4.8rem);
    }
    .top-concept__info__txt{
        margin-bottom: 80px;
    }
    .top-service__cont{
        padding: 200px 0;
    }
    .top-service__cont__item__info__ttl{
        margin-bottom: 80px;
    }
    .top-service__cont__item__info__ttl.ttl-cmn02{
        font-size: 4.8rem;
    }
    .top-service__cont__item__info__txt{
        margin-bottom: 100px;
    }
    .top-service__cont__item__info .btn-cmn01__wrap{
        text-align: left;
    }
    .top-search{
        padding-top: 150px;
    }
    .top-search__cont{
        margin-bottom: 50px;
    }
    .top-search__slider__img{
        margin-right: 80px;
    }
    .top-search__box__icon{
        width: 45%;
        top: 250px;
    }
    .top-company{
        padding-top: 150px;
    }
    .top-company__cont__info__ttl{
        margin-bottom: 80px;
    }
    .top-company__cont__info__txt{
        margin-bottom: 100px;
    }
    .top-news--box{
        padding: 160px 0;
    }
    .top-news--box__cont__right .webgene-blog{
        margin-bottom: 80px;
    }
    .top-news--box__cont__right .webgene-item a{
        padding: 15px 0;
    }
    .top-news--box__cont__right .blog-item .blogdate{
        font-size: 1.6rem;
        padding-left: 15px;
    }
    .top-news--box__cont__right .blog-item .blogcate{
        min-width: 120px;
        font-size: 1.6rem;
    }
    .top-news--box__cont__right .blog-item .blogttl{
        padding: 0 15px;
    }
}
@media screen and (min-width:1024px){
    .top-concept__cont.flex-btw{
        display: flex;
    }
    .top-concept__ttl{
        display: block;
        margin-bottom: 0;
    }
    .top-concept__ttl .top-ttl{
        margin-bottom: 100px;
    }
    .top-concept__info{
        max-width: 780px;
        flex: 1;
    }
    .top-concept__info__ttl.ttl-cmn02{
        font-size: min(4vw, 4.8rem);
    }
    .top-concept__info .btn-cmn01__wrap{
        text-align: right;
    }
    .top-service__cont__item.flex-btw{
        display: flex;
        gap: 0 60px;
    }
    .top-service__cont__item__info{
        width: 50%;
        margin: 0;
    }
    .top-service__cont__item__info__ttl.ttl-cmn02{
        font-size: min(4vw, 4.8rem);
    }
    .top-service__cont__item__img{
        flex: 1;
        width: auto;
        margin: 0;
    }
    .top-search__box{
        padding-bottom: 100px;
        margin-bottom: 100px;
    }
    .top-search__cont.flex-btw{
        display: flex;
        gap: 0 80px;
    }
    .top-search__info{
        flex: 1;
        width: auto;
        margin-bottom: 0;
    }
    .top-search__slider{
        max-width: 750px;
        width: 62.5%;
    }
    .top-search__box__icon{
        top: auto;
        bottom: -100px;
    }
    .top-company__cont.flex-btw{
        display: flex;
        gap: 0 60px;
        -webkit-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
    .top-company__cont__info{
        max-width: 700px;
        flex: 1;
        margin: 0;
    }
    .top-company__cont__info__ttl.ttl-cmn02{
        font-size: min(3.5vw, 4.8rem);
    }
    .top-company__cont__img{
        max-width: 480px;
        width: 40%;
    }
    .top-company__cont__img__inr{
        margin-left: -15px;
    }
    .top-news--box__cont.flex-btw{
        display: flex;
        gap: 0 30px;
    }
    .top-news--box__cont__left{
        min-width: 320px;
        margin-bottom: 0;
    }
    .top-news--box__cont__right{
        flex: 1;
        padding-top: 100px;
        margin-bottom: 0;
    }
    .top-news--box__cont__right .webgene-item a{
        padding: 15px;
    }
    .top-news--box__cont__right .blog-item .blogdate{
        padding: 0 15px 0 0;
    }
    .top-news--box__cont__right .blog-item .blogttl{
        padding: 0;
    }
    .top-news--box__cont__right .btn-cmn01__wrap{
        text-align: right;
    }
}
@media screen and (min-width:1230px){
    .top-search__slider__inr{
        margin-right: max(calc((1200px - 100vw) / 2), -360px);
    }
    .top-company__cont__img__inr{
        margin-left: max(calc((1200px - 100vw) / 2), -360px);
    }
}

/*	ローディング画面
---------------------------------*/
.loading-cont{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-cont.hide{
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
@media screen and (min-width:1024px){
    .loading-cont__wrap{
        display: none;
    }
    .loading-cont{
        background-color: transparent;
    }
    .loading-cont__wrap .loading-img{
        display: none;
    }
}

/*	下層ヘッダー
---------------------------------*/
.sub{
    margin-top: 60px;
}
.subhd{
    margin-top: 60px;
    position: relative;
}
.subhd__img{
    max-height: 480px;
    height: 100vw;
}
.subhd__img.ojf:before{
    content: none;
}
.subhd-info{
    max-width: 1200px;
    width: calc(100% - 30px);
    position: absolute;
    top: 50%;
    left: 15px;
    transform: translateY(-50%);
}
.subhd-ttl{
    max-width: 100%;
    width: max-content;
    margin-bottom: 60px;
}
.subttl__en{
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    padding-bottom: 20px;
    margin-bottom: 20px;
    position: relative;
}
.subttl__en:before{
    content: "";
    background-color: var(--mc);
    width: 30px;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
}
.subttl__en:after{
    content: "";
    background-color: #fff;
    width: 90px;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 30px;
}
.subttl__jp{
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #fff;
}
.subhd-info__txt{
    font-weight: 700;
    color: #fff;
}
@media screen and (min-width:768px){
    .sub{
        margin-top: 90px;
    }
    .subhd{
        margin-top: 90px;
    }
    .subhd__img{
        max-height: 650px;
        height: 65vw;
    }
    .subhd-ttl{
        margin-bottom: 100px;
    }
    .subttl__jp{
    }
    .subttl__en{
        font-size: 5.6rem;
    }
}
@media screen and (min-width:1024px){
    .sub{
        margin-top: 122px;
    }
    .subhd{
    }
    .subhd__img{
    }
    .subhd-ttl{
    }
}
@media screen and (min-width:1080px){
}
@media screen and (min-width:1230px){
    .subhd-info{
        left: calc((100vw - 1200px) / 2);
    }
}
@media screen and (min-width:1300px){
    .subhd{
        margin-top: 140px;
    }
    .subhd-ttl{
    }
}

/*	共通バーツ
---------------------------------*/
@media screen and (min-width:768px){
}
@media screen and (min-width:1024px){
}

/*	私たちについて
---------------------------------*/
.about-catch{
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_about_catch01.jpg);
    padding: min(20vw, 120px) 0;
    margin-top: 60px;
}
.about-catch__ttl{
    margin-bottom: 40px;
}
.about-catch__ttl strong{
    font-weight: 700;
}
.about-catch__txt{
    font-weight: 700;
}
.about-features{
    padding: 100px 0;
}
.about-features__cont{
    padding-bottom: 100px;
    position: relative;
}
.about-features__cont.flex-btw{
    display: block;
}
.about-features__ttl{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 0 30px;
    margin-bottom: 60px;
}
.about-features__ttl .top-ttl{
    margin-bottom: 0;
}
.about-features__icon{
    max-width: max-content;
    flex: 1;
}
.about-features__item{
    margin-bottom: 50px;
}
.about-features__item:last-of-type{
    margin-bottom: 0;
}
.about-features__item__info{
    padding-top: 20px;
}
.about-features__item__info__ttl{
    color: var(--mc);
    margin-bottom: 30px;
}
.about-features__item__info__txt{
    margin-bottom: 30px;
}
.about-features__item__info__img{
    max-width: 600px;
}
.about-features__item__info__img.ojf:before{
    padding-top: 66.7%;
}
.about-features__bg{
    width: 70vw;
    height: 92%;
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_about_features01.jpg);
    margin-left: calc(50% - 50vw);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.about-service{
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_about_service01.jpg);
    padding: 100px 0;
}
.about-service__cont{
    margin-bottom: 60px;
}
.about-service__cont:last-of-type{
    margin-bottom: 0;
}
.about-service__cont.flex-btw{
    display: block;
}
.about-service__info{
    margin-bottom: 50px;
}
.about-service__info__ttl{
    color: #fff;
    margin-bottom: 40px;
}
.about-service__info__txt{
    color: #fff;
    margin-bottom: 30px;
}
.about-service__info .btn-cmn01__wrap{
    text-align: left;
}
.about-service__img{
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
}
.about-service__img__inr.ojf:before{
    padding-top: 62.5%;
}
.about-service__img__inr img{
    border-radius: 10px;
}
.about-reform{
    padding: 80px 0;
}
.about-reform__ttl{
    margin-bottom: 60px;
}
.about-reform__ttl.ttl-cmn02{
    font-size: min(6vw, 3rem);
}
.about-reform__ttl strong{
    font-weight: 700;
}
.about-reform__item.flex-btw{
    display: block;
}
.about-reform__item__info{
    margin-bottom: 50px;
}
.about-reform__item__txt{
    line-height: 2.22;
}
.about-reform__item__img{
    max-width: 640px;
    margin: 0 auto;
}
.about-reform__item__img__inr.ojf:before{
    padding-top: 75%;
}
@media screen and (min-width:768px){
    .about-catch{
        padding: min(15vw, 240px) 0;
        margin-top: 90px;
    }
    .about-catch__ttl{
        font-size: min(6vw, 4.8rem);
        margin-bottom: 70px;
    }
    .about-catch__ttl strong br{
        display: none;
    }
    .about-features{
        padding: 160px 0;
    }
    .about-features__cont{
        padding-bottom: 160px;
    }
    .about-features__item{
        margin-bottom: 80px;
    }
    .about-features__item.flex-btw{
        display: block;
    }
    .about-features__item__icon{
        width: 80px;
    }
    .about-features__item.flex-btw{
        display: flex;
        gap: 0 50px;
    }
    .about-features__item__info{
        flex: 1;
    }
    .about-features__item__info__ttl{
        margin-bottom: 40px;
    }
    .about-features__item__info__txt{
        margin-bottom: 40px;
    }
    .about-service{
        padding: 160px 0;
    }
    .about-service__cont{
        margin-bottom: 80px;
    }
    .about-service__info{
        color: #fff;
        margin-bottom: 60px;
    }
    .about-service__info__txt{
        margin-bottom: 40px;
    }
    .about-reform{
        padding: 120px 0;
    }
    .about-reform__ttl.ttl-cmn02{
        font-size: 4.8rem;
    }
}
@media screen and (min-width:1024px){
    .about-features__cont.flex-btw{
        display: flex;
        gap: 0 70px;
    }
    .about-features__ttl{
        display: block;
        margin-bottom: 0;
    }
    .about-features__ttl .top-ttl{
        margin-bottom: 100px;
    }
    .about-features__list{
        max-width: 800px;
        flex: 1;
        padding-top: 270px;
    }
    .about-service__cont.flex-btw{
        display: flex;
        gap: 0 50px;
    }
    .about-service__info{
        flex: 1;
        margin: 0;
    }
    .about-service__img{
        width: 45%;
        margin: 0;
    }
    .about-service__cont:nth-of-type(2n){
        -webkit-flex-direction: row-reverse;
        flex-direction: row-reverse;
    }
    .about-reform__ttl strong br{
        display: none;
    }
    .about-reform__item.flex-btw{
        display: flex;
        gap: 0 50px;
    }
    .about-reform__item__info{
        flex: 1;
        margin: 0;
    }
    .about-reform__item__img{
        width: 50%;
        margin: 0;
    }
}
@media screen and (min-width:1080px){
}
@media screen and (min-width:1230px){
    .about-catch{
        min-height: min(70vw, 1300px);
        margin-top: 140px;
    }
    .about-service__img{
        width: 50%;
    }
}

/*	土地・建物を“売りたい”
---------------------------------*/
.service-worry{
    padding: 100px 0;
}
.service-worry__ttl{
    text-align: center;
    margin-bottom: 50px;
}
.service-worry__cont{
    max-width: 1100px;
    width: 100%;
    margin: 0 auto 60px;
}
.service-worry__cont.flex-btw{
    display: block;
}
.service-worry__img{
    max-width: max-content;
    width: 70%;
    position: relative;
}
.service-worry__img__inr{
    box-shadow: 0 2px 15px rgba(0, 78, 162, .30);
}
.service-worry__info{
    max-width: 800px;
    width: 95%;
    background-color: #F2F4F7;
    box-shadow: 0 2px 15px rgba(0, 78, 162, .30);
    padding: 80px 15px 40px;
    margin-top: -40px;
    margin-left: auto;
}
.service-worry__info__txt{
    padding-left: 40px;
    margin-bottom: 20px;
    position: relative;
}
.service-worry__info__txt:before{
    content: '';
    background: no-repeat center center / contain;
    background-image: url(/system_panel/uploads/images/icon_check01.png);
    width: 30px;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
}
.service-worry__catch{
    text-align: center;
}
.service-worry__catch__txt{
    display: inline-block;
    color: var(--mc);
    position: relative;
}
.service-worry__catch__txt span{
    display: inline-block;
    background-image: radial-gradient(circle at center, var(--mc) 20%, transparent 20%);
    background-position: top right;
    background-repeat: repeat-x;
    background-size: 1.06em 0.3em;
    line-height: 1;
    padding-top: .4em;
    margin-top: 10px;
}
.service-worry__catch__txt strong{
    font-size: 5rem;
    font-weight: 700;
    line-height: 1;
}
.service-worry__catch__txt:before{
    content: '';
    background: no-repeat center center / contain;
    background-image: url(/system_panel/uploads/images/bg_sell_worry_catch.png);
    width: 150%;
    height: 60%;
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.service-catch{
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_contact.jpg);
    padding: 80px 0;
}
.service-catch__cont.flex-btw{
    display: block;
}
.service-catch__info{
    margin-bottom: 60px;
}
.service-catch__ttl{
    margin-bottom: 50px;
}
.service-catch__ttl.ttl-cmn02{
    font-size: min(5.5vw, 3rem);
}
.service-catch__img{
    max-width: max-content;
    width: 70%;
    margin: 0 auto;
}
.service-flow{
    padding: 100px 0;
}
.service-flow__item{
    border-radius: 5px;
    box-shadow: 0 2px 15px rgba(0, 78, 162, .30);
    padding: 30px 15px;
    margin-bottom: 40px;
}
.service-flow__item:last-of-type{
    margin-bottom: 0;
}
.service-flow__item__inr{
    max-width: 1120px;
    width: 100%;
    margin: 0 auto;
}
.service-flow__item__inr.flex-btw{
    display: block;
}
.service-flow__img{
    margin-bottom: 30px;
}
.service-flow__info__ttl{
    color: var(--mc);
    margin-bottom: 20px;
}
.service-contact{
    background: no-repeat center center / cover;
    background-image: url(/system_panel/uploads/images/bg_contact.jpg);
    padding: 100px 0;
}
.service-contact__txt{
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 60px;
}
.service-privacy__ttl{
    font-size: 2.6rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 30px;
}
@media screen and (min-width:768px){
    .service-worry{
        padding: 160px 0;
    }
    .service-worry__ttl{
        margin-bottom: 70px;
    }
    .service-worry__info__txt{
        padding-left: 80px;
    }
    .service-worry__info__txt:before{
        width: 37px;
        height: 30px;
    }
    .service-worry__catch__txt strong{
        font-size: 6.6rem;
    }
    .service-catch{
        padding: 120px 0;
    }
    .service-catch__ttl.ttl-cmn02{
        font-size: min(5.5vw, 4.8rem);
    }
    .service-flow{
        padding: 160px 0;
    }
    .service-flow__item{
        padding: 50px 15px;
        margin-bottom: 60px;
    }
    .service-flow__item__inr.flex-btw{
        display: flex;
        gap: 0 50px;
    }
    .service-flow__img{
        margin: 0;
    }
    .service-flow__info{
        flex: 1;
    }
    .service-flow__info__ttl{
        margin-bottom: 30px;
    }
    .service-contact{
        padding: 160px 0;
    }
    .service-contact__txt{
        font-size: 2rem;
        margin-bottom: 100px;
    }
    .service-privacy__ttl{
        font-size: 3.2rem;
        margin-bottom: 40px;
    }
}
@media screen and (min-width:1024px){
    .service-worry__cont{
        margin-bottom: 100px;
    }
    .service-worry__cont.flex-btw{
        display: flex;
    }
    .service-worry__img{
        width: 400px;
    }
    .service-worry__info{
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;
        min-height: 400px;
        padding: 40px 15px 40px 100px;
        margin-top: 40px;
        margin-left: -70px;
    }
    .service-worry__info__inr{
        width: 100%;
    }
    .service-worry__catch__txt span{
        margin-top: 0;
    }
    .service-worry__catch__txt:before{
        width: 100%;
        height: 130%;
    }
    .service-catch__cont.flex-btw{
        display: flex;
        gap: 0 50px;
    }
    .service-catch__info{
        width: 55%;
        margin: 0;
    }
    .service-catch__ttl{
        margin-bottom: 80px;
    }
    .service-catch__ttl.ttl-cmn02{
        font-size: min(2.6vw, 4.8rem);
    }
    .service-catch__img{
        flex: 1;
        width: auto;
        margin: 0;
    }
    .service-flow__item__inr.flex-btw{
        gap: 0 80px;
    }
}
@media screen and (min-width:1080px){
}