a {
    transition: 0.2s;
}

a:hover {
    opacity: 0.5;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    text-align: justify;
    font-feature-settings: "palt";
    letter-spacing: 0.1em;
    color: #221613;
}

.disp-pc {
    display: block;
}

.disp-sp {
    display: none;
}

/* SP調整 */
@media screen and (max-width:730px) {

    .disp-pc {
        display: none;
    }

    .disp-sp {
        display: block;
    }

}



/* header */
.header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.header_logo {
    max-width: 180px;
}

.menu_btn {
    display: none;
}

.gnav {
    display: flex;
    align-items: center;
    gap: 0 10px;
    color: #808080;
    font-size: 14px;
}

.gnav .page-company,
.gnav .page-business {
    width: 140px;
    text-align: center;
    font-size: 16px;
}

.gnav .page-company a {
    background-color: #a0c765;
    color: #fff;
    display: block;
    padding: 8px 15px 10px;
    outline: 1px solid #fff;
    outline-offset: -5px;
}

.gnav .page-business a {
    background-color: #60b06b;
    color: #fff;
    display: block;
    padding: 8px 15px;
    outline: 1px solid #fff;
    outline-offset: -5px;
}

.gnav .page-contact {
    border-right: 1px solid #808080;
    padding: 0 10px;
}




/* SP調整 */
@media screen and (max-width:800px) {

    .header_inner {
        height: 60px;
    }

    .header_logo {
        max-width: 150px;
        width: 40%;
        margin: 0 auto;
    }

    .menu_wrap {
        background-color: #dfe8c8;
        position: fixed;
        top: 0;
        right: 0;
        transition: 0.5s;
        z-index: 1000;
    }

    .menu_btn {
        display: block;
        width: 60px;
        height: 60px;
        padding: 10px;
    }

    .menu_btn .inner {
        width: 40px;
        height: 40px;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 20px 0;
    }

    .menu_btn span {
        display: block;
        width: 100%;
        height: 2px;
        background-color: #828282;
        transition: 0.3s;
    }

    .menu_content {
        min-width: 150px;
        display: none;
    }

    .menu_content .gnav {
        flex-direction: column;
        color: #fff;
        text-align: center;
        font-size: 16px;
    }

    .gnav .page-company a,
    .gnav .page-business a {
        background-color: initial;
        outline: none;
        padding: 0;
    }

    .menu_content .gnav li {
        width: 100%;
        border-bottom: 1px solid #fff;
    }
    .menu_content .gnav li:last-child {
        border-bottom: 0;
    }
    
    .menu_content .gnav li a {
        width: 100%;
        display: block;
        padding: 10px 5px;
    }

    .menu_content .gnav li.page-contact {
        border-right: none;
    }



    .menu_wrap.show {
        background-color: hsla(0, 0%, 0%, 0.8);
        padding: 60px 20px 10px;
    }


    .menu_wrap.show .menu_btn {
        width: 40px;
        height: 40px;
        padding: 0;
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .menu_wrap.show .menu_btn .inner {
        width: 40px;
        height: 40px;
    }

    .menu_wrap.show .menu_btn span {
        z-index: 100;
        right: 0;
        top: 19px;
    }

    .menu_wrap.show .menu_btn span:nth-child(1) {
        background-color: #fff;
        position: absolute;
        transform: rotate(-45deg);
    }

    .menu_wrap.show .menu_btn span:nth-child(2) {
        background-color: #fff;
        position: absolute;
        transform: rotate(45deg);
    }


    .menu_wrap.show .menu_content {
        display: block;
    }
}



/* footer */
footer {
    background-color: #aeaeaf;
    color: #fff;
    padding: 10px 0;
    margin-top: 120px;
}
.footer_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 10px;
    font-size: clamp(12px,1.2vw,14px);
}

.footer_nav .page-contact {
    border-right: 1px solid #fff;
    padding: 0 10px;
}

.footer_copy {
    text-align: center;
    font-size: clamp(10px,1vw,12px);
}

/* SP調整 */
@media screen and (max-width:730px) {
    footer {
        margin-top: 80px;
    }
}




.page_ttl_wrap {
    margin: 50px 0 40px;
}

.page_ttl {
    width: clamp(240px,55%,300px);
    margin: 0 auto;
    position: relative;
    text-align: center;
    font-size: clamp(28px,3vw,34px);
    font-weight: bold;
    padding-bottom: 10px;
    border-bottom: 1px solid #221613;
}

.page_ttl::after {
    content: '';
    background-color: #a0c765;
    width: 30%;
    height: 6px;
    position: absolute;
    transform: translate(-50%,0);
    left: 50%;
    bottom: -3px;
}

.page_ttl_ja {
    text-align: center;
    font-size: clamp(14px,1.5vw,17px);
    margin-top: 15px;
}

/* SP調整 */
@media screen and (max-width:730px) {
    .page_ttl_wrap {
        margin: 20px 0 30px;
    }
}