@charset "UTF-8";
/** ================================================
 * リセットCSS
 *  A Modern CSS Reset：
 *  https://github.com/Andy-set-studio/modern-css-reset/blob/master/dist/reset.min.css
 * ================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
    margin: 0;
}

ul[role='list'],
ol[role='list'] {
    list-style: none;
}

html:focus-within {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    text-rendering: optimizeSpeed;
    line-height: 1.5;
}

a:not([class]) {
    -webkit-text-decoration-skip: ink;
    text-decoration-skip-ink: auto;
}

img,
picture {
    max-width: 100%;
    display: block;
}

input,
button,
textarea,
select {
    font: inherit;
}

@media (prefers-reduced-motion: reduce) {
    html:focus-within {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
/** ================================================
 * 基本設定
 * ================================================ */
html {
    overflow-x: hidden;
}

body {
    color: #222222;
    position: relative;
    overflow-x: hidden;
    overflow-y: visible;
    max-width: 100%;
    min-width: 100%;
}

.page-body {
    margin-top: 80px;
}
@media screen and (max-width: 1023px) {
    .page-body {
        margin-top: 64px;
    }
}
@media screen and (max-width: 599px) {
    .page-body {
        margin-top: 56px;
    }
}

a,
a:visited {
    color: #222222;
    text-decoration: none;
    transition: all 0.3s;
}

@media (hover: hover) {
    a:hover {
        opacity: 0.8;
        cursor: pointer;
    }
}
ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

.caution {
    font-size: 0.6em;
    vertical-align: super;
    margin-inline: -0.25em;
}

.caution__text {
    font-size: 0.75em;
    margin-top: 0.75em;
    padding-left: 1em;
    text-indent: -1em;
}

@media screen and (max-width: 767px) {
    .sp-none {
        display: none;
    }
}

.sp-only {
    display: none;
}
@media screen and (max-width: 767px) {
    .sp-only {
        display: block;
    }
}

.js-slide-fade-up {
    opacity: 0;
    transform: translateY(30px) translateX(-60px);
}

.slide-fade-up {
    animation: slideFadeUp 0.6s ease-out forwards;
}
@keyframes slideFadeUp {
    0% {
        opacity: 0;
        transform: translateY(30px) translateX(-60px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(0);
    }
}

.js-fade-up {
    opacity: 0;
    transform: translateY(10px);
}

.fade-up {
    animation: fadeUp 0.6s ease-out forwards;
}
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.js-heading-glint {
    opacity: 0;
}
.js-heading-glint span {
    animation: none;
}
.js-heading-glint.is-glint-active {
    animation-name: heading-appear;
    animation-duration: 3.5s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
}
.js-heading-glint.is-glint-active span {
    opacity: 1;
    animation-name: heading-glint;
    animation-duration: 3s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

@keyframes heading-appear {
    0% {
        opacity: 0;
        filter: brightness(1.6);
    }
    20% {
        opacity: 0.7;
        filter: brightness(1.5);
    }
    40% {
        opacity: 1;
        filter: brightness(1.4);
    }
    80% {
        opacity: 1;
        filter: brightness(1.1);
    }
    100% {
        opacity: 1;
        filter: brightness(1);
    }
}
@keyframes heading-glint {
    0% {
        color: #222222;
        filter: brightness(1);
    }
    6% {
        color: #17789c;
        filter: brightness(1.2);
    }
    10% {
        color: #17789c;
        filter: brightness(1.5);
    }
    14% {
        color: #17789c;
        filter: brightness(1.2);
    }
    20% {
        color: #222222;
        filter: brightness(1);
    }
    100% {
        color: #222222;
        filter: brightness(1);
    }
}
html {
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
}

body {
    line-height: 1.8;
    letter-spacing: 0.02em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 500;
}

p {
    font-size: 1rem;
    text-align: justify;
    text-justify: inter-ideograph;
}

.text-small {
    font-size: 0.8em;
}

.text-strong {
    font-weight: 700;
}

.right-arrow {
    width: 8px;
    height: 12px;
    stroke: #222222;
    stroke-width: 1px;
    fill: none;
}
.right-arrow--white {
    stroke: #fff;
}

.external-link {
    height: 1.2em;
    aspect-ratio: 1/1;
    fill: #7a7a7a;
    margin-left: 4px;
    margin-bottom: -0.2em;
}

/** ================================================
 * ヘッダー
 * ================================================ */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    padding: 16px 4% 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-bottom: 1px solid #c4c4c4;
    z-index: 100;
    transition: padding-top 0.3s ease, opacity 0.4s ease;
}
@media screen and (max-width: 1439px) {
    .header {
        padding-inline: 2%;
    }
}
@media screen and (max-width: 1023px) {
    .header {
        padding-inline: 4%;
        padding-block: 12px;
        height: 64px;
    }
}
@media screen and (max-width: 599px) {
    .header {
        padding-inline: 20px;
        height: 56px;
    }
}
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 9999;
}
.header__title {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__title a {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__title a img {
    width: 164px;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}
@media screen and (max-width: 1023px) {
    .header__title a img {
        width: 120px;
    }
}
@media screen and (max-width: 599px) {
    .header__title a img {
        width: 104px;
    }
}
.header__nav {
    padding-inline: 20px;
    margin-left: auto;
}
@media screen and (max-width: 1439px) {
    .header__nav {
        padding-inline: 0;
        margin-inline: auto;
    }
}
@media screen and (max-width: 1023px) {
    .header__nav {
        display: none;
    }
}
.header__nav-list {
    display: flex;
    gap: 1.2vw;
}
@media screen and (max-width: 1619px) {
    .header__nav-list {
        gap: 0.4vw;
    }
}
@media screen and (max-width: 1439px) {
    .header__nav-list {
        gap: 0;
    }
}
.header__nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header__nav-item a {
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0;
    color: #222222;
    padding-inline: 1.2vw;
    position: relative;
    overflow: hidden;
}
.header__nav-item a .nav-text {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    line-height: 1.2;
}
.header__nav-item a .nav-text--en {
    transform: translateY(0);
    font-family: 'Manrope', sans-serif;
}
.header__nav-item a .nav-text--ja {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translateY(100%);
}
@media (hover: hover) {
    .header__nav-item a:hover .nav-text {
        opacity: 0.8;
    }
    .header__nav-item a:hover .nav-text--en {
        transform: translateY(-100%);
    }
    .header__nav-item a:hover .nav-text--ja {
        transform: translateY(0);
    }
}
.header__contact {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline: 8% 24px;
}
@media screen and (max-width: 1439px) {
    .header__contact {
        margin-inline: 2% 0;
    }
}
@media screen and (max-width: 1023px) {
    .header__contact {
        margin-inline: auto 16px;
    }
}
.header__contact a {
    height: 44px;
    padding-inline: 32px 72px;
    background-color: #17789c;
    color: #fff;
    border-radius: 100vmax;
    font-size: 0.9375rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 1023px) {
    .header__contact a {
        height: 40px;
        padding-inline: 40px;
    }
}
@media screen and (max-width: 599px) {
    .header__contact a {
        height: 32px;
        padding-inline: 32px;
    }
}
@media screen and (max-width: 479px) {
    .header__contact a {
        padding-inline: 18px;
    }
}
.header__contact a .contact-text {
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    line-height: 1.2;
}
.header__contact a .contact-text--en {
    transform: translateY(0);
    font-family: 'Manrope', sans-serif;
}
@media screen and (max-width: 599px) {
    .header__contact a .contact-text--en {
        font-size: 12px;
    }
}
.header__contact a .contact-text--ja {
    position: absolute;
    inset: 0;
    padding-left: 32px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(100%);
}
@media (hover: hover) and (min-width: 1024px) {
    .header__contact a:hover .contact-text--en {
        transform: translateY(-200%);
    }
    .header__contact a:hover .contact-text--ja {
        transform: translateY(0);
    }
}
.header__contact a .right-arrow {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}
@media screen and (max-width: 1023px) {
    .header__contact a .right-arrow {
        display: none;
    }
}
.header__menu-button {
    display: none;
    width: 32px;
    height: 28px;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
}
@media screen and (max-width: 599px) {
    .header__menu-button {
        width: 28px;
        height: 24px;
    }
}
.header__menu-button_inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.header__menu-button_inner span {
    width: 100%;
    height: 2px;
    background-color: #17789c;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 599px) {
    .header__menu-button_inner span {
        height: 1px;
    }
}
@media screen and (max-width: 1023px) {
    .header__menu-button {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}

/** ================================================
 * 下層ページ用ヘッダーエリア
 * ================================================ */
.page-header {
    padding-block: 188px 164px;
    padding-inline: 24px;
}
@media screen and (max-width: 1023px) {
    .page-header {
        padding-block: 124px 100px;
    }
}
@media screen and (max-width: 599px) {
    .page-header {
        padding-block: 80px 56px;
    }
}
.page-header__inner {
    padding-left: 11.4583333333vw;
    display: flex;
    flex-direction: column;
    gap: 80px;
}
@media screen and (max-width: 1023px) {
    .page-header__inner {
        padding-left: 4%;
        gap: 64px;
    }
}
@media screen and (max-width: 599px) {
    .page-header__inner {
        padding-left: 8px;
        gap: 48px;
    }
}
.page-header__title {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.page-header__title--en,
.page-header__title--ja {
    color: #222222;
    font-weight: 700;
    line-height: 1;
}
.page-header__title--en {
    font-family: 'Manrope', sans-serif;
    font-size: 3.375rem;
    letter-spacing: 0.04em;
}
@media screen and (max-width: 1023px) {
    .page-header__title--en {
        font-size: 3.25rem;
    }
}
@media screen and (max-width: 599px) {
    .page-header__title--en {
        font-size: 2.5rem;
    }
}
.page-header__title--ja {
    font-size: 1.375rem;
    letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
    .page-header__title--ja {
        font-size: 1.25rem;
    }
}
@media screen and (max-width: 599px) {
    .page-header__title--ja {
        font-size: 1rem;
    }
}
.page-header .js-heading-glint {
    opacity: 1;
}
.page-header .js-heading-glint.is-glint-active {
    animation: none;
}
.page-header__description {
    font-size: 1rem;
    line-height: 1.6;
}

.page-hero {
    width: 100%;
}
.page-hero__image {
    width: 100%;
    height: 100%;
    aspect-ratio: 1920/546;
}
@media screen and (max-width: 1023px) {
    .page-hero__image {
        aspect-ratio: 1024/440;
    }
}
@media screen and (max-width: 767px) {
    .page-hero__image {
        aspect-ratio: 768/420;
    }
}
@media screen and (max-width: 599px) {
    .page-hero__image {
        aspect-ratio: 390/335;
    }
}
.page-hero__image picture,
.page-hero__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

/** ================================================
 * フッター
 * ================================================ */
.footer-cta {
    position: relative;
    background-color: #222222;
    z-index: 1;
}
.footer-cta__banner {
    width: 100%;
    aspect-ratio: 1920/680;
    overflow: hidden;
}
@media screen and (max-width: 1439px) {
    .footer-cta__banner {
        aspect-ratio: 1440/600;
    }
}
@media screen and (max-width: 1023px) {
    .footer-cta__banner {
        aspect-ratio: 1024/540;
    }
}
@media screen and (max-width: 767px) {
    .footer-cta__banner {
        aspect-ratio: 768/500;
    }
}
@media screen and (max-width: 599px) {
    .footer-cta__banner {
        aspect-ratio: 600/480;
    }
}
@media screen and (max-width: 479px) {
    .footer-cta__banner {
        aspect-ratio: 1/1;
    }
}
.footer-cta__banner picture,
.footer-cta__banner img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.footer-cta__content {
    padding: 100px 24px 120px;
    display: flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1023px) {
    .footer-cta__content {
        padding-block: 88px;
    }
}
@media screen and (max-width: 599px) {
    .footer-cta__content {
        padding-block: 76px 52px;
    }
}
.footer-cta__buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    width: 75vw;
    aspect-ratio: 1440/280;
    min-height: 240px;
    max-height: 284px;
}
@media screen and (max-width: 1439px) {
    .footer-cta__buttons {
        width: 90vw;
        aspect-ratio: 1440/320;
    }
}
@media screen and (max-width: 1023px) {
    .footer-cta__buttons {
        flex-direction: column;
        aspect-ratio: auto;
        max-height: none;
        min-height: none;
        gap: 40px;
    }
}
@media screen and (max-width: 599px) {
    .footer-cta__buttons {
        gap: 24px;
    }
}
.footer-cta__button {
    flex: 1;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 48px;
    border: 1px solid #fff;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
@media screen and (max-width: 1439px) {
    .footer-cta__button {
        padding-inline: 32px;
    }
}
@media screen and (max-width: 1023px) {
    .footer-cta__button {
        width: 80%;
        padding-block: 56px 64px;
        padding-inline: 64px;
    }
}
@media screen and (max-width: 599px) {
    .footer-cta__button {
        width: 100%;
        padding-block: 40px 44px;
        padding-inline: 56px;
    }
}
@media screen and (max-width: 479px) {
    .footer-cta__button {
        padding-block: 32px 36px;
        padding-inline: 56px 40px;
    }
}
.footer-cta__button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: left 0.3s ease;
    z-index: 1;
}
.footer-cta__button__content {
    position: relative;
    padding-left: 72px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    z-index: 2;
    transition: color 0.3s ease;
}
@media screen and (max-width: 1439px) {
    .footer-cta__button__content {
        padding-left: 20px;
    }
}
@media screen and (max-width: 599px) {
    .footer-cta__button__content {
        gap: 8px;
    }
}
@media screen and (max-width: 479px) {
    .footer-cta__button__content {
        padding-left: 0;
    }
}
.footer-cta__button__title {
    font-family: 'Manrope', sans-serif;
    font-size: 3.375rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: #fff;
    line-height: 1;
    transition: color 0.3s ease;
}
@media screen and (max-width: 1439px) {
    .footer-cta__button__title {
        font-size: 3rem;
    }
}
@media screen and (max-width: 1023px) {
    .footer-cta__button__title {
        font-size: 2.5rem;
    }
}
@media screen and (max-width: 599px) {
    .footer-cta__button__title {
        font-size: 2rem;
    }
}
.footer-cta__button__subtitle {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    transition: color 0.3s ease;
}
@media screen and (max-width: 1439px) {
    .footer-cta__button__subtitle {
        font-size: 1.125rem;
    }
}
@media screen and (max-width: 1023px) {
    .footer-cta__button__subtitle {
        font-size: 1rem;
    }
}
@media screen and (max-width: 599px) {
    .footer-cta__button__subtitle {
        font-size: 0.875rem;
    }
}
.footer-cta__button__arrow {
    position: relative;
    z-index: 2;
    width: 24px;
    height: 24px;
    overflow: hidden;
}
.footer-cta__button__arrow .right-arrow {
    stroke: #fff;
    position: absolute;
    width: 7px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.6);
    transition: all 0.3s ease;
}
.footer-cta__button__arrow .right-arrow--default {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.6);
}
.footer-cta__button__arrow .right-arrow--hover {
    opacity: 0;
    transform: translate(calc(-50% - 40px), -50%) scale(1.6);
}
@media (hover: hover) {
    .footer-cta__button:hover::before {
        left: 0;
    }
    .footer-cta__button:hover .footer-cta__button__content {
        color: #222222;
    }
    .footer-cta__button:hover .footer-cta__button__title,
    .footer-cta__button:hover .footer-cta__button__subtitle {
        color: #222222;
    }
    .footer-cta__button:hover .footer-cta__button__arrow .right-arrow {
        stroke: #222222;
    }
    .footer-cta__button:hover .footer-cta__button__arrow .right-arrow--default {
        opacity: 0;
        transform: translate(calc(-50% + 40px), -50%) scale(1.6);
    }
    .footer-cta__button:hover .footer-cta__button__arrow .right-arrow--hover {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.6);
    }
}

