@charset "utf-8";


.title {
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 5.5rem;
}

.title h1 {
    font-size: 2rem;
    margin-bottom: .25rem;
}

.title p {
    font-weight: bold;
    font-size: .75rem;
    letter-spacing: 4px;
}

/* トップ
------------------------------------------*/

#top {
    width: 100%;
}

#top h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

/* 一覧
------------------------------------------*/
#index {
    width: var(--main-width);
    max-width: var(--main-max-width);
    margin: 4rem auto;
}

#index .item_container {
    display: flex;
    justify-content: space-between;
    align-items: start;
    flex-wrap: wrap;
}

#index .item_container .item {
    width: calc(33.333% - 1rem);
    margin-bottom: 4rem;
}

#index .item_container .item .img {
    width: 100%;
    height: 200px;
    border-radius: .5rem;
    background-position: center;
    background-size: cover;
    display: block;
    margin-bottom: .75rem;
}

#index .item_container .item h3 {
    margin-top: .25rem;
}