@charset "UTF-8";
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}
body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    color: #333;
    letter-spacing: 0.05em;
    line-height: 1.5;
    text-align: justify;
}
.h2-sub {
    font-family: "Lexend Peta", sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.2;
    border-bottom: solid 2px #333;
    width: fit-content;
    margin: 0 auto 5px;
}
h2 {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 30px;
}
.green {
    color: #39B5AD;
}
a {
    transition: 0.2s;
}
a:hover {
    opacity: 0.6;
}

/* header */
header {
    position: fixed;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
    padding: 0 60px;
    background-color: rgba(255, 255, 255, 0.2);
    z-index: 999;
}
h1 {
    margin-bottom: 23px;
}
.nav-list {
    display: flex;
    gap: 30px;
    justify-content: center;
}
.nav-list a {
    font-weight: 700;
    color: #333;
}

/* top */
.top {
    height: 768px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    background: url(../images/bg.png) no-repeat center / cover;
}
.top img {
    margin-bottom: 20px;
}
.catch-copy {
    font-size: 24px;
    font-weight: 900;
    text-align: center;
}

/* about */
.section-about {
    padding-top: 80px;
}
.about-desc {
    background-color: #39B5AD;
    padding: 80px 24px 50px;
}
.about-desc p {
    color: #fff;
    text-align: center;
    line-height: 2;
    margin-bottom: 30px;
}
.pc-block {
    display: none;
}

/* services */
.section-services {
    padding: 80px 0;
}
.services-list {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    padding: 0 48px;
}
.services-list li {
    background-color: #39B5AD;
    width: 300px;
    padding: 35px 35px 30px 35px;
    border-radius: 10px;
}
.services-img {
    height: 108px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}
h3 {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    text-align: center;
    margin-bottom: 35px;
}
.services-list p {
    color: #fff;
    margin-bottom: 45px;
}
.more-btn a {
    display: block;
    line-height: 0;
    width: 196px;
    margin: 0 auto;
}

/* recruit */
.section-recruit {
    background-color: #F6F6F6;
    border-radius: 200px 200px 0 0;
    padding: 80px 24px 257px;
}
.section-recruit h2 {
    margin-bottom: 60px;
}
.recruit-desc {
    max-width: 440px;
}
.recruit-heading {
    font-size: 24px;
    font-weight: 900;
    color: #39B5AD;
    margin: 41px 0 30px;
}
.recruit-container {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}
.recruit-container p {
    margin-bottom: 20px;
}
.rc-01 {
    flex-direction: row-reverse;
    margin-bottom: 60px;
}
.rc-02 div p:first-child {
    margin-top: 79px;
}
.rc-02 .more-btn a {
    margin: 29px 0 0 auto;
}

/* contact */
.section-contact {
    padding: 0 24px;
}
.section-wrapper {
    background-color: #39B5AD;
    padding: 60px 0;
    max-width: 1000px;
    margin: -137px auto 60px;
    border-radius: 10px;
}
.white {
    color: #fff;
}
.section-contact h2 {
    margin-bottom: 40px;
}
form {
    max-width: 560px;
    margin: 0 auto;
    padding: 0 24px;
    box-sizing: content-box;
}
form dt {
    color: #fff;
    margin-bottom: 5px;
}
.name-area,
.text-area {
    width: 100%;
    border-radius: 6px;
    border: none;
}
.name-area {
    height: 37px;
    margin-bottom: 25px;
}
.text-area {
    height: 207px;
    margin-bottom: 30px;
}
.submit-wrapper {
    text-align: center;
}
.submit {
    font-size: 16px;
    font-weight: 700;
    color: #39B5AD;
    background-color: #fff;
    width: 110px;
    height: 50px;
    border: none;
    border-radius: 25px;
    transition: 0.2s;
}
.submit:hover {
    cursor: pointer;
    opacity: 0.6;
}

/* footer */
footer {
    position: relative;
    background-color: #333;
    padding: 40px 0 20px;
}
footer .nav-list {
    margin-bottom: 80px;
}
footer .nav-list a {
    color: #fff;
}
.top-btn {
    position: absolute;
    right: 60px;
    top: 40px;
}
.copy-right {
    font-family: "Lexend Peta", sans-serif;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.2;
    color: #959595;
    text-align: center;
}

