/*
Theme Name: 株式会社進学会
Theme URI: 
Author: Sudaseihan
Author URI: 
*/
@charset "utf-8";
/*
* z-index設計:
* 普通の要素（パララックスより下）:0〜500
* 背景のパララックス箇所、帯: z-index:500〜599（パララックスと帯は上下が色によって変わる。白と薄い色はパララックスが上、濃い色はパララっクスが下）
* 普通の要素（パララックスより上）:600〜969
* 固定ヘッダー:970
* サイドバーの飾り:980
* グローバルメニュー:990〜999
* ハンバーガーメニュー:1000
*/
*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    max-width: 100%;
    overflow-x: clip;
    /* ← hidden より推奨。position:sticky を壊さない */
}

img,
svg,
video,
iframe {
    max-width: 100%;
    height: auto;
}
/*header*/
.header {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0 10px;
    background: #FFF;
}
@media only screen and (max-width:767px) {
    .header {
        padding: 10px 0;
        margin: 5px auto 0;
    }
}
.logosWrap {
    width: 400px;
    height: 80px;
    overflow: hidden;
}

@media only screen and (max-width:920px) {
    .logosWrap {
        width: 400px;
        height: 80px;
    }

}

.logosWrapWide {
    width: 65%;
}

.logosWrapScroll {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: max-content;
    animation: logoScroll 60s linear infinite;
}
.logo {
    height: 60px;
    margin: 0 25px 0 0;
    flex-shrink: 0;
}

@media only screen and (max-width:767px) {
    .logosWrap {
        width: 50%;
        height: 40px;
    }

    .logosWrapWide {
        position: relative;
        top: 60px;
        width: 100%;
    }
    .logosWrap3 {
        width: 50%;
        height: 60px;
    }
    .logosWrap3 img {
        height: auto;
        margin: 10px 0 0;
    }
    .logo {
        width: 100%;
        height: auto;
    }
}

@keyframes logoScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
        /* ロゴセットの半分の位置まで移動 */
    }
}

.headerMenuWrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    width: calc(100% - 400px);
    padding: 0 70px 0 0;
}

.headerKidsclub {
    position: fixed;
    z-index: 970;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logoKidsclub {
    padding: 20px 15px;
    height: 90px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.6);
}

.headerMenuWrapKidsclub {
    position: fixed;
    z-index: 1000;
    top: 0;
    right: 0;
    display: flex;
    align-items: center;
    background: #d8600e;
}

.headerMenuWrapKidsclub a {
    padding: 10px 40px;
    color: #FFF;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    border-right: 1px solid #FFF;
}

.headerMenuWrapKidsclub a:last-of-type {
    border-right: none;
}

.headerMenuWrapKidsclub a.kidsclubHeaderToTop {
    padding: 36px 40px;
    background: #4caa31;
    border-right: none;
    color: #FFF;
}

.headerMenuWrapActive {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 980;
    width: 100%;
    height: 100px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.9);
}

@media only screen and (max-width:1370px) {
    .headerMenuWrapKidsclub {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        position: fixed;
        z-index: 999;
        top: 0;
        right: -100%;
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        height: 100dvh;
        background: #d8600e;
        overflow-y: auto;
        padding: 80px 0 40px;
        transition: right 0.35s ease-in-out;
    }

    .headerMenuWrapKidsclub.is-open {
        right: 0;
    }

    .headerMenuWrapKidsclub a {
        padding: 18px 30px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
        font-size: 1.5rem;
        text-align: left;
    }

    .headerMenuWrapKidsclub a:last-of-type {
        border-bottom: none;
    }

    .headerMenuWrapKidsclub a.kidsclubHeaderToTop {
        padding: 18px 30px;
    }

    /* ハンバーガーボタン表示 */
    .hamburgerKidsclub {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        position: relative;
        z-index: 1000;
        width: 56px;
        height: 56px;
        margin-right: 10px;
        padding: 0;
        background: #d8600e;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        flex-shrink: 0;
    }

    .hamburgerKidsclub span {
        display: block;
        width: 26px;
        height: 2px;
        background: #FFF;
        border-radius: 1px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* ✕ アニメーション */
    .hamburgerKidsclub.is-active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

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

    .hamburgerKidsclub.is-active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* オーバーレイ */
    .hamburgerOverlayKidsclub {
        display: none;
        position: fixed;
        z-index: 998;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
    }

    .hamburgerOverlayKidsclub.is-active {
        display: block;
    }
}

@media only screen and (max-width:767px) {
    .headerMenuWrap {
        width: 50%;
        min-height: 60px;
        padding: 0 60px 0 0;
    }
    .headerMenuWrapActive {
        width: 100%;
        height: 80px;
        padding: 10px;
    }
}

.gMenuLogos {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    padding: 10px 30px 5px 10px;
}

@media only screen and (max-width:767px) {
    .gMenuLogosWrap {
        width: 60%;
        height: auto;
        margin: 30px auto 0;
        overflow: hidden;
    }
    .gMenuLogos {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        width: max-content;
        animation: logoScroll 60s linear infinite;
    }
}

.gMenuHonbu {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin: 30px 0;
}

.gMenuHonbu a:first-of-type {
    margin: 0 30px 0 0;
}

@media only screen and (max-width:767px) {
    .gMenuHonbu a:first-of-type {
        margin: 0 0 10px 0;
    }
}

.gMenuLogos p {
    width: auto;
    height: 30px;
    margin: 0 10px 10px 0;
}

.gMenuLogos p img {
    height: 100%;
}

.gMenuLinksWrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    padding: 3%;
}

.gMenuMain,
.gMenuSpecial {
    width: calc(100% / 2 - 15px);
}

@media only screen and (max-width:767px) {
    .gMenuMain,
    .gMenuSpecial {
        width: 100%;
        margin: 0 0 30px;
    }
}

.gMenuShudan {
    background: rgba(100, 183, 67, 0.3);
    padding: 20px;
}

.gMenuKobetsu {
    background: rgba(67, 152, 206, 0.3);
    padding: 20px;
    margin: 20px 0 0;
}

.gMenuOnline {
    background: rgba(250, 50, 70, 0.3);
    padding: 20px;
    margin: 20px 0 0;
}

.gMenuMain p,
.gMenuMain a {
    letter-spacing: 0.2rem;
}

.gMenuHeadline,
.gMenuHeadline a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 2rem;
    font-weight: 900;
    color: #004b96;
}

.gMenuLinks {
    margin: 15px 0 30px;
}

.gMenuLinks img {
    max-height: 30px;
    margin: 0 10px 0 0;
}

.gMenuLinks:last-of-type {
    margin: 15px 0 0;
}

.gMenuLinks li {
    margin: 0 0 5px 5px;
}

.gMenuLinks li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0 0 10px 10px;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
}

.gMenuHeadline a:after,
.gMenuLinks li a:after {
    content: '>';
    margin: 0 0 0 15px;
    font-size: 1.2rem;
    color: #fa3246;
}

.gMenuBottom ul {
    margin: 30px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.gMenuBottom ul li {
    margin: 0 15px 10px;
    font-size: 1.4rem;
}

.gMenuBottom ul li a:after {
    content: '>';
    margin: 0 0 0 10px;
    font-size: 1.2rem;
    color: #fa3246;
}

.headerClassRoom {
    position: fixed;
    z-index: 980;
    top: 20px;
    right: 300px;
}

@media only screen and (max-width:920px) {
    .headerClassRoom {
        display: none;
    }
}

@media only screen and (max-width:767px) {
    .headerClassRoom {
        display: none;
    }
}

.gMenuToggle {
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
}
.gMenuToggle::before,
.gMenuToggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: #000;
    transition: transform 0.3s;
}
.gMenuToggle::before {
    transform: translate(-50%, -50%);
}
.gMenuToggle::after {
    transform: translate(-50%, -50%) rotate(90deg);
}
.gMenuToggle.active::after {
    transform: translate(-50%, -50%) rotate(0);
}

@media only screen and (max-width: 768px) {
    .gMenuLinks {
        display: none;
    }
    .gMenuHeadline {
        position: relative;
        cursor: pointer;
        padding: 0 30px 0 0;
        margin: 0 0 30px;
    }
    .gMenuShudan .gMenuHeadline,
    .gMenuKobetsu .gMenuHeadline,
    .gMenuOnline .gMenuHeadline {
        margin: 0;
    }
    .gMenuHeadline::before,
    .gMenuHeadline::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 10px;
        width: 14px;
        height: 2px;
        background: #000;
        transition: transform 0.3s;
    }
    .gMenuOnline .gMenuHeadline::before,
    .gMenuOnline .gMenuHeadline::after {
        content: none;
    }
    .gMenuHeadline::before {
        transform: translateY(-50%);
    }
    .gMenuHeadline::after {
        transform: translateY(-50%) rotate(90deg);
    }
    .gMenuHeadline.active::after {
        transform: translateY(-50%) rotate(0);
    }
}