.footer {
    background-color: #fff;
    padding: 80px 5%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .footer {
        padding-bottom: 24px;
    }
}
.footer__content {
    display: grid;
    grid-template-columns: 1fr 680px;
    grid-template-rows: 1fr 100px;
    align-items: flex-end;
    gap: 24px;
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 1439px) {
    .footer__content {
        grid-template-columns: 1fr 600px;
    }
}
@media screen and (max-width: 1023px) {
    .footer__content {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(3, auto);
        gap: 64px;
        width: 88vw;
        max-width: 680px;
        margin-inline: auto;
    }
}
@media screen and (max-width: 767px) {
    .footer__content {
        gap: 56px;
        width: 76vw;
        max-width: 520px;
    }
}
@media screen and (max-width: 479px) {
    .footer__content {
        width: 100%;
        gap: 48px;
    }
}
.footer__info {
    grid-area: 1/1/3/2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}
@media screen and (max-width: 1023px) {
    .footer__info {
        grid-area: 2/1/3/2;
        gap: 32px;
    }
}
.footer__info .footer__logo {
    line-height: 1;
}
@media screen and (max-width: 1023px) {
    .footer__info .footer__logo {
        margin-block: 8px 0;
    }
}
@media screen and (max-width: 767px) {
    .footer__info .footer__logo {
        margin-block: 12px 4px;
    }
}
.footer__info .footer__title-link {
    display: inline-block;
    padding: 4px 4px 4px 0;
    height: 36px;
}
.footer__info .footer__title-link img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}
.footer__info .footer__company-info__name {
    padding-block: 4px;
}
.footer__info .footer__company-info__address {
    font-size: 0.98em;
    letter-spacing: 0.02em;
}
.footer__info .footer__company-info__address span {
    display: inline-block;
}
.footer__info .footer__company-info__address span:not(:last-child) {
    margin-right: 8px;
}
.footer__nav {
    grid-area: 1/2/2/3;
}
@media screen and (max-width: 1023px) {
    .footer__nav {
        grid-area: 1/1/2/2;
    }
}
.footer__nav .footer__nav-list {
    display: flex;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    .footer__nav .footer__nav-list {
        flex-direction: column;
    }
}
@media screen and (max-width: 767px) {
    .footer__nav .footer__nav-item {
        border-bottom: 1px solid #222222;
    }
}
.footer__nav .footer__nav-link {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
    padding: 4px 8px;
}
@media screen and (max-width: 767px) {
    .footer__nav .footer__nav-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 24px 0;
        line-height: 1;
    }
}
.footer__nav .footer__nav-link__arrow {
    display: none;
    width: 24px;
    height: 24px;
    border: 1px solid #222222;
    border-radius: 50%;
}
@media screen and (max-width: 767px) {
    .footer__nav .footer__nav-link__arrow {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
.footer__bottom {
    grid-area: 2/2/3/3;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-direction: column;
    height: 100%;
}
@media screen and (max-width: 1023px) {
    .footer__bottom {
        grid-area: 3/1/4/2;
        gap: 48px;
    }
}
@media screen and (max-width: 767px) {
    .footer__bottom {
        align-items: center;
    }
}
.footer__bottom .footer__links {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__bottom .footer__link {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
    padding: 4px 8px;
}
@media screen and (max-width: 1023px) {
    .footer__bottom .footer__link {
        font-size: 0.875rem;
    }
}
.footer__bottom .footer__copyright p {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0;
}
.footer__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    color: #b8c5d8;
    font-size: 14.6875vw;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1;
    margin-bottom: -0.08em;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .footer__bg {
        display: none;
    }
}
.footer__bg::before {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: flex-end;
    content: 'J INSTITUTE';
    opacity: 0.15;
}

.drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 94%;
    height: 100dvh;
    padding-inline: 14% 4%;
    background-color: #fff;
    opacity: 0;
    z-index: 1000;
    transition: right 0.3s ease-in-out, opacity 0.3s;
    overflow-y: auto;
}
.drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-block: 20px;
}
.drawer__logo {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.drawer__logo a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.drawer__logo a img {
    width: 120px;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
}
@media screen and (max-width: 599px) {
    .drawer__logo a img {
        width: 104px;
    }
}
.drawer__close-button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    padding: 4px;
}
@media screen and (max-width: 599px) {
    .drawer__close-button {
        width: 28px;
        height: 28px;
    }
}
.drawer__close-button_inner {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.drawer__close-button span {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #17789c;
    transform-origin: center;
}
@media screen and (max-width: 599px) {
    .drawer__close-button span {
        height: 1px;
    }
}
.drawer__close-button span:nth-child(1) {
    transform: rotate(45deg);
}
@media screen and (max-width: 599px) {
    .drawer__close-button span:nth-child(1) {
        transform: rotate(45deg);
    }
}
.drawer__close-button span:nth-child(2) {
    transform: rotate(-45deg);
}
@media screen and (max-width: 599px) {
    .drawer__close-button span:nth-child(2) {
        transform: rotate(-45deg);
    }
}
.drawer.is-open {
    right: 0;
    opacity: 1;
}
.drawer__nav {
    width: 100%;
    padding-block: 20px 40px;
}
.drawer__nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #c4c4c4;
}
.drawer__nav-item {
    border-bottom: 1px solid #c4c4c4;
}
.drawer__nav-item:last-child {
    margin-bottom: 0;
}
.drawer__nav-item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 20px;
}
.drawer__nav-text {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    color: #222222;
    letter-spacing: 0;
    line-height: 1;
}
.drawer__nav-text--en {
    font-family: 'Manrope', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
}
.drawer__nav-text--ja {
    font-size: 0.75rem;
    font-weight: 500;
}
.drawer__nav-button {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #222222;
    border-radius: 50%;
}
.drawer__nav-button .right-arrow {
    stroke: #fff;
}
.drawer__links {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
    margin-block: 32px;
}
@media screen and (max-width: 479px) {
    .drawer__links {
        justify-content: space-between;
    }
}
.drawer__link {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0;
    padding-block: 4px;
}

.drawer-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    background-color: #17789c;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}
.drawer-bg.is-open {
    opacity: 1;
    visibility: visible;
}

.background-grid {
    position: relative;
}
.background-grid::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: #fff;
    background-image: linear-gradient(
            to right,
            rgba(229, 229, 229, 0.125) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(229, 229, 229, 0.125) 1px,
            transparent 1px
        );
    background-size: 10px 10px;
    z-index: -1;
}

.background-noise {
    background-image: url(../../../assets/images/common/noise_texture.png);
    background-size: 50px 50px;
    background-position: center;
    background-repeat: repeat;
}

