@charset "utf-8";

:root {
    --primary-color: #4c72af;
    --secondary-color: #e9ecef;
    --text-color: #ffffff;
    --sec1-color: #30a2d5;
    --sec2-color: #0075aa;
    --sec3-color: #fff;
    --sec4-color: #30a2d5;
    --sec5-color: #fff;
    --sec6-color: #0075aa;
    --sec7-color: #30a2d5;
    --sec8-color: #fff;
    --sec9-color: #30a2d5;
    --sec1-bg-color: #d0e5f8;
    --sec2-bg-color: #e0ffee;
    --sec3-bg-color: #fffacc;
    --sec4-bg-color: #dbffdb;
    --sec5-bg-color: #ffe6e5;
    --sec6-bg-color: #f3e4fa;
    --sec7-bg-color: #f6fde9;
    --sec8-bg-color: #f1dddc;
    --hamburger-text-color: #ffffff;
    --hamburger-bg-color: #ffffff;
    --hamburger-menu-bg-color: #0075aa;
    --hamburger-span-color: #0075aa;
    --hamburger-span-color2: #0075aa;
}

/*------------------------------------------------------
ハンバーガーメニュー
------------------------------------------------------*/

/* メニューのスタイル */
.menu {
    position: fixed;
    top: 0;
    right: -100%;
    /* 初期状態では画面の外に隠れている */
    width: 300px;
    height: 100%;
    background-color: var(--hamburger-menu-bg-color);
    opacity: 0.95;
    color: #fff;
    transition: right 0.3s ease;
    /* スライドインのアニメーション */
    padding: 20px;
    box-sizing: border-box;
    z-index: 10;
    text-align: center;
}

/* メニューが開いているとき */
.menu.open {
    right: 0;
}

/* ボタンのスタイル */
.hamburger {
    position: fixed;
    display: flex;
    flex-direction: column;
    /* ←縦方向に配置 */
    align-items: center;
    justify-content: center;
    right: 10px;
    margin: 20px;
    width: 60px;
    height: 60px;
    cursor: pointer;
    z-index: 9999;
    background-color: var(--hamburger-bg-color);
    border-radius: 50%;
}

.hamburger span {
    display: block;
    height: 2px;
    width: 30px;
    background-color: var(--hamburger-span-color);
    margin: 3px 0;
    transition: 0.4s;
}

/* バツ印に変化するスタイル */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background-color: var(--hamburger-span-color2);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
    background-color: var(--hamburger-span-color2);
}

/* メニューリストのスタイル */
.menu ul {
    list-style-type: none;
    padding: 0;
    margin-top: 80px;
}

.menu li {
    padding: 15px 0;
    /* border-bottom: 1px solid #fff; */
}

.menu li a {
    color: var(--hamburger-text-color);
    text-decoration: none;
    display: block;
}

.nav_wrapper {
    display: none;
}

.logo {
    display: none;
}

.top_h1 {
    display: none;
}

.sns_area2 {
    display: flex;
    flex-direction: row;
    text-align: center;
    align-items: center;
    justify-content: center;
    gap: 50px;
    padding-top: 10px;
    padding-bottom: 20px;
    margin: 0 auto;
}

.sns_area2 img {
    width: 25px;
}


/*------------------------------------------------------
背景設定
------------------------------------------------------*/

body {
    background-color: #fff;
    color: #333333;
    background-attachment: fixed;
    z-index: 1;
    font-family: 'Noto Sans JP', sans-serif;
    transition: .7s;
    scroll-behavior: smooth;
}

.bg01 {
    background-image: url(../img/bg_00.png);
    background-size: cover;
}

.bg02 {
    background-image: url(../img/bg_01.png);
    background-size: cover;
}

.bg03 {
    background-image: url(../img/bg_02.png);
    background-size: cover;
}

.bg04 {
    background-image: url(../img/bg_06.png);
    background-size: cover;
}

.bg05 {
    background-image: url(../img/bg_08.png);
    background-size: cover;
}

.bg06 {
    background-image: url(../img/bg_03.png);
    background-size: cover;
}

.bg07 {
    background-image: url(../img/bg_07.png);
    background-size: cover;
}

.bg08 {
    background-image: url(../img/bg_04.png);
    background-size: cover;
}

.bg09 {
    background-image: url(../img/bg_02.png);
    background-size: cover;
}


