@charset "UTF-8";
/* CSS Documinstallent */

html {
    font-size: 62.5%;
}
body {
    width: 100%;
    height: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    color: #595757;
    letter-spacing: 0.15rem;
    line-height: 1.6;
    background-color: #fff;
}
@media only screen and (max-width: 500px) {
    body {
        font-size: 1.5rem;
        letter-spacing: 0.05rem;
        line-height: 1.5;
    }
}
a {
    color: var(--lightgreen);
    text-decoration: none;
    transition:all 0.3s ease;
}
a:hover{
    transition:all 0.3s ease;
}
img{
    width: 100%;
}
/* ------------------------------------- /
/   スマホ表示・非表示
/* ------------------------------------- */
.pc {
    display: block !important;
}
.sp {
    display: none !important;
}
.pc768 {
    display: block !important;
}
.sp768 {
    display: none !important;
}
@media only screen and (max-width: 768px) {
.pc768 { display: none !important; }
.sp768 { display: block !important; }
}
@media only screen and (max-width: 600px) {
.pc { display: none !important; }
.sp { display: block !important; }
}
/* ------------------------------------- /
/   共通
/* ------------------------------------- */
.flex{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}
.anchor{
    padding-top:100px;
    margin-top:-100px;
}
.anchor2{
    padding-top:150px;
    margin-top:-150px;
}
.inner{
    max-width: 1000px;
    margin:0 auto;
}
.pt120{
    padding-top: 120px;
}
.pb120{
    padding-bottom: 120px;
}
.space{
    padding-top: 163px;
}

@media only screen and (max-width: 1023px) {
    .space {
        padding-top: 93px;
    }  
}
@media only screen and (max-width: 1000px) {
    .inner{
        padding:0 20px;
    }
}
@media only screen and (max-width: 768px) {
    .anchor{
        padding-top:100px;
        margin-top:-100px;
    }
    .pt120{
        padding-top: 80px;
    }
    .pb120{
        padding-bottom: 80px;
    }
    .space {
        padding-top:70px;
    } 
}
@media only screen and (max-width: 500px) {
    .pt120{
        padding-top: 50px;
    }
    .pb120{
        padding-bottom: 50px;
    }
}
:root{
    --green: #168f2d;
    --mosgreen: #168f2d;
    --lightgreen: #8fc31f;
    --lightyellow: #eff4ce;
    --red: #ea5514;
}
/* ------------------------------------- /
/   header
/* ------------------------------------- */
header{
    padding-top: 10px;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    background-color: #fff;
}
.header_inner{
    max-width: 1000px;
    margin: 0 auto;
}
.header_top{
    padding-bottom: 15px;
}
.header_top .flex{
    align-items: center;
}
.header_top .txt{
    font-size: 1.5rem;
    margin-bottom: 7px;
    display: block;
}
.header_top .logo{
    max-width: 360px;
    width: 100%;
}
.haiso_icon li{
    width: 57px;
    margin: 0 3px;
}
.haiso_icon li.mitsumori{
    width: inherit;
}
.haiso_icon li.mitsumori a {
    display: block;
    background-color: var(--lightgreen);
    color: #fff;
    height: 46px;
    border-radius: 7px;
    display: flex;
    align-items: center;
    padding: 0 40px 0 13px;
    position: relative;
}
.haiso_icon li.mitsumori a:before{
    content: "";
    width: 30px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: var(--mosgreen);
    background-image: url(../img/hd_prev.svg);
    background-repeat: no-repeat;
    background-size: 7px;
    background-position: center;
    border-radius: 0 7px 7px 0;
}
.haiso_icon li.mitsumori a:hover{
    background-color: var(--mosgreen);
}
.haiso_icon li.mitsumori a span{
    padding: 5px 0 5px 32px;
    background-image: url(../img/icon_free.svg);
    background-repeat: no-repeat;
    background-size: 27px;
    background-position: center left;
}
.hd_tel{
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    width: 213px;
    letter-spacing: 0;
    margin-top: -6px;
}
.hd_tel a{
    display: block;
    margin-top: 5px;
}
.hd_tel a:hover{
    opacity: 0.7;
}
/*header_bottom------------*/
.header_bottom{
    background-color: var(--lightgreen);
}
.header_bottom li{
    width: calc(100% / 6);
}
.header_bottom li a{
    height: 60px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.header_bottom li a:hover{
    background-color: var(--green);
}
#humbgr{
    display: none;
}
.header_bottom .haiso_icon,
.header_bottom .hd_tel{
    display: none;
}


