@charset "utf-8";

html,
body {
    width: 100%;
    min-height: 100vh;
    margin: 0;
    font-family: "Noto Sans JP", sans-serif, "メイリオ", "Meiryo UI";
    background-color: #ebeff7;
    overflow-x: hidden;
}

#wrapper {
    margin: 0 auto;
    width: 100%;
}

.logo_dummy {
    width: 100%;
    height: 70px;
}

#logoarea {
    width: 200px;
    padding: 1em 5px 1rem 1rem;
    top: 0;
    left: 0;
    position: fixed;
    background-color: #ffffff;
    border-bottom-right-radius: 20px;
    z-index: 80;
}

#footer {
    width: 100%;
    min-height: 80px;
    padding: 5rem 5px 5px 5px;
    text-align: center;
    background-color: #f70034;
    color: #ffffff;
}

.logo_img {
    width: 180px;
    max-width: 100%;
}

.main_content {
    width: 95%;
    max-width: 1024px;
    margin: 0 auto;
    padding: 0.5rem 0 0.5rem 0;
    box-sizing: border-box;
}

.top_info {
    margin: 0 0 0.5rem 0;
    padding: 0.8rem 0.5rem;
    width: 100%;
    box-sizing: border-box;
    background-color: #ff6464;
    color: #ffffff;
    border-radius: 15px;
}

.top_banner {
    width: 100vw;
    height: 450px;
    margin-left: calc(50% - 50vw);
    display: flex;
    justify-content: center;
    /*左右中央揃え*/
    align-items: center;
    /*上下中央揃え*/
    background:
        radial-gradient(ellipse 65% 75% at 10% 15%, #F9B8C8 0%, transparent 60%),
        radial-gradient(ellipse 55% 65% at 90% 25%, #F5A0B4 0%, transparent 55%),
        radial-gradient(ellipse 75% 55% at 75% 85%, #FBC8B0 0%, transparent 60%),
        radial-gradient(ellipse 45% 55% at 25% 90%, #F8B098 0%, transparent 55%),
        linear-gradient(180deg, #FDDDE5 0%, #FAC8B8 100%);
    color: #f70034;
}

.top_banner_text {
    opacity: 0;
    text-align: center;
    font-size: 1.9rem;
    font-family: "Noto Serif JP", Serif;
    letter-spacing: 0.12em;

}

.top_news {
    width: 100%;
}

.top_news_wrapper {
    width: 100%;
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 15px;
    box-sizing: border-box;
}

.news_icon_info {
    width: 120px;
    margin: 0 1rem 0 1rem;
    padding: 2px;
    display: inline-block;
    text-align: center;
    color: #ffffff;
    background-color: #f70034;
}

.news_topic {
    width: 100%;
    padding: 0.5rem 0 0.5rem 0;
}

.news_topic_u {
    padding: 0.5rem 0 0.5rem 0;
    width: 100%;
    border-top: 2px solid #ebeff7;
}

.news_topic a, .news_topic_u a{
    color: #000000;
    text-decoration: none;
}

.footer_link {
    display: flex;
    list-style: none;
}

.footer_link li {
    padding: 0 10px 0 10px;
}

.footer_link a {
    color: #ffffff;
    text-decoration: none;
}

.message {
    transform: translate(0, 90px);
    transition: all 1400ms;
}

.effect-scroll {
    opacity: 1;
    transform: translate(0, 0);
}

@media screen and (max-width: 769px) {
    .footer_link {
        display: list-item;
        list-style: none;
    }

}