/*------------------------------------------------------
コンテンツ
------------------------------------------------------*/

.article {
    margin: 0 auto;
    padding: 0;
    max-width: none;
    width: 100%;

    .section {
        padding: 30px;
    }
}

.cent {
    text-align: center;
}

/*------------------------------------------------------
about
------------------------------------------------------*/

#sec01 {
    background-color: var(--sec1-color);
    background-image: url(../img/about_bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: bottom;
    color: var(--text-color);
    height: auto;
}

.about_h2 {
    font-size: 1.8rem;
    line-height: 2;
    margin-bottom: 20px;
}

.h2_y {
    color: #fff100;
}

.about_p {
    line-height: 3;
    font-size: 0.9rem;
}

/*------------------------------------------------------
WCSのポイント
------------------------------------------------------*/

#sec02 {
    background-color: var(--sec2-color);
    color: var(--text-color);
}

.h2_class {
    text-align: center;
    font-size: 2rem;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
    display: inline-block;
    margin-bottom: 30px;
}

.point_p {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 2;
    margin-bottom: 30px;
}

.point_felx {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.point_felx h3 {
    width: 38%;
    text-align: left;
    font-size: 0.9rem;
    line-height: 2;
}

.point_felx img {
    width: 60%;
}

.point_img {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.point_img img {
    width: 48%;
}

.point_p2 {
    font-size: 0.8rem;
    text-align: left;
    line-height: 2;
}

.point_p3 {
    margin-top: 40px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
}

/*------------------------------------------------------
卒業生実績
------------------------------------------------------*/

#sec03 {
    background-color: var(--sec3-color);
    color: var(--text-color);
    height: auto;
}

#sec03 h4 {
    font-size: 1rem;
    line-height: 1.5;
    color: #000;
    font-weight: 500;
}

.h2_b {
    color: #30a2d5;
    border-bottom: 2px solid #30a2d5;
}

.h2_g {
    color: #3eca07;
    border-bottom: 2px solid #3eca07;
}

.talent img {
    width: 100%;
}

.talent {
    text-align: center;
    padding-top: 0;
}

.talent p {
    font-size: 0.7rem;
    width: 100%;
    color: #000;
}

.talent_gap {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 10px;
    padding-bottom: 20px;
}

.graduate {
    margin-top: 30px;
    margin-bottom: 30px;
}

.slider-for {
    padding-top: 20px;
}

.slider-nav img {
    width: 100%;
    margin-top: 10px;
    height: auto;
    opacity: 0.6;
    transition: 0.3s;
}

.slider-nav .slick-current img {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

/* ナビ矢印 */
.slick-prev,
.slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(107, 107, 107, 0.8);
    border: none;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    font-size: 6px;
    color: #333;
    cursor: pointer;
    transition: 0.3s;
    z-index: 10;
}

.slick-prev:hover,
.slick-next:hover {
    background: #333;
    color: #fff;
}

/* 左右位置 */
.slick-prev {
    left: -10px;
}

.slick-next {
    right: -10px;
}

/*------------------------------------------------------
エントリーボタン
------------------------------------------------------*/

.button a {
    background: #eb6100;
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 300px;
    padding: 20px 30px;
    line-height: 1.8;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    border-bottom: solid 5px #b65511;
    transition: 0.3s ease-in-out;
}

.button a:after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 2rem;
    font-size: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s;
    width: 6px;
    height: 6px;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.button a:hover:after {
    right: 1.4rem;
}

.button a:hover {
    background: #ee8134;
    color: #FFF;
    border-bottom: solid 2px #999;
    transform: translateY(3px);
}

.button a:hover:before {
    color: #fff;
}

.mv-wrapper {
    position: relative;
}

.top_sp_h1_button {
    position: absolute;
    z-index: 3;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    /* ← 左右30pxを引く */
    max-width: 300px;
}

.top_sp_h1_button a {
    margin: 0 auto;
    width: 100%;
    font-size: 16px;
}

.top_h1_button {
    display: none;
}

.tooltip {
    padding-top: 50px;
    font-size: 100%;
    font-weight: 500;
    position: relative;
    margin-bottom: .5rem;
    text-align: center;
    color: #eb6100;
}

.tooltip2 {
    padding-top: 50px;
    font-size: 100%;
    font-weight: 500;
    position: relative;
    margin-bottom: .5rem;
    text-align: center;
    color: #ffffff;
}

