@charset "UTF-8";

/*********************

common

*********************/

body {
    margin: 0;
    padding: 0;
    /* font-family: "kinto-sans", sans-serif; */
    font-family: "FP-こぶりなゴシック StdN W3,FP-こぶりなゴシック StdN W6", sans-serif;
    color: #333333;
}

.grecaptcha-badge { visibility: hidden; }

h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dd,
dt,
ul,
li {
    margin: 0;
    padding: 0;
}

ul,
li {
    list-style: none;
}

h1 {
    font-size: 48px;
    line-height: 1.3em;
    letter-spacing: 0.1em;
}

h2 {
    font-size: 28px;
    line-height: 1.3em;
    letter-spacing: 0.1em;
}

h3 {
    font-size: 24px;
    line-height: 1.3em;
    letter-spacing: 0.1em;
}

h4 {
    font-size: 18px;
    line-height: 1.3em;
    letter-spacing: 0.1em;
}

a {
    font-size: 14px;
    text-decoration: none;
}

p {
    font-size: 14px;
    line-height: 28px;
    letter-spacing: .12em;
}

.wrapper {
    margin: 0 auto;
    width: 980px;
}

.sub__title h2 {
    position: relative;
    line-height: 48px;
    padding-left: 24px;
    font-size: 20px;
}

.sub__title h2 span {
    background-color: rgb(182, 169, 124, .5);
    border-radius: 30px;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 50px;
    width: 50px;
    z-index: -1;
}

@media screen and (max-width: 840px) {
    .wrapper {
        margin: 0 auto;
        width: 85vw;
    }
    .sub__title h2 {
        font-size: 4.2vw;
        padding-left: 4.8vw;
    }
    p {
        font-size: 3.2vw;
        line-height: 28px;
        letter-spacing: .03em;
    }
    .sub__title h2 span {
        height: 10vw;
        width: 10vw;
    }

}


/*********************

header

*********************/

header {
    position: fixed;
    height: 40px;
    width: 100%;
    z-index: 1;
}

.header-wrapper {
    display: flex;
    justify-content: space-between;
    padding: 16px 48px 0 48px;
}

.header-wrapper__logo {
    height: 40px;
    width: 120px;
}

.header-wrapper__logo img {
    display: block;
    object-fit: contain;
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 560px) {
    .header-wrapper {
        padding: 0;
    }
    .header-wrapper__logo {
        height: 10vw;
        width: 30vw;
    }    
    header {
        height: auto;
    }    
}

/*********************

main-content

*********************/

main {
    background-color: #eaeaea;
    width: 100%;
    height: calc(var(--vh, 1vh) * 100);
    height: 100dvh;
}

.main-content {
    background-color: #ffffff;
    margin: 0 auto;
    height: calc(var(--vh, 1vh) * 100);
    height: 100dvh;
    position: relative;  
    width: 360px;
}

@media screen and (max-width: 560px) {
    .main-content {
        width: 100%;
    }
}

/*********************

contact

*********************/

.contact {
    position: absolute;
    padding: 16px 0;
    bottom: 0;
    background-color: #ffffff;
    width: 100%;
}

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

.contact-btn a.request {
    background-color: #2E6A9D;
    box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.35);
    border-radius: 60px;
    color: #fff;
    display: flex;
    justify-content: center;
    padding: 8px 0;
    position: relative;
    width: 320px;
}

.contact-btn p {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    line-height: 38px;
    padding-left: 24px;    
    letter-spacing: .2em;
}

span.circle {
    align-items: center;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    font-size: 24px;
    justify-content: center;
    position: absolute;
    left: 5px;
    top: 4px;
    height: 44px;
    width: 44px;
}

span.circle svg {
    color: #2E6A9D;
}


@media screen and (max-width: 840px) {
    .contact-list ul {
        flex-direction: column;
    }
    .contact-btn a.request {
        width: 80vw;
    }
    .contact-btn a.request span.circle {
        height: 10vw;
        width: 10vw;
        top: 1.2vw;
    }
    .contact-btn a.consultation {
        padding: 3.2vw 0;
        margin: 0 auto;
        width: 80vw;
    }
}


