        /*全てのページに適用される設定*/
        /* ボックスモデルの変更 */
        
        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        
        .zen-maru-gothic-light {
            font-family: "Zen Maru Gothic", serif;
            font-weight: 300;
            font-style: normal;
        }
        
        .zen-maru-gothic-regular {
            font-family: "Zen Maru Gothic", serif;
            font-weight: 400;
            font-style: normal;
        }
        
        .zen-maru-gothic-medium {
            font-family: "Zen Maru Gothic", serif;
            font-weight: 500;
            font-style: normal;
        }
        /* img（imgタグをセレクタに使用するのはこれだけ）*/
        
        img {
            max-width: 100%;
        }
        /* ulの・消す */
        
        ul {
            list-style: none;
        }
        /* フォントの設定（サイズ・種類） */
        
        html {
            color: #6c6c6c;
        }
        
        h2 {
            font-size: 25px;
        }
        
        h3 {
            font-size: 20px;
        }
        
        h1 {
            color: #ffffff;
            font-size: clamp(1.563rem, 1.108rem + 2.27vw, 2.813rem);
        }
        
        p {
            font-size: 15px;
            line-height: 27px;
        }
        /* 行間の調整 */
        /* 中央揃え */
        
        h1,
        .hero-box p {
            text-align: center;
        }
        /* aの設定 */
        
        a {
            color: #0097FE;
            text-decoration: none;
        }
        
        a:hover {
            color: #30abfd;
        }
        /*ヘッダー*/
        /*==================================================
    　5-3-1 中心から外に線が伸びる（下部）
    ===================================*/
        
        .c-header {
            height: 65px;
            background-color: #fff;
            /* カスタマイズしてください */
            box-sizing: border-box;
            /* カスタマイズしてください */
            width: 100%;
            position: fixed;
            z-index: 99;
            border-bottom: 1.5px solid #cccccc;
        }
        
        .c-header div {
            height: 65px;
            /* max-width: 1100px; */
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 0 2rem;
            margin: auto;
        }
        
        .c-header__logo {
            color: #0097FE;
            min-width: 80px;
            text-decoration: none;
        }
        /* c-header__logo2 {
        color: #0097FE;
    } */
        
        .c-header__logo span {
            font-size: 21px;
            line-height: 28px;
        }
        
        .c-header__logo span span {
            font-size: 13px;
            line-height: 28px;
        }
        
        .c-header__list {
            box-sizing: border-box;
            display: flex;
            max-width: 1200px;
        }
        
        .c-header__list-item {
            list-style: none;
            text-decoration: none;
        }
        
        .c-header__list-link {
            color: #0097FE;
            display: block;
            margin-right: 70px;
            text-decoration: none;
            padding: 10px 0px;
            font-size: 17px;
        }
        
        .c-header__list-link:hover {
            filter: opacity(1);
            /* カスタマイズしてください */
        }
        /* .c-hamburger-menu {
        position: relative;
    } */
        
        .c-hamburger-menu__input {
            display: none;
        }
        
        .c-hamburger-menu__bg {
            background-color: #d9e9f9;
            /* カスタマイズしてください */
            cursor: pointer;
            display: none;
            height: 100vh;
            left: 0;
            opacity: 0.4;
            /* カスタマイズしてください */
            position: absolute;
            top: 0;
            width: 100%;
            z-index: -1;
        }
        
        #hamburger:checked~.c-hamburger-menu__bg {
            display: block;
        }
        
        .c-hamburger-menu__button {
            display: none;
        }
        
        .c-hamburger-menu__button-mark {
            background-color: #0097FE;
            /* カスタマイズしてください */
            display: block;
            height: 2px;
            /* カスタマイズしてください */
            transition: 0.3s;
            /* カスタマイズしてください */
            width: 20px;
            /* カスタマイズしてください */
        }
        /*ヒーローイメージ*/
        
        .hero-box {
            padding-top: 250px;
            padding-bottom: 250px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-image: url(../images/hero-image.jpg);
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            margin-bottom: 230px;
        }
        
        .hero-box-info {
            padding-top: 0px;
            padding-bottom: 0px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-image: none;
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            margin-bottom: 230px;
        }
        /* じわっと出現 */
        
        .blur {
            animation-name: blurAnime;
            animation-duration: 1.9s;
            animation-fill-mode: forwards;
        }
        
        @keyframes blurAnime {
            from {
                filter: blur(10px);
                transform: scale(1.02);
                opacity: 0;
            }
            to {
                filter: blur(0);
                transform: scale(1);
                opacity: 1;
            }
        }
        
        .blurTrigger {
            opacity: 0;
        }
        /*メイン*/
        
        main {
            margin-left: auto;
            margin-right: auto;
        }
        
        h1 {
            text-shadow: 0 0 8px rgb(0, 0, 0, 0.5);
            margin-left: auto;
            margin-right: auto;
        }
        
        h2 {
            padding: 0px 0 20px 0;
            margin-top: -85px;
            text-align: center;
            color: #0097FE;
        }
        
        h3 {
            margin: 0 0 25px 0;
            text-align: center;
            color: #808080;
        }
        
        #information {
            margin: -200px auto 230px;
            padding-top: 160px;
        }
        
        #information p {
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 50px;
            text-align: center;
        }
        
        #information a {
            color: #0097FE;
            text-align: center;
            margin: 0 auto;
            font-size: 15px;
            background-color: #fff;
            color: #0097FE;
            border-radius: 0px;
            border: solid 1px #0097FE;
            padding: 13px 20px;
        }
        
        #information a:hover {
            color: #fff;
            background-color: #0097FE;
        }
        
        #information table {
            border-collapse: collapse;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 50px;
            text-align: center
        }
        
        #information table span {
            color: red;
        }
        
        #information table th,
        #information table td {
            border: 2px solid #78c9ff;
            padding: 10px 30px;
        }
        
        #guidance {
            max-width: 1100px;
            margin: -200px auto 250px;
            padding-top: 160px;
            text-align: center;
        }
        
        .guidance-text {
            max-width: 400px;
            text-align: left;
            margin: 0 auto;
            padding-top: 10px;
        }
        
        .guidance-text span {
            color: #0097FE;
        }
        
        #guidance h3 {
            padding: 10px 0;
            margin-bottom: 0;
        }
        
        #week-table {
            max-width: 1100px;
            text-align: center;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 50px;
        }
        
        .week-table {
            border-collapse: collapse;
            margin-left: auto;
            margin-right: auto;
            margin-bottom: 30px;
        }
        
        .week-table th,
        .week-table td {
            border: 1.5px solid #0098ff;
            padding: 10px 30px;
            text-align: center;
        }
        
        .week-table th {
            background-color: #ceebff;
        }
        
        .profile-box {
            max-width: 1100px;
            margin: 0 auto 100px;
            text-align: center;
            display: flex;
            justify-content: center;
            gap: 50px;
            align-items: center;
        }
        
        #profile {
            margin: -200px auto 250px;
            padding-top: 160px;
        }
        
        #profile p {
            max-width: 500px;
            padding-bottom: 20px;
        }
        
        .profile-name {
            text-align: right;
            font-size: 22px;
            padding: 0 0 20px 0;
        }
        
        .profile-name span {
            font-size: 13px;
        }
        
        .profile-comment {
            text-align: left;
            line-height: 27px;
        }
        
        #access {
            margin: -200px auto 50px;
            padding-top: 160px;
            text-align: center;
        }
        
        .access p {
            padding: 0;
            line-height: 27px;
            margin-bottom: 10px;
        }
        
        .access ul {
            max-width: 500px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 20px;
            padding: 0 10px;
        }
        
        #info {
            max-width: 1100px;
            margin: -200px auto 50px;
            padding-top: 160px;
            text-align: center;
        }
        
        .info-text {
            max-width: 400px;
            text-align: left;
            margin: 0 auto 50px;
            padding-top: 10px;
        }
        
        .info-text span {
            color: #0097FE;
        }
        
        #info a {
            max-width: 1100px;
            margin: 50px auto 50px;
            padding: 10px;
            text-align: center;
        }
        /*フッター*/
        
        footer {
            background-color: #0098ff;
        }
        
        footer p {
            height: 50px;
            display: flex;
            justify-content: center;
            align-items: center;
            color: #fff;
        }
        
        footer div {
            background-color: #ffffff;
            text-align: center;
            padding-top: 0;
            padding-bottom: 40px;
        }
        
        footer a:hover {
            opacity: 0.7;
        }
        
        .bgi-box {
            padding-top: 90px;
            padding-bottom: 90px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            background-image: url(../images/bg-image.jpg);
            background-repeat: no-repeat;
            background-position: center;
            background-size: cover;
            margin-bottom: 160px;
        }
        /* タブレット版 */
        
        @media (max-width: 1024px) and (min-width: 768px) {
            h1 {
                font-size: (1.563rem, 1.16rem + 2.01vw, 2.125rem);
            }
            .profile-box {
                padding: 0 1rem;
            }
        }
        /* モバイル版 */
        
        @media(max-width: 767px) {
            h1 {
                font-size: (1.563rem, 1.16rem + 2.01vw, 2.125rem);
            }
            .c-hamburger-menu__list {
                background-color: #fff;
                /* opacity: 0.98; */
                align-items: flex-start;
                display: flex;
                flex-direction: column;
                left: 0;
                padding: 2rem;
                position: absolute;
                transform: translateX(-100%);
                transition: 0.5s;
                top: 100%;
                width: 100%;
            }
            #hamburger:checked~.c-hamburger-menu__list {
                transform: translateX(0%);
                transition: 0.3s;
            }
            .c-hamburger-menu__button {
                align-items: center;
                appearance: none;
                background-color: transparent;
                border: none;
                cursor: pointer;
                display: flex;
                flex-direction: column;
                gap: 4px;
                height: 49px;
                justify-content: center;
                width: 32px;
            }
            #hamburger:checked~.c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(1) {
                transform: translate(2px, 1px) rotate(45deg);
                transform-origin: 0%;
            }
            #hamburger:checked~.c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(2) {
                opacity: 0;
            }
            #hamburger:checked~.c-hamburger-menu__button .c-hamburger-menu__button-mark:nth-of-type(3) {
                transform: translate(2px, 3px) rotate(-45deg);
                transform-origin: 0%;
            }
            .c-header__logo span {
                font-size: clamp(1.125rem, 1.036rem + 0.45vw, 1.25rem);
            }
            /* .hero-box h1 {
            font-size: 15vw;
        } */
            nav ul {
                flex-wrap: wrap;
                gap: 50px;
            }
            .hero-box {
                padding: 30vh 0 23vh;
            }
            .hero-box p {
                font-size: clamp(1.188rem, -0.329rem + 7.58vw, 2.875rem)
            }
            .profile-box {
                display: flex;
                flex-wrap: wrap-reverse;
                gap: 30px;
                padding: 0 1rem;
            }
            .profile-name {
                font-size: 21px;
                text-align: center;
            }
            #week-table {
                padding: 0 1rem;
            }
            .week-table th,
            .week-table td {
                border: 1px solid #0098ff;
                padding: 10px 10px;
            }
            #information {
                padding: 160px 1rem 0;
            }
            #guidance {
                padding: 160px 1rem 0;
            }
            #access {
                padding: 160px 1rem 0;
            }
            #info {
                padding: 160px 1rem 0;
            }
            .info-text {
                padding-bottom: 10px;
            }
            #info a {
                padding: 10px 1rem 0;
            }
            footer p {
                font-size: 10px;
            }
        }
        
        .fadeUp {
            animation-name: fadeUpAnime;
            animation-duration: 0.5s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        
        @keyframes fadeUpAnime {
            from {
                opacity: 0;
                transform: translateY(100px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .fadeUpTrigger {
            opacity: 0;
        }
        
        .fadeUp {
            animation-name: fadeUpAnime;
            animation-duration: 2s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        
        @keyframes fadeUpAnime {
            from {
                opacity: 0;
                transform: translateY(100px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        /* その場で */
        
        .fadeIn {
            animation-name: fadeInAnime;
            animation-duration: 3s;
            animation-fill-mode: forwards;
            opacity: 0;
        }
        
        @keyframes fadeInAnime {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }