@charset "UTF-8";

body {
    font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', '游ゴシック', 'Yu Gothic', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
    font-size: 16px;
}

/* 背景色 */
.bg-yellow {
    background-color: #fffaf0;
}
.bg-pink {
    background-color: #ffe9d5;
}

.text-box {
    max-width: 800px;
    border: 2px solid #c92025;
    margin-right: auto;
    margin-left: auto;
}

/* 上下ボーダー */
.border-box {
    border-top: 4px solid #c92025;
    border-bottom: 4px solid #c92025;
}

/* メインイメージ */
.main-img {
    border-top: 4px solid #c92025;
}

/* 運営 */
.about-box {
    max-width: 800px;
    margin: auto;
    border: 2px solid #c92025;
    font-size: 1.4em;
    color: #a53135;
    font-weight: bold;
}
.about-box-text {
    width: 70%;
}
.about-box-img {
    width: 30%;
}
.about-box-img img {
    border: 2px solid #fff;
    border-radius: 50%;
}
@media screen and (max-width: 768px) {
    .about-box-text {
        width: 100%;
    }
    .about-box-img {
        width: 100%;
    }
}

/* フッター */
footer {
    border-top: 2px solid #c92025;
    padding-bottom: 120px;
}
footer .logo-img {
    width: 300px;
}
footer small {
    color: #888;
}

/* 画面下バナー */
.bottom-banner {
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
}
.bottom-banner.active {
    display: block;
}
.bottom-banner img {
    width: 400px;
    max-width: 100%;
}