/* 変数設定 */
:root {
    --color-main: #2F70A9;
    --color-main02: #283F95;
    --color-main03: #5998CF;
    /* --color-main-hover: ; */
    --color-wh: #FFFFFF;
    --color-bk: #222222;
    --color-brown: #934B21;
    --color-coffee: #6F4E4E;
    --color-tea: #688E67;
    --color-dark: #A0A6A6;
    --color-dark02: #4C5050;
    --color-bg: #EEFBFB;
    --color-bg02: #F2F3F7;
    --color-hover: #ECEEF6;
    --color-hover02: #F5F9FD;
    --color-border: #6A7ECB;
    --color-border02: #D9D9D9;
    --color-feature-yellow: #FFF2B0;
    --leading-trim: calc((1rem - 1lh) / 2);
}
body {
    position: relative;
}
.mgb-res8060 {
    margin-bottom: 5rem;
    @media (768px > width) {
        margin-bottom: 3.75rem;
    }
}
.img-sp-full {
    @media (768px > width) {
        width: 100vw;
        margin: 0 calc(50% - 50vw);
    }
}
.c-logo {
    text-align: center;
    & .c-logo__text {
        color: var(--color-main);
        @media (768px > width) {
            font-size: 1.125rem;
        }
    }
    .custom-logo-link {
        text-align: center;
        img {
            max-width: 210px;
            vertical-align: middle;
            @media (768px > width) {
                max-width: 130px;
            }
        }
    }
}
.breadcrumb {
    text-align: right;
    width: 100%;
    @media (768px > width) {
        margin-top: 1.625rem;
    }
    #breadcrumbs {
        display: flex;
        justify-content: right;
        align-items: center;
        @media (768px > width) {
            justify-content: left;
        }
    }
    a, span {
        font-size: .875rem;
        color: var(--color-dark03);
        @media (768px > width) {
            font-size: .75rem;
        }
    }
    .breadcrumb_last {
        color: var(--color-main);
    }
}
.l-pageHeader {
    position: relative;
    padding: 10rem 0 5.9375rem;
    @media (768px > width) {
        padding: 6.125rem 0 3.125rem;
    }
    & .l-pageHeader__title {
        margin: 0;
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--color-main);
        @media (768px > width) {
            font-size: 1.5rem;
        }
        &::after {
            content: attr(data-en);
            display: block;
            font-size: 1rem;
            font-weight: 400;
            color: var(--color-dark);
        }
    }
}
.error-404 {
    text-align: center;
    padding-bottom: 5rem;
    & .c-button {
        margin: 2rem auto;
    }
}

.l-inner {
    box-sizing: border-box;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 2rem;
}
.l-inner--content {
    box-sizing: border-box;
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0;
}
.c-backToTop__btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--color-main);
    img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}
/* フッター */
.l-footer {
    position: relative;
    z-index: 999;
    border-top: 1px solid var(--color-bk);
    & .l-footer__inner {
        display: flex;
        justify-content: flex-end;
        padding: 2.8rem 0 4rem;
        @media (960px > width) {
            padding: 1.8rem 0 2.2rem;
        }
    }
    & .l-footer__copy {
        p {
            text-align: center;
            font-size: 1rem;
            color: var(--color-bk);
        }
    }
}
.c-title {
    font-size: 3.6rem;
    font-weight: 700;
    font-family: "Josefin Sans", sans-serif;
    color: var(--color-bk);
    letter-spacing: .25rem;
    @media (768px > width) {
        font-size: 2.4rem;
    }
}
.c-title--en {
    display: inline-block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-main);
    @media (768px > width) {
        font-size: .875rem;
    }
}
.c-button {
    position: relative;
    display: block;
    width: 280px;
    padding: 1.125rem 2rem;
    border-radius: 5.625rem;
    font-size: .9375rem;
    font-weight: 500;
    border: 1px solid var(--color-main);
    color: var(--color-wh);
    background: linear-gradient(to right, var(--color-main), var(--color-main05));
    box-shadow: 0 4px 7px #7979796E;
    /* transition: .3s ease; */
    &::after {
        position: absolute;
        content: "";
        top: 50%;
        right: 2.375rem;
        transform: translateY(-50%);
        width: 9px;
        height: 9px;
        border-radius: 50%;
        background: var(--color-wh);
    }
    &:hover {
        &::after {
            transform: translate(9px ,-50%);
            transition: .3s ease;
        }
    }
}
.c-button--wh {
    position: relative;
    display: block;
    width: 230px;
    padding: .8125rem 2rem;
    border-radius: 5.625rem;
    font-size: .9375rem;
    font-weight: 400;
    border: 1px solid var(--color-main);
    color: var(--color-main);
    background: var(--color-wh);
    transition: .3s ease;
    &::after {
        position: absolute;
        content: "";
        top: 50%;
        right: 1.875rem;
        transform: translateY(-50%);
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--color-main);
        transition: .3s ease;
    }
    &:hover {
        color: var(--color-wh);
        background: var(--color-main);
        &::after {
            transform: translate(9px ,-50%);
            background: var(--color-wh);
        }
    }
}
.c-pagination {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    text-align: center;
    margin-top: 6.25rem;
    @media (768px > width) {
        margin-top: 3.125rem;
    }
    span {
        display: block;
        align-content: center;
        width: 34px;
        height: 34px;
        border-radius: .25rem;
        font-size: 1.25rem;
        &.current {
            background: var(--color-main);
            color: var(--color-wh);
        }
    }
}

.c-caption {
    text-align: left;
    padding-top: .875rem;
    font-size: .75rem;
    font-weight: 500;
}
.u-color--wh {
    color: var(--color-wh);
}
/* utility */
.u-fw-400 {
    font-weight: 400;
}
.u-mx-auto {
    margin: 0 auto;
}
.u-text--center {
    text-align: center;
}
.u-text-spLeft {
    text-align: center;
    @media (768px > width) {
        text-align: left;
    }
}
.u-text-spCenter {
    @media (768px > width) {
        margin: 0 auto;
    }
}
.u-text-spCenter {
    text-align: left;
    @media (768px > width) {
        text-align: center;
    }
}
.u-pc--hidden {
    display: none!important;
    @media (768px > width) {
        display: block!important;
    }
}
.u-sp--hidden {
    display: block!important;
    @media (768px > width) {
        display: none!important;
    }
}
.center-left {
    text-align: center;
    @media (768px > width) {
        text-align: left;
    }
}
.wpcf7-turnstile {
    display: none;
}