@charset "UTF-8";
/*--------------------------------
base
--------------------------------*/
body{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    overflow-x: hidden;
}
.en-font{
    font-family: 'Noto Sans', sans-serif;
    font-style: italic;
}
/* .ja-font{
    font-family: 'Noto Sans JP', sans-serif;
} */
.general-section{
    position: relative;
    z-index: 2;
}
.general-section .inner{
    max-width: 1400px;
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 100px 0;
}
.flex-wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.fit-img {
	width: 100%;
	height: auto;
	vertical-align: middle;
}
.text-center{
    text-align: center;
}
.inline-block{
    display: inline-block;
}

.line-cta {
  display: block;
  margin: 0px auto 48px;
  width: 600px;
}

.line-cta > img {
  width: 100%;
}

@media (max-width: 767px) {
  .line-cta {
    width: 300px;
  }
}


@media screen and (max-width: 767px){
    .general-section .inner{
        padding: 25px 0;
    }
}
/*--------------------------------
header
--------------------------------*/
.header{
    position: fixed;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    width: 100%;
    z-index: 100;
    padding: 0 16px;
    transition: .2s ease;
}
.header .inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: min(100%,1400px);
    height: 100px;
    margin: 0 auto;
}
.is-bg.header{
    background: #fff;
}
.header-logo{
    display: block;
    width: min(100%,193px);
}
.header .contact-btn{
    font-size: 2.2rem;
    width: min(100%,300px);
    height: 70px;
    border-radius: 35px;
    gap: 14px;
    margin: 0;
}
.header .contact-arrow{
    width: 6.2px;
}
@media screen and (max-width: 767px){
    .header .inner{
        height: 50px;
    }
    .header-logo{
        width: min(100%,88px);
    }
    .header .contact-btn{
        font-size: 1.2rem;
        width: min(100%,150px);
        height: 28.5px;
        gap: 5px;
    }
    .header .contact-arrow {
        width: 3.2px;
    }
}
/*--------------------------------
footer
--------------------------------*/
.footer{
    position: relative;
    background: #F2CA7E;
}
.footer .inner{
    padding: 50px 0;
    width: min(100% - 32px,1400px);
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.footer-link a{
    color: #8C4A32;
    font-size: 2rem;
    font-weight: bold;
}
.footer-link a:first-child{
    margin-right: 30px;
    padding-right: 33px;
    border-right: 1px solid #8C4A32;
}
.copyright{
    margin-top: 17px;
    font-size: 2rem;
    color: #8C4A32;
    font-weight: bold;
}
@media screen and (max-width: 767px){
    .footer .inner{
        padding: 100px 0 25px;
    }
    .copyright{
        margin-top: 8px;
        font-size: 1.2rem;
    }
    .footer-link a{
        font-size: 1.2rem;
    }
    .footer-link a:first-child{
        margin-right: 15px;
        padding-right: 15px;
    }
}
/*--------------------------------
common
--------------------------------*/
.contact-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(100%,594px);
    height: 120px;
    border-radius: 60px;
    font-size: 4rem;
    color: #fff;
    background: #06C755;
    font-weight: bold;
    gap: 30px;
    border: 5px solid #06C755;
    transition: .2s ease;
    margin: 50px auto 0;
}
.contact-arrow{
    fill:#fff;
    width: 11px;
    transition: .2s ease;
}
@media (hover: hover) {
    .contact-btn:hover{
        color: #4C93E0;
        background: #fff;
    }
    .contact-btn:hover .contact-arrow{
        fill:#4C93E0;
    }
}
.is-fixed.contact-btn{
    margin-top: 0;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 100;
    border-radius: 0;
    height: 70px;
    width: 100%;
    font-size: 1.8rem;
    gap: 15px;
}
.is-fixed.none-fixed.contact-btn{
    position: absolute;
    top: 0;
    left: 0;
}
.is-fixed .contact-arrow{
    width: 4.5px;
}


