@charset "UTF-8";

/* title */
.title {
    padding: 80px 24px 24px;
}

.title h1 {
    font-size: 2rem;
}

.type {
    display: flex;
    padding: 40px 0 8px;
}

.type dt {
    font-weight: normal;
    width: 12%;
}

.type dd {
    width: 88%;
}

@media screen and (min-width:600px) {
    .title {
        padding: 80px;
        display: flex;
        flex-direction: column;
    }

    .title_wrap {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .title h1 {
        font-size: 2.4rem;
    }

    .title_text {
        padding: 40px;
        display: flex;
        flex-direction: column;
    }

    .type dt {
        padding: 0 40px;
        width: 8%;
    }

    .type dd {
        width: 92%;
    }

    .kv {
        margin: 0 auto;
    }
}

/* container */

.container {
    padding: 8px 24px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.container h3 {
    padding: 8px 8px 0;
}

.container p {
    padding: 0 8px;
}

@media screen and (min-width:600px) {
    .container {
        max-width: 800px;
        padding: 24px 24px 60px;
        margin: 0 auto;
        justify-content: space-between;
        gap: 1%;
    }

    .container .card {
        width: 48%;
    }

    .container .card img {
        box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
    }


    .container h3 {
        font-size: .9rem;
    }

    .container p {
        font-size: .8rem;
    }
}


/* link */

.link {
    padding: 60px 0;
    background-color: #333;
    color: #eee;
}

.wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card {
    width: 80%;
    padding: 24px 0;
}

.card h3 {
    font-weight: bold;
}

.others {
    width: 80px;
    margin: 0 auto;
    padding: 40px 0 16px;
    font-size: 1.6rem;
}

.Item {
    text-decoration: none;
    color: #eee;
}

.Item-Text {
    position: relative;
    z-index: 1;
}

.Item-Text:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0%;
    height: 1px;
    background: #eee;
    z-index: -1;
    transition: all 0.4s;
}

.Item:hover .Item-Text:after {
    width: 100%;
}

.others p {
    text-align: center;
}

@media screen and (min-width:600px) {
    .wrap {
        max-width: 800px;
        margin: 0 auto;
        padding: 40px 24px;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 1%;
    }

    .card {
        width: 48%;
    }

    .card h3 {
        font-size: .9rem;
    }

    .card p {
        font-size: .8rem;
    }

    .others {
        width: 120px;
    }

    .others a:hover {
        opacity: 1;
    }
}