@charset "UTF-8";

/* 1. 共通設定 */
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth; /* スムーズスクロール */
    overflow-x: hidden;
    font-size: clamp(14px, 1.5vw, 18px);
    /* 素晴らしい記述方法、消すなよ */
}
body {
    font-family: sans-serif;
    color: black;
    background-color: black;
    overflow-x: hidden;
}

button {
    min-height: 3rem;
}
button:hover {
    filter: brightness(120%);
    transition: 0.3s;
}
.curved-top {
    position: relative;
    border-top-left-radius: 50% 40px;
    border-top-right-radius: 50% 40px;
}
.curved-bottom {
    position: relative;
    border-bottom-left-radius: 50% 40px;
    border-bottom-right-radius: 50% 40px;
}
/* aタグで飛ぶ際の位置調整用 */
.space {
    height: 130px;
    visibility: hidden;
}
/* h3タグ */
.description-text {
    font-size: 1rem;
    line-height: 2;
    width: clamp(300px, 70%, 1000px);
    margin: 0 auto;
    text-align: left;
    padding: 2rem 0;
}

/* 各セクションのwidth調整 */
main {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}
.about-section,
.labo-section,
.class-section,
.time-section,
.tuition-section,
.question-section,
.voice-section {
    margin: 0 auto;
    text-align: center;
}

/* ヘッダーとナビバー */
.navbar {
    position: fixed;
    z-index: 1000; /* 最前面に */
    width: 100%;
    padding: 0 1.5rem;
    box-sizing: border-box; /* パディング分を幅に含める */
    height: 5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    background-color: black;
}
.mvSpace {
    height: 5rem; /* ナビバーの高さに合わせる */
}
.navbar-logo {
    height: 3.5rem;
    width: auto;
    object-fit: cover;
}
.nav-menu ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
}
.nav-menu .nav-btn {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem 0.5rem 0.5rem;
    color: white;
    text-decoration: none;
    font-family: "Oswald";
    font-weight: bold;
    font-size: 1rem;
    border: none;
    border-radius: 3rem;
    object-fit: fill;
}
.nav-menu ul li a:hover {
    transition: all 0.3s ease;
    color: black;
    background-color: white;
}

/* ハンバーガーボタン */
.hamburger {
    display: none;
    cursor: pointer;
}

.hamburger span {
    display: block;
    height: 3px;
    background-color: white;
    border-radius: 2px;
    transition: 0.3s;
}

/* ナビバー終了 */

/* 参加ボタン */
.fixed-button {
    position: fixed;
    bottom: 8rem;
    right: 1rem;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    font-weight: bold;
    background-color: orange;
    color: white;
    border: none;
    border-radius: 3rem;
    cursor: pointer;
    z-index: 1000; /* 最前面に */
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.fixed-button div {
    text-align: center;
}
.fixed-button h3 {
    font-weight: bold;
    font-size: 1.5rem;
    margin: 0;
    padding: 0;
    font-family: "Oswald";
}
.fixed-button p {
    font-weight: bold;
    font-size: 0.8rem;
    margin: 0;
    padding: 0;
}

/* メインビジュアル */
.mv {
    width: 100%;
    height: 100vh;
    position: relative;
}
.mv-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    animation: img-change 32s infinite;
}
.mv-item:nth-child(1) {
    animation-delay: 0s;
}
.mv-item:nth-child(2) {
    animation-delay: 8s;
}
.mv-item:nth-child(3) {
    animation-delay: 16s;
}
.mv-item:nth-child(4) {
    animation-delay: 24s;
}

.mv-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(40%);
}