.section__header {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.section__header .section__title {
    color: #222222;
    font-weight: 700;
    line-height: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
@media screen and (max-width: 1023px) {
    .section__header .section__title {
        gap: 16px;
    }
}
@media screen and (max-width: 767px) {
    .section__header .section__title {
        gap: 12px;
    }
}
@media screen and (max-width: 599px) {
    .section__header .section__title {
        gap: 8px;
    }
}
.section__header .section__title--en {
    font-family: 'Manrope', sans-serif;
    font-size: 3.375rem;
    letter-spacing: 0.04em;
}
@media screen and (max-width: 1023px) {
    .section__header .section__title--en {
        font-size: 3rem;
    }
}
@media screen and (max-width: 599px) {
    .section__header .section__title--en {
        font-size: 2.5rem;
    }
}
.section__header .section__title--ja {
    font-size: 1.25rem;
    letter-spacing: 0;
}
@media screen and (max-width: 1023px) {
    .section__header .section__title--ja {
        font-size: 1.125rem;
    }
}
@media screen and (max-width: 599px) {
    .section__header .section__title--ja {
        font-size: 1rem;
    }
}
.section__header--center .section__title,
.section__header--center .section__subtitle {
    text-align: center;
}
.section__header--white .section__title,
.section__header--white .section__subtitle {
    color: #fff;
}

.page-section__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
@media screen and (max-width: 1023px) {
    .page-section__header {
        gap: 4px;
    }
}
@media screen and (max-width: 599px) {
    .page-section__header {
        gap: 0;
    }
}
.page-section__header .page-section__title {
    display: flex;
    flex-direction: column;
}
.page-section__header .page-section__title--ja {
    font-size: 2.5rem;
    font-weight: 700;
}
@media screen and (max-width: 1023px) {
    .page-section__header .page-section__title--ja {
        font-size: 2.25rem;
    }
}
@media screen and (max-width: 599px) {
    .page-section__header .page-section__title--ja {
        font-size: 2rem;
    }
}
.page-section__header .page-section__title--color {
    color: #17789c;
}

.box-heading {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #222222;
}
@media screen and (max-width: 1023px) {
    .box-heading {
        font-size: 0.9375rem;
    }
}
@media screen and (max-width: 599px) {
    .box-heading {
        font-size: 0.875rem;
    }
}
.box-heading::before {
    content: '';
    display: block;
    height: 1em;
    aspect-ratio: 1/1;
    background-color: #222222;
    margin-right: 0.5em;
}
.box-heading--white {
    color: #fff;
}
.box-heading--white::before {
    background-color: #fff;
}
.box-heading--color {
    color: #17789c;
}
.box-heading--color::before {
    background-color: #17789c;
}
.box-heading--large {
    font-size: 1.25rem;
}
@media screen and (max-width: 1023px) {
    .box-heading--large {
        font-size: 1rem;
    }
}
@media screen and (max-width: 599px) {
    .box-heading--large {
        font-size: 0.875rem;
    }
}

.circle-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.circle-button svg {
    margin-left: 2px;
}
.circle-button--line {
    border: 1px solid #fff;
}

.detail-link {
    display: flex;
    align-items: center;
    gap: 20px;
}
.detail-link__text {
    min-width: 120px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}
@media screen and (max-width: 1023px) {
    .detail-link__text {
        min-width: 100px;
    }
}
@media screen and (max-width: 599px) {
    .detail-link__text {
        min-width: 100px;
    }
}
.detail-link__text::before {
    content: '';
    position: absolute;
    left: 0;
    width: 0;
    bottom: 4px;
    height: 1px;
    background-color: #222222;
    transition: all 0.3s;
}
.detail-link__arrow {
    height: 64px;
    width: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
@media screen and (max-width: 1023px) {
    .detail-link__arrow {
        height: 56px;
        width: 56px;
    }
}
@media screen and (max-width: 599px) {
    .detail-link__arrow {
        height: 44px;
        width: 44px;
    }
}
.detail-link__arrow::before {
    content: '';
    position: absolute;
    inset: 4px;
    background-color: #222222;
    border-radius: 50%;
    transition: all 0.4s;
}
.detail-link__arrow .right-arrow {
    stroke: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
}
@media screen and (max-width: 599px) {
    .detail-link__arrow .right-arrow {
        width: 4px;
        height: 8px;
    }
}
.detail-link__arrow .right-arrow--default {
    opacity: 1;
}
.detail-link__arrow .right-arrow--hover {
    opacity: 0;
    transform: translate(calc(-50% - 40px), -50%);
}
.detail-link__arrow .arrow-btn-circle {
    position: absolute;
    inset: 0;
    width: 64px;
    height: 64px;
    fill: none;
    stroke: #333;
    stroke-dasharray: 201.06176px 201.06176px;
    stroke-dashoffset: 201.06176px;
    animation: btn_arrow-out 0.4s ease-in-out;
    stroke-width: 1px;
    z-index: 2;
    rotate: -90deg;
}
@media screen and (max-width: 1023px) {
    .detail-link__arrow .arrow-btn-circle {
        width: 56px;
        height: 56px;
    }
}
@media screen and (max-width: 599px) {
    .detail-link__arrow .arrow-btn-circle {
        width: 44px;
        height: 44px;
    }
}

@media (hover: hover) {
    .detail-link:hover .detail-link__text::before {
        width: 100%;
    }
    .detail-link:hover .detail-link__arrow::before {
        background-color: #fff;
        inset: 0;
    }
    .detail-link:hover .right-arrow {
        stroke: #222222;
    }
    .detail-link:hover .right-arrow--default {
        opacity: 0;
        transform: translate(calc(50% + 40px), -50%);
    }
    .detail-link:hover .right-arrow--hover {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
    .detail-link:hover .arrow-btn-circle {
        animation: btn_arrow-over 0.4s ease-in-out forwards;
    }
}
.read-more-button {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    cursor: pointer;
}
.read-more-button__text {
    min-width: 80px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    color: #222222;
    transition: color 0.3s;
}
@media screen and (max-width: 599px) {
    .read-more-button__text {
        min-width: 72px;
    }
}
.read-more-button__arrow {
    height: 24px;
    width: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.read-more-button__arrow::before {
    content: '';
    position: absolute;
    inset: 2px;
    background-color: #222222;
    border-radius: 50%;
    transition: all 0.4s;
}
.read-more-button__arrow .right-arrow {
    stroke: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 4px;
    height: 8px;
    transform: translate(-50%, -50%) rotate(90deg);
    transition: all 0.3s;
}
.read-more-button__arrow .right-arrow--default {
    opacity: 1;
}
.read-more-button__arrow .right-arrow--hover {
    opacity: 0;
    transform: translate(-50%, calc(-50% - 20px)) rotate(90deg);
}
.read-more-button__arrow .arrow-btn-circle {
    position: absolute;
    inset: 0;
    width: 24px;
    height: 24px;
    fill: none;
    stroke: #333;
    stroke-dasharray: 201.06176px 201.06176px;
    stroke-dashoffset: 201.06176px;
    animation: btn_arrow-out 0.4s ease-in-out;
    stroke-width: 1px;
    z-index: 2;
    rotate: -90deg;
}
.read-more-button.is-open .read-more-button__arrow {
    transform: rotate(180deg);
}

@media (hover: hover) {
    .read-more-button:hover .read-more-button__text {
        color: #17789c;
    }
    .read-more-button:hover .read-more-button__arrow::before {
        background-color: #fff;
        inset: 0;
    }
    .read-more-button:hover .right-arrow {
        stroke: #222222;
    }
    .read-more-button:hover .right-arrow--default {
        opacity: 0;
        transform: translate(-50%, calc(-50% + 20px)) rotate(90deg);
    }
    .read-more-button:hover .right-arrow--hover {
        opacity: 1;
        transform: translate(-50%, calc(-50% + 1px)) rotate(90deg);
    }
    .read-more-button:hover .arrow-btn-circle {
        animation: btn_arrow-over 0.4s ease-in-out forwards;
    }
}
@keyframes btn_arrow-out {
    0% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -201.06176px;
    }
}
@keyframes btn_arrow-over {
    100% {
        stroke-dashoffset: 0;
    }
}
.social-list {
    display: flex;
    gap: 8px;
}
@media screen and (max-width: 767px) {
    .social-list {
        gap: 16px;
    }
}
.social-list .social-button {
    display: inline-block;
    width: 44px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    border: 1px solid #222222;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s;
}
.social-list .social-button__icon {
    width: 14px;
    aspect-ratio: 1/1;
    -o-object-fit: contain;
    object-fit: contain;
    transition: all 0.4s;
}
@media (hover: hover) {
    .social-list .social-button:hover {
        background-color: #222222;
    }
    .social-list .social-button:hover .social-button__icon {
        filter: brightness(0) invert(1);
        transform: scale(1.35);
    }
}

.box-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    border: solid 1px #67abc4;
    border-radius: 5px;
}
@media screen and (max-width: 599px) {
    .box-button {
        width: 100%;
    }
}
.box-button__text {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
    color: #17789c;
    line-height: 1;
}
.box-button .external-link {
    width: 1em;
    height: 1em;
    fill: #17789c;
}

.breadcrumbs {
    max-width: 75vw;
    margin-inline: auto;
}
@media screen and (max-width: 1439px) {
    .breadcrumbs {
        max-width: 90%;
        padding-inline: 4%;
    }
}
@media screen and (max-width: 1023px) {
    .breadcrumbs {
        max-width: 100%;
        padding-inline: 4%;
    }
}
@media screen and (max-width: 599px) {
    .breadcrumbs {
        padding-inline: 0;
    }
}
.breadcrumbs__list {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 24px;
}
.breadcrumbs__item {
    font-size: 0.8125rem;
}
@media screen and (max-width: 1023px) {
    .breadcrumbs__item {
        font-size: 0.75rem;
    }
}
@media screen and (max-width: 599px) {
    .breadcrumbs__item {
        font-size: 0.6875rem;
    }
}
.breadcrumbs__item:not(:first-child) {
    position: relative;
}
.breadcrumbs__item:not(:first-child)::before {
    content: '';
    position: absolute;
    top: 1em;
    left: -14px;
    width: 6px;
    height: 1px;
    background-color: #222222;
}
.breadcrumbs__link {
    font-size: 0.8125rem;
    letter-spacing: 0;
    text-decoration: underline;
}
@media screen and (max-width: 1023px) {
    .breadcrumbs__link {
        font-size: 0.75rem;
    }
}
@media screen and (max-width: 599px) {
    .breadcrumbs__link {
        font-size: 0.6875rem;
    }
}

.gallery-modal {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.gallery-modal.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: all 0.4s;
}
.gallery-modal__inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: calc(100dvw - 48px);
    max-height: calc(100dvh - 80px);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s;
    pointer-events: none;
}
.gallery-modal__content {
    position: relative;
    pointer-events: auto;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}
.gallery-modal__content img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    -o-object-fit: contain;
    object-fit: contain;
    pointer-events: auto;
}
.gallery-modal__close {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: opacity 0.3s;
    pointer-events: auto;
    padding-left: 24px;
}
@media (hover: hover) {
    .gallery-modal__close:hover {
        opacity: 0.8;
    }
}
.gallery-modal__close__text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #fff;
    margin-left: auto;
}
@media screen and (max-width: 599px) {
    .gallery-modal__close__text {
        font-size: 1rem;
    }
}
.gallery-modal__close__button {
    height: 1.5em;
    aspect-ratio: 1/1;
    border: 1px solid #fff;
    border-radius: 50%;
    position: relative;
}
.gallery-modal__close__button::before,
.gallery-modal__close__button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 1px;
    background-color: #fff;
    transition: all 0.3s ease-in-out;
}
.gallery-modal__close__button::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
.gallery-modal__close__button::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.js-accordion-content {
    height: 0;
    overflow: hidden;
    transition: height 0.5s ease-in-out;
}

.js-accordion.is-open .js-accordion-content {
    height: auto;
}

.top-main {
    position: relative;
    z-index: 1;
}

.main-visual {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100lvh;
    z-index: -2;
}
.main-visual .swiper-slide {
    position: relative;
    width: 100%;
    height: 100%;
}
.main-visual .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.3);
    z-index: -1;
}
.main-visual .swiper-slide picture,
.main-visual .swiper-slide img {
    position: absolute;
    inset: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    max-width: none;
    max-height: none;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    z-index: -2;
}

.hero {
    width: 100%;
    height: 100svh;
    margin-top: 80px;
}
@media screen and (max-width: 1023px) {
    .hero {
        margin-top: 64px;
    }
}
@media screen and (max-width: 599px) {
    .hero {
        margin-top: 56px;
    }
}
.hero__inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero__content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 16px;
}
@media screen and (max-width: 1023px) {
    .hero__content {
        gap: 24px;
    }
}
@media screen and (max-width: 599px) {
    .hero__content {
        gap: 16px;
    }
}
.hero__title {
    font-family: 'Manrope', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0;
    color: #fff;
}
@media screen and (max-width: 1023px) {
    .hero__title {
        font-size: 3.5rem;
        text-align: center;
        line-height: 1.2;
    }
}
@media screen and (max-width: 599px) {
    .hero__title {
        font-size: 3rem;
    }
}
.hero__title br {
    display: none;
}
@media screen and (max-width: 1023px) {
    .hero__title br {
        display: block;
    }
}
@media screen and (max-width: 1023px) {
    .hero__title span {
        display: none;
    }
}
.hero__catch {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.5em;
    color: #fff;
}
@media screen and (max-width: 1023px) {
    .hero__catch {
        font-size: 1.125rem;
        text-align: center;
        margin-left: 1em;
    }
}
@media screen and (max-width: 599px) {
    .hero__catch {
        font-size: 1rem;
    }
}
.hero__sub {
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #fff;
}
@media screen and (max-width: 1023px) {
    .hero__sub {
        font-size: 0.9375rem;
    }
}
@media screen and (max-width: 599px) {
    .hero__sub {
        font-size: 0.875rem;
    }
}

.about {
    padding-block: 200px 240px;
}
@media screen and (max-width: 1023px) {
    .about {
        padding-block: 240px 260px;
    }
}
@media screen and (max-width: 599px) {
    .about {
        padding-block: 400px 280px;
    }
}
.about__inner {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 56px;
}
.about__content p {
    font-size: 1.25rem;
    line-height: 2.4;
    letter-spacing: 0.1em;
    color: #fff;
    text-align: center;
}
@media screen and (max-width: 1023px) {
    .about__content p {
        font-size: 1rem;
    }
}
@media screen and (max-width: 599px) {
    .about__content p {
        font-size: 0.875rem;
    }
}

