@charset "UTF-8";
/* 
Theme Name: ◆◆◆site_name◆◆◆
Author: ◆◆◆site_name◆◆◆
Author URI: https://◆◆◆◆◆◆/
Version: 1.0
*/
/* CSS Document */
:root {
    --font-jp: 'Noto Sans JP', sans-serif;
    --font-en: "Inter", sans-serif;
    --color-gray: #F2F2F2;
    --color-black: #121212;
    --header-height: 90px;
    --inner-width: 1400px;
    --inner-outer-width: calc(min(50vw, 1920px / 2) - min(var(--inner-width) / 0.88, min(100vw, 1920px)) * 0.44);
}
@media (max-width: 1280px) {
    :root {
        --header-height: 80px;
    }
}
@media (max-width: 768px) {
    :root {
        --header-height: 48px;
        --inner-outer-width: calc(50vw - min(var(--inner-width) / 0.88, 100vw) * 0.46);
    }
}

.font-jp {
    font-family: var(--font-jp);
}

.font-en {
    font-family: var(--font-en);
}

html {
    font-size: 62.5%;
    scroll-padding-top: var(--header-height);
    scroll-behavior: smooth;
    -moz-text-size-adjust: 100%;
         text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
}
html body {
    min-height: 100%;
    font-size: 1.6rem;
    line-height: 1.6;
    color: var(--color-black);
    background-color: #ffffff;
    font-weight: 500;
    font-family: var(--font-jp);
}
@media (max-width: 1280px) {
    html body {
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    html body {
        font-size: 1.4rem;
    }
}

a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.2s ease-in;
}
a:hover {
    text-decoration: none;
    opacity: 0.7;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

/* ------------------------------------- /
/   共通
/* ------------------------------------- */
.taC {
    text-align: center;
}

.taR {
    text-align: right;
}

.iB {
    display: inline-block;
}

.inner {
    width: min(100%, var(--inner-width) / 0.88);
    margin: 0 auto;
    padding: 0 min(6%, (var(--inner-width) / 0.88 - var(--inner-width)) / 2);
}
@media (max-width: 768px) {
    .inner {
        padding: 0 4%;
    }
}

@media (max-width: 1280px) {
    .pc1280 {
        display: none !important;
    }
}

.sp1280 {
    display: none;
}
@media (max-width: 1280px) {
    .sp1280 {
        display: block !important;
    }
}

@media (max-width: 768px) {
    .pc768 {
        display: none !important;
    }
}

.sp768 {
    display: none;
}
@media (max-width: 768px) {
    .sp768 {
        display: block !important;
    }
}

.grecaptcha-badge {
    visibility: hidden;
}

.mtm100 {
    margin-top: -100px;
    position: relative;
}
@media (max-width: 768px) {
    .mtm100 {
        margin-top: -50px;
    }
}

.mtm300 {
    margin-top: -300px;
    position: relative;
}
@media (max-width: 1440px) {
    .mtm300 {
        margin-top: -250px;
    }
}
@media (max-width: 768px) {
    .mtm300 {
        margin-top: -100px;
    }
}

/* ------------------------------------- /
/   menu-trigger
/* ------------------------------------- */
.menu-trigger {
    --trigger-wrapper-width: 40px;
    --trigger-wrapper-height: 28px;
    --trigger-width: 36px;
    --trigger-height: 3px;
    --trigger-gap: 8px;
    display: none;
    width: var(--trigger-wrapper-width);
    height: var(--trigger-wrapper-height);
    background: none;
    border: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    cursor: pointer;
    position: fixed;
    right: 5.6%;
    top: calc((var(--header-height) - var(--trigger-wrapper-height)) / 2);
    z-index: 100001;
    padding-block-end: 0;
    padding-block-start: 0;
}
@media (max-width: 1050px) {
    .menu-trigger {
        display: block;
    }
}
@media (max-width: 768px) {
    .menu-trigger {
        right: 22px;
        --trigger-wrapper-height: 19px;
        --trigger-width: 25px;
        --trigger-gap: 5px;
    }
}
.menu-trigger span {
    display: inline-block;
    width: var(--trigger-width);
    height: var(--trigger-height);
    border-radius: calc(var(--trigger-height) / 2);
    background: linear-gradient(270deg, #77a1db 0%, #a4d7f2 100%);
    position: absolute;
    left: calc(50% - var(--trigger-width) / 2);
    transition-duration: 0.6s;
}
.menu-trigger span:nth-of-type(1) {
    top: calc(50% - var(--trigger-gap) - var(--trigger-height));
}
.menu-trigger span:nth-of-type(2) {
    top: calc(50% + var(--trigger-gap) + var(--trigger-height));
}
.menu-trigger span:nth-of-type(3) {
    top: 50%;
}
.menu-trigger.opened span {
    animation-duration: 0.6s;
    animation-timing-function: ease-out;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.menu-trigger.opened span:nth-of-type(1) {
    animation-name: menu-close_01;
}
.menu-trigger.opened span:nth-of-type(2) {
    animation-name: menu-close_02;
}
.menu-trigger.opened span:nth-of-type(3) {
    animation-name: menu-close_03;
}
.menu-trigger.active span {
    background-color: var(--color-black);
}
.menu-trigger.active span:nth-of-type(1) {
    animation-name: menu-open_01;
}
.menu-trigger.active span:nth-of-type(2) {
    animation-name: menu-open_02;
}
.menu-trigger.active span:nth-of-type(3) {
    animation-name: menu-open_03;
}
@keyframes menu-open_01 {
    0% {
        top: calc(50% - var(--trigger-gap) - var(--trigger-height));
        transform: rotate(0deg);
    }
    33.3333% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
}
@keyframes menu-close_01 {
    0% {
        top: calc(50% - 0px);
        transform: rotate(45deg);
    }
    33.3333% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% - 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% - var(--trigger-gap) - var(--trigger-height));
        transform: rotate(0deg);
    }
}
@keyframes menu-open_03 {
    0% {
        width: var(--trigger-width);
        left: calc(50% - var(--trigger-width) / 2);
    }
    66.6666% {
        width: var(--trigger-width);
        left: calc(50% - var(--trigger-width) / 2);
    }
    70% {
        width: 0;
        left: calc(50% - 0px);
    }
    100% {
        width: 0;
        left: calc(50% - 0px);
    }
}
@keyframes menu-close_03 {
    0% {
        width: 0;
        left: calc(50% - 0px);
    }
    66.6666% {
        width: var(--trigger-width);
        left: calc(50% - var(--trigger-width) / 2);
    }
    70% {
        width: var(--trigger-width);
        left: calc(50% - var(--trigger-width) / 2);
    }
    100% {
        width: var(--trigger-width);
        left: calc(50% - var(--trigger-width) / 2);
    }
}
@keyframes menu-open_02 {
    0% {
        top: calc(50% + var(--trigger-gap) + var(--trigger-height));
        transform: rotate(0deg);
    }
    33.3333% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
}
@keyframes menu-close_02 {
    0% {
        top: calc(50% + 0px);
        transform: rotate(-45deg);
    }
    33.3333% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    66.6666% {
        top: calc(50% + 0px);
        transform: rotate(0deg);
    }
    100% {
        top: calc(50% + var(--trigger-gap) + var(--trigger-height));
        transform: rotate(0deg);
    }
}

/* ------------------------------------- /
/  header
/* ------------------------------------- */
header {
    font-size: 1.8rem;
    font-weight: 600;
}
@media (max-width: 1720px) {
    header {
        font-size: 1.6rem;
    }
}
@media (max-width: 1440px) {
    header {
        font-size: 1.4rem;
    }
}
@media (max-width: 1280px) {
    header {
        font-size: 1.2rem;
    }
}
header .header__left {
    position: fixed;
    top: 20px;
    left: 35px;
    width: calc(100% - 800px - 70px - 20px);
    height: var(--header-height);
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(54, 129, 204, 0.12);
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    padding: 0 15px;
    transition-delay: 0.8s;
    transition-duration: 0.4s;
    transition: box-shadow 0.4s 0.8s;
}
header .header__left.shadow__none {
    box-shadow: unset;
    transition: box-shadow 0s 0s;
}
@media (max-width: 1720px) {
    header .header__left {
        left: 20px;
        width: calc(100% - 630px - 40px - 20px);
    }
}
@media (max-width: 1440px) {
    header .header__left {
        width: calc(100% - 600px - 40px - 20px);
    }
}
@media (max-width: 1280px) {
    header .header__left {
        width: calc(100% - 455px - 40px - 15px);
        padding: 0 15px;
    }
}
@media (max-width: 1050px) {
    header .header__left {
        top: 0;
        left: 0;
        border-radius: unset;
        width: 100%;
        padding: 0 5.6%;
    }
}
header .header__left .header__logo {
    max-width: 200px;
}
@media (max-width: 1720px) {
    header .header__left .header__logo {
        max-width: 160px;
    }
}
@media (max-width: 1440px) {
    header .header__left .header__logo {
        max-width: 130px;
    }
}
@media (max-width: 1280px) {
    header .header__left .header__logo {
        max-width: 110px;
    }
}
@media (max-width: 768px) {
    header .header__left .header__logo {
        max-width: 103px;
    }
}
header .header__left .header__menu {
    display: flex;
    align-items: center;
    gap: 15px;
}
@media (max-width: 1720px) {
    header .header__left .header__menu {
        gap: 10px;
    }
}
@media (max-width: 1440px) {
    header .header__left .header__menu {
        gap: 7px;
    }
}
@media (max-width: 1280px) {
    header .header__left .header__menu {
        gap: 6px;
    }
}
@media (max-width: 1050px) {
    header .header__left .header__menu {
        display: none;
    }
}
header .header__right {
    position: fixed;
    top: 20px;
    right: 35px;
    width: 800px;
    height: var(--header-height);
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(54, 129, 204, 0.12);
    z-index: 10;
    line-height: 1.22;
    display: flex;
    align-items: center;
    padding: 15px 20px 15px 30px;
    gap: 15px;
}
@media (max-width: 1720px) {
    header .header__right {
        right: 20px;
        width: 630px;
        padding: 15px 15px;
    }
}
@media (max-width: 1440px) {
    header .header__right {
        padding: 15px 10px;
        width: 600px;
    }
}
@media (max-width: 1280px) {
    header .header__right {
        gap: 10px;
        width: 455px;
    }
}
@media (max-width: 1050px) {
    header .header__right {
        display: none;
    }
}
header .header__right .header__right__btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 180px;
    height: 60px;
    border-radius: 5px;
    background: #3681CC;
    border: 1px solid #3681CC;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    padding: 0 0 0 40px;
}
header .header__right .header__right__btn::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    aspect-ratio: 1;
    background: url(../img/common/header_web.svg) center/contain no-repeat;
}
@media (max-width: 1720px) {
    header .header__right .header__right__btn::before {
        left: 6px;
        width: 20px;
    }
}
@media (max-width: 1720px) {
    header .header__right .header__right__btn {
        font-size: 1.7rem;
        width: 140px;
        height: 50px;
        padding: 0 0 0 30px;
    }
}
@media (max-width: 1280px) {
    header .header__right .header__right__btn {
        font-size: 1.2rem;
        width: 100px;
    }
}
header .header__right .header__right__btn.gr {
    background: #42B89A;
    border: 1px solid #42B89A;
}
header .header__right .header__right__btn.gr::before {
    background: url(../img/common/header_line.svg) center/contain no-repeat;
}
header .header__right .header__right__btn.gr:hover {
    color: #42B89A;
}
header .header__right .header__right__btn.or {
    background: #EB9347;
    border: 1px solid #EB9347;
}
header .header__right .header__right__btn.or::before {
    background: url(../img/common/header_siryou.svg) center/contain no-repeat;
}
header .header__right .header__right__btn.or:hover {
    color: #EB9347;
}
header .header__right .header__right__btn:hover {
    opacity: unset;
    background: #fff;
    color: #3681CC;
}

