@charset "UTF-8";
/* :::::::::::::::::::: common :::::::::::::::::::: */
html {
    font-family: 'Zen Kaku Gothic New', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", sans-serif;
    font-size: 62.5%;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0;
    line-height: 1;
    color: #33414b;
    background: #f3f2ed;
}

* {
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: "palt";
    outline: none;
}

*:focus-visible {
    outline: none;
}


/* :::::::::: html tag :::::::::: */
body {
    overflow-x: hidden;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
    text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    width: 100%;
}
@media screen and (max-width: 750px) {
    body.fixed {
        position: fixed;
        width: 100%;
        height: 100%;
    }
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

button {
    display: block;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    border-radius: 0;
    margin: 0;
    font-family: inherit;
    font-weight: inherit;
    font-size: inherit;
    color: inherit;
}

button:focus {
    outline: none
}

tbody {
    display: block;
    width: 100%;
}

th,
td {
    display: block;
    text-align: left;
}

input,
textarea {
    box-sizing: border-box;
    font-family: inherit;
    width: 100%;
    padding: 0;
    border: unset;
    border-width: 0;
    background-color: transparent;
}

input[type="text" i] {
    padding: 0;
}

input:focus-visible,
textarea:focus-visible {
    outline: unset;
}

input:-webkit-autofill,
textarea:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px #F2F2F2 inset;
    -webkit-text-fill-color: #FFF;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    border-width: 0px;
}


/* :::::::::: common class :::::::::: */

.en {
    font-family: "Cabin", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "メイリオ", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.display_ib {
    display: inline-block;
}

.textLink {
    text-decoration: underline;
    opacity: 1;
    transition: opacity .3s;
}

@media (hover: hover) {
    .textLink:hover {
        opacity: .5;
    }
}

.hoverOpacity {
    opacity: 1;
    transition: opacity .3s;
}
@media (hover: hover) {
    .hoverOpacity:hover {
        opacity: .5;
    }
}



/* ::::: toggle between display_block and display_none ::::: */
.pc {
    display: block !important;
}

.tab-sp {
    display: none !important;
}

@media screen and (max-width: 1000px) {
    .pc {
        display: none !important;
    }

    .tab-sp {
        display: block !important;
    }
}

.pc-tab {
    display: block !important;
}

.sp {
    display: none !important;
}

@media screen and (max-width: 750px) {
    .pc-tab {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}

.pc-sp {
    display: block !important;
}

.tab {
    display: none !important;
}

@media screen and (max-width: 1050px) {
    .pc-sp {
        display: none !important;
    }

    .tab {
        display: block !important;
    }
}

@media screen and (max-width: 750px) {
    .pc-sp {
        display: block !important;
    }

    .tab {
        display: none !important;
    }
}


/* ::::: wrapper ::::: */
.wrapper {
    width: 80%;
    max-width: 130rem;
    margin: 0 auto;
}

/* ----- wrapper responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .wrapper {
        width: 83%;
    }
}

/* ----- wrapper responsive (750) ----- */
@media screen and (max-width: 750px) {
    .wrapper {}
}


/* ::::: inview  ::::: */
/* transformタイプ */
.inview {
    transform: translate(0, 5px);
    opacity: 0;
    transition: opacity 1.4s, transform 1.4s;
}

.inview.show {
    transform: translate(0, 0);
    opacity: 1.0;
}

/* 画像（ズームイン）タイプ */
.inview.inviewHomeColumn div.bgi img.img {
    transform: scale(1.07);
    transition: transform 1.4s;
    opacity: 1;
}

.inview.inviewHomeColumn.show div.bgi img.img {
    opacity: 1;
    transform: scale(1.01);
}

/* marginタイプ */
.inview.marginType {
    margin-top: 0.8rem;
    transform: unset;
    transition: margin 1.2s 0.3s, opacity 1.2s 0.3s;
}

.inview.marginType.show {
    margin-top: 0;
    transform: scale(1);
}

.inview.inviewOpacity {
    transform: translate(0);
    opacity: 0;
    transition: opacity 1.2s;
}

.inview.inviewOpacity.show {
    transform: translate(0);
    opacity: 1;
    transition: opacity 1.2s;
}
/* 特定の箇所 */
.inview.inviewOpacity.homeAbout__secImg {
    transform: var(--homeAbout__secImgForInview_transformValue);
    opacity: 0;
    transition: opacity 1.2s;
}
.inview.inviewOpacity.show.homeAbout__secImg {
    transform: var(--homeAbout__secImgForInview_transformValue);
    opacity: 1;
    transition: opacity 1.2s;
}


/* :::::::::: common モジュール :::::::::: */

/* ::::: accordion（ベースのみ） ::::: */
.accordion-button {
    cursor: pointer;
}

.accordion-content {
    display: none;
}


/* :::::::::: common モジュール ここまで :::::::::: */


/* :::::::::: common コンポーネント  :::::::::: */

/* ::::: logo ::::: */
.logo {
    position: fixed;
    top: 4rem;
    left: 2.3%;
    z-index: 100;
    width: 16rem;
    transition: opacity .3s;
}
a.logo {
    opacity: 1;
}
a.logo:hover {
    opacity: .6;
}
body.-scroll .logo {
    top: 1rem;
    width: 10rem;
}
/* ----- responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .logo {
        top: 3rem;
        left: 2.7%;
        width: 12rem;
    }
}
/* ----- responsive (750) ----- */
@media screen and (max-width: 750px) {
    .logo {
        top: 1.4rem;
        left: 2.7%;
        width: 25.3rem;
        transition: opacity .3s;
    }
    body.-scroll .logo {
        top: 1.4rem;
        width: 25.3rem;
    }
}
/* ::::: logo ここまで ::::: */


/* ::::: bookLink ::::: */
.bookLink {
    position: fixed;
    bottom: 20vh;
    right: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 6.8rem;
    height: 20rem;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    /* box-shadow: 0 0 2px rgba(255, 255,255,1); */
    color: #FFF;
    background-color: #3e6f9e;
    opacity: 1;
    transition: opacity .2s;
}
.bookLink:hover {
    opacity: 0.85;
}
.bookLink__text {
    position: relative;
    width: 1em;
    padding-top: 4rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 0.025em;
}
.bookLink__text::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX( -50%);
    display: block;
    width: 2.2rem;
    height: 1.7rem;
    background-image: url(/img/common/icon-book.png);
    background-size: 22px 17px;
}

/* ----- bookLink responsive (750) ----- */
@media screen and (max-width: 750px) {
    .bookLink {
        bottom: 0;
        right: unset;
        left: 0;
        width: 100%;
        height: 5.6rem;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    .bookLink__text {
        width: auto;
        padding-top: 0;
        padding-bottom: 0.3rem;
        padding-left: 3.5rem;
        font-size: 1.7rem;
        line-height: 1.2;
    }
    .bookLink__text::before {
        top: 2px;
        left: 0;
        transform: unset;
    }
}


/* :::::::::: header :::::::::: */
.header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 11rem;
    background-color: #f3f2ed;
    transition: all .3s;
}
.header.-scroll {
    height: 8.5rem;
}
.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 11;
    display: inline-block;
    width: 100%;
    height: 4px;
    background-image: url(/img/common/dotted-line-unit.png);
    background-size: 8px 4px;
}
.header__list {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 3%;
    width: auto;
    height: 100%;
    margin: 0 5% 0 0;
}
.header__link {
    position: relative;
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.025em;
    color: #336799;
}
.header__link::before {
    content: '';
    position: absolute;
    bottom: -0.3rem;
    transition: transform .3s;
    transform-origin: right;
    display: block;
    width: 100%;
    padding-top: 2px;
    background-color: #336799;
    transform: scale(0, 1);
}
.header__link:hover::before,
.header__link.-current::before {
    transform: scale(1, 1);
    transform-origin: left;
}
/* ---------- header responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .header {
        height: 12rem;
    }
}
/* ---------- header responsive (750) ---------- */
@media screen and (max-width: 750px) {
    .header {
        height: 8.5rem;
    }
    .header__list {
        display: none;
    }
}


/* :::::::::: footer :::::::::: */
.footer {}

.footer__upper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6%;
    padding-top: 13rem;
    padding-bottom: 8rem;
}

.footer__addressWrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8rem;
    width: 35.8rem;
    padding: 5rem 2rem 5.5rem;
}
.footer__addressWrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: inline-block;
    width: 100%;
    height: 5px;
    background-image: url(/img/common/dotted-line-unit.png);
    background-size: 10px 5px;
}
.footer__addressWrap::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    display: inline-block;
    width: 100%;
    height: 5px;
    background-image: url(/img/common/dotted-line-unit.png);
    background-size: 10px 5px;
}

.footer__address {
    text-align: center;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.875;
    letter-spacing: 0.025em;
}
.footer__address a {
    text-decoration: underline;
    opacity: 1;
    transition: opacity .2s;
}
.footer__address a:hover {
    opacity: .7;
}

.footer__facebookBannerWrap {
    width: 28rem;
}