@keyframes img-change {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    20% {
        opacity: 1;
    }
    30% {
        opacity: 1;
    }
    40% {
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

.mv-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: auto;
    object-fit: contain;
    z-index: 1;
    animation: dropDown 1.8s ease-out forwards;
    animation-delay: 1s;
    opacity: 0;
    filter: brightness(150%);
}
/* アニメーション定義 */
@keyframes dropDown {
    0% {
        opacity: 0;
        transform: translate(
            -50%,
            calc(-50% - 100px)
        ); /* 中央基準 + 上に100pxずらす */
    }
    100% {
        opacity: 1;
        transform: translate(-50%, -50%); /* 元の中央位置へ */
    }
}

/* Aboutセクション */
.about-section {
    background-color: whitesmoke;
    padding: 2rem 0;
    z-index: 2;
    margin-bottom: -200px;
}
/* aboutのセクションヘッダー部分 */
.about-headers {
    margin: 0 3rem;
    text-align: left;
}
.about-header {
    color: rgb(0, 100, 170);
    font-family: "Oswald", sans-serif;
    font-size: 2.5rem;
    text-align: left;
}
.about-sub-header {
    color: rgb(0, 100, 170);
    font-weight: bold;
    font-size: 1rem;
    text-align: left;
}
/* aboutの共通設定 */
.about-section img {
    object-fit: cover;
}
.about-text {
    margin: 0 auto;
    padding: 2rem 3%;
    width: clamp(400px, 70%, 900px);
    text-align: left;
    border-bottom: rgb(0, 100, 170) 1px solid;
}
.about-caption {
    font-size: 1.5rem;
    margin: 0.2rem 0 1rem;
    text-align: left;
    white-space: nowrap;
}
.about-role {
    color: gray;
    font-size: 1.2rem;
    text-align: left;
}
.about-description {
    line-height: 1.7;
}

/* container1について */
.about-container1,
.about-container2,
.about-container3 {
    margin: 0 auto;
    padding: 6rem 0;
    display: flex;
    gap: 1rem;
    align-items: center;
}

.about-portrait1 {
    width: clamp(300px, 40%, 800px);
    object-position: bottom;
}
/* container2について */
.about-portrait2 {
    width: clamp(300px, 45%, 700px);
}
.in-about-portrait2,
.in-about-portrait3 {
    display: none;
}

/* container3について */
.about-portrait3 {
    width: clamp(300px, 40%, 600px);
}
.about-name3 {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0.2rem 0 1rem 0;
}

/* container4について */
.about-text4 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3% 5%;
    width: clamp(0, 60%, 900px);
}
/* container5について */
.about-container5 {
    background: rgb(0, 100, 170);
    position: relative;
    z-index: 3;
    padding: 2rem 0 5rem;
}
.about-message {
    font-size: 1.5rem;
    margin: 0.2rem 0 1rem;
    text-align: left;
    white-space: nowrap;
}
.about-caption5 {
    color: white;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0.5rem auto;
    text-align: center;
    white-space: nowrap;
}
.about-caption5 strong {
    color: gold;
    font-size: 1.3rem;
    margin: 0 0.1rem;
}
.about-instagram {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: white;
    color: rgb(0, 100, 170);
    font-weight: bold;
    font-size: larger;
    border-radius: 3rem;
    text-decoration: none;
}
.about-instagram:hover {
    filter: brightness(120%);
    transition: 0.3s;
}
.sp-only {
    display: none;
}

/* 施設紹介ページ */
.labo-section {
    background-color: black;
    padding: 2rem 0;
    color: white;
    padding: 12rem 0;
}
/* laboのセクションヘッダー部分 */
.labo-headers {
    margin: 0 auto;
    text-align: center;
}
.labo-header {
    color: white;
    font-family: "Oswald", sans-serif;
    font-size: 5rem;
    text-align: center;
}
.labo-sub-header {
    color: red;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
}

