@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP&family=KoHo:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+JP:wght@100;200;300;400;500;600;700&family=KoHo:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&family=Noto+Sans+JP:wght@100..900&display=swap");
@media (max-width: 767px) {
    .hide-for-small {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .show-for-small {
        display: none !important;
    }
}


/*LOADING*/

#loading {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    z-index: 9000;
    background-color: #fff;
    background-image: url(../images/index/bg-loading.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

#loading .loading-inner {
    display: none;
}


/*BASE*/

html {
    font-size: 62.5%;
    overflow-y: scroll;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.6rem;
    -webkit-text-size-adjust: none;
    color: #1f1f1f;
    font-weight: 400;
    font-style: normal;
	overflow: hidden;
}

a {
    transition: all 0.5s;
}

a:not(.btn):hover {
    opacity: 0.6;
}

.ff-ibm {
    font-family: "IBM Plex Sans JP", sans-serif;
}

.ff-koho {
    font-family: "KoHo", sans-serif;
}


/*GO TOP BUTTON*/

#go-top {
    position: fixed;
    bottom: -120px;
    right: 15px;
    opacity: 0;
    transition: all 0.3s;
    z-index: 99;
    border-radius: 50%;
    right: 60px;
}

#go-top.show {
    opacity: 1;
    bottom: 15px;
}

#go-top a {
    display: flex;
    flex-direction: column;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border: 2px solid #fff;
    background-color: #1e3a94;
    border-radius: 50%;
}

#go-top a::after {
    content: "";
    width: 22px;
    height: 25px;
    mask-image: url(../images/index/arrow-up.svg);
    -webkit-mask-image: url(../images/index/arrow-up.svg);
    background-color: #fff;
    mask-position: center;
    -webkit-mask-position: center;
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    transition: 0.3s;
    margin: 0 auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#go-top a:hover {
    opacity: 1;
    background-color: #fff;
    border-color: #1e3a94;
}

#go-top a:hover::after {
    background-color: #1e3a94;
}

#go-top a img {
    margin: 0 auto;
}


/*FONT*/

.ff-noto {
    font-family: "Noto Sans JP", sans-serif;
}


/*ANIMATION*/

.anim {
    opacity: 0;
}

.anim.blur {
    opacity: 1;
}

.anim.blur.is-animated,
.add-animation .anim.blur {
    animation-name: blurAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}

@keyframes blurAnime {
    from {
        filter: blur(10px);
        transform: scale(1.02);
    }

    to {
        filter: blur(0);
        transform: scale(1);
    }
}

.anim.fade {
    opacity: 0;
}

.anim.fade.is-animated {
    opacity: 1;
    animation-name: fade;
    animation-duration: 2s;
}

.anim.slideinBottom.is-animated {
    opacity: 1;
    animation-name: slideinBottom;
    animation-duration: 0.5s;
}

@keyframes slideinBottom {
    0% {
        transform: translateY(100px);
    }

    100% {
        transform: translateY(0);
    }
}

.anim.faderight.is-animated {
    opacity: 1;
    animation-name: faderight;
    animation-duration: 2s;
}

.anim.fade.is-animated {
    opacity: 1;
    animation-name: fade;
    animation-duration: 2s;
}

.anim.fadeleft.is-animated {
    opacity: 1;
    animation-name: fadeleft;
    animation-duration: 2s;
}

.anim.fadeup.is-animated {
    animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    opacity: 1;
}

.anim.fadeup-2.is-animated {
    opacity: 1;
    animation-name: fadeup-2;
    animation-duration: 0.5s;
}

.anim.fadedown {
    transition: all 1.5s;
}

.anim.fadedown.is-animated {
    opacity: 1;
    animation-name: fadedown;
    animation-duration: 1.5s;
}

.anim.zoomin.is-animated {
    animation: zoomIn 0.8s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes zoomIn {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }

    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes fade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes faderight {
    from {
        opacity: 0;
        transform: translateX(-150px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadedown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

@keyframes fadeup {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    80% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeup-2 {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0px);
    }
}

@keyframes fadeleft {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0px);
    }
}

.anim.effectfade {
    opacity: 0;
    transform: translate(0, 20px);
    transition: all 1.5s ease;
}

.anim.effectfade.is-animated {
    opacity: 1;
    transform: translate(0, 0);
}


/*HEADER*/

.header-main .logo-left .logo {
    margin-right: 0px;
    width: 380px;
    line-height: 1;
    padding: 0;
    position: relative;
}

body:not(.home) .header-wrapper {
    z-index: 9;
}

.header-inner {
    position: static;
    padding-left: 40px;
    background-color: white;
}

#logo .header-logo {
    width: 100%;
}

.header-main .main-menu {
    flex: 1;
    margin-left: 20px;
}

.header-main .main-menu .nav {
    position: static;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: 0;
    margin-bottom: 0;
}

.header-main .main-menu .nav>li {
    margin: 0;
    position: static;
    transition: 0.3s;
    padding-bottom: 0px;
    margin-right: 0;
}

.header-main .main-menu .nav>li:last-child {
    margin-right: 0;
}

.header-main .main-menu .nav>li>a {
    font-weight: 500;
    padding: 0;
    font-size: 1.3rem;
    color: #1e3a94;
    text-align: center;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    min-height: 100px;
    width: 100px;
    gap: 10px;
    border-left: 1px solid #1e3a94;
    background-color: #fff;
}

.header-main .main-menu .nav>li>a:hover {
    background-color: #dfe5fa;
}

.header-main .main-menu .nav>li>a span {
    line-height: 1.07;
    min-height: 28px;
    display: flex;
    align-items: flex-end;
}

.header-main .main-menu .nav>li>a::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 0;
    /*線になる丸の形状*/
    width: 100%;
    height: 3px;
    background: #87c153;
    /*アニメーションの指定*/
    transition: all 0.3s;
    transform: scale(0, 1);
    /*X方向にスケール拡大*/
    display: none;
}


/* .header-main .main-menu .nav>li>a span {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    font-family: "Inter", sans-serif;
    font-weight: 400;
    padding-top: 5px;
} */

.header-main .main-menu .nav>li:nth-last-child(1) {
    border-right: none;
}

.box-menu-phone {
    position: static;
}

.header-main .main-menu .nav>li>a:hover,
.header-main .main-menu .nav>li.current>a {
    opacity: 1;
}

@media (min-width: 768px) {

    .header-main .main-menu .nav>li.current>a::after,
    .header-main .main-menu .nav>li:hover>a::after {
        opacity: 1;
        width: 100%;
        transform: scale(1, 1);
        /*X方向にスケール拡大*/
    }
}

.main-menu li.nav-item:hover>a span::after,
.main-menu li.nav-item.current>a span::after {
    left: 50%;
    opacity: 1;
}

.loading-active main {
    opacity: 0;
}

.loading-active header {
    opacity: 0;
}

.loading-active footer {
    opacity: 0;
}


/*MEGA MENU*/

.mega-menu {
    left: 0;
    position: absolute;
    text-align: left;
    width: 100%;
    text-align: center;
    padding-top: 0px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
    visibility: hidden;
    top: 117px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
}

.header-main .main-menu .nav>li.nav-mega:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    top: 135px;
    z-index: 12;
}

.box-mega-menu {
    display: flex;
}

.mega-menu-left {
    width: 493px;
}

.mega-menu-right {
    flex: 1;
    padding: 35px 50px 50px;
}

.box-flex-mega {
    display: flex;
}

.flex-mega-left {
    width: 342px;
    padding-top: 10px;
}