.nav {
    display: none;
}
@media (max-width: 1050px) {
    .nav {
        display: block;
        width: 100%;
        height: 100vh;
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        transition-duration: 0.8s;
        transition-delay: 0.4s;
        transform: translateY(-100%);
        z-index: 9;
        padding: 48px 22px 0;
        background: url(../img/common/nav_bg.webp) bottom right/66% auto no-repeat, #fff;
    }
    .nav.active {
        transform: translateY(0);
        transition-delay: 0s;
    }
    .nav.active .wrapper {
        transition-delay: 0.8s;
        opacity: 1;
    }
    .nav .wrapper {
        opacity: 0;
        transition-duration: 0.4s;
    }
    .nav .wrapper .nav__menu {
        font-size: 1.6rem;
        font-weight: 600;
    }
    .nav .wrapper .nav__menu a {
        display: block;
        border-bottom: 1px solid #3681CC;
        width: 100%;
        padding: 25px 0 10px;
    }
    .nav .wrapper .nav__link {
        margin-top: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        font-weight: 700;
    }
    .nav .wrapper .nav__link .border {
        display: block;
        width: 1px;
        height: 15px;
        background: #121212;
    }
    .nav .wrapper .nav__contact {
        margin-top: 30px;
        border-radius: 7px;
        background: #F4FBFF;
        padding: 30px 22px;
    }
    .nav .wrapper .nav__contact p {
        font-size: 1.6rem;
        font-weight: 600;
        text-align: center;
    }
    .nav .wrapper .nav__contact a {
        font-size: 2rem;
        font-weight: 700;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 50px;
        background: #3681CC;
        border: 1px solid #3681CC;
        border-radius: 5px;
        color: #fff;
        max-width: 305px;
        margin: 0 auto;
    }
    .nav .wrapper .nav__contact a.gr {
        background: #42B89B;
        border-color: #42B89B;
    }
    .nav .wrapper .nav__contact a.gr:hover {
        color: #42B89B;
    }
    .nav .wrapper .nav__contact a.or {
        background: #EB9347;
        border-color: #EB9347;
    }
    .nav .wrapper .nav__contact a.or:hover {
        color: #EB9347;
    }
    .nav .wrapper .nav__contact a:hover {
        opacity: unset;
        background: #fff;
        color: #3681CC;
    }
}