.tooltip:before {
    margin-right: 1rem;
    content: '＼';
}

.tooltip:after {
    margin-left: 1rem;
    content: '／';
}

.tooltip2:before {
    margin-right: 1rem;
    content: '＼';
}

.tooltip2:after {
    margin-left: 1rem;
    content: '／';
}

/*------------------------------------------------------
資料請求ボタン
------------------------------------------------------*/

.button3 {
    margin-bottom: 10px;
}

.button3 a {
    background: #3eca07;
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 300px;
    padding: 20px 30px;
    line-height: 1.8;
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    border-bottom: solid 5px #30a202;
    transition: 0.3s ease-in-out;
}

.button3 a:after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 2rem;
    font-size: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s;
    width: 6px;
    height: 6px;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.button3 a:hover:after {
    right: 1.4rem;
}

.button3 a:hover {
    background: #45e007;
    color: #FFF;
    border-bottom: solid 2px #999;
    transform: translateY(3px);
}

.button3 a:hover:before {
    color: #fff;
}

.tooltip3 {
    font-size: 100%;
    font-weight: 500;
    position: relative;
    margin-bottom: .5rem;
    text-align: center;
    color: #3eca07;
}

.tooltip3:before {
    margin-right: 1rem;
    content: '＼';
}

.tooltip3:after {
    margin-left: 1rem;
    content: '／';
}

.pb30 {
    padding-bottom: 30px;
}

.pb20 {
    padding-bottom: 20px;
}

.pt30 {
    padding-top: 30px;
}

.pt20 {
    padding-top: 20px;
}

/*------------------------------------------------------
コース紹介
------------------------------------------------------*/

#sec04 {
    background-color: var(--sec4-color);
    color: var(--text-color);
}

#sec04 p {
    font-size: 14px;
}

.course {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding-bottom: 10px;
}

/*------------------------------------------------------
入学者インタビュー
------------------------------------------------------*/

#sec05 {
    background-color: var(--sec5-color);
    color: var(--text-color);
}

body.modal-open {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
}

/* === 画像3つ横並び === */
.dialog-img-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.dialog-img-buttons figure {
    text-align: left;
    width: 30%;
    cursor: pointer;
}

.dialog-img-buttons img {
    width: 100%;
    height: auto;
    border-radius: 3px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.dialog-img-buttons img:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.dialog-img-buttons figcaption {
    margin-top: 10px;
    font-size: 12px;
    line-height: 1.6;
    color: #333;
    text-align: left;
}

/* === モーダル === */
dialog::backdrop {
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

dialog[open]::backdrop {
    opacity: 1;
}

dialog {
    border: none;
    border-radius: 8px;
    padding: 2em;
    position: relative;
    max-width: 480px;
    width: 90%;
    transform: scale(0.95) translateY(10px);
    opacity: 0;
    transition: all 0.3s ease;
    text-align: left;
}

dialog[open] {
    transform: scale(1) translateY(0);
    opacity: 1;
}

dialog.closing {
    opacity: 0;
    transform: scale(0.95) translateY(10px);
}

/* ✕ボタン */
.close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
}

/* モーダル内画像 */
dialog img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 1em;
}

/*------------------------------------------------------
校舎アクセス
------------------------------------------------------*/

#sec06 {
    background-color: var(--sec6-color);
    color: var(--text-color);
}

#sec06 iframe {
    padding-bottom: 30px;
}

.access01 {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: 30px;
}

.access01 .item01 {
    width: 50%;
}

.access01 .item02 {
    width: 45%;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: normal;
}

.access01 .item02 img {
    width: 60%;
    padding-bottom: 10px;
}

/*------------------------------------------------------
よくあるご質問
------------------------------------------------------*/

#sec07 {
    background-color: var(--sec7-color);
    color: var(--text-color);
}

.qa2 {
    margin-top: 30px;
}

.qa2>details>summary {
    margin-top: 20px;
    text-align: left;
    color: #30a2d5;
    font-size: 1rem;
    font-weight: bold;
    padding: 10px;
    background-color: #fff;
}


.q_aa2 {
    text-align: left;
    padding: 5px;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    line-height: 2;
    margin-top: 10px;
}

/*------------------------------------------------------
footer
------------------------------------------------------*/