.company {
    padding-block: 200px 256px;
    padding-inline: 24px;
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 1023px) {
    .company {
        padding-block: 140px 228px;
    }
}
@media screen and (max-width: 599px) {
    .company {
        padding-block: 108px 216px;
    }
}
.company__inner {
    width: 100%;
    height: 100%;
    margin-inline: auto;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
@media screen and (max-width: 1023px) {
    .company__inner {
        flex-direction: column;
        gap: 80px;
    }
}
@media screen and (max-width: 599px) {
    .company__inner {
        gap: 48px;
    }
}
.company__main {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 64px;
    max-width: calc(360px + 10.4166666667vw);
    padding-block: 16px;
    padding-inline: 5.2083333333vw;
    margin-left: 5.2083333333vw;
}
@media screen and (max-width: 1439px) {
    .company__main {
        margin-left: 2vw;
    }
}
@media screen and (max-width: 1023px) {
    .company__main {
        margin-left: 0;
        padding-inline: 4%;
        max-width: 100%;
        gap: 48px;
    }
}
@media screen and (max-width: 599px) {
    .company__main {
        gap: 40px;
    }
}
@media screen and (max-width: 479px) {
    .company__main {
        padding-inline: 0;
    }
}
.company__content {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 56px;
}
@media screen and (max-width: 1023px) {
    .company__content {
        gap: 48px;
    }
}
@media screen and (max-width: 599px) {
    .company__content {
        gap: 40px;
    }
}
.company__image {
    width: 44.375vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
@media screen and (max-width: 1619px) {
    .company__image {
        width: 48vw;
    }
}
@media screen and (max-width: 1023px) {
    .company__image {
        width: 87.1794871795vw;
        max-width: 800px;
    }
}
@media screen and (max-width: 767px) {
    .company__image {
        margin-left: -24px;
    }
}
.company__img-item--1 {
    width: 100%;
    height: 100%;
    aspect-ratio: 852/540;
}
.company__img-item--1 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
}
@media screen and (max-width: 767px) {
    .company__img-item--1 img {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
}
.company__img-item--2 {
    position: absolute;
    bottom: -100px;
    right: -27%;
    width: 15.625vw;
    height: auto;
    aspect-ratio: 300/364;
}
@media screen and (max-width: 1619px) {
    .company__img-item--2 {
        right: -16%;
    }
}
@media screen and (max-width: 1439px) {
    .company__img-item--2 {
        right: -8%;
        width: 18vw;
    }
}
@media screen and (max-width: 1023px) {
    .company__img-item--2 {
        width: 35.8974358974vw;
        max-width: 264px;
        bottom: -140px;
    }
}
.company__img-item--2 img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
}

.services {
    padding-left: 5.2083333333vw;
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .services {
        padding-left: 0;
    }
}
.services__inner {
    padding-block: 180px 540px;
    padding-left: 5.2083333333vw;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row-reverse;
}
@media screen and (max-width: 1619px) {
    .services__inner {
        padding-bottom: 460px;
    }
}
@media screen and (max-width: 1439px) {
    .services__inner {
        padding-top: 160px;
        padding-bottom: 400px;
        padding-left: 4%;
    }
}
@media screen and (max-width: 1023px) {
    .services__inner {
        flex-direction: column-reverse;
        padding-left: 8%;
        padding-block: 100px 240px;
        gap: 64px;
        align-items: flex-start;
    }
}
@media screen and (max-width: 767px) {
    .services__inner {
        padding-left: 4%;
    }
}
@media screen and (max-width: 599px) {
    .services__inner {
        padding-left: 0;
        padding-block: 80px;
        gap: 48px;
    }
}
.services__main {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 64px;
    padding-inline: 10.4166666667vw;
    max-width: calc(400px + 20.8333333333vw);
}
@media screen and (max-width: 1439px) {
    .services__main {
        padding-inline: 8%;
    }
}
@media screen and (max-width: 1023px) {
    .services__main {
        padding-inline: 4% 8%;
        max-width: 100%;
        gap: 48px;
    }
}
@media screen and (max-width: 599px) {
    .services__main {
        padding-inline: 24px;
        gap: 40px;
    }
}
.services__content {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
}
@media screen and (max-width: 1023px) {
    .services__content {
        gap: 24px;
    }
}
@media screen and (max-width: 599px) {
    .services__content {
        gap: 20px;
    }
}
.services__description {
    padding-right: 2.0833333333vw;
}
.services__list {
    width: 100%;
}
.services__list-item {
    width: 100%;
    height: 100%;
    margin-top: 8px;
}
.services__list-item a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #bdbdbd;
    position: relative;
    padding-top: 24px;
}
.services__list-item a::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    border-bottom: 1px solid #222222;
    transform: scaleX(0);
    transform-origin: right top;
    transition: transform 0.3s ease-in-out;
}
.services__list-item__text {
    font-size: 1.25rem;
    line-height: 2.4;
    font-weight: 700;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 1023px) {
    .services__list-item__text {
        font-size: 1.1875rem;
    }
}
@media screen and (max-width: 599px) {
    .services__list-item__text {
        font-size: 1.125rem;
    }
}
.services__list-item__arrow {
    display: block;
    width: 24px;
    height: 24px;
    padding-inline: 8px;
    overflow: hidden;
    position: relative;
}
.services__list-item__arrow .right-arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.services__list-item__arrow .right-arrow--default {
    opacity: 1;
    transform: translate(-50%, -50%);
}
.services__list-item__arrow .right-arrow--hover {
    opacity: 0;
    transform: translate(calc(-50% - 40px), -50%);
}
@media (hover: hover) {
    .services__list-item a:hover::after {
        transform: scaleX(1);
        transform-origin: left top;
    }
    .services__list-item a:hover .right-arrow {
        transition: all 0.3s;
    }
    .services__list-item a:hover .right-arrow--default {
        opacity: 0;
        transform: translate(calc(50% + 40px), -50%);
    }
    .services__list-item a:hover .right-arrow--hover {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}
.services__image {
    width: 27.96875vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    aspect-ratio: 537/736;
    min-height: 560px;
}
@media screen and (max-width: 1439px) {
    .services__image {
        width: 36vw;
    }
}
@media screen and (max-width: 1023px) {
    .services__image {
        width: 84.6153846154vw;
        max-width: 440px;
        height: 300px;
        min-height: 300px;
    }
}
.services__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
    -o-object-position: right;
    object-position: right;
}
@media screen and (max-width: 599px) {
    .services__image {
        height: 300px;
        min-height: 300px;
    }
    .services__image img {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
}

.break-visual {
    position: relative;
    height: 450px;
    z-index: 1;
}
@media screen and (max-width: 1619px) {
    .break-visual {
        height: 410px;
    }
}
@media screen and (max-width: 1439px) {
    .break-visual {
        height: 370px;
    }
}
@media screen and (max-width: 1023px) {
    .break-visual {
        height: 500px;
    }
}
@media screen and (max-width: 767px) {
    .break-visual {
        height: 420px;
    }
}
@media screen and (max-width: 599px) {
    .break-visual {
        top: 0;
        width: 100%;
        height: 520px;
    }
}
@media screen and (max-width: 479px) {
    .break-visual {
        height: 488px;
    }
}
.break-visual__image {
    position: absolute;
    top: -350px;
    inset-inline: 0;
    width: calc(100% - 5.2083333333vw);
    height: 800px;
    margin-right: auto;
}
@media screen and (max-width: 1619px) {
    .break-visual__image {
        top: -280px;
        height: 760px;
    }
}
@media screen and (max-width: 1439px) {
    .break-visual__image {
        top: -220px;
        height: 720px;
    }
}
@media screen and (max-width: 1023px) {
    .break-visual__image {
        top: -140px;
        height: 640px;
    }
}
@media screen and (max-width: 767px) {
    .break-visual__image {
        height: 560px;
        width: 96%;
    }
}
@media screen and (max-width: 599px) {
    .break-visual__image {
        top: 0;
        width: 100%;
        height: 100%;
    }
}
.break-visual__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    filter: brightness(0.9);
}
@media screen and (max-width: 599px) {
    .break-visual__image img {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
}

.workplace {
    padding-block: 200px 280px;
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 1439px) {
    .workplace {
        padding-top: 260px;
    }
}
@media screen and (max-width: 1023px) {
    .workplace {
        padding-block: 140px 200px;
        padding-inline: 4%;
    }
}
@media screen and (max-width: 767px) {
    .workplace {
        padding-block: 80px 336px;
        padding-inline: 24px;
    }
}
.workplace__inner {
    width: 80%;
    margin-inline: auto;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 56px;
}
@media screen and (max-width: 1439px) {
    .workplace__inner {
        width: 90%;
    }
}
@media screen and (max-width: 1023px) {
    .workplace__inner {
        width: 100%;
    }
}
.workplace__inner .section__body {
    width: 100%;
}
.workplace__locations {
    width: calc(100% + 48px);
    display: flex;
    margin-top: 48px;
    aspect-ratio: 3/1;
}
@media screen and (max-width: 1439px) {
    .workplace__locations {
        width: 100%;
    }
}
@media screen and (max-width: 1023px) {
    .workplace__locations {
        width: 100vw;
        margin-inline: -4vw;
    }
}
@media screen and (max-width: 767px) {
    .workplace__locations {
        flex-direction: column;
        aspect-ratio: auto;
        width: 100%;
        margin-inline: 0;
    }
}
.workplace__location-item {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    padding: 40px;
    overflow: hidden;
    position: relative;
}
@media screen and (max-width: 1439px) {
    .workplace__location-item {
        padding-inline: 2%;
    }
}
@media screen and (max-width: 767px) {
    .workplace__location-item {
        padding: 80px 11%;
    }
}
.workplace__location-item__title {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    white-space: nowrap;
    color: #fff;
    z-index: 2;
    transition: opacity 0.3s;
}
@media screen and (max-width: 1439px) {
    .workplace__location-item__title {
        font-size: 1rem;
        letter-spacing: 0.025em;
    }
}
@media screen and (max-width: 1023px) {
    .workplace__location-item__title {
        font-size: 0.875rem;
        letter-spacing: 0.1em;
    }
}
@media screen and (max-width: 767px) {
    .workplace__location-item__title {
        font-size: 1.125rem;
    }
}
@media screen and (max-width: 599px) {
    .workplace__location-item__title {
        font-size: 1rem;
    }
}
.workplace__location-item__subtitle {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 0;
    white-space: nowrap;
    color: #fff;
    font-family: 'Manrope', sans-serif;
    z-index: 2;
    transition: opacity 0.3s;
}
@media screen and (max-width: 1439px) {
    .workplace__location-item__subtitle {
        font-size: 2.25rem;
    }
}
@media screen and (max-width: 1023px) {
    .workplace__location-item__subtitle {
        font-size: 2rem;
    }
}
@media screen and (max-width: 767px) {
    .workplace__location-item__subtitle {
        font-size: 2.5rem;
        line-height: 1.2;
    }
}
@media screen and (max-width: 599px) {
    .workplace__location-item__subtitle {
        font-size: 2rem;
    }
}
.workplace__location-item__button {
    margin-top: 20px;
    z-index: 2;
    transition: background-color 0.5s, opacity 0.3s;
}
@media screen and (max-width: 767px) {
    .workplace__location-item__button {
        margin-top: 16px;
    }
}
.workplace__location-item__button .right-arrow {
    stroke: #fff;
    transition: stroke 0.5s;
}
.workplace__location-item__image {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
}
.workplace__location-item__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.workplace__location-item__image::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.4);
    transition: opacity 0.4s;
}
@media (hover: hover) {
    .workplace
        .workplace__locations:hover
        .workplace__location-item:not(:hover)
        .workplace__location-item__title,
    .workplace
        .workplace__locations:hover
        .workplace__location-item:not(:hover)
        .workplace__location-item__subtitle,
    .workplace
        .workplace__locations:hover
        .workplace__location-item:not(:hover)
        .workplace__location-item__button {
        opacity: 0;
    }
}
@media screen and (hover: hover) and (max-width: 767px) {
    .workplace
        .workplace__locations:hover
        .workplace__location-item:not(:hover)
        .workplace__location-item__title,
    .workplace
        .workplace__locations:hover
        .workplace__location-item:not(:hover)
        .workplace__location-item__subtitle,
    .workplace
        .workplace__locations:hover
        .workplace__location-item:not(:hover)
        .workplace__location-item__button {
        opacity: 1;
    }
}
@media (hover: hover) {
    .workplace .workplace__locations:hover .workplace__location-item:hover {
        flex: 5;
    }
    .workplace
        .workplace__locations:hover
        .workplace__location-item:hover
        .workplace__location-item__button {
        background-color: #fff;
    }
    .workplace
        .workplace__locations:hover
        .workplace__location-item:hover
        .workplace__location-item__button
        .right-arrow {
        stroke: #222222;
    }
    .workplace
        .workplace__locations:hover
        .workplace__location-item:hover
        .workplace__location-item__image:before {
        opacity: 0.75;
    }
}