/* outlineのセクションヘッダー部分 */
.outline-header {
    color: black;
    font-family: "Oswald", sans-serif;
    font-size: 3rem;
    text-align: center;
    margin: 0.5rem 0 0 0;
}
.outline-sub-header {
    color: red;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    margin: 0 0 1rem 0;
}
.outline-headers {
    margin-bottom: 2rem;
}
.labo-text {
    grid-column: 2/3;
    grid-row: 2/4;
    border: 0;
    border-radius: 1rem;
    padding: 1rem 2rem;
    background-color: whitesmoke;
    color: black;
    position: relative;
}
.labo-text ul {
    font-size: 1rem;
    line-height: 1.2;
    text-align: left;
    padding-left: 1.5em;
    margin: 1rem 0;
    list-style-type: disc;
    font-weight: 600;
    color: #222;
}
.labo-text ul li {
    margin-bottom: 0.8rem;
}
.labo-button {
    background-color: royalblue;
    color: white;
    border: none;
    margin-top: 1rem;
    margin-left: auto;
    padding: 0.5rem 1rem;
    border-radius: 3rem;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 1rem;
    right: 2rem;
}

.labo-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(6, 20rem);
    gap: 1rem;
    width: clamp(300px, 90%, 1300px);
    margin: 0 auto;
}
.labo-container img {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border: none;
    border-radius: 1rem;
}
/* gridの組み替え部分 */
.labo-main-img {
    grid-column: 1/2;
    grid-row: 1/3;
}
.labo-item1 {
    grid-column: 2/3;
    grid-row: 1/2;
}
.labo-item2 {
    grid-column: 1/2;
    grid-row: 3/4;
}

/* マップのやつ */
.map {
    grid-column: 1/3;
    grid-row: 4/7;
    border: 0;
    border-radius: 1rem;
    padding: 1.5rem;
    background-color: whitesmoke;
    color: black;
}
.map-title {
    font-size: 2.5rem;
    font-family: "Oswald", sans-serif;
    font-weight: bold;
    margin: 0.5rem 0 1rem 0;
}
.map-description {
    margin-bottom: 1rem;
    text-align: center;
    width: clamp(300px, 80%, 800px);
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}
.map-frame {
    height: 75%;
    width: clamp(300px, 90%, 1000px);
    border: solid #ccc 1px;
    border-radius: 1rem;
}

/* クラス紹介 */

.class-section {
    background-color: white;
    padding: 0 0 8rem;
}
/* クラス冒頭の三角について */
.class-introduction {
    background-color: rgb(0, 100, 170);
    color: white;
    padding-bottom: 120px;
    position: relative;
    border: none;
}

/* 三角について終了 */

/* classのセクションヘッダー部分 */
.class-header {
    font-family: "Oswald", sans-serif;
    font-size: 3rem;
    text-align: center;
}
.class-sub-header {
    color: gold;
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
}
.class-main {
    padding: 5rem 2rem 0;
    border: none;
}

/* アコーディオンタイプのcss */

.accordion-container {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.accordion-box {
    margin-bottom: 4rem;
    max-width: 1000px;
}
.accordion-front {
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1.5rem;
}
.about-front-text {
    text-align: left;
}
.accordion-box img {
    flex-shrink: 0;
    aspect-ratio: 4/3;
    width: clamp(200px, 45%, 500px);
    object-fit: cover;
    border-radius: 1rem;
    filter: sepia(20%) brightness(85%);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
}
.accordion-content.open {
    max-height: 1000px;
    max-width: 90%;
    overflow: visible;
    margin: 0 auto;
    padding: 1rem 0;
}
.accordion-content p {
    text-align: left;
    line-height: 1.7;
}
.accordion-title {
    font-size: 3rem;
    font-weight: bolder;
    font-family: "Oswald";
    margin: 0;
    padding: 0;
}
.accordion-title.option {
    color: royalblue;
    font-size: 2.5rem;
}
h4.option {
    font-size: 1.5rem;
    font-weight: bold;
    font-family: "Oswald";
    line-height: 0.3;
}
.accordion-header p {
    color: red;
}
.accordion-box button {
    background-color: royalblue;
    color: white;
    border: none;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 3rem;
}
/* こんな人におすすめ */
.recomend {
    background-color: gainsboro;
    border-radius: 1rem;
    border: none;
    width: 600px;
    margin: 2rem auto;
    padding: 1rem 2rem;
}
.recomend-title {
    font-size: 1.3rem;
    font-weight: bold;
    margin: 0.5rem 0 1rem;
}
.recomend ul {
    list-style: none;
    text-align: left;
}
.recomend li {
    margin-bottom: 0.5rem;
}

/* 今後開設予定のクラスについて */
.upcoming {
    text-align: center;
    margin-top: 5rem;
}
.upcoming h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}
.upcoming ul {
    line-height: 1.5;
    list-style: none;
}

