@charset "UTF-8";

/* メインイメージ */
.main-image {
    position: relative;
}

.main-image img {
    display: block;
    width: 100%;
    height: auto;
}

.message-50th {
    background-color: rgba(1, 1, 1, 0.6);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 100%;
}

.message-50th p {
    color: #fff;
    text-align: center;
}

.message-50th-title {
    font-size: 3.0rem;
    font-family: 'Philosopher', sans-serif;
    margin-bottom: 10px;
    border-top: #fff solid 1.5px;
    padding-top: 10px;
}

.message-50th-content {
    font-size: 1.1rem;
    border-bottom: #fff solid 1.5px;
    padding-bottom: 10px;
}

.message-50th {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* ニュース */
.news-area {
    width: 80%;
    margin: 30px auto;
}

.news-area h2 {
    font-family: 'Roboto Slab';
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
    color: #432;
    margin-bottom: 20px;
}

.news-list {
    list-style: none;
    padding: 0;
}

.news-item {
    display: block;
    padding: 15px 20px;
    border-top: #b6b6b6 solid 1px;
}

.news-item:last-of-type {
    border-bottom: #b6b6b6 solid 1px;
}

.news-item:hover {
    background-color: #f5f5f5;
}

.news-date {
    display: inline-block;
}

.news-date>.new-icon {
    margin-left: 10px;
}

.news-list time,
.news-list p {
    font-size: 1.0rem;
    display: inline-block;
    color: #666;
}

.news-list li>p {
    margin-left: 1.0rem;
}

.second-column-contents {
    width: 80%;
    margin: 30px auto;
    display: flex;
}

/* 団員募集 */
.recruitment-area {
    width: 60%;
    position: relative;
}

.recruitment-area img {
    display: block;
    width: 100%;
    height: 100%;
}

.recruitment-message {
    background-color: rgba(1, 1, 1, 0.6);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.recruitment-message h3,
.recruitment-message p {
    font-size: 1.5rem;
    color: #fff;
    text-align: center;
}

.recruitment-message p {
    font-size: 1.1rem;
    margin: 10px 0 30px;
}

.more-button {
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    color: #fff;
    cursor: pointer;
    font-size: 1.0rem;
    padding: 10px 30px;
    transition: all 0.3s ease;
}

.more-button:hover {
    background-color: rgba(255, 255, 255, 0.5);
}

/* SNS */
.sns-area {
    width: 40%;
    padding: 10px;
    text-align: center;
}

.sns-area h3 {
    font-family: 'Roboto Slab';
    font-size: 1.5rem;
    font-weight: normal;
    text-align: center;
    color: #432;
    display: block;
    margin-bottom: 20px;
}

.facebook {
    display: block;
    margin: 0 auto 30px;
}

.sns-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    margin: 0 15px;
}

/* レスポンシブ */
@media screen and (max-width: 768px) {

    .message-50th-title {
        font-size: 1.1rem;
        font-family: 'Philosopher', sans-serif;
        border-top: 1px solid #fff;
        border-bottom: 1px solid #fff;
        padding: 15px 0;
    }

    .message-50th-content {
        display: none;
    }

    /* ニュース */
    .news-list time,
    .news-list p {
        font-size: 0.8rem;
        margin: initial;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .news-list p {
        display: block;
    }

    .second-column-contents {
        display: block;
    }

    /* 団員募集 */
    .recruitment-area {
        display: block;
        width: 100%;
        height: 100%;
        margin-bottom: 15px;
    }

    .recruitment-message>h3 {
        font-size: 1.1rem;
    }

    .recruitment-message>p {
        font-size: 0.8rem;
    }

    .more-button {
        font-size: 0.8rem;
    }

    .sns-area {
        display: block;
        width: 100%;
        padding: 0;
    }

    .facebook {
        width: auto;
    }
}