@charset "utf-8";

/************************************************************************************
HEADER
*************************************************************************************/
.header{
    margin-bottom: 5.7rem;
}

.pc-header{
	display: none;
}

.sp-header{
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    width: 100%;
    background: #fff;
}

.sp-header-main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 0.3rem solid #006F3F;
    box-shadow: 0 0.3rem 0.6rem rgba(0,0,0,0.2);
    height: 5.7rem;
}

.footerArea {
    display: none;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
}

.footerArea.is-open {
    display: block;
    opacity: 1;
}

.logo1{
    width: 15.7rem;
    height: auto;
}

.logo2{
    width: 15.2rem;
    height: auto;
    margin-top: 1rem;
}

.header-btn-img2 img,
.header-btn-img3 img,
.header-btn-img4 img{
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-btn-img1{
    width: 2rem;
    height: auto;
    display: block;
}

.header-btn-img2{
    width: 1.7rem;
    height: 1.5rem;
    display: inline-block;
    margin-right: 1rem;
}

.header-btn-img2 img{
    margin-top: 0.2rem;
}

.header-btn-img3{
    width: 1.5rem;
    height: 1.5rem;
    display: inline-block;
    margin-right: 1rem;
}

.header-btn-img3 img{
    margin-top: 0.2rem;
}

.header-btn-img4{
    width: 1.5rem;
    height: 1.7rem;
    display: inline-block;
    margin-right: 1rem;
}

.header-btn-img4 img{
    margin-top: 0.3rem;
}

.h-52{
    height: 5.2rem;
}

a.pr-4{
    padding-right: 4rem;
}

.sp-header-main-right{
    margin-right: 4.3rem;
}

.siteMenu{
    height: 5.4rem;
    width: 8.4rem;
}

.siteMenu-btn{
    background-color: #E76F51;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 0.8rem 0 0.5rem;
}

.header-btn-text{
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    display: inline-block;
    text-align: center;
}

.menuToggle{
    position: absolute;
    z-index: 9999;
    width: 5.7rem;
    height: 5.7rem;
    padding: 1.5rem;
    box-sizing: border-box;
    top: 0;
    right: 0px;
}

.menuToggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: #006F3F;
    margin: 0.6rem 0;
    transition: 0.4s;
}

/* バツ印に変化するスタイル */
.menuToggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.5rem, 0.5rem);
}

.menuToggle.active span:nth-child(2) {
    opacity: 0;
}

.menuToggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.6rem, -0.6rem);
}


.sidenav {
    height: 100%;
    position: fixed;
    top: 0;
    right: -40rem;
    background-color: #fff;
    overflow-x: hidden;
    transition: 0.3s;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 40rem;
}

.sidenav.active{
    width: 100%;
    right: 0;
    top: 0;
}

.sidenav-btnarea{
    border-top: 0.3rem solid #006F3F;
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.header-list{
    margin-top: 2.3rem;
}

.header-item{
    font-size: 1.4rem;
    border-bottom: 1px solid #D6D6D6;
    padding: 0;
    color: #5A5A5A;
    position: relative;
}

.header-item a{
    display: block;
    padding: 1.7rem 0;
}

.header-item::after{
    position: absolute;
    content: "";
    border-top: 0.1rem solid #707070;
    border-right: 0.1rem solid #707070;
    transform: rotate(45deg) translateY(-50%);
    top: 50%;
    right: 0.8rem;
    width: 0.6rem;
    height: 0.6rem;
}

@media screen and (min-width: 780px) {
    .header{
        margin-bottom: 0;
    }

    .pc-header{
        display: block;
    }

    .sp-header{
        display: none;
    }

    .logo1{
        width: 220px;
        height: auto;
    }
    .logo1 a:hover{
        opacity: 0.7;
    }

    .header-area{
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 13px 0;
    }

    .header-btnlist{
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
        align-items: center;
        gap: 0 10px;
    }

    .header-btn a{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        padding: 8px 25px;
        border-radius: 30px;
        font-size: 16px;
        font-weight: 600;
        color: #fff;
        text-align: center;
        background-color: #E76F51;
        border: 2px solid #E76F51;
    }

    .header-btn.is-green a{
        color: #006F3F;
        background-color: #fff;
        border: 2px solid #006F3F;
    }

    .header-btn.is-pink a{
        color: #C42756;
        background-color: #fff;
        border: 2px solid #C42756;
    }

    .header-btn a:hover{
        background-color: #F2A591;
        border-color: #F2A591;
    }

    .header-btn.is-green a:hover{
        background-color: #fff;
        opacity: 0.7;
        border-color: #006F3F;
    }

    .header-btn.is-pink a:hover{
        background-color: #fff;
        opacity: 0.7;
        border-color: #C42756;
    }

    .header-btn-link{
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .header-icon-car{
        width: 18px;
        height: 16px;
        display: inline-block;
    }

    .header-icon-kojin{
        width: 15px;
        height: 15px;
        display: inline-block;
    }

    .header-icon-houjin{
        width: 20px;
        height: 22px;
        display: inline-block;
    }

    .header-icon-car,
    .header-icon-kojin,
    .header-icon-houjin{
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .site-menu-list{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
        padding: 15px 0;
    }

    .site-menu-item{
        border-left: 1px solid #fff;
    }

    .site-menu-item:last-child{
        border-right: 1px solid #fff;
    }

    .site-menu-item a{
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        padding: 8px;
        display: block;
        text-align: center;
    }

    .site-menu-item a:hover{
        opacity: 0.7;
    }

    .site-menu-item.item1{
        width: 18.57%;
    }

    .site-menu-item.item2{
        width: 15.51%;
    }

    .site-menu-item.item3{
        width: 24.18%;
    }

    .site-menu-item.item4{
        width: 19.70%;
    }

    .site-menu-item.item5{
        width: 22.0%;
    }
}

@media screen and (min-width: 980px) {
    .header-btnlist{
        gap: 0 20px;
    }
}




/*------------------------------
footer
-----------------------------*/
.footer-start{
    border-top: 0.3rem solid #006F3F;
    margin-top: 6rem;
}

.footer-inner{
    padding: 0 1.5rem;
}

.footer-text{
    color: #5A5A5A;
}

.footer-link{
    border-top: 1px solid #D4D4D4;
    padding: 1.2rem 1.0rem;
    display: block;
    font-size: 1.2rem;
    position: relative;
    color: #5A5A5A;
}

.pdf-img{
    width: 1.1rem;
    height: 1.1rem;
    vertical-align: middle;
    padding-left: 0.3rem;
    display: inline-block;
}

.footer-link:last-child{
    border-bottom: 1px solid #D4D4D4;
}

.accordion-circle {
    position: relative;
    display: block;
    width: 2.0rem;
    height: 2.0rem;
    color: #939393;
}

.accordion-circle.is-gray {
    width: 2.0rem;
    height: 2.0rem;
    margin-bottom: 0;
}

.accordion-circle.is-gray::before{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 0.1rem;
    background-color: #5A5A5A;
    width: 1.2rem;
}

.accordion-circle.is-gray::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-90deg);
    height: 0.1rem;
    background-color: #5A5A5A;
    width: 1.2rem;
    transition: .5s;
}

.is-open .accordion-circle::after{
	transform: translate(-50%, -50%) rotate(180deg);
}

.footer-accordion-title{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 0;
}


.footer-accordion-title::before{
    position: absolute;
    content: "";
    width: 0.3rem;
    height: 2rem;
    background-color: #006F3F;
    top: 0;
    left: 0;
    z-index: 1;
}

#copyright {
	color:#000;
	font-size: 0.8rem;
	line-height:1.4;
	padding: 0.7rem 0;
	text-align:center;
}

