@charset "UTF-8";

body {
    overflow-x: hidden;
    background-color: #F0EFEA;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
}
h1, h2, h3, h4, h5, h6 {
    color: #000;
}
img {
    height: auto;
}
.sp-only {
    display: none !important;
}
@media (max-width: 767px) {

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

}
@media (max-width: 575px) {

    .cb-cursor {
        display: none;
    }

}
@media (hover: hover) and (pointer: fine) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

/*---------------------------------

    header

---------------------------------*/
.navbar-expand-lg .navbar-collapse {
    gap: 40px;
}
.main-menu .nav-menu-wrapper {
    display: flex;
    justify-content: center;
}

@media (max-width: 1300px) {

    .navbar-expand-lg .navbar-collapse {
		gap: 20px;
	}

}


/*---------------------------------

    footer

---------------------------------*/
.footer-contact-info {
    width: fit-content;
    margin-top: 60px;
    margin-left: 80px;
    font-size: 20px;
}
.footer-contact-info .footer-contact-info-tel span {
    display: inline-block;
}
.footer-contact-info .footer-contact-info-tel a,
.footer-contact-info .footer-contact-info-mail a {
    color: #000;
    text-decoration: underline;
    transition: color 0.3s;
}
.footer-contact-info .footer-contact-info-mail a:hover {
    color: #2B999C;
}
.footer-contact-info .footer-contact-info-text {
    margin-top: 15px;
}
.footer-button {
    margin-bottom: 25px;
}
.footer-link {
    margin-bottom: 10px;
    text-align: right;
}
.footer-link a {
    color: #2B999C;
    font-size: 18px;
    text-decoration: underline;
    transition: opacity 0.3s;
}
.footer-link a:hover {
    opacity: 0.7;
}
@media (max-width: 991px) {

    .footer-contact-info {
        margin-top: 0;
        margin-left: auto;
    }

}
@media (max-width: 767px) {

    .footer-contact-info {
        margin: 0 auto;
        font-size: 16px;
    }
    .footer-button {
        text-align: center;
    }
    .footer-button .btn-default {
        padding: 15px 64px 15px 40px;
    }
    .footer-copyright-text p {
        text-align: center;
    }
    .footer-link {
        text-align: center;
    }

}