#sec08 {
    background-color: var(--sec8-color);
    color: var(--text-color);
    padding-bottom: 100px;
}

#sec08 img {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 20px;
}

#sec09 {
    background-color: var(--sec9-color);
    color: var(--text-color);
}

/*------------------------------------------------------
footer
------------------------------------------------------*/

.footer-cta {
    position: fixed;
    bottom: -230px;
    /* ← 画面の外に隠しておく */
    left: 0;
    width: 100%;
    background: #cacaca;
    color: #fff;
    text-align: center;
    padding: 20px;
    transition: bottom 0.5s ease;
}

/* 表示される状態 */
.footer-cta.show {
    bottom: 0;
    /* ← 上にスライドして表示 */
}


/*  個人情報の取り扱いについて
------------------------------------------------------------------*/

.kojin {
    text-align: center;
}

.on_a {
    display: inline-block;
    background-color: #a0a0a0;
    color: #fff;
    padding: 20px 30px;
    font-size: 0.8rem;
}

/*  footer
------------------------------------------------------------------*/

.ft {
    color: #000;
    margin-top: 30px;
}

.fot01>a>img {
    width: 30%;
    min-width: 220px;
    max-width: 300px;
    margin: 0 auto;
}

.copy {
    margin-top: 20px;
}

.copy>p {
    color: #ffffff;
    font-size: 0.5rem;
}

.sticky-footer {
    position: fixed;
    bottom: 0rem;
    left: 0;
    width: 100%;
    height: 0px;
    padding: 0px;
    padding-bottom: 65px;
    display: flex;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.7);
}

.footer_btn_flex {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    margin: 10px 10px;
    min-width: 360px;
    border-radius: 10px;
}

.btn_wrap,
.btn_wrap2 {
    width: 290px;
    height: auto;
    position: relative;
    margin: auto;
}

.btn_balloon,
.btn_balloon2 {
    display: none;
}

/* .button {
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-family: "Noto Sans Japanese";
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    background: #FE7CA9;
    -webkit-box-shadow: 0 5px 0 #bd5d7f;
    box-shadow: 0 5px 0 #c85e83;
    color: #fff;
    transition: 0.2s;
} */


/*  footerボタン2
------------------------------------------------------------------*/

/* .button2 {
    width: 100%;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-family: "Noto Sans Japanese";
    font-weight: 500;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    background: #3AB2EA;
    -webkit-box-shadow: 0 5px 0 #2279a1;
    box-shadow: 0 5px 0 #257da7;
    color: #fff;
    transition: 0.2s;
} */

/*------------------------------------------------------
タブレットスタイル
------------------------------------------------------*/

