@charset "UTF-8";
:root {
    --main: #333;
    --white: #fff;
    --main-green: #A8D8C3;
    --main-yellow: #FFEB99;
    --main-blue: #9FD8E6;
    --main-pink: #F6B7C1;
    --font-sub-color: #102B5C;
    --accent-yellow: #FFE36E;
    --accent-orange: #EB8743;
    --gray01: #a2a2a2;
    --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: 'Zen Maru Gothic', sans-serif;
    font-size: 16px;
    letter-spacing: 1.2px;
    line-height: 1.4;
    overflow: clip;
    font-feature-settings: "palt";
    color: var(--main);
}
/* 選択範囲 */
::selection {
    background-color: var(--main-blue);
    color: #fff;
}
a:link {
    color: var(--main);
}
a:visited {
    color: var(--main);
}
/*--------------------------------
 レイアウト
---------------------------------*/
.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%;
    }
}
/* 右に寄せるコンテンツ */
.right-part {
    text-align: right;
}
/* 中央に寄せるコンテンツ */
.center-part {
    text-align: center;
}
/* 左に寄せるコンテンツ */
.left-part {
    text-align: left;
}
.flex {
    display: flex;
    align-items: center;
    gap: 26px;
}
.sp-only {
    display: none;
}
/*--------------------------------
 ボタン
---------------------------------*/
/* ノーマルボタン */
.arrow_btn {
    position: relative;
    display: inline-block;
    min-width: min(320px, 100%);
    padding: 1.3em 3em 1.3em 2em;
    border-radius: 9999px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--white) !important;
    text-align: center;
    border: 2px solid var(--accent-orange);
    background: var(--accent-orange);
    transition: background-color .3s ease, color .3s ease;
}
.arrow_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 35px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid currentColor;
    transition: transform .3s ease;
}
@media screen and (min-width: 600px) {
    .arrow_btn:hover {
        background-color: var(--white);
        border-color: var(--accent-orange);
        color: var(--accent-orange) !important;
    }
    .arrow_btn:hover::after {
        transform: translateY(-50%) translateX(5px);
    }
}
/* イラスト付きボタン */
.illust_btn_boy,
.illust_btn_girl {
    position: relative;
    display: inline-block;
    min-width: min(400px, 100%);
    border-radius: 9999px;
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 1px;
    color: var(--main) !important;
    text-align: center;
    border: 2px solid var(--main-pink);
    background: var(--main-pink);
    -webkit-text-stroke: 3px var(--white);
    text-stroke: 3px var(--white);
    paint-order: stroke fill;
    transition: background-color .3s ease, color .3s ease;
    margin-top: 32px;
}
.illust_btn_boy {
    padding: 1.1em 2em 1.1em 2em;
}
.illust_btn_girl {
    padding: 1.1em 2em 1.1em 4em;
}
.illust_btn_girl::before,
.illust_btn_boy::after {
    position: absolute;
    content: "";
    transition: transform .4s cubic-bezier(.4, 1.2, .6, 1);
    transform-origin: bottom;
}
.illust_btn_boy::after {
    width: 69px;
    height: 89px;
    bottom: -2px;
    right: 15px;
    background: url("../images/merit/btn-boy.png")no-repeat bottom;
    background-size: auto 100%;
}
.illust_btn_girl::before {
    width: 69px;
    height: 89px;
    bottom: -2px;
    left: 28px;
    background: url("../images/merit/btn-girl.png")no-repeat bottom;
    background-size: auto 100%;
}
@media screen and (min-width: 600px) {
    .illust_btn_boy:hover,
    .illust_btn_girl:hover {
        background: #ee909f;
    }
    .illust_btn_boy:hover::after,
    .illust_btn_girl:hover::before {
        transform: scale(1.1);
        transform-origin: bottom;
    }
}
/*--------------------------------
 見出し
---------------------------------*/
.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;
    }
}
.js-fade-in {
    opacity: 0;
    transform: translateY(40px) scale(.98);
    transition: 0.8s ease;
}
.js-fade-in.show{
    opacity: 1;
    transform: translateY(0) scale(1);
}
/*--------------------------------
 header
---------------------------------*/
header {
    position: relative;
    z-index: 20;
}
.header_inner {
    padding: 1em 2em;
}
.merit_logo a img {
    max-width: 220px;
    height: auto;
}
/*
ハンバーガ―メニュー
*/
#navi {
    position: fixed;
    top: 0;
    right: 0;
    /* width: 410px; */
    height: auto;
    padding: 45px 55px;
    background-color: var(--white);
    opacity: 0;
    transition: all 0.5s ease;
    z-index: 18;
    pointer-events: none;
    border-radius: 0 0 0 40px;
    border-left: 2px solid var(--font-sub-color);
    border-bottom: 2px solid var(--font-sub-color);
}
.open #navi {
    right: 0;
    opacity: 1;
    pointer-events: auto;
}
.menu_btn {
    position: fixed;
    background: var(--white);
    border: 2px solid var(--gray01);
    border-radius: 6px;
    cursor: pointer;
    width: 76px;
    height: 76px;
    top: 10px;
    right: 20px;
    z-index: 19;
    transition: .3s ease;
}
.menu_btn::after {
    content: "MENU";
    font-size: 16px;
    font-weight: 700;
    position: absolute;
    color: var(--main);
    transform: translate(14px, 50px);
}
.menu_btn.active::after {
    content: "CLOSE";
    color: var(--main);
    transform: translate(9px, 50px);
}
.menu_btn span {
    display: block;
    position: absolute;
    width: 47%;
    height: 2px;
    background: var(--main);
    transition: all .4s ease;
    border-radius: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.menu_btn span:nth-of-type(1) {
    top: 16px;
}
.menu_btn span:nth-of-type(2) {
    top: 28px;
}
.menu_btn span:nth-of-type(3) {
    top: 40px;
}
.menu_btn.active span:nth-of-type(1) {
    transform: translateX(-50%) translateY(12px) 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(-12px) rotate(-45deg);
    /* ×マークの2本目 */
}
#navi .nav-menu {
    margin-top: 20px;
}
#navi .nav-menu li {
    position: relative;
}
#navi .nav-menu li::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(to right,
            var(--main),
            var(--main) 8px,
            /* 点の長さ */
            transparent 8px,
            transparent 15px
            /* 点の間隔 */
        );
}
#navi .nav-menu li a {
    font-size: 18px;
    font-weight: 700;
    color: var(--main);
    display: inline-block;
    transition: transform .3s ease;
    padding: 18px 16px;
    transition: all 0.3s;
}
@media screen and (min-width: 600px) {
    #navi .nav-menu li a:hover {
        color: var(--main-pink);
    }
}
#navi .nav-list>p {
    text-transform: uppercase;
    color: var(--font-sub-color);
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 2px;
}
#navi .nav-list {
    padding-bottom: 35px;
}
/* 共用 */
.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: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
    margin-top: -94px;
    background: #FFFCF4 url(../images/mainvisual-bg.webp) center / cover no-repeat;
    overflow: hidden;
    /* 本番公開時下削除する */
    margin-top: -144px;
}
.main-visual-img,
.main-visual h1 {
    will-change: transform, opacity;
}
.main-visual-img {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(20px);
}
.main-visual-img img {
    width: 96vw;
    height: auto;
}
/* 1440px以上 */
@media screen and (min-width: 1440px) {
    .main-visual-img img {
        width: 90vw;
        max-width: 2880px;
        height: auto;
    }
}
.scroll_down {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: cover;
}
.scroll_down:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(180deg, rgba(#000, 0) 0, rgba(#000, .8) 80%, rgba(#000, .8) 100%);
}
.scroll_down a {
    display: inline-block;
    position: absolute;
    bottom: 0;
    left: 3%;
    z-index: 2;
    width: 13px;
    padding: 10px 14px 110px;
    color: #000;
    font-size: 16px;
    line-height: 1;
    letter-spacing: .2em;
    text-transform: uppercase;
    writing-mode: vertical-lr;
    transition: .2s;
    overflow: hidden;
}
.scroll_down a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 63%;
    width: 2px;
    height: 100px;
    background: #ddd;
}
.scroll_down a:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 63%;
    width: 2px;
    height: 100px;
    background: var(--main-pink);
}
.scroll_down a:hover {
    opacity: .5;
}
#type01 a:after {
    animation: sdl01 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl01 {
    0% {
        transform: scale(1, 0);
        transform-origin: 0 0;
    }
    50% {
        transform: scale(1, 1);
        transform-origin: 0 0;
    }
    50.1% {
        transform: scale(1, 1);
        transform-origin: 0 100%;
    }
    100% {
        transform: scale(1, 0);
        transform-origin: 0 100%;
    }
}
.main-visual h1 {
    position: absolute;
    z-index: 1;
    top: 19%;
    left: 10%;
    opacity: 0;
    transform: translateY(30px);
}
.main-visual-img.show {
    opacity: 1;
    transform: translateY(0);
    transition: 1s ease;
}
.main-visual h1.show {
    opacity: 1;
    transform: translateY(0);
    transition: 1s ease;
}
.main-visual h1 span {
    background-color: var(--white);
    display: block;
    width: fit-content;
    padding: 0.1em 0.2em;
}
.main-visual h1 .sub-title {
    /* font-size:  32px-38px 1000-1440 */
    /* font-size: 38px; */
    font-size: clamp(2rem, 1.148rem + 1.36vw, 2.375rem);
    font-weight: 700;
    color: var(--font-sub-color);
    margin-bottom: 18px;
    opacity: 0;
    transform: translateY(20px);
}
.main-visual h1 .main-title {
    /* font-size: 87px; */
    /* font-size:  74px-87px 1000-1440 */
    font-size: clamp(4.625rem, 2.778rem + 2.95vw, 5.438rem);
    color: var(--accent-yellow);
    -webkit-text-stroke: 2px var(--font-sub-color);
    text-stroke: 2px var(--font-sub-color);
    paint-order: stroke fill;
    opacity: 0;
    transform: translateY(20px);
}
.main-visual h1.show .sub-title {
    opacity: 1;
    transform: translateY(0);
    transition: .8s;
}
.main-visual h1.show .main-title {
    opacity: 1;
    transform: translateY(0);
    transition: .8s;
    transition-delay: .4s;
}
/*--------------------------------
 共通
---------------------------------*/
.sec-vision .vision-box h2,
.sec-vision .vision-box h3,
.sec-contents h2,
.sec-merit h2,
.sec-lookdata h2,
.sec-university h2,
.big-box h3,
.sec-student h2,
.sec-around h2 {
    text-align: center;
}
/*--------------------------------
 大学のビジョン
---------------------------------*/
.sec-vision {
    position: relative;
    background: #FFFCF4;
    padding-top: 250px;
    padding-bottom: 160px;
}
.sec-vision::before,
.sec-vision::after {
    content: "";
    position: absolute;
    background: url(../images/vision/bg-wave.webp);
    background-repeat: no-repeat;
    background-size: cover;
}
.sec-vision::before {
    width: 548px;
    height: 314px;
    top: 80px;
    left: 0;
}
.sec-vision::after {
    transform: scaleX(-1);
    width: 416px;
    height: 237px;
    bottom: 150px;
    right: -25px;
}
.sec-vision .vision-box {
    position: relative;
    z-index: 1;
    max-width: 980px;
    background: var(--white);
    margin: 0 auto;
    padding: 90px 62px;
    border-radius: 30px;
    border: 2px solid var(--gray01);
}
.vision-box.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}
.sec-vision .vision-box::before,
.sec-vision .vision-box::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: #ebebeb;
    border-radius: 50%;
    z-index: 2;
}
/* 左上 */
.sec-vision .vision-box::before {
    top: 38px;
    left: 38px;
}
/* 右上 */
.sec-vision .vision-box::after {
    top: 38px;
    right: 38px;
}
/* 下2つ用の追加疑似要素 */
.sec-vision .vision-box {
    --dot-size: 30px;
}
.sec-vision .vision-box::marker {
    display: none;
}
.sec-vision .vision-box>*:last-child::before,
.sec-vision .vision-box>*:last-child::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    background: #ebebeb;
    border-radius: 50%;
}
/* 左下 */
.sec-vision .vision-box>*:last-child::before {
    bottom: 38px;
    left: 38px;
}
/* 右下 */
.sec-vision .vision-box>*:last-child::after {
    bottom: 38px;
    right: 38px;
}
.sec-vision .vision-box h2 {
    margin-bottom: 35px;
}
.sec-vision .vision-box h3 {
    position: relative;
    margin-bottom: 35px;
}
.sec-vision .vision-box h3::before,
.sec-vision .vision-box h3::after {
    content: "";
    position: absolute;
    background-repeat: no-repeat;
}
.sec-vision .vision-box h3::before {
    background: url(../images/vision/illust-note.svg);
    width: 118px;
    height: 90px;
    left: 10px;
    bottom: 0;
}
.sec-vision .vision-box h3::after {
    background: url(../images/vision/illust-school.svg);
    width: 89px;
    height: 57px;
    right: 40px;
    bottom: 16px
}
.note {
    background-image: linear-gradient(180deg, #d7d7d7 1px, transparent 1px);
    background-size: 100% 2.8em;
    line-height: 2.8em;
    padding-bottom: 1px;
    margin-bottom: 30px;
}
/*--------------------------------
 コンテンツ
---------------------------------*/
.sec-contents {
    background-image: linear-gradient(#A8D8C3 1px, transparent 1px), linear-gradient(90deg, #A8D8C3 1px, transparent 1px);
    background-size: 37px 37px;
    background-color: #DCEFE6;
    padding: 80px 0;
}
.sec-contents h2 {
    margin-bottom: 55px;
}
.sec-contents ul {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
}
.sec-contents li{
opacity:0;
transform:translateY(30px) scale(.95);
}
.sec-contents li.show{
opacity:1;
transform:translateY(0) scale(1);
transition:.7s cubic-bezier(.4,0,.2,1);
}
.sec-contents ul img {
    transition: transform .4s cubic-bezier(.4, 0, .2, 1);
}
@media (min-width: 600px) {
    .sec-contents ul a:hover img {
        transform: scale(1.1);
    }
}
/*--------------------------------
 3大メリット
---------------------------------*/
.sec-merit {
    background: #E5F4FA;
    padding: 50px 0 128px 0;
}
.sec-merit h2 {
    margin-bottom: 80px;
}
.sec-merit article {
    background: var(--white);
    border-radius: 48px;
    padding: 4.5vw 5.8vw;
    margin-bottom: 100px;
}
.sec-merit article:last-child {
    margin-bottom: 0;
}
/* メリット見出し */
.merit-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 70px;
}
.merit-badge-img {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 60%;
    transform: translateY(-50%);
    width: 140px;
}
.merit-title {
    position: relative;
    font-size: 30px;
    font-weight: 600;
    padding: 20px 40px 20px 140px;
    width: 100%;
    text-align: center;
    letter-spacing: 3px;
}
.merit-title::before,
.merit-title::after {
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: #6FB3C8;
}
.merit-title::before {
    top: 0;
}
.merit-title::after {
    bottom: 0;
}
.highlight {
    position: relative;
    z-index: 1;
    color: var(--font-sub-color);
    font-weight: 700;
}
.highlight::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 12px;
    background: #FFE62A;
    z-index: -1;
    transform: scaleX(0);
transform-origin: left;
transition: transform .8s ease;
}
.highlight.show::after{
transform: scaleX(1);
transition: transform .8s .3s ease;
}
.merit-box {
    display: flex;
    align-items: center;
    gap: 25px;
}
.merit-box .text-item {
    flex: 1;
}
.merit-box .img-item {
    flex: 1;
}
.merit-box img {
    width: 100%;
    height: auto;
}
.merit-box .text-item p,
.merit2 .desc {
    line-height: 1.7;
}
.merit-box .text-item span {
    color: var(--font-sub-color);
    font-weight: 700;
    font-size: 20px;
    margin: 0 0.2em;
}
/* メリット１ */
.merit1 .merit-box {
    margin-bottom: 90px;
}
.merit1 .merit-box:last-child {
    margin-bottom: 0;
}
.merit1-point {
    position: relative;
    border: 1px solid var(--gray01);
    border-radius: 10px;
    box-shadow: 10px 13px 0px 0px rgba(225, 225, 225, 1);
    padding: 84px 70px;
    background-image: linear-gradient(#e0e0e0 1px, transparent 1px), linear-gradient(90deg, #e0e0e0 1px, transparent 1px);
    background-size: 36px 36px;
    background-color: #ffffff;
    margin-bottom: 120px;
}
.merit1-point::before,
.merit1-point::after {
    content: "";
    position: absolute;
}
.merit1-point::before {
    background: url("../images/merit/merit1/clip.webp")no-repeat;
    background-size: auto 100%;
    width: 90px;
    height: 69px;
    top: -36px;
    left: 50%;
    transform: translateX(-50%);
}
.merit1-point::after,
.merit2::before {
    background: url("../images/merit/point.webp")no-repeat;
    background-size: auto 100%;
    width: 124px;
    height: 124px;
    top: 50px;
    right: 7%;
}
.merit1-point h4 {
    font-size: 38px;
    font-weight: 700;
    color: var(--font-sub-color);
    display: inline-block;
    transform: skewX(-16deg);
    position: relative;
    z-index: 1;
    letter-spacing: 2px;
    display: block;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 45px;
}
.merit1-point h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 3px;
    width: 100%;
    height: 10px;
    background: #ffe62a;
    z-index: -1;
}
.merit1-point p {
    line-height: 1.75;
    margin-bottom: 32px;
}
.merit1-point .flex>img {
    max-width: 100%;
    height: auto;
    min-width: 0;
}
.merit1-point figure img {
    margin-bottom: 10px;
}
.merit1-point figure a {
    text-decoration: underline;
    transition: .3s;
}
.merit1-point figure a:link {
    color: #3F90A9;
}
.merit1-point figure a:visited {
    color: #3F90A9;
}
.merit1-point figure a:hover {
    color: var(--font-sub-color);
}
.merit1-point figure figcaption {
    font-size: 12px;
    line-height: 1.7;
}
.merit1 .merit-box h4 {
    margin-bottom: 42px;
}
/* メリット2 */
.merit2 {
    position: relative;
}
.merit2::before {
    position: absolute;
    content: "";
    top: 176px;
    right: 7%;
}
.merit2 .desc ul {
    margin-bottom: 0.5em;
}
.merit2 .desc ul li {
    display: flex;
    align-items: flex-start;
    gap: 0.8em;
}
.merit2 .desc ul li::before {
    content: "";
    flex: 0 0 10px;
    width: 10px;
    height: 10px;
    margin-top: 0.6em;
    margin-left: 0.3em;
    border-radius: 50%;
    background: #F06D94;
}
.merit2 .desc {
    padding-bottom: 48px;
    position: relative;
}
.merit2 .desc::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-image: repeating-linear-gradient(to right,
            #FDECEF,
            #FDECEF 11px,
            /* 点の長さ */
            transparent 11px,
            transparent 17px
            /* 点の間隔 */
        );
}
.merit2 .desc .caption {
    font-size: 14px;
}
.merit2 .flex {
    margin-top: 48px;
    margin-bottom: 28px;
    align-items: flex-end;
}
.merit2 .illust {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.merit2 .link-list {
    display: flex;
    gap: 30px;
}
.merit2 .link-list li {
    flex: 1;
}
/* メリット3 */
.merit3 .title {
    text-align: center;
    margin-bottom: 30px;
}
.merit3 .border {
    position: relative;
}
.merit3 .border::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-image: repeating-linear-gradient(to right,
            #FDECEF,
            #FDECEF 11px,
            /* 点の長さ */
            transparent 11px,
            transparent 17px
            /* 点の間隔 */
        );
}
.merit3 .merit-box {
    padding-bottom: 60px;
}
.merit3 .merit-box:last-child {
    padding-bottom: 0;
}
.merit3 .title-second {
    padding-top: 60px;
}
.merit3 .merit-box.reverse-item {
    flex-direction: row-reverse;
}
.merit3 .merit-box.reverse-item p:first-child {
    margin-bottom: 1.1em;
}
/*--------------------------------
 データで見る平成医療短期大学
---------------------------------*/
.sec-lookdata h2 {
    margin-bottom: 80px;
}
.sec-lookdata {
    background-image: radial-gradient(circle at center, #A8D8C3 2px, transparent 2px);
    background-size: 50px 50px;
    background-color: #DCEFE6;
    position: relative;
    padding: 120px 0;
    z-index: 0;
}
.sec-lookdata::before,
.sec-lookdata::after {
    content: "";
    position: absolute;
    z-index: -1;
}
.sec-lookdata::before {
    background: url(../images/look-data/bg-glass.webp) no-repeat;
    background-size: auto 100%;
    width: 447px;
    height: 447px;
    top: 40px;
    right: -50px;
}
.sec-lookdata::after {
    background: url(../images/look-data/bg-graph.webp)no-repeat;
    background-size: auto 100%;
    width: 417px;
    height: 417px;
    bottom: -90px;
    left: -35px;
}
.sec-lookdata ul {
    display: flex;
    gap: 50px;
    align-items: center;
    justify-content: center;
}
.sec-lookdata ul li{
opacity:0;
transform:translateY(30px);
transition:.6s cubic-bezier(.4,0,.2,1);
}
.sec-lookdata ul li.show{
opacity:1;
transform:translateY(0);
}
.sec-lookdata ul li a {
    width: 410px;
    display: inline-block;
    background: var(--main-yellow);
    border: 5px solid #6fb3cb;
    font-size: 20px;
    font-weight: 700;
    border-radius: 18px;
    padding: 26px;
    letter-spacing: 9%;
    position: relative;
    transition: all .3s;
    text-align: center;
}
@media screen and (min-width : 601px) {
    .sec-lookdata ul li a:hover {
        transform: translate(0px, 5px);
    }
}
.sec-lookdata ul li a span {
    font-size: 30px;
    color: var(--font-sub-color);
}
.sec-lookdata ul li a::after {
    position: absolute;
    content: "";
    background: url(../images/look-data/icon-link.webp)no-repeat;
    background-size: auto 100%;
    width: 41px;
    height: 41px;
    bottom: -26px;
    left: 50%;
    transform: translateX(-50%);
}
/*--------------------------------
 大学のデータ
---------------------------------*/
.sec-university {
    position: relative;
    background: url(../images/university/bg-main.png);
    padding: 170px 0;
}
.sec-university::before {
    position: absolute;
    content: "";
    inset: 0 0 auto;
    height: 46px;
    background-position: left;
    background-repeat: repeat-x;
    background-image: url(../images/university/bg-memo.png);
}
.sec-university h2 {
    position: relative;
    padding-bottom: 150px;
}
.sec-university h2::before,
.sec-university h2::after {
    position: absolute;
    content: "";
}
.sec-university h2::before {
    background: url(../images/university/sinbol.webp)no-repeat;
    background-size: auto 80%;
    top: -60px;
    left: 0;
    width: 224px;
    height: 214px;
}
.sec-university h2::after {
    background: url(../images/university/school.webp)no-repeat;
    background-size: auto 80%;
    top: 0px;
    right: 0;
    width: 252px;
    height: 186px;
}
.sec-university .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 30px;
    align-items: start;
}
@media screen and (max-width: 1200px) {
    .sec-university .grid {
        gap: 60px 15px;
    }
}
/* 就職率 */
.sec-university .grid .employment {
    grid-area: 1 / 1 / 2 / 2;
}
.sec-university .grid .employment .number {
    font-size: 186px;
    position: relative;
    text-align: center;
}
@media screen and (max-width: 1200px) {
    .sec-university .grid .employment .number {
        font-size: 160px;
    }
}
.sec-university .grid .employment .number::before,
.sec-university .grid .employment .number::after {
    position: absolute;
    content: "";
}
.sec-university .grid .employment .number::before {
    background: url(../images/university/employment-men.webp)no-repeat;
    background-size: auto 100%;
    width: 99px;
    height: 125px;
    bottom: 0;
    left: 0;
}
.sec-university .grid .employment .number::after {
    background: url(../images/university/employment-women.webp)no-repeat;
    background-size: auto 100%;
    width: 91px;
    height: 135px;
    top: 0;
    right: 0;
}
/* 国家資格合格率 */
.sec-university .grid .qualification {
    grid-area: 1 / 2 / 3 / 3;
}
.qualification .data-list .number {
    width: 130px;
}
@media screen and (max-width: 1440px) {
.qualification .data-list .number {
    width: 11vw;
}
}
/* 在学生男女比 */
.sec-university .grid .student {
    grid-area: 2 / 1 / 4 / 2;
}
.sec-university .grid .student .img {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 20px;
    margin-bottom: 35px;
}
.progress {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 26px;
    background: #FDECEF;
    border-radius: 100vmax;
    overflow: hidden;
}
.progress+* {
    margin-top: 30px;
}
.block-progress__bar {
    position: absolute;
    width: 0;
    height: 100%;
    top: 0;
    left: 0;
    background: #F06D94;
    transition:1.6s cubic-bezier(.4,0,.2,1);
}
.block-progress__percent {
    font-size: 16px;
    z-index: 1;
    font-weight: 800;
}
.block-progress__percent em {
    font-size: 28px;
    font-style: normal;
    margin-right: 0.1em;
}
.block-progress__ttl {
    font-size: 24px;
    letter-spacing: 3px;
    font-weight: 600;
    color: var(--white);
    z-index: 1;
}
/* ns */
.progress.theme-ns {
    background: #FDECEF;
}
.theme-ns .block-progress__bar {
    background: #F06D94;
}
/* pt */
.progress.theme-pt {
    background: #9FD8E6;
}
.theme-pt .block-progress__bar {
    background: #6FB3C8;
}
/* ot */
.progress.theme-ot {
    background: #A8D8C3;
}
.theme-ot .block-progress__bar {
    background: #49A17A;
}
/* ort */
.progress.theme-ort {
    background: #FFE1C8;
}
.theme-ort .block-progress__bar {
    background: #EB8743;
}
/* 教員数 */
.sec-university .grid .teacher {
    grid-area: 3 / 2 / 4 / 3;
}
.teacher .desc {
    text-align: right;
    margin-right: 0.5em;
    margin-bottom: 20px;
}
.teacher-list li {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1em;
}
.teacher-list li+* {
    margin-top: 10px;
}
.teacher-list .teacher-title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 9%;
    width: 45%;
}
@media screen and (max-width: 1200px) {
    .teacher-list .teacher-title {
        font-size: 20px;
    }
}
.teacher-list .number {
    font-size: 35px;
    width: 15%;
}
.teacher-list .people {
    display: flex;
    align-items: center;
    gap: 0.4em;
    width: 40%;
}
/* 卒業後の進路割合 */
.big-box.course h4 {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    background: #F06D94;
    border-radius: 100vmax;
    color: var(--white);
    max-width: 211px;
    text-align: center;
    padding: 0.1em 0.5em;
    margin-bottom: 18px;
}
.big-box.course .ranking,
.big-box.course .rank {
    display: flex;
    align-items: center;
}
.big-box.course .ranking {
    gap: 1em;
    margin-left: 1.5em;
}
.big-box.course .rank {
    gap: 1em;
    width: calc(94% / 3);
}
.big-box.course .rank .title {
    font-size: 22px;
    letter-spacing: 3px;
    font-weight: bold;
}
.big-box.course .rank .number {
    font-size: 35px;
}
.big-box.course .rank .number>span {
    margin-left: 0.2em;
}
.big-box.course .rank2 .number,
.big-box.course .rank3 .number {
    color: var(--main);
}
.rank-occupation+* {
    margin-top: 40px;
}
.course .center-part {
    margin-top: 30px;
}
/* ns */
.big-box.course .rank-ns h4 {
    background: #F06D94;
}
.big-box.course .rank-ns .rank1 .title,
.big-box.course .rank-ns .rank1 .number {
    color: #F06D94;
}
/* pt */
.big-box.course .rank-pt h4 {
    background: #6FB3C8;
}
.big-box.course .rank-pt .rank1 .title,
.big-box.course .rank-pt .rank1 .number {
    color: #6FB3C8;
}
/* ot */
.big-box.course .rank-ot h4 {
    background: #49A17A;
}
.big-box.course .rank-ot .rank1 .title,
.big-box.course .rank-ot .rank1 .number {
    color: #49A17A;
}
/* ort */
.big-box.course .rank-ort h4 {
    background: #EB8743;
}
.big-box.course .rank-ort .rank1 .title,
.big-box.course .rank-ort .rank1 .number {
    color: #EB8743;
}
@media screen and (max-width: 1150px) {
    .big-box.course .ranking {
        margin-left: 1em;
    }
    .big-box.course .rank .number {
        font-size: 32px;
    }
}
@media screen and (max-width: 1100px) {
    .big-box.course .ranking {
        margin-left: 0;
    }
    .big-box.course .rank {
        width: calc(100% / 3);
    }
    .big-box.course .rank .title {
        font-size: 20px;
    }
    .big-box.course .rank .number {
        font-size: 28px;
    }
}
/*--------------------------------
 学生のデータ
---------------------------------*/
.sec-student {
    position: relative;
    background: url(../images/student/bg-main.png);
    padding: 170px 0;
}
.sec-student::before {
    position: absolute;
    content: "";
    inset: 0 0 auto;
    height: 46px;
    background-position: left;
    background-repeat: repeat-x;
    background-image: url(../images/student/bg-memo.png);
}
.sec-student h2 {
    position: relative;
    padding-bottom: 150px;
}
.sec-student h2::before,
.sec-student h2::after {
    position: absolute;
    content: "";
}
.sec-student h2::before {
    background: url(../images/student/women.webp)no-repeat;
    background-size: auto 80%;
    top: 0px;
    left: 0;
    width: 271px;
    height: 186px;
}
.sec-student h2::after {
    background: url(../images/student/men.webp)no-repeat;
    background-size: auto 80%;
    top: -60px;
    right: 0;
    width: 252px;
    height: 186px;
}
.sec-student .grid-first {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 30px;
    align-items: start;
}
@media screen and (max-width: 1200px) {
    .sec-student .grid-first {
        gap: 60px 15px;
    }
}
.sec-student .birthplace {
    grid-area: 1 / 1 / 2 / 3;
}
.sec-student .birthplace img {
    display: block;
    margin: 0 auto;
}
.sec-student .lunch {
    grid-area: 2 / 1 / 3 / 2;
}
.lunch .data-list .number {
    width: 90px;
}
@media screen and (max-width: 1440px) {
.lunch .data-list .number {
width:7vw;
}
}
/* アルバイト */
.sec-student .part-time {
    grid-area: 2 / 2 / 3 / 3;
}
.part-time img{
transform: scale(0.6);
opacity:0;
transition: transform .6s cubic-bezier(.34,1.56,.64,1), opacity .25s;
}
.part-time img.show{
opacity:1;
transform: scale(1.1);
}
.part-time img.show.done{
transform: scale(1);
}
.sec-student .big-box {
    background: #FDE376;
    margin: 90px 0;
}
.sec-student .big-box::before {
    background: url(../images/student/house-tape.webp)no-repeat;
    background-size: auto 100%;
}
.grid-house {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: start;
    margin-bottom: 50px;
}
.house-card {
    position: relative;
    background: var(--white);
    border-radius: 10px;
    padding: 50px 14px 30px;
}
.house-card>h4,
.img-area>p {
    position: absolute;
    font-size: 24px;
    letter-spacing: 3px;
    font-weight: 700;
    color: var(--white);
    background: #F06D94;
    border-radius: 999px;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 210px;
    text-align: center;
    padding: 0.1em 0;
}
.house-card .flex {
    gap: 8px;
    justify-content: space-evenly;
}
.house-card .flex img {
    width: 50%;
}
.house-card .number {
    font-size: 110px;
    letter-spacing: 3px;
    line-height: 1;
    width: 50%;
    text-align: center;
}
@media screen and (max-width: 920px) {
    .house-card .flex {
        flex-direction: column;
    }
    .house-card .flex img,
    .house-card .number {
        width: 100%;
    }
}
.house .data-card,
.house .data-card::before {
    position: static;
}
.img-area {
    position: relative;
}
.img-area img {
    border-radius: 10px;
}
.rent .final-data {
    margin-bottom: 50px;
}
.rent-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.rent-item .number {
    font-size: 60px;
    letter-spacing: 1.5px;
}
.rent .flex {
    gap: 30px;
}
.house .data-card h3 {
    margin-bottom: 60px;
}
.house-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #EFF7F2;
    border-top: 4px solid #A8D8C3;
    border-bottom: 4px solid #A8D8C3;
    position: relative;
    padding: 20px 0;
    margin-bottom: 50px;
}
.character img {
    display: block;
    height: 170px;
    width: auto;
    margin-top: -60px;
    margin-bottom: -20px;
    position: relative;
    z-index: 1;
}
.character.left img {
    left: 1em;
}
.character.right img {
    right: 1em;
}
.text-content {
    flex-grow: 1;
    text-align: center;
}
.sub-text {
    font-weight: 700;
    letter-spacing: 0.05em;
}
.main-text {
    font-weight: 700;
    margin: 0;
}
.house-banner .highlight {
    font-size: 1.8rem;
    color: #49A17A;
    background: linear-gradient(transparent 60%, #FDE376 60%);
    position: relative;
    padding: 0 5px;
    display: inline-block;
}
.sec-student .grid-second {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 30px;
    align-items: start;
}
@media screen and (max-width: 1200px) {
    .sec-student .grid-second {
        gap: 60px 15px;
    }
}
.sec-student .grid-second .school-to {
    grid-area: 1 / 1 / 2 / 2;
}
.school-to .data-list .list-title {
    width: 160px;
}
.school-to .data-list .number {
    width: 90px;
}
@media screen and (max-width: 1440px) {
.school-to .data-list .number {
width:7vw;
}
}
@media screen and (max-width: 1020px) {
.school-to .data-list .list-title{
    width: 130px;
}
}
.sec-student .grid-second .school-time {
    grid-area: 1 / 2 / 2 / 3;
}
.school-time img{
transform: scale(0.6);
opacity:0;
transition: transform .6s cubic-bezier(.34,1.56,.64,1), opacity .25s;
}
.school-time img.show{
opacity:1;
transform: scale(1.1);
}
.school-time img.show.done{
transform: scale(1);
}
/*--------------------------------
 大学のデータ・学生のデータ共通
---------------------------------*/
.data-card {
    position: relative;
    background: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
}
.data-card::before {
    position: absolute;
    content: "";
    background: url(../images/look-data/pin.png)no-repeat;
    background-size: auto 100%;
    width: 36px;
    height: 53px;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
}
.data-card h3 {
    position: relative;
    font-size: 30px;
    font-weight: 700;
    letter-spacing: 3px;
    padding-bottom: 0.6em;
    text-align: center;
    margin-bottom: 30px;
}
.data-card h3::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-image: repeating-linear-gradient(to right,
            var(--gray01),
            var(--gray01) 5px,
            /* 点の長さ */
            transparent 5px,
            transparent 7px
            /* 点の間隔 */
        );
}
.card01 {
    min-height: 489px;
}
.card02 {
    min-height: 763px;
}
.final-data {
    font-size: 14px;
    letter-spacing: 9%;
    text-align: right;
    margin-top: 30px;
    ;
}
.number {
    color: var(--accent-orange);
    font-weight: 800;
}
.number .percent {
    font-size: 45%;
}
.data-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.data-list li {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    gap: 1em;
    position: relative;
}
.data-list li::after {
    position: absolute;
    content: "";
    background: url(../images/look-data/line-dot.webp)no-repeat;
    background-size: auto 100%;
    width: 217px;
    height: 7px;
    bottom: -19px;
    left: 56%;
    transform: translateX(-50%);
}
.data-list .list-title {
    font-size: 24px;
    font-weight: 700;
}
.data-list .number {
    font-size: 61px;
}
@media screen and (max-width: 1200px) {
    .data-list .list-title {
        font-size: 20px;
    }
    .data-list .number {
        font-size: 46px;
    }
}
.big-box {
    position: relative;
    margin-top: 145px;
    background: var(--main-pink);
    border-radius: 10px;
    padding: 50px 40px 100px 40px;
}
.big-box::before {
    position: absolute;
    content: "";
    background: url(../images/university/course-tape.webp) no-repeat;
    background-size: auto 100%;
    width: 414px;
    height: 100px;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}