@media (max-width: 1023px){
    .header_top .haiso_icon{
        display: none;
    }
    .header_top .hd_tel{
        display: none;
    }
    .header_bottom .haiso_icon,
    .header_bottom .hd_tel{
        display: block;
    }
    .nav_wrapper{
        position: relative;
    }
    .nav_wrapper .nav_menu {
        width: 100%;
        height: 101vh;
        max-width: 370px;
        position: fixed;
        right: -370px;
        top: 0;
        background-color: var(--lightyellow);
        padding: 5rem;
        padding-top: 10rem;
        box-sizing: border-box;
        z-index: 99;
        transition: .3s;
    }
    .nav_wrapper .nav_menu.open{
        right: 0px;
    }
    .header_bottom .nav_menu .nav{
        margin-bottom: 4rem;
    }
    .header_bottom .nav_menu .nav li {
        width: 100%;

    }
    .nav_wrapper .nav_menu .nav a {
        color: var(--lightgreen);
        text-align: left;
        display: block;
        height: inherit;
        margin-bottom: 1.7rem;
        font-size: 1.7rem;
    }
    .nav_wrapper .nav_menu .nav a:hover{
        background-color: inherit;
        border-bottom: solid 1px var(--lightgreen);
    }
    .nav_wrapper .nav_menu .nav .flex{
        display: block;
    }
    .header_bottom {
        background-color: inherit;
    }
    .haiso_icon li.mitsumori a {
        height: inherit;
        max-width: 360px;
        width: 100%;
        margin-bottom: 20px;
        box-sizing: border-box;
    }
    .hd_tel {
        width: 273px;
        margin-top:0px;
    }
    #humbgr{
        display: block;
    }
    #humbgr .bars{
        display: block;
        position: fixed;
        z-index: 999;
        width: 68px;
        height: 50px;
        right: 37px;
        top: 22px;
        cursor: pointer;
    }
    .bars:before {
        content: "";
        width: 68px;
        height: 1px;
        background: var(--green);
        position: absolute;
        top: 19px;
        left: 0;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    .bars:after {
        content: "";
        width: 68px;
        height: 1px;
        background: var(--green);
        position: absolute;
        top: 30px;
        left: 0;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }
    .bars.active:before {
        -webkit-transform: rotate(25deg);
        transform: rotate(25deg);
        top: 23px;
    }
    .bars.active:after {
        -webkit-transform: rotate(-25deg);
        transform: rotate(-25deg);
        top: 23px;
    }
    .front_menu_bg{
        background-color: rgba(0, 0, 0, 0.7);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: none;
    }

}
@media (max-width: 768px){
    .header_top .logo {
        max-width: 250px;
        padding-left: 10px;
    }
    .header_top .txt {
        font-size: 1.1rem;
        margin-bottom: 5px;
        letter-spacing: 0;
        padding-left: 10px;
    }
    #humbgr .bars {
        top: 15px;
    }
    .header_top {
        padding-bottom: 10px;
    }
}
@media (max-width: 600px){
    .header_top .logo {
        max-width: 210px;
    }
    .header_top .txt {
        font-size: 1rem;
    }
    #humbgr .bars{
        width: 40px;
        top: 20px;
        right: 13px;
    }
    .bars:before,
    .bars:after{
        width: 40px;
    }
    .nav_wrapper .nav_menu {
        max-width: 310px;
        right: -310px;
        padding: 6rem 2rem;
    }
    .haiso_icon li.mitsumori a {
        height: inherit;
        max-width: inherit;
        width: 100%;
        margin-bottom: 20px;
        box-sizing: border-box;
        padding: 5px 40px 5px 13px;
    }
    .header_bottom .nav_menu .nav {
        margin-bottom: 2rem;
    }
    .hd_tel {
        width: 213px;
        margin: 0 auto;
        margin-top: 0px;
    }
}
/* ------------------------------------- /
/   guide_area
/* ------------------------------------- */
.guide_area p.txt{
    background-image: url(../img/kira.svg),url(../img/kira.svg);
    background-repeat: no-repeat;
    background-size: 60px;
    background-position: top left,center right;
    display: table;
    margin: 0 auto;
    padding: 0 8rem;
    color: var(--lightgreen);
    font-size: clamp(2.2rem, 1.62rem + 2.51vw, 3.5rem);
    text-align: center;
    font-weight: 700;
}
.guide_area p span{
    border-bottom: solid 2px var(--lightgreen);
    font-size: 110%;
}
.guide_area .flex{
    align-items: stretch;
    margin-top: ;
}
/*img_onayami--------*/
.img_onayami {
    max-width: 580px;
    margin: 4rem 20% 0 auto;
}