.note {
    font-size: 0.8rem;
    color: red;
    text-align: center;
}
/* クラス紹介終了 */

/* .time&tuition-sectionについて  */
.time-tuition-section {
    background-image: url("../images/logo-back-img.png");
    background-size: cover;
    background-color: black;
    color: black;
}
.tuition-header,
.time-header {
    font-weight: bold;
    font-size: 2.5rem;
    font-family: "Oswald", sans-serif;
    text-align: center;
    margin-top: 2rem;
}
.time-sub-header,
.tuition-sub-header {
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: 0.2rem;
    color: red;
}
.time-tuition-section strong {
    color: red;
    font-size: 1.3rem;
    margin: 0 0.1rem;
}

/* 練習時間について */
.time-container {
    padding: 0 0 5rem;
    position: relative;
    z-index: 2;
}
.time-main,
.tuition-main {
    background-color: white;
    border-radius: 3rem;
    width: clamp(100px, 90%, 1200px);
    margin: 2rem auto;
    padding: 3rem 2rem;
}

/* テーブルのスタイル */
.time-table-container {
    overflow-x: auto;
    /* 横スクロールを許可 */
}
.time-table {
    border-collapse: collapse;
    width: clamp(900px, 90%, 1000px);
    margin: 20px auto;
    font-size: 1rem;
    text-align: center;
    border: 1px solid gray;
}

.time-table thead th {
    background-color: black;
    color: white;
    font-weight: bold;
    padding: 10px;
}

.time-table tbody tr {
    border-bottom: 1px solid gray;
}

.time-table tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

.time-table tbody tr:hover {
    background-color: #e6f2fa;
}

.time-table th,
.time-table td {
    padding: 10px;
    border-right: 1px solid gray; /* 縦線を追加 */
}

.time-table th:last-child,
.time-table td:last-child {
    border-right: none; /* 最後の列の縦線を削除 */
}
.scroll-notice {
    font-size: 0.8rem;
    color: gray;
    text-align: center;
    margin-top: 0.5rem;
    display: none;
}

/* 月会費、諸費用について */
.tuition-container {
    padding: 5rem 0 15rem;
}
.tuition-flex {
    display: flex;
    gap: 5%;
    align-items: center;
    justify-content: space-around;
    padding: 0 5%;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}
.tuition-details {
    margin-left: 30%;
}
.tuition-list {
    list-style: number;
    line-height: 1.8;
    text-align: left;
}
.attention {
    font-size: 0.8rem;
    color: red;
    font-weight: 800;
    margin-left: 20%;
    margin-top: 1rem;
}

/* その他のセクション */
.other-section {
    background-color: whitesmoke;
    padding: 8rem 5rem 15rem;
    color: black;
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 5rem;
}

/* newsについて */
.news-headers {
    text-align: left;
    margin-bottom: 3rem;
}
.news-header {
    font-family: "Oswald", sans-serif;
    font-size: 2.5rem;
    font-weight: bold;
}
.news-sub-header {
    color: rgb(0, 100, 170);
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: 0.2rem;
}
.news-wrapper {
    padding: 0.7rem 0;
}
.news-date {
    font-size: 0.8rem;
    color: gray;
    margin-bottom: 0.2rem;
}
.news-title {
    color: black;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: lightgray 3px solid;
}
.news-text {
    font-size: 0.9rem;
    line-height: 1.2;
}
/* newsについて終了 */
.left-side {
    width: clamp(150px, 25%, 300px);
}

