@charset "UTF-8";
/* トップ */
.hero-area {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -99;
    width: 100%;
    height: 400px;
}
.hero-area-sp {
    display: none;
}
.section-top {
    position: relative;
    margin: 0 80px 100px;
}
.section-top__title {
    margin-top: 10px;
}
.section-top__title h1 {
    text-align: center;
    color: #447D93;
    font-size: 8.2rem;
    font-family: "heebo", sans-serif;
    font-weight: 700;
}
.section-top__title h2 {
    text-align: center;
    color: #4E3E00;
    font-size: 1.8rem;
    margin-top: -15px;
    margin-left: 10px;
}
.section-top img {
    position: absolute;
    height: 209px;
    right: 100px;
    top: 70px;
}
@media (max-width: 960px) {
    .hero-area {
        height: 300px;
    }
    .section-top {
        position: relative;
        margin: 0 40px 100px;
    }
    .section-top__title {
        margin-top: 10px;
    }
    .section-top__title h1 {
        text-align: left;
        font-size: 5.2rem;
    }
    .section-top__title h2 {
        text-align: left;
        font-size: 1.6rem;
        margin-top: -10px;
        margin-left: 5px;
    }
    .section-top img {
        position: absolute;
        height: 160px;
        right: -10px;
        top: 90px;
    }
}
@media (max-width: 500px) {
    .hero-area {
        display: none;
    }
    .hero-area-sp {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -99;
        width: 100%;
        height: 260px;
    }
    .section-top img {
        position: absolute;
        height: 130px;
        right: -10px;
        top: 90px;
    }
}

/* お知らせ詳細 */
.section-news-detail {
    max-width: 800px;
    width: 70%;
    margin: 220px auto 100px;
}
.section-news-detail h3 {
    font-size: 3.2rem;
    font-weight: 400;
    border-bottom: solid 2px #95ABB5;
    padding-bottom: 10px;
    margin-bottom: 50px;
}
.section-news-detail__description {
    padding-bottom: 90px;
    border-bottom: solid 2px #95ABB5;
}
.section-news-detail__description a {
    color: #333;
}
.section-news__button-wrapper {
    display: flex;
    justify-content: flex-end;
    margin-top: 100px;
}
.section-news__button {
    display: flex;
    background-color: #447D93;
    text-decoration: none;
    height: 66px;
    width: 236px;
    border-radius: 10px 33px 33px 10px;
    color: #FFF;
}
.section-news__button p {
    margin: auto 40px;
}
.section-news__arrow {
    display: flex;
    justify-content: center;
    background-color: #FFF;
    height: 50px;
    width: 50px;
    border-radius: 100%;
    margin: auto 10px auto 0;
}
.section-news__arrow img {
    margin: auto;
    height: 18px;
    width: auto;
}
@media (max-width: 960px) {
    .section-news-detail h3 {
        font-size: 2.4rem;
        font-weight: 400;
        border-bottom: solid 2px #95ABB5;
        padding-bottom: 10px;
        margin-bottom: 30px;
    }
    .section-news-detail__description {
        font-size: 1.4rem;
        padding-bottom: 70px;
        border-bottom: solid 2px #95ABB5;
    }
    .section-news__button-wrapper {
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }
    .section-news__button {
        display: flex;
        justify-content: space-between;
        height: 60px;
        width: 210px;
        border-radius: 10px 30px 30px 10px;
        color: #FFF;
        margin: 0 auto;
    }
    .section-news__button p {
        margin: auto 0 auto 50px;
        font-size: 1.4rem;
    }
    .section-news__arrow {
        display: flex;
        justify-content: center;
        background-color: #FFF;
        height: 45px;
        width: 45px;
        border-radius: 100%;
        margin: auto 10px auto 0;
    }
    .section-news__arrow img {
        margin: auto auto auto 19px;
        height: 14px;
        width: auto;
    }
}

/* ボタン　ホバーして縮小 */
.section-news__button div {
    transform: scale(1);
	transition: .2s ease-in-out;
}
.section-news__button:hover div  {
    transform: scale(0.7);
}