/*guide_area .box--------*/
.guide_area .box{
    width: 31%;
    background-color: var(--lightgreen);
    color: #fff;
    border-top: solid 12px var(--green);
    border-radius: 10px;
}
.guide_area .box h3{
    text-align: center;
    font-size: clamp(2.2rem, 1.888rem + 1.35vw, 2.9rem);
    font-weight: 700;
    padding: 1.7rem 0;
}
.guide_area .box p{
    color: #fff;
    padding: 2rem;
    letter-spacing: 0.02rem;

}
/*ttl--------*/
.ttl {
    display: table;
    position: relative;
    height: 54px;
    line-height: 54px;
    text-align: center;
    padding: 0 40px;
    font-size: clamp(2.2rem, 1.888rem + 1.35vw, 2.9rem);
    background: var(--lightgreen);
    color: #FFF;
    box-sizing: border-box;
    font-weight: 600;
    margin: 0 auto 8rem;
    min-width: 280px;
}
.ttl:before, .ttl:after {
    position: absolute;
    content: '';
    width: 0px;
    height: 0px;
    z-index: 1;
}
.ttl:before {
    top: 0;
    left: -1px;
    border-width: 27px 0px 27px 15px;
    border-color: transparent transparent transparent #fff;
    border-style: solid;
}
.ttl:after {
    top: 0;
    right: -1px;
    border-width: 27px 15px 27px 0px;
    border-color: transparent #fff transparent transparent;
    border-style: solid;
}
@media (max-width: 1024px){
    .guide_area .box {
        width: 32%;
    }
}
@media (max-width: 768px){
    .guide_area p.txt {
        background-image:inherit;
        padding: 0px;
    }
    .ttl {
        margin: 0 auto 5rem;
    }
    .img_onayami {
        margin: 4rem 20px 0 auto;
    }
    .guide_area .box {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        margin-bottom: 3rem;
    }
    .guide_area .box h3 {
        width: 100%;
    }
    .guide_area .box img{
        width: 50%;
        padding: 2rem;
        box-sizing: border-box;
    }
    .guide_area .box p{
        width: 50%;
        box-sizing: border-box;
    }
}
@media (max-width: 600px){
    .guide_area .box img{
        width: 100%;
        padding-bottom: 0;
        padding-top: 0;
    }
    .guide_area .box p{
        width: 100%;
    }
    .ttl {
        margin: 0 auto 3rem;
    }
}
/* ------------------------------------- /
/   relief_area
/* ------------------------------------- */
.relief_area{
    padding: 100px 0 80px;
}
.bg_stripe{
    background-image: url(../img/stripe_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
.relief_area h2{
    position: relative;
    text-align: center;
    font-size: clamp(2.2rem, 1.442rem + 3.28vw, 3.9rem);
    font-weight: 700;
    color: var(--lightgreen);
    background-image: url(../img/kira.svg);
    background-repeat: no-repeat;
    background-size: 60px;
    background-position: center left;
    margin-bottom: 5rem;
}
.relief_area h2:before{
    content: "";
    position: absolute;
    right: 0;
    bottom: -49px;
    width: 117px;
    height: 147px;
    background-image: url(../img/person2.png);
    background-repeat: no-repeat;
    background-size:117px;
    background-position:center;
}
.relief_area li{
    width: 32%;
    border-radius: 7px;
    position: relative;
    margin-bottom: 18px;
}
.relief_area li img{
    border-radius: 8px;
    display: block;
}
.relief_area li .txt {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: rgba(143, 195, 31, 0.8);
    color: #fff;
    text-align: center;
    font-weight: 700;
    font-size: clamp(1.8rem, 1.488rem + 1.15vw, 2.5rem);
    line-height: 1.2;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 8px 8px;
}
@media (max-width: 1024px){
    .price_ct1 li {
        width: 32%;
    }
}
@media (max-width: 600px){
    .relief_area li {
        width: 48%;
    }
    .relief_area li .txt {
        height: 60px;
    }
    .relief_area {
        padding: 50px 0 30px;
    }
    .relief_area h2:before {
        bottom: -7px;
        width: 67px;
        height: 97px;
        background-size: 67px;
    }
    .relief_area h2 {
        position: relative;
        text-align: center;
        font-size: clamp(2.2rem, 1.442rem + 3.28vw, 3.9rem);
        font-weight: 700;
        color: var(--lightgreen);
        background-image: url(../img/kira.svg);
        background-repeat: no-repeat;
        background-size: 40px;
        background-position: bottom 30px left;
        margin-bottom: 0;
        padding-bottom: 4rem;
    }
}
/* ------------------------------------- /
/   service_area
/* ------------------------------------- */

.service_area .service_box{
    margin-bottom: 5rem;
}
.service_area .service_box h3{
    color: var(--lightgreen);
    font-size: clamp(2.2rem, 1.4rem + 2vw, 3.5rem);
    font-weight: 700;
    border-bottom: solid 2px var(--lightgreen);
    margin-bottom: 1.8rem;
    padding-bottom: 5px;
}
.service_area .service_box p{
    font-size: 1.7rem;
}
@media (max-width: 600px){
    .service_area .service_box {
        margin-bottom: 3rem;
    }
}

/* ------------------------------------- /
/   price_area
/* ------------------------------------- */
/*.price_ct1----------*/
.price_ct1 li{
    width: 31%;
    background-color: var(--lightyellow);
    padding: 3rem 2rem;
    text-align: center;
    box-sizing: border-box;
    color: var(--lightgreen);
    border-radius: 7px;
}
.price_ct1 li h3{
    background-color: #fff;
    text-align: center;
    font-size: 140%;
    font-weight: 600;
    padding: 10px;
    border-radius: 7px;
    margin-bottom: 4rem;
    color: var(--lightgreen);
}
.price_ct1 li p.number{
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.price_ct1 li .txt_price{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.price_ct1 li .txt_price{
    border-top: solid 1px var(--lightgreen);
    padding-top: 15px;
    margin-top: 15px;
}
.price_ct1 li .txt_price span{
    width: 67px;
    height: 67px;
    text-align: center;
    color: #fff;
    font-weight: 600;
    background-color: var(--lightgreen);
    display: block;
    border-radius: 50px;
    line-height: 67px;
    font-size: 120%;
}
.price_ct1 li .txt_price p{
    color: #ea5514;
    font-size: 4rem;
    letter-spacing: 0;
    font-weight: 700;
}
.price_ct1 li .txt_price p:after{
    content: "円〜";
    font-size: 1.7rem;
}
.price_area .att{
    position: relative;
    border-bottom: solid 2px var(--lightgreen);
    padding: 0 4rem;
    color: var(--lightgreen);
    font-size: clamp(1.7rem, 1.12rem + 2.51vw, 3rem);
    margin-top: 7rem;
}
.price_area .att:before {
    content: "";
    position: absolute;
    right: -24px;
    bottom: -1px;
    width: 117px;
    height: 107px;
    background-image: url(../img/person.png);
    background-repeat: no-repeat;
    background-size: 117px;
    background-position: center;
}
.price_area .att p{
    padding-bottom: 10px;
}
.price_area .att br{
    display: none;
}
/*.price_btn_open----------*/
.price_btn_open{
    max-width: 300px;
    background-color: var(--lightgreen);
    color: #fff;
    display: block;
    text-align: center;
    border-radius: 7px;
    height: 40px;
    line-height: 40px;
    margin: 5rem auto 0;
    border: solid 2px var(--lightgreen);
    cursor: pointer;
    font-size: 2rem;
    background-image: url(../img/arrow_dwn.svg);
    background-repeat: no-repeat;
    background-size: 17px;
    background-position: center right 20px;
    transition: .4s;
    position: relative;
    z-index: 99;
}
.price_btn_open span{
    display: block;
}
.price_btn_open.active{
    background-image: url(../img/arrow_up.svg);
    transition: .4s;
}
.price_ct2{
    transition: .4s;
    overflow: hidden;
    display: none;
}
.active + .price_ct2{
    transition: .4s;
}
/*.price_ct2----------*/
.price_ct2 h3 {
    text-align: center;
    font-size: 140%;
    color: var(--lightgreen);
    background-color: var(--lightyellow);
    padding: 1.5rem 0;
    margin-bottom: 5rem;
    margin-top: 8rem;
}
.price_ct2 h4{
    border-left: solid 7px var(--lightgreen);
    font-size: 130%;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    color: var(--lightgreen);
    margin-top: 3rem;
}
.price_ct2 .box{
    width: 48%;
}
.price_ct2 .price_list table{
    width: 100%;
}
.price_ct2 .price_list th{
    background-color: var(--lightyellow);
    padding: 7px 10px;
    border: solid 1px;
    font-size: 1.2rem;
    letter-spacing: 0;
}
.price_ct2 .price_list td{
    padding: 7px 10px;
    border: solid 1px;
    text-align: right;
    font-size: 1.2rem;
    letter-spacing: 0;
}
@media (max-width: 1024px){
    .price_area .att {
        padding: 0 1rem;
    }
    .price_area .att:before {
        right: 0;
    }
}
@media (max-width: 995px){
    .price_ct1 li .txt_price {
        padding-top: 10px;
        margin-top: 10px;
        flex-wrap: wrap;
    }
    .price_ct1 li .txt_price p {
        font-size: 3rem;
        text-align: center;
        letter-spacing: 0;
        width: 100%;
    }
    .price_ct1 li .txt_price{
        position: relative;
    }
    .price_ct1 li .txt_price span {
        height: inherit;
        border-radius: 0;
        line-height: inherit;
        padding: 2px 0;
        border-radius: 7px;
        font-size: 100%;
        width: 100%;
    }
    .price_ct1 li h3 {
        font-size: 130%;
        margin-bottom: 1rem;
    }
    .price_ct1 li p.number {
        font-size: 2.5rem;
    }
    .price_area .att br{
        display: block;
    }
}
@media (max-width: 700px){
    .price_ct1 li {
        width: 100%;
        margin-bottom: 2rem;
        padding: 2rem;
    }
    .price_ct2 h3 {
        padding: 1rem 0;
        margin-bottom: 2rem;
        margin-top: 5rem;
        margin-bottom: 0;
    }
}
@media (max-width: 600px){
    .price_area .att{
        margin-top: 1rem;
    }
    .price_area .att:before {
        right: 0px;
        bottom: -8px;
        width: 87px;
        height: 107px;
        background-size: 97px;
    }
    .price_ct2 .box {
        width: 100%;
    }
}

/* ------------------------------------- /
/   faq_area
/* ------------------------------------- */
.faq_box {
    margin-bottom: 4rem;
}
.faq_box h3{
    color: var(--lightgreen);
    font-size: 2.1rem;
    font-weight: 700;
    border-bottom: solid 2px var(--lightgreen);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: stretch;
}
.faq_box h3 span{
    letter-spacing: 0;
    border-right: solid 2px var(--lightgreen);
    padding: 0 10px 5px;
    display: inline-block;
    margin-right: 10px;
}
@media (max-width: 768px){
    .faq_box {
        margin-bottom: 2rem;
    }
}
@media (max-width: 600px){
    .faq_box h3 {
        font-size: 1.7rem;
        line-height: 1.3;
        padding-bottom: 6px;
    }
    .faq_box h3 span{
        margin-bottom: -6px;
    }
}
/* ------------------------------------- /
/   contact_area
/* ------------------------------------- */
.contact_area .contact_add{
    margin-top: 50px;
}
.contact_area .contact_add .add_logo{
    display: block;
    max-width: 380px;
    margin: 0 auto 2rem;
}
.contact_area .contact_add a{
    display: block;
    max-width: 300px;
    margin: 0 auto 10px;
}
.contact_area .contact_add a:hover{
    opacity: 0.7;
}
@media (max-width: 600px){
    .contact_area .contact_add .add_logo {
        max-width: 250px;
    }
    .contact_area .contact_add a {
        max-width: 250px;
    }
}
/*-----------------------*/
.contact_area .form_area h3{
    text-align: center;
    position: relative;
    margin-top: 9rem;
}
.contact_area .form_area h3:before{
    content: "";
    width: 100%;
    height: 1px;
    position: absolute;
    top: 50%;
    left: 0;
    border-bottom: solid 1px ;
    z-index: -1;
}
.contact_area .form_area h3 span{
    text-align: center;
    background-color: #fff;
    padding: 0 4rem;
    font-size: 140%;
}
.contact_form_dl{
    margin-top:40px;
}
.contact_form_dl div{
    margin:10px 0;
}
.contact_form_dl dt {
    padding-bottom:7px;
    width: 100%;
    display: block;
    box-sizing: border-box;
    font-size: 1.7rem;
    color: var(--lightgreen);
    font-weight: 700;
}
.contact_form_dl dd {
    width: 100%;
    display: block;
}
.contact_form_dl dt span {
    flex-shrink: 0;
    display: inline-block;
    color: #B54A4A;
    font-size: 1.4rem;
    padding-left: 7px;
}
.contact_form_dl dd select,
.contact_form_dl dd input{
    padding:12px 10px;
    border: solid 1px #3e3a39;
    border-radius: 0px!important;
    background-color:#fff;
    box-shadow: none;
    box-sizing: border-box;
    width: 100%;
    vertical-align:middle;
    font-size: 1.6rem;
}
.contact_form_dl #message {
    width: 100% !important;
    height: 200px !important;
    border: solid 1px #3e3a39;
    border-radius: 0px!important;
    background-color:#fff;
    box-shadow: none;
    box-sizing: border-box;
    font-size: 1.6rem;
}
#contactButton {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 550px;
    margin: 0 auto;
}
input[type="text"]:focus {
  outline: 0;
}
/* mfp */
#contactButton button[type="reset"],
#contactButton button[type="submit"] {
    margin-top: 40px;
    width: 48%;
    max-width: 250px;
    padding: 15px 0;
    outline: none;
    font-size: 120%;
    font-weight: 700;
    border:solid 2px var(--lightgreen);
    cursor: pointer;
    border-radius: 8px;
    font-family: 'Noto Sans JP', sans-serif;
}

#contactButton button[type="reset"] {
    background-color: unset;
    border:solid 2px var(--lightgreen);
    color: var(--lightgreen);
}
#contactButton button[type="reset"]:hover{
    background-color:var(--lightgreen);
    color: #fff;
}
#contactButton button[type="submit"] {
    color: #fff;
    background-color: var(--lightgreen);
    border:solid 2px var(--lightgreen);
}
#contactButton button[type="submit"]:hover{
    background-color:unset;
    color: var(--lightgreen);
}
div#mfp_overlay {
  color: #333; /* mfp上書き */
}