@media screen and (min-width:840px) {
    .article {
        margin: 0 auto;
        max-width: 320px;
        position: relative;
    }

    .nav_wrapper {
        display: none;
    }

    .logo {
        display: none;
    }

    .btn_balloon {
        width: 280px;
        height: 30px;
        padding-left: 0.1em;
        border-radius: 20px;
        border: solid 2px #FE7CA9;
        background-color: #fff;
        font-size: 90%;
        font-family: "Noto Sans Japanese";
        font-weight: 700;
        line-height: 1;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 55px;
        left: 50%;
        transform: translate(-50%, 0%);
        pointer-events: none;
        transition: 0.2s;
        color: #FE7CA9;
        z-index: 2;
    }

    .btn_balloon::before,
    .btn_balloon::after {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        position: absolute;
        left: 50%;
        transform: translate(-50%, 100%);
    }

    .btn_balloon::before {
        bottom: 1px;
        border-width: 8px 5px 0 5px;
        border-color: #fff transparent transparent transparent;
        z-index: 2;
    }

    .btn_balloon::after {
        bottom: 0;
        border-width: 11px 8px 0 8px;
        border-color: #FE7CA9 transparent transparent transparent;
        z-index: 1;
    }

    .btn_balloon2 {
        width: 280px;
        height: 30px;
        padding-left: 0.1em;
        border-radius: 20px;
        border: solid 2px #3AB2EA;
        background-color: #fff;
        font-size: 90%;
        font-family: "Noto Sans Japanese";
        font-weight: 700;
        line-height: 1;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        position: absolute;
        bottom: 55px;
        left: 50%;
        transform: translate(-50%, 0%);
        pointer-events: none;
        transition: 0.2s;
        color: #3AB2EA;
        z-index: 2;
    }

    .btn_balloon2::before,
    .btn_balloon2::after {
        content: "";
        width: 0;
        height: 0;
        border-style: solid;
        position: absolute;
        left: 50%;
        transform: translate(-50%, 100%);
    }

    .btn_balloon2::before {
        bottom: 1px;
        border-width: 8px 5px 0 5px;
        border-color: #fff transparent transparent transparent;
        z-index: 2;
    }

    .btn_balloon2::after {
        bottom: 0;
        border-width: 11px 8px 0 8px;
        border-color: #3AB2EA transparent transparent transparent;
        z-index: 1;
    }

    /* 
    .button2:after {
        content: "";
        position: absolute;
        top: 50%;
        bottom: 0;
        right: 2rem;
        font-size: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.3s;
        width: 6px;
        height: 6px;
        border-top: solid 2px currentColor;
        border-right: solid 2px currentColor;
        transform: translateY(-50%) rotate(45deg);
    }

    .button2:hover {
        background: #3AB2EA;
        color: #FFF;
        -webkit-box-shadow: 0 2px 0 #1d7ba6;
        box-shadow: 0 2px 0 #2283af;
        transform: translateY(3px);
    }

    .button:after {
        content: "";
        position: absolute;
        top: 50%;
        bottom: 0;
        right: 2rem;
        font-size: 90%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right 0.3s;
        width: 6px;
        height: 6px;
        border-top: solid 2px currentColor;
        border-right: solid 2px currentColor;
        transform: translateY(-50%) rotate(45deg);
    }

    .button:hover {
        background: #FE7CA9;
        color: #FFF;
        -webkit-box-shadow: 0 2px 0 #be4972;
        box-shadow: 0 2px 0 #ab3c63;
        transform: translateY(3px);
    } */

    .footer_btn_flex {
        gap: 20px;
    }

}

/*------------------------------------------------------
PCスタイル
------------------------------------------------------*/

@media screen and (min-width:1000px) {
    .article {
        margin: 0;
        max-width: 400px;
        right: calc((100% - 320px) / 4);
        position: absolute;
    }

    .sticky-footer {
        display: none;
    }

    #sec08 {
        padding-bottom: 20px;
    }

    /* // ナビ
// --------------------------------------------- */

    .nav_wrapper {
        display: block;
        position: fixed;
        z-index: 5;
        width: 100%;
        top: 50%;
        transform: translateY(-50%);

        .nav_list {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            right: calc((100% - 320px) / 13);
            z-index: 5;

            li {
                list-style: none;

                a {
                    text-decoration: none;
                    display: inline-block;
                    padding: 20px 20px;
                    font-weight: 700;
                    color: #fff;
                }
            }
        }
    }

    .current {
        /* background-color: #fa8072 !important; */

        a {
            /*
            color: #000000 !important;
            */
            text-decoration: underline !important;
            /* opacity: 0.9;
        text-decoration: underline; */
        }
    }

    .logo {
        display: block;
        position: fixed;
        top: 400px;
        left: calc((100% - 320px) / 4);
        width: 250px;
        height: auto;
        z-index: 10;
    }

    .top_h1 {
        display: block;
        position: fixed;
        top: 150px;
        left: calc((100% - 320px) / 20);
        width: 410px;
        height: auto;
        z-index: 10;
    }

    .top_h1_button {
        display: block;
        position: fixed;
        /* ← fixed を絶対やめたいポイント */
        z-index: 3;
        top: 400px;
        /* ← MVの下部に固定される */
        left: calc((100% - 320px) / 20);
        margin-left: 55px;
        margin-right: 30px;
        width: 300px;
    }


    .top_h1_button a {
        margin: 0 auto;
        width: 100%;
        font-size: 16px;
    }


    .top_sp_h1 {
        display: none;
    }

    .top_sp_h1_button {
        display: none;
    }

}

@media screen and (min-width:1200px) {

    .button a {
        max-width: 500px;
        font-size: 20px;
    }

    .top_h1 {
        top: 150px;
        left: calc((100% - 320px) / 20);
        width: 600px;
        height: auto;
    }

    .top_h1_button {
        top: 530px;
        /* ← MVの下部に固定される */
        left: calc((100% - 320px) / 20);
        margin-left: 55px;
        margin-right: 30px;
        width: 500px;
    }
}