.others-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0 0.5rem;
}
.others {
    /* border: #ccc 1.5px solid; */
    background-color: #444;
    padding: 0.8rem 1rem;
    border-radius: 3rem;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    font-weight: bold;
    color: white;
    text-align: center;
    white-space: nowrap;
}
.others:hover {
    background-color: rgb(0, 100, 170);
    color: white;
    transition: all 0.3s ease;
}

/* その他のセクション終了 */

/* footerのCSS */
.footer-container {
    padding: 3rem 5rem 2rem;
    color: white;
    margin-top: -100px;
    background-color: rgb(0, 100, 170);
}
.footer-container a:hover {
    transition: all 0.3s ease;
    color: goldenrod;
}

.footer-logo {
    font-family: "Oswald", sans-serif;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 3rem;
}
.footer-logo h3 {
    font-weight: bold;
    font-size: 2rem;
    margin: 0;
    padding: 0;
}
.footer-logo p {
    font-weight: 200;
    font-size: 0.6rem;
    line-height: 0.6rem;
    margin: 0;
    padding: 0;
}
.footer-menu-container {
    display: flex;
    justify-content: space-between;
}
.footer-menu {
    font-family: "Oswald", sans-serif;
    display: flex;
    gap: 2rem;
    font-size: 1rem;
    font-weight: bold;
}

.footer-menu-container a {
    color: inherit;
    /* 親要素と同じ色にする（または任意の色に変更） */
    text-decoration: none;
    /*下線をなくす */
    display: flex;
    align-items: center;
}
.footer-menu span {
    color: goldenrod;
}
.sns-icon {
    width: 1.2rem;
    height: 1.2rem;
    margin-right: 0.4rem;
}
.sns-icon-link {
    font-weight: 800;
    fill: goldenrod;
}

/* 最後のコピーライト部分 */
.copy {
    text-align: center;
    font-size: 0.8rem;
    color: white;
    margin: 1.5rem 0;
    background-color: black;
}
.copy a {
    color: inherit;
    /* 親要素と同じ色にする（または任意の色に変更） */
    text-decoration: none;
    /*下線をなくす */
}

/* ----------------------------
メディアクエリ：スマホ対応
------------------------------- */