/*---------------------------------

    hero

---------------------------------*/
.splide:has(.hero) {
    pointer-events: none;
}
.hero .container-fluid {
    padding-left: 15px;
    padding-right: 15px;
}
.hero-content p {
    color: #fff;
    font-size: 2.6vw;
    font-weight: 700;
}
.hero-content span {
    display: inline-grid;
}
.hero-content span.green {
    font-feature-settings: "palt";
    font-size: 3.1vw;
    background-image: linear-gradient(267.43deg, var(--accent-color) 4.95%, var(--dark-color) 97.92%);
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@media (max-width: 767px) {

    .hero-content p {
        margin-bottom: 3em;
		font-size: 5vw;
	}
    .hero-content span.green {
        font-size: 6vw;
    }

}


/*---------------------------------

    information

---------------------------------*/
.information {
    padding-top: 100px;
    overflow-x: hidden;
}
.information .section-title {
    margin-left: 80px;
}
.information-wrap-inner {
    max-width: 1000px;
    max-height: 300px;
    margin: 0 auto;
    overflow-y: auto;
    padding-right: 50px;
}
.information-wrap-inner::-webkit-scrollbar {
    width: 14px;
}
.information-wrap-inner::-webkit-scrollbar-track {
    border-radius: 12px;
    background-color: #fff;
}
.information-wrap-inner::-webkit-scrollbar-thumb {
    border-radius: 13px;
    background-color: #2B999C;
}
.information-note {
    text-align: center;
}
.information-note a {
    color: #FF0000;
    font-weight: 700;
    text-decoration: underline;
}
.information-note a:hover {
    color: #3e3d3d;
}
.information-list {
    list-style: none;
    padding-left: 0;
}
.information-list-item {
    border-bottom: 1px solid #707070;
}
.information-list-item a {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 20px;
    padding: 20px 90px;
    color: #000;
    transition: color 0.3s;
}
.information-list-item a:hover {
    color: #2B999C;
}
.information-list-item time {
    color: #2B999C;
}
.information-list-item p {
    margin-bottom: 0;
}
@media (max-width: 1300px) {

    .information .section-title {
        margin-left: 0;
    }
    .information-list-item a {
        padding: 20px 50px;
    }

}
@media (max-width: 767px) {

    .information {
        padding-top: 80px;
    }
    .information-note {
        text-align: left;
    }
    .information-wrap-inner {
        max-height: 480px;
        padding-right: 30px;
    }
    .information-wrap-inner::-webkit-scrollbar {
        width: 10px;
    }
    .information-wrap-inner::-webkit-scrollbar-track {
        border-radius: 8px;
    }
    .information-wrap-inner::-webkit-scrollbar-thumb {
        border-radius: 8px;
    }
    .information-list-item a {
        grid-template-columns: 90px 1fr;
        padding: 20px;
    }

}


/*---------------------------------

    modal

---------------------------------*/
.cm-modal {
	display: none;
	position: fixed;
    inset: 0;
    z-index: 1000;
}
.cm-modal.is-open {
    display: grid;
	place-items: center;
}
.cm-modal-overlay {
    position: absolute;
    inset: 0;
    background-color: rgb(0 0 0 / 0.8);
}
.cm-modal-container {
	position: relative;
	width: 90%;
    max-width: 1200px;
    max-height: 80vh;
    padding: 100px 80px;
    overflow-y: auto;
    background-color: #fff;
}
.cm-modal-button {
	position: absolute;
    top: 30px;
	right: 30px;
	width: 35px;
    height: 35px;
	cursor: pointer;
    border: none;
    background: none;
}
.cm-modal-button::before,
.cm-modal-button::after {
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 4px;
    background-color: #2B999C;
    content: "";
}
.cm-modal-button::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.cm-modal-button::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
.cm-modal-date {
    display: inline-block;
    color: #2B999C;
    margin-bottom: 10px;
}
.cm-modal-title {
    margin-bottom: 40px;
    font-size: 32px;
}
.cm-modal-img {
    margin: 40px 0;
    text-align: center;
}
.cm-modal-bottom-button {
    margin-top: 60px;
    text-align: center;
}
.cm-modal-bottom-button .btn-default {
    padding: 17px 50px;
}
.cm-modal-bottom-button .btn-default::before {
    content: none;
}
.cm-modal-media {
    display: grid;
    grid-template-columns: 1fr 35%;
    gap: 40px;
    margin-bottom: 40px;
}
.cm-modal-media-text {
    align-self: center;
}
.cm-modal-media-text p {
    margin-bottom: 10px;
    color: #2B999C;
    font-size: 22px;
    font-weight: 700;
}
.cm-modal-media-text .cm-modal-title {
    margin-bottom: 0;
    font-size: 40px;
}
.cm-modal-faq-item {
    margin-bottom: 40px;
}
.cm-modal-faq-item dt {
    margin-bottom: 20px;
}
.cm-modal-flow {
    margin-top: 100px;
}
.cm-modal-flow-title {
    margin-bottom: 40px;
    font-size: 32px;
}
.cm-modal-flow-list {
    list-style: none;
    border-left: 3px solid #2B999C;
    padding-left: 0;
    margin-left: 60px;
}
.cm-modal-flow-item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 30px;
    position: relative;
    padding: 20px 0 20px 50px;
    font-size: 20px;
    font-weight: 700;
}
.cm-modal-flow-item::before {
    position: absolute;
    top: 28px;
    left: 0;
    transform: translateX(-63%);
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #2B999C;
    content: "";
}
.cm-modal-flow-item p {
    transform: translateY(-4px);
    margin-bottom: 0;
}
.cm-modal-container:has(.cm-modal-movie) {
    width: fit-content;
    max-height: 90vh;
    padding: 0;
    overflow-y: unset;
}
.cm-modal-container:has(.cm-modal-movie) .cm-modal-button {
    top: 0;
    right: 0;
    transform: translate(50%, -50%);
}
.cm-modal-movie {
    height: 90vh;
    aspect-ratio: 674 / 1198;
}
.cm-modal-movie iframe {
    width: 100%;
    height: 100%;
}
.cm-modal-table-wrap {
    margin-top: 100px;
}
.cm-modal-table-contents {
    margin-top: 30px;
}
.cm-modal-table {
    width: 100%;
}
.cm-modal-table th,
.cm-modal-table td {
    border: 1px solid #707070;
    padding: 30px 20px;
}
.cm-modal-table th {
    width: 220px;
}
.cm-modal-table td p:last-child {
    margin-bottom: 0;
}
.cm-modal-table td strong {
    color: #FF0000;
}
.cm-modal-table td strong.underline {
    text-decoration: underline;
}
.cm-modal-table02 {
    width: 100%;
}
.cm-modal-table02 th,
.cm-modal-table02 td {
    border: 1px solid #707070;
    padding: 30px 20px;
}
.cm-modal-table02 th {
    width: 120px;
}
.cm-modal-table02 tr:first-child td:nth-of-type(1) {
    width: calc(calc(100% - 220px) * 0.4);
}
.cm-modal-table02 tr:first-child td:nth-of-type(2) {
    width: calc(calc(100% - 220px) * 0.6);
}
.cm-modal-table02 tr:first-child td:nth-of-type(3) {
    width: 100px;
}
.cm-modal-text-wrap {
    width: fit-content;
    margin: 0 auto;
}
.cm-modal-text {
    font-size: 20px;
}
.cm-modal-list {
    margin-top: 80px;
    padding: 0 40px;
}
.cm-modal-list-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    margin-bottom: 20px;
    font-size: 18px;
}
@media (max-width: 991px) {

    .cm-modal-media {
        display: flex;
        flex-direction: column;
    }
    .cm-modal-media-text {
        align-self: start;
    }
    .cm-modal-media-img {
        text-align: center;
    }
    .cm-modal-media-img img {
        width: 60%;
    }
    .cm-modal-media-text p {
        font-size: 20px;
    }
    .cm-modal-media-text .cm-modal-title {
        font-size: 32px;
    }
    .cm-modal-table th,
    .cm-modal-table td {
        font-size: 15px;
    }
    .cm-modal-table th {
        width: 190px;
    }
    .cm-modal-table02 th,
    .cm-modal-table02 td {
        font-size: 15px;
    }

}
@media (max-width: 767px) {

    .cm-modal-container {
        padding: 80px 30px;
    }
    .cm-modal-button {
        top: 20px;
        right: 20px;
    }
    .cm-modal-button::before,
    .cm-modal-button::after {
        width: 35px;
    }
    .cm-modal-title {
        font-size: 24px;
    }
    .cm-modal-media-text p {
        font-size: 16px;
    }
    .cm-modal-media-text .cm-modal-title {
        font-size: 22px;
    }
    .cm-modal-media-img img {
        width: 80%;
    }
    .cm-modal-flow {
        margin-top: 80px;
    }
    .cm-modal-flow-title {
        font-size: 20px;
    }
    .cm-modal-flow-list {
        margin-left: 20px;
    }
    .cm-modal-flow-item {
        grid-template-columns: 60px 1fr;
        gap: 20px;
        padding: 20px 0 20px 30px;
        font-size: 16px;
    }
    .cm-modal-flow-item::before {
        top: 28px;
        transform: translateX(-64%);
        width: 10px;
        height: 10px;
    }
    .cm-modal-flow-item p {
        transform: translateY(-1px);
    }
    .cm-modal-container:has(.cm-modal-movie) {
        width: 70%;
    }
    .cm-modal-movie {
        height: auto;
    }
    .cm-modal-table-wrap {
        margin-top: 80px;
    }
    .cm-modal-table-wrap h4 {
        font-size: 20px;
    }
    .cm-modal-table {
        min-width: 900px;
    }
    .cm-modal-table th,
    .cm-modal-table td {
        padding: 20px;
        font-size: 15px;
    }
    .cm-modal-table02 {
        min-width: 900px;
    }
    .cm-modal-table02 th,
    .cm-modal-table02 td {
        padding: 20px;
        font-size: 15px;
    }
    .cm-modal-table02 th {
        width: 100px;
    }
    .cm-modal-table02 tr:first-child td:nth-of-type(1) {
        width: 240px;
    }
    .cm-modal-table02 tr:first-child td:nth-of-type(2) {
        width: 490px;
    }
    .cm-modal-table02 tr:first-child td:nth-of-type(3) {
        width: 70px;
    }
    .cm-modal-text {
        font-size: 16px;
    }
    .cm-modal-list {
        margin-top: 60px;
        padding: 0;
    }
    .cm-modal-list-item {
        grid-template-columns: 1fr;
        gap: 10px;
        font-size: 16px;
        margin-bottom: 30px;
    }

}