.news {
    padding-top: 140px;
    position: relative;
    z-index: 1;
}
@media screen and (max-width: 1439px) {
    .news {
        padding-top: 100px;
    }
}
@media screen and (max-width: 1023px) {
    .news {
        padding-top: 80px;
    }
}
@media screen and (max-width: 767px) {
    .news {
        padding-top: 160px;
        position: relative;
    }
}
@media screen and (max-width: 599px) {
    .news {
        padding-top: 140px;
    }
}
.news__inner {
    background-color: #f4f4f4;
    display: flex;
}
.news__inner .section__header {
    margin-top: -140px;
    padding-top: 140px;
    background-color: #17789c;
    width: 35.3125vw;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
}
@media screen and (max-width: 1439px) {
    .news__inner .section__header {
        margin-top: -100px;
        padding-top: 100px;
    }
}
@media screen and (max-width: 1023px) {
    .news__inner .section__header {
        width: 30%;
        margin-top: -80px;
        padding-top: 80px;
    }
}
@media screen and (max-width: 767px) {
    .news__inner .section__header {
        position: absolute;
        top: 0;
        left: 0;
        right: 48px;
        bottom: 0;
        margin-top: 0;
        padding-top: 48px;
        padding-left: 8%;
        align-items: flex-start;
        width: 90%;
    }
}
@media screen and (max-width: 599px) {
    .news__inner .section__header {
        padding-top: 40px;
        padding-left: 6%;
    }
}
@media screen and (max-width: 479px) {
    .news__inner .section__header {
        padding-left: 24px;
    }
}
.news__inner .section__header .section__header-inner {
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
}
@media screen and (max-width: 767px) {
    .news__inner .section__header .section__header-inner {
        gap: 8px;
    }
}
.news__inner .section__header .section__header-inner .section__title,
.news__inner .section__header .section__header-inner .section__subtitle {
    color: #fff;
}
.news__inner .section__body {
    padding: 140px 140px 180px;
    width: calc(100% - 35.3125vw);
    position: relative;
    background-color: #f4f4f4;
}
@media screen and (max-width: 1439px) {
    .news__inner .section__body {
        padding: 100px 80px 140px;
    }
}
@media screen and (max-width: 1023px) {
    .news__inner .section__body {
        padding: 80px 40px 120px;
        width: 70%;
    }
}
@media screen and (max-width: 767px) {
    .news__inner .section__body {
        width: 100%;
        margin-left: 8%;
        padding-block: 56px 88px;
        padding-inline: 48px 24px;
    }
}
@media screen and (max-width: 599px) {
    .news__inner .section__body {
        margin-left: 6%;
        padding-block: 48px 64px;
    }
}
@media screen and (max-width: 479px) {
    .news__inner .section__body {
        margin-left: 24px;
        padding-block: 44px;
    }
}
.news__content {
    padding-block: 16px;
}
@media screen and (max-width: 767px) {
    .news__content {
        width: 80%;
        margin-inline: auto;
    }
}
@media screen and (max-width: 599px) {
    .news__content {
        width: 90%;
    }
}
@media screen and (max-width: 479px) {
    .news__content {
        width: 100%;
    }
}
.news__list {
    width: 100%;
    max-width: 720px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    gap: 48px;
}
.news__list-items {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-top: 1px solid #bdbdbd;
}
.news__list-item {
    width: 100%;
}
.news__list-item a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 40px;
    border-bottom: 1px solid #bdbdbd;
}
@media screen and (max-width: 767px) {
    .news__list-item a {
        padding-block: 32px;
    }
}
.news__list-item__main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    max-width: calc(100% - 24px - 16px);
}
.news__list-item__meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    transition: opacity 0.3s;
}
.news__list-item__meta__category {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.875rem;
    line-height: 1;
    padding: 4px 12px;
    border-radius: 100vmax;
    border: 1px solid #222222;
    min-width: 84px;
}
.news__list-item__title {
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0.02em;
}
.news__list-item__title span {
    background-image: linear-gradient(90deg, #17789c, #17789c);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0 1px;
    transition: all 0.3s;
}
.news__list-item__arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: #17789c;
    border-radius: 50%;
    margin-top: 1.8em;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
}
.news__list-item__arrow .right-arrow {
    stroke: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
}
.news__list-item__arrow .right-arrow--default {
    opacity: 1;
}
.news__list-item__arrow .right-arrow--hover {
    opacity: 0;
    transform: translate(calc(-50% - 40px), -50%);
    stroke: #17789c;
}
@media (hover: hover) {
    .news__list-item a:hover {
        opacity: 1;
    }
    .news__list-item a:hover .news__list-item__meta {
        opacity: 0.8;
    }
    .news__list-item a:hover .news__list-item__title span {
        color: #17789c;
        background-size: 100% 1px;
    }
    .news__list-item a:hover .news__list-item__arrow {
        border: 1px solid #17789c;
        background-color: #fff;
    }
    .news__list-item a:hover .news__list-item__arrow .right-arrow--default {
        opacity: 0;
        transform: translate(calc(-50% + 40px), -50%);
    }
    .news__list-item a:hover .news__list-item__arrow .right-arrow--hover {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}
.news__image {
    width: 416px;
    aspect-ratio: 416/280;
    position: absolute;
    top: -220px;
    right: 5.2083333333vw;
}
@media screen and (max-width: 1023px) {
    .news__image {
        width: 320px;
        top: -180px;
    }
}
@media screen and (max-width: 767px) {
    .news__image {
        width: 300px;
        top: -432px;
        right: 0;
    }
}
@media screen and (max-width: 599px) {
    .news__image {
        width: 284px;
        top: -412px;
    }
}
.news__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
}
@media screen and (max-width: 767px) {
    .news__image img {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
}

.mission-statement {
    padding-block: 200px 286px;
    padding-inline: 24px;
    background-color: #17789c;
}
@media screen and (max-width: 1023px) {
    .mission-statement {
        padding-block: 140px 272px;
    }
}
@media screen and (max-width: 767px) {
    .mission-statement {
        padding-block: 120px 264px;
    }
}
@media screen and (max-width: 599px) {
    .mission-statement {
        padding-block: 80px 260px;
    }
}
.mission-statement__inner {
    width: 80%;
    max-width: 1144px;
    margin-inline: auto;
}
@media screen and (max-width: 1023px) {
    .mission-statement__inner {
        width: 90%;
    }
}
@media screen and (max-width: 599px) {
    .mission-statement__inner {
        width: 100%;
    }
}
.mission-statement__content {
    margin-top: 48px;
}
@media screen and (max-width: 1023px) {
    .mission-statement__content {
        margin-top: 44px;
    }
}
.mission-statement__heading {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.02em;
    color: #fff;
}
@media screen and (max-width: 1023px) {
    .mission-statement__heading {
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 599px) {
    .mission-statement__heading {
        font-size: 1.25rem;
    }
}
.mission-statement__text {
    margin-top: 32px;
    font-size: 1rem;
    line-height: 1.8;
    letter-spacing: 0.02em;
    color: #fff;
}
@media screen and (max-width: 1023px) {
    .mission-statement__text {
        margin-top: 28px;
    }
}
@media screen and (max-width: 599px) {
    .mission-statement__text {
        margin-top: 24px;
    }
}
.mission-statement__text:not(:first-child) {
    margin-top: 36px;
}
@media screen and (max-width: 1023px) {
    .mission-statement__text:not(:first-child) {
        margin-top: 40px;
    }
}
.mission-statement__image {
    margin-top: 60px;
}
@media screen and (max-width: 1023px) {
    .mission-statement__image {
        margin-top: 52px;
    }
}
@media screen and (max-width: 599px) {
    .mission-statement__image {
        margin-top: 40px;
    }
}
.mission-statement__image img {
    width: 100%;
    aspect-ratio: 1140/600;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
}

.top-message {
    padding-left: 5.2083333333vw;
}
@media screen and (max-width: 1023px) {
    .top-message {
        padding-left: 4%;
    }
}
@media screen and (max-width: 599px) {
    .top-message {
        padding-left: 24px;
    }
}
.top-message__inner {
    margin-top: -124px;
    padding: 180px 5.2083333333vw;
    background-color: #f4f4f4;
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
}
@media screen and (max-width: 1619px) {
    .top-message__inner {
        padding-inline: 8%;
        justify-content: space-between;
    }
}
@media screen and (max-width: 1439px) {
    .top-message__inner {
        padding-inline: 4%;
    }
}
@media screen and (max-width: 1023px) {
    .top-message__inner {
        margin-top: -148px;
        padding-block: 120px;
    }
}
@media screen and (max-width: 767px) {
    .top-message__inner {
        flex-direction: column-reverse;
        padding-block: 100px;
        gap: 56px;
    }
}
@media screen and (max-width: 599px) {
    .top-message__inner {
        margin-top: -180px;
        padding-block: 80px;
        gap: 48px;
    }
}
@media screen and (max-width: 479px) {
    .top-message__inner {
        padding-inline: 40px;
    }
}
.top-message__main-content {
    width: 44%;
    margin-right: 2vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 48px;
}
@media screen and (max-width: 1619px) {
    .top-message__main-content {
        margin-right: 0;
    }
}
@media screen and (max-width: 1439px) {
    .top-message__main-content {
        width: 48%;
        gap: 40px;
    }
}
@media screen and (max-width: 767px) {
    .top-message__main-content {
        width: 80%;
        margin-inline: auto;
    }
}
@media screen and (max-width: 599px) {
    .top-message__main-content {
        width: 90%;
    }
}
@media screen and (max-width: 479px) {
    .top-message__main-content {
        width: 100%;
    }
}
.top-message__text p {
    font-size: 1.75rem;
    font-weight: 700;
}
@media screen and (max-width: 1439px) {
    .top-message__text p {
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 1023px) {
    .top-message__text p {
        font-size: 1.25rem;
    }
}
@media screen and (max-width: 767px) {
    .top-message__text p {
        font-size: 1.125rem;
    }
}
@media screen and (max-width: 599px) {
    .top-message__text p {
        font-size: 1rem;
    }
}
.top-message__text p:not(:first-child) {
    margin-top: 56px;
}
@media screen and (max-width: 1439px) {
    .top-message__text p:not(:first-child) {
        margin-top: 40px;
    }
}
@media screen and (max-width: 599px) {
    .top-message__text p:not(:first-child) {
        margin-top: 32px;
    }
}
.top-message__accordion__content p:not(:first-child) {
    margin-top: 32px;
}
@media screen and (max-width: 1023px) {
    .top-message__accordion__content p:not(:first-child) {
        margin-top: 28px;
    }
}
@media screen and (max-width: 599px) {
    .top-message__accordion__content p:not(:first-child) {
        margin-top: 24px;
    }
}
.top-message__accordion__button {
    margin-top: 0;
    transition: margin-top 0.5s ease-out;
}
.top-message__accordion.is-open .top-message__accordion__button {
    margin-top: 48px;
}
@media screen and (max-width: 1439px) {
    .top-message__accordion.is-open .top-message__accordion__button {
        margin-top: 40px;
    }
}
@media screen and (max-width: 1023px) {
    .top-message__accordion.is-open .top-message__accordion__button {
        margin-top: 36px;
    }
}
@media screen and (max-width: 599px) {
    .top-message__accordion.is-open .top-message__accordion__button {
        margin-top: 32px;
    }
}
.top-message__signature {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    margin-left: auto;
}
.top-message__signature__title {
    font-size: 0.875rem;
    line-height: 1.6;
}
.top-message__signature__name {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.6;
}
.top-message__image {
    width: 32.8125vw;
    max-width: 630px;
    margin-right: 2vw;
    aspect-ratio: 630/800;
}
@media screen and (max-width: 1619px) {
    .top-message__image {
        margin-right: 0;
        width: 48%;
    }
}
@media screen and (max-width: 767px) {
    .top-message__image {
        width: 80%;
        max-width: 440px;
        margin-inline: auto;
    }
}
@media screen and (max-width: 599px) {
    .top-message__image {
        width: 90%;
    }
}
@media screen and (max-width: 479px) {
    .top-message__image {
        width: 100%;
    }
}
.top-message__image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
}

.company-profile {
    padding-block: 200px;
    padding-inline: 24px;
}
@media screen and (max-width: 1023px) {
    .company-profile {
        padding-block: 140px;
        padding-inline: 4%;
    }
}
@media screen and (max-width: 1023px) {
    .company-profile {
        padding-inline: 8%;
    }
}
@media screen and (max-width: 767px) {
    .company-profile {
        padding-block: 120px;
        padding-inline: 4%;
    }
}
@media screen and (max-width: 599px) {
    .company-profile {
        padding-block: 80px;
        padding-inline: 24px;
    }
}
.company-profile__inner {
    width: 80%;
    max-width: 1440px;
    margin-inline: auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}
@media screen and (max-width: 1439px) {
    .company-profile__inner {
        width: 90%;
    }
}
@media screen and (max-width: 1023px) {
    .company-profile__inner {
        width: 100%;
        gap: 12px;
    }
}
@media screen and (max-width: 767px) {
    .company-profile__inner {
        width: 90%;
        flex-direction: column;
        gap: 40px;
    }
}
@media screen and (max-width: 479px) {
    .company-profile__inner {
        width: 100%;
    }
}
.company-profile__header {
    flex: 1;
}
@media screen and (max-width: 599px) {
    .company-profile__header .page-section__title--ja {
        font-size: 2.25rem;
    }
}
.company-profile__content {
    width: 52.0833333333vw;
    max-width: 1000px;
}
@media screen and (max-width: 1439px) {
    .company-profile__content {
        width: 66%;
    }
}
@media screen and (max-width: 1023px) {
    .company-profile__content {
        width: 62%;
    }
}
@media screen and (max-width: 767px) {
    .company-profile__content {
        width: 100%;
    }
}
.company-profile__list {
    border-top: 1px solid #c4c4c4;
}
@media screen and (max-width: 767px) {
    .company-profile__list {
        width: 100%;
    }
}
.company-profile__item {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding-block: 24px;
    border-bottom: 1px solid #c4c4c4;
}
@media screen and (max-width: 599px) {
    .company-profile__item {
        flex-direction: column;
        align-items: flex-start;
    }
}
.company-profile__item__term {
    width: 160px;
    font-size: 1rem;
    font-weight: 700;
    line-height: 2.4;
    letter-spacing: 0.1em;
}
@media screen and (max-width: 1023px) {
    .company-profile__item__term {
        width: 120px;
    }
}
@media screen and (max-width: 767px) {
    .company-profile__item__term {
        width: 160px;
    }
}
.company-profile__item__desc {
    flex: 1;
    padding-inline: 24px;
}
@media screen and (max-width: 1023px) {
    .company-profile__item__desc {
        padding-inline: 0;
    }
}
.company-profile__item__desc .text-inline {
    display: inline-block;
}
.company-profile__item__desc .sp-only {
    display: none;
}
@media screen and (max-width: 1439px) {
    .company-profile__item__desc .sp-only {
        display: block;
    }
}

.our-business-main .page-header {
    padding-bottom: 400px;
}
@media screen and (max-width: 1023px) {
    .our-business-main .page-header {
        padding-bottom: 320px;
    }
}
@media screen and (max-width: 599px) {
    .our-business-main .page-header {
        padding-bottom: 200px;
    }
}

.business-overview {
    margin-top: -294px;
    height: 360px;
}
@media screen and (max-width: 1023px) {
    .business-overview {
        margin-top: -200px;
        height: 300px;
    }
}
@media screen and (max-width: 599px) {
    .business-overview {
        margin-top: -140px;
        height: 240px;
    }
}
.business-overview__carousel {
    height: 100%;
    overflow: hidden;
}
.business-overview__carousel .swiper-wrapper {
    display: flex;
    height: 100%;
    width: 100%;
    transition-timing-function: linear;
}
.business-overview__carousel .swiper-slide {
    height: 100%;
    width: 517px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-inline: 1.3020833333vw;
}
@media screen and (max-width: 1023px) {
    .business-overview__carousel .swiper-slide {
        width: 400px;
    }
}
@media screen and (max-width: 599px) {
    .business-overview__carousel .swiper-slide {
        width: 280px;
    }
}
.business-overview__carousel .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 5px;
    position: relative;
}

.business__panels {
    position: relative;
    padding-block: 100px 200px;
    padding-inline: 5.2083333333vw;
}
@media screen and (max-width: 1439px) {
    .business__panels {
        padding-inline: 2%;
    }
}
@media screen and (max-width: 1023px) {
    .business__panels {
        padding-block: 80px 160px;
        padding-inline: 8%;
    }
}
@media screen and (max-width: 767px) {
    .business__panels {
        padding-inline: 4%;
    }
}
@media screen and (max-width: 599px) {
    .business__panels {
        padding-block: 64px 100px;
    }
}
.business__panels__inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media screen and (max-width: 1023px) {
    .business__panels__inner {
        gap: 60px;
    }
}
.business__panels__bg {
    position: absolute;
    top: -66px;
    left: 0;
    width: 100%;
    height: 500px;
    background-color: #17789c;
    z-index: -1;
}
@media screen and (max-width: 1023px) {
    .business__panels__bg {
        height: 360px;
    }
}
@media screen and (max-width: 599px) {
    .business__panels__bg {
        height: 270px;
    }
}
.business__panels .business__panel {
    position: relative;
    z-index: 1;
    background-color: #f4f4f4;
    border: solid 1px #c4c4c4;
    padding-block: 200px;
    padding-inline: 7.5520833333vw;
}
@media screen and (max-width: 1759px) {
    .business__panels .business__panel {
        padding-inline: 7vw;
    }
}
@media screen and (max-width: 1619px) {
    .business__panels .business__panel {
        padding-inline: 5vw;
    }
}
@media screen and (max-width: 1439px) {
    .business__panels .business__panel {
        padding-block: 160px;
        padding-inline: 4vw;
    }
}
@media screen and (max-width: 1023px) {
    .business__panels .business__panel {
        padding-block: 80px;
        padding-inline: 4%;
    }
}
@media screen and (max-width: 767px) {
    .business__panels .business__panel {
        padding-top: 56px;
    }
}
@media screen and (max-width: 599px) {
    .business__panels .business__panel {
        padding-block: 20px 60px;
        padding-inline: 20px;
    }
}
.business__panels .business__panel__inner {
    display: flex;
    flex-direction: column;
    gap: 100px;
}
@media screen and (max-width: 599px) {
    .business__panels .business__panel__inner {
        gap: 88px;
    }
}
.business__panels .business__panel__about {
    display: flex;
    gap: 3.125vw;
}
@media screen and (max-width: 1023px) {
    .business__panels .business__panel__about {
        flex-direction: column-reverse;
        gap: 64px;
    }
}
@media screen and (max-width: 599px) {
    .business__panels .business__panel__about {
        gap: 48px;
    }
}
.business__panels .business__panel__about .business__panel__main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-top: 16px;
    gap: 48px;
}
@media screen and (max-width: 1023px) {
    .business__panels .business__panel__about .business__panel__main-content {
        gap: 32px;
    }
}
@media screen and (max-width: 599px) {
    .business__panels .business__panel__about .business__panel__main-content {
        margin-top: 8px;
        gap: 24px;
    }
}
.business__panels
    .business__panel__about
    .business__panel__main-content
    .page-section__description {
    font-size: 1.125rem;
    font-weight: 500;
}
.business__panels .business__panel__about .business__panel__image {
    width: 45.625vw;
}
@media screen and (max-width: 1023px) {
    .business__panels .business__panel__about .business__panel__image {
        width: 100%;
    }
}
.business__panels .business__panel__about .business__panel__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 876/554;
    max-height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 5px;
}
.business__panels .business__panel__detail__list {
    display: flex;
    flex-direction: column;
    gap: 100px;
}
@media screen and (max-width: 599px) {
    .business__panels .business__panel__detail__list {
        gap: 80px;
    }
}
.business__panels .business__panel__detail .business__institution {
    position: relative;
    padding-left: 6.3541666667vw;
}
@media screen and (max-width: 1439px) {
    .business__panels .business__panel__detail .business__institution {
        padding-left: 4vw;
    }
}
@media screen and (max-width: 1023px) {
    .business__panels .business__panel__detail .business__institution {
        padding-left: 6vw;
        padding-left: 0;
    }
}
.business__panels .business__panel__detail .business__institution__logo {
    position: absolute;
    top: -20px;
    left: 0;
    width: 10.4166666667vw;
    min-width: 160px;
    z-index: 1;
}
@media screen and (max-width: 1439px) {
    .business__panels .business__panel__detail .business__institution__logo {
        width: 10vw;
    }
}
@media screen and (max-width: 1023px) {
    .business__panels .business__panel__detail .business__institution__logo {
        width: 18vw;
    }
}
@media screen and (max-width: 599px) {
    .business__panels .business__panel__detail .business__institution__logo {
        top: -28px;
        width: 30.7692307692vw;
        min-width: 120px;
    }
}
.business__panels .business__panel__detail .business__institution__inner {
    display: flex;
    gap: 2.9166666667vw;
}
@media screen and (max-width: 1023px) {
    .business__panels .business__panel__detail .business__institution__inner {
        flex-direction: column;
        gap: 48px;
    }
}
@media screen and (max-width: 599px) {
    .business__panels .business__panel__detail .business__institution__inner {
        gap: 24px;
    }
}
.business__panels .business__panel__detail .business__institution__image {
    width: 30.4166666667vw;
    max-width: 640px;
}
@media screen and (max-width: 1023px) {
    .business__panels .business__panel__detail .business__institution__image {
        width: 100%;
        padding-left: 48px;
    }
}
.business__panels .business__panel__detail .business__institution__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 584/400;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 5px;
}
.business__panels
    .business__panel__detail
    .business__institution__main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
    justify-content: space-between;
    align-items: flex-start;
}
.business__panels .business__panel__detail .business__institution__header {
    padding-bottom: 12px;
    border-bottom: solid 1px #17789c;
    width: 100%;
}
.business__panels .business__panel__detail .business__institution__title {
    font-size: 2rem;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    color: #17789c;
}
@media screen and (max-width: 1023px) {
    .business__panels .business__panel__detail .business__institution__title {
        font-size: 1.75rem;
    }
}
@media screen and (max-width: 599px) {
    .business__panels .business__panel__detail .business__institution__title {
        font-size: 1.5rem;
    }
}
.business__panels .business__panel__detail .business__institution__subtitle {
    font-size: 1rem;
    font-weight: 500;
    color: #17789c;
}
@media screen and (max-width: 599px) {
    .business__panels
        .business__panel__detail
        .business__institution__subtitle {
        font-size: 0.875rem;
    }
}
.business__panels .business__panel__detail .business__institution__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.business__panels
    .business__panel__detail
    .business__institution__catch-phrase {
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.6;
}