.footer__copyright {
    width: 100%;
    padding: 2.8rem 0 2.8rem;
    text-align: center;
    font-size: 1.2rem;
    line-height: 2;
    letter-spacing: 0.08em;
    color: #336799;
}
/* ---------- footer ---------- */
@media screen and (max-width: 1000px) {
    .footer {}

    .footer__upper {}

    .footer__addressWrap {}
    .footer__addressWrap::before {
        width: 100%;
    }
    .footer__addressWrap::after {}

    .footer__address {}

    .footer__copyright {}
}
/* ---------- footer ---------- */
@media screen and (max-width: 750px) {
    .footer {
        width: 86%;
        margin: 0 auto;
    }

    .footer__upper {
        padding-top: 8rem;
        padding-bottom: 4rem;
        gap: 7rem;
    }

    .footer__addressWrap {
        gap: 8rem;
        width: 100%;
        padding: 5.5rem 2rem 5.6rem;
    }
    .footer__addressWrap::before {}
    .footer__addressWrap::after {}

    .footer__address {}

    .footer__copyright {
        padding: 2.8rem 0 8.5rem;
    }
}




/* :::::::::: hamButton :::::::::: */
/* ---------- hamButton responsive (750) ---------- */
@media screen and (max-width: 750px) {
    .hamButton {
        position: fixed;
        top: 1.8rem;
        right: 2rem;
        z-index: 1001;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 5rem;
        height: 5rem;
    }

    .hamButton__lineBase {
        position: relative;
        z-index: 1;
        width: 2.6rem;
        height: 1.6rem;
    }

    .hamButton__line {
        position: absolute;
        left: 0;
        z-index: 1;
        width: 100%;
        height: 2px;
        background-color: #336799;
    }

    .hamButton__line.--line1 {
        top: 0;
    }

    .hamButton__line.--line2 {
        top: 7px;
    }

    .hamButton__line.--line3 {
        bottom: 0;
    }

    @keyframes ham-line1 {
        0% {
            top: 0;
            transform: rotate(0);
        }

        60% {
            top: 7px;
            transform: rotate(0);
        }

        100% {
            top: 7px;
            transform: rotate(45deg);
        }
    }

    @keyframes ham-line1-c {
        0% {
            top: 7px;
            transform: rotate(45deg);
        }

        40% {
            top: 7px;
            transform: rotate(0);
        }

        100% {
            top: 0;
            transform: rotate(0);
        }
    }

    @keyframes ham-line2 {
        0% {
            opacity: 1;
        }

        59% {
            opacity: 1;
        }

        60% {
            opacity: 0;
        }

        100% {
            opacity: 0;
        }
    }

    @keyframes ham-line2-c {
        0% {
            opacity: 0;
        }

        40% {
            opacity: 0;
        }

        42% {
            opacity: 1;
        }

        100% {
            opacity: 1;
        }
    }

    @keyframes ham-line3 {
        0% {
            bottom: 0;
            transform: rotate(0);
        }

        60% {
            bottom: 7px;
            transform: rotate(0);
        }

        100% {
            bottom: 7px;
            transform: rotate(-45deg);
        }
    }

    @keyframes ham-line3-c {
        0% {
            bottom: 7px;
            transform: rotate(-45deg);
        }

        40% {
            bottom: 7px;
            transform: rotate(0);
        }

        100% {
            bottom: 0;
            transform: rotate(0);
        }
    }
}


/* :::::::::: hamMenu :::::::::: */
.hamMenu {
    display: none;
}

.hamMenu.-oepn {
    display: none;
}

/* ---------- hamMenu responsive (750) ---------- */
@media screen and (max-width: 750px) {
    .hamMenu {
        overflow-y: auto;
        position: fixed;
        top: 0;
        left: 0;
        z-index: 1000;
        display: block;
        width: 100%;
        height: 100vh;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    .hamMenu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        z-index: 11;
        display: inline-block;
        width: 100%;
        height: 4px;
        background-image: url(/img/common/dotted-line-unit.png);
        background-size: 8px 4px;
    }

    .hamMenu.-open {
        display: block;
        opacity: 1;
        visibility: visible;
    }

    .hamMenu__base {
        position: relative;
        z-index: 0;
        height: 100%;
    }

    .hamMenu__inner {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        background-color: #F2F2F2;
    }

    .hamMenu__logo {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        top: 1.4rem;
        left: 2.7%;
        width: 25.3rem;
    }

    .hamMenu__content {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 8vh 0 10vh;
    }

    .hamMenu__list {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 2.4rem;
        padding-bottom: 6.4rem;
    }

    .hamMenu__item {
        display: inline-block;
        text-align: center;
    }

    .hamMenu__link {
        position: relative;
        display: inline-block;
        font-size: 1.6rem;
        font-weight: 700;
        line-height: 2;
        letter-spacing: 0.1em;
        color: #336799;
        transition: color 0.3s;
    }
    .hamMenu__link::before {
        content: '';
        position: absolute;
        bottom: -0.3rem;
        transition: transform .3s;
        transform-origin: right;
        display: block;
        width: 100%;
        padding-top: 2px;
        background-color: #336799;
        transform: scale(0, 1);
    }
    .hamMenu__link:hover::before,
    .hamMenu__link.-current::before {
        transform: scale(1, 1);
        transform-origin: left;
    }

    .hamMenu__facebookLink {
        display: flex;
        gap: 2rem;
        opacity: 1;
        transition: opacity .3s;
    }
    .hamMenu__facebookLink:hover {
        opacity: 0.7;
    }

    .facebookIcon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .hamMenu__snsText {
        margin-top: 0.2rem;
        font-size: 1.8rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        color: #336799;
    }
}


/* ::::: main ::::: */
main {
    position: relative;
    padding-top: 11rem;
    background-color: #f3f2ed;
}
main.program {
    padding-top: 16rem;
}

/* ----- name responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    main {
        padding-top: 8.5rem;
    }
    main.program {
        padding-top: 8.5rem;
    }
}


/* :::::::::::::::::::: common ここまで :::::::::::::::::::: */

/* :::::::::::::::::::: main.home（トップページ専用コンテンツ） :::::::::::::::::::: */



/* :::::::::: load :::::::::: */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    display: block;
    width: 100%;
    height: 100%;
    background-color: #f3f2ed;
    transition: opacity 1.8s, visibility 1.8s;
}

.body.loading-end .loading {
    opacity: 0;
    visibility: hidden;
}

.loadingContentWrap {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    /* padding-bottom: 5vh; */
}

.loadingCircleImg {
    width: 2.5rem;
    animation: loading .5s linear infinite;
}

@keyframes loading {
    0% {
        ransform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* :::::::::: load ここまで :::::::::: */


/* :::::::::: homeKv :::::::::: */

.homeKv {
    position: relative;
}
.homeKv::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 22%;
    min-width: 21rem;
    height: 100%;
    background-color: #f3f2ed;
}

.homeKv__catchcopyImg {
    position: absolute;
    top: 40%;
    left: 7%;
    z-index: 2;
    transform: translateY( -50%);
    width: 57rem;
    width: 44%;
    width: clamp(45rem, 44%, 70rem);
}


.homeKv__scrollLink-wrap {
    position: absolute;
    bottom: 2.5rem;
    left: 5%;
    z-index: 1;
    display: inline-block;
}


/* ::::: scrollLink ::: */
.scrollLink {
    display: flex;
    align-items: center;
    gap: 1.4rem;
}
.scrollLink__icon {
    position: relative;
    z-index: 1;
    transform: scale(1);
    transform-origin: center;
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #a3bdcb;
    transition: transform .2s;
}
.scrollLink__icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background-color: #336799;
}
.scrollLink__icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 3;
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 9px;
    height: 6px;
    background-image: url(/img/common/triangle-white-to-bottom.png);
    background-size: 9px 6px;
}
.scrollLink__text {
    position: relative;
    z-index: 1;
    font-size: 1.5rem;
    font-weight: 700;
    color: #336799;
}

/* ----- homeKv responsive (1000) ----- */
@media screen and (max-width: 1000px) {

    .homeKv {}
    .homeKv::before {
        min-width: 20rem;
    }

    .homeKv__catchcopyImg {
        width: clamp(40rem, 44%, 70rem);
    }

    .homeKv__scrollLink-wrap {
        bottom: 2.5rem;
        left: 5%;
    }

    /* ::::: scrollLink ::: */
    .scrollLink {
        gap: 1rem;
    }
    .scrollLink__icon {
        width: 36px;
        height: 36px;
    }
    .scrollLink__icon::before {
        width: 28px;
        height: 28px;
    }
    .scrollLink__icon::after {
        width: 7px;
        height: 5px;
        background-size: 7px 5px;
    }
    .scrollLink__text {
        font-size: 1.4rem;
    }
}
/* ----- homeKv responsive (750) ----- */
@media screen and (max-width: 750px) {

    .homeKv {}
    .homeKv::before {
        width: 15%;
        min-width: 5.4rem;
    }

    .homeKv__catchcopyImg {
        top: 27%;
        left: 7%;
        width: 31rem;
    }

    .homeKv__scrollLink-wrap {
        bottom: -5.1rem;
        left: 5%;
    }

    /* ::::: scrollLink ::: */
    .scrollLink {}
    .scrollLink__icon {}
    .scrollLink__icon::before {}
    .scrollLink__icon::after {}
    .scrollLink__text {}
}