.lineIcon {
    position: fixed;
    z-index: 980;
    top: 25px;
    right: 190px;
    max-width: 60px;
    max-height: 60px;
    cursor: pointer;
}

@media only screen and (max-width:767px) {

    .lineIcon {
        top: 10px;
        right: 115px;
        max-width: 40px;
        max-height: 40px;
        margin: 0 20px 0 0;
    }
}

.lineMenu {
    display: none;
    background: #06c755;
    background-repeat: no-repeat;
    z-index: 998;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10%;
    transition: 0.5s ease-in-out;
}
.lineMenu.active {
    display: block;
    padding: 8% 5%;
    transition: 0.5s ease-in-out;
    top: 0;
}

.lineMenuLink {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 80%;
    margin: 0 0 20px;
    font-size: 1.6rem;
    color: #FFF;
}

.lineMenuLink img {
    width: 80px;
    height: 80px;
}

.lineIcon img {
    width: 100%;
    height: 100%;
}

.lineMenuClose {
    position: fixed;
    position: 980;
    top: 20px;
    right: 20px;
    color: #FFF;
    font-size: 6rem;
    cursor: pointer;
}

.inquiryIcon {
    position: fixed;
    z-index: 980;
    top: 35px;
    right: 100px;
    max-width: 100px;
    max-height: 60px;
    text-align: center;
    cursor: pointer;
}


.inquiryIcon img {
    max-width: 90px;
    margin: 0 0 5px;
}

@media only screen and (max-width:767px) {
    .inquiryIcon {
        top: 10px;
        right: 60px;
        max-width: 100px;
        max-height: 40px;
    }
    .inquiryIcon img {
        max-width: 40px;
    }
}

.inquiryMenu {
    display: none;
    background: #cceaf9;
    background-repeat: no-repeat;
    z-index: 998;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 10%;
    transition: 0.5s ease-in-out;
    overflow-y: scroll;
}
.inquiryMenu.active {
    display: block;
    overflow-y: auto;
    padding: 8% 5%;
    transition: 0.5s ease-in-out;
    top: 0;
}

.inquiryMenuClose {
    position: fixed;
    z-index: 980;
    top: 20px;
    right: 20px;
    color: #252e3d;
    font-size: 6rem;
    cursor: pointer;
}

.inquiryMenuLink {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 80%;
    max-height: 30px;
    margin: 0 0 40px;
    font-size: 1.6rem;
    color: #252e3d;
}

.inquiryMenuLink img {
    max-height: 30px;
    margin: 0 30px 0 0;
}

/*footer*/
.footer {
    position: relative;
    z-index: 600;
    margin: 120px 0 0;
    padding: 40px 0 50px;
    background: #004b96;
}

.footerKidsClub {
    background: #d8600e;
}

.footerKidsClub article {
    margin: 0 30px 0 0;
}

.footerKidsClub p {
    color: #FFF;
}

.footerKidsClubClassroom {
    font-size: 1.7rem;
    color: #FFF;
    font-weight: 700;
    margin: 15px 0;
}

.footerMenuLinks ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.footerMenuLinks ul.footerMenuLinksStart {
    justify-content: flex-start;
}

.footerMenuLinks ul li {
    margin: 0 0 10px;
}

.footerMenuLinks ul.footerMenuLinksStart li {
    margin: 0 30px 30px 0;
}

@media only screen and (max-width:1165px) {
    .footerMenuLinks ul.footerMenuLinksStart li {
        margin: 0 15px 30px 0;
    }
    .footerMenuLinks ul.footerMenuLinksStart li a {
        font-size: 1.4rem;
        padding: 5px 10px;
    }
    .footerKidsClub article {
        margin: 0 0 30px 0;
    }
}

@media only screen and (max-width:767px) {
    .footerMenuLinks ul li {
        width: 48%;
    }
    .footerMenuLinks ul.footerMenuLinksStart {
        width: 100%;
        justify-content: space-between;
    }
    .footerMenuLinks ul.footerMenuLinksStart li {
        margin: 0 0 10px 0;
    }
}

.footerMenuBottom ul {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
    margin: 20px 0 0;
    border-top: 1px solid #FFF;
}

.footerMenuBottom ul li {
    padding: 2px 25px;
    border-right: 1px solid #FFF;
}

.footerMenuBottom ul li:last-of-type {
    border-right: none;
}

.footerMenuBottom ul li a {
    color: #FFF;
    font-size: 1.6rem;
    font-weight: 600;
}

@media only screen and (max-width:767px) {
    .footerMenuBottom ul li {
        padding: 5px 12px;
        margin: 0 0 15px;
        border-right: 1px solid #FFF;
    }

    .footerMenuBottom ul li a {
        font-size: 1.3rem;
    }
}

.copyright {
    font-size: 1.6rem;
    font-weight: 900;
    color: #FFF;
    text-align: center;
    letter-spacing: 0.1rem;
}

@media only screen and (max-width:767px) {
    .copyright {
        font-size: 1.2rem;
    }
}

/*sidebar*/
.sidebar {
    position: fixed;
    z-index: 980;
    top: 0;
    right: 0;
    height: 100vh;
    width: 60px;
    background: #ebebeb;
}

