@charset "UTF-8";

.notfound {
    width: 100%;
    margin: 0 auto;
}

.notfound .inner {
    width: max-content;
    max-width: 100%;
    height: auto;
    min-height: 1080px;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
    padding: 100px 20px;
    gap: 24px;
}

.notfound .inner h2 {
    color: #238339;
    font-family: "Noto Sans JP";
    font-size: 50px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 50px */
}

.notfound .inner h3 {
    color: #238339;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 26px;
    font-style: normal;
    font-weight: 600;
    line-height: 100%;
    /* 26px */
}

.notfound .inner p {
    color: #238339;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 180%;
    /* 28.8px */
}

.notfound .inner .btn_area {
    border-radius: 5px;
    background: #37A250;
    display: flex;
    width: 230px;
    height: 50px;
    padding: 0 10px;
    justify-content: center;
    align-items: center;
}

.notfound .inner .btn_area a {
    color: #FFF;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    /* 16px */
}

/* SP版 768px未満に適応*/
@media screen and (max-width: 767px) {
    .notfound .inner {
        min-height: unset;
        padding: 64px 20px 80px;
    }


    .notfound .inner h3 {
        line-height: 150%;
    }
}