.footer-link2{
    border-top: 0.1rem solid #D4D4D4;
    display: block;
    font-size: 1.2rem;
    padding: 1.2rem 1rem;
    position: relative;
    color: #5A5A5A;
}

.footer-link2.is-long{
    letter-spacing: -0.05em;
}

.footer-link2::after{
    position: absolute;
    content: "";
    border-top: 0.1rem solid #5A5A5A;
    border-right: 0.1rem solid #5A5A5A;
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
    right: 1.8rem;
    width: 0.8rem;
    height: 0.8rem;
}

.copyright{
    font-size: 1.0rem;
    color: #5A5A5A;
    text-align: center;
    padding: 2rem 0;
    border-top: 0.1rem solid #D4D4D4;
}

@media screen and (min-width: 780.0px) {
    .footer-start{
        margin-top: 120px;
        padding-top: 60px;
    }

    .footer-inner{
        max-width: 980px;
        padding: 0 20px;
        margin: 0 auto;
        box-sizing: border-box;
        margin-bottom: 35px;
    }

    .footer-links{
        display: flex;
        justify-content: space-between;
    }

    .footer-links-box{
        display: inline-block;
    }

    .footer-link{
        border-top: none;
        padding: 5px 0;
        box-sizing: border-box;
        font-size: 12px;
    }

    .footer-link:last-child{
        border-bottom: none;
    }

    .footer-accordion-title.footer-link{
        padding: 12px 0
    }

    .accordion-circle.is-gray {
        width: 42px;
        height: 42px;
    }

    .accordion-circle.is-gray::before,
    .accordion-circle.is-gray::after{
        height: 3px;
        width: 17px;
    }

    .footer-link2{
        font-size: 16px;
        padding: 20px;
    }

    .footer-link:hover,
    .footer-link2:hover{
        cursor: pointer;
        opacity: 0.7;
    }

    .copyright {
        margin-top: 25px;
        font-size: 10px;
        padding: 20px 0 20px;
        border-top: 1px solid #D4D4D4;
    }
}

/*------------------------------------------------------
footer-nav
-------------------------------------------------------*/
.footer-nav{
    background-color: #FCFAF5;
    padding: 3rem 1.5rem;
}

.footer-nav-title{
    font-weight: bold;
    text-align: center;
}

.footer-nav-list{
    margin-top: 1.5rem;
}

.footer-nav-item{
    border-bottom: 0.1rem solid #D6D6D6;
    padding: 1.5rem 0;
}

@media screen and (min-width: 780px) {
    .footer-text{
        font-size: 14px;
        font-weight: 600;
        border-left: 4px solid #006F3F;
        line-height: 1.1;
        padding: 4px 5px;
        margin-bottom: 4px;
    }

    .footer-nav{
        background-color: #FCFAF5;
        padding: 40px 15px;
    }
    .footer-nav-list{
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-top: 30px;
    }

    .footer-nav-item{
        border-bottom: none;
        border-right: 1px solid #D6D6D6;
        padding: 0;
        width: 30%;
        text-align: center;
    }

    .footer-nav-item:last-child{
        border-right: none;
    }

    .footer-nav-item a:hover{
        text-decoration: underline;
    }
}


@media screen and (min-width: 980px) {
    .tab{
        display: none;
    }
}