.educational-philosophy {
    background-color: #17789c;
    padding-top: 6.25vw;
    padding-left: 5.2083333333vw;
}
@media screen and (max-width: 1439px) {
    .educational-philosophy {
        padding-left: 2%;
    }
}
@media screen and (max-width: 1023px) {
    .educational-philosophy {
        padding-top: 100px;
        padding-left: 8%;
        padding-bottom: 100px;
    }
}
@media screen and (max-width: 767px) {
    .educational-philosophy {
        padding-left: 4%;
        padding-bottom: 80px;
    }
}
@media screen and (max-width: 599px) {
    .educational-philosophy {
        padding-top: 80px;
        padding-left: 24px;
    }
}
.educational-philosophy__inner {
    display: flex;
    flex-direction: column;
    gap: 160px;
    background-color: #fff;
    padding-block: 200px;
    padding-inline: 7.5520833333vw 10.4166666667vw;
}
@media screen and (max-width: 1759px) {
    .educational-philosophy__inner {
        padding-inline: 7vw;
    }
}
@media screen and (max-width: 1619px) {
    .educational-philosophy__inner {
        padding-inline: 5vw;
    }
}
@media screen and (max-width: 1439px) {
    .educational-philosophy__inner {
        padding-inline: 4vw;
    }
}
@media screen and (max-width: 1023px) {
    .educational-philosophy__inner {
        padding-block: 120px;
        padding-inline: 8%;
        gap: 32px;
    }
}
@media screen and (max-width: 767px) {
    .educational-philosophy__inner {
        padding-inline: 4%;
    }
}
@media screen and (max-width: 599px) {
    .educational-philosophy__inner {
        padding-block: 80px;
        padding-inline: 32px;
        gap: 20px;
    }
}
.educational-philosophy__about {
    display: flex;
    gap: 8.3333333333vw;
}
@media screen and (max-width: 1023px) {
    .educational-philosophy__about {
        flex-direction: column;
        gap: 64px;
    }
}
@media screen and (max-width: 599px) {
    .educational-philosophy__about {
        gap: 40px;
    }
}
.educational-philosophy__main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 56px;
}
@media screen and (max-width: 1023px) {
    .educational-philosophy__main-content {
        gap: 48px;
    }
}
@media screen and (max-width: 599px) {
    .educational-philosophy__main-content {
        gap: 40px;
    }
}
.educational-philosophy__main-content .page-section__description {
    font-size: 1.125rem;
    font-weight: 500;
}
@media screen and (max-width: 599px) {
    .educational-philosophy__main-content .page-section__description {
        font-size: 1rem;
    }
}
.educational-philosophy__image {
    width: 33.4895833333vw;
    display: flex;
    justify-content: center;
    align-items: flex-end;
}
@media screen and (max-width: 1023px) {
    .educational-philosophy__image {
        width: 100%;
    }
}
.educational-philosophy__detail {
    padding-right: 24px;
}
@media screen and (max-width: 767px) {
    .educational-philosophy__detail {
        padding-right: 0;
    }
}
.educational-philosophy__item {
    display: flex;
    gap: 4.1666666667vw;
    padding-block: 88px;
    position: relative;
}
@media screen and (max-width: 1023px) {
    .educational-philosophy__item {
        padding-block: 80px;
        gap: 24px;
    }
}
@media screen and (max-width: 599px) {
    .educational-philosophy__item {
        padding-block: 40px;
        gap: 16px;
    }
}
.educational-philosophy__item::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 16px;
    aspect-ratio: 1/1;
    background-color: #bdbdbd;
    transform: translateY(50%);
}
@media screen and (max-width: 1023px) {
    .educational-philosophy__item::before {
        width: 12px;
    }
}
@media screen and (max-width: 599px) {
    .educational-philosophy__item::before {
        width: 8px;
    }
}
.educational-philosophy__item::after {
    content: '';
    position: absolute;
    left: 48px;
    bottom: 0;
    width: calc(100% - 48px);
    height: 1px;
    background-color: #bdbdbd;
}
@media screen and (max-width: 1023px) {
    .educational-philosophy__item::after {
        left: 24px;
        width: calc(100% - 24px);
    }
}
@media screen and (max-width: 599px) {
    .educational-philosophy__item::after {
        left: 20px;
        width: calc(100% - 20px);
    }
}
.educational-philosophy__item__number {
    font-size: 4rem;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    color: #17789c;
    line-height: 1.2;
}
@media screen and (max-width: 1023px) {
    .educational-philosophy__item__number {
        padding-top: 0.1em;
        font-size: 2rem;
    }
}
@media screen and (max-width: 599px) {
    .educational-philosophy__item__number {
        padding-top: 0.2em;
        font-size: 1.5rem;
    }
}
.educational-philosophy__item__content {
    flex: 1;
    display: flex;
    gap: 8.3333333333vw;
}
@media screen and (max-width: 1023px) {
    .educational-philosophy__item__content {
        flex-direction: column;
        gap: 48px;
    }
}
@media screen and (max-width: 599px) {
    .educational-philosophy__item__content {
        gap: 24px;
    }
}
.educational-philosophy__item__text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.educational-philosophy__item__title {
    font-size: 2rem;
    font-weight: 700;
}
@media screen and (max-width: 1023px) {
    .educational-philosophy__item__title {
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 599px) {
    .educational-philosophy__item__title {
        font-size: 1.25rem;
    }
}
.educational-philosophy__item__image {
    width: 29.1666666667vw;
}
@media screen and (max-width: 1023px) {
    .educational-philosophy__item__image {
        width: 100%;
    }
}
.educational-philosophy__item__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 560/340;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    border-radius: 5px;
}