.following__cta {
    position: fixed;
    right: 10px;
    bottom: 30px;
    width: 240px;
    height: 302px;
    width: 240px;
    border-radius: 10px;
    box-shadow: 0px 3px 40px rgba(54, 129, 204, 0.12);
    padding: 20px;
    z-index: 2;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.5s;
}
.following__cta.show {
    visibility: visible;
    opacity: 1;
}
@media (max-width: 768px) {
    .following__cta {
        right: 0;
        width: 100%;
        height: 110px;
        bottom: 0;
        border-radius: unset;
        padding: 10px 22px;
    }
}
.following__cta::before {
    content: "";
    position: absolute;
    border-radius: inherit;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    opacity: 0.9;
    z-index: -1;
}
.following__cta .txt {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.75;
    text-align: center;
}
@media (max-width: 768px) {
    .following__cta .txt {
        display: none;
    }
}
.following__cta img {
    max-width: 190px;
    margin: 0 auto;
}
.following__cta .bl {
    margin-top: 5px;
    font-weight: 800;
    color: #3681CC;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.42;
}
.following__cta .bl .bg {
    font-size: 1.9rem;
}
.following__cta .btn__container {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
@media (max-width: 768px) {
    .following__cta .btn__container {
        flex-direction: row;
        justify-content: center;
        gap: 5px;
    }
}
@media (max-width: 768px) {
    .following__cta .popup.pc {
        display: none;
    }
}
.following__cta .popup.sp {
    display: none;
}
@media (max-width: 768px) {
    .following__cta .popup.sp {
        display: block;
    }
}
.following__cta .following__cta__btn {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: min(100%, 190px);
    height: 40px;
    border-radius: 5px;
    background: #3681CC;
    border: 1px solid #3681CC;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    position: relative;
}
@media (max-width: 768px) {
    .following__cta .following__cta__btn {
        font-size: 1.2rem;
        width: min(100%, 165px);
        padding-left: 15px;
    }
}
.following__cta .following__cta__btn::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 10px;
    width: 26px;
    aspect-ratio: 1;
    background: url(../img/common/header_web.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .following__cta .following__cta__btn::before {
        left: 5px;
        width: 20px;
    }
}
.following__cta .following__cta__btn.gr {
    background: #42B89A;
    border-color: #42B89A;
}
.following__cta .following__cta__btn.gr::before {
    background-image: url(../img/common/header_line.svg);
}
.following__cta .following__cta__btn.gr:hover {
    color: #42B89A;
}
.following__cta .following__cta__btn.gr:hover::after {
    background: #42B89A;
}
.following__cta .following__cta__btn.or {
    background: #EB9347;
    border-color: #EB9347;
}
.following__cta .following__cta__btn.or::before {
    background-image: url(../img/common/header_siryou.svg);
}
.following__cta .following__cta__btn.or:hover {
    color: #EB9347;
}
.following__cta .following__cta__btn.or:hover::after {
    background: #EB9347;
}
.following__cta .following__cta__btn:hover {
    opacity: unset;
    color: #3681CC;
    background: #fff;
}
.following__cta .following__cta__btn:hover::after {
    background: #3681CC;
}
.following__cta .following__cta__btn::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 18px;
    width: 10px;
    aspect-ratio: 10/9;
    background: #fff;
    -webkit-mask: url(../img/common/arrow_right.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_right.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .following__cta .following__cta__btn::after {
        right: 5px;
        width: 8px;
    }
}

/* ------------------------------------- /
/  footer
/* ------------------------------------- */
footer {
    background: #42434E;
    color: #fff;
}
footer .inner {
    display: flex;
    justify-content: space-between;
    padding-top: 130px;
    padding-bottom: 130px;
}
@media (max-width: 1440px) {
    footer .inner {
        padding-top: 90px;
        padding-bottom: 90px;
    }
}
@media (max-width: 1280px) {
    footer .inner {
        padding-top: 70px;
        padding-bottom: 70px;
    }
}
@media (max-width: 768px) {
    footer .inner {
        justify-content: center;
        padding-top: 40px;
        padding-bottom: 65px;
    }
}
footer .footer__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: 1.6rem;
    font-weight: 700;
}
footer .footer__left .footer__logo {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 476px;
}
@media (max-width: 1440px) {
    footer .footer__left .footer__logo {
        max-width: 350px;
    }
}
@media (max-width: 1280px) {
    footer .footer__left .footer__logo {
        max-width: 320px;
    }
}
@media (max-width: 768px) {
    footer .footer__left .footer__logo {
        max-width: 267px;
    }
}
@media (max-width: 768px) {
    footer .footer__left .footer__left__link {
        display: none;
    }
}
footer .footer__left .copyright {
    font-size: 1.4rem;
    margin-top: 40px;
}
@media (max-width: 1280px) {
    footer .footer__left .copyright {
        font-size: 1.2rem;
    }
}
footer .footer__right {
    font-size: 1.8rem;
    font-weight: 700;
}
@media (max-width: 1440px) {
    footer .footer__right {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    footer .footer__right {
        display: none;
    }
}
footer .footer__right .footer__right__menu {
    display: flex;
    border-bottom: 1px solid #fff;
    gap: 100px;
}
@media (max-width: 1280px) {
    footer .footer__right .footer__right__menu {
        flex-direction: column;
        gap: 20px;
    }
}
footer .footer__right .footer__right__menu ul {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
footer .footer__right .footer__right__btn__container {
    display: flex;
    gap: 30px;
}
@media (max-width: 1440px) {
    footer .footer__right .footer__right__btn__container {
        gap: 20px;
    }
}
@media (max-width: 1280px) {
    footer .footer__right .footer__right__btn__container {
        flex-direction: column;
    }
}
footer .footer__right .footer__right__btn__container .footer__right__btn {
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 220px;
    height: 80px;
    border-radius: 5px;
    background: #3681CC;
    border: 1px solid #3681CC;
    color: #fff;
    font-size: 2.6rem;
    font-weight: 800;
    position: relative;
}
@media (max-width: 1440px) {
    footer .footer__right .footer__right__btn__container .footer__right__btn {
        width: 200px;
        height: 70px;
        font-size: 2.2rem;
    }
}
footer .footer__right .footer__right__btn__container .footer__right__btn.gr {
    background: #42B89A;
    border: 1px solid #42B89A;
}
footer .footer__right .footer__right__btn__container .footer__right__btn.gr:hover {
    color: #42B89A;
}
footer .footer__right .footer__right__btn__container .footer__right__btn.or {
    background: #EB9347;
    border: 1px solid #EB9347;
}
footer .footer__right .footer__right__btn__container .footer__right__btn.or:hover {
    color: #EB9347;
}
footer .footer__right .footer__right__btn__container .footer__right__btn:hover {
    opacity: unset;
    background: #fff;
    color: #3681CC;
}

/* ------------------------------------- /
/  共通ブロック
/* ------------------------------------- */
.lower__top {
    padding: 250px 0 180px;
    background: url(../img/common/lower_bg.webp) center bottom/cover no-repeat;
}
@media (max-width: 1440px) {
    .lower__top {
        padding: 200px 0 160px;
    }
}
@media (max-width: 1000px) {
    .lower__top {
        padding: 180px 0 130px;
    }
}
@media (max-width: 768px) {
    .lower__top {
        padding: 80px 0 80px;
    }
}
.lower__top .lower__h1__wrapper {
    position: relative;
}
.lower__top .lower__h1__wrapper .lower__h1__en {
    font-size: 15rem;
    font-weight: 900;
    font-family: var(--font-en);
    color: #fff;
    opacity: 0.8;
    line-height: 1.21;
    padding-left: 40px;
}
@media (max-width: 1440px) {
    .lower__top .lower__h1__wrapper .lower__h1__en {
        font-size: 12rem;
        padding-left: 30px;
    }
}
@media (max-width: 1000px) {
    .lower__top .lower__h1__wrapper .lower__h1__en {
        font-size: 8rem;
        padding-left: 20px;
    }
}
@media (max-width: 768px) {
    .lower__top .lower__h1__wrapper .lower__h1__en {
        font-size: 4.7rem;
        padding-left: 10px;
    }
}
@media (max-width: 768px) {
    .lower__top .lower__h1__wrapper .lower__h1__en.font80 {
        font-size: 3.8rem;
    }
}
.lower__top .lower__h1__wrapper .lower__h1 {
    font-size: 6rem;
    font-weight: 800;
    color: #3681CC;
    line-height: 1.45;
    position: absolute;
    left: 0;
    bottom: 0;
}
@media (max-width: 1440px) {
    .lower__top .lower__h1__wrapper .lower__h1 {
        font-size: 4.8rem;
    }
}
@media (max-width: 1000px) {
    .lower__top .lower__h1__wrapper .lower__h1 {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .lower__top .lower__h1__wrapper .lower__h1 {
        font-size: 2.5rem;
    }
}

.bottom__breadcrumb {
    padding: 40px 0;
}
.bottom__breadcrumb .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    color: #3681CC;
}
.bottom__breadcrumb .breadcrumb li:not(.this) {
    padding-right: 10px;
    position: relative;
}
.bottom__breadcrumb .breadcrumb li:not(.this)::before {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 2px;
    background: #3681CC;
}
.bottom__breadcrumb .breadcrumb .this {
    color: #B5B5B5;
}

.ofh {
    overflow: hidden;
}

.top__features__consult {
    position: relative;
    z-index: 1;
    color: #fff;
}
.top__features__consult .wrapper {
    background: url(../img/common/consult_bg.webp) center/cover no-repeat;
    margin: 0 30px;
    border-radius: 20px;
    max-width: 1920px;
}
@media (max-width: 768px) {
    .top__features__consult .wrapper {
        margin: 0 20px;
        border-radius: 10px;
    }
}
.top__features__consult .inner {
    padding-top: 110px;
    padding-bottom: 120px;
}
@media (max-width: 1440px) {
    .top__features__consult .inner {
        padding-top: 70px;
        padding-bottom: 80px;
    }
}
@media (max-width: 1280px) {
    .top__features__consult .inner {
        padding-top: 50px;
        padding-bottom: 60px;
    }
}
@media (max-width: 768px) {
    .top__features__consult .inner {
        flex-direction: column;
        row-gap: 30px;
        padding: 30px max(4%, 40px) 35px;
    }
}
.top__features__consult .inner .txt {
    display: flex;
    justify-content: center;
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.4;
}
@media (max-width: 1440px) {
    .top__features__consult .inner .txt {
        font-size: 3.4rem;
    }
}
@media (max-width: 1280px) {
    .top__features__consult .inner .txt {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .top__features__consult .inner .txt {
        font-size: 1.8rem;
        text-align: center;
    }
}
.top__features__consult .inner .txt .bg {
    font-size: 5rem;
}
@media (max-width: 1440px) {
    .top__features__consult .inner .txt .bg {
        font-size: 4.2rem;
    }
}
@media (max-width: 1280px) {
    .top__features__consult .inner .txt .bg {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .top__features__consult .inner .txt .bg {
        font-size: 2.2rem;
    }
}
.top__features__consult .inner .link {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
}
@media (max-width: 768px) {
    .top__features__consult .inner .link {
        flex-direction: column;
        align-items: center;
    }
}
.top__features__consult .inner .link a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 400px;
    height: 80px;
    background: #3681CC;
    border: 1px solid #3681CC;
    border-radius: 5px;
    font-size: 2.6rem;
    font-weight: 800;
    position: relative;
    cursor: pointer;
}
@media (max-width: 1440px) {
    .top__features__consult .inner .link a {
        font-size: 2.4rem;
        height: 70px;
    }
}
@media (max-width: 1280px) {
    .top__features__consult .inner .link a {
        font-size: 2.2rem;
        height: 60px;
        width: 320px;
    }
}
@media (max-width: 768px) {
    .top__features__consult .inner .link a {
        width: min(100%, 305px);
        font-size: 2rem;
        height: 50px;
    }
}
.top__features__consult .inner .link a::before {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-50%);
    left: 30px;
    width: 50px;
    aspect-ratio: 1;
    background: url(../img/common/header_web.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .top__features__consult .inner .link a::before {
        left: 15px;
        width: 40px;
    }
}
@media (max-width: 768px) {
    .top__features__consult .inner .link a::before {
        left: 10px;
        width: 32px;
    }
}
.top__features__consult .inner .link a::after {
    content: "";
    position: absolute;
    width: 18px;
    aspect-ratio: 18/16;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    -webkit-mask: url(../img/common/arrow_right.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_right.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .top__features__consult .inner .link a::after {
        width: 13px;
        right: 16px;
    }
}
.top__features__consult .inner .link a.gr {
    background: #42B89A;
    border: 1px solid #42B89A;
}
.top__features__consult .inner .link a.gr::before {
    background-image: url(../img/common/header_line.svg);
}
.top__features__consult .inner .link a.gr:hover {
    color: #42B89A;
}
.top__features__consult .inner .link a.gr:hover::after {
    background: #42B89A;
}
.top__features__consult .inner .link a.or {
    background: #EB9347;
    border: 1px solid #EB9347;
}
.top__features__consult .inner .link a.or::before {
    background-image: url(../img/common/header_siryou.svg);
}
.top__features__consult .inner .link a.or:hover {
    color: #EB9347;
}
.top__features__consult .inner .link a.or:hover::after {
    background: #EB9347;
}
.top__features__consult .inner .link a:hover {
    opacity: unset;
    background: #fff;
    color: #3681CC;
}
.top__features__consult .inner .link a:hover::after {
    background: #3681CC;
}

.bg__circle {
    position: relative;
    overflow: hidden;
}
.bg__circle::before {
    content: "";
    position: absolute;
    top: 0;
    left: -25%;
    width: 150%;
    aspect-ratio: 2914/2008;
    border-radius: 50%;
    background: linear-gradient(270deg, #fff 0%, #a4d7f2 100%);
    opacity: 0.25;
    transform: rotate(160deg);
}

/* ------------------------------------- /
/  トップページ
/* ------------------------------------- */
.top__mv {
    position: relative;
}
.top__mv .abs {
    position: absolute;
    left: 6.5%;
    top: 44%;
    transform: translateY(-50%);
    font-size: 3.6rem;
    font-weight: 600;
}
@media (max-width: 1440px) {
    .top__mv .abs {
        font-size: 3rem;
    }
}
@media (max-width: 1280px) {
    .top__mv .abs {
        font-size: 2.6rem;
    }
}
@media (max-width: 768px) {
    .top__mv .abs {
        top: 65%;
        left: 4%;
        right: 4%;
        font-size: 2.1rem;
    }
}
.top__mv .abs p {
    background: #fff;
    width: -moz-fit-content;
    width: fit-content;
}
.top__mv .abs p .bl {
    color: #3681CC;
    font-weight: 700;
}
.top__mv .abs .mv__abs__img {
    margin-top: 40px;
    max-width: min(700px, 36vw);
}
@media (max-width: 768px) {
    .top__mv .abs .mv__abs__img {
        margin-top: 100px;
        max-width: unset;
        width: 100%;
    }
}

.top__mv__bottom {
    position: relative;
    margin-top: -226px;
    font-size: 2.4rem;
    text-align: center;
    padding-bottom: 140px;
}
@media (max-width: 1440px) {
    .top__mv__bottom {
        margin-top: -120px;
        font-size: 2rem;
        padding-bottom: 100px;
    }
}
@media (max-width: 1280px) {
    .top__mv__bottom {
        font-size: 1.7rem;
        padding-bottom: 70px;
    }
}
@media (max-width: 768px) {
    .top__mv__bottom {
        margin-top: -20px;
        font-size: 1.4rem;
        padding-bottom: 50px;
    }
}
.top__mv__bottom h2 {
    font-size: 7rem;
    font-weight: 800;
    color: #3681CC;
}
@media (max-width: 1440px) {
    .top__mv__bottom h2 {
        font-size: 5rem;
    }
}
@media (max-width: 1280px) {
    .top__mv__bottom h2 {
        font-size: 3.8rem;
    }
}
@media (max-width: 768px) {
    .top__mv__bottom h2 {
        font-size: 2.2rem;
    }
}

.top__passing {
    max-width: 1920px;
    margin: 0 auto;
    margin-top: -250px;
    position: relative;
    padding-bottom: 70px;
}
@media (max-width: 1920px) {
    .top__passing {
        margin-top: -300px;
        padding-bottom: 100px;
    }
}
@media (max-width: 1440px) {
    .top__passing {
        margin-top: -200px;
    }
}
@media (max-width: 1280px) {
    .top__passing {
        margin-top: -180px;
    }
}
@media (max-width: 768px) {
    .top__passing {
        margin-top: unset;
        padding-bottom: unset;
    }
}
.top__passing::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: min(48%, 922px);
    aspect-ratio: 914/916;
    background: url(../img/top/passing_bg.svg) center/contain no-repeat;
    z-index: -1;
}
@media (max-width: 1920px) {
    .top__passing::after {
        aspect-ratio: 797/916;
        background-size: 106% 100%;
        background-position: top left;
    }
}
@media (max-width: 1280px) {
    .top__passing::after {
        top: 5%;
    }
}
@media (max-width: 768px) {
    .top__passing::after {
        top: 9%;
        width: 73%;
    }
}
.top__passing::before {
    content: "";
    position: absolute;
    width: min(58%, 1114px);
    aspect-ratio: 1121/693;
    left: -7%;
    top: 70%;
    background: url(../img/top/passing.webp) center/contain no-repeat;
}
@media (max-width: 768px) {
    .top__passing::before {
        display: none;
    }
}
.top__passing .inner {
    padding-top: 250px;
    display: flex;
}
@media (max-width: 1920px) {
    .top__passing .inner {
        padding-top: 300px;
    }
}
@media (max-width: 1440px) {
    .top__passing .inner {
        padding-top: 200px;
    }
}
@media (max-width: 768px) {
    .top__passing .inner {
        padding-top: 0;
        flex-direction: column;
        row-gap: 30px;
    }
}
.top__passing .inner .left, .top__passing .inner .right {
    width: 50%;
}
@media (max-width: 768px) {
    .top__passing .inner .left, .top__passing .inner .right {
        width: 100%;
    }
}
.top__passing .inner .left {
    padding-right: 15px;
}
@media (max-width: 768px) {
    .top__passing .inner .left {
        padding-right: unset;
    }
}
.top__passing .inner .left h2 {
    font-size: 7rem;
    font-weight: 800;
    color: #3681CC;
    line-height: 1.57;
    position: relative;
    padding-top: 30px;
}
@media (max-width: 1440px) {
    .top__passing .inner .left h2 {
        font-size: 5rem;
    }
}
@media (max-width: 1280px) {
    .top__passing .inner .left h2 {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .top__passing .inner .left h2 {
        font-size: 2.2rem;
        padding-top: 10px;
    }
}
.top__passing .inner .left h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: 10px;
    background: linear-gradient(90deg, #77a1db 0%, #a4d7f2 100%);
}
@media (max-width: 768px) {
    .top__passing .inner .left h2::before {
        width: 25px;
        height: 5px;
    }
}
.top__passing .inner .right {
    padding-top: 140px;
    padding-left: 8.5%;
    font-size: 2.4rem;
    line-height: 1.92;
}
@media (max-width: 1440px) {
    .top__passing .inner .right {
        padding-top: 100px;
        font-size: 2rem;
        padding-left: 4%;
    }
}
@media (max-width: 1280px) {
    .top__passing .inner .right {
        padding-top: 70px;
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .top__passing .inner .right {
        padding-top: unset;
        font-size: 1.4rem;
        padding-left: unset;
    }
}
.top__passing .inner .right p {
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .top__passing .inner .right p {
        margin-bottom: 20px;
    }
}
.top__passing .top__passing__bg__sp {
    display: none;
}
@media (max-width: 768px) {
    .top__passing .top__passing__bg__sp {
        display: block;
        overflow: hidden;
        padding-right: 3%;
    }
    .top__passing .top__passing__bg__sp img {
        position: relative;
        left: -1%;
    }
}

.top__features {
    padding-top: 300px;
    padding-bottom: 300px;
    background: url(../img/top/features_bg.webp) center top/auto 106% no-repeat;
}
@media (max-width: 1440px) {
    .top__features {
        padding-top: 200px;
    }
}
@media (max-width: 1280px) {
    .top__features {
        padding-top: 150px;
    }
}
@media (max-width: 768px) {
    .top__features {
        margin-top: -120px;
        background: url(../img/top/features_bg_sp.webp) left 33% top/auto 100% no-repeat;
    }
}
.top__features .h2__container {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.top__features .h2__container .h2__en {
    font-size: 15rem;
    font-weight: 900;
    font-family: var(--font-en);
    color: #E2F4FF;
}
@media (max-width: 1440px) {
    .top__features .h2__container .h2__en {
        font-size: 12rem;
    }
}
@media (max-width: 1280px) {
    .top__features .h2__container .h2__en {
        font-size: 8rem;
    }
}
@media (max-width: 768px) {
    .top__features .h2__container .h2__en {
        font-size: 5rem;
    }
}
.top__features .h2__container h2 {
    font-size: 6rem;
    font-weight: 800;
    color: #3681CC;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
@media (max-width: 1440px) {
    .top__features .h2__container h2 {
        font-size: 4rem;
    }
}
@media (max-width: 1280px) {
    .top__features .h2__container h2 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .top__features .h2__container h2 {
        font-size: 2rem;
    }
}
.top__features .h2__container h2 .three {
    font-size: 9rem;
    font-family: var(--font-en);
}
@media (max-width: 1440px) {
    .top__features .h2__container h2 .three {
        font-size: 6rem;
    }
}
@media (max-width: 1280px) {
    .top__features .h2__container h2 .three {
        font-size: 4.5rem;
    }
}
@media (max-width: 768px) {
    .top__features .h2__container h2 .three {
        font-size: 3rem;
    }
}
.top__features .top__features__container {
    display: flex;
    gap: 70px;
    font-size: 1.8rem;
}
@media (max-width: 1280px) {
    .top__features .top__features__container {
        font-size: 1.6rem;
        gap: 40px;
    }
}
@media (max-width: 768px) {
    .top__features .top__features__container {
        flex-direction: column;
        row-gap: 70px;
        font-size: 1.4rem;
    }
}
.top__features .top__features__container > * {
    width: calc((100% - 140px) / 3);
}
@media (max-width: 1280px) {
    .top__features .top__features__container > * {
        width: calc((100% - 80px) / 3);
    }
}
@media (max-width: 768px) {
    .top__features .top__features__container > * {
        width: 100%;
    }
}
.top__features .top__features__container > * img {
    border-radius: 5px;
}
.top__features .top__features__container > * .img__wrapper {
    position: relative;
}
.top__features .top__features__container > * .img__wrapper .num {
    position: absolute;
    left: 0;
    bottom: 0;
    font-family: var(--font-en);
    font-size: 12rem;
    font-weight: 700;
    line-height: 1.21;
    color: #3681CC;
    transform: translate(-50%, 40%);
}
@media (max-width: 1280px) {
    .top__features .top__features__container > * .img__wrapper .num {
        font-size: 8rem;
    }
}
@media (max-width: 768px) {
    .top__features .top__features__container > * .img__wrapper .num {
        font-size: 5rem;
    }
}
.top__features .top__features__container > * .img__wrapper .num.gr {
    color: #42B89A;
}
.top__features .top__features__container > * .img__wrapper .num.or {
    color: #EB9347;
}
.top__features .top__features__container > * h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 155px;
    text-align: center;
    font-size: 3rem;
    font-weight: 800;
    color: #3681CC;
    line-height: 1.27;
    padding: 20px 0;
}
@media (max-width: 1440px) {
    .top__features .top__features__container > * h3 {
        font-size: 2.2rem;
        min-height: 110px;
    }
}
@media (max-width: 1280px) {
    .top__features .top__features__container > * h3 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .top__features .top__features__container > * h3 {
        font-size: 1.8rem;
        min-height: unset;
    }
}
.top__features .top__features__container > * h3.gr {
    color: #42B89A;
}
.top__features .top__features__container > * h3.or {
    color: #EB9347;
}
.top__features .top__features__link {
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: min(100%, 400px);
    height: 80px;
    border-radius: 5px;
    background: #3681CC;
    border: 1px solid #3681CC;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    padding: 0 45px;
    position: relative;
}
@media (max-width: 1280px) {
    .top__features .top__features__link {
        height: 70px;
        width: min(100%, 380px);
    }
}
@media (max-width: 768px) {
    .top__features .top__features__link {
        justify-content: center;
        height: 60px;
    }
}
.top__features .top__features__link::after {
    content: "";
    display: block;
    width: 18px;
    aspect-ratio: 18/16;
    background: #fff;
    -webkit-mask: url(../img/common/arrow_right.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_right.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .top__features .top__features__link::after {
        position: absolute;
        right: 25px;
        width: 13px;
    }
}
.top__features .top__features__link:hover {
    opacity: unset;
    background: #fff;
    color: #3681CC;
}
.top__features .top__features__link:hover::after {
    background: #3681CC;
}

.top__message {
    overflow: hidden;
    position: relative;
}
@media (max-width: 768px) {
    .top__message {
        padding-bottom: 60px;
        padding-top: 70px;
        margin-top: -110px;
    }
}
.top__message::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 22%;
    aspect-ratio: 424/365;
    background: url(../img/top/message_circle_2.webp) center/contain no-repeat;
    transform: translateX(-35%);
    z-index: 1;
}
@media (max-width: 1440px) {
    .top__message::before {
        width: 11%;
        transform: translateX(-50%);
    }
}
@media (max-width: 768px) {
    .top__message::before {
        width: 33%;
    }
}
.top__message .top__message__wrapper {
    background: #F4FBFF;
    border-radius: 20px;
    padding: 40px 100px 100px;
    color: #121212;
    font-size: 1.8rem;
    font-weight: 400;
    position: relative;
}
@media (max-width: 1440px) {
    .top__message .top__message__wrapper {
        padding: 40px 70px 70px;
    }
}
@media (max-width: 1280px) {
    .top__message .top__message__wrapper {
        font-size: 1.6rem;
        padding: 30px 50px 50px;
    }
}
@media (max-width: 768px) {
    .top__message .top__message__wrapper {
        padding: 30px 25px 170px;
        font-size: 1.4rem;
        font-weight: 500;
    }
}
.top__message .top__message__wrapper::before {
    content: "";
    position: absolute;
    left: 0;
    top: 12%;
    width: 16%;
    aspect-ratio: 223/137;
    background: url(../img/top/message_circle.webp) center/contain no-repeat;
    transform: translateX(-50%);
}
@media (max-width: 768px) {
    .top__message .top__message__wrapper::before {
        top: 0;
        transform: translate(-5%, -50%);
        width: 30%;
    }
}
.top__message .top__message__wrapper .h2__contaienr {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.top__message .top__message__wrapper .h2__contaienr .h2__en {
    font-size: 15rem;
    font-weight: 900;
    font-family: var(--font-en);
    color: #E2F4FF;
    line-height: 1.21;
}
@media (max-width: 1440px) {
    .top__message .top__message__wrapper .h2__contaienr .h2__en {
        font-size: 11rem;
    }
}
@media (max-width: 1280px) {
    .top__message .top__message__wrapper .h2__contaienr .h2__en {
        font-size: 8rem;
    }
}
@media (max-width: 768px) {
    .top__message .top__message__wrapper .h2__contaienr .h2__en {
        font-size: 5rem;
    }
}
.top__message .top__message__wrapper .h2__contaienr h2 {
    font-size: 6rem;
    font-weight: 800;
    color: #3681CC;
    line-height: 1.45;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 100%;
}
@media (max-width: 1440px) {
    .top__message .top__message__wrapper .h2__contaienr h2 {
        font-size: 4.8rem;
    }
}
@media (max-width: 1280px) {
    .top__message .top__message__wrapper .h2__contaienr h2 {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .top__message .top__message__wrapper .h2__contaienr h2 {
        font-size: 2rem;
    }
}
.top__message .top__message__wrapper h3 {
    font-size: 2.6rem;
    font-weight: 700;
}
@media (max-width: 1440px) {
    .top__message .top__message__wrapper h3 {
        font-size: 2.2rem;
    }
}
@media (max-width: 1280px) {
    .top__message .top__message__wrapper h3 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .top__message .top__message__wrapper h3 {
        font-size: 1.8rem;
    }
}
.top__message .top__message__wrapper .txt {
    width: min(700px, 63%);
}
@media (max-width: 768px) {
    .top__message .top__message__wrapper .txt {
        width: 100%;
    }
}
.top__message .top__message__wrapper .img {
    position: absolute;
    right: 2%;
    top: 50%;
    transform: translate(50%, -50%);
    width: min(904px, 64%);
}
@media (max-width: 768px) {
    .top__message .top__message__wrapper .img {
        position: absolute;
        top: unset;
        right: 0;
        width: 330px;
        transform: translateX(30%);
        bottom: -60px;
    }
}
.top__message .top__message__wrapper .img .img__name {
    position: absolute;
    left: 0;
    bottom: 0;
    font-size: 1.8rem;
    font-weight: 700;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(54, 129, 204, 0.12);
    padding: 6px 13px;
    line-height: 1.44;
}
@media (max-width: 1280px) {
    .top__message .top__message__wrapper .img .img__name {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .top__message .top__message__wrapper .img .img__name {
        font-size: 1.4rem;
        bottom: unset;
        top: 25%;
        transform: translateX(-65%);
    }
}

.top__news {
    position: relative;
}
.top__news::before {
    content: "";
    position: absolute;
    background: linear-gradient(#77a1db 0%, #a4d7f2 100%);
    left: 40px;
    right: 40px;
    top: 0;
    bottom: 0;
    border-radius: 20px;
    z-index: -1;
}
@media (max-width: 1280px) {
    .top__news::before {
        left: 20px;
        right: 20px;
        border-radius: 10px;
    }
}
.top__news .inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
@media (max-width: 768px) {
    .top__news .inner {
        flex-direction: column;
        align-items: center;
        row-gap: 40px;
    }
}
.top__news .inner .top__news__link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 46px;
    width: 280px;
    height: 80px;
    border-radius: 5px;
    background: #3681CC;
    border: 1px solid #3681CC;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
}
@media (max-width: 1280px) {
    .top__news .inner .top__news__link {
        width: 220px;
        height: 70px;
        font-size: 1.8rem;
        padding: 0 20px;
    }
}
@media (max-width: 768px) {
    .top__news .inner .top__news__link {
        width: min(300px, 100vw - 40px - 40px);
        height: 50px;
        font-size: 2rem;
        justify-content: center;
    }
}
@media (max-width: 768px) {
    .top__news .inner .top__news__link.pc {
        display: none;
    }
}
.top__news .inner .top__news__link.sp {
    display: none;
}
@media (max-width: 768px) {
    .top__news .inner .top__news__link.sp {
        display: flex;
    }
}
.top__news .inner .top__news__link::after {
    content: "";
    display: block;
    width: 18px;
    aspect-ratio: 18/16;
    background: #fff;
    -webkit-mask: url(../img/common/arrow_right.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_right.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .top__news .inner .top__news__link::after {
        width: 13px;
        position: absolute;
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
    }
}
.top__news .inner .top__news__link:hover {
    opacity: unset;
    background: #fff;
    color: #3681CC;
}
.top__news .inner .top__news__link:hover::after {
    background: #3681CC;
}
.top__news .inner .top__news__left .h2__container {
    position: relative;
    padding-bottom: 15px;
}
.top__news .inner .top__news__left .h2__container .h2__en {
    font-size: 12rem;
    font-weight: 900;
    font-family: var(--font-jp);
    line-height: 1;
    color: #E2F4FF;
    opacity: 0.2;
}
@media (max-width: 1440px) {
    .top__news .inner .top__news__left .h2__container .h2__en {
        font-size: 9rem;
    }
}
@media (max-width: 1280px) {
    .top__news .inner .top__news__left .h2__container .h2__en {
        font-size: 7rem;
    }
}
@media (max-width: 768px) {
    .top__news .inner .top__news__left .h2__container .h2__en {
        font-size: 5rem;
    }
}
.top__news .inner .top__news__left .h2__container h2 {
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.44;
    width: 100%;
}
@media (max-width: 1440px) {
    .top__news .inner .top__news__left .h2__container h2 {
        font-size: 4rem;
    }
}
@media (max-width: 1280px) {
    .top__news .inner .top__news__left .h2__container h2 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .top__news .inner .top__news__left .h2__container h2 {
        font-size: 2rem;
        left: 50%;
        transform: translateX(-50%);
        bottom: 10px;
    }
}
.top__news .inner .top__news__right {
    width: 870px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}
@media (max-width: 1280px) {
    .top__news .inner .top__news__right {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .top__news .inner .top__news__right {
        width: calc(100vw - 40px - 40px);
    }
}
.top__news .inner .top__news__right > a {
    background: #fff;
    border-radius: 10px;
    padding: 25px 105px 25px 45px;
    position: relative;
}
@media (max-width: 1280px) {
    .top__news .inner .top__news__right > a {
        padding: 20px 80px 20px 35px;
    }
}
@media (max-width: 768px) {
    .top__news .inner .top__news__right > a {
        border-radius: 5px;
        padding: 20px 20px 46px;
    }
}
.top__news .inner .top__news__right > a::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 45px;
    width: 25px;
    aspect-ratio: 25/22;
    background: #3681CC;
    -webkit-mask: url(../img/common/arrow_right.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_right.svg) center/contain no-repeat;
}
@media (max-width: 1280px) {
    .top__news .inner .top__news__right > a::before {
        width: 20px;
        right: 35px;
    }
}
@media (max-width: 768px) {
    .top__news .inner .top__news__right > a::before {
        width: 13px;
        right: 20px;
        top: unset;
        bottom: 20px;
        transform: unset;
    }
}
.top__news .inner .top__news__right > a .date {
    font-family: var(--font-en);
    font-size: 1.8rem;
    font-weight: 700;
    color: #3681CC;
    line-height: 1.17;
}
@media (max-width: 1280px) {
    .top__news .inner .top__news__right > a .date {
        font-size: 1.6rem;
    }
}
.top__news .inner .top__news__right > a .ttl {
    font-size: 2.2rem;
    font-weight: 700;
    color: #707070;
    margin-top: 10px;
}
@media (max-width: 1280px) {
    .top__news .inner .top__news__right > a .ttl {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .top__news .inner .top__news__right > a .ttl {
        margin-top: 15px;
        font-size: 1.8rem;
    }
}

.top__movie .h2__container {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.top__movie .h2__container .h2__en {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 15rem;
    font-weight: 900;
    font-family: var(--font-en);
    color: #E2F4FF;
    line-height: 1.21;
    z-index: -1;
}
@media (max-width: 1440px) {
    .top__movie .h2__container .h2__en {
        font-size: 11rem;
    }
}
@media (max-width: 1280px) {
    .top__movie .h2__container .h2__en {
        font-size: 8rem;
    }
}
@media (max-width: 768px) {
    .top__movie .h2__container .h2__en {
        font-size: 5rem;
    }
}
.top__movie .h2__container h2 {
    font-size: 6rem;
    font-weight: 800;
    color: #3681CC;
    line-height: 1.45;
    white-space: nowrap;
}
@media (max-width: 1440px) {
    .top__movie .h2__container h2 {
        font-size: 4.8rem;
    }
}
@media (max-width: 1280px) {
    .top__movie .h2__container h2 {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .top__movie .h2__container h2 {
        font-size: 2rem;
    }
}
.top__movie iframe {
    margin: 0 auto;
    display: block;
    width: 100%;
    aspect-ratio: 560/315;
    max-width: 800px;
}

.top__banner__container {
    position: relative;
    z-index: 1;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}
@media (max-width: 1280px) {
    .top__banner__container {
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .top__banner__container {
        gap: 10px;
        justify-content: flex-start;
    }
}
.top__banner__container > a {
    display: block;
    width: calc((100% - 80px) / 3);
}
@media (max-width: 1280px) {
    .top__banner__container > a {
        width: calc((100% - 40px) / 3);
    }
}
@media (max-width: 768px) {
    .top__banner__container > a {
        width: calc((100% - 10px) / 2);
    }
}

.top__access {
    padding-top: 200px;
    margin-top: -100px;
    position: relative;
}
.top__access.bg__none {
    padding-top: unset;
    margin-top: unset;
}
@media (max-width: 1280px) {
    .top__access {
        padding-top: 150px;
        margin-top: -70px;
    }
}
@media (max-width: 768px) {
    .top__access {
        padding-top: 120px;
        margin-top: -50px;
    }
}
.top__access .h2__container {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    text-align: center;
    position: relative;
}
.top__access .h2__container .h2__en {
    font-size: 15rem;
    font-weight: 900;
    font-family: var(--font-en);
    color: #E2F4FF;
    line-height: 1.21;
}
@media (max-width: 1440px) {
    .top__access .h2__container .h2__en {
        font-size: 11rem;
    }
}
@media (max-width: 1280px) {
    .top__access .h2__container .h2__en {
        font-size: 8rem;
    }
}
@media (max-width: 768px) {
    .top__access .h2__container .h2__en {
        font-size: 5rem;
    }
}
.top__access .h2__container h2 {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    font-size: 6rem;
    font-weight: 800;
    color: #3681CC;
    line-height: 1.45;
}
@media (max-width: 1440px) {
    .top__access .h2__container h2 {
        font-size: 4.8rem;
    }
}
@media (max-width: 1280px) {
    .top__access .h2__container h2 {
        font-size: 3.6rem;
    }
}
@media (max-width: 768px) {
    .top__access .h2__container h2 {
        font-size: 2rem;
    }
}
.top__access .top__access__wrapper {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0px 0px 40px rgba(54, 129, 204, 0.12);
    padding: 70px 85px;
}
.top__access .top__access__wrapper.box__none {
    box-shadow: unset;
    padding: unset;
}
@media (max-width: 1440px) {
    .top__access .top__access__wrapper {
        padding: 50px 60px;
    }
}
@media (max-width: 1280px) {
    .top__access .top__access__wrapper {
        padding: 40px;
    }
}
@media (max-width: 768px) {
    .top__access .top__access__wrapper {
        border-radius: 10px;
        padding: 25px;
    }
}
.top__access .top__access__wrapper .top__access__container {
    display: flex;
    justify-content: center;
}
@media (max-width: 768px) {
    .top__access .top__access__wrapper .top__access__container {
        flex-direction: column;
        row-gap: 30px;
    }
}
.top__access .top__access__wrapper .top__access__container .img, .top__access .top__access__wrapper .top__access__container .txt {
    width: 50%;
}
@media (max-width: 768px) {
    .top__access .top__access__wrapper .top__access__container .img, .top__access .top__access__wrapper .top__access__container .txt {
        width: 100%;
    }
}
.top__access .top__access__wrapper .top__access__container .txt {
    padding-right: 10px;
}
@media (max-width: 768px) {
    .top__access .top__access__wrapper .top__access__container .txt {
        padding-right: unset;
    }
}
.top__access .top__access__wrapper .top__access__container .img {
    padding-left: 50px;
}
@media (max-width: 768px) {
    .top__access .top__access__wrapper .top__access__container .img {
        padding-left: unset;
    }
}
.top__access .top__access__wrapper h3 {
    font-size: 2.6rem;
    font-weight: 700;
    padding-bottom: 40px;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}
.top__access .top__access__wrapper h3.bg {
    font-size: 4.2rem;
    font-weight: 800;
    color: #3681CC;
}
@media (max-width: 1440px) {
    .top__access .top__access__wrapper h3.bg {
        font-size: 3.6rem;
    }
}
@media (max-width: 1280px) {
    .top__access .top__access__wrapper h3.bg {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .top__access .top__access__wrapper h3.bg {
        font-size: 2.2rem;
    }
}
@media (max-width: 1440px) {
    .top__access .top__access__wrapper h3 {
        font-size: 2.4rem;
    }
}
@media (max-width: 1280px) {
    .top__access .top__access__wrapper h3 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .top__access .top__access__wrapper h3 {
        font-size: 1.6rem;
        padding-bottom: 25px;
    }
}
.top__access .top__access__wrapper h3::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    height: 10px;
    width: 60px;
    background: linear-gradient(90deg, #77a1db 0%, #a4d7f2 100%);
}
@media (max-width: 768px) {
    .top__access .top__access__wrapper h3::before {
        width: 25px;
        height: 5px;
    }
}
.top__access .top__access__wrapper table th, .top__access .top__access__wrapper table td {
    font-size: 1.8rem;
    font-weight: 500;
    padding-bottom: 20px;
}
@media (max-width: 1280px) {
    .top__access .top__access__wrapper table th, .top__access .top__access__wrapper table td {
        font-size: 1.6rem;
        padding-bottom: 15px;
    }
}
@media (max-width: 768px) {
    .top__access .top__access__wrapper table th, .top__access .top__access__wrapper table td {
        font-size: 1.4rem;
    }
}
.top__access .top__access__wrapper table th {
    white-space: nowrap;
    padding-right: 50px;
}
@media (max-width: 1440px) {
    .top__access .top__access__wrapper table th {
        padding-right: 30px;
    }
}
.top__access .top__access__wrapper table .map__link {
    color: #3681CC;
    text-decoration: underline;
}
.top__access .top__access__wrapper .top__access__line {
    margin-top: 30px;
    background: #42B89A;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    padding: 30px;
    line-height: 1.43;
}
@media (max-width: 1440px) {
    .top__access .top__access__wrapper .top__access__line {
        padding: 20px;
        font-size: 2.4rem;
    }
}
@media (max-width: 1280px) {
    .top__access .top__access__wrapper .top__access__line {
        margin-top: 20px;
        border-radius: 10px;
        padding: 10px;
        font-size: 1.6rem;
    }
}
.top__access .top__access__wrapper .top__access__line .line__icon {
    width: 95px;
}
@media (max-width: 1440px) {
    .top__access .top__access__wrapper .top__access__line .line__icon {
        width: 80px;
    }
}
@media (max-width: 1280px) {
    .top__access .top__access__wrapper .top__access__line .line__icon {
        width: 55px;
    }
}
.top__access .top__access__wrapper .top__access__line .line__qr {
    width: 120px;
}
@media (max-width: 1440px) {
    .top__access .top__access__wrapper .top__access__line .line__qr {
        width: 100px;
    }
}
@media (max-width: 1280px) {
    .top__access .top__access__wrapper .top__access__line .line__qr {
        width: 70px;
    }
}

/* ------------------------------------- /
/  ニュース・お役立ち情報一覧ページ
/* ------------------------------------- */
.archive__column__container .inner {
    display: flex;
    align-items: flex-start;
    gap: 150px;
}
@media (max-width: 1440px) {
    .archive__column__container .inner {
        gap: 60px;
    }
}
@media (max-width: 1280px) {
    .archive__column__container .inner {
        gap: 30px;
    }
}
.archive__column__container .inner .archive__column__main {
    width: calc(100% - 330px - 150px);
    display: flex;
    flex-wrap: wrap;
    gap: 60px 55px;
}
@media (max-width: 1440px) {
    .archive__column__container .inner .archive__column__main {
        width: calc(100% - 330px - 60px);
        gap: 40px;
    }
}
@media (max-width: 1280px) {
    .archive__column__container .inner .archive__column__main {
        width: calc(100% - 300px - 30px);
        gap: 20px;
    }
}
@media (max-width: 1000px) {
    .archive__column__container .inner .archive__column__main {
        width: 100%;
        row-gap: 35px;
    }
}
.archive__column__container .inner .archive__column__main .post {
    width: calc((100% - 55px) / 2);
    border-radius: 5px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 3px 40px rgba(54, 129, 204, 0.12);
    position: relative;
}
@media (max-width: 1440px) {
    .archive__column__container .inner .archive__column__main .post {
        width: calc((100% - 40px) / 2);
    }
}
@media (max-width: 1280px) {
    .archive__column__container .inner .archive__column__main .post {
        width: calc((100% - 20px) / 2);
    }
}
@media (max-width: 768px) {
    .archive__column__container .inner .archive__column__main .post {
        width: 100%;
    }
}
.archive__column__container .inner .archive__column__main .post .arrow {
    position: absolute;
    right: 25px;
    bottom: 20px;
    width: 41px;
    aspect-ratio: 1;
    background: #3681CC;
    border-radius: 5px;
}
@media (max-width: 1440px) {
    .archive__column__container .inner .archive__column__main .post .arrow {
        right: 20px;
        width: 36px;
    }
}
@media (max-width: 768px) {
    .archive__column__container .inner .archive__column__main .post .arrow {
        width: 30px;
    }
}
.archive__column__container .inner .archive__column__main .post .arrow::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    aspect-ratio: 20/17;
    background: #fff;
    -webkit-mask: url(../img/common/arrow_right.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_right.svg) center/contain no-repeat;
}
.archive__column__container .inner .archive__column__main .post .post__thumbnail {
    width: 100%;
}
.archive__column__container .inner .archive__column__main .post .post__thumbnail img {
    width: 100%;
    aspect-ratio: 430/230;
    -o-object-fit: cover;
       object-fit: cover;
}
.archive__column__container .inner .archive__column__main .post .post__bottom {
    padding: 25px 25px 70px;
}
@media (max-width: 1440px) {
    .archive__column__container .inner .archive__column__main .post .post__bottom {
        padding: 15px 15px 60px;
    }
}
.archive__column__container .inner .archive__column__main .post .post__bottom .date {
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-en);
    color: #3681CC;
}
@media (max-width: 768px) {
    .archive__column__container .inner .archive__column__main .post .post__bottom .date {
        font-size: 1.6rem;
    }
}
.archive__column__container .inner .archive__column__main .post .post__bottom .ttl {
    font-size: 2.2rem;
    font-weight: 700;
    color: #707070;
    line-height: 1.45;
}
@media (max-width: 1440px) {
    .archive__column__container .inner .archive__column__main .post .post__bottom .ttl {
        font-size: 2rem;
    }
}
@media (max-width: 1280px) {
    .archive__column__container .inner .archive__column__main .post .post__bottom .ttl {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .archive__column__container .inner .archive__column__main .post .post__bottom .ttl {
        font-size: 1.8rem;
    }
}

.archive__column__side {
    width: 330px;
}
@media (max-width: 1280px) {
    .archive__column__side {
        width: 280px;
    }
}
.archive__column__side.sp {
    display: none;
}
@media (max-width: 1000px) {
    .archive__column__side.sp {
        display: block;
        width: unset;
    }
}
@media (max-width: 1000px) {
    .archive__column__side.pc {
        display: none;
    }
}
.archive__column__side h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #3681CC;
    position: relative;
    padding-bottom: 12px;
}
@media (max-width: 1440px) {
    .archive__column__side h2 {
        font-size: 2.2rem;
    }
}
@media (max-width: 1280px) {
    .archive__column__side h2 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .archive__column__side h2 {
        font-size: 1.8rem;
        padding-bottom: 8px;
    }
}
.archive__column__side h2::before {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, #77a1db 0%, #a4d7f2 100%);
}
@media (max-width: 768px) {
    .archive__column__side h2::before {
        height: 3px;
    }
}
.archive__column__side .side__post__container {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
.archive__column__side .side__post__container .side__post {
    display: flex;
    gap: 20px;
}
@media (max-width: 1280px) {
    .archive__column__side .side__post__container .side__post {
        gap: 10px;
    }
}
.archive__column__side .side__post__container .side__post .post__thumbnail {
    width: 130px;
}
@media (max-width: 1280px) {
    .archive__column__side .side__post__container .side__post .post__thumbnail {
        width: 100px;
    }
}
.archive__column__side .side__post__container .side__post .post__thumbnail img {
    width: 100%;
    aspect-ratio: 130/90;
    -o-object-fit: cover;
       object-fit: cover;
}
.archive__column__side .side__post__container .side__post .side__post_detail {
    flex: 1 1;
    font-size: 1.4rem;
    line-height: 1.57;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}
@media (max-width: 1280px) {
    .archive__column__side .side__post__container .side__post .side__post_detail {
        -webkit-line-clamp: 3;
    }
}

.archive__pagination .pagination__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
@media (max-width: 768px) {
    .archive__pagination .pagination__list {
        gap: 10px;
    }
}
.archive__pagination .pagination__list .num {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 58px;
    height: 71px;
    border-radius: 5px;
    border: 1px solid #3681CC;
    color: #3681CC;
    font-size: 2.8rem;
    font-family: var(--font-en);
}
@media (max-width: 1280px) {
    .archive__pagination .pagination__list .num {
        font-size: 2.2rem;
        width: 50px;
        height: 60px;
    }
}
@media (max-width: 768px) {
    .archive__pagination .pagination__list .num {
        font-size: 1.2rem;
        width: 27px;
        height: 33px;
    }
}
.archive__pagination .pagination__list .num:hover {
    opacity: unset;
    background: #3681CC;
    color: #fff;
}
.archive__pagination .pagination__list .num.current {
    color: #fff;
    background: #3681CC;
}
.archive__pagination .pagination__list .previous span {
    margin-right: 35px;
    display: block;
    width: 20px;
    aspect-ratio: 20/17;
    background: #3681CC;
    -webkit-mask: url(../img/common/arrow_right.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_right.svg) center/contain no-repeat;
    transform: rotate(180deg);
}
@media (max-width: 768px) {
    .archive__pagination .pagination__list .previous span {
        width: 13px;
    }
}
.archive__pagination .pagination__list .next span {
    margin-left: 35px;
    display: block;
    width: 20px;
    aspect-ratio: 20/17;
    background: #3681CC;
    -webkit-mask: url(../img/common/arrow_right.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_right.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .archive__pagination .pagination__list .next span {
        width: 13px;
    }
}
.archive__pagination .pagination__list .dot {
    font-size: 3rem;
    color: #3681CC;
    font-family: var(--font-en);
}
@media (max-width: 1280px) {
    .archive__pagination .pagination__list .dot {
        font-size: 2.4rem;
    }
}
@media (max-width: 768px) {
    .archive__pagination .pagination__list .dot {
        font-size: 1.1rem;
    }
}

.archive__main {
    position: relative;
    overflow: hidden;
}
.archive__main::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -25%;
    width: 150%;
    aspect-ratio: 2914/2008;
    border-radius: 50%;
    background: linear-gradient(270deg, #fff 0%, #a4d7f2 100%);
    opacity: 0.25;
    transform: rotate(160deg);
}

/* ------------------------------------- /
/  投稿単体ページ
/* ------------------------------------- */
.post__wrapper .single__takeda {
    font-size: 2.4rem;
    font-weight: 500;
    color: #3681CC;
    display: flex;
    justify-content: center;
    align-items: center;
    width: -moz-fit-content;
    width: fit-content;
    padding: 2px 20px;
    border-radius: 23px;
    border: 1px solid #3681CC;
}
@media (max-width: 1440px) {
    .post__wrapper .single__takeda {
        font-size: 2rem;
    }
}
@media (max-width: 1280px) {
    .post__wrapper .single__takeda {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .post__wrapper .single__takeda {
        font-size: 1.2rem;
        padding: 1px 14px;
    }
}
.post__wrapper .post__ttl {
    margin-top: 30px;
    font-size: 4.5rem;
    font-weight: 700;
    color: #3681CC;
    line-height: 1.44;
}
@media (max-width: 1440px) {
    .post__wrapper .post__ttl {
        font-size: 3.8rem;
    }
}
@media (max-width: 1280px) {
    .post__wrapper .post__ttl {
        margin-top: 20px;
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .post__wrapper .post__ttl {
        margin-top: 10px;
        font-size: 2.2rem;
        font-weight: 800;
    }
}
.post__wrapper .post__date {
    margin-top: 20px;
    font-size: 1.8rem;
    font-weight: 700;
    font-family: var(--font-en);
    color: #3681CC;
}
@media (max-width: 1280px) {
    .post__wrapper .post__date {
        margin-top: 15px;
        font-size: 1.5rem;
    }
}
@media (max-width: 768px) {
    .post__wrapper .post__date {
        margin-top: 10px;
        font-size: 1.2rem;
    }
}
.post__wrapper .post__thumbnail {
    padding: 0 50px;
}
@media (max-width: 1280px) {
    .post__wrapper .post__thumbnail {
        padding: 0 20px;
    }
}
@media (max-width: 768px) {
    .post__wrapper .post__thumbnail {
        padding: 0;
    }
}
.post__wrapper .post__thumbnail img {
    border-radius: 5px;
}
.post__wrapper .post__content {
    font-weight: 400;
    line-height: 2.11;
}
@media (max-width: 1280px) {
    .post__wrapper .post__content {
        line-height: 2;
    }
}
@media (max-width: 768px) {
    .post__wrapper .post__content {
        line-height: 1.79;
    }
}
.post__wrapper .post__content h2 {
    margin-top: 80px;
    font-size: 2.6rem;
    font-weight: 700;
    color: #3681CC;
    position: relative;
    padding-bottom: 12px;
    line-height: 1.46;
}
@media (max-width: 1440px) {
    .post__wrapper .post__content h2 {
        margin-top: 70px;
        font-size: 2.4rem;
    }
}
@media (max-width: 1280px) {
    .post__wrapper .post__content h2 {
        margin-top: 60px;
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .post__wrapper .post__content h2 {
        margin-top: 45px;
        font-size: 1.8rem;
        line-height: 1.39;
    }
}
.post__wrapper .post__content h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    right: 0;
    background: linear-gradient(90deg, #77a1db 0%, #a4d7f2 100%);
}
@media (max-width: 768px) {
    .post__wrapper .post__content h2::before {
        height: 3px;
    }
}
.post__wrapper .post__content h3 {
    margin-top: 80px;
    font-size: 2.2rem;
    font-weight: 700;
    line-height: 1.73;
    background: url(../img/common/h3.webp) left top/auto 100% no-repeat;
    padding-left: 23px;
    min-height: 65px;
    padding-top: 15px;
}
@media (max-width: 1440px) {
    .post__wrapper .post__content h3 {
        margin-top: 70px;
        font-size: 2rem;
    }
}
@media (max-width: 1280px) {
    .post__wrapper .post__content h3 {
        margin-top: 60px;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .post__wrapper .post__content h3 {
        padding-top: 5px;
        min-height: 50px;
        margin-top: 45px;
        font-size: 1.6rem;
        line-height: 1.56;
    }
}
.post__wrapper .post__content p {
    margin-top: 30px;
}
.post__wrapper .single__return {
    margin: 130px auto 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 280px;
    height: 80px;
    border-radius: 5px;
    background: #3681CC;
    border: 1px solid #3681CC;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    position: relative;
}
@media (max-width: 1280px) {
    .post__wrapper .single__return {
        margin: 100px auto 120px;
        height: 70px;
    }
}
@media (max-width: 768px) {
    .post__wrapper .single__return {
        margin: 60px auto 90px;
        height: 60px;
        width: min(100%, 346px);
    }
}
.post__wrapper .single__return::before {
    content: "";
    position: absolute;
    width: 18px;
    left: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(180deg);
    aspect-ratio: 18/16;
    background: #fff;
    -webkit-mask: url(../img/common/arrow_right.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_right.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .post__wrapper .single__return::before {
        width: 13px;
        left: 25px;
    }
}
.post__wrapper .single__return:hover {
    opacity: unset;
    background: #fff;
    color: #3681CC;
}
.post__wrapper .single__return:hover::before {
    background: #3681CC;
}

/* ------------------------------------- /
/  お問い合わせページ
/* ------------------------------------- */
.page-template-page-contact .following__cta,
.page-template-page-contact .footer__right,
.page-template-page-contact .footer__left__bottom,
.page-template-page-contact .header__menu,
.page-template-page-contact .header__right,
.page-template-page-contact #menu_button,
.page-template-page-contact_confirm .following__cta,
.page-template-page-contact_confirm .footer__right,
.page-template-page-contact_confirm .footer__left__bottom,
.page-template-page-contact_confirm .header__menu,
.page-template-page-contact_confirm .header__right,
.page-template-page-contact_confirm #menu_button {
    display: none !important;
}
.page-template-page-contact .header__left,
.page-template-page-contact_confirm .header__left {
    width: -moz-fit-content;
    width: fit-content;
}
@media (max-width: 1050px) {
    .page-template-page-contact .header__left,
    .page-template-page-contact_confirm .header__left {
        width: 100%;
    }
}

.form__wrapper {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}
@media (max-width: 768px) {
    .form__wrapper {
        gap: 45px;
    }
}
.form__wrapper dl {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}
@media (max-width: 768px) {
    .form__wrapper dl {
        row-gap: 15px;
    }
}
.form__wrapper dl dt {
    display: flex;
    align-items: baseline;
    gap: 15px;
    font-size: 1.8rem;
    font-weight: 700;
}
@media (max-width: 768px) {
    .form__wrapper dl dt {
        gap: 10px;
        font-size: 1.4rem;
    }
}
.form__wrapper dl dt .required {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 52px;
    height: 26px;
    border-radius: 5px;
    background: linear-gradient(90deg, #77a1db 0%, #a4d7f2 100%);
    font-size: 1.6rem;
    font-weight: 700;
    color: #fff;
}
@media (max-width: 768px) {
    .form__wrapper dl dt .required {
        width: 50px;
        height: 25px;
        font-size: 1.4rem;
    }
}
.form__wrapper input[type=text],
.form__wrapper input[type=email],
.form__wrapper input[type=tel],
.form__wrapper textarea {
    width: 100%;
    border: 1px solid #3681CC;
    border-radius: 5px;
    font: inherit;
    padding: 10px;
}
@media (max-width: 768px) {
    .form__wrapper input[type=text],
    .form__wrapper input[type=email],
    .form__wrapper input[type=tel],
    .form__wrapper textarea {
        font-size: 1.6rem;
    }
}
.form__wrapper input[type=text].half,
.form__wrapper input[type=email].half,
.form__wrapper input[type=tel].half,
.form__wrapper textarea.half {
    width: 50%;
}
@media (max-width: 768px) {
    .form__wrapper input[type=text].half,
    .form__wrapper input[type=email].half,
    .form__wrapper input[type=tel].half,
    .form__wrapper textarea.half {
        width: 100%;
    }
}
.form__wrapper input[type=text].short,
.form__wrapper input[type=email].short,
.form__wrapper input[type=tel].short,
.form__wrapper textarea.short {
    width: 20%;
}
@media (max-width: 768px) {
    .form__wrapper input[type=text].short,
    .form__wrapper input[type=email].short,
    .form__wrapper input[type=tel].short,
    .form__wrapper textarea.short {
        width: 120px;
    }
}
.form__wrapper .zipcode__wrapper {
    display: flex;
    gap: 10px;
    align-items: center;
}
.form__wrapper .radio__wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 50px;
}
@media (max-width: 768px) {
    .form__wrapper .radio__wrapper {
        gap: 15px 30px;
    }
}
.form__wrapper .radio__wrapper input[type=radio] {
    display: none;
}
.form__wrapper .radio__wrapper label {
    padding-left: 50px;
    position: relative;
}
@media (max-width: 768px) {
    .form__wrapper .radio__wrapper label {
        padding-left: 35px;
    }
}
.form__wrapper .radio__wrapper label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px solid #3681CC;
}
@media (max-width: 768px) {
    .form__wrapper .radio__wrapper label::before {
        width: 24px;
    }
}
.form__wrapper .radio__wrapper input[type=radio]:checked + label::after {
    content: "";
    position: absolute;
    left: 5px;
    top: 50%;
    width: 25px;
    transform: translateY(-50%);
    aspect-ratio: 1;
    border-radius: 50%;
    background: #3681CC;
}
@media (max-width: 768px) {
    .form__wrapper .radio__wrapper input[type=radio]:checked + label::after {
        width: 14px;
    }
}
.form__wrapper .select__wrapper {
    position: relative;
    width: 50%;
}
@media (max-width: 768px) {
    .form__wrapper .select__wrapper {
        width: 100%;
    }
}
.form__wrapper .select__wrapper::before {
    content: "";
    position: absolute;
    width: 14px;
    aspect-ratio: 14/6;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: url(../img/common/select.svg) center/contain no-repeat;
    z-index: -1;
}
.form__wrapper .select__wrapper select {
    width: 100%;
    border: 1px solid #3681CC;
    border-radius: 5px;
    font: inherit;
    padding: 10px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: transparent;
    color: inherit;
}
.form__wrapper .error {
    color: red;
}
.form__wrapper .error.false {
    display: none;
}

.submit__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
.submit__wrapper .submit__btn {
    cursor: pointer;
    font-size: 2.6rem;
    font-weight: 800;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 340px;
    height: 80px;
    background: #3681CC;
    border: 1px solid #3681CC;
    border-radius: 5px;
    position: relative;
}
@media (max-width: 1280px) {
    .submit__wrapper .submit__btn {
        font-size: 2.2rem;
        height: 70px;
    }
}
@media (max-width: 768px) {
    .submit__wrapper .submit__btn {
        font-size: 2rem;
        height: 60px;
        width: min(340px, 100%);
    }
}
.submit__wrapper .submit__btn.return {
    color: #3681CC;
    background: #fff;
}
.submit__wrapper .submit__btn.return::before {
    background: #3681CC;
    transform: translateY(-50%) rotate(180deg);
}
.submit__wrapper .submit__btn.return:hover {
    background: #3681CC;
    color: #fff;
}
.submit__wrapper .submit__btn.return:hover::before {
    background: #fff;
}
.submit__wrapper .submit__btn::before {
    content: "";
    position: absolute;
    right: 35px;
    top: 50%;
    width: 18px;
    aspect-ratio: 18/16;
    transform: translateY(-50%);
    background: #fff;
    -webkit-mask: url(../img/common/arrow_right.svg) center/contain no-repeat;
            mask: url(../img/common/arrow_right.svg) center/contain no-repeat;
}
@media (max-width: 768px) {
    .submit__wrapper .submit__btn::before {
        width: 13px;
        right: 25px;
    }
}
.submit__wrapper .submit__btn:hover {
    background: #fff;
    color: #3681CC;
}
.submit__wrapper .submit__btn:hover::before {
    background: #3681CC;
}

/* ------------------------------------- /
/  運営会社ページ
/* ------------------------------------- */
.company__container {
    display: flex;
}
@media (max-width: 768px) {
    .company__container {
        flex-direction: column;
    }
}
.company__container .map, .company__container .detail {
    width: 50%;
}
@media (max-width: 768px) {
    .company__container .map, .company__container .detail {
        width: 100%;
    }
}
.company__container .map iframe {
    width: 100%;
    border-radius: 5px;
}
.company__container .detail {
    padding-left: 60px;
}
@media (max-width: 768px) {
    .company__container .detail {
        padding-left: unset;
    }
}
.company__container .detail table {
    width: 100%;
}
.company__container .detail table tr {
    border-bottom: 1px solid #C7C7C7;
}
.company__container .detail table tr th, .company__container .detail table tr td {
    padding: 30px 0 13px;
    font-size: 1.8rem;
}
.company__container .detail table tr th {
    white-space: nowrap;
    font-weight: 700;
    position: relative;
}
@media (max-width: 768px) {
    .company__container .detail table tr th {
        font-size: 1.6rem;
    }
}
.company__container .detail table tr th::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #77a1db 0%, #a4d7f2 100%);
}
@media (max-width: 768px) {
    .company__container .detail table tr th::before {
        height: 3px;
    }
}
.company__container .detail table tr td {
    padding-left: 15px;
    font-weight: 400;
}
@media (max-width: 768px) {
    .company__container .detail table tr td {
        font-size: 1.4rem;
        font-weight: 500;
    }
}

/* ------------------------------------- /
/  よくある質問ページ
/* ------------------------------------- */
.faq__container .faq__box {
    margin: 0 auto;
    max-width: 1200px;
    border-bottom: 1px solid #3681CC;
    padding: 40px 0 50px;
}
@media (max-width: 1280px) {
    .faq__container .faq__box {
        padding: 25px 0 40px;
    }
}
@media (max-width: 768px) {
    .faq__container .faq__box {
        padding: 15px 0 30px;
    }
}
.faq__container .faq__box:first-child {
    border-top: 1px solid #3681CC;
}
.faq__container .faq__box .faq__box__question {
    display: flex;
}
.faq__container .faq__box .faq__box__question .faq__box__question__left {
    width: 100px;
}
@media (max-width: 768px) {
    .faq__container .faq__box .faq__box__question .faq__box__question__left {
        width: 60px;
    }
}
.faq__container .faq__box .faq__box__question .faq__box__question__left img {
    width: 67.5%;
}
@media (max-width: 768px) {
    .faq__container .faq__box .faq__box__question .faq__box__question__left img {
        width: 75%;
    }
}
.faq__container .faq__box .faq__box__question .faq__box__question__right {
    flex: 1 1;
    padding-top: 11px;
}
@media (max-width: 1280px) {
    .faq__container .faq__box .faq__box__question .faq__box__question__right {
        padding-top: 15px;
    }
}
@media (max-width: 768px) {
    .faq__container .faq__box .faq__box__question .faq__box__question__right {
        padding-top: 7px;
    }
}
.faq__container .faq__box .faq__box__question .faq__box__question__right h2 {
    font-size: 2.6rem;
    font-weight: 700;
    color: #3681CC;
    line-height: 1.46;
}
@media (max-width: 1280px) {
    .faq__container .faq__box .faq__box__question .faq__box__question__right h2 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .faq__container .faq__box .faq__box__question .faq__box__question__right h2 {
        font-size: 1.8rem;
        line-height: 1.39;
    }
}
.faq__container .faq__box .faq__box__answer {
    margin-top: 15px;
    padding-left: 100px;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.11;
}
@media (max-width: 1280px) {
    .faq__container .faq__box .faq__box__answer {
        font-size: 1.6rem;
        line-height: 2;
    }
}
@media (max-width: 768px) {
    .faq__container .faq__box .faq__box__answer {
        padding-left: 60px;
        font-size: 1.4rem;
        line-height: 1.79;
    }
}
.faq__container .faq__box .faq__box__answer a {
    text-decoration: underline;
}

/* ------------------------------------- /
/  学校案内ページ
/* ------------------------------------- */
.guide__sec1 {
    text-align: center;
    font-size: 2.4rem;
}
@media (max-width: 1440px) {
    .guide__sec1 {
        font-size: 2rem;
    }
}
@media (max-width: 1280px) {
    .guide__sec1 {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .guide__sec1 {
        font-size: 1.4rem;
    }
}
.guide__sec1 h2 {
    font-size: 4.2rem;
    font-weight: 800;
    color: #3681CC;
}
@media (max-width: 1440px) {
    .guide__sec1 h2 {
        font-size: 3.6rem;
    }
}
@media (max-width: 1280px) {
    .guide__sec1 h2 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .guide__sec1 h2 {
        font-size: 2.2rem;
    }
}
.guide__sec1 h2.underline {
    padding-bottom: 40px;
    position: relative;
}
@media (max-width: 1440px) {
    .guide__sec1 h2.underline {
        padding-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .guide__sec1 h2.underline {
        padding-bottom: 15px;
    }
}
.guide__sec1 h2.underline::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 10px;
    background: linear-gradient(90deg, #77a1db 0%, #a4d7f2 100%);
}
@media (max-width: 1440px) {
    .guide__sec1 h2.underline::before {
        width: 40px;
        height: 8px;
    }
}
@media (max-width: 768px) {
    .guide__sec1 h2.underline::before {
        width: 25px;
        height: 5px;
    }
}
@media (max-width: 768px) {
    .guide__sec1 .inner > p br {
        display: none;
    }
}
.guide__sec1 .guide__sec1__container {
    margin-top: 170px;
    display: flex;
    gap: 70px;
}
@media (max-width: 1440px) {
    .guide__sec1 .guide__sec1__container {
        gap: 40px;
        margin-top: 100px;
    }
}
@media (max-width: 1280px) {
    .guide__sec1 .guide__sec1__container {
        margin-top: 80px;
    }
}
@media (max-width: 768px) {
    .guide__sec1 .guide__sec1__container {
        flex-direction: column;
        row-gap: 50px;
        margin-top: 60px;
    }
}
.guide__sec1 .guide__sec1__container > * {
    width: calc((100% - 140px) / 3);
}
@media (max-width: 1440px) {
    .guide__sec1 .guide__sec1__container > * {
        width: calc((100% - 80px) / 3);
    }
}
@media (max-width: 768px) {
    .guide__sec1 .guide__sec1__container > * {
        width: 100%;
    }
}
.guide__sec1 .guide__sec1__container > * img {
    border-radius: 5px;
}
.guide__sec1 .guide__sec1__container > * h3 {
    color: #3681CC;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 25px;
}
@media (max-width: 768px) {
    .guide__sec1 .guide__sec1__container > * h3 {
        font-size: 2.4rem;
    }
}
.guide__sec1 .guide__sec1__container > * h3.gr {
    color: #42B89A;
}
.guide__sec1 .guide__sec1__container > * h3.or {
    color: #EB9347;
}
.guide__sec1 .guide__sec1__container > * p {
    margin-top: 40px;
    font-size: 2rem;
}
@media (max-width: 1280px) {
    .guide__sec1 .guide__sec1__container > * p {
        margin-top: 30px;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .guide__sec1 .guide__sec1__container > * p {
        margin-top: 20px;
        font-size: 1.6rem;
    }
}

.guide__support {
    position: relative;
    z-index: 1;
}
.guide__support .wrapper {
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0px 40px rgba(54, 129, 204, 0.12);
    padding: 80px;
}
@media (max-width: 1440px) {
    .guide__support .wrapper {
        padding: 50px;
    }
}
@media (max-width: 768px) {
    .guide__support .wrapper {
        padding: 30px 25px;
    }
}
.guide__support .wrapper h2 {
    font-size: 4.2rem;
    font-weight: 800;
    color: #3681CC;
    text-align: center;
    position: relative;
    padding-bottom: 40px;
}
@media (max-width: 1440px) {
    .guide__support .wrapper h2 {
        font-size: 3.6rem;
        padding-bottom: 25px;
    }
}
@media (max-width: 1280px) {
    .guide__support .wrapper h2 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .guide__support .wrapper h2 {
        font-size: 2.2rem;
        padding-bottom: 15px;
    }
}
.guide__support .wrapper h2::before {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
    width: 60px;
    height: 10px;
    background: linear-gradient(90deg, #77a1db 0%, #a4d7f2 100%);
}
@media (max-width: 1440px) {
    .guide__support .wrapper h2::before {
        width: 40px;
        height: 8px;
    }
}
@media (max-width: 768px) {
    .guide__support .wrapper h2::before {
        width: 25px;
        height: 5px;
    }
}
.guide__support .wrapper .guide__support__list {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
}
.guide__support .wrapper .guide__support__list > div {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-size: 2.8rem;
    font-weight: 700;
}
@media (max-width: 1440px) {
    .guide__support .wrapper .guide__support__list > div {
        font-size: 2.4rem;
    }
}
@media (max-width: 1280px) {
    .guide__support .wrapper .guide__support__list > div {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .guide__support .wrapper .guide__support__list > div {
        font-size: 1.8rem;
    }
}
.guide__support .wrapper .guide__support__list > div .num {
    font-weight: 800;
    font-family: var(--font-en);
    color: #3681CC;
}
.guide__support .wrapper .guide__support__price {
    text-align: center;
    font-size: 2.8rem;
    font-weight: 700;
}
@media (max-width: 1440px) {
    .guide__support .wrapper .guide__support__price {
        font-size: 2.4rem;
    }
}
@media (max-width: 1280px) {
    .guide__support .wrapper .guide__support__price {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .guide__support .wrapper .guide__support__price {
        font-size: 1.6rem;
    }
}
.guide__support .wrapper .guide__support__price .num {
    font-size: 5rem;
    font-weight: 800;
    font-family: var(--font-en);
    color: #3681CC;
    padding-right: 5px;
}
@media (max-width: 1440px) {
    .guide__support .wrapper .guide__support__price .num {
        font-size: 4rem;
    }
}
@media (max-width: 1280px) {
    .guide__support .wrapper .guide__support__price .num {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .guide__support .wrapper .guide__support__price .num {
        font-size: 2.5rem;
    }
}
.guide__support .wrapper .guide__support__price__txt {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    font-size: 1.8rem;
}
@media (max-width: 1280px) {
    .guide__support .wrapper .guide__support__price__txt {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .guide__support .wrapper .guide__support__price__txt {
        font-size: 1.4rem;
    }
}

.guide__sec2 h2 {
    font-size: 4.2rem;
    font-weight: 800;
    color: #3681CC;
    text-align: center;
}
@media (max-width: 1440px) {
    .guide__sec2 h2 {
        font-size: 3.6rem;
    }
}
@media (max-width: 1280px) {
    .guide__sec2 h2 {
        font-size: 3rem;
    }
}
@media (max-width: 768px) {
    .guide__sec2 h2 {
        font-size: 2.2rem;
        line-height: 1.14;
    }
}
.guide__sec2 .guide__sec2__table {
    margin: 0 auto;
    width: min(880px, 100%);
}
.guide__sec2 .guide__sec2__table > div {
    display: flex;
    border-bottom: 1px solid #C7C7C7;
}
@media (max-width: 768px) {
    .guide__sec2 .guide__sec2__table > div {
        flex-direction: column;
    }
}
.guide__sec2 .guide__sec2__table > div .t__h, .guide__sec2 .guide__sec2__table > div .t__d {
    padding: 35px 0 20px;
}
@media (max-width: 768px) {
    .guide__sec2 .guide__sec2__table > div .t__h, .guide__sec2 .guide__sec2__table > div .t__d {
        padding: 30px 0 10px;
    }
}
.guide__sec2 .guide__sec2__table > div .t__h {
    font-size: 2.4rem;
    font-weight: 700;
    padding-right: 70px;
    position: relative;
    white-space: nowrap;
}
@media (max-width: 1440px) {
    .guide__sec2 .guide__sec2__table > div .t__h {
        padding-right: 50px;
        font-size: 2rem;
    }
}
@media (max-width: 1280px) {
    .guide__sec2 .guide__sec2__table > div .t__h {
        padding-right: 40px;
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .guide__sec2 .guide__sec2__table > div .t__h {
        padding-right: 20px;
        font-size: 1.6rem;
    }
}
.guide__sec2 .guide__sec2__table > div .t__h::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #77a1db 0%, #a4d7f2 100%);
}
@media (max-width: 768px) {
    .guide__sec2 .guide__sec2__table > div .t__h::before {
        bottom: -2px;
        height: 3px;
    }
}
.guide__sec2 .guide__sec2__table > div .t__d {
    font-size: 1.8rem;
    font-weight: 500;
    padding-left: 20px;
}
@media (max-width: 1280px) {
    .guide__sec2 .guide__sec2__table > div .t__d {
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .guide__sec2 .guide__sec2__table > div .t__d {
        padding-left: unset;
        font-size: 1.4rem;
    }
}
.guide__sec2 .guide__sec2__table > div .t__d .bd {
    font-size: 2.2rem;
    font-weight: 700;
}
@media (max-width: 1280px) {
    .guide__sec2 .guide__sec2__table > div .t__d .bd {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .guide__sec2 .guide__sec2__table > div .t__d .bd {
        font-size: 1.6rem;
    }
}

.guide__access__h2 {
    font-size: 4.2rem;
    font-weight: 800;
    text-align: center;
    color: #3681CC;
}
@media (max-width: 1440px) {
    .guide__access__h2 {
        font-size: 3.4rem;
    }
}
@media (max-width: 1280px) {
    .guide__access__h2 {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .guide__access__h2 {
        font-size: 2.2rem;
    }
}

/* ------------------------------------- /
/  プライバシーポリシーページ
/* ------------------------------------- */
.privacy__wrapper {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.11;
}
@media (max-width: 1280px) {
    .privacy__wrapper {
        font-size: 1.6rem;
        line-height: 2;
    }
}
@media (max-width: 768px) {
    .privacy__wrapper {
        font-size: 1.4rem;
        line-height: 1.79;
    }
}
.privacy__wrapper h2 {
    margin-top: 80px;
    font-size: 2.6rem;
    font-weight: 700;
    color: #3681CC;
    margin-bottom: 30px;
    padding-bottom: 23px;
    position: relative;
}
@media (max-width: 1280px) {
    .privacy__wrapper h2 {
        font-size: 2.2rem;
        padding-bottom: 18px;
    }
}
@media (max-width: 768px) {
    .privacy__wrapper h2 {
        font-size: 1.8rem;
        margin-top: 50px;
        padding-bottom: 10px;
    }
}
.privacy__wrapper h2::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #77a1db 0%, #a4d7f2 100%);
}

.privacy__list {
    display: flex;
    align-items: baseline;
    gap: 15px;
}
@media (max-width: 768px) {
    .privacy__list {
        gap: 10px;
    }
}
.privacy__list .num {
    color: #3681CC;
    font-weight: 800;
    white-space: nowrap;
}

/* ------------------------------------- /
/  武田高等学院って？ページ
/* ------------------------------------- */
.features__bottom h2 {
    font-size: 4.2rem;
    font-weight: 800;
    text-align: center;
    color: #3681CC;
}
@media (max-width: 1440px) {
    .features__bottom h2 {
        font-size: 3.6rem;
    }
}
@media (max-width: 1280px) {
    .features__bottom h2 {
        font-size: 2.8rem;
    }
}
@media (max-width: 768px) {
    .features__bottom h2 {
        font-size: 2.2rem;
    }
}
.features__bottom ul {
    margin: 0 auto;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 2.4rem;
    list-style-type: disc;
    list-style-position: inside;
}
@media (max-width: 1440px) {
    .features__bottom ul {
        font-size: 2.2rem;
    }
}
@media (max-width: 1280px) {
    .features__bottom ul {
        font-size: 1.8rem;
    }
}
@media (max-width: 768px) {
    .features__bottom ul {
        font-size: 1.4rem;
    }
}
.features__bottom h3 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #3681CC;
    text-align: center;
}
@media (max-width: 1440px) {
    .features__bottom h3 {
        font-size: 2.8rem;
    }
}
@media (max-width: 1280px) {
    .features__bottom h3 {
        font-size: 2.2rem;
    }
}
@media (max-width: 768px) {
    .features__bottom h3 {
        font-size: 1.8rem;
    }
}

.features__container {
    display: flex;
    justify-content: flex-end;
    position: relative;
    padding-top: 60px;
}
.features__container:nth-child(2n+1) {
    justify-content: flex-start;
}
.features__container:nth-child(2n+1) .img {
    left: unset;
    right: 0;
}
@media (max-width: 768px) {
    .features__container:nth-child(2n+1) .img img {
        left: 25px;
    }
}
@media (max-width: 768px) {
    .features__container:nth-child(2n) .txt {
        position: relative;
        left: 25px;
    }
}
@media (max-width: 1280px) {
    .features__container {
        padding-top: 300px;
    }
}
@media (max-width: 768px) {
    .features__container {
        flex-direction: column;
        padding-top: unset;
    }
}
.features__container .img {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 50%;
    aspect-ratio: 700/520;
}
@media (max-width: 768px) {
    .features__container .img {
        width: 100%;
        position: relative;
    }
}
.features__container .img img {
    border-radius: 5px;
}
@media (max-width: 768px) {
    .features__container .img img {
        position: relative;
        width: calc(100% - 25px);
    }
}
.features__container .txt {
    width: calc(50% + 70px);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0px 0px 40px rgba(54, 129, 204, 0.5);
    padding: 60px 70px;
    font-size: 2rem;
    line-height: 2;
    width: 760px;
}
@media (max-width: 1280px) {
    .features__container .txt {
        padding: 40px;
        font-size: 1.6rem;
    }
}
@media (max-width: 768px) {
    .features__container .txt {
        margin-top: -40px;
        width: calc(100% - 25px);
        padding: 25px;
        font-size: 1.4rem;
    }
}
.features__container .txt.gr {
    box-shadow: 0px 0px 40px rgba(66, 184, 154, 0.5);
}
.features__container .txt.or {
    box-shadow: 0px 0px 40px rgba(235, 147, 71, 0.5);
}
.features__container .txt h2 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #3681CC;
    line-height: 1.44;
    display: flex;
    align-items: center;
    gap: 30px;
}
.features__container .txt h2 .num {
    font-size: 12rem;
    font-weight: 700;
    font-family: var(--font-en);
    line-height: 1;
}
@media (max-width: 1440px) {
    .features__container .txt h2 .num {
        font-size: 9rem;
    }
}
@media (max-width: 1280px) {
    .features__container .txt h2 .num {
        font-size: 7rem;
    }
}
@media (max-width: 768px) {
    .features__container .txt h2 .num {
        font-size: 5rem;
    }
}
.features__container .txt h2.gr {
    color: #42B89A;
}
.features__container .txt h2.or {
    color: #EB9347;
}
@media (max-width: 1280px) {
    .features__container .txt h2 {
        font-size: 2.4rem;
        gap: 20px;
    }
}
@media (max-width: 768px) {
    .features__container .txt h2 {
        font-size: 1.8rem;
        gap: 10px;
    }
}
.features__container .txt p {
    margin-bottom: 15px;
}
@media (max-width: 768px) {
    .features__container .txt p {
        margin-bottom: unset;
    }
}
.features__container .txt small {
    color: gray;
}

.lower__features {
    position: relative;
    overflow: hidden;
}
.lower__features::before {
    content: "";
    position: absolute;
    top: 20%;
    left: -25%;
    width: 150%;
    aspect-ratio: 2914/2008;
    border-radius: 50%;
    background: linear-gradient(270deg, #fff 0%, #a4d7f2 100%);
    opacity: 0.25;
    transform: rotate(20deg);
    z-index: -1;
}
.lower__features::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -25%;
    width: 150%;
    aspect-ratio: 2914/2008;
    border-radius: 50%;
    background: linear-gradient(270deg, #fff 0%, #a4d7f2 100%);
    opacity: 0.25;
    transform: rotate(160deg);
    z-index: -2;
}
.lower__features .inner > h2 {
    text-align: center;
    color: #3681CC;
    font-size: 6rem;
    font-weight: 800;
    position: relative;
    padding-bottom: 35px;
}
@media (max-width: 1440px) {
    .lower__features .inner > h2 {
        font-size: 4.8rem;
    }
}
@media (max-width: 1280px) {
    .lower__features .inner > h2 {
        font-size: 3.6rem;
        padding-bottom: 30px;
    }
}
@media (max-width: 768px) {
    .lower__features .inner > h2 {
        font-size: 2.8rem;
    }
}
.lower__features .inner > h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    height: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    background: linear-gradient(90deg, #77a1db 0%, #a4d7f2 100%);
}
@media (max-width: 1280px) {
    .lower__features .inner > h2::before {
        width: 50px;
        height: 5px;
    }
}
.lower__features .inner > h2 .bg {
    font-family: var(--font-en);
    font-size: 9rem;
    font-weight: 700;
}
@media (max-width: 1440px) {
    .lower__features .inner > h2 .bg {
        font-size: 7rem;
    }
}
@media (max-width: 1280px) {
    .lower__features .inner > h2 .bg {
        font-size: 5rem;
    }
}
@media (max-width: 768px) {
    .lower__features .inner > h2 .bg {
        font-size: 4rem;
    }
}/*# sourceMappingURL=style.css.map */