* {
    margin: 0;
    padding: 0;
    border: 0;
    box-sizing: border-box;
    font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

.l-header {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.l-header__logo {
    flex: 0 0 288px;
}

@media (max-width: 767px) {
    .l-header__logo {
        flex: 0 0 214px;
    }
}

.l-header__logo img {
    width: 100%;
    height: auto;
}


.l-main {
    padding: 60px 20px 120px;
}

@media screen and (max-width: 767px) {
    .l-main {
        padding: 40px 20px 100px;
    }
}

.l-main__inner {
    max-width: 600px;
    margin: 0 auto;
}

.l-main__title {
    margin-bottom: 40px;
    color: #00AA71;
    text-align: center;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: 49.68px;
    letter-spacing: 1.656px;
}
@media screen and (max-width: 767px) {
    .l-main__title {
        font-size: 24px;
    }
}

.l-main__title::after {
    content: '';
    display: block;
    width: 144px;
    height: 4px;
    margin: 16px auto 0;
    background: #00AA71;
}


.l-main__media article {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #bbb;
}
.l-main__media article:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.l-main__media article h2 {
    margin-bottom: 24px;
    color: #212529;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 1.224px;
}

@media screen and (max-width: 767px) {
    .l-main__media article h2 {
        font-size: 18px;
    }
}

.l-main__media article img {
    width: 100%;
    height: auto;
}
.l-main__media article p {
    margin-top: 24px;
    color: #212529;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    letter-spacing: 0.72px;
}

@media screen and (max-width: 767px) {
    .l-main__media article p {
        font-size: 14px;
    }
}

.l-main__media article p a {
    font-weight: 700;
    transition: .35s ease;
    cursor: pointer;
}

.l-main__media article p a:link,
.l-main__media article p a:visited {
    color: #212529;
    text-decoration: none;
}

.l-main__media article p a:hover,
.l-main__media article p a:active {
    color: #00AA71;
}

.l-footer {
    background: #F9F9F9;
}

.l-footer__logo {
    width: 288px;
    margin: 0 auto;
    padding-top: 140px;
    padding-bottom: 90px;
}
@media screen and (max-width: 767px) {
    .l-footer__logo {
        width: 291px;
        padding-top: 80px;
        padding-bottom: 0;
    }
}

.l-footer__logo img {
    width: 100%;
    height: auto;
}

.l-footer__links {
    max-width: 924px;
    margin: 0 auto;
    padding: 20px 30px 95px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
    list-style: none;
}

@media screen and (max-width: 767px) {
    .l-footer__links {
        flex-direction: column;
    }
}

.l-footer__links li {
    flex: 0 0 calc(215 / 864 * 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-right: 1px solid #ddd;
}
@media screen and (max-width: 767px) {
    .l-footer__links li {
        width: 100%;
        flex: 1 1 100%;
        display: block;
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
}

.l-footer__links li:last-child {
    border-right: none;
}

.l-footer__links li a {
    color: #000;
    text-align: center;
    font-size: 10.1px;
    font-style: normal;
    font-weight: 500;
    line-height: 15.12px;
    text-decoration: none;
    transition: .35s ease;
}

@media screen and (max-width: 767px) {
    .l-footer__links li a {
        width: 100%;
        padding: 16px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 14px;
    }
    .l-footer__links li a::after {
        width: 9px;
        height: 9px;
        display: block;
        border-right: 2px solid #000;
        border-bottom: 2px solid #000;
        content: '';
        transform: rotate(-45deg);
    }
}

.l-footer__links li a:link,
.l-footer__links li a:visited {
    color: #000;
}

.l-footer__links li a:hover,
.l-footer__links li a:active {
    color: #00AA71;
}

.l-footer__copy {
    padding: 28px 20px;
    background: #000;
    color: #FFF;
    text-align: center;
    font-size: 10.1px;
    font-style: normal;
    font-weight: 350;
    line-height: 15.12px;
}