/* ::::: loop ::::: */
.loop {
    overflow: hidden;
}

.loop__base {
    display: flex;
}

.loop__list {
    display: flex;
    animation: loop1 24s infinite linear 0s both;
}

@keyframes loop1 {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}

.loop__item {}

.loop__img {
    overflow: hidden;
    width: clamp(30rem, 40vw, 100rem);
    aspect-ratio: 520/658;
    margin-right: 1.5rem;
}

/* ----- loop responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .loop {
        padding-top: 4rem;
    }

    .loop__base {}

    .loop__list {

    }

    .loop__item {}

    .loop__img {
        width: clamp(30rem, 40vw, 80rem);
    }
}

/* ----- loop responsive (750) ----- */
@media screen and (max-width: 750px) {
    .loop {
        padding-top: 0;
    }

    .loop__base {}

    .loop__list {
        animation: loop1 18s infinite linear 0s both;
    }

    .loop__item {}

    .loop__img {
        width: clamp(26rem, 40vw, 80rem);
        aspect-ratio: 260/435;

        margin-right: 1.5rem;
    }
}


/* :::::::::: homeKv ここまで :::::::::: */



/* :::::::::: homeIntro :::::::::: */
.homeIntro {
    padding-top: 12rem;
    margin-top: -12rem;
}

.homeIntro__inner {
    width: 70%;
    background-color: #e7e5dd;
    padding: 8rem 10% 7rem;
    margin-top: 11rem;
    margin-bottom: 10rem;
}

.homeIntro__titleWrap {
    width: 18em;
    max-width: 100%;
    font-size: 3.5rem; /* .homeIntro__titleと同じfont-size */
}

