@charset "UTF-8";
:root {
    --main: #333;
    --main-blue: #0470A0;
    --main-blue2: #034663;
    --white: #fff;
    --accent: #FF5D00;
    --accent-yellow: #FFE248;
    --sub-blue: #B0E4F4;
    --base-bg: #FFFEE9;
    --yellow-shadow: 0px 4px 12px 0px rgba(247, 227, 82, 0.1);
    --container-narrow: 970px;
    --container-wide: 1210px;
    --container-padding: 16px;
}
/*--------------------------------
 全体
---------------------------------*/
html {
    overflow-x: hidden;
    scroll-behavior:smooth;
}
body {
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict;
    font-family: 'Josefin Sans', 'Noto Sans JP', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    overflow: clip;
    font-feature-settings: "palt";
    color: var(--main);
}
.admission_top {
    background: var(--base-bg);
}
.admission-lower {
    background-image: linear-gradient(#EBEBEB 1px, transparent 1px), linear-gradient(90deg, #EBEBEB 1px, transparent 1px);
    background-size: 40px 40px;
    background-color: var(--white);
}
/* 選択範囲 */
::selection {
    background-color: var(--main-blue);
    color: #fff;
}
a:link {
    color: var(--main);
}
a:visited {
    color: var(--main);
}
.sp-only {
    display: none;
}
/*--------------------------------
 font
---------------------------------*/
.jp {
    font-family: 'Noto Sans JP', sans-serif;
}
.en {
    font-family: 'Josefin Sans', sans-serif;
}
/*--------------------------------
 レイアウト
---------------------------------*/
.container_narrow {
    max-width: var(--container-narrow);
    margin-inline: auto;
    padding: 0 var(--container-padding);
}
@media screen and (max-width: 1100px) {
    .container_narrow {
        padding: 0 5%;
    }
}
.container_wide {
    max-width: var(--container-wide);
    margin-inline: auto;
    padding: 0 var(--container-padding);
}
@media screen and (max-width: 1450px) {
    .container_wide {
        padding: 0 5%;
    }
}
/* 右に寄せるコンテンツ */
.box-right {
    text-align: right;
}
/* 中央に寄せるコンテンツ */
.box-center {
    text-align: center;
}
/*--------------------------------
 アニメーション
---------------------------------*/
.anime1 {
    opacity: 0;
    transform: translate(-50%, 0);
    transition: 2s;
}
.anime2 {
    opacity: 0;
    transform: translate(-50%, 0);
    transition: 2s;
    transition-delay: 0.8s;
}
.anime3 {
    opacity: 0;
    transform: translate(-50%, 0);
    transition: 2s;
    transition-delay: 1.6s;
}
.anime1.show,
.anime2.show,
.anime3.show {
    opacity: 1;
    transform: translate(0, 0);
}
.anime4 {
    opacity: 0;
    transform: scale(0.5);
}
.anime4.show {
    opacity: 1;
    animation: bounceScale 0.8s ease-out forwards;
}
@keyframes bounceScale {
    0% {
        transform: scale(0.5);
    }
    60% {
        transform: scale(1.1);
    }
    80% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}
.anime5{
   opacity: 0;
   transition: 0.8s;
   transition-delay: 0.5s;
}
.anime5.show {
    opacity: 1;
}
/*--------------------------------
 ボタン
---------------------------------*/
/* 資料請求ボタン */
.request_btn {
    position: relative;
    padding: 1.3em 2em 1em 5rem;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    font-size: 18px;
    letter-spacing: 0.1em;
    line-height: 1;
    transition: all .3s ease;
    color: var(--main-blue) !important;
    background: var(--white);
    border-radius: 999px;
    font-weight: 700;
    box-shadow: 0px 4px 11px 0px rgba(4, 112, 160, 0.25);
    transition:
        background-color .3s ease,
        color .3s ease,
        box-shadow .3s ease;
}
.request_btn::before {
    background-image: url(../images/icon_request.png);
    /* filter: invert(25%) sepia(87%) saturate(1563%) hue-rotate(174deg) brightness(96%) contrast(97%); */
    position: absolute;
    content: "";
    display: block;
    width: 34px;
    height: 24px;
    background-size: contain;
    background-repeat: no-repeat;
    top: 50%;
    transform: translateY(-50%);
    left: 34px;
    transition: filter .3s ease;
}
@media screen and (min-width: 600px) {
    .request_btn:hover {
        background: var(--main-blue);
        color: var(--white) !important;
        box-shadow: none;
    }
    .request_btn:hover::before {
        background-image: url(../images/icon_request-white.svg);
        /* filter: invert(99%) sepia(3%) saturate(471%) hue-rotate(172deg) brightness(116%) contrast(100%); */
    }
}
/* 別窓に飛ぶボタン */
.a_window {
    background-image: url("../images/icon-window.svg");
    background-size: 28px;
    background-repeat: no-repeat;
    background-position: right center;
    padding-right: 30px;
    margin-right: 3px;
    transition: all .3s;
}
@media screen and (min-width: 600px) {
    .a_window:hover {
        filter: invert(25%) sepia(87%) saturate(1563%) hue-rotate(174deg) brightness(96%) contrast(97%);
    }
}
/* 独立ボタン */
.independ_btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--yellow-shadow);
    width: 100%;
    max-width: 465px;
    padding: 16px 32px;
    transition: all .3s;
}
.independ_btn::after {
    content: "";
    display: inline-block;
    background: url("../images/arrow_bg.svg")no-repeat;
    width: 40px;
    height: 40px;
    background-size: contain;
}
@media screen and (min-width: 600px) {
    .independ_btn:hover {
        background: var(--accent);
        color: var(--white);
        font-weight: 700;
    }
}
/*アイコン付きボタン */
.icon_btn {
    display: inline-flex;
    align-items: center;
    width: 100%;
    max-width: 465px;
    padding: 16px 32px;
    transition: all .3s;
}
.icon_btn::before {
    content: "";
    display: inline-block;
    width: 50px;
    height: 50px;
    background-size: contain;
    margin-right: 23px;
}
.icon_btn::after {
    content: "";
    display: inline-block;
    background: url("../images/arrow_bg.svg")no-repeat;
    width: 40px;
    height: 40px;
    background-size: contain;
    margin-left: auto;
}
/* ラインで資料請求ボタン */
.line-btn {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--white);
    border-radius: 5px;
    border: 2px solid #06C755;
    display: inline-flex;
    align-items: center;
    padding: 14px 24px;
}
.line-btn span {
    color: #06C755;
}
.line-btn img {
    margin-right: 20px;
}
/* インスタグラムでボタン */
.insta-btn {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--white);
    border-radius: 5px;
    border: 2px solid var(--accent);
    display: inline-flex;
    align-items: center;
    padding: 14px 24px;
}
.insta-btn img {
    margin-right: 20px;
}
.insta-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.3;
}
.line1,
.line2 {
    display: block;
}
.accent {
    color: var(--accent);
}
/* ボタンの周りに線 */
.border_btn {
    border: 2px solid var(--main);
    box-shadow: none;
}
/*--------------------------------
 見出し
---------------------------------*/
.admission_top h2 {
    padding-bottom: 34px;
}
/* 英語日本語の見出し */
.main-heading {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.en-title {
    color: var(--main-blue2);
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
}
.jp-title {
    position: relative;
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
    z-index: 1;
    display: inline-block;
    line-height: 1.2;
    margin: 0;
    letter-spacing: 4px;
}
.jp-title::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    -webkit-text-stroke: 4px var(--main-blue2);
    stroke-linejoin: round;
}
.jp-title::after {
    content: attr(data-text);
    position: absolute;
    top: 2px;
    left: 0px;
    z-index: -2;
    -webkit-text-stroke: 6px var(--main-blue2);
}
/*--------------------------------
 アニメーション
---------------------------------*/
.opacity {
    transition: opacity 0.3s;
}
@media screen and (min-width: 600px) {
    .opacity:hover {
        opacity: 0.6;
    }
}
/*--------------------------------
 header
---------------------------------*/
header {
    position: relative;
    z-index: 20;
}
.header_inner {
    padding: 1.2em 3em;
}
.admission_logo_link {
    display: inline-flex;
    align-items: center;
    column-gap: 1.5em;
}
.admission_logo_link>img {
    width: 200px;
    height: auto;
}
.admission_logo_link>p {
    font-size: 14px;
    background: var(--main);
    border-radius: 999px;
    color: var(--white);
    padding: 0.15em 1.1em 0.1em;
    text-align: center;
    white-space: nowrap;
    font-weight: 500;
    letter-spacing: 3px;
    margin-bottom: 0;
    line-height: 1.5;
}
.header_btn .request_btn {
    position: absolute;
    top: 27%;
    right: 140px;
}
/*
ハンバーガ―メニュー
*/
#navi {
    position: fixed;
    top: 50px;
    right: 50px;
    width: 450px;
    /* height: 70vh; */
    height: auto;
    padding: 72px 60px;
    background-color: var(--white);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 18;
    pointer-events: none;
    border-radius: 48px;
    box-shadow: 0px 4px 11px 0px rgba(4, 112, 160, 0.25);
}
.nav-menu a {
    color: var(--main);
}
.open #navi {
    right: 50px;
    opacity: 1;
    pointer-events: auto;
}
.menu_btn {
    position: fixed;
    background: var(--accent);
    border-radius: 0 0 0 20px;
    cursor: pointer;
    width: 100px;
    height: 100px;
    top: 0;
    right: 0;
    z-index: 19;
    transition: .3s ease;
}
.menu_btn::after {
    content: "MENU";
    font-size: 19px;
    position: absolute;
    font-weight: bold;
    color: var(--white);
    transform: translate(22px, 63px);
}
.menu_btn.active::after {
    content: "CLOSE";
    color: var(--white);
}
.menu_btn span {
    display: block;
    position: absolute;
    width: 46%;
    height: 3px;
    background: var(--white);
    transition: all .4s ease;
    border-radius: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.menu_btn span:nth-of-type(1) {
    top: 20px;
    /* 線の位置を調整 */
}
.menu_btn span:nth-of-type(2) {
    top: 35px;
    /* 線の位置を調整 */
}
.menu_btn span:nth-of-type(3) {
    top: 50px;
    /* 線の位置を調整 */
}
.menu_btn.active span:nth-of-type(1) {
    transform: translateX(-50%) translateY(16px) rotate(45deg);
    /* ×マークの1本目 */
}
.menu_btn.active span:nth-of-type(2) {
    opacity: 0;
    /* 真ん中の線を非表示 */
}
.menu_btn.active span:nth-of-type(3) {
    transform: translateX(-50%) translateY(-16px) rotate(-45deg);
    /* ×マークの2本目 */
}
#navi .nav-menu a {
    display: inline-block;
    transition: transform .3s ease;
    position: relative;
}
#navi .nav-menu li a {
    position: relative;
    padding: 16px 0 16px 34px;
    transition: all 0.3s;
}
@media screen and (min-width: 600px) {
    #navi .nav-menu li a:hover {
        color: var(--accent);
    }
}
#navi .nav-menu li a::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0.5);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent);
    transition: transform .3s ease;
    transform-origin: center;
}
@media screen and (min-width: 600px) {
    #navi .nav-menu li a:hover::before {
        transform: translateY(-50%) scale(0.8);
    }
}
#navi .nav-list {
    padding-bottom: 43px;
    border-bottom: 1px solid var(--main);
}
#navi .sns-list {
    padding-top: 43px;
    text-align: center;
}
/* 共用 */
.sns-box {
    display: flex;
    align-items: center;
    justify-content: center;
    column-gap: 14px;
}
#navi .sns-box {
    margin-top: 22px;
}
html.open,
body.open {
    overflow: hidden !important;
    /* スクロールを禁止する */
}
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    /* Safari対策 */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 19;
}
.overlay.active {
    opacity: 1;
    visibility: visible;
}
/*--------------------------------
 トップページ
---------------------------------*/
.main-visual {
    width: 100vw;
    /* height: 80%; */
    position: relative;
    /* margin-top: -96px; ローカル用*/
    margin-top: -150px;
    background:
        url(../images/mainvisual_bg.webp) no-repeat center / cover,
        #b8e8f5;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.main-visual-img img {
    object-fit: cover;
}
/* 1000px以下で切り替え */
/* @media (max-width: 1000px) {
    .main-visual-img img {
        object-fit: contain;
    }
} */
.main-visual-news-wrap {
    position: absolute;
    top: 140px;
    left: 17px;
    width: min(160px, 40vw);
    /* 画面に応じて縮む */
    font-weight: 700;
    color: var(--main-blue2);
}
.main-visual-news-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    transform: translate(5px, 5px);
    background: var(--main-blue);
    border-radius: 13px;
    border: 2px solid var(--main);
}
.main-visual-news {
    position: relative;
    background: var(--white);
    border: 2px solid var(--main);
    border-radius: 13px;
    padding: 1em;
}
.main-visual-news .title {
    font-size: 14px;
    line-height: 1.3;
    margin-bottom: 0.8em;
}
.main-visual-news .edit-area {
    text-align: center;
}
.main-visual-news .edit-area .date {
    font-size: 43px;
    margin-bottom: 0.3em;
}
.main-visual-news .edit-area .week {
    font-size: 17px;
}
/* バナーswiper */
.banner_swiper {
    background: var(--accent-yellow);
    padding: 2em 0;
}
.banner_swiper .swiper-slide {
    width: auto;
}
.banner_swiper a {
    display: inline-block;
}
.banner_swiper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 128 /71;
}
.banner_swiper .swiper-pagination-bullet {
    background: var(--white);
    width: 14px;
    height: 14px;
}
.banner_swiper .swiper-pagination-bullet-active {
    background: var(--accent) !important;
}
.banner_swiper .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.banner_swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 11px 0px;
    opacity: 1;
}
.banner_swiper .swiper-pagination {
    position: static;
    transform: none;
    width: auto;
}
/* 前へ次への矢印カスタマイズ */
.banner_swiper .swiper-button-prev,
.banner_swiper .swiper-button-next {
    height: 40px;
    width: 40px;
    /* 画像の下に出す動き */
    position: static;
    margin: 0;
    top: auto;
    left: auto;
    right: auto;
}
/* 前へ次への矢印カスタマイズ */
.banner_swiper .swiper-button-prev::after,
.banner_swiper .swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 40px;
    margin: auto;
    width: 40px;
    filter: invert(99%) sepia(3%) saturate(471%) hue-rotate(172deg) brightness(116%) contrast(100%);
    transition:
        background-color .3s ease,
        color .3s ease,
        box-shadow .3s ease;
}
/* 前への矢印カスタマイズ */
.banner_swiper .swiper-button-prev::after {
    background-image: url(../images/arrow_left.svg);
}
/* 次への矢印カスタマイズ */
.banner_swiper .swiper-button-next::after {
    background-image: url(../images/arrow_right.svg);
}
@media screen and (min-width: 600px) {
    .banner_swiper .swiper-button-prev:hover::after,
    .banner_swiper .swiper-button-next:hover::after {
        filter: invert(41%) sepia(86%) saturate(2812%) hue-rotate(0deg) brightness(103%) contrast(105%);
    }
}
/* 画像の下に出す動き */
.banner_swiper .swiper-sub {
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-around;
    gap: 24px;
    margin-top: 16px;
}
/* フローティングボタン */
.main-visual-line {
    /* position: absolute; */
    z-index: 4;
    right: 25px;
    bottom: 106px;
    position: fixed;
}
.main-visual-line a {
    display: block;
    transition: all .3s;
}
.banner-close {
    font-weight: bold;
    position: absolute;
    font-size: 0;
    top: -11px;
    right: -11px;
    z-index: 2;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    padding: 0.5em;
    border: none;
    cursor: pointer;
    -webkit-box-shadow: 0 0 7px rgb(0 0 0 / 40%);
    box-shadow: 0 0 7px rgb(0 0 0 / 40%);
    color: var(--white);
    background: #06C755;
}
.banner-close::before {
    content: "×";
    font-size: 25px;
}
/* トップお知らせ */
.index-news {
    padding: 100px 0 20vw 0;
    background-color: #FCF6E2;
    background-image: url("../images/news-bg.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100%;
}
.index-news h2 {
    width: 100%;
    max-width: 292px;
    height: auto;
    margin: 0 auto;
}
.index-news-wrap {
    position: relative;
}
.index-news-wrap::after {
    content: "";
    position: absolute;
    top: 8px;
    left: 8px;
    width: 100%;
    height: 100%;
    background: #F38546;
    border-radius: 16px;
    border: 2px solid var(--main-blue2);
    z-index: 0;
}
.index-news-main {
    position: relative;
    z-index: 1;
    background: #fff;
    border: 2px solid var(--main-blue2);
    border-radius: 16px;
    padding: 64px 95px 46px;
}
.news-list {
    width: 100%;
    margin-bottom: 16px;
}
.news-list li {
    border-bottom: 1px solid var(--main-blue2);
}
.news-list .no-news {
    border-bottom: none;
    padding-bottom: 12px;
    text-align: center;
}
.news-list li a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    padding: 30px 12px 30px;
    transition: all 0.3s ease;
    row-gap: 10px;
    column-gap: 18px;
}
@media screen and (min-width: 600px) {
    .news-list li a:hover {
        background: var(--base-bg);
    }
}
.news-list li .date {
    display: flex;
    align-items: center;
}
.news-list li .date .day {
    font-weight: 700;
    margin-right: 18px;
}
.news-list li .date .cat {
    font-size: 14px;
    color: var(--white);
    background: var(--accent);
    border-radius: 999px;
    padding: 6px 10px 3px;
    font-weight: 600;
    letter-spacing: 2px;
}
.news-list li .content .text {
    font-size: 20px;
}
.news-list-all {
    display: inline-flex;
    align-items: center;
    column-gap: 32px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: underline;
}
.news-list-all::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background: url("../images/arrow_bg.svg")no-repeat;
    background-size: contain;
}
/* トップ特徴 */
.index-feature {
    background-color: #c2f26c;
    background-image:
        linear-gradient(#d6f995 1px, transparent 1px),
        linear-gradient(90deg, #d6f995 1px, transparent 1px),
        url("../images/feature-bg.webp");
    background-size: 25px 25px, 25px 25px, cover;
    background-position:
        top left,
        top left,
        center;
    background-repeat:
        repeat,
        repeat,
        no-repeat;
    padding: 200px 0;
    clip-path: ellipse(120% 100% at 50% 100%);
    margin-top: -200px;
    position: relative;
}
.index-feature::after {
    content: "";
    position: absolute;
    bottom: -113px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 142px;
    background-color: #c2f26c;
    background-image:
        linear-gradient(#d6f995 1px, transparent 1px),
        linear-gradient(90deg, #d6f995 1px, transparent 1px);
    background-size: 25px 25px, 25px 25px;
    background-repeat: repeat, repeat;
    -webkit-mask: url(../images/map-mask-bottom.png) no-repeat center / contain;
    mask: url(../images/map-mask-bottom.png) no-repeat center / contain;
    pointer-events: none;
}
@media screen and (max-width: 1700px) {
    .index-feature::after {
        bottom: -98px;
    }
}
@media screen and (max-width: 1100px) {
    .index-feature::after {
        bottom: -89px;
    }
}
@media screen and (max-width: 1115px) {
    .index-feature {
        padding: 200px 0;
        margin-top: -100px;
    }
}
.index-feature h2 {
    margin: 0 auto;
    width: 100%;
    max-width: 570px;
    height: auto;
}
.illust-area {
    display: flex;
    align-items: center;
    justify-content: space-around;
    margin-bottom: 170px;
}
.illust-area .three-feature li:nth-child(1) {
    margin-bottom: 40px;
    margin-right: 120px;
}
.illust-area .three-feature li:nth-child(2) {
    margin-bottom: 20px;
    margin-left: 120px;
}
.illust-area .three-feature li:nth-child(3) {
    margin-bottom: 0px;
    margin-left: 10px;
}
/* トップ入試情報 */
.index-admission {
    padding: 200px 0;
    background-image: url("../images/admission-bg.webp");
    background-repeat: no-repeat;
    background-position: 100% 40%;
    background-size: 90%;
}
/* 人物イラスト */
.admission-mainlist::after {
    content: "";
    position: absolute;
    top: -115px;
    right: -85px;
    width: 520px;
    height: 360px;
    background: url("../images/admission-anime.webp") no-repeat;
    background-size: contain;
    z-index: 3;
    pointer-events: none;
}
/* カード */
.admission-mainlist {
    position: relative;
    z-index: 3;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--yellow-shadow);
    padding: 76px 68px;
    display: flex;
    align-items: center;
    gap: 4.8vw;
    margin-bottom: 8.3vw;
}
.admission-mainlist figure>a {
    font-size: 18px;
    text-decoration: underline;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all .3s;
    gap: 23px;
}
.admission-mainlist figure {
    width: 40%;
}
.admission-mainlist ul {
    width: 60%;
}
.admission-mainlist ul li:nth-child(1) .icon_btn::before {
    background: url("../images/icon-admission-01.svg")no-repeat;
}
.admission-mainlist ul li:nth-child(2) .icon_btn::before {
    background: url("../images/icon-admission-02.svg")no-repeat;
}
.admission-mainlist ul li:nth-child(3) .icon_btn::before {
    background: url("../images/icon-admission-03.svg")no-repeat;
}
.admission-mainlist ul .icon_btn {
    border-bottom: 1px solid #b7b7b7;
    max-width: 100%;
}
.admission-sublist h3 {
    text-align: center;
    margin-bottom: 38px;
}
.admission-sublist ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 21px;
}
.admission-sublist ul .icon_btn {
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--yellow-shadow);
    max-width: 100%;
}
.admission-sublist ul li:nth-child(1) .icon_btn::before {
    background: url("../images/icon-admission-04.svg")no-repeat;
}
.admission-sublist ul li:nth-child(2) .icon_btn::before {
    background: url("../images/icon-admission-05.svg")no-repeat;
}
.admission-sublist ul li:nth-child(3) .icon_btn::before {
    background: url("../images/icon-admission-06.svg")no-repeat;
}
.admission-sublist ul li:nth-child(4) .icon_btn::before {
    background: url("../images/icon-admission-07.svg")no-repeat;
}
.index-admission .box-center {
    margin-top: 60px;
}
/* トップオープンキャンパスなど進学相談会 */
.index-oc {
    padding: 13vw 0;
    background-image:
        url("../images/oc-bg-pattern.webp");
    background-repeat: repeat, no-repeat;
    clip-path: ellipse(85% 50%);
}
.index-oc h2 {
    text-align: center;
    margin-bottom: 3vw;
}
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.card-container li {
    flex: 1 1 calc(33.333% - 2rem);
    /* 3列で余白分を調整 */
    display: flex;
    position: relative;
    transition: transform .3s;
}
@media screen and (min-width: 600px) {
    .card-container li:hover {
        transform: translateY(-10px);
    }
}
.card-container li::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 9px;
    height: 12px;
    /* background: #FFE248; */
    z-index: 0;
    border-radius: 12px;
    border: 2px solid var(--main);
    width: 100%;
    height: 100%;
}
.card-container li.is-yellow::after {
    background: #FFE248;
}
.card-container li.is-green::after {
    background: #01892A;
}
.card-container li.is-blue::after {
    background: #1183B5;
}
.card-container .card {
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    flex: 1;
    border: 2px solid var(--main);
    border-radius: 10px;
    position: relative;
    z-index: 1;
}
.card-container .card img {
    border-radius: 10px 10px 0 0;
}
/* オープンキャンパスカード */
.card-container .card h3 {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.83;
    color: var(--main-blue2);
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 32px;
    transition: all .3s;
}
.card-container .card h3::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    background-size: contain;
}
.card-container .is-yellow .card h3::after {
    background: url("../images/arrow_yellow.svg")no-repeat;
}
.card-container .is-green .card h3::after {
    background: url("../images/arrow_green.svg")no-repeat;
}
.card-container .is-blue .card h3::after {
    background: url("../images/arrow_blue.svg")no-repeat;
}
.card-container .is-blue .card h3 {
    line-height: 1.2;
}
.index-oc .box-center {
    margin-top: 60px;
}
/* トップオープンキャンパスライフ */
.index-campus {
    padding: 13vw 0 20vw 0;
    background-image: url("../images/campus-bg.webp");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 80%;
}
.index-campus .main-heading {
    padding-bottom: 20px;
}
.campus-wrap {
    display: flex;
    align-items: center;
    gap: 72px;
}
.campus-wrap ul {
    width: 40%;
}
.campus-wrap ul li {
    margin-bottom: 22px;
}
.campus-wrap>div {
    width: 60%;
}
.index-campus .box-center {
    margin-top: 60px;
}
/* トップお仕事マップ */
.index-worksmap {
    position: relative;
    padding: 8vw 0 8vw 0;
    background-image:
        url("../images/worksmap-bg-pattern-main.webp");
    background-repeat: repeat, no-repeat;
}
.index-worksmap::after {
    content: "";
    position: absolute;
    bottom: -95px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 142px;
    background-image:
        url("../images/worksmap-bg-pattern-main.webp");
    background-repeat: repeat, no-repeat;
    -webkit-mask: url("../images/map-mask-bottom.png") no-repeat center / contain;
    mask: url("../images/map-mask-bottom.png") no-repeat center / contain;
    pointer-events: none;
}
.index-worksmap::before {
    content: "";
    position: absolute;
    top: -163px;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 312px;
    background-image:
        url("../images/worksmap-bg-pattern-main.webp");
    background-repeat: repeat, no-repeat;
    -webkit-mask: url("../images/map-mask-top.png") no-repeat center / contain;
    mask: url("../images/map-mask-top.png") no-repeat center / contain;
    pointer-events: none;
}
.index-worksmap h2 {
    text-align: center;
}
.index-worksmap .box-center {
    margin-top: 50px;
}
/* トップ卒業生インタビュー */
.index-interview {
    padding: 14vw 0 16vw 0;
    background-image: url("../images/interview-bg.webp");
    background-repeat: no-repeat;
    background-position: 100% 40%;
    background-size: 90%;
}
/* swiper */
.interview_swiper {
    margin-bottom: 60px;
}
.interview_swiper .swiper-slide {
    width: auto;
}
.interview_swiper a {
    display: inline-block;
}
.interview_swiper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    aspect-ratio: 39 / 46;
    transition: transform .4s ease;
}
.interview_swiper .course {
    font-size: 14px;
    display: inline-block;
    margin-bottom: 1em;
    width: 100%;
}
.interview_swiper .course>span {
    padding-left: 1em;
}
.interview_swiper .cathcopy {
    margin-bottom: 1em;
    text-decoration: none;
    transition: transform .4s ease;
}
.interview_swiper .mix {
    line-height: 1.5;
}
/* 前へ次への矢印カスタマイズ */
.interview_swiper .swiper-button-prev,
.interview_swiper .swiper-button-next {
    height: 50px;
    width: 50px;
    position: static;
    margin: 0;
    top: auto;
    left: auto;
    right: auto;
}
/* 前へ次への矢印カスタマイズ */
.interview_swiper .swiper-button-prev::after,
.interview_swiper .swiper-button-next::after {
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 50px;
    margin: auto;
    width: 50px;
    transition:
        background-color .3s ease,
        color .3s ease,
        box-shadow .3s ease;
}
/* 前への矢印カスタマイズ */
.interview_swiper .swiper-button-prev::after {
    background-image: url(../images/arrow_bg.svg);
    transform: scale(-1, 1);
}
/* 次への矢印カスタマイズ */
.interview_swiper .swiper-button-next::after {
    background-image: url(../images/arrow_bg.svg);
}
/* 画像の下に出す動き */
.interview_swiper .swiper-sub {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 37px;
    margin-bottom: 38px;
}
.interview_swiper .swiper-slide a>div {
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 16px;
}
@media screen and (min-width: 600px) {
    .interview_swiper .swiper-slide:hover img {
        transform: scale(1.08);
    }
    .interview_swiper .swiper-slide:hover .cathcopy {
        color: var(--accent);
    }
}
/*--------------------------------
 footer
---------------------------------*/
footer {
    background: var(--sub-blue);
    padding: 8.5vw 0 4vw 0;
    clip-path: ellipse(85% 100% at 50% 100%);
}
footer #admission_logo {
    margin-bottom: 40px;
}
@media (min-width: 600px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}
.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 60px;
}
.footer-wrap dl {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    line-height: 2.25;
    margin-bottom: 32px;
}
.footer-wrap dt {
    width: 10%;
}
.footer-wrap dd {
    width: 90%;
}
.footer-wrap .sns-box {
    margin-bottom: 40px;
    justify-content: flex-end;
}
.footer-wrap .link-box {
    display: flex;
    align-items: center;
    gap: 40px;
}
.copy-area {
    border-top: 1px solid var(--main);
    padding-top: 60px;
    text-align: center;
}
.copy-area small {
    font-size: 11px;
}
.page-top {
    display: none;
    position: fixed;
    right: 25px;
    bottom: 26px;
    z-index: 4;
}
.page-top__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 5px;
    background-color: transparent;
    box-shadow: 0 0 10px 0 rgba(0, 101, 50, 0.2);
    cursor: pointer;
    transition: all .3s;
}
.page-top__link img {
    transform: rotate(-90deg)
}
@media screen and (min-width: 600px) {
    .page-top__link:hover {
        transform: translate(0px, -5px);
    }
}
/*--------------------------------
 卒業生インタビュー
---------------------------------*/
.interview-main-visual {
    width: 100vw;
    height: 480px;
    position: relative;
    margin-top: -149px;
    background-image:
        url(../images/lower/mainvisual-bg.webp),
        linear-gradient(180deg, rgba(175, 229, 245, 1) 0%, rgba(155, 224, 245, 1) 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: center, center;
    background-size: cover, cover;
}
.mv-inner {
    position: relative;
    width: 100%;
    height: 100%;
}
.mv-title {
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    color: var(--main-blue2);
    font-size: 60px;
    font-weight: 700;
    letter-spacing: 4px;
    padding-left: .5em;
}
.mv-title::before {
    position: absolute;
    font-size: 125px;
    font-weight: 700;
    bottom: 0em;
    left: .2em;
    color: #CAEFFF;
    line-height: 1;
    content: attr(data-word);
    pointer-events: none;
    font-family: 'Josefin Sans', sans-serif;
    z-index: -1;
}
.mv-breadcrumb {
    position: absolute;
    bottom: 40px;
    right: 0;
    text-align: right;
    padding: 20px 28px;
    border-radius: 999px;
    background-color: var(--white);
    margin-right: 2em;
    z-index: 2;
}
.breadcrumb__list {
    max-width: 1140px;
    padding: 0 15px;
    margin: 0 auto;
    list-style: none;
}
.breadcrumb__list ol {
    display: flex;
}
.breadcrumb__list li {
    list-style: none;
    font-size: 16px;
    position: relative;
    color: var(--main-blue2);
}
.breadcrumb__list li::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 1px;
    margin: 0 1.2em;
    background-color: #bbb;
    vertical-align: middle;
}
.breadcrumb__list li:last-child::after {
    content: none;
}
.breadcrumb__list li a {
    text-decoration: none;
    transition: .3s;
}
.breadcrumb__list li a:hover {
    font-weight: 700;
}
.breadcrumb__list li:last-child {
    font-weight: 700;
}
.interview-main {
    margin: 10vw 0;
}
/* インタビュー一覧 */
.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}
.card {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 0.9rem;
    transition: transform .4s ease;
}
.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transition: transform .4s ease;
}
.card .img-item {
    aspect-ratio: 39 / 46;
    overflow: hidden;
    border-radius: 8px;
}
.mix {
    margin-top: auto;
}
@media screen and (min-width: 600px) {
    .card:hover .img-item img {
        transform: scale(1.08);
    }
    .card:hover .cathcopy {
        color: var(--accent);
    }
}
.course {
    background: var(--accent-yellow);
    line-height: 1.2;
    padding: 3px 1em;
    border-radius: 999px;
    text-align: center;
}
.cathcopy {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.55;
    text-decoration: underline;
    letter-spacing: 1.5px;
}
.mix {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1em;
}
.mv-single {
    width: 100%;
    position: static;
    color: var(--main-blue2);
    font-size: 50px;
    font-weight: 700;
    letter-spacing: 4px;
    line-height: 1.3;
    padding-left: .5em;
}
.interview-main-visual .course {
    position: static;
    margin-left: 1.3em;
    min-width: 340px;
}
.admission-single .mv-inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 1.2rem;
}
.interview-main .profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 34px;
    margin-bottom: 4.8vw;
}
.interview-main .profile .text-item {
    flex: 1;
}
.interview-main .profile .img-item img {
    max-width: 370px;
    aspect-ratio: 39 / 46;
    border-radius: 8px;
    object-fit: cover;
    object-position: center center;
}
.interview-main .profile .name {
    font-size: 42px;
    letter-spacing: 2px;
    font-weight: 700;
    color: var(--main-blue2);
    margin-bottom: 0.9em;
}
.interview-main .profile .name>span {
    font-size: 20px;
    letter-spacing: 1px;
    margin-left: 0.4em;
    color: var(--main);
}
/* ページナビ */
.wp-pagenavi-area {
    margin-top: 60px;
}
.wp-pagenavi {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}
.wp-pagenavi .page {
    display: inline-block;
    text-align: center;
    width: 42px;
    height: 42px;
    line-height: 36px;
    border: solid 2px var(--accent);
    border-radius: 5px;
    margin: auto 6px;
    transition: 0.3s ease-out;
    color: var(--accent);
    font-weight: 600;
}
@media screen and (min-width : 601px) {
    .wp-pagenavi .page:hover {
        background: var(--accent);
        color: var(--white);
        border: 2px solid var(--accent);
    }
}
.wp-pagenavi .current {
    display: inline-block;
    text-align: center;
    width: 42px;
    height: 42px;
    line-height: 36px;
    color: #fff;
    background: var(--accent);
    border: solid 1px var(--main-color) !important;
    border-radius: 5px;
    margin: auto 2px;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .extend,
.wp-pagenavi .first,
.wp-pagenavi .last {
    line-height: 42px;
    margin: auto 8px;
    transition: 0.3s ease-out;
}
@media screen and (min-width : 601px) {
    .wp-pagenavi .previouspostslink:hover,
    .wp-pagenavi .nextpostslink:hover,
    .wp-pagenavi .first:hover,
    .wp-pagenavi .last:hover {
        color: var(--main-color);
        color: var(--sub-font-color);
    }
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
    display: none;
}
/* ページナビ_end */
.circle-list {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
}
.circle-list dt {
    border: 2px solid var(--main);
    border-radius: 3px;
    padding: 8px 16px;
    margin-bottom: 0.9em;
    background: var(--white);
}
.circle-list dd {
    margin-bottom: 1.6em;
    line-height: 1.4;
}
.circle-list dd:last-child {
    margin-bottom: 0;
}
.interview-block .interview-item {
    margin-bottom: 60px;
}
.interview-block .interview-item:last-child {
    margin-bottom: 120px;
}
.interview-block .interview-item h3 {
    display: flex;
    align-items: flex-start;
    gap: 1em;
    font-size: 18px;
    background: var(--accent);
    border-radius: 10px;
    padding: 10px 18px;
    color: var(--white);
    margin-bottom: 16px;
    letter-spacing: 1.5px;
    line-height: 1.5;
}
.interview-block .interview-item h3 .en {
    flex-shrink: 0;
}
.interview-block .interview-item h3 .question-text {
    flex: 1;
}
.interview-block .interview-item .flex-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}
.interview-block .interview-item .flex-item .text {
    flex: 1;
    line-height: 2;
}
.interview-block .interview-item .flex-item .img {
    flex-shrink: 0;
}
.interview-block .interview-item .flex-item .img img {
    aspect-ratio: 4/3;
    max-width: 400px;
    object-fit: cover;
    object-position: center center;
    border-radius: 10px;
}
.interview-block .interview-item .flex-item .img:empty {
    display: none;
}
/*--------------------------------
 お仕事MAP
---------------------------------*/
.jobmap-main-visual {
    width: 100vw;
    height: 800px;
    margin-top: -149px;
    position: relative;
    background-image:
        url("../images/worksmap-bg-pattern-main.webp");
    background-repeat: repeat;
    overflow: hidden;
}
.jobmap-mv-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
.jobmap-mv-title img {
    max-width: 500px;
    width: 100%;
    height: auto;
}
.jobmap-mv-illust img {
    position: absolute;
    z-index: 1;
    width: 100%;
    height: auto;
}
/* 左上 */
.jobmap-mv-illust img:nth-child(1) {
    top: 8%;
    left: 12%;
    max-width: 310px;
}
/* 右上 */
.jobmap-mv-illust img:nth-child(2) {
    top: 12%;
    right: 3%;
    max-width: 430px;
}
/* 左下 */
.jobmap-mv-illust img:nth-child(3) {
    bottom: 6%;
    left: 1%;
    max-width: 430px;
}
/* 右下 */
.jobmap-mv-illust img:nth-child(4) {
    bottom: 10%;
    right: 10%;
    max-width: 310px;
}
@media (min-width: 1500px) {
    .jobmap-mv-title img {
        max-width: 600px;
    }
    .jobmap-mv-illust img:nth-child(1),
    .jobmap-mv-illust img:nth-child(4) {
        max-width: 350px;
    }
    .jobmap-mv-illust img:nth-child(2),
    .jobmap-mv-illust img:nth-child(3) {
        max-width: 480px;
    }
    .jobmap-mv-illust img:nth-child(1) {
        top: 6%;
        left: 5%;
    }
    .jobmap-mv-illust img:nth-child(2) {
        top: 9%;
        right: -9%;
    }
    .jobmap-mv-illust img:nth-child(3) {
        left: -11%;
    }
    .jobmap-mv-illust img:nth-child(4) {
        right: 1%;
        bottom: 12%;
    }
}
@media (max-width: 1060px) {
    .jobmap-mv-title img {
        max-width: 460px;
    }
    .jobmap-mv-illust img:nth-child(1),
    .jobmap-mv-illust img:nth-child(4) {
        max-width: 300px;
    }
    .jobmap-mv-illust img:nth-child(3),
    .jobmap-mv-illust img:nth-child(2) {
        max-width: 410px;
    }
}
.job-anchor-list {
    margin: 10vw 0;
}
.job-anchor-list ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6vw;
}
.job-anchor-btn {
    position: relative;
    display: inline-block;
    width: 480px;
    margin-bottom: 26px;
    padding: 50px 90px;
    border-radius: 9999px;
    background-color: #41bff6;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    height: 170px;
}
.job-anchor-btn::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    border-style: solid;
    border-width: 26px 30.5px 0 30.5px;
    border-color: #41bff6 transparent transparent;
    translate: -50% 100%;
    transition: border-color .3s ease;
}
.town .job-anchor-btn {
    background-color: #07B53C;
}
.town .job-anchor-btn::after {
    border-color: #07B53C transparent transparent;
}
.job-anchor-btn::before {
    content: "";
    position: absolute;
    bottom: 0;
    background: url(../images/lower/jobmap/anchor-hp.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    aspect-ratio: 83 / 212;
    width: 83px;
    height: 212px;
    z-index: 2;
}
.town .job-anchor-btn::before {
    background: url(../images/lower/jobmap/anchor-town.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    aspect-ratio: 129 / 205;
    width: 129px;
    height: 205px;
}
.hp .job-anchor-btn::before {
    left: 50px;
}
.town .job-anchor-btn::before {
    right: 28px;
}
.double-text {
    position: absolute;
    top: 54%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: max-content;
    text-align: center;
    color: var(--main-blue2);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 4px;
    -webkit-text-stroke: 4px var(--white);
    text-stroke: 4px var(--font-sub-color);
    paint-order: stroke fill;
}
.double-text::before {
    position: absolute;
    font-size: 50px;
    font-weight: 700;
    bottom: 0.19em;
    color: #CAEFFF;
    line-height: 1;
    content: attr(data-word);
    pointer-events: none;
    font-family: 'Josefin Sans', sans-serif;
    z-index: -1;
    letter-spacing: 1px;
    -webkit-text-stroke: 0;
}
.town .double-text {
    padding-right: 0.5em;
}
.town .double-text::before {
    color: #A1DEC6;
    left: 24px;
}
.double-text::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -30px;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--main);
    border-bottom: 2px solid var(--main);
    transition: transform .3s ease;
}
.job-anchor-btn {
    transition: background-color .3s ease;
}
@media screen and (min-width: 600px) {
    .job-anchor-btn:hover {
        background-color: #2da8e0;
    }
    .job-anchor-btn:hover .double-text::after {
        transform: translate(-50%, 6px) rotate(45deg);
    }
    .job-anchor-btn:hover::after {
        border-color: #2da8e0 transparent transparent;
    }
    .town .job-anchor-btn:hover {
        background-color: #059E35;
    }
    .town .job-anchor-btn:hover::after {
        border-color: #059E35 transparent transparent;
    }
}
.hp .double-text {
    padding-left: 2.5em;
}
@media (max-width: 1050px) {
    .job-anchor-btn {
        width: 450px;
        padding: 50px 22px;
    }
    .job-anchor-list ul {
        gap: 2vw;
    }
}
.job-hospital,
.job-town {
    margin: 10vw 0;
}
.job-heading {
    text-align: center;
    margin-bottom: 100px;
}
.job-heading img {
    width: 800px;
}
/* 病院の中でのお仕事 */
.hospital-job {
    display: flex;
    align-items: center;
    flex-direction: column;
}
.hospital-job-item:nth-child(odd) {
    align-self: flex-end;
}
.hospital-job-item:nth-child(even) {
    align-self: flex-start;
    margin-top: -60px;
}
.hospital-job-item:nth-child(2) {
    margin-top: -200px;
}
.hospital-job-item:nth-child(3) {
    margin-top: -110px;
}
.hospital-job-item:nth-child(4) {
}
.hospital-job-item .link {
    position: relative;
    display: inline-block;
    transition: .3s all;
}
.hospital-job-item .ort .illust {
    width: 650px;
    display: block;
}
.hospital-job-item .pt .illust {
    width: 760px;
    display: block;
}
.hospital-job-item .ns .illust {
    width: 800px;
    display: block;
}
.hospital-job-item .ot .illust {
    width: 650px;
    display: block;
}
.hospital-job-item .ort .sb {
    position: absolute;
    top: 5%;
    right: -3%;
    width: 200px;
}
.hospital-job-item .pt .sb {
    position: absolute;
    top: 1%;
    left: 27%;
    width: 200px;
}
.hospital-job-item .ns .sb {
    position: absolute;
    top: -3%;
    right: 20%;
    width: 140px;
}
.hospital-job-item .ot .sb {
    position: absolute;
    top: 0%;
    left: 2%;
    width: 180px;
}
.sb-img {
    width: 100%;
    display: block;
}
.sb-text {
    position: absolute;
    top: 54%;
    left: 55%;
    transform: translate(-54%, -55%);
    font-weight: 700;
    font-size: 22px;
    white-space: nowrap;
    transition: opacity .3s ease, transform .3s cubic-bezier(.2, .8, .2, 1);
}
.pt .sb-text {
    top: 54%;
    left: 50%;
    transform: translate(-54%, -50%);
}
.ot .sb-text {
    top: 46%;
    left: 50%;
    transform: translate(-50%, -46%);
}
.sb-default {
    opacity: 1;
}
.sb-hover {
    opacity: 0;
    transform: translate(-54%, -55%) scale(0.6);
}
.pt .sb-hover {
    transform: translate(-54%, -50%) scale(0.6);
}
.ns .sb-hover {
    transform: translate(-50%, -46%) scale(0.6);
}
@media screen and (min-width: 600px) {
    .hospital-job-item .link:hover .sb-default,
    .town-job-item .link:hover .sb-default {
        opacity: 0;
    }
    .hospital-job-item .link:hover .sb-hover,
    .town-job-item .link:hover .sb-hover {
        opacity: 1;
        transform: translate(-54%, -50%) scale(1);
    }
    .hospital-job-item .link.pt:hover .sb-hover {
        transform: translate(-54%, -50%) scale(1);
    }
    .hospital-job-item .link.ot:hover .sb-hover {
        transform: translate(-50%, -46%) scale(1);
    }
}
.hospital-tab-menu {
    margin: 7vw 0;
}
.hospital-tab-contents .swiper-slide {
    height: auto;
}
.job-main-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5em;
}
.job-main-list li {
    width: auto;
}
@media screen and (max-width: 1080px) {
    .job-main-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
.job-main-list-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: var(--main);
    font-weight: 700;
    letter-spacing: 1px;
    background: var(--white);
    border-radius: 10px;
    border: 2px solid var(--main);
    padding: 24px 20px;
    transition: .3s ease;
    cursor: pointer;
}
.job-main-list-link::after {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--main);
    border-bottom: 2px solid var(--main);
    transition: transform .3s ease;
    transform: rotate(45deg);
}
@media screen and (min-width: 600px) {
    .job-main-list-link:hover {
        background: var(--accent);
        border: 2px solid var(--accent);
        color: var(--white);
    }
    .job-main-list-link:hover::after {
        border-right: 2px solid var(--white);
        border-bottom: 2px solid var(--white);
    }
}
.job-main-list-link.active {
    background: var(--accent);
    border: 2px solid var(--accent);
    color: var(--white);
}
.job-main-list-link.active::after {
    border-right: 2px solid var(--white);
    border-bottom: 2px solid var(--white);
}
@media screen and (max-width: 1130px) {
    .job-main-list {
        gap: 0.8em;
    }
}
.contents-item {
    position: relative;
    background: var(--white);
    border: 2px solid var(--main);
    padding: 128px 110px 68px 110px;
    border-radius: 10px;
    box-shadow:
        5px -5px 0 #91D1E8,
        7px -7px 0 var(--main);
}
.town-job-contents .contents-item {
    box-shadow:
        5px -5px 0 #6EC4BF,
        7px -7px 0 var(--main);
}
@media screen and (max-width: 1100px) {
    .contents-item {
        padding: 128px 70px 68px 70px;
    }
}
.contents-item::before,
.contents-item::after {
    content: "";
    position: absolute;
}
.contents-item::before {
    background: url(../images/lower/jobmap/bg-squere.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    aspect-ratio: 464 / 351;
    width: 464px;
    top: 1%;
    right: 2%;
}
.contents-item::after {
    background: url(../images/lower/jobmap/bg-circle.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    aspect-ratio: 360 / 409;
    width: 360px;
    bottom: 6%;
    left: 1%;
}
.contents-title {
    position: absolute;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    border-radius: 5px;
    border: 2px solid var(--main);
    -webkit-text-stroke: 5px var(--white);
    text-stroke: 5px var(--white);
    paint-order: stroke fill;
    width: 100%;
    max-width: 440px;
    padding: 7px;
    top: 17px;
    left: -34px;
}
.contents-title.hospital {
    background: #91D1E8;
}
.contents-title.town {
    background: #6EC4BF;
}
.contents-title::before {
    display: inline-block;
    vertical-align: middle;
    content: "";
    width: 15px;
    height: 60px;
    background: var(--white);
    border-radius: 2px;
    margin-right: 5em;
}
/* コンテンツ内容 */
.contents-main {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}
.contents-main .text {
    flex: 1;
}
.contents-main .illust {
    margin-left: auto;
    margin-right: 5vw;
}
.contents-main .text h3 {
    font-size: 58px;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 30px;
}
.contents-main .text p {
    font-size: 37px;
    letter-spacing: 1px;
    line-height: 1.73;
}
.contents-main .illust img {
    height: 420px;
    width: auto;
    display: block;
}
@media screen and (max-width: 1200px) {
    /* 315px-420px;1000-1200 */
    .contents-main .illust img {
        height: clamp(19.688rem, -13.125rem + 52.5vw, 26.25rem);
    }
}
.contents-sub .sub-text {
    letter-spacing: 1px;
    line-height: 2;
    background: #E6F4FA;
    padding: 30px 38px;
    margin-bottom: 46px;
}
.town-job-contents .contents-sub .sub-text {
    background: #DFF2F0;
}
.hospital-tab-contents .swiper-button-prev,
.hospital-tab-contents .swiper-button-next,
.town-tab-contents .swiper-button-prev,
.town-tab-contents .swiper-button-next {
    height: 60px;
    width: 60px;
}
.hospital-tab-contents .swiper-button-prev::after,
.hospital-tab-contents .swiper-button-next::after,
.town-tab-contents .swiper-button-prev::after,
.town-tab-contents .swiper-button-next::after {
    content: "";
    background-repeat: no-repeat;
    background-size: contain;
    height: 60px;
    width: 60px;
}
.hospital-tab-contents .swiper-button-prev::after,
.town-tab-contents .swiper-button-prev::after {
    background-image: url(../images/lower/jobmap/prev-btn.svg);
}
.hospital-tab-contents .swiper-button-next::after,
.town-tab-contents .swiper-button-next::after {
    background-image: url(../images/lower/jobmap/next-btn.svg);
}
.hospital-tab-contents,
.town-tab-contents {
    overflow: visible;
    position: relative;
}
.hospital-tab-contents .swiper-button-prev,
.town-tab-contents .swiper-button-prev {
    left: -140px;
}
.hospital-tab-contents .swiper-button-next,
.town-tab-contents .swiper-button-next {
    right: -146px;
}
@media screen and (max-width: 1100px) {
    .hospital-tab-contents .swiper-button-prev,
    .town-tab-contents .swiper-button-prev {
        left: -100px;
    }
    .hospital-tab-contents .swiper-button-next,
    .town-tab-contents .swiper-button-next {
        right: -100px;
    }
}
/* 街の中 */
.job-town .job-heading img {
    max-width: 600px;
}
.town-tab-menu {
    margin: 7vw 0;
}
.town-tab-contents .contents-main .text h3 {
    /* 42px-51px 1000-1920 */
    font-size: clamp(2.625rem, 2.014rem + 0.98vw, 3.188rem);
}
@media screen and (min-width: 1458px) {
    .town-tab-contents .contents-main .text p {
        width: 500px;
    }
}
.town-job {
    position: relative;
}
.town-job-item .link {
    position: absolute;
    display: block;
}
.town-job-item .gym {
    top: 6%;
    left: 46%;
    width: 17%;
    height: 32%;
}
.town-job-item .gym .sb-text {
    top: 15%;
    left: 62%;
}
.town-job-item .rouken {
    top: 20%;
    left: 5%;
    width: 18%;
    height: 34%;
}
.town-job-item .rouken .sb-text {
    top: 16%;
    left: 54%;
}
@media screen and (min-width: 600px) {
    .town-job-item .link.rouken:hover .sb-hover {
        transform: translate(-59%, -50%) scale(1);
    }
}
.town-job-item .kigyo {
    top: 21%;
    left: 26%;
    width: 15%;
    height: 29%;
}
.town-job-item .kigyo .sb-text {
    top: 16%;
    left: 54%;
}
.town-job-item .hoken {
    bottom: 18%;
    left: 12%;
    width: 24%;
    height: 27%;
}
.town-job-item .hoken .sb-text {
    top: 19%;
    left: 32%;
}
.town-job-item .houkan {
    bottom: 14%;
    right: 9%;
    width: 23%;
    height: 26%;
}
.town-job-item .houkan .sb-text {
    top: 21%;
    left: 72%;
}
.town-job-item .hattatsu {
    bottom: 6%;
    right: 38%;
    width: 24%;
    height: 26%;
}
.town-job-item .hattatsu .sb-text {
    top: 20%;
    left: 38%;
    font-size: 18px;
}
.town-job-item .shuro {
    bottom: 33%;
    right: 35%;
    width: 24%;
    height: 27%;
}
.town-job-item .shuro .sb-text {
    top: 19%;
    left: 73%;
    font-size: 20px;
}
.town-job-item .ganka {
    bottom: 43%;
    right: 2%;
    width: 29%;
    height: 29%;
}
.town-job-item .ganka .sb-text {
    top: 17%;
    left: 67%;
    font-size: 20px;
}
@media screen and (min-width: 600px) {
    .town-job-item .link.ganka:hover .sb-hover {
        transform: translate(-63%, -50%) scale(1);
    }
}
@media screen and (max-width: 1450px) {
    .town-job .sb-text {
        /* 17px-20px 1000-1450 */
        font-size: clamp(1.063rem, 0.646rem + 0.67vw, 1.25rem);
    }
    .town-job-item .shuro .sb-text {
        /* 16px-18px 1000-1450 */
        font-size: clamp(1rem, 0.722rem + 0.44vw, 1.125rem);
    }
    .town-job-item .hattatsu .sb-text {
        /* 14px-16px 1000-1450 */
        font-size: clamp(0.875rem, 0.597rem + 0.44vw, 1rem);
    }
    .town-job-item .ganka .sb-text {
        /* 17px-20px 1000-1450 */
        font-size: clamp(1.063rem, 0.646rem + 0.67vw, 1.25rem);
    }
}