.work-place-list {
    padding-block: 20px 100px;
}

.work-place {
    padding-block: 100px;
    padding-inline: 24px;
}
.work-place__inner {
    display: flex;
    flex-direction: column;
    gap: 48px;
    max-width: 75vw;
    margin-inline: auto;
}
@media screen and (max-width: 1439px) {
    .work-place__inner {
        max-width: 90%;
    }
}
@media screen and (max-width: 1279px) {
    .work-place__inner {
        max-width: 96%;
    }
}
@media screen and (max-width: 1023px) {
    .work-place__inner {
        max-width: 100%;
        padding-inline: 8%;
    }
}
@media screen and (max-width: 767px) {
    .work-place__inner {
        padding-inline: 4%;
    }
}
.work-place__header {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}
.work-place__open-button {
    width: 100px;
    aspect-ratio: 1/1;
    border: 1px solid #222222;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: background-color 0.3s;
}
@media screen and (max-width: 1023px) {
    .work-place__open-button {
        width: 80px;
    }
}
@media screen and (max-width: 599px) {
    .work-place__open-button {
        width: 64px;
    }
}
.work-place__open-button span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 20px;
    height: 2px;
    background-color: #222222;
    transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 599px) {
    .work-place__open-button span {
        width: 16px;
        height: 1px;
    }
}
.work-place__open-button span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
}
.work-place__open-button:hover {
    background-color: #222222;
}
.work-place__open-button:hover span {
    background-color: #fff;
}
.work-place__accordion {
    overflow: hidden;
}
.work-place__accordion__content {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
}
.work-place__list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding-block: 16px;
    margin-bottom: 32px;
}
@media screen and (max-width: 599px) {
    .work-place__list {
        padding-top: 0;
    }
}
.work-place__item {
    display: flex;
    gap: 3.125vw;
}
@media screen and (max-width: 1439px) {
    .work-place__item {
        gap: 4%;
    }
}
@media screen and (max-width: 1023px) {
    .work-place__item {
        flex-direction: column;
        gap: 32px;
    }
}
@media screen and (max-width: 599px) {
    .work-place__item {
        gap: 24px;
    }
}
.work-place__item__image {
    width: 41.0416666667vw;
    display: flex;
}
@media screen and (max-width: 1023px) {
    .work-place__item__image {
        width: 100%;
    }
}
.work-place__item__image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 852/500;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 5px;
}
.work-place__item__info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
@media screen and (max-width: 1023px) {
    .work-place__item__info {
        gap: 32px;
    }
}
@media screen and (max-width: 599px) {
    .work-place__item__info {
        gap: 24px;
    }
}
.work-place__item__info__title {
    font-size: 2rem;
    font-weight: 700;
}
@media screen and (max-width: 1023px) {
    .work-place__item__info__title {
        font-size: 1.75rem;
    }
}
@media screen and (max-width: 599px) {
    .work-place__item__info__title {
        font-size: 1.5rem;
    }
}
.work-place__item__info__title small {
    display: block;
    margin-top: -0.25em;
    font-size: 0.7em;
}
.work-place__item__info__address,
.work-place__item__info__access,
.work-place__item__info__program {
    display: flex;
    flex-direction: column;
}
.work-place__item__info__address h4,
.work-place__item__info__access h4,
.work-place__item__info__program h4 {
    font-size: 1.25rem;
    font-weight: 700;
    border-bottom: 1px solid #bdbdbd;
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
}
.work-place__item__info__address h5 {
    font-size: 1rem;
    font-weight: 700;
    margin-block: 0.5em 0;
}
.work-place__item__info__address p {
    text-align: left;
}
.work-place__item__info__address p span {
    display: inline-block;
}
.work-place__item__info__program__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 599px) {
    .work-place__item__info__program__list {
        display: block;
    }
}
.work-place__item__info__program .school-program-label {
    font-size: 0.875rem;
    padding-block: 6px;
    display: inline-block;
    margin-right: 8px;
}
@media screen and (max-width: 599px) {
    .work-place__item__info__program .school-program-label {
        display: block;
    }
}
.work-place__item__info__program .school-program-label span {
    display: inline-block;
}
.work-place__item__info__program .school-program-label span:not(:last-child) {
    margin-bottom: 8px;
}
@media screen and (max-width: 599px) {
    .work-place__item__info__program
        .school-program-label
        span:not(:last-child) {
        margin-bottom: 0;
    }
}
.work-place__item__info__program .school-program-tags {
    display: inline-block;
    padding-block: 6px;
}
.work-place__item__info__program .school-program-tag {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding-inline: 1.25em;
    min-width: 114px;
    height: 1.85em;
    border-radius: 100vmax;
    background-color: #17789c;
    color: #fff;
    font-size: 0.8125rem;
    font-weight: 500;
    margin-right: 1.25em;
    margin-bottom: 4px;
    padding-block: 4px;
}
.work-place__item__info__program .school-program-tag--place {
    background-color: transparent;
    font-size: 0.875rem;
    color: #222222;
    font-weight: 400;
    margin-right: 20px;
}
.work-place__item__info__program .school-program-tag--saito {
    background-color: #064385;
}
.work-place__item__info__program .school-program-tag--kids {
    background-color: #8c2930;
}
.work-place__item__info__program .school-program-tag--aplus {
    background-color: #ff5611;
}
.work-place__item__info__program .school-program-tag--sik {
    background-color: #004ca0;
}
.work-place__gallery {
    display: flex;
    position: relative;
}
.work-place__gallery__header {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}
@media screen and (max-width: 599px) {
    .work-place__gallery__header {
        position: absolute;
        top: -56px;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        height: calc(100% + 56px + 72px);
        align-items: center;
    }
}
.work-place__gallery__title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #17789c;
}
.work-place__gallery__controls {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}
@media screen and (max-width: 599px) {
    .work-place__gallery__controls {
        flex-direction: row;
        position: relative;
        width: 50%;
        min-width: 180px;
    }
}
.work-place__gallery__buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
@media screen and (max-width: 599px) {
    .work-place__gallery__buttons {
        flex-direction: row-reverse;
        width: 100%;
        justify-content: space-between;
    }
}
.work-place__gallery__button {
    width: 60px;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #17789c;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 599px) {
    .work-place__gallery__button {
        width: 48px;
    }
}
.work-place__gallery__button svg {
    stroke: #fff;
}
.work-place__gallery__button--prev svg {
    transform: rotate(180deg);
}
.work-place__gallery__button[aria-disabled='true'] {
    opacity: 0.3;
    cursor: not-allowed;
}
@media (hover: hover) {
    .work-place__gallery__button:hover {
        opacity: 0.8;
    }
}
.work-place__gallery__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #17789c;
    width: 100%;
}
@media screen and (max-width: 599px) {
    .work-place__gallery__pagination {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }
}
@media screen and (max-width: 479px) {
    .work-place__gallery__pagination {
        gap: 4px;
    }
}
.work-place__gallery__slider {
    width: 89.5833333333%;
    min-height: 240px;
}
@media screen and (max-width: 1439px) {
    .work-place__gallery__slider {
        width: 86%;
    }
}
@media screen and (max-width: 1023px) {
    .work-place__gallery__slider {
        width: 80%;
    }
}
@media screen and (max-width: 599px) {
    .work-place__gallery__slider {
        width: 100%;
    }
}
.work-place__gallery__slider .swiper-slide {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    aspect-ratio: 414/302;
}
.work-place__gallery__slider .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: all 0.3s;
}
@media (hover: hover) {
    .work-place__gallery__slider .swiper-slide img:hover {
        transform: scale(1.05);
    }
}

.work-place.is-open .work-place__open-button span:last-child {
    transform: translate(-50%, -50%) rotate(0deg);
    opacity: 0;
}
.work-place.is-open .work-place__accordion__content {
    height: auto;
}

.news-archive-main .page-header {
    padding-bottom: 20px;
}
.news-archive-main .page-header__inner {
    max-width: 75vw;
    margin-inline: auto;
    padding-left: 0;
}
@media screen and (max-width: 1439px) {
    .news-archive-main .page-header__inner {
        max-width: 90%;
    }
}
@media screen and (max-width: 1023px) {
    .news-archive-main .page-header__inner {
        max-width: 100%;
        padding-inline: 4%;
    }
}
@media screen and (max-width: 599px) {
    .news-archive-main .page-header__inner {
        padding-inline: 0;
    }
}