/*---------------------------------

    job introduction

---------------------------------*/
.job {
    padding-top: 100px;
}
.page-video-gallery {
    max-width: 90%;
    margin: 70px auto 0;
}
.page-video-gallery .container {
    padding-left: 30px;
    padding-right: 30px;
}
.job-sub-title {
    margin-bottom: 50px;
    color: #2B999C;
    font-size: 30px;
    text-align: center;
}
@media (max-width: 767px) {

    .job {
        padding-top: 80px;
    }
    .page-video-gallery .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .job-sub-title {
        font-size: 24px;
    }
    .team-member-item {
        padding-left: 20px;
        padding-right: 20px;
    }
    .team-image img {
        aspect-ratio: 300 / 220;
    }
    .job .col-lg-4.col-md-6:nth-child(1) .team-image img {
        object-position: 50% 30%;
    }
    .job .col-lg-4.col-md-6:nth-child(2) .team-image img {
        object-position: 50% 30%;
    }
    .page-video-gallery {
        max-width: unset;
    }
    .video-gallery-image img {
        aspect-ratio: 300 / 220;
        aspect-ratio: unset;
    }

}


/*---------------------------------

    division

---------------------------------*/
.division {
    padding-top: 100px;
}
.division .section-title {
    margin-left: 80px;
}
.division-wrap:not(:last-child) {
    margin-bottom: 80px;
}
.division-images {
    position: relative;
    padding: 0 70px 0 80px;
}
.division-images img {
    border-radius: 40px;
}
.division-content .section-title {
    margin-bottom: 30px;
    margin-left: 0;
}
.division-content .section-title h2 {
    font-size: 40px;
}
.division-button {
    margin-top: 30px;
}
.division-button .btn-default {
    padding: 17px 50px;
}
.division-button .btn-default::before {
    content: none;
}
@media (max-width: 1300px) {

    .division .section-title {
        margin-left: 40px;
    }
    .division-content .section-title {
        margin-left: 0;
    }
    .division-images {
        padding: 0 40px 0 50px;
    }

}
@media (max-width: 991px) {

    .division-images {
        margin-bottom: 40px;
    }
    .division-content .section-title h2 {
        font-size: 36px;
    }
    .division-button {
        text-align: center;
    }

}
@media (max-width: 767px) {

    .division {
        padding-top: 80px;
    }
    .division .section-title,
    .division-content .section-title {
        margin-left: 0;
    }
    .division-images {
        padding: 0 20px;
    }
    .division-images img {
        border-radius: 20px;
    }
    .division-content {
        padding-left: 20px;
        padding-right: 20px;
    }
    .division-content .section-title h2 {
        font-size: 30px;
    }

}


