@charset "utf-8";

.wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    letter-spacing: 0.1em;
}

.title {
    width: 90%;
    max-width: 1200px;
    display: block;
    padding: 90px 0 60px;
    margin: 0 auto;
    border-bottom: 1px solid #DADDD8;
    margin-top: 70px;
}

.title>div {
    display: flex;
    align-items: center;
}

.title>div>span {
    font-size: 11px;
    display: inline-block;
    padding: 5px 15px;
    border: 1px solid #D1D1D1;
    border-radius: 6px;
    margin-right: 15px;
}

.title>div>small {
    font-size: 10px;
}

.title>h1 {
    font-size: 23px;
    margin-top: 10px;
}

.info_body {
    width: 90%;
    max-width: 1000px;
    padding-bottom: 60px;
    margin: 60px auto 50px;
    border-bottom: 1px solid #DADDD8;
}

.info_body h3 {
    font-size: 12px;
    margin-bottom: 30px;
}

.info_body p {
    line-height: 2.4;
    font-size: 13px;
}

.info_body .underline {
    text-decoration: underline;
}

.list {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto 60px;
}

.list h3 {
    font-size: 12px;
    margin-bottom: 15px;
}

.list>p {
    font-size: 12px;
    text-align: right;
    margin-bottom: 30px;
    opacity: .6;
}

.list ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 25px;
}

.list ul img {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 5px;
}

.list ul h4 {
    font-size: 14px;
}

.list ul h5 {
    font-size: 12px;
    margin: 5px 0 3px;
}

.list ul p {
    font-size: 13px;
}


@media(min-width:1000px) {
    .title {
        padding: 90px 50px;
    }

    .title>h1 {
        font-size: 34px;
    }

    .info_body {
        border-bottom: none;
        width: 90%;
    }

    .info_body h3 {
        font-size: 16px;
        opacity: .7;
    }

    .info_body p {
        line-height: 2.4;
        font-size: 16px;
    }

    .list {
        width: 90%;
    }

    .list h3 {
        font-size: 16px;
        opacity: .7;
    }
}