/*--------------------------------
page
--------------------------------*/
.secondary-heading{
    font-size: 3.7rem;
    color: #8C4A32;
}
.secondary-heading img{
    height: 28px;
    width: auto;
}
.head-en{
    font-size: 10rem;
    display: block;
    font-weight: 400;
}
.is-yellow{
    color: #F2EEAE;
}
.is-light{
    color: #fff;
}
.bg-yellow{
    background: #F2EEAE;
}
.secondary-heading .marker{
    display: inline-block;
    position: relative;
    padding: 0 8px;
}
.secondary-heading .marker::before{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,0);
    width: 100%;
    height: 15px;
    background: #F2EEAE;
    z-index: -2;
}
.bg-yellow .secondary-heading .marker::before{
    background: #F2CA7E;
}
.note{
    font-size: 2rem;
    line-height: 2;
    color: #BF8563;
}
.note .marker{
    background: linear-gradient(transparent 0%, #F2EEAE 0%);
    display: inline;
    padding: 0 2px;
    font-weight: bold;
    color: #8C4A32;
}
.secondary-heading + .note{
    margin-top: 28px;
}
.about .inner{
    position: relative;
}
.about-img01{
    position: absolute;
    width: min(19%,324px);
    left: 0;
    bottom: 0;
}
.about-img02{
    position: absolute;
    width: min(33%,470px);
    right: 0;
    bottom: 0;
}
.trouble-list{
    margin-top: 46px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 36px 10px;
}
.trouble-item{
    position: relative;
    background: #fff;
    width: 320px;
    height: 320px;
    border-radius: 160px;
    display: grid;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 2;
    margin: 0 auto;
}
.trouble-item .img-wrapper{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
    width: 100%;
}
.trouble-item .number{
    font-size: 3.4rem;
    color: #F2CA7E;
    display: block;
    line-height: 1;
    margin-bottom: 13px;
}
.trouble-item .note{
    line-height: 1.5;
    padding-bottom: 130px;
}
.bg-orange{
    background: #F2CA7E;
}
.resolution{
    position: relative;
}
.resolution::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    width:0;
    height:0;
    border-style:solid;
    border-width: 33px 50px 0 50px;
    border-color: #F2EEAE transparent transparent transparent;
}
.resolution .inner{
    padding-top: 20px;
}
.resolution-copy-img{
    width: min(100%,684px);
}
.resolution-copy{
    width: min(100%,1000px);
    margin: 0 auto;
    gap: 12px;
    display: flex;
    align-items: end;
    justify-content: center;
    color: #8C4A32;
}
.resolution-copy .img-wrapper{
    width: min(100%,135px);
    margin-bottom: 30px;
}
.resolution-list{
    position: relative;
    background: #fff;
    display: grid;
    gap: 40px;
    grid-template-columns: repeat(2,1fr);
    padding: 43px;
    border-radius: 30px;
}
.resolution-list::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    height: 1px;
    width: calc(100% - 86px);
    border-bottom: 2px dashed #F2CA7E;
}
.resolution-list::after{
    content: "";
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 1px;
    height: calc(100% - 86px);
    border-left: 2px dashed #F2CA7E;
}
.resolution-img{
    position: relative;
    width: min(100%,413px);
    margin: 17px auto -26px;
    z-index: 2;
}
.resolution-item {
    position: relative;
}
.resolution-item .img-wrapper{
    text-align: center;
    margin-bottom: 17px;
    position: relative;
}
.resolution-item .img-wrapper img{
    height: 150px;
    width: auto;
}
.resolution-item .number{
    position: absolute;
    font-size: 10rem;
    color: #F2EEAE;
    z-index: 2;
}
.tertiary-heading{
    font-size: 2.7rem;
    line-height: 1.5;
    color: #BF8563;
}
.tertiary-heading .marker{
    background: linear-gradient(transparent 70%, #F2EEAE 0%);
    color: #8C4A32;
    font-weight: bold;
    display: inline;
    padding: 0 2px 
}
.customers-list{
    margin-top: 120px;
}
.customers-icon{
    width: 100px;
    height: 100px;
    margin: -50px auto 16px;
}
.customers-item{
    position: relative;
    background: #fff;
    border-radius: 30px;
    text-align: center;
    padding: 16px 20px 200px;
    z-index: 2;
    /* overflow-x: hidden;
    overflow-y: auto; */
}
.customers-item .tertiary-heading{
    border-bottom: 2px dashed #F2CA7E;
    padding-bottom: 12px;
    margin-bottom: 12px;
}
.customers-item .note + .img-wrapper{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%,-0);
    width: 100%;
    z-index: -1;
}
.introduction-list{
    margin-top: 42px;
    display: grid;
    /* grid-template-columns: repeat(6,1fr); */
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
}
.introduction-item{
    background: #F2EEAE;
    border-radius: 30px;
    padding: 42px 16px;
    text-align: center;
}
.introduction-number{
    display: grid;
    align-items: center;
    justify-content: center;
    background: #8C4A32;
    height: 40px;
    color: #fff;
    font-size: 2.5rem;
    border-radius: 20px;
    text-transform: uppercase;
}
.introduction-item .tertiary-heading{
    margin-top: 16px;
    color: #8C4A32;
    font-weight: bold;
    line-height: 1.2;
    height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.introduction-item .img-wrapper{
    margin-top: 20px;
}
.introduction-cap{
    margin-top: 20px;
    color: #8C4A32;
    font-size: 1.8rem;
    line-height: 1.5;
}
.question-list{
    margin-top: 40px;
    display: grid;
    gap: 50px;
    font-weight: bold;
}
.question-item{
    background: #F2CA7E;
    border-radius: 30px;
    padding: 40px 50px;
    cursor: pointer;
    user-select: none;
}
.question-item .note{
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid #8C4A32;
    display: none;
}
.question-item.is-active .note{
    display: block;
}
.question-list .tertiary-heading{
    color: #8C4A32;
}
.question-list .note{
    color: #8C4A32;
}
.question-btn{
    width: min(100%,40px);
}
.close{
    display: none;
}
.opne{
    display: block;
}
.is-active .opne{
    display: none;
}
.is-active .close{
    display: block;
}
.question-list .tertiary-heading{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5px;
}
.form-wrap{
    padding: 90px 0;
    margin-top: 100px;
    border-radius: 30px;
    background: #fff;
    width: 100%;
}
.form-wrap form{
    width: min(100% - 32px,628px);
    margin: 0 auto;
    font-size: 2rem;
    color: #8C4A32;
}
.formTable th .required{
    background: #BF8563;
    color: #fff;
}
.formTable th span{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    border: 1px solid #BF8563;
    background: #fff;
    color: #BF8563;
    width: 70px;
    height: 30px;
    border-radius: 15px;
}
.form-wrap tr{
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 4px;
}
.form-wrap th{
    display: flex;
    gap: 10px;
    align-items: center;
}
.contact-text td{
    width: 100%;
}
.contact-text td input{
    padding: 10px;
    width: 100%;
    background: #F2EEAE;
    border-radius: 10px;
    min-height: 50px;
}
table{
    width: 100%;
}
tbody{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.contact-radio{
    border-bottom: 1px solid #F2CA7E;
    padding-bottom: 16px;
    margin-bottom: 16px;
}
.radio-wrapper{
    display: flex;
    flex-wrap: wrap;
    gap: 11px 22px;
}
.radio-wrapper span{
    display: flex;
    align-items: center;
    gap: 4px;
}
textarea{
    padding: 10px;
    width: 100%;
    background: #F2EEAE;
    border-radius: 10px;
}
.contact-text-wrap{
    position: relative;
    background: #fff;
    width: 100vw;
    text-align: center;
    padding: 70px 16px 300px;
    z-index: 2;
    overflow: hidden;
}
.contact-icon{
    width: 50px;
    margin: 0 auto 50px;
}
.contact-text-wrap .note{
    line-height: 3;
}
.contact-text-wrap .tertiary-heading{
    line-height: 2.5;
    letter-spacing: .1em;
}
.main .contact .inner{
    padding-bottom: 0;
}
.contact-img{
    position: absolute;
    top: -174px;
    left: 50%;
    transform: translate(-50%,0);
    width: min(100%,1060px);
    z-index: 2;
    /* margin: 100px auto -57px; */
}
.privacy-note{
    margin-top: 60px;
    font-size: 2rem;
    align-items: center;
}
.privacy-note a{
    color: #8C4A32;
    border-bottom: 1px solid #8C4A32;
}
.form-btn{
    width: min(70%,360px);
    margin: 50px auto 0;
    border-radius: 15px;
    background: #8C4A32;
    color: #fff;
    border: 5px solid #8C4A32;
    height: 87px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.4rem;
    transition: .2s ease;
}
.form-btn.form-back{
    margin-top: 25px;
    background: #9FA0A0;
    border: 5px solid #9FA0A0;
}
@media (hover: hover) {
    .form-btn:hover{
        background: #fff;
        color: #8C4A32;
    }
    .form-btn.form-back:hover{
        background: #fff;
        color: #9FA0A0;
    }
}
.arch-img{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%,0);
    width: max(1400px,100%);
    z-index: -2;
}
.thanks .header,
.thanks .footer{
    display: none;
}
.thanks-head{
    font-size: 5rem;
    color: #8C4A32;
}
.thanks-note{
    margin-top: 30px;
    font-size: 2.7rem;
    line-height: 1.5;
    color: #8C4A32;
}

.flow-img{
    width: min(60%,335px);
    margin: 0 auto 27px;
}
.error_messe{
    font-size: 1.6rem;
    line-height: 1.5;
}
.thanks-note + .error_messe{
    margin-top: 40px;
}
.contact .caption{
    color: #8C4A32;
    margin-top: 20px;
    line-height: 1.5;
}
.radio-caption{
    font-size: 1.4rem;
    margin-left: -5px;
}
@media screen and (min-width: 768px){
    .customers-list{
        display: grid;
        grid-template-columns: repeat(2,1fr);
        gap: 62px 35px;
    }
}
@media screen and (max-width: 1200px){
    .tertiary-heading{
        font-size: 2rem;
    }
    .note{
        font-size: 1.4rem;
    }
    .customers-item{
        padding-bottom: 100px;
    }
    .resolution-item .number{
        font-size: 5rem;
    }
}
@media screen and (max-width: 767px){
    .trouble-list{
        margin-top: 28px;
        gap: 22px;
    }
    .trouble-item{
        width: 150px;
        height: 150px;
        border-radius: 75px;
    }
    .head-en{
        font-size: 4.4rem;
        margin-bottom: -10px;
    }
    .secondary-heading img{
        height: 13px;
    }
    .note{
        font-size: 1.4rem;
    }
    .resolution-list,
    .introduction-list{
        grid-template-columns: 1fr;
    }
    .about .inner{
        padding-bottom: 105px;
    }
    .about-img01 {
        width: min(26%,324px);
    }
    .about-img02 {
        width: min(36%,470px);
    }
    .trouble-item .number{
        font-size: 1.6rem;
        margin-bottom: 3px;
    }
    .trouble-item .note{
        padding-bottom: 54px;
        font-size: 1.1rem;
    }
    .resolution::before{
        border-width: 15px 25px 0 25px 
    }
    .resolution-copy .img-wrapper{
        width: min(100%,45px);
        margin-bottom: 25px;
    }
    .resolution .inner {
        padding-top: 10px;
    }
    .resolution-img{
        width: min(100%,200px);
        margin: 5px auto -13px;
    }
    .resolution-list{
        padding: 25px 16px;
        gap: 30px;
    }
    .resolution-item .number{
        font-size: 5rem;
    }
    .resolution-item .img-wrapper img{
        height: 75px;
    }
    .tertiary-heading{
        font-size: 1.35rem;
    }
    .resolution-list::before,
    .resolution-list::after{
        display: none;
    }
    .resolution-item::before{
        content: "";
        position: absolute;
        bottom: -17px;
        left: 0;
        width: 100%;
        height: 1px;
        border-bottom: 2px dashed #F2CA7E;
    }
    .resolution-item:last-child::before{
        display: none;
    }
    .customers-item{
        min-height: 440px;
        padding: 16px 16px 80px;
    }
    .customers-item .note{
        font-size: 1.2rem;
    }
    .swiper-pagination{
        margin-top: 17px;
        position: static;
    }
    .swiper-pagination-bullet{
        width: 13px;
        height: 13px;
        border: 6.5px;
        background: #fff;
        border: 1px solid #8C4A32;
        opacity: 1;
    }
    .swiper-pagination-bullet-active{
        background: #8C4A32;
    }
    .swiper{
        width: calc(100% + 16px);
        margin-right: -16px;
    }
    .introduction-item{
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 11px;
        gap: 10px;
    }
    .introduction-item .img-wrapper{
        margin-top: 0;
        width:110px;
    }
    .introduction-item .tertiary-heading{
        margin-top: 0;
        width: 100%;
        align-items: flex-start;
    }
    .introduction-number{
        padding-top: 3px;
        min-width: 50px;
        min-height: 50px;
        border-radius: 25px;
        font-size: 1.25rem;
    }
    .question-item{
        border-radius: 15px;
        padding: 20px 20px;
    }
    .question-btn{
        max-width: 20px;
    }
    .question-list .note{
        margin-top: 10px;
        padding-top: 10px;
    }
    .form-wrap{
        margin-top: 18px;
        padding: 45px 0;
    }
    .formTable th span{
        font-size: 1.4rem;
    }
    .form-wrap tr{
        font-size: 1.4rem;
        gap: 11px;
    }
    .secondary-heading .marker{
        padding: 0 4px;
    }
    .customers-item .tertiary-heading{
        padding-bottom: 6px;
        margin-bottom: 6px;
    }
    .customers-item .note + .img-wrapper{
        overflow: hidden;
        display: flex;
        justify-content: center;
        border-radius: 30px;
    }
    .customers-item .note + .img-wrapper img{
        width: 163%;
    }
    .introduction-cap{
        margin-top: 0;
        font-size: 1rem;
        text-align: left;
    }
    .privacy-note{
        margin-top: 30px;
    }
    .form-btn{
        font-size: 1.8rem;
        height: 45px;
    }
    .contact-text-wrap .note{
        line-height: 2.5;
    }
    .contact-text-wrap .tertiary-heading{
        font-size: 2rem;
        line-height: 2;
    }
    .arch-img{
        width: max(500px,100%);
    }
    .contact-text-wrap{
        margin: 0 calc(50% - 50vw);
        padding: 35px 16px 150px;
    }
    .contact-icon{
        width: 35px;
        margin-bottom: 25px;
    }
    .contact-img{
        top: -77px;
    }
    .thanks-head{
        font-size: 2.5rem;
    }
    .thanks-note{
        font-size: 1.4rem;
    }
    .main-form .form-wrap{
        padding-bottom: 0;
    }
    .form-btn{
        margin-top: 36px;
        border-radius: 7.5px;
    }
    .form-btn.form-back{
        margin-top: 12.5px;
    }
    .customers-list{
        margin-top: 56px;
    }
    .question-list{
        gap: 12px;
    }
    .form-wrap{
        background: none;
    }
    .contact-text td input,
    textarea{
        background: #fff;
    }
    .contact-radio{
        padding-bottom: 0;
        margin-bottom: 0;
        border: none;
    }
    .error_messe{
        font-size: 1.4rem;
    }
    .thanks-note + .error_messe{
        margin-top: 20px;
    }
    .contact .caption{
        margin-top: 10px;
        font-size: 1rem;
    }
    .radio-caption{
        font-size: 1.2rem;
    }
}
#Type-B label{
	padding-left:30px;
	display:flex;
    align-items: center;
	cursor:pointer;
	position:relative;
}
#Type-B .radio-wrapper input,
.privacy-note input{
	position:absolute;
	z-index:-1;
	opacity:0;
}
#Type-B .indicator{
	width:20px;
	height:20px;
	border-radius:50%;
	background:#fff;
    border: 1px solid #8C4A32;
	position:absolute;
	left:0;
}
#Type-B label input:disabled ~ .indicator{
	background:#FFF;
	opacity:0.6;
	pointer-events:none;
}
#Type-B .indicator::after{
	content:"";
	width:0;
	height:0;
	display:block;
	border-radius:50%;
	background:#8C4A32;
	position:absolute;
	top:50%;
	left:50%;
    transform: translate(-50%,-50%);
	transition: all .3s;
}
#Type-B label input:checked ~ .indicator::after{
	width:14px;
	height:14px;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
#Type-B .typeB-radio .indicator::after{
	background:#e87a90;
}
#Type-B .typeB-checkbox input:disabled ~ .indicator::after,
#Type-B .typeB-radio input:disabled ~ .indicator::after{
	background:#7b7b7b;
}
.mail-icon{
    fill:none;
    stroke:#fff;
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-width:3px;
    width: 18px;
}
/*--------------------------------
state
--------------------------------*/
@media screen and (max-width: 767px){
	.sp-none{
		display: none;
	}
}
@media screen and (min-width: 768px){
	.pc-none{
		display: none;
	}
}