/*---------------------------------

    education system

---------------------------------*/
.education {
    padding-top: 100px;
}
.page-services .service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}
.page-services .service-item .btn-default {
    padding: 17px 50px;
}
.page-services .service-item .btn-default::before {
    content: none;
}
.education-banner {
    margin: 50px 0 80px;
}
.education-banner a {
    display: block;
    width: 65%;
    max-width: 800px;
    margin: 0 auto;
    transition: opacity 0.3s;
}
.education-banner a:hover {
    opacity: 0.7;
}
.education-sub-title {
    color: #2B999C;
    font-size: 30px;
    margin-bottom: 30px;
}
#modal-education01 .cm-modal-container,
#modal-education02 .cm-modal-container,
#modal-education03 .cm-modal-container,
#modal-education04 .cm-modal-container,
#modal-education05 .cm-modal-container,
#modal-education06 .cm-modal-container {
    padding: 40px 80px;
}
#modal-education01 .cm-modal-img,
#modal-education02 .cm-modal-img,
#modal-education03 .cm-modal-img,
#modal-education04 .cm-modal-img,
#modal-education05 .cm-modal-img:first-child,
#modal-education06 .cm-modal-img {
    margin: 0;
}
#modal-education01 .cm-modal-img img,
#modal-education02 .cm-modal-img img,
#modal-education03 .cm-modal-img img,
#modal-education04 .cm-modal-img img,
#modal-education05 .cm-modal-img:first-child img,
#modal-education06 .cm-modal-img img {
    width: auto;
    max-height: 66vh;
}
@media (max-width: 991px) {

    .page-services .service-item {
        flex-direction: column;
        gap: 20px;
    }

}
@media (max-width: 767px) {

    .education {
        padding-top: 80px;
    }
    .education-banner a {
        width: 100%;
    }
    .education-sub-title {
        font-size: 24px;
    }
    #modal-education01 .cm-modal-container,
    #modal-education02 .cm-modal-container,
    #modal-education03 .cm-modal-container,
    #modal-education04 .cm-modal-container,
    #modal-education05 .cm-modal-container,
    #modal-education06 .cm-modal-container {
        padding: 80px 20px;
    }
    #modal-education01 .cm-modal-img img,
    #modal-education02 .cm-modal-img img,
    #modal-education03 .cm-modal-img img,
    #modal-education04 .cm-modal-img img,
    #modal-education05 .cm-modal-img:first-child img,
    #modal-education06 .cm-modal-img img {
        width: 100%;
        max-height: unset;
    }

}