/*********************

hero

*********************/

.hero {
    background: url(../images/ref-bg.png) no-repeat;
    background-size: cover;
    position: relative;
    height: 100%;
    width: 100%;
}

.hero__inner--circle {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.hero__inner--circle-out {
    border: 1px solid #ffffff;
    border-radius: 50%;
    margin: 0 auto;
    height: 340px;
    width: 340px;
}

.hero__inner--circle-in {
    background-color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    text-align: center;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    height: 320px;
    width: 320px;
}

.hero__inner-txt {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    width: 300px;
}

.hero__inner-txt p {
    align-items: flex-end;
    display: flex;
    justify-content: center;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: .1em;
}

.hero__inner-txt p span.border-small-left,
.hero__inner-txt p span.border-small-right,
.hero__inner-txt p span.border-large-left,
.hero__inner-txt p span.border-large-right {
    background-color: #333333;
    border-radius: 8px;
    display: block;
    margin: 0 4px;
    width: 3px;
}

.hero__inner-txt p span.border-small-left {
    transform: rotate(-40deg);
    height: 24px;
}

.hero__inner-txt p span.border-large-left {
    transform: rotate(-20deg);
    height: 35px;
}

.hero__inner-txt p span.border-small-right {
    transform: rotate(40deg);
    height: 24px;
}

.hero__inner-txt p span.border-large-right {
    transform: rotate(20deg);
    height: 35px;
}

.hero__inner-txt p span.txt {
    padding: 0 12px 0 16px;
}

.hero__inner-txt p span {
    font-size: 24px;
    font-weight: 500;
    letter-spacing: .2em;
}

.hero__inner-txt h1 {
    font-size: 40px;
    margin: 4px 0 0 0;
}

.hero__inner-txt h2 {
    color: #B6A97C;
    letter-spacing: .15em;
    margin-top: 12px;
    font-size: 26px;
}

.hero__inner-txt h4 {
    color: #B6A97C;
    letter-spacing: .15em;
    margin-bottom: 8px;
    font-size: 22px;
}

.hero__inner-txt-catch {
    margin-bottom: 16px;
}

.hero__inner-txt-catch p {
    margin-bottom: 8px;
}

.hero__inner-txt-catch p span {
    background-color: #B6A97C;
    color: #fff;
    font-weight: 700;
    border-radius: 4px;
    padding: 4px 8px;
}

.hero__inner-txt .hero__inner-txt-catch p.small span {
    font-size: 18px;
}

.hero__inner-txt .hero__inner-txt-catch p span {
    font-size: 24px;
}

.info {
    width: 80%;
    position: absolute;
    bottom: 20%;
    left: 5%;
}

.info__unit {
    background-color: #82B200;
    border-radius: 8px;
    color: #ffffff;
    padding: 16px;
}

.info__unit p span,
.info__unit h4 span {
    font-size: 16px;
}

.info__unit p {
    line-height: 20px;
    margin-bottom: 8px;
}

.info__unit h4 {
    font-size: 32px;
    line-height: 1.0em;
    letter-spacing: .05em;
}

.info__unit h5 {
    font-size: 24px;
    line-height: 1.6em;
    letter-spacing: .05em;
}

.info__img {
    bottom: 10%;
    right: -15%;
    position: absolute;
}

.info__img .herohouseImg {
    display: block;
    width: 180px;
}

@media screen and (max-width: 840px) {
    .hero__inner--circle-in {
        height: 70vw;
        width: 70vw;
    }
    .hero__inner--circle-out {
        height: 75vw;
        width: 75vw;
    }
    .hero__inner-txt h1 {
        margin: 2.1vw 0 5.8vw 0;
        font-size: 8vw;
    }
    .hero__inner-txt h2 {
        font-size: 5vw;
    }
    .info__unit {
        bottom: -10%;
        left: 8%;
    }
    .info__img {
        bottom: -1%;
        right: -15%;
    }
    .info__img .herohouseImg {
        width: 45vw;
    }
    .info__unit h5 {
        font-size: 4.0vw;
    }   
    .hero__inner-txt h4 {
        font-size: 4.0vw;
    } 
}

/*********************

slick-slider

*********************/

button.slick-prev {
    opacity: 0;
    width: 35%;
    height: calc(var(--vh, 1vh) * 100);
    height: 100dvh;
    left: 0;
    z-index: 2;
}

button.slick-next {
    opacity: 0;
    width: 35%;
    height: calc(var(--vh, 1vh) * 100);
    height: 100dvh;
    right: 0;
    z-index: 2;
}

/*********************

feature

*********************/

.feature__content {
    padding: 24px;
}

.feature__content h3 {
    text-align: center;
    font-size: 20px;
}

.feature__content h4 {
    align-items: end;
    text-align: center;
    display: flex;
    font-size: 18px;  
    column-gap: 24px;      
    justify-content: center;  
    padding-top: 40px;      
}

.feature__content h4 span.feature-border-left,
.feature__content h4 span.feature-border-right {
    background-color: #333333;
    border-radius: 8px;
    display: block;
    margin: 0 4px;
    width: 3px;
}

.feature__content h4 span.feature-border-left {
    transform: rotate(-40deg);
    height: 24px;
}

.feature__content h4 span.feature-border-right {
    transform: rotate(40deg);
    height: 24px;
}

.feature__list ul li {
    align-items: center;
    background-color: #F7F7F7;
    border-radius: 8px;
    padding: 12px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    column-gap: 8px;
}

.feature__list ul li svg {
    color: #B6A97C;
    font-size: 24px;
}

.feature__list ul {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.feature__list {
    padding-top: 24px;
}

@media screen and (max-width: 840px) {
    .feature__content {
        padding: 10vw 4.8vw 4.8vw 4.8vw;
    } 
}

@media screen and (max-width: 560px) {
    .feature__content h3 {
        font-size: 4.4vw;
    }
    .feature__content h4 {
        font-size: 3.8vw;
    }
    .feature__list ul li {
        font-size: 3.0vw;
    }
    .feature__list ul {
        row-gap: 3.0vw;
    }
}

/*********************

specification

*********************/

.specification__content {
    padding: 24px 0 0 0;
}

@media screen and (max-width: 840px) {
    .specification__content {
        padding: 24px 0 0 0;
    } 
}

@media screen and (max-width: 640px) {
    .specification__content {
        padding: 10vw 0 0 0;
    } 
}


.specification__list {
    background-color: #F0EAD3;
    height: 100%;    
}

.specification__list ul {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 16px;
    margin-top: 16px;
    justify-content: center; 
    padding-bottom: 16px;   
}

.specification__list p {
    text-align: right;
}

.specification_circle {
    align-items: center;
    background-color: #ffffff;
    border-radius: 200px;
    color: #B6A97C;
    display: flex;
    justify-content: center;
    text-align: center;
    height: 120px;
    width: 120px;
}

.specification__list ul li {
    align-items: center;
    border: 1px solid #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    height: 122px;
    width: 122px;
}

.specification__list ul li h4 {
    font-size: 14px;
}

.specification__wrapper {
    padding-left: 16px;
}

@media screen and (max-width: 840px) {
    .specification__list ul li {
        height: 28vw;
        width: 28vw;
    }
    .specification_circle {
        height: 25vw;
        width: 25vw;
    }
    .specification_circle h4 {
        font-size: 4.0vw;
    }
    .specification__list ul {
        margin-top: 0;
        gap: 3.2vw;
    }
    .specification__list ul li h4 {
        font-size: 3.2vw;
    }    
}

/*********************

topic

*********************/

.topic__content {
    padding: 24px 0 0 0;
}

@media screen and (max-width: 840px) {
    .topic__content {
        padding: 10vw 0 0 0;
    } 
}

.topic__list {
    background-color: #F0EAD3;
    margin-top: 24px;
    height: 100%;    
}

.topic__wrapper {
    padding-left: 16px;
}

.topic__detail {
    padding: 16px;
}

.topic__detail h4 {
    font-size: 20px;
    line-height: 28px;
}

.topic__detail-item {
    padding-top: 8px;
}

.topic__detail-thumb {
    padding-bottom: 16px;
    height: 200px;
    width: 100%;
}

.topic__detail-thumb img {
    object-fit: cover;
    border-radius: 4px;
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 840px) { 
    .topic__detail-thumb {
        padding-bottom: 16px;
        height: 40vw;
        width: 100%;
    }    
}

@media screen and (max-width: 640px) { 
    .topic__detail h4 {
        font-size: 4.0vw;
        line-height: 6.0vw;
    }
    .topic__list {
        margin-top: 3vw;
    }
}

/*********************

example

*********************/

.example__content {
    padding: 24px 0 0 0;
}

@media screen and (max-width: 840px) {
    .example__content {
        padding: 10vw 0 0 0;
    } 
}

.example__list {
    background-color: #F0EAD3;
    margin-top: 24px;
    height: 100%;    
}

.example__wrapper {
    padding-left: 16px;
}

.example__detail {
    padding: 16px;
}

.example__detail h4 {
    font-size: 20px;
    line-height: 28px;
}

.example__detail-item {
    display: flex;
    flex-direction: column;
    row-gap: 8px;
}

.example__detail-item dl {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #C6C6C6;
    padding: 8px 0;
}

.example__detail-item dl dt {
    font-size: 16px;
    font-weight: 700;
}

.example__detail-thumb {
    padding-bottom: 16px;
    height: 200px;
    width: 100%;
}

.example__detail-thumb img {
    object-fit: cover;
    border-radius: 4px;
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 840px) { 
    .example__detail-thumb {
        padding-bottom: 16px;
        height: 50vw;
        width: 100%;
    }    
}

@media screen and (max-width: 640px) { 
    .example__detail h4 {
        font-size: 5.2vw;
        line-height: 8vw;
    }
    .example__detail-item dl dt,.example__detail-item dl dd {
        font-size: 3.2vw;
    }
    .example__list {
        margin-top: 3vw;
    }
    .example__detail-item dl {
        row-gap: 0;
        padding: 2.1vw 0;
    }
    .example__detail-thumb {
        padding-bottom: 0;
    }
}

/*********************

about

*********************/

.about__content {
    padding: 24px;
}

.about__list {
    margin-top: 24px;
}

.about__detail-thumb {
    margin-top: 24px;
    height: 220px;
    width: 100%;
}

.about__detail-thumb img {
    object-fit: cover;
    height: 100%;
    width: 100%;
}

@media screen and (max-width: 840px) {
    .about__content {
        padding: 10vw 4.8vw 4.8vw 4.8vw;
    } 
    .about__list {
        margin-top: 0;
    }    
}

/*********************

faq

*********************/

.faq__content {
    padding: 24px;
}

.faq__list {
    margin-top: 24px;
}

.faq__list ul {
    display: flex;
    flex-direction: column;
    row-gap: 16px;
}

.faq__list ul li {
    padding: 24px;
    border-radius: 6px;
    background-color: #F7F7F7;
}

.faq__list-title h5 {
    font-size: 18px;
    letter-spacing: .06em;
    font-weight: 700;
}

.faq__list-title {
    border-bottom: 1px dashed #525252;
    padding-bottom: 8px;
    margin-bottom: 8px;
}

@media screen and (max-width: 840px) {
    .faq__content {
        padding: 10vw 4.8vw 4.8vw 4.8vw;
    } 
    .faq__list-title {
        padding-bottom: 3.2vw;
        margin-bottom: 3.2vw;
    } 
    .faq__list-title h5 {
        font-size: 3.6vw;
    }       
    .faq__list ul li {
        padding: 3.2vw;
    }
    .faq__list {
        margin-top: 2.1vw;
    }    
}

/*********************

contact-form

*********************/

.contact-form {
    background: url(../images/slick-lp/ref-contactbg.png) no-repeat;
    background-size: cover;
    position: relative;
    height: 100%;
    width: 100%;
    height: 100%;
}

.contact-form__content {
    margin-top: 140px;
    padding: 24px;
}

.contact-form__content h3 {
    align-items: end;
    text-align: center;
    display: flex;
    font-size: 20px;
    column-gap: 8px;   
    justify-content: center;  
    line-height: 28px; 
}

.contact-form__content h3 span.contact-form-border-left,
.contact-form__content h3 span.contact-form-border-right {
    background-color: #333333;
    border-radius: 8px;
    display: block;
    margin: 0 4px;
    width: 3px;
}

.contact-form__content h3 span.contact-form-border-left {
    transform: rotate(-40deg);
    height: 24px;
}

.contact-form__content h3 span.contact-form-border-right {
    transform: rotate(40deg);
    height: 24px;
}

.contact-form__wrapper {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 40px 24px;
    flex-direction: column;
    display: flex;
    row-gap: 16px;    
}

.contact-form__wrapper p.bold {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    line-height: 28px;
    letter-spacing: .2em;
}

@media screen and (max-width: 840px) {
    .contact-form__content h3 {
        font-size: 5.0vw;  
        line-height: 6.4vw;
    }
    .contact-form__content {
        margin-top: 20vw;
        padding: 16vw 4.8vw 4.8vw 4.8vw;
    }     
}

/*********************

contact

*********************/

.contact__box {
    margin: 0 auto;
    padding: 80px 0;
    width: 640px;
}

.contact-box {
    margin-bottom: 40px;
}

.contact__box p {
    font-weight: bold;
    line-height: 14px;
}

.contact__box p span.label {
    background-color: #DBD4BB;
    color: #ffffff;
    font-weight: bold;
    padding: 2px 4px;
    margin-left: 16px;
    font-size: 12px;
}

.contact__box p span input.wpcf7-form-control,
.contact__box p span select.wpcf7-select {
    width: 100%;
    background-color: #F7F7F7;
    border: none;
    font-size: 16px;
    padding: 16px 8px;
    border-radius: 4px;
}

.contact__box p span select.wpcf7-select {
    width: 102%;
}

.contact__box input.wpcf7-submit {
    background-color: #2E6A9D;
    border: none;
    border-radius: 30px;
    color: #fff;
    display: block;
    font-weight: bold;
    letter-spacing: .2em;
    margin: 40px auto 0 auto;
    padding: 16px 0;
    font-size: 18px !important;
    line-height: 12px !important;
    font-weight: bold;
    width: 320px;
}

.contact-consultation input.wpcf7-submit {
    background-color: #DE993B;
}

.wpcf7-form-control-wrap {
    text-align: center;
    display: block;
}

.wpcf7-list-item-label {
    font-weight: 500;
}

.contact-box--explain {
    padding: 24px 0;
}

.contact-box--explain p {
    font-size: 14px;
    font-weight: 300;
    line-height: 24px;
}

.contact-box--explain p a {
    color: #007ea8;
    text-decoration: underline;
}

.contact__box--explain p span#contactLink {
    color: #007ea8;
    text-decoration: underline;
    cursor: pointer;
}

.contact__page-title {
    padding-bottom: 56px;
}

.contact__thanks p {
    text-align: center;
    font-size: 14px;
    line-height: 28px;
    font-weight: 500;
    letter-spacing: .2em;
}

.contact__thanks {
    padding-top: 32px;
}

.contact__title h3 {
    font-size: 24px;
    line-height: 32px;
    letter-spacing: .2em;
    text-align: center;
    padding-top: 32px;    
}

@media screen and (max-width: 840px) {
    .contact__title h2 {
        font-size: 6.0vw;
    }
    .contact__box {
        padding: 10vw 0;
    }
    .contact-box p {
        line-height: 28px;
    }
    .contact__box p span input.wpcf7-form-control,
    .contact__box p span select.wpcf7-select {
        width: 85vw;
    }
    .contact__box iframe {
        height: 410vw;
    }
    .contact-box {
        align-items: baseline;
        margin-bottom: 40px;
        display: flex;
        flex-direction: column;
    }    
    .contact-box p {
        line-height: 3.2vw;
    }  
    .contact__box {
        display: flex;
        flex-direction: column;
        align-items: center;        
        width: 85vw;
    }  
    .contact__box input.wpcf7-submit {
        margin: 0;
        width: 80vw;
        padding: 4.8vw 0;
    }
    .contact__title h3 { 
        padding-top: 20vw;
    }
    .contact__thanks p {
        font-size: 2.8vw;
    }
}