.sidebarGradation {
    position: fixed;
    z-index: 981;
    top: 200px;
    right: 0;
    width: 60px;
    height: 100px;
    background: linear-gradient(to bottom, #5eba87, #4398ce);
    border-radius: 60px;
}

@media only screen and (max-width:767px) {
    .sidebar {
        display: none;
        background: transparent;
    }
    .sidebarGradation {
        display: none;
    }
}

/*中ページメニュー*/
.pagemenu {
    background: #cceaf9;
    padding: 20px 0;
}

.pagemenu ul {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}

.pagemenu ul li {
    padding: 2px 10px;
}

.pagemenu ul li a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.pagemenu ul li a:after {
    content: '>';
    margin: 0 0 0 10px;
    font-size: 1.2rem;
    color: #fa3246;
}

.classroomHokudaiLinks {
    display: none;
}
@media only screen and (max-width:768px) {
    .classroomHokudaiLinks {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}

.classroomHokudaiLinks li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #004b96;
    font-weight: 900;
    font-size: 1.6rem;
    padding: 10px 10px 5px;
}

.classroomHokudaiLinks li a:after {
    content: '▼';
    font-size: 1.1rem;
    margin: 0 0 0 5px;

}

/*全ページ共通箇所*/
.allBody {
    position: relative;
    min-height: 100vh;
}

.hiddenH1 {
    height: 0;
    opacity: 0;
}

.main {}

.jissekiWrap {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.jissekiWrap:after {
    position: absolute;
    left: -5%;
    right: 0;
    content: '';
    display: block;
    bottom: 0;
    margin: 0 auto;
    width: 90%;
    height: 23px;
    background: #f5e721;
}

.jissekiPartsLeft {
    position: absolute;
    left: -50px;
    top: 0;
    bottom: 0;
    margin: auto 0;
}

.jissekiPartsRight {
    position: absolute;
    right: 0px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    transform: rotateY(180deg);
}

.jissekiLeft {
    font-size: 3.15rem;
    font-weight: 900;
    line-height: 1;
    font-family: "Zen Kaku Gothic New", sans-serif;
    text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF,
        -2px 2px 0 #FFF, 2px -2px 0 #FFF,
        0px 2px 0 #FFF, 0 -2px 0 #FFF,
        -2px 0 0 #FFF, 2px 0 0 #FFF;
}

.jissekiLeft span {
    display: block;
    font-size: 6.5rem;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.jissekiRight {
    font-size: 15.6rem;
    font-weight: 900;
    line-height: 1;
    color: #fa3246;
    font-family: "Zen Kaku Gothic New", sans-serif;
    text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF,
        -2px 2px 0 #FFF, 2px -2px 0 #FFF,
        0px 2px 0 #FFF, 0 -2px 0 #FFF,
        -2px 0 0 #FFF, 2px 0 0 #FFF;
}

.jissekiRight span {
    font-size: 6.5rem;
}

.jissekiCaption {
    position: absolute;
    top: 40px;
    right: 100px;
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1;
    font-family: "Zen Kaku Gothic New", sans-serif;
    text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF,
        -2px 2px 0 #FFF, 2px -2px 0 #FFF,
        0px 2px 0 #FFF, 0 -2px 0 #FFF,
        -2px 0 0 #FFF, 2px 0 0 #FFF;
}

@media only screen and (max-width:1165px) {
    .jissekiPartsLeft {
        left: 0;
    }
    .jissekiPartsRight {}
    .jissekiLeft {
        font-size: 2.15rem;
    }
    .jissekiLeft span {
        font-size: 4.5rem;
    }

    .jissekiRight {
        font-size: 12.6rem;
    }
    .jissekiRight span {
        font-size: 4.5rem;
    }
}

@media only screen and (max-width:920px) {
    .jissekiCaption {
        font-size: 1.6rem;
        right: 30px;
    }

}

@media only screen and (max-width:767px) {
    .jissekiWrap {
        margin: 60px auto 0;
    }
    .jissekiWrap:after {
        bottom: 45px;
    }
    .jissekiLeft {
        font-size: 2.15rem;
        text-align: center;
    }
    .jissekiLeft span {
        font-size: 4.5rem;
        padding: 10px 0 0;
        text-align: center;
    }
    .jissekiRight {
        font-size: 6rem;
        text-align: center;
    }
    .jissekiRight span {
        font-size: 4rem;
        text-align: center;
    }
    .jissekiCaption {
        position: relative;
        top: 0;
        right: 0;
        margin: 30px 0 0;
    }
    .jissekiPartsLeft {
        left: -20px;
    }

    .jissekiPartsRight {
        right: -20px;
    }

}

.parallaxleft {
    position: absolute;
    z-index: 501;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.parallaxItem {
    position: absolute;
    z-index: 502;
    display: block;
    width: 50px;
    height: 50px;
    background: rgba(67, 152, 206, 0.35);
    overflow: hidden;
}

.parallaxItemBlur {
    filter: blur(1rem);
}

.parallaxItemWrap {
    position: absolute;
    z-index: 503;
    width: 100%;
    height: 100%;
}

.parallaxItemWrapBlur {}

.parallaxItem1-0 {
    margin-top: 110vh;
    left: 90%;
}

.parallaxItem1-1 {
    margin-top: 140vh;
    left: 5%;
    background: rgba(99, 186, 68, 0.35);
}

.parallaxItem1-2 {
    margin-top: 145vh;
    left: 92%;
    background: rgba(67, 152, 206, 0.35);
}

@media only screen and (max-width:767px) {
    .parallaxItem1-0 {
        margin-top: 60vh;
        left: 95%;
    }

    .parallaxItem1-1 {
        margin-top: 90vh;
        left: 2%;
    }

    .parallaxItem1-2 {
        margin-top: 125vh;
        left: 98%;
    }
}

.parallaxItem2-0 {
    margin-top: 180vh;
    left: 2%;
    width: 130px;
    height: 130px;
}

.parallaxItem2-1 {
    margin-top: 200vh;
    left: 98%;
    background: rgba(99, 186, 68, 0.35);
    width: 280px;
    height: 280px;
}

.parallaxItem2-2 {
    margin-top: 240vh;
    left: 10%;
    background: rgba(99, 186, 68, 0.35);
}

@media only screen and (max-width:767px) {
    .parallaxItem2-0 {
        left: 2%;
        width: 70px;
        height: 70px;
    }

    .parallaxItem2-1 {
        left: 98%;
        width: 140px;
        height: 140px;
    }
}

.parallaxItem3-0 {
    margin-top: 300vh;
    left: 2%;
    background: rgba(99, 186, 68, 0.35);
    width: 300px;
    height: 300px;
}

.parallaxItem3-1 {
    margin-top: 320vh;
    left: 95%;
    background: rgba(99, 186, 68, 0.35);
    width: 115px;
    height: 115px;
}

.parallaxItem3-2 {
    margin-top: 350vh;
    left: 90%;
    width: 290px;
    height: 290px;
}

@media only screen and (max-width:767px) {
    .parallaxItem3-0 {
        margin-top: 260vh;
        width: 150px;
        height: 150px;
    }

    .parallaxItem3-1 {
        left: 99%;
        width: 60px;
        height: 60px;
    }

    .parallaxItem3-2 {
        left: 96%;
        width: 140px;
        height: 140px;
    }

}


.parallaxItem4-0 {
    margin-top: 380vh;
    left: 11%;
    background: rgba(99, 186, 68, 0.35);
}

.parallaxItem4-1 {
    margin-top: 375vh;
    left: 14%;
    width: 80px;
    height: 80px;
}

.parallaxItem4-2 {
    margin-top: 440vh;
    left: 98%;
    width: 180px;
    height: 180px;
}
@media only screen and (max-width:767px) {
    .parallaxItem4-0 {
        left: 6%;
    }

    .parallaxItem4-1 {
        left: 7%;
    }

    .parallaxItem4-2 {
        left: 98%;
        width: 90px;
        height: 90px;
    }


}

.parallaxItem5-0 {
    margin-top: 500vh;
    left: 96%;
}

.parallaxItem5-1 {
    margin-top: 460vh;
    left: 94%;
    width: 80px;
    height: 80px;
}

.parallaxItem5-2 {
    margin-top: 440vh;
    left: 6%;
    width: 200px;
    height: 200px;
}

@media only screen and (max-width:767px) {
    .parallaxItem5-0 {
        margin-top: 550vh;
    }

    .parallaxItem5-1 {
        left: 98%;
        margin-top: 580vh;
        width: 100px;
        height: 100px;
    }

    .parallaxItem5-2 {
        margin-top: 580vh;
        left: 1%;
        width: 100px;
        height: 100px;

    }
}

.parallaxItem6-0 {
    margin-top: 470vh;
    left: 98%;
}

.parallaxItem6-1 {
    margin-top: 480vh;
    left: 4%;
    width: 80px;
    height: 80px;
}

.parallaxItem6-2 {
    margin-top: 450vh;
    left: 6%;
    width: 200px;
    height: 200px;
}

@media only screen and (max-width:767px) {
    .parallaxItem6-0 {
        margin-top: 570vh;
    }

    .parallaxItem6-1 {
        margin-top: 580vh;
        left: 3%;
        width: 80px;
        height: 80px;
    }

    .parallaxItem6-2 {
        margin-top: 450vh;
        left: 3%;
        width: 100px;
        height: 100px;
    }
}

.parallaxItem7-0 {
    margin-top: 500vh;
    left: 98%;
    width: 400px;
    height: 400px;
}

.parallaxItem7-1 {
    margin-top: 510vh;
    left: 4%;
    width: 80px;
    height: 80px;
}

.parallaxItem7-2 {
    margin-top: 470vh;
    left: 96%;
    width: 200px;
    height: 200px;
}

@media only screen and (max-width:767px) {
    .parallaxItem7-0 {
        margin-top: 500vh;
        left: 98%;
        width: 200px;
        height: 200px;
    }

    .parallaxItem7-1 {
        margin-top: 610vh;
        left: 2%;
        width: 80px;
        height: 80px;
    }

    .parallaxItem7-2 {
        margin-top: 570vh;
        left: 98%;
        width: 100px;
        height: 00px;
    }
}

.parallaxItem8-0 {
    margin-top: 570vh;
    left: 98%;
    width: 400px;
    height: 400px;
}

.parallaxItem8-1 {
    margin-top: 580vh;
    left: 4%;
    width: 80px;
    height: 80px;
}

.parallaxItem8-2 {
    margin-top: 600vh;
    left: 96%;
    width: 200px;
    height: 200px;
}

@media only screen and (max-width:767px) {
    .parallaxItem8-0 {
        margin-top: 670vh;
        left: 98%;
        width: 200px;
        height: 200px;
    }

    .parallaxItem8-1 {
        margin-top: 620vh;
        left: 3%;
        width: 80px;
        height: 80px;
    }

    .parallaxItem8-2 {
        margin-top: 670vh;
        left: 99%;
        width: 140px;
        height: 140px;
    }
}

/*TOPページ*/
.slideItems {
    width: 100%;
    overflow: hidden;

}
.slideItems li {
    position: relative;
    z-index: 500;
    width: 100%;
    height: auto;
    margin: 0 10px;
}


.slideItems li a:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 503;
    width: 100%;
    height: 100%;
    background: rgba(0, 90, 163, 0.3);
}

.slideItems li:has(+ .slick-current) a:before,
.slideItems li.slick-current a:before {
    background: transparent;
}

.slideBg {
    position: relative;
    z-index: 501;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
}

.slideBg img {
    width: 100%;
}

.slideItems li .sliderTextArea {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 502;
    width: 100%;
    padding: 15px;
}

.slideItems li .sliderTextArea .btn:after {
    top: 15%;
}

.slideItems li .sliderHeadlineArea {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 502;
    width: 100%;
}

.sliderHeadlineHorizontal {
    font-size: 4.8rem;
    font-weight: 900;
    line-height: 1.4;
    text-align: center;
    color: #004b96;
    text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px -2px 0 #FFF, 0px 2px 0 #FFF, 0 -2px 0 #FFF, -2px 0 0 #FFF, 2px 0 0 #FFF, 7px 7px 5px rgba(0, 0, 0, 0.3);
}

.sliderHeadlineBigText {
    font-size: 6.2rem;
    font-weight: 900;
    line-height: 1.4;
    text-align: center;
    color: #004b96;
    text-shadow: 2px 2px 0 #FFF, -2px -2px 0 #FFF, -2px 2px 0 #FFF, 2px -2px 0 #FFF, 0px 2px 0 #FFF, 0 -2px 0 #FFF, -2px 0 0 #FFF, 2px 0 0 #FFF, 7px 7px 5px rgba(0, 0, 0, 0.3);
}

.sliderHeadlineSmallText {
    font-size: 3.2rem;
}

.sliderHeadlineShudan {
    color: rgba(100, 183, 67, 1);
}

.sliderHeadlineOnline {
    color: rgba(250, 50, 70, 1);
}

@media only screen and (max-width:767px) {
    .sliderHeadlineHorizontal {
        font-size: 3.8rem;
    }

    .sliderHeadlineBigText {
        font-size: 4.8rem;
    }

    .sliderHeadlineSmallText {
        font-size: 2.6rem;
    }

}


.slideItems li .sliderIcon {
    height: 120px;
    margin: 30px 0;
    text-align: center;
    display: flex;
    justify-content: center;

}

.slideItems li .sliderHeadline {
    display: flex;
}

.slideItems li .sliderHeadline span {
    writing-mode: vertical-rl;
    margin: 0 auto;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 5.4rem;
    color: #FFF;
    text-align: center;
    letter-spacing: 0.2rem;
    text-shadow: 7px 7px 5px rgba(0, 0, 0, 0.75);
}

@media only screen and (max-width:920px) {
    .slideItems li .sliderTextArea {
        padding: 10px;
    }
    .sliderTextArea .fsS {
        font-size: 1.2rem;
        line-height: 1.3;
    }
    .sliderTextArea .btn {
        font-size: 1.3rem;
    }
}

@media only screen and (max-width:1165px) {
    .slideItems li .sliderIcon {
        height: 60px;
        margin: 15px 0;
    }
    .slideItems li .sliderHeadline span {
        font-size: 3.4rem;
    }
    .sliderHeadlineBigText {
        font-size: 3.4rem;
    }
    .sliderTextArea .fsLLL {
        font-size: 2.6rem;
    }
    .sliderTextArea .btn {
        font-size: 1.4rem;
    }
}

@media only screen and (max-width:920px) {
    .slideItems li .sliderIcon {
        height: 40px;
        margin: 10px 0;
    }
    .slideItems li .sliderHeadline span {
        font-size: 2.6rem;
    }
    .sliderHeadlineBigText {
        font-size: 2.4rem;
    }
    .sliderTextArea .fsLLL {
        font-size: 1.6rem;
    }
    .sliderTextArea .fsM {
        font-size: 1.2rem;
    }
    .sliderTextArea .btn {
        font-size: 1.2rem;
    }
}

@media only screen and (max-width:767px) {
    .sliderHeadlineBigText {
        font-size: 3.2rem;
    }

    .slideItems li {
        height: auto;
        margin: 0 10px;
    }

    .slideItems li a {
        display: block;
        width: 100%;
    }

    .slideItems li .sliderIcon {
        height: 60px;
        margin: 20px 0;
    }
    .slideItems li .sliderHeadline span {
        font-size: 3.4rem;
    }
    .copyright {
        font-size: 1.2rem;
    }
}

.topMainNav {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 80px;
}

.mainBanner {
    position: relative;
    z-index: 602;
    width: calc(100% / 2 - 40px);
    height: auto;
}

.bgBorderSlatingTop01 {
    position: absolute;
    z-index: 51;
    left: 0;
    height: 740px;
    width: 100%;
    display: block;
    background: repeating-linear-gradient(135deg, #f0f0f0, #f0f0f0 2px, transparent 2px, transparent 10px);
    clip-path: polygon(0 30%,
            /* 右上 */
            100% 0%,
            /* 右下 */
            100% 100%,
            /* 下辺の左から10vhpx */
            0 70%);
}

@media only screen and (max-width:767px) {
    .bgBorderSlatingTop01 {
        height: 840px;
    }
}

.bgBorderSlatingTop02 {
    position: absolute;
    z-index: 51;
    left: 0;
    height: 1400px;
    width: 100%;
    display: block;
    background: repeating-linear-gradient(135deg, #f0f0f0, #f0f0f0 2px, transparent 2px, transparent 10px);
    clip-path: polygon(0 30%,
            /* 右上 */
            100% 0%,
            /* 右下 */
            100% 100%,
            /* 下辺の左から10vhpx */
            0 70%);
}

@media only screen and (max-width:767px) {
    .bgBorderSlatingTop02 {
        height: 1400px;
        clip-path: polygon(0 5%,
                /* 右上 */
                100% 0%,
                /* 右下 */
                100% 100%,
                /* 下辺の左から10vhpx */
                0 90%);
    }
}



.mainBannerEn {
    position: absolute;
    z-index: 605;
    top: -20px;
    left: -25px;
    min-width: 300px;
    padding: 0 35px;
    background: #004b96;
    color: #FFF;
    font-size: 1.8rem;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
    clip-path: polygon(0 0,
            /* 左上 */
            calc(100% - 40px) 0,
            /* 上辺の右から50px手前 */
            100% 50px,
            /* 右辺の上から50px下 */
            100% 100%,
            /* 右下 */
            50px 100%,
            /* 下辺の左から50px */
            0 100%
            /* 左辺の下から50px上 */
        );
}

.mainBannerEnTri {
    content: '';
    position: absolute;
    z-index: 601;
    top: 0;
    left: -25px;
    display: block;
    width: 30px;
    height: 40px;
    background: #004b96;
    clip-path: polygon(0 0,
            /* 左上 */
            calc(100% - 40px) 0,
            /* 上辺の右から50px手前 */
            100% 50px,
            /* 右辺の上から50px下 */
            100% 100%,
            /* 右下 */
            50px 100%,
            /* 下辺の左から50px */
            0 calc(100% - 40px)
            /* 左辺の下から50px上 */
        );
}

.mainBanner a {
    position: relative;
    z-index: 604;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #FFF;
    width: 100%;
    height: 100%;
    padding: 30px 45px;
    clip-path: polygon(0 0,
            /* 左上 */
            calc(100% - 40px) 0,
            /* 上辺の右から50px手前 */
            100% 50px,
            /* 右辺の上から50px下 */
            100% 100%,
            /* 右下 */
            50px 100%,
            /* 下辺の左から50px */
            0 calc(100% - 40px)
            /* 左辺の下から50px上 */
        );
}

.mainBanner a img {
    max-height: 150px;
}

.mainBanner:before {
    content: '';
    display: block;
    position: absolute;
    z-index: 603;
    top: -15px;
    left: -15px;
    width: calc(100% + 30px);
    height: calc(100% + 30px);
    background: #CCC;
    clip-path: polygon(0 0,
            /* 左上 */
            calc(100% - 40px) 0,
            /* 上辺の右から50px手前 */
            100% 50px,
            /* 右辺の上から50px下 */
            100% 100%,
            /* 右下 */
            50px 100%,
            /* 下辺の左から50px */
            0 calc(100% - 40px)
            /* 左辺の下から50px上 */
        );
}

.mainBanner:after {
    content: '';
    display: block;
    position: absolute;
    z-index: 602;
    top: 20px;
    left: 15px;
    width: calc(100% + 35px);
    height: calc(100% + 15px);
    background: #AAA;
    clip-path: polygon(0 0,
            /* 左上 */
            calc(100% - 40px) 0,
            /* 上辺の右から50px手前 */
            100% 50px,
            /* 右辺の上から50px下 */
            100% 100%,
            /* 右下 */
            50px 100%,
            /* 下辺の左から50px */
            0 calc(100% - 40px)
            /* 左辺の下から50px上 */
        );
}

.mainBannerText {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 5.4rem;
}

@media only screen and (max-width:1165px) {
    .mainBanner {
        width: calc(100% / 2 - 10px);
    }
    .mainBanner a {
        width: calc(100% - 65px);
    }
    .mainBanner a img {
        max-height: 110px;
    }
    .mainBanner:before {
        left: -15px;
        width: calc(100% - 65px + 30px);
    }

    .mainBanner:after {
        left: 15px;
        width: calc(100% - 65px + 35px);
    }
    .mainBannerText {
        font-size: 4.2rem;
    }
}

@media only screen and (max-width:920px) {
    .mainBannerText {
        font-size: 3.2rem;
    }
    .mainBanner a img {
        max-height: 80px;
    }
    .mainBanner a {
        width: calc(100% - 30px);
    }
    .mainBanner:before {
        left: -15px;
        width: 100%;
    }

    .mainBanner:after {
        left: -5px;
        width: 100%;
    }


}


@media only screen and (max-width:767px) {
    .mainBanner {
        width: 100%;
        margin: 70px 0 0;
    }
    .mainBanner:after {
        left: -25px;
    }
    .mainBanner a {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        padding: 20px 10px 10px;
        text-align: center;
    }
    .mainBanner:before {
        width: 110%;
    }
    .mainBanner:after {
        width: 110%;
    }
    .mainBanner a img {
        max-height: 80px;
    }
    .mainBannerText {
        font-size: 3.8rem;
    }
}
.mainBannerShudan:after {
    background: rgba(100, 187, 63, 0.5);
}
.mainBannerShudan:before {
    background: #e0f1d9;
}
.mainBannerShudan .mainBannerText {
    color: #64bb3f;
}

.mainBannerKobetsu:after {
    background: rgba(67, 152, 206, 0.5);
}
.mainBannerKobetsu:before {
    background: #d9eaf5;
}
.mainBannerKobetsu .mainBannerText {
    color: rgba(67, 152, 206, 1);
}

.mainBannerOnline {
    width: 100%;
    max-width: 630px;
}


.mainBannerOnline:after {
    background: rgba(250, 50, 70, 0.5);
}
.mainBannerOnline:before {
    background: #fed6da;
}
.mainBannerOnline .mainBannerText {
    color: rgba(250, 50, 70, 1);
}

.bgThinSlanting {
    position: relative;
    background: #cceaf9;

}

.bgThinSlanting:before,
.bgThinSlanting:after {
    position: absolute;
    left: 0;
    z-index: 40;
    content: '';
    display: block;
    width: 100%;
    height: 30vh;
    background: #cceaf9;
}

.bgThinSlanting:before {
    top: -30vh;
    clip-path: polygon(
            /* 上辺の右 */
            0 100%,
            /* 右辺の上 */
            100% 100%,
            /* 右下 */
            100% 0
            /* 下辺の左 */
        );
}

.bgThinSlanting:after {
    top: auto;
    bottom: -30vh;
    clip-path: polygon(
            /* 上辺の右 */
            0 0,
            /* 右辺の上 */
            100% 100%,
            /* 右下 */
            100% 0
            /* 下辺の左 */
        );
}

.bgDarkSlanting {
    position: relative;
    z-index: 600;
    background: rgba(67, 152, 206, 0.7);

}

.bgDarkSlanting:before,
.bgDarkSlanting:after {
    position: absolute;
    left: 0;
    z-index: 600;
    content: '';
    display: block;
    width: 100%;
    height: 30vh;
    background: rgba(67, 152, 206, 0.7);
}

.bgDarkSlanting:before {
    top: -30vh;
    clip-path: polygon(
            /* 上辺の右 */
            0 100%,
            /* 右辺の上 */
            100% 100%,
            /* 右下 */
            100% 0
            /* 下辺の左 */
        );
}

.bgDarkSlanting:after {
    top: auto;
    bottom: -30vh;
    clip-path: polygon(
            /* 上辺の右 */
            0 0,
            /* 右辺の上 */
            100% 100%,
            /* 右下 */
            100% 0
            /* 下辺の左 */
        );
}


.catchcopy {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #0097e2;
    font-weight: 700;
    line-height: 1;
}

.catchcopy div {
    position: relative;
    background: #FFF;
    border: 1px solid #004b96;
    padding: 10px 20px 20px;
    margin: 0 10px 0 0;
    font-size: 9.4rem;
}

.catchcopy div:before,
.catchcopy div:after {
    position: absolute;
    content: '';
    display: block;
    background: #004b96;
    width: 20px;
    height: 20px;
}

@media only screen and (max-width:920px) {
    .catchcopy div {
        font-size: 7.4rem;
    }

}

@media only screen and (max-width:767px) {
    .catchcopy div {
        font-size: 4rem;
        padding: 5px 10px 10px;
        margin: 0 5px 0 0;
    }
    .catchcopy div:before,
    .catchcopy div:after {
        width: 10px;
        height: 10px;
    }
}

.catchcopy div:before {
    top: 0;
    right: 0;
    clip-path: polygon(
            /* 上辺の右 */
            0 0,
            /* 右辺の上 */
            100% 100%,
            /* 右下 */
            100% 0
            /* 下辺の左 */
        );
}

.catchcopy div:after {
    bottom: 0;
    left: 0;
    clip-path: polygon(
            /* 上辺の右 */
            0 0,
            /* 右辺の上 */
            /* 右下 */
            100% 100%,
            /* 下辺の左 */
            0 100%);
}

.catchcopy div:last-of-type {
    margin: 0;
}

.catchcopySub {
    position: relative;
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #0097e2;
    font-size: 6rem;
    font-weight: 700;
    text-align: center;
}

.catchcopySub p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #0097e2;
    font-size: 6rem;
    font-weight: 700;
    position: relative;
    z-index: 42;
}

.catchcopySub span {
    position: absolute;
    z-index: 41;
    color: #FFF;
    top: 15px;
    left: 10px;
    right: 0;
    bottom: 0;
    margin: auto;
}

@media only screen and (max-width:767px) {
    .catchcopySub p {
        font-size: 3.6rem;
    }
    .catchcopySub span {
        top: 10px;
        left: 5px;

        font-size: 3.6rem;
    }
}

.catchcopySmall {
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 2.6;
}

.newsAreaWrap {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    width: 100%;
}

.newsHeadline {
    position: relative;
    width: 25%;
    font-size: 3.0rem;
    font-weight: 700;
    text-align: center;
}

.newsHeadline:before {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    content: '';
    display: block;
    width: 20px;
    height: 4px;
    margin: 0 auto;
    background: #004b96;
}

.newsHeadline span {
    display: block;
    padding: 20px 0 0;
    font-weight: 400;
    color: #004b96;
}

.newsHeadlineCenter {
    width: 100%;
}


.newsArea {
    width: 75%;
}

.newsAreaFull {
    width: 100%;
}

.newsArea article a {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
    border-top: 1px solid #cccccc;
    padding: 25px 50px 25px 25px;
    background: #FFF;
}

.newsArea article:last-of-type {
    border-bottom: 1px solid #cccccc;

}
.newsArea article a.linkOther {
    position: relative;
}

.newsArea article a.linkOther:after {
    position: absolute;
    right: 20px;
    top: 40%;
}

.newsArea article a span {
    width: 20%;
}
@media only screen and (max-width:1260px) {
    .newsHeadline,
    .newsArea {
        width: 100%;
        margin: 0 0 30px;
    }

    .newsArea article a span {
        width: 100%;
    }
}

.mapSection {
    position: relative;
    z-index: 600;
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 24px 64px;
    background: #fff;
    box-sizing: border-box;
}

/* ── Section Header ── */
.mapHeader {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.mapHeaderIcon {
    background: #0068B7;
    color: #fff;
    font-size: 6.5px;
    font-weight: 900;
    line-height: 1.25;
    padding: 5px 6px;
    border-radius: 3px;
    letter-spacing: 0.6px;
    flex-shrink: 0;
    margin-top: 4px;
    text-align: center;
}

.mapTitle {
    font-size: 26px;
    font-weight: 900;
    color: #222;
    letter-spacing: 0.04em;
    line-height: 1.2;
    /* テーマ h2 リセット */
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    text-align: left;
}

.mapSubtitle {
    font-size: 10px;
    color: #0068B7;
    font-weight: 700;
    letter-spacing: 0.14em;
}

.mapLead {
    font-size: 15px;
    color: #444;
    margin: 0 0 36px;
    padding: 0;
    font-weight: 500;
    line-height: 1.8;
}

/* ── Map Wrap ── */
.mapWrap {
    position: relative;
    width: 100%;
    max-width: 1100px;
    aspect-ratio: 960 / 520;
    margin: 0 auto;
    box-sizing: border-box;
    overflow: visible;
}


/* ── Block（クリッカブル地域ブロック） ── */
.mapSection .mapBlock {
    position: absolute;
    border-radius: 4px;
    cursor: pointer;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    text-decoration: none;
    display: block;
    box-sizing: border-box;
    /* テーマ a タグリセット */
    border: none;
    outline: none;
    color: inherit;
    padding: 0;
}

.mapSection .mapBlock:hover {
    transform: translateY(-3px) scale(1.015);
    box-shadow: 0 10px 28px rgba(0, 104, 183, 0.22);
    z-index: 605;
    text-decoration: none;
}

.mapSection .mapBlock:hover .mapBlockInner {
    background: rgba(255, 255, 255, 0.12);
}

.mapBlockInner {
    position: absolute;
    inset: 0;
    border-radius: 4px;
    transition: background 0.22s ease;
    pointer-events: none;
}

/* ── Colors ── */
.mapColorDark {
    background: #0068B7 !important;
}
.mapColorMid {
    background: #36A9E0 !important;
}
.mapColorLight {
    background: #7ECEF0 !important;
}
.mapColorPale {
    background: #B8E4F8 !important;
}

.mapColorGray {
    background: #CCC !important;
}

/* ── Labels ── */
.mapLabel {
    position: absolute;
    pointer-events: none;
    z-index: 603;
}

.mapLabelName {
    font-size: clamp(12px, 1.7vw, 17px);
    font-weight: 900;
    color: #0068B7;
    white-space: nowrap;
    line-height: 1.3;
    letter-spacing: 0.03em;
    text-decoration: none;
    background: none;
    border: none;
}

.mapLabelPref {
    font-size: clamp(8px, 1.1vw, 11.5px);
    color: #555;
    font-weight: 500;
    line-height: 1.55;
    white-space: nowrap;
}

/* 北海道 */
.mapBlockHokkaido {
    left: 65%;
    top: 1%;
    width: 25%;
    height: 22%;
}
.mapLabelHokkaido {
    right: 37%;
    top: 17%;
    text-align: right;
}

/* 東北 */
.mapBlockTohoku {
    left: 65%;
    top: 25%;
    width: 15%;
    height: 25%;
}
.mapLabelTohoku {
    left: 82%;
    top: 26%;
    text-align: left;
}

/* 関東 */
.mapBlockKanto {
    left: 65%;
    top: 52%;
    width: 15%;
    height: 26%;
}
.mapLabelKanto {
    left: 82%;
    top: 49%;
    text-align: left;
}

/* 京大（関西） 3ブロック構成 */
.mapBlockKansai1 {
    left: 27%;
    top: 44%;
    width: 36%;
    height: 17%;
}
.mapLabelKansai {
    left: 27%;
    top: 35%;
    text-align: left;
}
.mapBlockMeidai {
    left: 50%;
    top: 63%;
    width: 13%;
    height: 15%;
}
.mapBlockhikoku {
    left: 27%;
    top: 63%;
    width: 21%;
    height: 15%;
}

/* 名大（ラベルのみ） */
.mapLabelNagoya {
    left: 53%;
    top: 80%;
    text-align: center;
}
.mapLabelNagoya a {
    text-decoration: none;
    display: block;
    color: inherit;
    background: none;
    border: none;
    padding: 0;
}
.mapLabelNagoya .mapLabelName {
    cursor: pointer;
    pointer-events: auto;
}
.mapLabelNagoya .mapLabelName:hover {
    text-decoration: underline;
}

/* 九州 */
.mapBlockKyushu {
    left: 12%;
    top: 44%;
    width: 13%;
    height: 34%;
}
.mapLabelKyushu {
    right: 90%;
    top: 67%;
    text-align: right;
}

/* ─────────────── RESPONSIVE ─────────────── */

@media (max-width: 760px) {
    .mapWrap {
        max-width: 100%;
    }

    /* ラベルをブロック内に移動し白文字化 */
    .mapLabelHokkaido {
        right: 10%;
        top: -15%;
    }

    .mapLabelTohoku {
        left: 78%;
        top: 26%;
    }

    .mapLabelKanto {
        left: 75%;
        top: 55%;
    }

    .mapLabelKansai {
        top: 30%;
    }

    .mapLabelKyushu {
        right: auto;
        left: 3%;
        top: 68%;
        text-align: left;
    }
}

@media (max-width: 480px) {
    .mapSection {
        padding: 32px 12px 48px;
    }
    .mapTitle {
        font-size: 20px;
    }
    .mapLead {
        font-size: 13px;
        margin-bottom: 24px;
    }
}

.flowArea {
    position: relative;
    z-index: 51;
    margin: 240px 0 100px;
}

@media only screen and (max-width:767px) {
    .flowArea {
        margin: 40px 0 0;
    }
}

.flowContentWrap {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
}

.flowContent {
    position: relative;
    color: #FFF;
    font-weight: 700;
    text-align: center;
}

.flowContentBg {
    width: 250px;
    height: 325px;
    padding: 15px;
    background: linear-gradient(to right, #5eba87, #4398ce);
    clip-path: polygon(
            /* 上辺の右 */
            0 0,
            /* 右辺の上 */
            90% 0,
            100% 50%,
            90% 100%,
            /* 右下 */
            0 100%
            /* 下辺の左 */
        );
}

.flowContent:nth-of-type(1) .flowContentBg {
    background: linear-gradient(to right, #5eba87, #54ac87);
}
.flowContent:nth-of-type(2) .flowContentBg {
    background: linear-gradient(to right, #54ac87, #4a9e86);
}
.flowContent:nth-of-type(3) .flowContentBg {
    background: linear-gradient(to right, #4a9e86, #4498c7);
}
.flowContent:nth-of-type(4) .flowContentBg {
    background: linear-gradient(to right, #4398ce, #54ac87);
}
.flowContentBg p {
    font-weight: 700;

}

.flowContent:last-of-type .flowContentBg {
    clip-path: polygon(
            /* 上辺の右 */
            0 0,
            /* 右辺の上 */
            100% 0,
            100% 100%,
            /* 右下 */
            0 100%
            /* 下辺の左 */
        );
}

.flowContent:nth-of-type(1) {
    margin: 120px 35px 0 0;
}
.flowContent:nth-of-type(2) {
    margin: 80px 35px 0 0;
}
.flowContent:nth-of-type(3) {
    margin: 40px 35px 0 0;
}

.flowContentHeadline {
    font-size: 3.6rem;
    color: #FFF;
}

.flowContentHeadline span {
    font-size: 6.8rem;
}

.flowContentIcon {
    position: absolute;
    bottom: -100px;
    left: -20px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 254px;
    height: 244px;
}

.flowContentIcon:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 52;
    width: 250px;
    height: 240px;
    background: #FFF;
    clip-path: polygon(
            /* 上辺の右 */
            0 0,
            /* 右辺の上 */
            100% 0,
            90% 100%,
            /* 右下 */
            0 100%
            /* 下辺の左 */
        );
}

.flowContentIcon:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -2px;
    z-index: 51;
    width: 254px;
    height: 244px;
    background: #0f7ebc;
    clip-path: polygon(
            /* 上辺の右 */
            0 0,
            /* 右辺の上 */
            100% 0,
            90% 100%,
            /* 右下 */
            0 100%
            /* 下辺の左 */
        );
}

.flowContent:last-of-type .flowContentIcon:before,
.flowContent:last-of-type .flowContentIcon:after {
    clip-path: polygon(
            /* 上辺の右 */
            0 0,
            /* 右辺の上 */
            100% 0,
            100% 100%,
            /* 右下 */
            0 100%
            /* 下辺の左 */
        );
}


.flowContentIcon img {
    max-height: 190px;
}

@media only screen and (max-width:1165px) {
    .flowContentBg {
        width: 220px;
    }
}

@media only screen and (max-width:920px) {
    .flowContentBg {
        width: 180px;
    }
    .flowContentIcon {
        width: 180px;
    }
    .flowContentIcon:before,
    .flowContentIcon:after {
        width: 180px;
    }
    .flowContentIcon img {
        max-height: 120px;
    }

    .flowContent:nth-of-type(1),
    .flowContent:nth-of-type(2),
    .flowContent:nth-of-type(3) {
        margin-right: 25px;
    }
}


@media only screen and (max-width:780px) {
    .flowContentBg {
        width: 150px;
    }
    .flowContentIcon {
        width: 150px;
    }
    .flowContentIcon:before,
    .flowContentIcon:after {
        width: 150px;
    }
    .flowContentIcon img {
        max-height: 120px;
    }
    .flowContent:nth-of-type(1),
    .flowContent:nth-of-type(2),
    .flowContent:nth-of-type(3) {
        margin-right: 20px;
    }
    .flowContentHeadline {
        font-size: 2.6rem;
    }
    .flowContentBg p {
        font-size: 1.4rem;
        line-height: 1.4;
    }
}

@media only screen and (max-width:767px) {
    .flowContent {
        width: 48%;
        height: 500px;
    }
    .flowContentBg {
        width: 100%;
    }

    .flowContentIcon {
        width: 90%;
        bottom: 120px;
        left: -5%;
        display: flex;
        align-items: end;
    }
    .flowContentIcon img {
        max-height: 65%;
    }
    .flowContentIcon:before {
        width: 160px;
        height: 180px;
    }
    .flowContentIcon:after {
        width: 164px;
        height: 184px;
    }
    .flowContent:nth-of-type(1),
    .flowContent:nth-of-type(2),
    .flowContent:nth-of-type(3) {
        margin: 0 2% -60px 0;
    }
}

.topPickup li {
    display: flex;
    justify-content: center;
    width: calc(100% / 5 - 10px);
    padding: 5px 10px;
    border-right: 2px solid #004b96;
}

.topPickup li:last-of-type {
    border-right: none;
}

@media only screen and (max-width:767px) {
    .topPickup {
        width: 95%;
    }
    .topPickup li {
        width: auto;
        max-width: 49%;
        padding: 5px 0;
        border-right: none;
    }
}

.topGroup li {}
.topGroup li a {
    display: inline;
    padding: 10px 10px;
    background: #cceaf9;
    color: #004b96;
}

.topGroup li a span {
    font-size: 1.2rem;
}


@media only screen and (max-width:7920px) {
    .topGroup li a {
        display: block;
    }
}

@media only screen and (max-width:767px) {
    .topGroup {
        width: 80%;
    }
    .topGroup li {
        display: block;
        width: 100%;
        margin: 0 0 10px;
        text-align: center;
    }
    .topGroup li a {
        display: block;
        width: 100%;
    }
}

.topMessage {
    gap: 100;
}

.topMessageArea {
    position: relative;
    z-index: 600;
    width: 48%;
    background: #FFF;
    height: auto;
    padding: 30px 45px;
    clip-path: polygon(0 0,
            /* 左上 */
            calc(100% - 40px) 0,
            /* 上辺の右から50px手前 */
            100% 50px,
            /* 右辺の上から50px下 */
            100% 100%,
            /* 右下 */
            50px 100%,
            /* 下辺の左から50px */
            0 calc(100% - 40px)
            /* 左辺の下から50px上 */
        );
}

.topMessageHeadline {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    font-weight: 700;
    color: #0096e1;
    font-family: "Zen Kaku Gothic New", sans-serif;
}

.topMessageArea ul li {
    position: relative;
    width: 100%;
    padding: 20px 0 14px 40px;
    border-top: 3px dashed #cccccc;
}
.topMessageArea ul li:last-of-type {
    border-bottom: 3px dashed #cccccc;
}


.topMessageArea ul li a {
    display: block;
    width: 100%;
    padding: 0 60px 0 0;
    color: #004b96;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
}

.topMessageAreaParent ul li a {
    font-size: 1.8rem;
}

.topMessageArea ul li a img {
    position: absolute;
    top: 0;
    right: 20px;
    bottom: 0;
    width: 33px;
    height: 28px;
    margin: auto 0;
}
@media only screen and (max-width:920px) {
    .topMessageHeadline {
        font-size: 2.2rem;
    }
    .topMessageArea ul li {
        padding: 15px 0 15px 0;
    }
    .topMessageArea ul li a,
    .topMessageAreaParent ul li a {
        font-size: 1.5rem;
    }
    .topMessageArea ul li a img {
        right: 0;
    }
}
@media only screen and (max-width:767px) {
    .topMessageArea {
        margin: 0 0 30px;
    }
    .topMessageArea {
        width: 100%;
        padding: 25px;
    }
    .topMessageArea ul li {
        padding: 20px 0 14px 20px;
    }
    .topMessageArea ul li a {
        padding: 0 50px 0 0;
    }
}

/* ========================================
   Hero Section
======================================== */
.hero {
    position: relative;
    z-index: 600;
    width: 100%;
    /*
    height: 700px;
    */
    height: 380px;
    margin: 0 auto;
    overflow: hidden;
}

.heroKidsclub {
    height: 700px;
}

.heroNoImage {
    width: 100%;
    min-height: 500px;
    height: auto;
    overflow: visible;
}

@media (max-width: 768px) {
    .hero {
        /*
        height: 400px;
        */
        height: 200px;
    }
    .heroKidsclub {
        height: 400px;
    }
    .heroNoImage {
        min-height: 800px;
    }
}
@media (max-width: 480px) {
    .hero {
        /*
        height: 380px;
        */
        height: 190px;
    }
    .heroKidsclub {
        height: 380px;
    }
}

/* 背景写真 */
.heroBackground {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 600;
}

.heroBgImage {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    clip-path: polygon(0 0,
            /* 左上 */
            100% 0,
            /* 右上 */
            100% 100%,
            /* 右下 */
            0 75%
            /* 左下（少し上） */
        );
}

/* 透過グリーンオーバーレイ（斜め） */
.heroOverlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 600;
    background: rgba(0, 90, 163, 0.7);
    /*
    clip-path: polygon(
            0 70%,
            100% 50%,
            100% 100%,
            0 75%);
    */
    clip-path: polygon(
            /* 左上 */
            0 40%,
            /* 右上 */
            100% 0%,
            /* 右下 */
            100% 100%,
            /* 左下 */
            0 70%);
}

.heroOverlayShudan {
    background: rgba(100, 187, 63, 0.7);
}
.heroOverlayKobetsu {
    background: rgba(67, 152, 206, 0.7);
}
.heroOverlayOnline {
    background: rgba(231, 0, 18, 0.7);
}

/* メインコピー */
.heroMainCopy {
    position: absolute;
    top: 40px;
    right: 80px;
    z-index: 600;
    text-align: left;
}
@media (max-width: 768px) {
    .heroMainCopy {
        top: 20px;
        right: 20px;
    }
}

.heroCopyLine {
    font-size: 48px;
    font-weight: 900;
    color: var(--colorRed);
    line-height: 1.3;
    color: #d73546;
    text-shadow:
        2px 2px 10px #FFF,
        -2px -2px 10px #FFF,
        2px -2px 10px #FFF,
        -2px 2px 10px #FFF,
        0 2px 10px #FFF,
        0 -2px 10px #FFF,
        2px 0 10px #FFF,
        -2px 0 10px #FFF;
    letter-spacing: 0.05em;
}
@media (max-width: 768px) {
    .heroCopyLine {
        font-size: 32px;
    }
}
@media (max-width: 480px) {
    .heroCopyLine {
        font-size: 30px;
    }
}

/* ページタイトルセクション（共通） */
.heroPageSection {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 600;
}
@media (max-width: 768px) {
    .heroPageSection {
        bottom: -20px;
        width: 95%;
        right: 0;
        margin: auto;
    }
}

.pageBox {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pageBoxIcon {
    width: 80px;
    flex-shrink: 0;
    padding: 0 0 40px 0;
}
@media (max-width: 768px) {
    .pageBox {
        justify-content: end;
    }
    .pageBoxIcon {
        width: 60px;
        padding: 0 0 40px 0;
        padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding padding
    }
}

.pageBoxIconImage {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pageBoxText {
    text-align: left;
}

.pageBoxEnglish {
    font-size: 14px;
    font-weight: 500;
    color: var(--colorGrayDark);
    letter-spacing: 0.1em;
    margin-bottom: 2px;
}
@media (max-width: 480px) {
    .pageBoxEnglish {
        font-size: 11px;
    }
}

.pageBoxJapanese {
    font-size: 32px;
    font-weight: 900;
    background: linear-gradient(135deg,
            #d4145a 0%,
            #e02020 50%,
            #f5a623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.08em;
}
@media (max-width: 768px) {
    .pageBoxJapanese {
        font-size: 24px;
    }
}
@media (max-width: 480px) {
    .pageBoxJapanese {
        font-size: 18px;
    }
}


/*本部一覧*/
.classroomItemWrap {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.classroomItem {
    width: 48%;
}

@media (max-width: 768px) {
    .classroomItem {
        width: 100%;
    }
}

.placesTableWrap {
    overflow-x: scroll;
}


.placesTable {
    max-width: 1400px;
    min-width: 900px;
    margin: 0 auto;
    width: auto;
    background: #FFF;
}

@media (max-width: 768px) {
    .placesTable {
        margin: 0 30px;
    }
}

.placesTable tr th {
    background: #4398ce;
}

.placesTable tr th:nth-of-type(2n) {
    background: #0f7ebc;
}

.postPage p {
    margin: 30px 0 0;
}

/*本部会場単体ページ*/
.placeBox {
    position: relative;
    z-index: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.placeContent {
    position: relative;
    z-index: 601;
}

.placeSliderItem {
    display: flex !important;
    justify-content: center;
}

/*固定ページ*/
/*タブレットでw980クラスのついた箇所が崩れるので修正（html側でのリファクタリング推奨）*/
@media (max-width: 920px) {
    .staticPage .w980,
    .staticPage .top-inner,
    .staticPage .pu_blc.colm1>dl {
        width: 95% !important;
        margin: 0 auto;
    }
}

/*キッズクラブ*/
.kidsClubHidden {
    height: 0;
    opacity: 0;
}

.kidsClubCopy {
    position: absolute;
    z-index: 601;
    left: 0;
    bottom: 20%;
    padding: 30px;
    font-size: 5.5rem;
    font-weight: 700;
    color: #d8600e;
    background: #FFF;
}

@media (max-width: 920px) {
    .kidsClubCopy {
        position: relative;
        left: 0;
        bottom: 0%;
        padding: 30px;
        font-size: 3.4rem;
    }
}

.headlineKidsClubBold {
    font-size: 4rem;
    color: #d8600e;
    font-weight: 700;
}

.kidsclubDekiruWrap {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
}

.kidsclubDekiru {
    margin: 0 30px 0 0;
}
.kidsclubDekiruScroll {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    animation: marquee 100s linear infinite;
}
@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}
.kidsclubDekiru {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.kidsclubDekiru dt {
    font-size: 3.0rem;
    font-weight: bold;
    color: #FFF;
    background: #d8600e;
    padding: 10px 25px;
    margin: 0 15px 0 0;
}

.kidsclubLink {
    color: #FFF;
    background: #d8600e;
    padding: 15px;
    margin: 0 0 30px;
    width: 49%;
}

@media (max-width: 920px) {
    .kidsclubLink {
        width: 100%;
        margin: 30px 0 0;
    }
}

.kidsclubLinkIcon {
    font-size: 2.4rem;
    color: #d8600e;
    background: #FFF;
    padding: 12px 30px;
    margin: 0 20px 0 0;
}

.kidsclubLinkMainText {
    font-size: 4.2rem;
    font-weight: 700;
    text-align: center;
    margin: 20px 0;
}

.parentSliderSliderItem {
    border: 1px solid #d8600e;
    background: #FFF;
    padding: 20px;
}
.parentSliderSliderItemChild {
    border-color: #0097E0;
}
.parentSliderSliderItemSougou {
    border-color: #E8447E;
}
.parentSliderSliderItemHeader {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 15px 0;
}
/* スライダー外側のラッパーに適用 */
.parentSlider {
    /* centerModeの見切れを表示させる */
    overflow: hidden;
}

/* slickが生成する.slick-listのoverflowを上書き */
.parentSlider .slick-list {
    overflow: visible;
}

.parentSlider .slick-slide {
    margin: 0 12px;
    /* 左右の間隔 */
}

/* centerPaddingとのズレを補正 */
.parentSlider .slick-list {
    margin: 0 -12px;
}

/* ベース */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    background-color: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background-color: #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* 矢印（三角形をCSSで描画） */
.slider-arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
}

.slider-arrow--prev {
    left: 10px;
}

.slider-arrow--prev span {
    transform: rotate(-135deg) translate(-2px, 2px);
}

.slider-arrow--next {
    right: 10px;
}

.slider-arrow--next span {
    transform: rotate(45deg) translate(-2px, 2px);
}

/* 非活性時（infinite: false の場合に出現） */
.slider-arrow.slick-disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* SP */
@media (max-width: 768px) {
    .slider-arrow {
        width: 36px;
        height: 36px;
    }

    .slider-arrow span {
        width: 8px;
        height: 8px;
    }

    .slider-arrow--prev {
        left: 4px;
    }

    .slider-arrow--next {
        right: 4px;
    }
}

.kidsclubFlow {
    background: #92b500;
    color: #FFF;
    font-size: 2.4rem;
    text-align: center;
    width: 51%;
    margin: 0 auto;
    padding: 25px 10px;
}

.kidsclubFlowArrow {
    width: 0;
    height: 0;
    border-top: 16px solid #92b500;
    border-right: 17px solid transparent;
    border-left: 17px solid transparent;
    text-align: center;
    margin: 10px auto;
}

@media (max-width: 768px) {
    .kidsclubFlow {
        width: 100%;
    }
}

.kidsclubNews a {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 15px 0;
    border-bottom: 1px solid #d8600e;
}
.kidsclubNews a span {
    margin: 0 30px 0;
}
.kidsclubNews a:after {
    content: url(./assets/images/kidsclub/kidsclubPdfIcon.png);
    padding: 5px 0 0 20px;
}

/*トグルメニュー*/
.kidsclubCourse {
    position: relative;
    font-size: 2.9rem;
    font-weight: 700;
    padding: 20px 80px 20px 40px;
    background: #f9fff8;
    border: 3px solid #92b500;
}

.kidsclubCourseHeadline {
    cursor: pointer;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}


.kidsclubCourse:after .active {
    transform: rotate(180deg);
}

.kidsclubCourseBg {
    position: relative;
    background: #92b500;
    color: #FFF;
    font-size: 2.4rem;
    font-weight: 700;
    padding: 10px 80px 10px 40px;
    margin: 0 0 0 40px;
}

.kidsclubCourseBg:after {
    content: url(./assets/images/toggleIconGreen.svg);
    position: absolute;
    top: 30%;
    right: 20px;
    transition: 0.3s ease-in-out;
}

.kidsclubCourseText {
    color: #92b500;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 0 40px;
}

.kidsclubCourse:nth-of-type(2n) {
    border-color: #006daa;
    border-top: none;
}

.kidsclubCourse:nth-of-type(n+2) {
    border-top: none;
}

.kidsclubCourse:nth-of-type(2n) .kidsclubCourseBg:after {
    content: url(./assets/images/toggleIcon.svg);
}

.kidsclubCourse:nth-of-type(2n) .kidsclubCourseBg {
    background: #006daa;
}

.kidsclubCourse:nth-of-type(2n) .kidsclubCourseText {
    color: #006daa;
}

.kidsclubScheduleHeader {
    color: #92b500;
    font-size: 2.1rem;
    font-weight: 700;
}

.kidsclubCourse:nth-of-type(2n) .kidsclubScheduleHeader {
    color: #006daa;
}

.kidsclubScheduleHeaderUnderline {
    border-bottom: 2px solid #92b500;
    font-size: 2.4rem;
    font-weight: 700;
    padding: 0 0 15px;
    margin: 0 0 15px;
}

.kidsclubCourse:nth-of-type(2n) .kidsclubScheduleHeaderUnderline {
    border-color: #006daa;
}

.kidsclubScheduleWrap {
    width: 48%;
}

.kidsclubSchedule {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 2px solid #92b500;
    padding: 15px 0;
}

.kidsclubCourse:nth-of-type(2n) .kidsclubSchedule {
    border-color: #006daa;
}

.kidsclubSchedule h5 {
    font-size: 2.4rem;
    width: 10%;
}

.kidsclubSchedule dl {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 90%;
}


.kidsclubSchedule dl dt {
    width: 20%;
    font-size: 1.3rem;
}

.kidsclubSchedule dl dd {
    width: 39%;
    padding: 0 0 0 1%;
    font-size: 1.3rem;
}

@media (max-width: 768px) {
    .kidsclubCourseBg {
        width: 100%;
        margin: 20px 0 0;
    }

    .kidsclubCourse {
        padding: 20px 40px;
    }

    .kidsclubCourseText {
        width: 100%;
        margin: 20px 0 0;
    }

    .kidsclubScheduleWrap,
    .kidsclubSchedule h5,
    .kidsclubSchedule dl,
    .kidsclubSchedule dl dt,
    .kidsclubSchedule dl dd {
        width: 100%;
    }
    .kidsclubSchedule dl dt {
        margin: 10px 0;
        padding: 10px 0;
        border-top: 1px solid #92b500;
    }
    .kidsclubCourse:nth-of-type(2n) .kidsclubSchedule dl dt {
        border-color: #006daa;

    }
}