@charset "UTF-8";

/* school.index */

/* max-width: 800px で設計 */



/* 〇 CSS担当 Sakamaki Ryu */

/* 〇 修正 Sakamaki Ryu */



/* ★ ヒーロー画像 */

.hero.school {
    background-image: url(../image/school/school_hero.jpg);
}



/* ★ 背景色コンテナ */

.container01 {
    background-color: #f7f5f2;
}

.container02 {
    background-color: #ffffff;
}



/* ★ 共通設定 */

.main-pad-3-pad-b {
    padding: 0 3%;
    padding-bottom: 40px;
}

.catchcopy h2 {
    text-align: center;
    font-size: clamp(24px, 6vw, 40px);
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    line-height: normal;
    font-style: normal;
    margin-bottom: 50px;
    padding-top: 50px;
}

.catchcopy h3 {
    font-size: clamp(14px, 3vw, 20px);
    text-align: center;
    margin-bottom: 30px;
    margin-top: 60px;
}

.catch-sub p {
    font-size: clamp(14px, 3vw, 20px);
    text-align: center;
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    margin-bottom: 20px;
}

.img {
    max-width: 800px;
    margin: auto auto;
    text-align: center;
}

.img-sushi {
    max-width: 750px;
    margin: 0 auto;
    margin-top: 90px;
    text-align: center;
}

.naminami {
    margin: auto auto;
    text-align: center;
}

.contact-btn-school {
    max-width: 400px;
    text-align: center;
    margin: 60px auto 60px auto;
    padding: 15px 15px;
    text-decoration: none;
    color: #ffffff;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
    background: #8c8c8c;
}

@media (max-width: 440px) {
    .contact-btn-school {
        max-width: 80%;
        margin: 40px auto 40px auto;
    }
}


.contact-btn-school a {
    font-size: clamp(20px, 2vw, 25px);
    color: #ffffff;
}

.contact-btn-school:hover {
    /* opacity: .3; */
    background: #7AC943;
}



/* ★ スラッシュ表示コード */

.slash {
    align-items: center;
    /* 線を上下中央 */
    display: flex;
    /* 文字と横線を横並び */
    justify-content: center;
    /* 文字を中央寄せ */
}

.slash::before,
.slash::after {
    background-color: #000000;
    /* 線の色 */
    border-radius: 5px;
    /* 線の両端を丸く */
    content: "";
    height: 1.5px;
    /* 線の高さ */
    width: 40px;
    /* 線の長さ */
}

@media (max-width: 550px) {
    .slash::before,
    .slash::after {
        height: 1.2px;
        /* 線の高さ */
        width: 25px;
        /* 線の長さ */
    }
}

.slash::before {
    margin-right: 10px;
    /* 文字との余白 */
    transform: rotate(60deg);
    /* 傾ける */
}

.slash::after {
    margin-left: 10px;
    /* 文字との余白 */
    transform: rotate(-60deg);
    /* 傾ける */
}

.mar-b60 {
    margin-bottom: 60px;
}

@media (max-width: 440px) {
    .mar-b60 {
        margin-bottom: 40px;
    }
}