div.mfp_err {
    color: #c1272d!important;/* mfp上書き */
    border-bottom: none;
}
.privacy_btn a,
.btn{
    max-width: 300px;
    background-color: var(--lightgreen);
    color: #fff;
    display: block;
    text-align: center;
    border-radius: 7px;
    height: 40px;
    line-height: 40px;
    margin: 5rem auto 0;
    border: solid 2px var(--lightgreen);
}
.privacy_btn a:hover,
.btn:hover{
    background-color: #fff;
    color: var(--lightgreen);
}
@media (max-width: 768px){
    .form_area .txt {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
    .contact_form_dl {
        margin-top: 10px;
    }
    .contact_form_dl div {
        padding: 0;
        margin: 10px 0;
    }
    .contact_form_dl dt {
        width: 100%;
        margin-bottom:5px;
        display: block;
    }
    .contact_form_dl dd {
        width: 100%;
    }
    .contact_form_dl #mail1 {
        display: inline-block;
        width: 100%;
    }
    .contact_form_dl #fax, .contact_form_dl #tel, .contact_form_dl #toiawase {
        width: 100%;
    }
    .contact_form_dl label {
        display: flex!important;
        align-items: baseline;
        margin-bottom: 5px;
    }
}
@media (max-width: 500px){
    .contact_area .form_area h3 {
        margin-top: 5rem;
    }
    .contact_form_dl {
        margin-top: 30px;
    }
    .privacy .center{
        text-align: left!important;
    }
}
/* ------------------------------------- /
/   page_top
/* ------------------------------------- */
.page_top {
    max-width: 135px;
    margin: 0 auto  5rem;
}
.page_top a:hover{
    opacity: 0.7;
}
/* ------------------------------------- /
/   footer
/* ------------------------------------- */
footer{
    background-color: var(--lightgreen);
    color: #fff;
    padding:50px 0 30px;
}
footer .left_box{
    width: 48%;
}
footer .left_box .footer_logo{
    max-width: 370px;
    margin-bottom: 2rem;
    display: inline-block;
}
footer .left_box .footer_tel{
    max-width: 320px;
    margin-bottom: 2rem;
    display: inline-block;
}
footer .right_box{
    width: 48%;
}
footer ul{
    max-width: 130px;
    margin: 0 0 0 auto;
}
footer a{
    color: #fff; 
}
footer li a:before{
    content: "●";
    padding-right: 5px;
}
footer a:hover{
    opacity: 0.7;
}
.copy{
    text-align: center;
    font-size: 1.2rem;
    margin-top: 70px;
    letter-spacing: 0.02rem;
}
@media (max-width: 500px){
    .footer .left_box p{
        font-size: 1.5rem;
    }
    footer .left_box {
        width: 100%;
    }
    footer .right_box {
        width: 100%;
        max-width: inherit;
        margin: 20px auto 0;
    }
    footer .left_box .footer_logo {
        max-width: 240px;
        margin: 0 auto;
        margin-bottom: 2rem;
        display: table;
    }
    footer .left_box .footer_tel {
        max-width: 230px;
        display: table;
        margin: 0 auto 2rem;
    }
    footer .left_box p{
        text-align: center;
    }
    .copy {
        margin-top: 30px;
    }
}
/* ------------------------------------- /
/   thanks
/* ------------------------------------- */
.lower_main_area{
    color: var(--lightgreen);
    background-color: var(--lightyellow);
    padding: 7rem 0;
    text-align: center;
    font-size: 170%;
}
.contact_thnaks{
    padding: 100px 0;
}
@media (max-width: 500px){
    .contact_thnaks p{
        text-align: left!important;
    }
    .contact_thnaks{
        padding: 50px 0;
    }
}




