*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

img{
    width: 100%;
    display: block;
    object-fit: contain;
}
a{
    display: block;
}

.wrapper{
    max-width: 600px;
    margin-inline: auto;
}

header{
    background-color: #fff;
}
header .header_inner{
    display: flex;
    justify-content: space-between;
    padding: 10px 2.5% 8px;
}
header .header_inner .logo{
    width: 35%;
}
header .header_inner a{
    width: 50%;
}

.cta_area{
    position: relative;
    margin-bottom: -8px;
}
.cta_area .cta{
    position: absolute;
    width: 88%;
    left: 6%;
}
.cta_area .cta.tel{
    top: 28%;
    overflow: hidden;
}
.cta_area .cta.tel a{
    position: relative;
}
.cta_area .cta.tel a::before{
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny 3s ease-in-out infinite;
}
@-webkit-keyframes shiny {
    0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
    80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
    81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
    100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}
.cta_area .cta.mail{
    top: 57%;
}

.faq_area{
    margin-bottom: 20px;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.faq_area .acc{
    width: 95%;
    margin-inline: auto;
}
.faq_area .acc dt{
    background-color: #00964d;
    position: relative;
    display: flex;
    vertical-align: middle;
    padding: 10px 4%;
    column-rule: #fff;
    font-weight: bold;
    color: #fff;
}
.faq_area .acc dd+dt{
    margin-top: 15px;
}
.faq_area .acc dt::before,
.faq_area .acc dt::after{
    display: block;
    content: '';
    background-color: #fff;
    width: 20px;
    height: 3px;
    position: absolute;
    right: 3%;
    top: 50%;
}
.faq_area .acc dt::after{
    transform: rotate(90deg);
    transition: all 0.3s;
}
.faq_area .acc dt.active::after{
    transform: rotate(0);
}
.faq_area .acc dt img{
    display: inline-block;
    width: 30px;
    margin-right: 10px;
}
.faq_area .acc dd{
    display: none;
    padding: 10px 4%;
    border: 2px solid #00964d;
}

footer{
    background-color: #8A5F3C;
    padding: 25px 0;
}
footer p,
footer a,
footer th,
footer td,
footer li{
    color: #fff;
    font-size: 14px;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
footer .inner{
    padding: 10px 5%;
    max-width: 500px;
    margin-inline: auto;
}
footer .inner+.inner{
    border-top: 1px solid #fff;
}
footer .footer_logo{
    background-color: #fff;
    padding: 10px 20px;
    width: 80%;
    margin: 0 auto 20px;
}
footer .footer_table{
    margin: 10px auto;
}
footer .privacy{
    display: block;
    text-align: center;
    margin: 10px auto;
}
footer .contact{
    margin: 10px auto;
}
footer .footer_list{
    display: flex;
    gap: 20px;
    align-items: flex-start;
    justify-content: center;
    margin-top: 10px;
}
footer .footer_list ul{
    list-style: none;
}

.hide{
    display: none !important;
    height: 0;
    opacity: 0;
}

.privacy_page{
    width: 95%;
    max-width: 600px;
    margin-inline: auto;
    font-family: "Noto Sans", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}
.privacy_page h2{
    background-color: #8A5F3C;
    padding: 15px 0;
    text-align: center;
    margin: 30px auto;
    font-size: 30px;
    color: #fff;
    font-weight: bold;
}
.privacy_page dl{
    margin-bottom: 20px;
}
.privacy_page dl dt{
    margin-bottom: 10px;
    font-weight: bold;
}