@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 h1 {
        font-size: 2.4rem;
    }

    .title_wrap {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
    }

    .title_text {
        padding: 40px;
        display: flex;
        flex-direction: column;
    }

    .type dt {
        padding: 0 40px;
        width: 8%;
    }

    .type dd {
        width: 92%;
    }

    .kv {
        margin: 0 auto;
    }
}

/* .description */

.description {
    padding: 8px 24px;
}

.description h3,
dl {
    font-size: 1.2rem;
}

.heading {
    display: flex;
    padding: 40px 0 16px;
}

.heading span {
    padding-left: 8px;
    padding-top: 4px;
    font-size: 0.8rem;
    font-weight: normal;
    color: #777;
}

.range {
    display: flex;
    flex-wrap: wrap;
}

.range dt {
    font-weight: 400;
    width: 40%;
}

.range dd {
    width: 60%;
}

@media screen and (min-width:600px) {
    .description {
        max-width: 800px;
        margin: 0 auto;
    }

    .description h3,
    dl {
        font-size: 1rem;
    }

    .range dt {
        font-weight: 400;
        width: 24%;
    }

    .range dd {
        width: 76%;
    }
}


/* photo */

.photo {
    padding: 60px 48px;
    display: flex;
    flex-direction: column;
}

.photo p {
    padding: 8px 0 24px;
}

.flyer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flyer img {
    width: 80%;
    padding-top: 8px;
}


@media screen and (min-width:600px) {
    .photo {
        max-width: 800px;
        margin: 0 auto;
        padding: 60px 24px;
        justify-content: space-between;
    }

    .photo p {
        padding: 8px 0 60px;
        font-size: .8rem;
    }

    .flyer {
        flex-direction: row;
        gap: 2%;
    }

}

/* 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;
    }
}