.flex-mega-right {
    flex: 1;
    padding-left: 50px;
    display: flex;
    flex-wrap: wrap;
}

a.btn.btn-mega {
    font-size: 2.5rem;
    color: #725d06;
    padding: 15px 0;
    border-bottom: 1px solid;
    justify-content: flex-start;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    letter-spacing: 0.2em;
}

a.btn.btn-mega::after {
    width: 27px;
    height: 24px;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    right: 23px;
}

.box-sub-link-mega {
    width: 50%;
    max-width: 225px;
}

a.sub-link {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    color: #7f5b3d;
    text-align: left;
    display: block;
    padding-left: 25px;
    margin-bottom: 16px;
    position: relative;
}

a.sub-link::after {
    content: "";
    width: 16px;
    height: 5px;
    background-image: url(../images/index/icon-right-mini.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

a.btn.btn-mega:first-child {
    margin-bottom: 60px;
}

.img-mega {
    position: relative;
}

.img-mega p {
    font-size: 3.5rem;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    font-family: "Shippori Mincho B1", serif;
    font-weight: 500;
    letter-spacing: 0.1em;
}

.box-menu-phone {
    display: flex;
    justify-content: flex-end;
}

.home-banner {
    height: 100vh;
    background-color: #1e3a94;
}

.box-home-important {
    display: flex;
    align-items: center;
}

.home-important-left {
    width: 220px;
}

.text-important {
    width: 170px;
    height: 33px;
    border: 1px solid #f51d1d;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f51d1d;
    font-weight: 500;
    border-radius: 17px;
    font-size: 1.8rem;
    background-color: #fff;
}

.home-important-right {
    flex: 1;
}

.news-important {
    display: flex;
    align-items: center;
    gap: 26px;
    line-height: 1.37;
    margin-bottom: 5px;
}

.news-important:last-child {
    margin-bottom: 0;
}

.news-important .date {
    font-weight: 500;
    font-family: "KoHo", sans-serif;
    color: #6e6e6e;
}

.news-important a {
    color: #1f1f1f;
    font-weight: bold;
    -webkit-line-clamp: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}

.home-important {
    padding: 25px 0;
    background: #f0f0f0;
}

.header-wrapper {
    border: 1px solid #1e3a94;
    border-width: 1px 0;
    z-index: 4;
}

.box-home-pickup {
    display: flex;
}

.home-pickup-left {
    width: 90px;
}

.home-pickup-right {
    width: calc(100% - 90px);
}

a.btn.btn-pick {
    width: 55px;
    height: 240px;
    writing-mode: vertical-rl;
    border: 1px solid #646464;
    border-width: 0 1px;
    justify-content: flex-start;
    padding: 10px;
    font-family: "KoHo", sans-serif;
    font-style: italic;
    color: #646464;
    font-size: 3.3rem;
    line-height: 1;
}

a.btn.btn-pick:hover {
    opacity: 0.7;
}

a.btn.btn-pick::after {
    width: 25px;
    height: 25px;
    background-image: url(../images/index/icon-right.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 10px;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
}

.slide-pickup.slick-slider .slick-dots {
    width: 100%;
    bottom: -30px;
    opacity: 1;
    z-index: 1;
}

.slide-pickup.slick-slider .slick-dots li {
    width: auto;
    flex: 1;
    height: 5px;
    background-color: #dcdcdc;
    border-radius: 0;
}

.slide-pickup.slick-slider .slick-dots li.slick-active {
    background-color: #ff7c0f;
}

.slide-pickup .slick-list {
    margin: 0 -15px;
}

.slide-pickup .slick-slide {
    padding: 0 15px;
}

.img-pickup {
    border-radius: 5px;
    overflow: hidden;
}

.progressBar__bar {
    margin-top: 25px;
    position: relative;
    display: block;
    width: 100%;
    height: 3px;
    overflow: hidden;
    background-image: linear-gradient(to right, #ff7c0f, #ff7c0f);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    transition: background-size 0.5s ease-in-out;
}

.progressBar__bar[aria-valuenow="0"] {
    background-size: 5% 100% !important;
}

.progressBar__bar[aria-valuenow] {
    height: 5px;
}

.progressBar__bar:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0%, -50%);
    width: 100%;
    height: 4px;
    z-index: -1;
    background-color: #dcdcdc;
}

.slide-pickup .slick-dots {
    opacity: 0;
    display: none;
}

.link-pinkup:hover {
    opacity: 0.7;
}

.link-pinkup a {
    font-size: 1.5rem;
    color: #1f1f1f;
    font-weight: 500;
}

.main-title {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}

.main-title-en {
    font-style: italic;
    font-size: 10rem;
    font-family: "KoHo", sans-serif;
    letter-spacing: -0.025em;
    color: #b4b4b4;
    line-height: 1;
    position: relative;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}

.main-title-en span {
    color: #1e3a94;
}

.main-title-en::after {
    content: "";
    width: 115px;
    height: 101px;
    background-image: url(../images/index/after-1.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -140px;
    z-index: -1;
}

.main-title-en::before {
    content: "";
    width: 95px;
    height: 98px;
    background-image: url(../images/index/after-2.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -115px;
    z-index: -1;
}

.main-title-jp {
    font-size: 3rem;
    letter-spacing: 0.1em;
    text-align: center;
    color: #1e3a94;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-weight: 500;
    margin-top: 5px;
}

a.btn.btn-course {
    width: calc(50% - 10px);
    height: 80px;
    border: 1px solid #82bed9;
    border-radius: 5px;
    font-size: 1.8rem;
    font-weight: 500;
    color: #333;
    padding-left: 70px;
    justify-content: flex-start;
    background-color: #fff;
}

a.btn.btn-course:hover {
    background-color: #e0f5ff;
}

a.btn.btn-course:nth-child(2)::after {
    mask-image: url(../images/index/icon-course-2.svg);
    -webkit-mask-image: url(../images/index/icon-course-2.svg);
}

a.btn.btn-course:nth-child(3)::after {
    mask-image: url(../images/index/icon-course-3.svg);
    -webkit-mask-image: url(../images/index/icon-course-3.svg);
}

a.btn.btn-course:nth-child(4)::after {
    mask-image: url(../images/index/icon-course-4.svg);
    -webkit-mask-image: url(../images/index/icon-course-4.svg);
}

a.btn.btn-course::after {
    width: 32px;
    height: 32px;
    mask-image: url(../images/index/icon-course-1.svg);
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(../images/index/icon-course-1.svg);
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    background-color: #2d9be0;
    left: 20px;
}

a.btn.btn-course::before {
    width: 20px;
    height: 20px;
    background-image: url(../images/index/icon-right.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 15px;
}

.box-link-flex {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.img-link-course {
    border-radius: 20px;
    overflow: hidden;
}

.box-link-course a {
    font-size: 4.5rem;
    font-weight: 500;
    color: #2aa3d9;
    display: block;
    border-bottom: 1px solid;
    position: relative;
    letter-spacing: 0.075em;
    padding-top: 5px;
}

.box-link-course a::after {
    content: "";
    width: 40px;
    height: 40px;
    background-image: url(../images/index/icon-right-2.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}

.box-link-course-2 .box-link-course a {
    color: #ff7b7a;
}

.box-link-course-2 .box-link-course a::after {
    background-image: url(../images/index/icon-right-3.svg);
}

.box-link-course-2 a.btn.btn-course {
    border-color: #ff7b7a;
}

.box-link-course-2 a.btn.btn-course::after {
    background-color: #ff7b7a;
}

.box-link-course-2 a.btn.btn-course:hover {
    background-color: #fff2f2;
}

.home-course {
    position: relative;
}

.home-course::after {
    content: "";
    width: 650px;
    height: 792px;
    background-image: url(../images/index/after-3.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 385px;
    left: -305px;
    z-index: -1;
}

.home-course::before {
    content: "";
    width: 611px;
    height: 615px;
    background-image: url(../images/index/after-4.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 110px;
    right: -315px;
    z-index: -1;
}

.title-voice {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.title-voice-en {
    font-family: "KoHo", sans-serif;
    font-size: 9rem;
    font-style: italic;
    line-height: 1;
    background-image: linear-gradient(to right, #ffb1bd 18%, #71ddee 88%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.title-voice-jp {
    font-size: 2.5rem;
    margin-left: 10px;
    letter-spacing: 0.05em;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-weight: 500;
    color: #454545;
    position: relative;
    top: -5px;
}

.img-voice {
    border: 1px solid #2aa3d9;
    border-radius: 50%;
    overflow: hidden;
}

.home .img-voice {
    max-height: 252px;
}

.img-voice img {
    transition: 0.3s;
    width: 100%;
    object-fit: cover;
}

.box-link-voice {
    position: relative;
    padding-bottom: 40px;
}

.box-link-voice:hover .img-voice img {
    transform: scale(1.1);
}

.box-link-voice .box-text-voice {
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 13px 18px;
    width: 170px;
    min-height: 70px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: -22.27px -11.14px 12.85px rgba(114, 113, 113, 0.2);
}

.box-link-voice .box-text-voice::after {
    content: "";
    width: 17px;
    height: 17px;
    background-image: url(../images/index/icon-right.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    bottom: 14px;
    right: 16px;
}

.box-link-voice .box-text-voice h3 {
    font-size: 1.7rem;
    font-weight: bold;
    color: #2aa3d9;
    line-height: 1;
}

.box-link-voice .box-text-voice a {
    font-size: 1.4rem;
    color: #1f1f1f;
    font-weight: 500;
    display: block;
    line-height: 1;
    margin-top: 8px;
}

.home-voice {
    position: relative;
}

.home-voice::after {
    content: "";
    width: 100%;
    height: calc(100% - 210px);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -2;
    background: linear-gradient(90deg, #ffffff 0%, #000 100%);
    opacity: 0.1;
}

.img-certi {
    position: relative;
    cursor: pointer;
}

.zoom-btn {
    width: 49px;
    height: 49px;
    position: absolute;
    background-image: url(../images/index/btn-zoom.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    top: 8px;
    right: -15px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
}

.modal-certi {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-certi img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 8px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5);
}

.modal-certi.active {
    display: flex;
    align-items: center;
}

.modal-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1000px;
    margin: auto;
    position: relative;
    height: 100%;
    padding: 30px;
}

.modal-close {
    width: 50px;
    height: 50px;
    position: absolute;
    right: -50px;
    top: 120px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    cursor: pointer;
    padding-bottom: 3px;
}

.box-white {
    padding: 30px 50px 17px;
    background-color: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 10px 0 rgba(0, 64, 152, 0.3);
    margin-top: 20px;
}

.box-certi {
    display: flex;
}

.certi-left {
    width: 49%;
}

.certi-right {
    width: 51%;
}

.certi-right .box-img-certi {
    gap: 40px;
    margin-top: 40px;
}

.title-certi {
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 13px;
    color: #1e3a94;
    border-bottom: 1px solid;
}

.box-img-certi {
    display: flex;
    gap: 60px;
    justify-content: center;
}

.home-certificate {
    position: relative;
}

.home-certificate::after {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/index/bg-certi.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.list-point {
    display: flex;
    gap: 25px;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.box-point {
    width: 20%;
    cursor: pointer;
    background: #00b5ab;
    border-radius: 12px;
    color: #fff;
    text-align: center;
    line-height: 1.2;
    font-size: 1.5rem;
    min-height: 175px;
    position: relative;
}

.box-point::after {
    content: "";
    width: 140px;
    height: 140px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background-color: #00b5ab;
    top: -20px;
    border-radius: 50%;
    z-index: -1;
}

.box-point:nth-child(5) p {
    display: block;
    padding-top: 10px;
}

.num-point {
    font-size: 5.1rem;
    font-family: "KoHo", sans-serif;
    letter-spacing: 0.05em;
    font-weight: 500;
    margin-bottom: 5px;
}

.box-point p {
    font-size: 2.5rem;
    min-height: 112px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
    top: -10px;
}

.box-point p span {
    font-size: 2.8rem;
    color: #ffe700;
}

.box-point-item {
    background: linear-gradient(-135deg, rgba(255, 248, 133, 0.9) 0%, rgba(125, 235, 230, 0.9) 100%);
    position: relative;
    border-radius: 20px;
}

.img-point-left img {
    border-radius: 20px;
}

.text-point-right {
    padding: 0 60px;
    padding-right: 50px;
}

.text-point-right>h3 {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1e3a94;
    border-bottom: 1px solid;
    padding-bottom: 0;
    letter-spacing: 0.05em;
    margin-bottom: 60px;
    width: fit-content;
}

.text-point-right>h3.mb-35 {
    margin-bottom: 35px;
    font-size: 3.2rem;
}

.text-point-right>p {
    background-color: #fff;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 10px;
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.8;
    margin-bottom: 5px;
}

.text-point-right>p span {
    color: #ff1f1f;
}

.point-item-num {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    top: -20px;
    width: 276px;
    text-align: center;
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1;
    font-family: "KoHo", sans-serif;
    color: #00b5ab;
}

.point-item-num::after {
    content: "";
    width: 100%;
    height: 276px;
    position: absolute;
    bottom: -20px;
    left: 0;
    background-color: #fff;
    border-radius: 50%;
    z-index: -2;
}

.point-item-num span {
    font-size: 8rem;
    font-weight: 600;
    -webkit-text-stroke: 2px #00b5ab;
    color: #ffdb00;
    paint-order: stroke fill;
}

.slide-point .slick-list {
    overflow: visible;
    margin: 0 -38px;
}

.slide-point .slick-slide {
    margin: 0 38px;
}

.slide-point.slick-slider .slick-dots {
    bottom: -60px;
}

.slide-point.slick-slider .slick-dots li {
    margin: 0 9px;
    background-color: #d7d7d7;
}

.slide-point.slick-slider .slick-dots li.slick-active {
    background-color: #00b5ab;
}

.slide-point button.slick-arrow {
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    border: none;
    padding: 0;
    border-radius: 50%;
    left: -115px;
}

.slide-point button.slick-arrow.next-arrow {
    left: auto;
    right: -115px;
}

.slide-auto .slick-slide {
    margin: 0 5px;
}

.slide-auto .slick-slide img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.slide-auto .slick-list {
    margin: 0 -5px;
}

.box-campus {
    background: linear-gradient(0deg, rgb(255, 254, 181) 0%, rgb(255, 218, 51) 74%);
    padding: 90px 100px;
    border-radius: 20px;
    position: relative;
}

.after-campus-left {
    position: absolute;
    left: -80px;
    top: 100px;
}

.after-campus-right {
    position: absolute;
    right: -103px;
    bottom: -85px;
}

.text-campus-right {
    padding-left: 50px;
    max-width: 430px;
}

.img-campus-left img {
    border-radius: 10px;
}

.after-campus-left-2 {
    position: absolute;
    z-index: -1;
    left: -153px;
    bottom: -250px;
}

.after-campus-right-2 {
    position: absolute;
    z-index: -1;
    right: -153px;
    bottom: -222px;
}

ul.list-tab {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

ul.list-tab li {
    min-width: 120px;
    padding: 0 18px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #d5dbf2;
    color: #1e3a94;
    font-size: 1.5rem;
    font-weight: bold;
    border-radius: 3px;
    cursor: pointer;
}

ul.list-tab li:nth-child(2) {
    background-color: #e2eed1;
    color: #6d9920;
}

ul.list-tab li:nth-child(2).active {
    background-color: #6d9920;
    color: #fff;
}

ul.list-tab li:nth-child(3) {
    background-color: #ffe1de;
    color: #e31a00;
}

ul.list-tab li:nth-child(3).active {
    background-color: #e31a00;
    color: #fff;
}

ul.list-tab li:nth-child(4) {
    background-color: #ccecf5;
    color: #00a2cc;
}

ul.list-tab li:nth-child(4).active {
    background-color: #00a2cc;
    color: #fff;
}

ul.list-tab li:nth-child(5) {
    background-color: #ccecf5;
    color: #ff7236;
}

ul.list-tab li:nth-child(5).active {
    background-color: #ff7236;
    color: #fff;
}

ul.list-tab li.active {
    background-color: #1e3a94;
    color: #fff;
}

.home-news .tab-content {
    padding-left: 0;
    border: none;
}

.news-item.item-list {
    display: flex;
    margin-bottom: 25px;
    transition: 0.3s;
}

.news-item.item-list:hover {
    opacity: 0.7;
}

.img-news-left {
    width: 160px;
}

.box-news-cont {
    flex: 1;
    padding-left: 30px;
    padding-top: 6px;
}

.box-date-cat {
    display: flex;
    gap: 15px;
}

.date {
    font-weight: 500;
    font-family: "KoHo", sans-serif;
    color: #6e6e6e;
}

a.cat {
    min-width: 115px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #8aba38;
    border-radius: 10px;
    color: #fff !important;
    font-size: 1.2rem;
    font-weight: 500;
}

.title {
    margin-top: 5px;
}

.title a {
    font-weight: 500;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.box-news-home-left {
    padding-right: 60px;
    padding-top: 55px;
    padding-bottom: 55px;
    position: relative;
}

.box-news-home-left::after {
    content: "";
    width: calc(50vw - 20px);
    height: 100%;
    background-color: #fff;
    border: 1px solid #969696;
    border-radius: 0 20px 20px 0;
    border-left: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}

.header-wrapper.is-fixed {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9;
    background: #fff;
}

body.admin-bar .header-wrapper.is-fixed {
    top: 32px;
}

.box-news-home-right {
    padding-left: 60px;
    padding-top: 55px;
    padding-bottom: 55px;
    position: relative;
}

.box-news-home-right::after {
    content: "";
    width: calc(50vw - 20px);
    height: 100%;
    background-color: #fff;
    border: 1px solid #969696;
    border-radius: 20px 0 0 20px;
    border-right: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.box-news-home-right ul.list-tab li {
    background-color: #fae1d6;
    color: #e86831;
}

.title-news {
    display: flex;
    align-items: flex-end;
    gap: 26px;
}

.title-news-en {
    font-size: 8rem;
    font-style: italic;
    font-family: "KoHo", sans-serif;
    color: #b4b4b4;
    line-height: 1;
    position: relative;
}

.title-news-en span {
    color: #1e3a94;
}

.title-news-jp {
    font-size: 2.5rem;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-weight: 500;
    border: 1px solid #dcdcdc;
    min-height: 50px;
    padding: 2px 20px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border-radius: 25px;
    position: relative;
    top: -5px;
}

a.btn.btn-insta {
    font-size: 5rem;
    font-family: "KoHo", sans-serif;
    color: #fff;
    font-style: italic;
    line-height: 1;
    justify-content: flex-start;
    width: -moz-fit-content;
    width: fit-content;
    gap: 18px;
    padding-right: 55px;
}

a.btn.btn-insta::after {
    content: "";
    width: 38px;
    height: 38px;
    background-image: url(../images/index/icon-right-4.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 0;
    top: 60%;
}

a.btn.btn-insta:hover {
    opacity: 0.7;
}

.home-insta {
    position: relative;
}

.home-insta::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgb(255, 168, 8) 0%, rgb(255, 119, 0) 18%, rgb(255, 13, 102) 46%, rgb(212, 0, 198) 75%, rgb(117, 55, 250) 100%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.7;
}

.list-social {
    display: flex;
    gap: 20px;
}

a {
    color: #1f1f1f;
}

a.btn.item-social {
    width: 33.33%;
    min-height: 90px;
    background-color: #e1fade;
    border: 1px solid #06c755;
    border-radius: 10px;
    gap: 28px;
    justify-content: flex-start;
    padding-left: 28px;
    font-size: 1.5rem;
    line-height: 1.53;
    font-weight: 500;
}

a.btn.item-social span {
    font-size: 2.1rem;
}

a.btn.item-social::after {
    width: 30px;
    height: 30px;
    background-image: url(../images/index/icon-right-line.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    right: 21px;
}

a.btn.item-social:nth-child(2) {
    background-color: #f0f0f0;
    border-color: #000;
}

a.btn.item-social:nth-child(2)::after {
    background-image: url(../images/index/icon-right-black.svg);
}

a.btn.item-social:nth-child(3) {
    background-color: #ffebeb;
    border-color: #e71c24;
}

a.btn.item-social:nth-child(3)::after {
    background-image: url(../images/index/icon-right-red.svg);
}

.list-social-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
}

.list-social-footer a {
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.footer-top {
    display: flex;
}

.footer-left {
    width: 38%;
}

.footer-right {
    width: 62%;
    display: flex;
    gap: 20px;
}

.box-link-footer {
    width: -moz-max-content;
    width: max-content;
}

.box-link-footer:nth-child(2) {
    margin-right: 10px;
}

a.link-footer {
    display: block;
    font-size: 1.5rem;
    font-weight: bold;
    color: #152866;
    padding-left: 10px;
    border-left: 3px solid #2d9be0;
    margin-bottom: 15px;
    padding-right: 20px;
    position: relative;
    line-height: 1;
    width: -moz-fit-content;
    width: fit-content;
}

a.link-footer::after {
    content: "";
    width: 8px;
    height: 14px;
    background-image: url(../images/index/arrow-right.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
}

a.link-footer.no-icon {
    padding-right: 0;
    pointer-events: none;
}

a.link-footer.no-icon::after {
    display: none;
}

a.link-footer:hover {
    color: #2d9be0;
}

a.link-footer:hover::after {
    right: -5px;
}

a.sub-link-footer {
    font-size: 1.5rem;
    color: #152866;
    margin-bottom: 13px;
    display: block;
    padding-left: 12px;
    line-height: 1.4;
}

a.sub-link-footer span {
    background: url(/assets/images/index/underline.gif) right bottom/100% 1px no-repeat;
    transition: background-size 0.4s;
}

a.sub-link-footer:hover span {
    background-size: 0 1px;
}

a.sub-link-footer.has-dot {
    position: relative;
}

a.sub-link-footer.has-dot::after {
    content: "";
    width: 7px;
    height: 7px;
    background-color: #152866;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.list-link-footer {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.list-link-footer a {
    display: block;
    border-radius: 5px;
    box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.2);
}

.footer-copyright {
    background-color: #1e3a94;
    padding: 20px 0;
}

footer {
    position: relative;
}

footer::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background-color: #f0f0f0;
}

a.btn.btn-header {
    border-radius: 13px;
    min-height: 70px;
    background: #ffa500;
    color: #fff;
    max-width: 315px;
    font-size: 1.8rem;
    font-weight: bold;
    padding-left: 76px;
    justify-content: flex-start;
    margin-bottom: 20px;
    border: 2px solid #ffa500;
}

a.btn.btn-header::after {
    content: "";
    width: 19px;
    height: 19px;
    mask-image: url(../images/index/icon-2.svg);
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(../images/index/icon-2.svg);
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    background-color: #fff;
    transition: 0.3s;
    right: 23px;
}

a.btn.btn-header::before {
    width: 26px;
    height: 33px;
    mask-image: url(../images/index/icon-1.svg);
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(../images/index/icon-1.svg);
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    background-color: #fff;
    transition: 0.3s;
    left: 30px;
}

a.btn.btn-header:hover {
    background: rgba(255, 165, 0, 0.5);
    background-color: #fff;
    color: #ffa500;
}

a.btn.btn-header:hover::after {
    background-color: #ffa500;
}

a.btn.btn-header:hover::before {
    background-color: #ffa500;
}

a.btn.btn-header:nth-child(2) {
    background-color: #6e73d4;
    border: 2px solid #6e73d4;
}

a.btn.btn-header:nth-child(2)::before {
    width: 31px;
    height: 24px;
    mask-image: url(../images/index/icon-3.svg);
    -webkit-mask-image: url(../images/index/icon-3.svg);
    left: 25px;
}

a.btn.btn-header:nth-child(2):hover {
    background: rgba(110, 115, 212, 0.5);
    background-color: #fff;
    color: #6e73d4;
}

a.btn.btn-header:nth-child(2):hover::after {
    background-color: #6e73d4;
}

a.btn.btn-header:nth-child(2):hover::before {
    background-color: #6e73d4;
}

.menu-pc {
    position: fixed;
    width: 100vw;
    flex-direction: column;
    top: 0px;
    padding: 0;
    margin-top: 0px;
    padding-top: 200px;
    color: #000;
    background-color: #1e3a94;
    right: -150vw;
    transition: right 0.5s;
    justify-content: start;
    display: block;
    height: 100vh;
    z-index: 2;
    overflow: hidden;
}

.menu-pc .footer-right {
    width: 100%;
    gap: 50px;
}

.menu-pc a.link-footer {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.menu-pc a.link-footer:hover {
    color: #29bee0;
}

.menu-pc a.sub-link-footer {
    color: #fff;
    font-size: 1.7rem;
    margin-bottom: 20px;
}

.menu-pc a.sub-link-footer.has-dot::after {
    background-color: #fff;
}

.menu-pc .box-link-footer:nth-child(2) {
    margin-right: 40px;
}

.menu-open .header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 12;
    background-color: #fff;
}

.menu-open .menu-pc {
    right: 0;
    z-index: 10;
    overflow: hidden;
    margin-right: 0;
}

.menu-open #go-top {
    z-index: 2;
}

.header-wrapper {
    position: relative;
    transition: transform 0.4s ease, opacity 0.3s ease;
}

body.menu-open .header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
}

.header-wrapper.is-hidden {
    transform: translateY(-100%);
    opacity: 0;
}

.title-campus {
    font-size: 10rem;
    font-family: "KoHo", sans-serif;
    -webkit-text-stroke: 6px #fff;
    paint-order: stroke fill;
    color: #ff3c00;
    font-weight: 700;
    font-style: italic;
    line-height: 1;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -60px;
    width: 100%;
    text-align: center;
}

.title-campus span {
    font-size: 5.4rem;
    font-style: normal;
    font-family: "Noto Sans JP", serif;
    font-weight: bold;
    margin-left: 10px;
}

.box-btn-campus-home a.btn.btn-main {
    min-width: 280px;
    margin-left: 0;
}

.list-post .news-item.item-list {
    padding: 30px 40px;
    border-bottom: 1px solid #bfbfbf;
    margin-bottom: 0;
}

.list-post .img-news-left {
    width: 178px;
}

.list-post a.cat {
    min-width: 132px;
    min-height: 23px;
    padding-bottom: 1px;
    font-size: 1.4rem;
}

.list-post .text-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 1;
    /* Giới hạn ở 3 dòng */
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    padding-top: 10px;
}

.list-post .title {
    margin-top: 15px;
}

.list-post .title a {
    font-size: 1.7rem;
    font-weight: 500;
    color: #1f1f1f;
}

.list-post .box-news-cont {
    padding-top: 0;
}

.works-filter {
    padding: 40px 0 45px;
    background-color: #f0f0f0;
    border-radius: 19px;
}

.page-header {
    position: relative;
    min-height: 400px;
    padding-top: 186px;
}

.single-content {
    border: 1px solid #969696;
    border-radius: 20px;
    padding: 70px 75px;
}

.single .wp-pagenavi a.nextpostslink,
.single .wp-pagenavi a.previouspostslink,
.single a.next-btn,
.single a.pre-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}

.box-voice-top {
    display: flex;
    position: relative;
    align-items: flex-start;
}

.box-voice-top::after {
    content: "";
    width: 100vw;
    height: calc(100% - 130px);
    position: absolute;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    z-index: -3;
    background: #dff1f9;
}

.voice-top-left {
    width: 54%;
    height: 490px;
    position: relative;
}

.voice-top-right {
    width: 47%;
    padding: 110px 0 0;
    padding-right: 0;
}

.img-voice-top-left {
    height: 100%;
    position: relative;
}

.img-voice-top-left img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: unset;
    position: absolute;
    right: 0;
    border-radius: 50px;
}

.main-caption {
    color: #1e3a94;
    font-size: 2.6rem;
    font-weight: 600;
    padding: 0 12px;
    padding-left: 60px;
    line-height: 2.3;
    font-family: "IBM Plex Sans JP", serif;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-decoration-thickness: 2px;
    text-underline-offset: 11px;
}

a.voice-type {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid;
    border-radius: 50%;
    font-size: 1.7rem;
    font-weight: 600;
    font-family: "IBM Plex Sans JP", serif;
    background: linear-gradient(90deg, rgb(238, 230, 255) 0%, rgb(254, 241, 254) 100%);
    padding-top: 3px;
}

a.voice-type.voice-5 {
    background: linear-gradient(90deg, rgb(255, 240, 156) 0%, rgb(255, 248, 222) 100%);
}

.box-cat-voice {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
    max-width: 420px;
    padding-left: 15px;
    padding-top: 35px;
    position: relative;
    z-index: 1;
}

.box-cat-voice::after {
    content: "";
    width: 50vw;
    height: calc(100% + 55px);
    background-color: #fff;
    box-shadow: -27px -18px 16px 0px rgba(114, 113, 113, 0.1);
    border-top-left-radius: 65px;
    position: absolute;
    top: 0;
    left: -40px;
    z-index: -1;
}

.cat-voice-left {
    width: 100px;
}

.cat-voice-right {
    flex: 1;
    text-align: right;
}

.info-year {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    font-weight: 500;
    margin-top: 10px;
    line-height: 1.2;
}

a.voice-cat {
    font-size: 3rem;
    letter-spacing: 0.15em;
    font-weight: 500;
}

.title-year {
    padding-right: 8px;
    border-right: 2px solid;
}

.title-year.voice-6 {
    color: #6958ad;
}

.title-year.voice-5 {
    color: #ed7e00;
}

.qna-title {
    font-size: 2.2rem;
    font-weight: 500;
    color: #1e3a94;
    padding-left: 85px;
    min-height: 50px;
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
}

.qna-title::before {
    content: "Q.";
    font-size: 5.5rem;
    font-family: "KoHo", sans-serif;
    font-style: italic;
    color: #1e3a94;
    position: absolute;
    top: -27px;
    left: 15px;
}

.qna-title::after {
    content: "";
    width: calc(100% + 50px);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    background: #f1f0f0;
    top: 0;
    z-index: -1;
    border-radius: 25px;
}

.box-qna-flex {
    display: flex;
}

.box-qna-flex.reverse {
    flex-direction: row-reverse;
}

.box-qna-flex.reverse .qna-img {
    margin-left: 0;
    margin-right: 40px;
}

.qna-cont {
    flex: 1;
    padding-left: 85px;
    position: relative;
    line-height: 2.18;
}

.qna-cont::before {
    content: "A.";
    font-size: 5.5rem;
    font-family: "KoHo", sans-serif;
    font-style: italic;
    color: #2aa3d9;
    position: absolute;
    top: -10px;
    left: 15px;
    line-height: 1.4;
}

.qna-img {
    width: 52%;
    margin-left: 40px;
}

.qna-img img {
    border-radius: 20px;
}

.qna-info {
    margin-bottom: 65px;
}

a.btn.btn-voice {
    max-width: 351px;
    min-height: 66px;
    border-radius: 33px;
    border: 1px solid #008fcc;
    font-size: 2.3rem;
    font-weight: 600;
    font-family: "IBM Plex Sans JP", sans-serif;
    letter-spacing: 0.2em;
    color: #008fcc;
    width: 50%;
    background: linear-gradient(90deg, #baf0ff 0, #ebf8fb 100%);
}

a.btn.btn-voice:hover {
    background: #008fcc;
    color: #fff;
}

a.btn.btn-voice:hover::after {
    background-color: #008fcc;
}

a.btn.btn-voice:hover::before {
    background-color: #fff;
}

a.btn.btn-voice::after {
    width: 10px;
    height: 12px;
    mask-image: url(../images/index/down-mini.svg);
    mask-size: contain;
    mask-position: center;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(../images/index/down-mini.svg);
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    -webkit-mask-repeat: no-repeat;
    background-color: #fff;
    right: 28px;
    transition: 0.3s;
}

a.btn.btn-voice::before {
    width: 28px;
    height: 28px;
    background-color: #008fcc;
    border-radius: 50%;
    right: 19px;
    transition: 0.3s;
}

a.btn.btn-voice:nth-child(2) {
    background: linear-gradient(90deg, rgb(255, 240, 156) 0%, rgb(255, 248, 222) 100%);
    color: #ed7e00;
    border-color: #ed7e00;
}

a.btn.btn-voice:nth-child(2)::before {
    background-color: #ed7e00;
}

a.btn.btn-voice:nth-child(2):hover {
    background: #ed7e00;
    color: #fff;
}

a.btn.btn-voice:nth-child(2):hover::after {
    background-color: #ed7e00;
}

a.btn.btn-voice:nth-child(2):hover::before {
    background-color: #fff;
}

a.btn.btn-voice:nth-child(3) {
    background: linear-gradient(90deg, rgb(238, 230, 255) 0%, rgb(254, 241, 254) 100%);
    color: #6958ad;
    border-color: #6958ad;
}

a.btn.btn-voice:nth-child(3)::before {
    background-color: #6958ad;
}

a.btn.btn-voice:nth-child(3):hover {
    background: #6958ad;
    color: #fff;
}

a.btn.btn-voice:nth-child(3):hover::after {
    background-color: #6958ad;
}

a.btn.btn-voice:nth-child(3):hover::before {
    background-color: #fff;
}

.box-tab-voice {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 70px 0 100px;
}

.voice-list .img-voice {
    border-radius: 20px;
}

.voice-list .img-voice img {
    width: 100%;
}

.voice-list .box-link-voice {
    padding-top: 85px;
    padding-bottom: 10px;
    margin-bottom: 80px;
}

.voice-list .box-link-voice .box-text-voice {
    width: 210px;
    right: -8px;
}

.voice-list .box-link-voice .box-text-voice::after {
    width: 21px;
    height: 21px;
    right: 20px;
    bottom: 16px;
}

.voice-list .box-link-voice .box-text-voice h3 a {
    font-size: 2.2rem;
    margin-top: 0;
}

.voice-list .box-link-voice .box-text-voice>a {
    font-size: 1.5rem;
    margin-top: 12px;
}

.voice-list .box-main-voice {
    max-width: 300px;
    padding: 0 30px 15px;
    z-index: 1;
    position: absolute;
    top: 0;
    left: -24px;
    width: 100%;
    border-bottom-right-radius: 30px;
    background-color: #fff;
    font-size: 1.6rem;
    font-weight: 600;
    font-family: "IBM Plex Sans JP", sans-serif;
    line-height: 1.5;
}

.title-bg {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #ed7e00;
    letter-spacing: 0.1em;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-weight: 600;
    background: linear-gradient(90deg, rgb(255, 240, 156) 0%, rgb(255, 248, 222) 100%);
    border: 1px solid;
    border-radius: 10px;
    margin-bottom: 45px;
}

#voice-02 .title-bg {
    background: linear-gradient(90deg, rgb(238, 230, 255) 0%, rgb(254, 241, 254) 100%);
    color: #6958ad;
    border-color: #6958ad;
}

.box-border {
    border: 2px solid #1e3a94;
    border-radius: 10px;
    padding: 45px 100px;
}

.box-flex-tel {
    display: flex;
    justify-content: center;
    gap: 65px;
    padding-bottom: 33px;
    margin-bottom: 25px;
    border-bottom: 1px solid #1e3a94;
}

.box-icon-tel {
    display: flex;
    gap: 17px;
    align-items: center;
}

.box-tel-cont h3 {
    font-size: 2.3rem;
    font-family: "KoHo", sans-serif;
    color: #1e3a94;
}

.box-tel-cont p {
    font-size: 3rem;
    font-weight: 600;
    line-height: 1 !important;
    font-family: "KoHo", sans-serif;
}

.color-1 {
    color: #1e3a94;
}

.color-2 {
    color: #ff3c00;
}

.color-3 {
    color: #1d8cd1;
}

.color-4 {
    color: #f56362;
}

.color-5 {
    color: #1100FF;
}

.box-list-contact {
    border: 1px solid #5a5a5a;
    padding: 60px 50px 70px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
}

.box-radio input {
    border-radius: 0;
}

.box-radio {
    margin-top: 13px;
}

.box-input-select {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.box-input-select select.third {
    width: 300px;
}

.box-input-select input.half {
    width: auto;
    flex: 1;
}

#contact-02 {
    background-color: #f5f5f5;
}

.page-contact .list-anchor {
    justify-content: center;
}

.page-contact .page-header::after {
    background-image: url(../images/index/bg-page-contact.png);
}

.box-campus-01 {
    display: flex;
    gap: 100px;
}

.campus-01-left {
    width: 57%;
    position: relative;
}

.campus-01-left::after {
    content: "";
    width: 140px;
    height: 140px;
    background: linear-gradient(90deg, #d5f1fe 0%, #96c6fc 100%);
    border-radius: 50%;
    position: absolute;
    right: -50px;
    bottom: -40px;
}

.campus-01-left::before {
    content: "";
    width: 130px;
    height: 130px;
    background: linear-gradient(90deg, rgb(255, 203, 233) 0%, rgb(255, 237, 240) 52%, rgb(217, 213, 255) 100%);
    position: absolute;
    left: -30px;
    bottom: -90px;
    opacity: 0.3;
    transform: rotate(45deg);
    z-index: -1;
}

.campus-01-right {
    flex: 1;
    padding-top: 10px;
}

.img-campus-1 {
    position: relative;
}

.img-campus-1::after {
    content: "";
    width: 105px;
    height: 100px;
    background-image: url(../images/campus/after-1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: -40px;
    bottom: 120px;
}

.img-campus-1::before {
    content: "";
    width: 110px;
    height: 105px;
    background-image: url(../images/campus/after-2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: -40px;
    top: 100px;
}

.text-ehime {
    position: absolute;
    right: -20px;
    top: -35px;
}

.img-campus-1>img {
    border-radius: 80px;
}

.campus-01 {
    position: relative;
    margin-bottom: 180px;
}

.campus-01::after {
    content: "";
    width: 100%;
    height: calc(100% - 60px);
    top: 0;
    left: 0;
    z-index: -2;
    background-image: url(../images/campus/bg-1.png);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
}

.text-campus-stroke {
    font-size: 13rem;
    font-family: "Koho", sans-serif;
    -webkit-text-stroke: 6px #fff;
    color: #ff3c00;
    font-weight: 700;
    paint-order: stroke fill;
    font-style: italic;
    line-height: 1;
    text-align: center;
    margin-top: -20px;
}

.box-white-campus {
    max-width: 700px;
    margin-left: auto;
    border-radius: 80px;
    background-color: #fff;
    padding: 29px;
    text-align: center;
    margin-right: auto;
}

.box-border-campus {
    border: 1px solid #ff3c00;
    border-radius: 20px;
    background-color: #fff;
    padding: 30px 37px 40px;
}

.box-campus-02 {
    display: flex;
    gap: 30px;
}

.box-campus-02:not(:first-child) {
    margin-top: 50px;
}

.text-campus-2 {
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ff3c00;
    border-radius: 50%;
    color: #fff;
    font-size: 3.2rem;
    font-weight: 500;
}

.text-campus-2 span {
    font-family: "KoHo", sans-serif;
    font-weight: 600;
}

.box-time-campus {
    display: flex;
    font-size: 3.2rem;
    font-weight: bold;
    gap: 25px;
    margin-bottom: 15px;
    height: 140px;
    align-items: center;
}

.box-time-campus p {
    border-right: 1px solid;
    line-height: 1.5;
}

.box-time-campus p:last-child {
    border-right: none;
}

.info-campus {
    font-size: 2rem;
    font-weight: bold;
    padding-top: 10px;
    padding-bottom: 10px;
    border-bottom: 2px dotted;
}

.campus-02 {
    position: relative;
}

.campus-02::after {
    content: "";
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(255, 254, 181) 0%, rgb(255, 218, 51) 73%);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0.8;
}

.campus-02::before {
    content: "";
    width: 361px;
    height: 227px;
    background-image: url(../images/campus/after-3.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: 100px;
    top: -135px;
}

.box-btn-campus a.btn.btn-main {
    min-width: 400px;
}

.text-welcome {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -100px;
}

.box-campus-03 {
    /* display: flex; */
    padding: 50px 100px;
    border: 1px solid #5a5a5a;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 6px 6px 0px rgba(0, 0, 0, 0.1);
}

.box-slide-campus-flex {
    display: flex;
    gap: 60px;
}

.box-left-slide {
    width: 400px;
}

.box-right-slide {
    width: calc(60% - 61px);
}

.title-bg-2 {
    min-height: 45px;
    font-size: 2.1rem;
    font-family: "KoHo", sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    background: linear-gradient(-90deg, #fffaab 0%, #ffd494 100%);
    border-radius: 5px;
    margin-bottom: 10px;
}

.text-bg-gradient {
    min-height: 50px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background: linear-gradient(90deg, rgb(255, 233, 221) 0%, rgb(255, 218, 239) 34%, rgb(255, 222, 218) 69%, rgb(255, 238, 223) 100%);
    border-radius: 5px;
    margin-bottom: 10px;
}

.text-bg-gray {
    min-height: 55px;
    background-color: #f0f0f0;
    font-size: 1.9rem;
    font-weight: bold;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.text-bg-gray:last-child {
    margin-bottom: 0;
}

.flex-campus-3 {
    display: flex;
    font-size: 4.3rem;
    font-family: "IBM Plex Sans JP", sans-serif;
    gap: 10px;
    align-items: center;
    font-weight: 600;
}

.box-title-campus-3>p {
    font-size: 2.1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.box-title-campus-3 {
    padding-bottom: 10px;
    border-bottom: 1px solid #000000;
    margin-bottom: 40px;
}

.slide-campus.slick-slider .slick-arrow {
    border: none;
    padding: 0;
    left: -25px;
    width: 50px;
    transform: translateY(-50%);
    height: 50px;
}

.slide-campus.slick-slider .slick-arrow.next-arrow {
    left: auto;
    right: -25px;
}

.slide-campus.slick-slider ul.slick-dots {
    bottom: -42px;
}

.slide-campus.slick-slider ul.slick-dots li {
    margin: 0 9px;
}

.slide-campus.slick-slider .slick-slide img {
    border-radius: 20px;
}

.box-flex-text-bg {
    display: flex;
    margin-bottom: 10px;
    gap: 10px;
}

.box-flex-text-bg .text-bg-gradient {
    width: 260px;
    margin-bottom: 0;
}

.box-flex-text-bg .text-bg-gray {
    flex: 1;
    min-height: 45px;
    font-size: 1.6rem;
    text-align: left;
    padding-left: 24px;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 0;
}

.box-btn-campus-2 a.btn.btn-main {
    padding-left: 55px;
    justify-content: flex-start;
    min-height: 90px;
    border-radius: 45px;
    min-width: 490px;
    border: 2px solid;
}

.box-btn-campus-2 a.btn.btn-main p {
    font-size: 2rem;
    color: #fff;
    line-height: 1.2;
    transition: 0.3s;
}

.box-btn-campus-2 a.btn.btn-main p span {
    font-size: 2.5rem;
    transition: 0.3s;
}

.box-btn-campus-2 a.btn.btn-main.btn-2 {
    background-color: #9d94e8;
    border-color: #9d94e8;
}

.box-btn-campus-2 a.btn.btn-main.btn-2::after {
    background-image: url(../images/campus/icon-right-2.svg);
    transition: 0.3s;
}

.box-btn-campus-2 a.btn.btn-main.btn-2:hover {
    background-color: #fff;
}

.box-btn-campus-2 a.btn.btn-main.btn-2:hover p {
    color: #9d94e8;
}

.box-btn-campus-2 a.btn.btn-main.btn-2:hover p span {
    color: #9d94e8;
}

.box-btn-campus-2 a.btn.btn-main.btn-2:hover::after {
    background-image: url(../images/campus/icon-right-2-hover.svg);
}

.box-btn-campus-2 a.btn.btn-main.btn-3 {
    background-color: #00b5ab;
    border-color: #00b5ab;
}

.box-btn-campus-2 a.btn.btn-main.btn-3::after {
    background-image: url(../images/campus/icon-right-3.svg);
    transition: 0.3s;
}

.box-btn-campus-2 a.btn.btn-main.btn-3:hover {
    background-color: #fff;
}

.box-btn-campus-2 a.btn.btn-main.btn-3:hover p {
    color: #00b5ab;
}

.box-btn-campus-2 a.btn.btn-main.btn-3:hover p span {
    color: #00b5ab;
}

.box-btn-campus-2 a.btn.btn-main.btn-3:hover::after {
    background-image: url(../images/campus/icon-right-3-hover.svg);
}

.img-campus-4 img {
    border-radius: 10px;
}

.campus-04 {
    position: relative;
}

.campus-04::after {
    content: "";
    width: 647px;
    height: 647px;
    background-image: url(../images/campus/after-campus-4-1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: -315px;
    top: 280px;
    z-index: -1;
}

.campus-04::before {
    content: "";
    width: 613px;
    height: 613px;
    background-image: url(../images/campus/after-campus-4-2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: -315px;
    bottom: -150px;
    z-index: -1;
}

.campus-04 .box-icon-tel {
    justify-content: center;
}

.text-icon-tel {
    font-size: 3rem;
    font-family: "KoHo", sans-serif;
    font-weight: 600;
    color: #1e3a94;
}

.text-icon-tel span {
    font-size: 4rem;
    color: #333;
}

.map-campus {
    height: 450px;
}

.map-campus iframe {
    width: 100%;
    height: 100%;
}

.text-map {
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #1e3a94;
}

.text-map h3 {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}

.text-map span {
    color: #1e3a94;
}

.page-form .stepList li {
    background-color: #def7f5;
    border: 1px solid #5a5a5a;
    color: #17b0a3;
    border-bottom: none;
}

.page-form .stepList li.active {
    background-color: #17b0a3;
    color: #fff;
}

.form-item .left p {
    line-height: 1.3;
}

.form-item.mb-20 {
    margin-bottom: 20px;
}

input#資料請求の申し込み {
    border-radius: 0;
}

input#資料請求の申し込み:checked:before {
    border-radius: 0;
}

.form-01 {
    position: relative;
}

.form-01::after {
    content: "";
    width: 100%;
    height: 100%;
    background-image: url(../images/index/bg-form.png);
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -4;
}

.form-01 .main-title-en {
    color: #fff;
}

.box-radio label {
    margin-right: 50px;
}

.breadcrumbs {
    display: flex;
    justify-content: flex-end;
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    font-weight: 500;
}

.breadcrumbs ol li {
    font-size: 1.7rem;
    display: flex;
    align-items: center;
}

.breadcrumbs ol li:nth-child(1) {
    color: #1e3a94;
    text-decoration: none;
}

.breadcrumbs ol li:nth-child(1)::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 21px;
    background-image: url(../img/applicant/icon-breadcrums-010.svg);
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
}

.breadcrumbs ol li a {
    color: #1e3a94;
    text-decoration: none;
}

.page-anchor {
    padding-top: 30px;
}

.home-banner video {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.box-fixed-menu {
    position: fixed;
    right: 0;
    top: 180px;
    z-index: 3;
}

.list-social-header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    padding: 15px 0;
}

.fixed-menu-inner {
    border-radius: 10px 0 0 10px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.25);
}

.fixed-menu-item-btn a.btn.btn-header:hover {
    background-color: #ff8800;
    color: #fff;
}

.fixed-menu-item-btn a.btn.btn-header:hover::before {
    background-color: #fff;
}

.fixed-menu-item-btn a.btn.btn-header:hover:nth-child(2) {
    background-color: #5b60c9;
    color: #fff;
}

.fixed-menu-item-btn a.btn.btn-header:hover:nth-child(2)::before {
    background-color: #fff;
}

.fixed-menu-item-btn a.btn.btn-header {
    width: 70px;
    height: 200px;
    padding: 45px 20px 10px;
    font-size: 1.6rem;
    letter-spacing: 0;
    padding-top: 45px;
    writing-mode: vertical-rl;
    border-radius: 0;
    margin: 0;
    border: none;
}

.fixed-menu-item-btn a.btn.btn-header:after {
    left: 50%;
    transform: translateX(-50%);
    display: none;
}

.fixed-menu-item-btn a.btn.btn-header:before {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    top: 14px;
}

.fixed-menu-item-btn a.btn.btn-header:nth-child(2) {
    height: 150px;
    letter-spacing: 0.1em;
    padding-top: 60px;
    border: none;
}

.fixed-menu-item-btn a.btn.btn-header:nth-child(2):before {
    top: 23px;
}

.list-social-header a {
    width: 40px;
}

.box-fixed-menu-sm {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 3;
    border-radius: 5px 5px 0 0;
    overflow: hidden;
}

.fixed-menu-sm-inner {
    display: flex;
}

.fixed-menu-sm-inner a.btn.btn-header {
    width: 33.33%;
    margin-bottom: 0;
    border: none;
    border-right: 1px solid #fff;
    min-height: 55px;
    font-size: 1.3rem;
    border-radius: 0;
    padding-left: 43px;
    line-height: 1.47;
}

.fixed-menu-sm-inner a.btn.btn-header:last-child {
    border-right: none;
}

.fixed-menu-sm-inner a.btn.btn-header::after {
    left: 13px;
    display: none;
}

.fixed-menu-sm-inner a.btn.btn-header::before {
    left: 13px;
    width: 20px;
    height: 23px;
}

.fixed-menu-sm-inner a.btn.btn-header:nth-child(3) {
    padding-left: 53px;
    background-color: #18ba87;
}

.fixed-menu-sm-inner a.btn.btn-header:nth-child(3)::before {
    width: 17px;
    left: 25px;
    height: 23px;
    mask-image: url(../images/index/icon-phone-header.svg);
    -webkit-mask-image: url(../images/index/icon-phone-header.svg);
}

.list-anchor.list-anchor-center {
    justify-content: center;
}

.page-header-title .title-jp h1 {
    letter-spacing: 0.075em;
}

body.menu-open.admin-bar .header-wrapper {
    top: 32px;
}

@media (min-width: 768px) {
    header {
        height: 102px;
    }

    .home-banner {
        height: calc(100vh - 201px);
    }

    .home-banner.no-important {
        height: calc(100vh - 100px);
    }
}

.voice-icon-top {
    position: relative;
}

.voice-icon-top::after {
    content: "";
    width: 214px;
    height: 214px;
    background-image: url(../images/index/after-voice-1.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: -293px;
    top: 485px;
    z-index: -1;
}

.voice-icon-top::before {
    content: "";
    width: 214px;
    height: 214px;
    background-image: url(../images/index/after-voice-2.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: -306px;
    top: 160px;
    z-index: -1;
}

.voice-icon-bottom {
    position: relative;
}

.voice-icon-bottom::after {
    content: "";
    width: 647px;
    height: 647px;
    background-image: url(../images/index/after-voice-3.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    left: -385 px;
    bottom: -620px;
    z-index: -1;
}

.voice-icon-bottom::before {
    content: "";
    width: 214px;
    height: 214px;
    background-image: url(../images/index/after-voice-4.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    position: absolute;
    right: -344px;
    top: 50%;
    transform: translateY(-50%);
    z-index: -1;
}

section#voice-03 .title-bg {
    background: linear-gradient(90deg, #baf0ff 0, #ebf8fb 100%);
    border-color: #008fcc;
    color: #008fcc;
}

/* 夜間ミニオープンキャンパス用スタイル */
.img-campus-with-badge {
    position: relative;
}

.reservation-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background-color: #ec2028;
    color: #fff;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 1.6rem;
    font-weight: 600;
    white-space: nowrap;
    letter-spacing: 0.05em;
    z-index: 2;
}

.info-campus.color-night {
    background-color: #fff;
    color: #000;
}

/* スマートフォンで非表示にする空のカラム用 */
.night-campus-spacer {
    visibility: hidden;
}


/*# sourceMappingURL=common.css.map */