.big-box>h3 {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--white);
    -webkit-text-stroke: 3px var(--main);
    text-stroke: 3px var(--main);
    paint-order: stroke fill;
    text-shadow: 4px 4px 0px rgba(51, 51, 51, 1);
    margin-bottom: 46px;
}
.big-box .big-box-area {
    background: var(--white);
    border-radius: 10px;
    padding: 40px 30px;
}
/*--------------------------------
 大学の周辺環境
---------------------------------*/
.sec-around.note {
    background-image: linear-gradient(180deg, #F4F4F4 1px, transparent 1px);
    background-size: 100% 2em;
    line-height: 2em;
    padding-bottom: 140px;
    margin-bottom: 0px;
}
.sec-around .container_wide {
    padding-left: 46px;
}
.sec-around {
    position: relative;
    padding: 140px 0;
}
.sec-around::after {
    position: absolute;
    content: "";
    background: url(../images/around/crip.webp);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    aspect-ratio: 220 / 324;
    width: 70px;
    top: -28px;
    right: 120px;
}
.sec-around::before {
    position: absolute;
    content: "";
    inset: 0 0 auto;
    width: 46px;
    height: 100%;
    background-image: url(../images/around/bg-memo.png);
    background-size: 46px auto;
    background-position: left;
    background-repeat: repeat-y;
}
.sec-around h2 {
    margin-bottom: 80px;
}
.sec-around h3 {
    font-size: 30px;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--font-sub-color);
    margin-bottom: 26px;
}
.about-area {
    text-align: center;
    margin-bottom: 70px;
}
.about-area p {
    letter-spacing: 1.2px;
    line-height: 2;
}
.instax-area {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    padding: 150px 0;
    background: url(../images/around/bg-gifutown.webp);
    /* height: 824px; */
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.instax-area li img {
    filter: drop-shadow(4px 4px 5px rgba(194, 194, 194, 1));
}
.instax-area li:nth-child(1) {
    margin-top: 0px;
}
.instax-area li:nth-child(2) {
    margin-top: 40px;
}
.instax-area li:nth-child(3) {
    margin-top: 0px;
}
.around-area {
    text-align: center;
}
.fukidashi {
    position: relative;
    width: fit-content;
    padding: 12px 20px;
    color: #ffffff;
    border-radius: 10px;
    background-color: #EB615A;
    isolation: isolate;
    margin: 0 auto;
    margin-bottom: 30px;
    font-size: 110%;
}
.fukidashi::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    z-index: -1;
    width: 20px;
    height: 12px;
    box-sizing: border-box;
    background-color: #EB615A;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    translate: -50% 0;
}
.around-list {
    display: flex;
    align-items: center;
    /* gap: 38px; */
    /* justify-content: space-between; */
    margin: 38px 0;
}
.around-list:first-of-type {
    margin-bottom: 20px;
}
.around-list:last-of-type {
    margin-bottom: 60px;
}
.around-list li {
    /* width: calc(98% / 4); */
    width: 25%;
}
.around-list figure {
    display: flex;
    align-items: center;
    gap: 10px;
}
.around-list figure .title {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.1;
    color: #3F90A9;
}
.around-list figure .text {
    position: relative;
    padding-left: 1.2rem;
    display: flex;
    align-items: center;
}
.around-list figure .text.car {
    padding-left: 1.6rem;
}
.around-list figure .text::before {
    background-image: url(../images/around/around-walk.svg);
    position: absolute;
    content: "";
    display: block;
    width: 13px;
    height: 21px;
    background-size: contain;
    background-repeat: no-repeat;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.around-list figure .text.car::before {
    background-image: url(../images/around/around-car.svg);
    position: absolute;
    content: "";
    display: block;
    width: 19px;
    height: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
.around-list figcaption {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4em;
}
.around-list figure .around-number {
    font-size: 1.4em;
    padding-bottom: 0.2em;
}
.around-list figure .seconds {
    color: #D90000;
}
/*--------------------------------
 CTA
---------------------------------*/
.sec-cta {
    padding: 80px 0;
    background-image: radial-gradient(circle, #a8d8c3 1.6px, transparent 1.6px);
    background-position: 0 0;
    background-size: 36px 36px;
}
.sec-cta p {
    font-size: 38px;
    letter-spacing: 1px;
    line-height: 1.4;
    color: var(--font-sub-color);
    text-align: center;
    margin-bottom: 36px;
    font-weight: 500;
}
/*--------------------------------
 footer
---------------------------------*/
footer {
    padding: 40px 0 18px 0;
    background: var(--main-blue);
}
@media (min-width: 600px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}
.footer-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}
.address,
.address p a,
.copy-area small {
    color: var(--white);
}
.address p {
    margin-bottom: 8px;
}
.address p:last-child {
    margin-bottom: 0;
}
.copy-area {
    padding-top: 26px;
    text-align: center;
}
.copy-area small {
    font-size: 11px;
}
.page-top {
    display: none;
    position: fixed;
    right: 55px;
    bottom: 55px;
    z-index: 4;
}
.page-top__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background-color: transparent;
    box-shadow: 0 0 10px 0 rgba(0, 101, 50, 0.2);
    cursor: pointer;
    transition: all .3s;
}
@media screen and (min-width: 600px) {
    .page-top__link:hover {
        transform: translate(0px, -5px);
    }
}

/*--------------------------------
 既存サイドナビ
---------------------------------*/

#s_Nav {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 18;
}

#s_Nav, #s_Nav li {
	display: flex;
	flex-flow: column;
}

#s_Nav li a {
	display: flex;
	text-align: center;
	align-content: center;
	align-items: center;
	justify-content: center;
	width: 70px;
	padding-right: 10px;
	height: 180px;
	font-weight: bold;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	transition: all ease .3s;
	transform: translateX(10px);
	position: relative;
}

#s_Nav li a:hover {
	transform: translateX(0);
	box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25);
	z-index: 2;
}

#s_Nav li a em {
	line-height: 1.2;
}

#s_Nav>li:first-child a {
	background: #f87282;
	color: #fff;
	position: relative;
	letter-spacing: 0.2em;
}

#s_Nav>li:nth-child(2) a {
	background: #e1f7fd;
	color: #1f8acc;
}

#s_Nav>li:last-child a {
	background: #1f8acc;
	color: #fff;
}

#s_Nav li a::before {
	content: "";
	position: absolute;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 180px 70px 0 0;
	border-color: rgba(255, 255, 255, 0.1) transparent transparent transparent;
	left: 0;
	top: 0;
}