/*---------------------------------

    benefit

---------------------------------*/
.benefit {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding-top: 100px;
    border-radius: 40px;
    background-color: #fff;
}
.how-work-item .icon-box img {
    width: 140px;
}
.tab-list {
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.tab-list li {
    font-size: 22px;
    font-weight: 700;
}
.tab-list li + li::before {
    content: "/";
    margin: 0 22px;
}
.tab-list li label {
    position: relative;
    display: inline-block;
    cursor: pointer;
}
.tab-list li label input {
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
}
.tab-list li label span {
    transition: color 0.3s;
}
.tab-list li label input:checked + span {
    color: #2B999C;
}
.tab-list li label:hover span {
    color: #2B999C;
}
.tab-contents {
    display: none;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s ease-out;
}
.tab-contents.is-active {
    display: flex;
    opacity: 1;
    visibility: visible;
}
@media (max-width: 991px) {

    .tab-list {
        margin: 50px 0 40px;
    }
    .how-work-item .icon-box img {
        width: 120px;
    }

}
@media (max-width: 767px) {

    .benefit {
        padding-top: 80px;
    }
    .benefit .container {
        padding-left: 30px;
        padding-right: 30px;
    }
    .tab-list {
        flex-wrap: wrap;
        justify-content: center;
        row-gap: 10px;
        width: fit-content;
    }
    .tab-list li {
        width: 50%;
        font-size: 18px;
    }
    .tab-list li:nth-child(odd) {
        padding-right: 27px;
        text-align: right;
    }
    .tab-list li + li::before {
        margin-left: 0;
    }
    .tab-list li:nth-child(3)::before {
        content: none;
    }
    .how-work-item .icon-box img {
        width: 150px;
    }

}


/*---------------------------------

    recruit

---------------------------------*/
.recruit {
    padding-top: 100px;
}
.recruit-sub-title {
    margin: 20px 0 30px;
    color: #2B999C;
    font-size: 30px;
    text-align: center;
}
.recruit-button {
    text-align: center;
}
.recruit-button .btn-default {
    padding: 17px 50px;
}
.recruit-button .btn-default::before {
    content: none;
}
@media (max-width: 767px) {

    .recruit {
        padding-top: 80px;
    }
    .recruit-sub-title {
        font-size: 24px;
    }
    .recruit .col-lg-4.col-md-6:nth-child(2) .team-image img {
        object-position: 50% 15%;
    }

}


/*---------------------------------

    Instagram

---------------------------------*/
.instagram {
    padding: 220px 0 150px;
}
.instagram-title {
    margin-bottom: 30px;
    color: #2B999C;
    font-size: 30px;
    text-align: center;
}
.instagram-feed iframe {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1020 / 510;
}
@media (max-width: 767px) {

    .instagram {
        padding: 150px 0 100px;
    }
    .instagram-title {
        font-size: 24px;
    }

}


/*---------------------------------

    movie

---------------------------------*/
.movie-wrap  {
    padding-bottom: 100px;
}
.movie-wrap-title {
    margin-bottom: 30px;
    color: #2B999C;
    font-size: 30px;
    text-align: center;
}
.movie-item {
    aspect-ratio: 840 / 480;
    border-radius: 40px;
    overflow: hidden;
    margin-bottom: 30px;
}
.movie-item iframe {
    width: 100%;
    height: 100%;
}
@media (max-width: 767px) {

    .movie-wrap-title {
        font-size: 24px;
    }
    .movie-item {
        border-radius: 20px;
    }
}