.homeIntro__title {
    display: inline;
    padding-bottom: 1rem;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 2.18;
    letter-spacing: 0.1em;
    letter-spacing: 0.025em;
    color: #336799;
    background: linear-gradient(transparent calc(100% - 3px), #336799 3px);
}

.homeIntro__content {
    position: relative;
    width: 100%;
    min-height: 65rem;
    padding-top: 4.2rem;
}

.homeIntro__img {
    position: absolute;
    top: 5rem;
    right: 0;
    z-index: 1;
    transform: translateX( 100%);
    width: 80%;
    max-width: 60rem;
}

.homeIntro__textWrap {
    width: 79%;
}

section.homeIntro .text {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2.4;
    letter-spacing: 0.025em;
    color: #33414b;
}

section.homeIntro .text + .text {
    padding-top: 3.8rem;
}
/* ----- homeIntro responsive (1000) ----- */
@media screen and (max-width: 1000px) {
    .homeIntro {}

    .homeIntro__inner {
        width: 100%;
        padding: 8rem 10% 10rem;
        margin-top: 0;
        margin-bottom: 0;
        background-color: #f3f2ed;
    }

    .homeIntro__titleWrap {
        width: 100%;
        font-size: 2.5rem;
    }

    .homeIntro__title {
        padding-bottom: 0.5rem;
        font-size: 2.5rem;
        line-height: 2.2;
        background: linear-gradient(transparent calc(100% - 2px), #336799 2px);
    }

    .homeIntro__content {
        min-height: unset;
    }

    .homeIntro__img {
        position: relative;
        top: 0;
        right: unset;
        transform: translateX(0);
        width: 100%;
        max-width: unset;
    }

    .homeIntro__textWrap {
        width: 100%;
        padding-top: 5rem;
    }

    section.homeIntro .text {}

    section.homeIntro .text + .text {}
}
/* ----- homeIntro responsive (750) ----- */
@media screen and (max-width: 750px) {
    .homeIntro {
        padding-top: 8rem;
        margin-top: -8rem;
    }

    .homeIntro__inner {
        padding: 11.4rem 7% 5rem;
    }

    .homeIntro__titleWrap {}

    .homeIntro__title {}

    .homeIntro__content {
        padding-top: 3rem;
    }

    .homeIntro__img {
        position: relative;
        top: 0;
        right: unset;
        transform: translateX(0);
        width: 100%;
        max-width: unset;
    }

    .homeIntro__textWrap {
        padding-top: 2.3rem;
    }

    section.homeIntro .text {}

    section.homeIntro .text + .text {}
}
/* :::::::::: homeIntro ここまで :::::::::: */


/* :::::::::: homeAbout :::::::::: */
.homeAbout {
    padding-top: 12rem;
    margin-top: -12rem;
}

.homeAbout__base {
    padding: 7.5rem 0 9.8rem;
    background-color: #336799;
}

.homeAbout__inner {
    width: 80%;
    max-width: 1400px;
    margin: 0 auto;
}

.homeAbout__titleWrap {
    text-align: center;
    padding-bottom: 7.4rem;
}

.homeAbout__title {
    display: inline;
    padding-bottom: 1rem;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 2.18;
    letter-spacing: 0.1em;
    letter-spacing: 0.025em;
    color: #FFF;
    background:linear-gradient(transparent calc(100% - 3px), #FFF 3px);
}

.homeAbout__img {
    width: 100%;
    width: clamp( 780px,100%,1024px);
    margin: 0 auto;
}
/* ---------- homeAbout responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .homeAbout {}

    .homeAbout__base {}

    .homeAbout__inner {}

    .homeAbout__titleWrap {}

    .homeAbout__title {
        padding-bottom: 0.5rem;
        font-size: 2.5rem;
        line-height: 2.2;
        background: linear-gradient(transparent calc(100% - 2px), #FFF 2px);
    }

    .homeAbout__imgWrap {
        width: clamp(30rem, 100%, 40rem);
        margin: 0 auto;
    }

    .homeAbout__img {
        width: 100%;
        margin: 0 auto;
    }
    .homeAbout__img:not(:first-child) {
        margin-top: 1rem;
    }
}
/* ---------- homeAbout responsive (750) ---------- */
@media screen and (max-width: 750px) {
    .homeAbout {
        padding-top: 8rem;
        margin-top: -8rem;
    }

    .homeAbout__base {
        padding: 3.2rem 0 5.1rem;
    }

    .homeAbout__inner {
        width: 86%;
    }

    .homeAbout__titleWrap {
        padding-bottom: 1.6rem;
    }

    .homeAbout__title {}

    .homeAbout__imgWrap {
        width: clamp(25rem, 100%, 40rem);
    }

    .homeAbout__img {}
    .homeAbout__img:not(:first-child) {
        margin-top: 1rem;
    }
}
/* :::::::::: homeAbout ここまで :::::::::: */


/* :::::::::: homeFeature :::::::::: */
.homeFeature {
    position: relative;
    padding-top: 13.2rem;
    padding-bottom: 16.4rem;
    background-color: #e7e5dd;
}

.homeFeature__wrapper {
    width: 86%;
    max-width: 1300px;
    margin: 0 auto;
}

.homeFeature__titleWrap {
    position: relative;
    width: 65%;
}

.homeFeature__title {
    display: inline;
    padding-bottom: 0.8rem;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 2.18;
    letter-spacing: 0.1em;
    letter-spacing: 0.025em;
    color: #336799;
    background:linear-gradient(transparent calc(100% - 3px), #336799 3px);
}

.homeFeature__listWrap {
    position: relative;
    width: 65%;
    padding-top: 7.5rem;
}

/* inview処理のためroot化 */
:root {
    --homeAbout__secImgForInview_transformValue: translateX( 100%);
}
.homeAbout__secImg {
    position: absolute;
    top: -2rem;
    right: -12%;
    transform: var(--homeAbout__secImgForInview_transformValue);
    z-index: 1;
    width: calc(100% * 360 / 770 * 1280 / 1100);
    max-width: 48rem;
}

.homeFeature__list {}

.homeFeature__item {
    position: relative;
    padding: 5.4rem 3rem;
    background-color: #FFF;
}
.homeFeature__item:not(:first-child) {
    margin-top: 4px;
}

.homeFeature__text {
    position: relative;
    padding-left: 7rem;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 2;
    letter-spacing: 0.025em;
    color: #336799;
}
.homeFeature__text span {
    display: inline;
    background: linear-gradient(transparent calc(100% - 6px), #ffe48f 6px);
}

.homeFeature__item .homeFeature__text::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    width: 4.4rem;
    height: 4.4rem;
    border-radius: 50%;
    font-family: "Cabin", sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #FFF;
    background-color: #336799;
}
.homeFeature__item:nth-child(1) .homeFeature__text::before {
    content: '01';
}
.homeFeature__item:nth-child(2) .homeFeature__text::before {
    content: '02';
}
.homeFeature__item:nth-child(3) .homeFeature__text::before {
    content: '03';
}
/* ---------- homeFeature responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .homeFeature {}

    .homeFeature__wrapper {}

    .homeFeature__titleWrap {}

    .homeFeature__title {
        padding-bottom: 0.6rem;
        font-size: 2.5rem;
        line-height: 2.2;
        background: linear-gradient(transparent calc(100% - 2px), #336799 2px);
    }

    .homeFeature__listWrap {}

    .homeAbout__secImg {}

    .homeFeature__list {}

    .homeFeature__item {}
    .homeFeature__item:not(:first-child) {}

    .homeFeature__text {
        font-size: 1.6rem;
    }

    .homeFeature__text span {}

    .homeFeature__item .homeFeature__text::before {
        width: 4rem;
        height: 4rem;
        font-size: 1.8rem;
    }
    .homeFeature__item:nth-child(1) .homeFeature__text::before {}
    .homeFeature__item:nth-child(2) .homeFeature__text::before {}
    .homeFeature__item:nth-child(3) .homeFeature__text::before {}
}
/* ---------- homeFeature responsive (750) ---------- */
@media screen and (max-width: 750px) {
    .homeFeature {
        padding-top: 3.3rem;
        padding-bottom: 0rem;
        background-color: #f3f2ed;
    }

    .homeFeature__wrapper {}

    .homeFeature__titleWrap {
        width: 100%;
    }

    .homeFeature__title {}

    .homeFeature__listWrap {
        width: 100%;
        padding-top: 2.8rem;
        padding-bottom: 5.4rem;
    }

    /* inview処理のためroot化 */
    :root {
        --homeAbout__secImgForInview_transformValue: translateX( 0);
    }
    .homeAbout__secImg {
        position: relative;
        top: 0;
        right: unset;
        width: 100%;
        max-width: unset;
    }

    .homeFeature__list {}

    .homeFeature__item {
        padding: 7.3rem 3rem 2.5rem;
        text-align: center;
    }
    .homeFeature__item:not(:first-child) {}

    .homeFeature__text {
        padding-left: 0;
    }

    .homeFeature__text span {}

    .homeFeature__item .homeFeature__text::before {
        top: -4.8rem;
        left: 50%;
        transform: translateX(-50%) translateY(0);
    }
    .homeFeature__item:nth-child(1) .homeFeature__text::before {}
    .homeFeature__item:nth-child(2) .homeFeature__text::before {}
    .homeFeature__item:nth-child(3) .homeFeature__text::before {}
}
/* :::::::::: homeFeature ここまで :::::::::: */


/* :::::::::: homeProgram :::::::::: */
.homeProgram {
    padding-top: 14rem;
    margin-bottom: 17.7rem;
}

.homeProgram__wrapper {
    width: 86%;
    max-width: 1500px;
    margin: 0 auto;
}

.homeProgram__titleWrap {
    text-align: center;
}

.homeProgram__title {
    display: inline;
    padding-bottom: 0.8rem;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 2.18;
    letter-spacing: 0.1em;
    letter-spacing: 0.025em;
    color: #336799;
    background:linear-gradient(transparent calc(100% - 3px), #336799 3px);
}

.homeProgram__introText {
    padding-top: 7rem;
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.025rem;
    color: #33414b;
}

/*タブ切り替え全体のスタイル*/
.tabs {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-top: 8rem;
    margin: 0 auto;
}
.tabs input {
    padding-block: 0;
    padding-inline: 0;
}

/*タブのスタイル*/
.tab__item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: calc((100% - 7px * 3) / 4);
    padding: 0 1rem;
    height: 6.5rem;
    padding: 0 1rem;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    color: #888888;
    background-color: #e7e5dd;
    transition: all 0.2s ease;
}
.tab__item:hover {
    opacity: 0.75;
}

.br-homeProgram {
    display: none;
}
@media screen and (max-width: 1200px) {
    .br-homeProgram {
        display: block;
    }
}
@media screen and (max-width: 1000px) {
    .br-homeProgram {
        display: none;
    }
}
@media screen and (max-width: 550px) {
    .br-homeProgram {
        display: block;
    }
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
    display: none;
}

.tab__item:not(:nth-of-type(1)) {
    margin-left: 7px;
}

/*タブ切り替えの中身のスタイル*/
.tab__content {
    display: none;
    width: 100%;
    padding: 5.2rem 0 0;
    clear: both;
    overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#tab1:checked ~ #tab1_content,
#tab2:checked ~ #tab2_content,
#tab3:checked ~ #tab3_content,
#tab4:checked ~ #tab4_content {
    display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab__item {
    background-color: #ffffff;
    color: #336799;
}
.tabs input + .tab__item::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    z-index: 1;
    transform: translate( -50%, 50%);
    display: block;
    border-top: 0.8rem solid #fff;
    border-right: 0.8rem solid transparent;
    border-bottom: 0.8rem solid transparent;
    border-left: 0.8rem solid transparent;
    opacity: 0;
    transition: opacity .2s;
}
.tabs input:checked + .tab__item::after {
    opacity: 1;
}


/* tab__programList */
.tab__programList {}

.tab__programItem {
    display: flex;
    align-items: start;
    gap: 5%;
    padding: 6rem 5.5% 7.5rem;
    background-color: #e7e5dd;
}
.tab__programItem:not(:nth-child(1)) {
    margin-top: 1rem;
}

.tab__programItemThumb {
    position: relative;
    width: 40%;
}

.tab__tagWrap {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    padding: 0.7rem 1.2rem 0.8rem 3.2rem;
    background-color: #FFF;
}

.tab__pinImg {
    position: absolute;
    top: 0.6rem;
    left: 1.1rem;
    width: 1.4rem;
}

.tab__tagText {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: #33414b;
}

.tab__programItemTextTypeWrap {
    width: calc(100% - 5% - 40%);
}

.tab__programItemTitle {
    display: inline;
    padding-bottom: 0.8rem;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 2.18;
    letter-spacing: 0.1em;
    color: #336799;
    background: linear-gradient(transparent calc(100% - 3px), #336799 3px);
}

.tab__programItemTextWrap {
    padding-top: 3rem;
}

.tab__programItemText {
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.025em;
    color: #33414b;
}

.tab__detailLinkWrap {
    display: flex;
    justify-content: start;
    padding-top: 3rem;
}

.tab__detailLink {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 1rem;
    min-width: 220px;
    padding: 1.3rem 2rem 1.4rem;
    border-radius: 5px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.025em;
    color: #FFF;
    background-color: #3e6f9e;
    opacity: 1;
    transition: opacity .2s;
}
.tab__detailLink:hover {
    opacity: .6;
}
.tab__detailLink::after {
    content: '';
    position: relative;
    top: 0.4rem;
    left: 0;
    z-index: 1;
    transform: rotate(180deg);
    display: inline-block;
    width: 2.1rem;
    height: 2.1rem;
    background-image: url(/img/common/triangle-circle-white.png);
    background-size: 21px 21px;
}

.tab__programArchiveLinkWrap {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 8rem;
}

.tab__programArchiveLink {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 1rem;
    min-width: 300px;
    padding: 1.3rem 2rem 1.4rem;
    border-radius: 5px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.025em;
    color: #FFF;
    background-color: #3e6f9e;
    opacity: 1;
    transition: opacity .2s;
}
.tab__programArchiveLink:hover {
    opacity: .6;
}


.tab__programArchiveLink::before {
    content: '';
    position: relative;
    top: 0.4rem;
    left: 0;
    z-index: 1;
    display: inline-block;
    width: 3.3rem;
    height: 2.3rem;
    background-image: url(/img/common/icon-programArchiveLink.png);
    background-size: 33px 23px;
}

/* ---------- name responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .homeProgram {}

    .homeProgram__wrapper {
        width: 86%;
        max-width: 1500px;
    }

    .homeProgram__titleWrap {}

    .homeProgram__title {
        padding-bottom: 0.6rem;
        font-size: 2.5rem;
        line-height: 2.2;
        background:linear-gradient(transparent calc(100% - 2px), #336799 2px);
    }

    .homeProgram__introText {}

    /*タブ切り替え全体のスタイル*/
    .tabs {}
    .tabs input {}

    /*タブのスタイル*/
    .tab__item {
        width: calc((100% - 0.8rem) / 2);
        padding: 0 0.6rem;
        font-size: 14px;
    }
    .tab__item:hover {}

    /*ラジオボタンを全て消す*/
    input[name="tab_item"] {}

    .tab__item:not(:nth-of-type(1)) {
        margin-left: unset;
    }
    .tab__item:nth-of-type(2) {
        margin-left: 0.8rem;
    }
    .tab__item:nth-of-type(3) {
        margin-top: 1.5rem;
        margin-left: 0;
    }
    .tab__item:nth-of-type(4) {
        margin-top: 1.5rem;
        margin-left: 0.8rem;
    }

    /*タブ切り替えの中身のスタイル*/
    .tab__content {}

    /*選択されているタブのコンテンツのみを表示*/
    #tab1:checked ~ #tab1_content,
    #tab2:checked ~ #tab2_content,
    #tab3:checked ~ #tab3_content,
    #tab4:checked ~ #tab4_content {}

    /*選択されているタブのスタイルを変える*/
    .tabs input:checked + .tab__item {}


    /* tab__programList */
    .tab__programList {}

    .tab__programItem {
        gap: 5%;
        padding: 6rem 5.5% 7.5rem;
    }
    .tab__programItem:not(:nth-child(1)) {
        margin-top: 1rem;
    }

    .tab__programItemThumb {}

    .tab__tagWrap {}

    .tab__pinImg {}

    .tab__tagText {}

    .tab__programItemTitle {
        padding-bottom: 0.3rem;
        font-size: 2rem;
        line-height: 2.2;
        background: linear-gradient(transparent calc(100% - 2px), #336799 2px);
    }

    .tab__programItemTextWrap {}

    .tab__programItemText {
        font-size: 1.4rem;
    }

    .tab__detailLinkWrap {}

    .tab__detailLink {
        min-width: 210px;
        padding: 1.1rem 2rem 1.2rem;
        font-size: 1.5rem;
        line-height: 1.86;
    }
    .tab__detailLink::after {}

    .tab__programArchiveLinkWrap {}

    .tab__programArchiveLink {
        width: 100%;
        padding: 1.3rem 2rem 1.4rem;
    }

    .tab__programArchiveLink::before {
        top: 0.7rem;
        width: 2.2rem;
        height: 1.5rem;
        background-size: 22px 15px;
    }
}
/* ---------- name responsive (750) ---------- */
@media screen and (max-width: 750px) {
    .homeProgram {
        padding-top: 3.4rem;
        margin-bottom: 5.5rem;
    }

    .homeProgram__wrapper {
        width: 86%;
        max-width: 1500px;
    }

    .homeProgram__titleWrap {}

    .homeProgram__title {}

    .homeProgram__introText {
        padding-top: 2.5rem;
    }

    /*タブ切り替え全体のスタイル*/
    .tabs {
        padding-top: 2rem;
    }
    .tabs input {}

    /*タブのスタイル*/
    .tab__item {
        height: 7.1rem;
    }
    .tab__item:hover {}

    /*ラジオボタンを全て消す*/
    input[name="tab_item"] {}


    /*タブ切り替えの中身のスタイル*/
    .tab__content {
        padding: 3.4rem 0 0;
    }

    /*選択されているタブのコンテンツのみを表示*/
    #tab1:checked ~ #tab1_content,
    #tab2:checked ~ #tab2_content,
    #tab3:checked ~ #tab3_content,
    #tab4:checked ~ #tab4_content {}

    /*選択されているタブのスタイルを変える*/
    .tabs input:checked + .tab__item {}


    /* tab__programList */
    .tab__programList {}

    .tab__programItem {
        flex-direction: column;
        gap: 5%;
        padding: 0;
    }
    .tab__programItem:not(:nth-child(1)) {
        margin-top: 2rem;
    }

    .tab__programItemTextTypeWrap {
        width: 100%;
        padding: 1.8rem 6.5% 3rem;
    }

    .tab__programItemThumb {
        width: 100%;
    }

    .tab__tagWrap {}

    .tab__pinImg {}

    .tab__tagText {}

    .tab__programItemTitle {}

    .tab__programItemTextWrap {
        padding-top: 0.9rem;
    }

    .tab__programItemText {}

    .tab__detailLinkWrap {
        padding-top: 2rem;
    }

    .tab__detailLink {
        padding: 1rem 2rem 1.2rem;
    }
    .tab__detailLink::after {}

    .tab__programArchiveLinkWrap {
        padding-top: 5rem;
    }

    .tab__programArchiveLink {
        width: 100%;
        padding: 1.5rem 2rem 1.8rem;
    }

    .tab__programArchiveLink::before {
        top: 0.7rem;
        width: 2.2rem;
        height: 1.5rem;
        background-size: 22px 15px;
    }
}

/* :::::::::: homeProgram ここまで :::::::::: */


/* :::::::::: homeWho :::::::::: */
.homeWho {
    padding-top: 12rem;
    margin-top: -12rem;
}

.homeWho__base {
    padding-top: 9rem;
    padding-bottom: 13.5rem;
    background-color: #336799;
}

.homeWho__wrapper {
    width: 78%;
    max-width: 1350px;
    margin: 0 auto;
}

.homeWho__titleWrap {
    text-align: center;
}

.homeWho__title {
    display: inline;
    padding-bottom: 0.8rem;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 2.18;
    letter-spacing: 0.025em;
    color: #ffffff;
    background:linear-gradient(transparent calc(100% - 3px), #ffffff 3px);
}

.homeWho__listWrap {
    padding-top: 7.5rem;
}

.homeWho__list {
    display: flex;
    flex-wrap: wrap;
    gap: 4%;
}

.homeWho__item {
    width: calc((100% - 4%) / 2);
}

.homeWho__itemHeadImg {
    position: relative;
    margin-bottom: 2.6rem;
}

.homeWho__imgInsideDescription {
    position: absolute;
    bottom: 10px;
    right: 12px;
    z-index: 1;
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: #FFF;
    text-shadow: 0 0 10px rgba(0, 0, 0, 1);
}

.homeWho__itemTitle {
    display: inline;
    padding: 0rem 0.5rem 0.1rem;
    margin-top: 3rem;
    font-size: 2.5rem;
    line-height: 1.9;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #336799;
    background-color: #FFF;
}

.homeWho__textImgWrap {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding-top: 1.3rem;
}

.homeWho__textWrap {
    width: calc(100% - 10rem - 2rem);
}

.homeWho__address {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.025em;
    color: #ffffff;
}

.homeWho__smallTitle {
    padding-top: 2.1rem;
    padding-bottom: 0.7rem;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.025em;
    color: #ffffff;
}

.homeWho__text {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 2;
    letter-spacing: 0.025em;
    color: #ffffff;
}

.homeWho__item:nth-child(1) .homeWho__text {
    width: calc(100% * 480 / (480 - 100 - 20));
}

.homeWho__mailLink,
.homeWho__urlLink {
    text-decoration: underline;
    opacity: 1;
    transition: opacity 0.3s;
}
.homeWho__mailLink:hover,
.homeWho__urlLink:hover {
    opacity: 0.7;
}

.homeWho__qrcodeImg {
    width: 10rem;
    padding-top: 5rem;
}
/* ---------- homeWho responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .homeWho {}

    .homeWho__base {}

    .homeWho__wrapper {
        width: 78%;
    }

    .homeWho__titleWrap {}

    .homeWho__title {
        padding-bottom: 0.6rem;
        font-size: 2.5rem;
        line-height: 2.2;
        letter-spacing: 0.08em;
        background: linear-gradient(transparent calc(100% - 2px), #ffffff 2px);
    }

    .homeWho__listWrap {}

    .homeWho__list {}

    .homeWho__item {
        width: calc((100% - 4%) / 2);
    }

    .homeWho__itemHeadImg {}
    .homeWho__imgInsideDescription {}

    .homeWho__itemTitle {
        padding: 0.3rem 0.5rem 0.4rem;
        font-size: 2rem;
        line-height: 2.2;
    }

    .homeWho__textImgWrap {
        flex-direction: column;
    }

    .homeWho__textWrap {
        width: 100%;
    }

    .homeWho__address {
        font-size: 1.5rem;
    }

    .homeWho__smallTitle {
        font-size: 1.8rem;
    }

    .homeWho__text {
        font-size: 1.5rem;
    }

    .homeWho__item:nth-child(1) .homeWho__text {
        width: 100%;
    }

    .homeWho__mailLink,
    .homeWho__urlLink {}
    .homeWho__mailLink:hover,
    .homeWho__urlLink:hover {}

    .homeWho__qrcodeImg {
        padding-top: 3rem;
    }
}
/* ---------- homeWho responsive (750) ---------- */
@media screen and (max-width: 750px) {
    .homeWho {
        padding-top: 8rem;
        margin-top: -8rem;
    }

    .homeWho__base {
        padding-top: 3.5rem;
        padding-bottom: 5rem;
    }

    .homeWho__wrapper {
        width: 86%;
    }

    .homeWho__titleWrap {}

    .homeWho__title {}

    .homeWho__listWrap {
        padding-top: 3.2rem;
    }

    .homeWho__list {
        gap: 4rem;
    }

    .homeWho__item {
        width: 100%;
    }

    .homeWho__itemHeadImg {}
    .homeWho__imgInsideDescription {}

    .homeWho__itemTitle {}

    .homeWho__textImgWrap {
        flex-direction: column;
        padding-top: 0.8rem;
    }

    .homeWho__textWrap {
        width: 100%;
    }

    .homeWho__address {}

    .homeWho__smallTitle {
        padding-top: 2.5rem;
        padding-bottom: 0.6rem;
    }

    .homeWho__text {}

    .homeWho__item:nth-child(1) .homeWho__text {}

    .homeWho__mailLink,
    .homeWho__urlLink {}
    .homeWho__mailLink:hover,
    .homeWho__urlLink:hover {}

    .homeWho__qrcodeImg {
        padding-top: 1rem;
    }
}
/* :::::::::: homeWho ここまで :::::::::: */

/* :::::::::: homeAccess :::::::::: */
.homeAccess {
    padding-top: 8rem;
    margin-top: -8rem;
}

.homeAccess__base {
    padding-top: 12rem;
}

.homeAccess__wrapper {
    width: 86%;
    max-width: 1500px;
    margin: 0 auto;
}

.homeAccess__titleWrap {
    text-align: center;
}

.homeAccess__title {
    display: inline;
    padding-bottom: 0.8rem;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 2.18;
    letter-spacing: 0.025em;
    color: #336799;
    background:linear-gradient(transparent calc(100% - 3px), #336799 3px);
}

.homeAccess__mapWrap {
    width: 86%;
    max-width: 1500px;
    padding-top: 8rem;
    margin: 0 auto;
}

.homeAccess__mapWrap iframe {
    width: 100%;
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
}


/* accessTabs */
.homeProgram__programContentsWrap {

}
/*タブ切り替え全体のスタイル*/
section.homeAccess .tabs {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding-top: 8rem;
    margin: 0 auto;
}
section.homeAccess .tabs input {
    padding-block: 0;
    padding-inline: 0;
}

/*タブのスタイル*/
section.homeAccess .accessTab__item {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 0;
    justify-content: center;
    align-items: center;
    width: calc((100% - 7px * 2) / 3);
    padding: 1.1rem 2rem 1.3rem;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    color: #888888;
    background-color: #e7e5dd;
    transition: opacity 0.3s;
}
section.homeAccess .accessTab__item:hover {
    opacity: 0.75;
}
section.homeAccess input:checked + .accessTab__item:hover {
    opacity: 1;
}

section.homeAccess .accessTab__item span {
    display: flex;
    align-items: center;
    gap: 8px;
}
section.homeAccess .accessTab__item span:nth-child(2) {
    padding-left: 8px;
}

section.homeAccess .accessTab__item .accessTab__icon {
    position: relative;
}
section.homeAccess .accessTab__item .accessTab__icon img:nth-child(1) {
    position: relative;
    display: inline-block;
    width: 26px;
    height: 26px;
    opacity: 1;
}
section.homeAccess input:checked + .accessTab__item .accessTab__icon img:nth-child(1) {
    opacity: 0;
}
section.homeAccess .accessTab__item .accessTab__icon img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: inline-block;
    width: 26px;
    height: 26px;
    opacity: 0;
}
section.homeAccess input:checked + .accessTab__item .accessTab__icon img:nth-child(2) {
    opacity: 1;
}


/*ラジオボタンを全て消す*/
section.homeAccess input[name="accessTab_item"] {
    display: none;
}

section.homeAccess .accessTab__item:not(:nth-of-type(1)) {
    margin-left: 7px;
}

/*タブ切り替えの中身のスタイル*/
section.homeAccess .accessTab__content {
    position: relative;
    display: none;
    width: 100%;
    clear: both;
    overflow: hidden;
}
section.homeAccess .accessTab__horseStampImg {
    position: absolute;
    bottom: 4rem;
    right: 6.5rem;
    width: 20rem;
}


/*選択されているタブのコンテンツのみを表示*/
section.homeAccess #accessTab1:checked ~ #accessTab1_content,
section.homeAccess #accessTab2:checked ~ #accessTab2_content,
section.homeAccess #accessTab3:checked ~ #accessTab3_content {
    display: block;
}

/*選択されているタブのスタイルを変える*/
section.homeAccess .tabs input:checked + .accessTab__item {
    background-color: #336799;
    color: #ffffff;
}



/* accessTab__content */
.accessTab__content {
    padding: 5rem 6% 6.5rem;
    background-color: #e7e5dd;
}

.accessTab__tab1ContentInner {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 5rem 6%;
}

.accessTab__processPlane1 {
    width: 47rem;
}

.accessTab__processPlane2 {
    width: 42rem;
}

.accessTab__processTrain1 {
    width: 47rem;
}

.accessTab__processTrain2 {
    width: 47rem;
}

.accessTab__processCar1 {
    width: 68.2rem;
}
/* ---------- homeAccess responsive (1000) ---------- */
@media screen and (max-width: 1000px) {
    .homeAccess {}

    .homeAccess__base {}

    .homeAccess__wrapper {}

    .homeAccess__titleWrap {}

    .homeAccess__title {
        padding-bottom: 0.6rem;
        font-size: 2.5rem;
        line-height: 2.2;
        background:linear-gradient(transparent calc(100% - 2px), #336799 2px);
    }

    .homeAccess__mapWrap {}

    .homeAccess__mapWrap iframe {}


    /* accessTabs */
    .homeProgram__programContentsWrap {}
    /*タブ切り替え全体のスタイル*/
    section.homeAccess .tabs {}
    section.homeAccess .tabs input {}

    /*タブのスタイル*/
    section.homeAccess .accessTab__item {
        gap: 1rem 0;
        width: auto;
        font-size: 15px;
    }
    section.homeAccess .accessTab__item:hover {}
    section.homeAccess input:checked + .accessTab__item:hover {}

    section.homeAccess .accessTab__item span {}

    section.homeAccess input + .accessTab__item span:nth-child(2) {
        display: none;
    }
    section.homeAccess input:checked + .accessTab__item span:nth-child(2) {
        display: inline;
    }

    section.homeAccess .accessTab__item .accessTab__icon {}
    section.homeAccess .accessTab__item .accessTab__icon img:nth-child(1) {
        width: 25px;
        height: 25px;
    }
    section.homeAccess input:checked + .accessTab__item .accessTab__icon img:nth-child(1) {}
    section.homeAccess .accessTab__item .accessTab__icon img:nth-child(2) {
        width: 25px;
        height: 25px;
    }
    section.homeAccess input:checked + .accessTab__item .accessTab__icon img:nth-child(2) {}

    /*ラジオボタンを全て消す*/
    section.homeAccess input[name="accessTab_item"] {}

    section.homeAccess .accessTab__item:not(:nth-of-type(1)) {

    }

    /*タブ切り替えの中身のスタイル*/
    section.homeAccess .accessTab__content {}


    /*選択されているタブのコンテンツのみを表示*/
    section.homeAccess #accessTab1:checked ~ #accessTab1_content,
    section.homeAccess #accessTab2:checked ~ #accessTab2_content,
    section.homeAccess #accessTab3:checked ~ #accessTab3_content {}

    /*選択されているタブのスタイルを変える*/
    section.homeAccess .tabs input:checked + .accessTab__item {
        flex-grow: 1;
    }


    /* accessTab__content */
    .accessTab__content {}

    .accessTab__tab1ContentInner {
        gap: 5rem 7%;
    }

    .accessTab__processPlane1 {
        width: 29.2rem;
    }

    .accessTab__processPlane2 {}

    .accessTab__processTrain1 {
        width: 29.1rem;
    }

    .accessTab__processTrain2 {}

    .accessTab__processCar1 {
        width: 29.1rem;
    }
}
/* ---------- homeAccess responsive (750) ---------- */
@media screen and (max-width: 750px) {
    .homeAccess {}

    .homeAccess__base {
        padding-top: 3.3rem;
    }

    .homeAccess__wrapper {
        width: 86%;
    }

    .homeAccess__titleWrap {}

    .homeAccess__title {}

    .homeAccess__mapWrap {
        padding-top: 3rem;
        width: 100%;
    }

    .homeAccess__mapWrap iframe {
        height: 83vw;
    }


    /* accessTabs */
    .homeProgram__programContentsWrap {}
    /*タブ切り替え全体のスタイル*/
    section.homeAccess .tabs {
        padding-top: 4rem;
    }
    section.homeAccess .tabs input {}

    /*タブのスタイル*/
    section.homeAccess .accessTab__item {
        padding: 0.7rem 0.8rem 0.9rem;
        font-size: 15px;
    }
    section.homeAccess .accessTab__item:hover {}
    section.homeAccess input:checked + .accessTab__item:hover {}

    section.homeAccess .accessTab__item span {}

    section.homeAccess input + .accessTab__item span:nth-child(2) {
        padding-left: 3px;
    }
    section.homeAccess input:checked + .accessTab__item span:nth-child(2) {}

    section.homeAccess .accessTab__item .accessTab__icon {}
    section.homeAccess .accessTab__item .accessTab__icon img:nth-child(1) {}
    section.homeAccess input:checked + .accessTab__item .accessTab__icon img:nth-child(1) {}
    section.homeAccess .accessTab__item .accessTab__icon img:nth-child(2) {}
    section.homeAccess input:checked + .accessTab__item .accessTab__icon img:nth-child(2) {}

    /*ラジオボタンを全て消す*/
    section.homeAccess input[name="accessTab_item"] {}

    section.homeAccess .accessTab__item:not(:nth-of-type(1)) {}

    /*タブ切り替えの中身のスタイル*/
    section.homeAccess .accessTab__content {}


    /*選択されているタブのコンテンツのみを表示*/
    section.homeAccess #accessTab1:checked ~ #accessTab1_content,
    section.homeAccess #accessTab2:checked ~ #accessTab2_content,
    section.homeAccess #accessTab3:checked ~ #accessTab3_content {}

    /*選択されているタブのスタイルを変える*/
    section.homeAccess .tabs input:checked + .accessTab__item {}


    /* accessTab__content */
    .accessTab__content {
        padding: 2rem 6% 3.6rem;
    }

    .accessTab__tab1ContentInner {
        gap: 5rem 7%;
    }

    .accessTab__processPlane1 {
        width: 29.2rem;
    }

    .accessTab__processPlane2 {}

    .accessTab__processTrain1 {
        width: 29.1rem;
    }

    .accessTab__processTrain2 {}

    .accessTab__processCar1 {
        width: 29.1rem;
    }
}


/* :::::::::: homeAccess ここまで :::::::::: */





/* :::::::::::::::::::: program :::::::::::::::::::: */

.program {}

.program__inner {
    width: calc(100% - 9rem);
    padding: 10.2rem 7.5% 12rem;
    margin: 0 auto 0 0;
    background-color: #ffffff;
}

.program__mainTitle {
    display: inline;
    padding-bottom: 0.8rem;
    font-size: 4.2rem;
    line-height: 2.2;
    letter-spacing: 0.025em;
    font-weight: 700;
    color: #336799;
    background: linear-gradient(transparent calc(100% - 3px), #336799 3px);
}

.program__catListModuleWrap {
    padding-top: 6.8rem;
}

.c-catListModule {
    display: flex;
    align-items: start;
}

.c-catListModule__text {
    width: 10rem;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.8;
    color: #33414b;
}

.c-catListModule__list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 3rem;
    flex-grow: 1;
    width: calc(100% - 10rem);
}

.c-catListModule__link {
    position: relative;
    display: inline;
    padding-bottom: 0.3rem;
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.8;
    color: #888888;
    transition: color .15s;
}
.c-catListModule__link:hover  {
    color: #3e6f9e;
}

.c-catListModule__link::before {
    content: '';
    position: absolute;
    bottom: 0rem;
    transition: transform .3s;
    transform-origin: right;
    display: block;
    width: 100%;
    padding-top: 2px;
    background-color: #3e6f9e;
    transform: scale(0, 1);
}
.c-catListModule__link:hover::before {
    transform: scale(1, 1);
    transform-origin: left;
}

.c-catListModule__link.-on {
    font-weight: 700;
    color: #3e6f9e;
    background: linear-gradient(transparent calc(100% - 2px), #336799 2px);
}

.program__programListWrap {
    padding-top: 4.5rem;
}

.programList {
    display: flex;
    flex-wrap: wrap;
    gap: 4.5rem 6%;
}

.programList__item {
    width: calc((100% - 6% * 2) / 3);
}

.programList__headImg {
    position: relative;
    overflow: hidden;
}

.programList__headImg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: transparent;
    transition: opacity .3s, background-color .3s;
}

.programList__link:hover .programList__headImg::before {
    opacity: .2;
    background-color: #111111;
}

.programList__headImg img {
    transform: scale(1.05);
    transition: transform .3s;
}

.programList__link:hover .programList__headImg img {
    transform: scale(1.01);
}

.programList__tagWrap {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    padding: 0.7rem 1.2rem 0.8rem 3.2rem;
    background-color: #FFF;
}

.programList__pinImg {
    position: absolute;
    top: 0.6rem;
    left: 1.1rem;
    width: 1.4rem;
}

.programList__tagText {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: #33414b;
}

.programList__bodyTextTypeContent {
    padding-top: 1.8rem;
}

.programList__titleWithUnderline {
    display: inline;
    padding-bottom: 0.3rem;
    font-size: 2.2rem;
    line-height: 1.6;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #3e6f9e;
    background: linear-gradient(transparent calc(100% - 2px), #336799 2px);
}

.programList__articleTitle {
    padding-top: 1.5rem;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.8;
}

.programList__termWrap {
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    gap: 0.6rem;
    padding-top: 1rem;
}

.programList__termLink {
    display: inline-block;
    padding: 0.3rem 1.2rem 0.5rem;
    border-radius: 9999px;
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    color: #888888;
    background-color: #e7e5dd;
}

.program__paginationWrap {
    padding-top: 9rem;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem 1.5rem;
}

.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.5rem;
    height: 4.8rem;
    border-radius: 5px;
    font-family: "Cabin", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #3e6f9e;
    background-color: #eff1f3;
    transition: color .18s ease, background-color .2s ease;
}

.page-numbers.current,
.page-numbers:hover {
    color: #fff;
    background-color: #3e6f9e;
}
/* -------------------- program responsive -------------------- */
@media screen and (max-width: 1100px) {
    .programList__item {
        width: calc((100% - 6%) / 2);
    }
}
/* -------------------- program responsive -------------------- */
@media screen and (max-width: 1000px) {

    .program__mainTitle {
        padding-bottom: 0.6rem;
        font-size: 3rem;
        line-height: 1.83;
        background: linear-gradient(transparent calc(100% - 2px), #336799 2px);
    }

    .c-catListModule__text {
        width: 8rem;
        font-size: 1.4rem;
        line-height: 1.92;
    }

    .c-catListModule__list {
        gap: 1rem 3rem;
        width: calc(100% - 10rem);
    }

    .c-catListModule__link {
        padding-bottom: 0.1rem;
        font-size: 1.4rem;
        line-height: 1.6;
    }

    .programList {
        gap: 4.5rem 6%;
    }

    .programList__tagWrap {
        padding: 0.8rem 1.2rem 1rem 3.2rem;
    }

    .programList__titleWithUnderline {
        font-size: 2rem;
        line-height: 1.6;
    }

    .programList__articleTitle {
        font-size: 1.4rem;
        line-height: 1.92;
    }
}
/* -------------------- program responsive -------------------- */
@media screen and (max-width: 750px) {

    .program__inner {
        width: 100%;
        padding: 4.4rem 6.5% 7rem;
    }

    .program__mainTitle {}

    .program__catListModuleWrap {
        padding-top: 3.2rem;
    }

    .c-catListModule {
        flex-direction: column;
    }

    .c-catListModule__list {
        gap: 0.5rem 3rem;
        width: calc(100% - 10rem);
        padding-top: 0.2rem;
    }

    .c-catListModule__item {}

    .c-catListModule__link {}

    .program__programListWrap {
        padding-top: 4.6rem;
    }

    .programList {
        gap: 4.5rem 6%;
    }

    .programList__item {
        width: 100%;
    }

    .programList__tagWrap {
        padding: 0.8rem 1.2rem 1rem 3.2rem;
    }

    .programList__bodyTextTypeContent {
        padding-top: 2rem;
    }

    .programList__articleTitle {
        padding-top: 1.5rem;
    }

    .programList__termWrap {
        padding-top: 2.1rem;
    }

    .program__paginationWrap {
        padding-top: 5rem;
    }
}




/* ::::::::::::::::::: program ここまで ::::::::::::::::::: */




/* ::::::::::::::::::: programSingle ::::::::::::::::::: */
.programSingle {}

.single__inner {
    width: calc(100% - 9rem);
    padding: 11.5rem 7.5% 12rem;
    margin: 0 auto 0 0;
    background-color: #ffffff;
}

.programSingle__tagTermWrap {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem 2rem;
    padding-bottom: 1.7rem;
}

.programSingle__tagWrap {
    position: relative;
    bottom: 0;
    right: 0;
    z-index: 1;
    display: inline-block;
    padding: 0.7rem 1.2rem 0.8rem 3.2rem;
    background-color: #3e6f9e;
}

.programSingle__pinImg {
    position: absolute;
    top: 0.6rem;
    left: 1.1rem;
    width: 1.4rem;
}

.programSingle__tagText {
    font-size: 1.3rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    color: #FFF;
}

.programSingle__termList {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.programSingle__termItem {
    display: inline-block;
    padding: 0.6rem 1.2rem 0.7rem;
    border-radius: 9999px;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    color: #888888;
    background-color: #e7e5dd;
}

.programSingle__mainTitleWrap {
    padding-bottom: 3.5rem;
}

.programSingle__mainTitle {
    display: inline;
    font-size: 3.5rem;
    line-height: 1.6;
    letter-spacing: 0.1em;
    font-weight: 700;
    color: #336799;
}

.single__hrLine {
    position: relative;
}

.single__hrLine::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    display: inline-block;
    width: 50px;
    height: 5px;
    background-image: url(/img/common/dotted-line-unit.png);
    background-size: 10px 5px;
}

.programSingle__detailInfoSec {
    display: block;
}
.programSingle__detailInfoSec.-off {
    display: none;
}

:root {
    --programSingleTitleFontSize: 3rem;
    --programSingleTitleFontWeight: 700;
    --programSingleTitleLineHeight: 1.56;
    --programSingleTitleLetterSpacing: 0.1em;
}
.programSingle__detailInfoSecTitle {
    font-size: var(--programSingleTitleFontSize);
    font-weight: var(--programSingleTitleFontWeight);
    line-height: var(--programSingleTitleLineHeight);
    letter-spacing: var(--programSingleTitleLetterSpacing);
    color: #336799;
}

.programSingle__detailInfoTableWrap {
    padding-top: 6.5rem;
    padding-bottom: 8rem;
}

/* detailInfoTable */
table.detailInfoTable {
    width: 100%;
    padding-bottom: 8rem;
}
table.detailInfoTable tbody {
    width: 100%;
}
table.detailInfoTable tr {
    position: relative;
    gap: 3px;
    display: flex;
    width: 100%;
}
table.detailInfoTable tr:not(:first-child) {
    margin-top: 3px;
}

table.detailInfoTable tr:first-child > th {
    border-top-left-radius: 5px;
}
table.detailInfoTable tr:first-child > td {
    border-top-right-radius: 5px;
}
table.detailInfoTable tr:last-child > th {
    border-bottom-left-radius: 5px;
}
table.detailInfoTable tr:last-child > td {
    border-bottom-right-radius: 5px;
}
table.detailInfoTable tr th {
    display: block;
    width: 18rem;
    padding: var(--mbtk--th_td-padding);
    text-align: left;
    font-size: var(--mbtk--text-base-fz);
    font-weight: 700;
    line-height: var(--mbtk--text-base-lh);
    color: #336799;
    background-color: #f3f5f7;
}
table.detailInfoTable tr th a {
    text-decoration: underline;
    opacity: 1;
    transition: opacity .2s;
}
table.detailInfoTable tr th a:hover {
    opacity: 0.6;
}
table.detailInfoTable tr td {
    display: block;
    width: calc(100% - 18rem - 3px);
    padding: var(--mbtk--th_td-padding);
    font-size: var(--mbtk--text-base-fz);
    line-height: var(--mbtk--text-base-lh);
    background-color: #f3f5f7;
}
table.detailInfoTable tr td a {
    text-decoration: underline;
    color: #336799;
    opacity: 1;
    transition: opacity .2s;
}
table.detailInfoTable tr td a:hover {
    opacity: 0.6;
}

.single__hrBottomLine {
    width: 100%;
    height: 2px;
    background-color: #eff1f3;
}

.programSingle__otherArticleSec {
    padding-top: 7.2rem;
}

.programSingle__otherArticleSecTitle {
    font-size: var(--programSingleTitleFontSize);
    font-weight: var(--programSingleTitleFontWeight);
    line-height: var(--programSingleTitleLineHeight);
    letter-spacing: var(--programSingleTitleLetterSpacing);
    color: #336799;
}

.programSingle__programListWrap {
    padding-top: 7rem;
}

.single__returnLinkWrap {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 6.5rem;
}

.single__returnLink {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 1rem;
    min-width: 300px;
    padding: 1.3rem 2rem 1.4rem;
    border-radius: 5px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.025em;
    color: #FFF;
    background-color: #3e6f9e;
    opacity: 1;
    transition: opacity .2s;
}
.single__returnLink:hover {
    opacity: 0.6;
}
.single__returnLink::before {
    content: '';
    position: relative;
    top: 0.4rem;
    left: 0;
    z-index: 1;
    display: inline-block;
    width: 2.1rem;
    height: 2.1rem;
    background-image: url('/img/common/triangle-circle-white.png');
    background-size: 21px 21px;
}
/* ----- name responsive (1000) ----- */
@media screen and (max-width: 1000px) {
/* ::::::::::::::::::: programSingle ::::::::::::::::::: */
    .programSingle {}

    .single__inner {}

    .programSingle__tagTermWrap {}

    .programSingle__tagWrap {}

    .programSingle__pinImg {}

    .programSingle__tagText {}

    .programSingle__termList {}

    .programSingle__termItem {}

    .programSingle__mainTitleWrap {}

    .programSingle__mainTitle {
        font-size: 2.5rem;
        letter-spacing: 0.08em;
    }

    .single__hrLine {}

    .single__hrLine::before {
        width: 48px;
        height: 4px;
        background-size: 8px 4px;
    }

    .programSingle__detailInfoSec {}

    :root {
        --programSingleTitleFontSize: 2.2rem;
        --programSingleTitleLineHeight: 1.6;
    }
    .programSingle__detailInfoSecTitle {}

    .programSingle__detailInfoTableWrap {}

    /* detailInfoTable */
    table.detailInfoTable {}
    table.detailInfoTable tbody {}
    table.detailInfoTable tr {}
    table.detailInfoTable tr th {
        width: 9rem;
    }
    table.detailInfoTable tr th a {}
    table.detailInfoTable tr th a:hover {}
    table.detailInfoTable tr td {
        width: calc(100% - 9rem);
    }
    table.detailInfoTable tr td a {}
    table.detailInfoTable tr td a:hover {}

    .single__hrBottomLine {}

    .programSingle__otherArticleSec {}

    .programSingle__otherArticleSecTitle {}

    .programSingle__programListWrap {}

    .single__returnLinkWrap {}

    .single__returnLink {
        min-width: 288px;
        padding: 1.3rem 2rem 1.4rem;
        font-size: 1.7rem;
        line-height: 1.75;
    }
    .single__returnLink:hover {}
    .single__returnLink::before {
        top: 0.4rem;
        left: 0;
    }
}
/* ----- name responsive (750) ----- */
@media screen and (max-width: 750px) {
/* ::::::::::::::::::: programSingle ::::::::::::::::::: */
    .programSingle {}

    .single__inner {
        width: 100%;
        padding: 5.9rem 6.5% 6.5rem;
    }

    .programSingle__tagTermWrap {
        gap: 1.5rem 1.5rem;
        padding-bottom: 1.5rem;
    }

    .programSingle__tagWrap {}

    .programSingle__pinImg {}

    .programSingle__tagText {}

    .programSingle__termList {}

    .programSingle__termItem {
        padding: 0.7rem 1.2rem 0.7rem;
        font-size: 1.4rem;
    }

    .programSingle__mainTitleWrap {
        padding-bottom: 3.8rem;
    }

    .programSingle__mainTitle {}
    .single__hrLine {}
    .single__hrLine::before {}
    .programSingle__detailInfoSec {}
    :root {}
    .programSingle__detailInfoSecTitle {}
    .programSingle__detailInfoTableWrap {
        padding-top: 4rem;
    }

    /* detailInfoTable */
    table.detailInfoTable {
        padding-bottom: 4.5rem;
    }
    table.detailInfoTable tbody {
        /* margin: -6px;
        width: calc(100% + 12px); */
    }
    table.detailInfoTable tr {}
    table.detailInfoTable tr th {}
    table.detailInfoTable tr th a {}
    table.detailInfoTable tr th a:hover {}
    table.detailInfoTable tr td {}
    table.detailInfoTable tr td a {}
    table.detailInfoTable tr td a:hover {}
    .single__hrBottomLine {}
    .programSingle__otherArticleSec {
        padding-top: 3.2rem;
    }

    .programSingle__otherArticleSecTitle {}
    .programSingle__programListWrap {
        padding-top: 4.2rem;
    }

    .single__returnLinkWrap {
        padding-top: 5rem;
    }

    .single__returnLink {}
    .single__returnLink:hover {}
    .single__returnLink::before {
        top: 0.4rem;
        left: 0;
    }
}

/* ::::::::::::::::::: programSingle ここまで ::::::::::::::::::: */


/* ::::::::::::::::::: error ::::::::::::::::::: */
main.error {}

.errorSec {
    padding-top: 16rem;
}

.errorSec__title {
    display: inline;
    padding-bottom: 0.8rem;
    font-size: 4.2rem;
    line-height: 2.2;
    letter-spacing: 0.025em;
    font-weight: 700;
    color: #336799;
    background: linear-gradient(transparent calc(100% - 3px), #336799 3px);
}

.errorSec__text {
    padding-top: 8rem;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.025em;
    line-height: 1.8;
    color: #33414b;
}

.errorSec__linkWrap {
    padding-top: 9rem;
}

.errorSec__link {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 1rem;
    min-width: 300px;
    padding: 1.3rem 2rem 1.4rem;
    border-radius: 5px;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.75;
    letter-spacing: 0.025em;
    color: #FFF;
    background-color: #3e6f9e;
    opacity: 1;
    transition: opacity .2s;
}
.errorSec__link:hover {
    opacity: 0.6;
}
/* -------------------- error responsive (1000) -------------------- */
@media screen and (max-width: 1000px) {
    main.error {}

    .errorSec {
        padding-top: 16rem;
    }

    .errorSec__title {
        padding-bottom: 0.6rem;
        font-size: 3rem;
        line-height: 1.83;
        background: linear-gradient(transparent calc(100% - 2px), #336799 2px);
    }

    .errorSec__text {
        /* padding-top: 8rem; */
        font-size: 1.5rem;
    }

    .errorSec__linkWrap {
        /* padding-top: 9rem; */
    }

    .errorSec__link {
        min-width: 288px;
        padding: 1.3rem 2rem 1.4rem;
        font-size: 1.7rem;
        line-height: 1.75;
    }
    .errorSec__link:hover {}
}
/* -------------------- error responsive (1000) -------------------- */
@media screen and (max-width: 1000px) {
    main.error {}

    .errorSec {
        padding-top: 4.9rem;
    }

    .errorSec__title {}

    .errorSec__text {
        padding-top: 4rem;
    }

    .errorSec__linkWrap {
        padding-top: 4.5rem;
    }
    .errorSec__link {}
    .errorSec__link:hover {}
}



/* ::::::::::::::::::: error ここまで ::::::::::::::::::: */





