/* スマホ用 */
@media (max-width: 768px) {
    /* ナビバーについて */
    .navbar {
        height: 4rem;
    }
    .navbar-logo {
        max-height: 2.5rem;
    }
    .hamburger {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 2rem;
        height: 1.5rem;
        z-index: 2001;
    }
    .hamburger span {
        display: block;
        width: 100%;
        height: 3px;
        background: white;
        border-radius: 2px;
    }

    .nav-menu {
        position: fixed;
        top: -100%; /* 最初は画面外（上） */
        left: 0;
        width: 100%;
        height: 100%;
        background: black;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center; /* 中央に縦並び */
        transition: top 0.3s ease;
        z-index: 2000;
    }
    /* ナビメニューの表示状態 */
    .nav-menu.active {
        top: 0; /* メニューを表示する */
    }

    .nav-menu ul {
        display: flex;
        flex-direction: column;
        gap: 1rem;
    }

    /* 表示状態 */
    .nav-menu.active {
        top: 0; /* 下に降ろす */
    }
    /* ナビバーについて終了 */

    /* メインビジュアルについて */
    .mv-logo {
        width: 70vw;
        height: auto;
    }

    /* aboutセクションについて */
    .about-header,
    .about-sub-header {
        text-align: center;
        margin: 0 auto;
    }
    .about-container1,
    .about-container2,
    .about-container3 {
        padding: 3rem 2rem;
    }
    .about-portrait1,
    .about-portrait2,
    .about-portrait3 {
        display: none;
    }
    .in-about-portrait2 {
        display: block;
        width: 75vw;
        aspect-ratio: 4/3;
        border-radius: 2rem;
        margin-bottom: 2rem;
        object-fit: cover;
    }
    .in-about-portrait3 {
        display: block;
        width: 75vw;
        aspect-ratio: 6/7;
        border-radius: 2rem;
        margin-bottom: 2rem;
        object-fit: cover;
    }
    .about-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .about-description {
        width: 80vw;
        text-align: left;
    }
    .about-caption5 {
        white-space: nowrap;
    }
    .about-message {
        /* width: 80vw; */
        text-align: center;
        font-size: 1.2rem;
    }
    .sp-only {
        display: block;
    }
    /* ーーーーーーーーーー
    swiperについて
    ーーーーーーーーー */
    .about-swiper-container {
        margin: 3rem auto 0;
        width: 90vw;
    }
    /* .swiper {

    } */
    .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* ラボ紹介セクションについて */
    /* gridの組み替え部分 */
    .labo-header {
        font-size: 2.5rem;
    }
    .labo-container {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(9, 150px);
    }
    .labo-main-img {
        grid-column: 1/2;
        grid-row: 1/3;
    }
    .labo-item1 {
        grid-column: 2/3;
        grid-row: 1/2;
    }
    .labo-item2 {
        grid-column: 2/3;
        grid-row: 2/3;
    }
    .labo-text {
        grid-column: 1/3;
        grid-row: 3/6;
        padding: 2rem;
    }
    .map {
        grid-column: 1/3;
        grid-row: 6/10;
    }
    .map-description {
        text-align: left;
    }
    /* gridの組み替え部分終了 */

    .outline-headers {
        margin-bottom: 1rem;
    }
    .outline-header {
        font-size: 2rem;
    }
    .outline-sub-header {
        font-size: 1rem;
    }

    .labo-text {
        padding: 2rem 0.8rem 1rem 2rem;
    }
    .labo-text ul {
        line-height: 1.3;
        font-size: clamp(0.9rem, 2vw, 1.2rem);
    }
    .labo-text ul li {
        margin-bottom: 0.3rem;
    }
    .map {
        padding: 1.5rem;
    }
    .map-frame {
        height: 60%;
    }
    .map-description {
        font-size: 0.9rem;
    }

    /* laboセクションについて終了 */
    /* classセクションについて */
    .class-header {
        font-size: 2.5rem;
    }
    .accordion-front {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .accordion-header {
        text-align: center;
    }
    .accordion-front-text {
        width: clamp(0px, 90vw, 600px);
    }
    .accordion-box img {
        width: 65vw;
    }
    .recomend {
        width: 80vw;
    }
    .upcoming ul {
        font-size: 0.8rem;
        list-style: none;
    }
    /* classセクションについて終了 */

    /* time-tableセクションについて */
    .scroll-notice {
        display: block;
    }
    /* time-tableセクションについて終了 */

    /* tuitionセクションについて */

    .tuition-flex {
        flex-direction: column;
        gap: 2rem;
    }
    .attention {
        margin-left: 0;
    }

    /* otherセクションについて */
    .other-section {
        flex-direction: column;
        justify-content: baseline;
        padding: 5rem 2rem 15rem;
        gap: 1rem;
    }
    .left-side {
        width: 90vw;
    }
    .news-headers {
        text-align: center;
        margin-bottom: 1rem;
    }
    .news-header {
        margin: 0 auto;
    }
    .news-sub-header {
        margin: 0 auto 1rem;
    }

    .others-container {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 2px;
    }

    /* フッターについて */
    .footer-menu-container {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }
    .footer-menu {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin-bottom: 2rem;
    }
}