@media screen and (max-width: 767px) {
    html {
        scroll-padding-top: 70px;
    }
    body {
        font-size: 14px;
    }
    .h2-sub {
        font-size: 14px;
        border-bottom: solid 1px #333;
        margin: 0 auto 3px;
    }
    h2 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    img {
        max-width: 100%;
        height: auto;
    }

    /* header */
    header {
        height: 70px;
        padding: 0 24px;
    }
    h1 {
        margin-bottom: 12px;
    }
    h1 img {
        width: 130px;
    }
    #g-nav {
        position: fixed;
        z-index: 999;
        top: 0;
        right: -120%;
        width: 100%;
        height: 100svh;
        background: #333;
        transition: 0.6s;
        display: flex;
        justify-content: center;
    }
    #g-nav.panel-active {
        right: 0;
    }
    #g-nav .nav-list {
        flex-direction: column;
        align-items: center;
    }
    #g-nav .nav-list a {
        font-size: 20px;
        color: #fff;
    }
    .open-btn {
        cursor: pointer;
        z-index: 9999;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 14px;
        box-sizing: content-box;
        padding: 13px 0;
    }
    .open-btn span {
        display: block;
        transition: 0.4s;
        width: 40px;
        height: 2px;
        background-color: #333;
    }
    .open-btn.active span:nth-of-type(1) {
        transform: translateY(6px) rotate(-15deg);
    }
    .open-btn.active span:nth-of-type(2) {
        display: none;
    }
    .open-btn.active span:nth-of-type(3) {
        transform: translateY(-6px) rotate(15deg);
    }
    .active span {
        background-color: #fff;
    }

    /* top */
    .top {
        height: 667px;
    }
    .top img {
        width: 256px;
        margin-bottom: 12px;
    }
    .catch-copy {
        font-size: 14px;
    }

    /* about */
    .section-about {
        padding-top: 60px;
    }
    .about-desc {
        padding: 60px 24px 20px;
    }
    .about-desc p {
        margin-bottom: 40px;
    }

    /* services */
    .section-services {
        padding: 60px 0;
    }
    .services-list {
        gap: 20px;
    }
    .services-list li {
        width: 279px;
        padding: 24px;
        border-radius: 6px;
    }
    .si-01 img {
        width: 107px;
    }
    .si-02 img {
        width: 136px;
    }
    .si-03 img {
        width: 100px;
    }
    h3 {
        font-size: 20px;
        margin-bottom: 30px;
    }
    .services-list p {
        margin-bottom: 20px;
    }
    .more-btn a {
        width: 178px;
    }

    /* recruit */
    .section-recruit {
        border-radius: 100px 100px 0 0;
        padding: 60px 24px 217px;
    }
    .section-recruit h2 {
        margin-bottom: 40px;
    }
    .recruit-heading {
        font-size: 22px;
        margin: 0 0 20px 0;
    }
    .recruit-container {
        gap: 20px;
    }
    .recruit-container p {
        margin-bottom: 20px;
    }
    .rc-01 {
        margin-bottom: 20px;
    }
    .rc-02 div p:first-child {
        margin-top: 0;
    }
    .rc-02 .more-btn a {
        margin: 40px auto 0;
    }

    /* contact */
    .section-wrapper {
        padding: 40px 0;
        margin: -137px auto 40px;
        border-radius: 6px;
    }
    .section-contact h2 {
        margin-bottom: 30px;
    }
    form dt {
        margin-bottom: 4px;
    }
    .name-area,
    .text-area {
        border-radius: 4px;
    }
    .name-area {
        height: 32px;
        margin-bottom: 20px;
    }
    .text-area {
        height: 170px;
        margin-bottom: 20px;
    }
    .submit {
        font-size: 14px;
        width: 102px;
        height: 46px;
    }

    /* footer */
    footer {
        padding: 30px 24px 20px;
    }
    footer .nav-list {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 50px;
    }
    .top-btn {
        right: 24px;
        top: 30px;
    }
    .top-btn img {
        width: 29px;
    }
    .copy-right {
        font-size: 10px;
        text-align: left;
    }
    
}