.news-archive {
    padding-block: 100px 200px;
    padding-inline: 24px;
}
@media screen and (max-width: 1023px) {
    .news-archive {
        padding-block: 64px 160px;
    }
}
@media screen and (max-width: 599px) {
    .news-archive {
        padding-block: 40px 120px;
    }
}
.news-archive__inner {
    max-width: 75vw;
    margin-inline: auto;
}
@media screen and (max-width: 1439px) {
    .news-archive__inner {
        max-width: 90%;
    }
}
@media screen and (max-width: 1023px) {
    .news-archive__inner {
        max-width: 100%;
        padding-inline: 4%;
    }
}
@media screen and (max-width: 599px) {
    .news-archive__inner {
        padding-inline: 0;
    }
}
.news-archive__category {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 64px;
}
@media screen and (max-width: 1023px) {
    .news-archive__category {
        margin-bottom: 72px;
    }
}
@media screen and (max-width: 599px) {
    .news-archive__category {
        margin-bottom: 80px;
    }
}
.news-archive__category-list {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 8px;
    width: 100%;
}
@media screen and (max-width: 599px) {
    .news-archive__category-list {
        justify-content: center;
    }
}
@media screen and (max-width: 599px) {
    .news-archive__category-item {
        min-width: calc((100% - 16px) / 3);
    }
}
.news-archive__category-item a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 500;
    color: #17789c;
    line-height: 1;
    padding-block: 24px;
    min-width: 176px;
    border: 1px solid #17789c;
    transition: background-color 0.3s;
}
@media screen and (max-width: 1023px) {
    .news-archive__category-item a {
        font-size: 1rem;
    }
}
@media screen and (max-width: 767px) {
    .news-archive__category-item a {
        font-size: 0.875rem;
        min-width: 160px;
    }
}
@media screen and (max-width: 599px) {
    .news-archive__category-item a {
        font-size: 0.75rem;
        min-width: 100%;
        padding-block: 20px;
    }
}
.news-archive__category-item a:hover {
    background-color: #17789c;
    color: #fff;
    opacity: 1;
}
.news-archive__category-item--current a {
    background-color: #17789c;
    color: #fff;
}
.news-archive__list {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    flex-direction: column;
    gap: 48px;
}
.news-archive__list-items {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-top: 1px solid #bdbdbd;
}
.news-archive__list-item {
    width: 100%;
}
.news-archive__list-item a {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 56px;
    border-bottom: 1px solid #bdbdbd;
}
@media screen and (max-width: 1023px) {
    .news-archive__list-item a {
        padding-block: 48px;
    }
}
@media screen and (max-width: 599px) {
    .news-archive__list-item a {
        padding-block: 40px;
    }
}
.news-archive__list-item__main {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
    gap: 100px;
    max-width: calc(100% - 24px - 16px);
}
@media screen and (max-width: 1439px) {
    .news-archive__list-item__main {
        gap: 64px;
    }
}
@media screen and (max-width: 1023px) {
    .news-archive__list-item__main {
        gap: 40px;
    }
}
@media screen and (max-width: 767px) {
    .news-archive__list-item__main {
        flex-direction: column;
        gap: 16px;
    }
}
.news-archive__list-item__meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 16px;
    transition: opacity 0.3s;
}
.news-archive__list-item__meta__date {
    font-size: 1rem;
    font-family: 'Roboto', sans-serif;
    margin-bottom: -0.15em;
}
@media screen and (max-width: 599px) {
    .news-archive__list-item__meta__date {
        font-size: 1.125rem;
    }
}
.news-archive__list-item__meta__category {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.875rem;
    line-height: 1;
    padding: 4px 12px;
    border-radius: 100vmax;
    border: 1px solid #222222;
    min-width: 84px;
}
.news-archive__list-item__title {
    font-size: 1.125rem;
    line-height: 1.8;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding-right: 24px;
}
@media screen and (max-width: 599px) {
    .news-archive__list-item__title {
        font-weight: 400;
    }
}
.news-archive__list-item__title span {
    background-image: linear-gradient(90deg, #17789c, #17789c);
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: 0 1px;
    transition: all 0.3s;
}
.news-archive__list-item__arrow {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: #17789c;
    border-radius: 50%;
    position: relative;
    transition: all 0.3s;
    overflow: hidden;
}
.news-archive__list-item__arrow .right-arrow {
    stroke: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
}
.news-archive__list-item__arrow .right-arrow--default {
    opacity: 1;
}
.news-archive__list-item__arrow .right-arrow--hover {
    opacity: 0;
    transform: translate(calc(-50% - 40px), -50%);
    stroke: #17789c;
}
@media (hover: hover) {
    .news-archive__list-item a:hover {
        opacity: 1;
    }
    .news-archive__list-item a:hover .news-archive__list-item__meta {
        opacity: 0.8;
    }
    .news-archive__list-item a:hover .news-archive__list-item__title span {
        color: #17789c;
        background-size: 100% 1px;
    }
    .news-archive__list-item a:hover .news-archive__list-item__arrow {
        border: 1px solid #17789c;
        background-color: #fff;
    }
    .news-archive__list-item
        a:hover
        .news-archive__list-item__arrow
        .right-arrow--default {
        opacity: 0;
        transform: translate(calc(-50% + 40px), -50%);
    }
    .news-archive__list-item
        a:hover
        .news-archive__list-item__arrow
        .right-arrow--hover {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}
.news-archive__pagination {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top: 100px;
}
@media screen and (max-width: 1023px) {
    .news-archive__pagination {
        margin-top: 80px;
    }
}
@media screen and (max-width: 599px) {
    .news-archive__pagination {
        margin-top: 60px;
    }
}
.news-archive__pagination__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.news-archive__pagination__link,
.news-archive__pagination__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.125rem;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    width: 64px;
    aspect-ratio: 1/1;
    background-color: #f5f5f5;
    border-radius: 50%;
    transition: all 0.3s;
}
@media screen and (max-width: 1023px) {
    .news-archive__pagination__link,
    .news-archive__pagination__dots {
        font-size: 0.9375rem;
        width: 56px;
    }
}
@media screen and (max-width: 599px) {
    .news-archive__pagination__link,
    .news-archive__pagination__dots {
        font-size: 0.75rem;
        width: 40px;
    }
}
.news-archive__pagination__link--current {
    background-color: rgba(23, 120, 156, 0.4);
}
.news-archive__pagination__link:hover {
    background-color: rgba(23, 120, 156, 0.4);
    color: #fff !important;
    opacity: 1;
}
.news-archive__pagination__link--prev,
.news-archive__pagination__link--next {
    background-color: #17789c;
}
.news-archive__pagination__link--prev .right-arrow,
.news-archive__pagination__link--next .right-arrow {
    width: 16px;
    height: 16px;
    stroke: #fff;
}
@media screen and (max-width: 599px) {
    .news-archive__pagination__link--prev .right-arrow,
    .news-archive__pagination__link--next .right-arrow {
        width: 12px;
        height: 12px;
    }
}
.news-archive__pagination__link--prev:hover,
.news-archive__pagination__link--next:hover {
    background-color: rgba(23, 120, 156, 0.4);
}
.news-archive__pagination__link--prev {
    transform: rotate(180deg);
}

.news-post-main .page-header {
    padding-block: 100px;
}
@media screen and (max-width: 1023px) {
    .news-post-main .page-header {
        padding-block: 72px;
    }
}
@media screen and (max-width: 599px) {
    .news-post-main .page-header {
        padding-block: 36px;
    }
}

.news-post {
    padding-block: 40px 200px;
    padding-inline: 24px;
}
@media screen and (max-width: 1023px) {
    .news-post {
        padding-block: 32px 160px;
    }
}
@media screen and (max-width: 599px) {
    .news-post {
        padding-block: 24px 120px;
    }
}
.news-post__inner {
    max-width: 1144px;
    margin-inline: auto;
}
@media screen and (max-width: 1439px) {
    .news-post__inner {
        max-width: 90%;
        padding-inline: 4%;
    }
}
@media screen and (max-width: 1023px) {
    .news-post__inner {
        max-width: 100%;
        padding-inline: 4%;
    }
}
@media screen and (max-width: 599px) {
    .news-post__inner {
        padding-inline: 0;
    }
}
.news-post__content__header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    padding-block: 16px 56px;
    margin-bottom: 56px;
    border-bottom: 1px solid #c4c4c4;
}
@media screen and (max-width: 1023px) {
    .news-post__content__header {
        padding-block: 8px 48px;
        margin-bottom: 48px;
    }
}
@media screen and (max-width: 599px) {
    .news-post__content__header {
        padding-block: 0 40px;
        margin-bottom: 40px;
    }
}
.news-post__content__header__meta {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}
.news-post__content__header__meta__date {
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    line-height: 1;
    margin-bottom: -0.15em;
}
.news-post__content__header__meta__category {
    font-size: 0.875rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.875rem;
    line-height: 1;
    padding: 4px 12px;
    border-radius: 100vmax;
    border: 1px solid #222222;
    min-width: 84px;
}
.news-post__content__header__title {
    margin-bottom: 0;
    padding: 0;
    font-size: 1.5rem;
}
.news-post__content__divider {
    margin-block: 100px 72px;
    border-top: 1px solid #c4c4c4;
}
@media screen and (max-width: 1023px) {
    .news-post__content__divider {
        margin-block: 80px 64px;
    }
}
@media screen and (max-width: 599px) {
    .news-post__content__divider {
        margin-block: 60px 48px;
    }
}
.news-post__content__footer .detail-link__arrow {
    transform: rotate(180deg);
}
.news-post__content__footer .detail-link__arrow .arrow-btn-circle {
    transform: rotate(180deg);
}

.news-post__content__body > * {
    margin-top: 40px;
}
@media screen and (max-width: 1023px) {
    .news-post__content__body > * {
        margin-top: 36px;
    }
}
@media screen and (max-width: 599px) {
    .news-post__content__body > * {
        margin-top: 32px;
    }
}
.news-post__content__body h2 {
    margin-top: 40px;
    line-height: 1.6;
}
@media screen and (max-width: 1023px) {
    .news-post__content__body h2 {
        margin-top: 36px;
    }
}
@media screen and (max-width: 599px) {
    .news-post__content__body h2 {
        margin-top: 32px;
    }
}
.news-post__content__body h3 {
    margin-top: 40px;
    line-height: 1.6;
}
@media screen and (max-width: 1023px) {
    .news-post__content__body h3 {
        margin-top: 36px;
    }
}
@media screen and (max-width: 599px) {
    .news-post__content__body h3 {
        margin-top: 32px;
    }
}
.news-post__content__body p {
    margin-top: 40px;
}
@media screen and (max-width: 1023px) {
    .news-post__content__body p {
        margin-top: 36px;
    }
}
@media screen and (max-width: 599px) {
    .news-post__content__body p {
        margin-top: 32px;
    }
}
.news-post__content__body strong {
    font-weight: 700;
}
.news-post__content__body a {
    font-weight: 500;
    color: #17789c;
    text-decoration: underline;
}
.news-post__content__body img {
    margin-top: 80px;
    padding-bottom: 32px;
}
@media screen and (max-width: 1023px) {
    .news-post__content__body img {
        margin-top: 72px;
        padding-bottom: 28px;
    }
}
@media screen and (max-width: 599px) {
    .news-post__content__body img {
        margin-top: 60px;
        padding-bottom: 24px;
    }
}
.news-post__content__body blockquote {
    margin-top: 40px;
    padding-left: 24px;
    padding-block: 8px;
    border-left: 4px solid #d9d9d9;
}
.news-post__content__body blockquote p {
    margin-top: 0;
    color: #7a7a7a;
}
.news-post__content__body ol {
    margin-left: 24px;
    list-style: decimal;
}
.news-post__content__body ul {
    margin-left: 24px;
    list-style: disc;
}

.privacy-policy-main .page-header {
    padding-bottom: 20px;
}
.privacy-policy-main .page-header__inner {
    max-width: 75vw;
    margin-inline: auto;
    padding-left: 0;
}
@media screen and (max-width: 1023px) {
    .privacy-policy-main .page-header__inner {
        max-width: 100%;
        padding-inline: 4%;
    }
}
@media screen and (max-width: 599px) {
    .privacy-policy-main .page-header__inner {
        padding-inline: 0;
    }
}

.privacy-policy {
    padding-block: 40px 200px;
}
@media screen and (max-width: 1023px) {
    .privacy-policy {
        padding-block: 40px 160px;
    }
}
@media screen and (max-width: 599px) {
    .privacy-policy {
        padding-bottom: 120px;
    }
}
.privacy-policy__inner {
    max-width: 75vw;
    margin-inline: auto;
}
@media screen and (max-width: 1023px) {
    .privacy-policy__inner {
        max-width: 100%;
        padding-inline: calc(24px + 4%);
    }
}
@media screen and (max-width: 599px) {
    .privacy-policy__inner {
        padding-inline: 24px;
    }
}
.privacy-policy__content__lead {
    margin-top: 0;
    padding-block: 20px;
}
.privacy-policy__content__divider {
    margin-block: 48px;
}
.privacy-policy__content__footer__title {
    font-size: 1rem;
    font-weight: 400;
}
.privacy-policy__content__footer__name {
    font-size: 1.125rem;
    font-weight: 700;
}

.privacy-policy__content__body h2 {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-top: 40px;
    line-height: 1.6;
}
.privacy-policy__content__body p {
    margin-top: 20px;
}
.privacy-policy__content__body ul {
    margin-top: 16px;
    list-style: disc;
    padding-left: 24px;
} /*# sourceMappingURL=main.css.map */

/* お問い合わせページ */

.inquiry__inner {
    width: 80%;
    max-width: 1000px;
    margin-inline: auto;
    margin-bottom: 2em;
}
.inquiry__inner p {
    margin: 1em 0;
}
ul.inquiry_list {
    display: flex;
    justify-content: space-around;
}
@media screen and (max-width: 599px) {
    ul.inquiry_list {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
        align-content: center;
        flex-wrap: wrap;
    }
}

ul.inquiry_list li a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 10px 10px;
    border-radius: 5px;
    width: 150px;
    color: #fff;
}
ul.inquiry_list li {
    margin-bottom: 1em;
}
ul.inquiry_list li a.juku_btn {
    background: #053d78;
}
ul.inquiry_list li a.kids_btn {
    background: #922a31;
}
ul.inquiry_list li a.aplus_btn {
    background: #ff5611;
}
ul.inquiry_list li a.sunny_btn {
    background: #004ca0;
}
