@charset "UTF-8";
/* ==============================================================================================
 Base
================================================================================================= */
/* ==============================================================================================
Unique
================================================================================================= */
:root {
    --COLOR_PRIMARY: #008dbd;
    --COLOR_SECONDARY: #62b5cb;
    --COLOR_SUB: #f5ffff;
    --COLOR_GRAD: linear-gradient(to right, var(--COLOR_PRIMARY), var(--COLOR_SECONDARY));
    --COLOR_GRAD2: linear-gradient(to bottom right, #f5fcff, var(--COLOR_WHITE));
    --COLOR_WHITE: #fff;
    --COLOR_STRONG: #c20000;
    --COLOR_BACKGROUND: #f5fcff;
    --COLOR_BACKGROUND02: #f2f6f7;
    --COLOR_BORDER: #e6e6e6;
    --COLOR_BORDER02: #787878;
    --COLOR_TEXT_DEFAULT: #000;
    --FONT_FAMILY_DEFAULT: "Noto Sans CJK JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Arial, sans-serif;
    --FONT_FAMILY_SERIF: "Yu Mincho", "serif";
    --TRANSITION_DEFAULT: .2s ease-in;
    --LAYER_LAYERED02: 20;
    --LAYER_LAYERED01: 10;
    --LAYER_DEFAULT: 0;
    --LAYER_BEHIND: -1;
    --FILTER_COLOR_SECONDARY: brightness(0) saturate(100%) invert(72%) sepia(19%) saturate(969%) hue-rotate(146deg) brightness(90%) contrast(80%);
}

.examinee-box {
    position: relative;
    display: flex;
    flex-direction: column;

    --image-shift: 50px;
    -webkit-padding-after: var(--image-shift);
    padding-block-end: var(--image-shift);
}
@media print, screen and (min-width: 940px) {
    .examinee-box {
        flex-direction: unset;
    }
}

.examinee-box__media {
    display: -ms-grid;
    display: grid;
    width: 100%;
    height: auto;
    max-height: 310px;
    background-color: var(--COLOR_WHITE);

    place-items: center;
    aspect-ratio: 350/310;
}
@media print, screen and (min-width: 940px) {
    .examinee-box__media {
        position: absolute;
        top: var(--image-shift);
        bottom: 0;
        left: 0;
        z-index: var(--LAYER_LAYERED02);
        width: 543px;
        max-height: unset;

        aspect-ratio: 543/310;
    }
}

.examinee-box__content {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: end;
    overflow: hidden;
    padding: 10px 15px 25px;
    background-image: url("/examinee/images/renew/bg-index-01.png");
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;

    gap: 16px;
}
@media print, screen and (min-width: 940px) {
    .examinee-box__content {
        padding: 31px 23px 31px 140px;

        -webkit-margin-start: 456px;
        margin-inline-start: 456px;
        gap: 25px;
    }
}
.examinee-box__content::after {
    position: absolute;
    z-index: var(--LAYER_DEFAULT);
    width: 100%;
    height: 100%;
    background-color: #f8f8f8;
    content: "";
    opacity: .8;

    inset: 0;
}

.examinee-box__head {
    position: relative;
    z-index: var(--LAYER_LAYERED01);
    width: 100%;
}
@media print, screen and (min-width: 940px) {
    .examinee-box__head {
        width: unset;
    }
}

.examinee-box__title {
    position: relative;
    padding: 11px 13px 11px 20px;
    font-size: 2.4rem;
    color: var(--COLOR_PRIMARY);
    background-color: var(--COLOR_WHITE);
}
@media print, screen and (min-width: 940px) {
    .examinee-box__title {
        padding: 9px 25px;
        font-size: 3rem;
    }
}
.examinee-box__title::before {
    position: absolute;
    top: 3px;
    left: 3px;
    display: inline-block;
    width: 25px;
    height: auto;
    background-color: #ecde20;
    content: "";
    -webkit-clip-path: polygon(0 0, 100% 0, 0 100%);
    clip-path: polygon(0 0, 100% 0, 0 100%);

    aspect-ratio: 1/1;
}

.examinee-box__body {
    position: relative;
    z-index: var(--LAYER_LAYERED01);
}
.examinee-box__body > *:first-child {
    -webkit-margin-before: 0;
    margin-block-start: 0;
}
.examinee-box__body .examinee-button {
    -webkit-margin-before: 32px;
    margin-block-start: 32px;
}

:root {
    --COLOR_PRIMARY: #008dbd;
    --COLOR_SECONDARY: #62b5cb;
    --COLOR_SUB: #f5ffff;
    --COLOR_GRAD: linear-gradient(to right, var(--COLOR_PRIMARY), var(--COLOR_SECONDARY));
    --COLOR_GRAD2: linear-gradient(to bottom right, #f5fcff, var(--COLOR_WHITE));
    --COLOR_WHITE: #fff;
    --COLOR_STRONG: #c20000;
    --COLOR_BACKGROUND: #f5fcff;
    --COLOR_BACKGROUND02: #f2f6f7;
    --COLOR_BORDER: #e6e6e6;
    --COLOR_BORDER02: #787878;
    --COLOR_TEXT_DEFAULT: #000;
    --FONT_FAMILY_DEFAULT: "Noto Sans CJK JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Arial, sans-serif;
    --FONT_FAMILY_SERIF: "Yu Mincho", "serif";
    --TRANSITION_DEFAULT: .2s ease-in;
    --LAYER_LAYERED02: 20;
    --LAYER_LAYERED01: 10;
    --LAYER_DEFAULT: 0;
    --LAYER_BEHIND: -1;
    --FILTER_COLOR_SECONDARY: brightness(0) saturate(100%) invert(72%) sepia(19%) saturate(969%) hue-rotate(146deg) brightness(90%) contrast(80%);
}

.examinee-button {
    display: flex;
    justify-content: center;

    container-type: inline-size;
    -webkit-margin-before: 16px;
    margin-block-start: 16px;
    flex-flow: row wrap;
    gap: 10px 20px;
}
.examinee-panel-type3 + .examinee-button {
    -webkit-margin-before: 43px;
    margin-block-start: 43px;
}
@media print, screen and (min-width: 940px) {
    .examinee-button--spRight {
        justify-content: end;
    }
}
.examinee-button--type2 .examinee-button__item {
    min-width: 448px;
    color: var(--COLOR_WHITE);
    background-image: linear-gradient(to right, var(--COLOR_PRIMARY), var(--COLOR_SECONDARY));

    padding-block: 22px;
}
@container (max-width: 448px) {
    .examinee-button--type2 .examinee-button__item {
        min-width: 100%;
    }
}
.examinee-button--type2 .examinee-button__item::after {
    width: 12px;
    height: 12px;
    background-image: url("/common/css/images/svg-sprite.svg");
    background-position: -49px -201px;
    filter: unset;
}
.examinee-button--width-full .examinee-button__item {
    width: 90%;
}
@media print, screen and (min-width: 940px) {
    .examinee-button--width-full .examinee-button__item {
        width: 100%;
    }
}

.examinee-button__item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: -webkit-fit-content;
    width: fit-content;
    min-width: 160px;
    padding: 11px 35px 12px;
    font-weight: bold;
    font-size: 1.3rem;
    color: var(--COLOR_TEXT_DEFAULT);
    line-height: 1.25;
    text-decoration: none;
    background-color: var(--COLOR_WHITE);
    border: 1px solid var(--COLOR_SECONDARY);
    border-radius: 50vh;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .24);
    transition: box-shadow var(--TRANSITION_DEFAULT);
}
.examinee-button__item:hover, .examinee-button__item:active, .examinee-button__item:focus {
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
}
.examinee-button__item::after {
    position: absolute;
    top: 50%;
    right: 17px;
    display: block;
    width: 12px;
    height: 12px;
    background-image: url("/common/css/images/svg-sprite.svg");
    background-position: -93px -201px;
    content: "";
    filter: var(--FILTER_COLOR_SECONDARY);
    transform: translateY(-50%);
}
@container (max-width: 160px) {
    .examinee-button__item {
        min-width: 100%;
    }
}

.swiper-wrapper {
    position: relative;
    z-index: 10;
    display: flex;
    box-sizing: content-box;
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
    transition-property: transform;
}
.swiper-slide {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    transition-property: transform;
}
.swiper-slide > a {
    position: relative;
    overflow: hidden;
    width: 100%;
}
.swiper-slide > a > img {
    width: 100%;
    height: auto;
    transition: transform .2s;
    transform: scale(1);
}
.swiper-slide > a.movie {
    position: relative;
    display: block;
}
.swiper-slide > a.movie::before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: block;
    width: 70px;
    height: 70px;
    margin: auto;
    background-image: url("/common/css/images/ico-movie-01.png");
    background-size: contain;
    background-repeat: no-repeat;
    content: "";
}
.swiper-slide > a:hover > img, .swiper-slide > a:active > img, .swiper-slide > a:focus > img {
    transform: scale(1.04);
}
.swiper-pagination-bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: var(--COLOR_WHITE);
    border: solid 2px var(--COLOR_PRIMARY);
    border-radius: 50%;
    transition: width var(--TRANSITION_DEFAULT), height var(--TRANSITION_DEFAULT);
}
.swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
}
@media print, screen and (min-width: 940px) {
    .swiper-pagination-bullet {
        width: 15px;
        height: 15px;
    }
}
.swiper-pagination-bullet-active {
    width: 10px;
    height: 10px;
    background: var(--COLOR_PRIMARY);
    border: solid 2px #fff;
}
#pharm .swiper-pagination-bullet-active {
    background: #1e64b4;
}
#life-sci .swiper-pagination-bullet-active {
    background: #009696;
}
@media print, screen and (min-width: 940px) {
    .swiper-pagination-bullet-active {
        width: 15px;
        height: 15px;
    }
}
.swiper-container-horizontal .swiper-navigation {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: -webkit-fit-content;
    width: fit-content;
    margin: 32px auto 0;
    font-size: 1.5rem;

    gap: 6px;
}
.swiper-container-horizontal .swiper-navigation > .swiper-pagination-custom, .swiper-container-horizontal .swiper-navigation > .swiper-pagination-fraction {
    width: 100%;
}
.swiper-container-horizontal .swiper-navigation > .swiper-button-prev, .swiper-container-horizontal .swiper-navigation > .swiper-button-next {
    position: relative;
    width: 30px;
    height: 30px;
    background-color: var(--COLOR_WHITE);
    background-image: unset;
    border: solid 2px var(--COLOR_PRIMARY);
    border-radius: 50px;
    cursor: pointer;
}
.swiper-container-horizontal .swiper-navigation > .swiper-button-prev::before, .swiper-container-horizontal .swiper-navigation > .swiper-button-next::before, .swiper-container-horizontal .swiper-navigation > .swiper-button-prev::after, .swiper-container-horizontal .swiper-navigation > .swiper-button-next::after {
    position: absolute;
    display: block;
    content: "";
}
.swiper-container-horizontal .swiper-navigation > .swiper-button-prev::before, .swiper-container-horizontal .swiper-navigation > .swiper-button-next::before {
    width: 10px;
    height: 2px;
    margin: auto;
    background: var(--COLOR_PRIMARY);

    inset: 0;
}
.swiper-container-horizontal .swiper-navigation > .swiper-button-prev::after, .swiper-container-horizontal .swiper-navigation > .swiper-button-next::after {
    top: 0;
    bottom: 0;
    width: 6px;
    height: 6px;
    margin: auto;
    border-top: 2px solid var(--COLOR_PRIMARY);
    border-right: 2px solid var(--COLOR_PRIMARY);
    transform: rotate(45deg);
}
.swiper-container-horizontal .swiper-navigation > .swiper-button-prev::after {
    left: 13px;
}
.swiper-container-horizontal .swiper-navigation > .swiper-button-next::after {
    right: 8px;
}
.swiper-container-horizontal .swiper-navigation > .swiper-button-prev {
    order: 1;
    margin-right: 0;
}
.swiper-container-horizontal .swiper-navigation > .swiper-button-next {
    order: 2;
    margin-left: 0;
}
.swiper-container-horizontal .swiper-navigation > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 4px;
}
@media print, screen and (min-width: 940px) {
    .swiper-container-horizontal .swiper-navigation {
        gap: 10px;
    }
    .swiper-container-horizontal .swiper-navigation > .swiper-pagination-bullets .swiper-pagination-bullet {
        margin: 0 4px;
    }
    .swiper-container-horizontal .swiper-navigation > .swiper-button-prev, .swiper-container-horizontal .swiper-navigation > .swiper-button-next {
        position: relative;
        width: 40px;
        height: 40px;
    }
    .swiper-container-horizontal .swiper-navigation > .swiper-button-prev::before, .swiper-container-horizontal .swiper-navigation > .swiper-button-next::before {
        width: 12px;
    }
    .swiper-container-horizontal .swiper-navigation > .swiper-button-prev::after, .swiper-container-horizontal .swiper-navigation > .swiper-button-next::after {
        width: 8px;
        height: 8px;
    }
    .swiper-container-horizontal .swiper-navigation > .swiper-button-prev::after {
        left: 17px;
    }
    .swiper-container-horizontal .swiper-navigation > .swiper-button-next::after {
        right: 11px;
    }
}
.swiper-pagination {
    display: flex;
    order: 3;
    align-items: center;
    text-align: center;
}
.swiper-notification {
    position: absolute;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
}
.swiper-container-fade .swiper-slide {
    transition-property: opacity;
    pointer-events: none;
}
.swiper-container-fade.mv-carousel-a .swiper-slide, .swiper-container-fade.mv-carousel-sp-a .swiper-slide {
    width: 100%;
}
.swiper-container-fade.mv-carousel-a .swiper-slide img, .swiper-container-fade.mv-carousel-sp-a .swiper-slide img {
    width: 100%;
}

.swiper-content-mv, .swiper-content-event {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0 auto;
    font-size: 0;
    text-align: center;
    list-style: none;
}
.swiper-content-mv .swiper-wrapper, .swiper-content-event .swiper-wrapper {
    justify-content: center;
    flex-wrap: wrap;

    gap: 20px;
}
.swiper-content-mv .swiper-wrapper .swiper-slide, .swiper-content-event .swiper-wrapper .swiper-slide {
    width: auto;
}
.swiper-content-mv .swiper-wrapper .swiper-slide img, .swiper-content-event .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: auto;
}
[data-script-enabled=true] .swiper-content-mv, [data-script-enabled=true] .swiper-content-event {
    display: flex;
}
[data-script-enabled=true] .swiper-content-mv .swiper-wrapper, [data-script-enabled=true] .swiper-content-event .swiper-wrapper {
    justify-content: unset;
    flex-wrap: nowrap;

    gap: 0;
}
[data-script-enabled=true] .swiper-content-mv .swiper-wrapper .swiper-slide, [data-script-enabled=true] .swiper-content-event .swiper-wrapper .swiper-slide {
    width: 100%;
}

.site-carousel-event {
    -webkit-margin-before: 19px;
    margin-block-start: 19px;
}
@media print, screen and (min-width: 940px) {
    .site-carousel-event {
        -webkit-margin-before: 16px;
        margin-block-start: 16px;
    }
}
.site-carousel-event .swiper-wrapper .swiper-slide {
    height: auto;
}
.site-carousel-event .swiper-wrapper .swiper-slide > a {
    height: 100%;
}

.swiper-content-mv .swiper-navigation {
    position: absolute;
    bottom: 26px;
    left: 26px;
    z-index: 100;
}
@media print, screen and (min-width: 940px) {
    .swiper-content-mv .swiper-navigation {
        bottom: 64px;
        left: 64px;
    }
}
.swiper-content-mv .swiper-slide > a:hover > img, .swiper-content-mv .swiper-slide > a:active > img, .swiper-content-mv .swiper-slide > a:focus > img {
    transform: scale(1);
}
.swiper-content-mv .swiper-slide--nolink > span {
    position: relative;
    display: block;
    overflow: hidden;
    width: 100%;
}
.swiper-content-mv .swiper-slide--nolink > span > img {
    width: 100%;
    height: auto;
    transition: transform .2s;
    transform: scale(1);
}

.top-carousel-event {
    position: relative;
    padding-bottom: 16px;
    text-align: left;
    text-decoration: none;
    background-color: #fff;
    border-bottom: solid 1px #e6e6e6;
}
.top-carousel-event::before {
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 0;
    height: 0;
    margin: auto;
    border-width: 7px 0 0 7px;
    border-style: solid;
    border-color: transparent transparent transparent #e6e6e6;
    content: "";
}
.top-carousel-event__image {
    position: relative;
}
.top-carousel-event__image img {
    width: 100%;
    height: auto;

    aspect-ratio: 126/71;
    object-fit: cover;
}
.top-carousel-event__image-label {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 6px 8px;
    font-weight: 700;
    font-size: 1.6rem;
    color: #fff;
    background-color: #b864b8;
}
.top-carousel-event__image-label > .date {
    text-align: center;
}
.top-carousel-event__image-label > .date > .month {
    display: block;
    font-size: 1.2rem;
}
.top-carousel-event__image-label > .date > .day {
    display: block;
    font-size: 2.4rem;
    line-height: 24px;
}
.top-carousel-event__content .list-label-a {
    margin-top: 8px;
}
.top-carousel-event__content-title {
    margin-top: 16px !important;
    font-size: 1.6rem;
    color: #282828;
}
.top-carousel-event__content-info {
    margin-top: 8px;
}
.top-carousel-event__content-place, .top-carousel-event__content-date {
    position: relative;
    padding-left: 20px;
    font-size: 1.1rem;
    color: #a8a8a8;
}
.top-carousel-event__content-place::before, .top-carousel-event__content-date::before {
    position: absolute;
    top: 0;
    left: 1px;
    display: block;
    display: block;
    width: 12px;
    height: 20px;
    content: "";
    transition: ease .2s;
}
.top-carousel-event__content-place::before {
    background-image: url("/common/css/images/svg-sprite.svg");
    background-position: 219px -175px;
}
.top-carousel-event__content-date::before {
    background-image: url("/common/css/images/svg-sprite.svg");
    background-position: 87px -199px;
}
.top-carousel-event:hover .top-carousel-event__image, .top-carousel-event:active .top-carousel-event__image, .top-carousel-event:focus .top-carousel-event__image {
    overflow: hidden;
}
.top-carousel-event:hover .top-carousel-event__image > img, .top-carousel-event:active .top-carousel-event__image > img, .top-carousel-event:focus .top-carousel-event__image > img {
    transition: transform .2s;
    transform: scale(1.1);
}
.top-carousel-event:hover .top-carousel-event__content-title, .top-carousel-event:active .top-carousel-event__content-title, .top-carousel-event:focus .top-carousel-event__content-title {
    color: #000272;
}
@media print, screen and (min-width: 940px) {
    .top-carousel-event__image-label {
        font-size: 1.4rem;
    }
    .top-carousel-event__image-label > .date > .month {
        font-size: 1rem;
    }
    .top-carousel-event__image-label > .date > .day {
        font-size: 2rem;
        line-height: 20px;
    }
    .top-carousel-event__content-title {
        font-size: 1.2rem;
    }
    .top-carousel-event__content-info {
        margin-top: 15px;
    }
    .top-carousel-event__content-place {
        font-size: 1rem;
    }
}

.swiper-navigation--color-02 {
    --COLOR_PRIMARY: #62b5cb;
}

.js-swiper-control {
    position: relative;
    top: 0;
    right: 0;
    bottom: 0;
    order: 4;
    overflow: hidden;
    width: 20px;
    height: 25px;
    margin: auto;
    background-color: unset;
    border-radius: 2px;
}
.js-swiper-control::before, .js-swiper-control::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 6px;
    height: 19px;
    margin: auto;
    background-color: var(--COLOR_PRIMARY);
    border: solid 2px #fff;
    content: "";
}
.js-swiper-control::before {
    left: -10px;
}
.js-swiper-control::after {
    left: 5px;
}
.js-swiper-control.is-stop::before {
    right: -13px;
    width: 0;
    height: 0;
    background-color: transparent;
    border-top: 10px solid transparent;
    border-right: unset;
    border-bottom: 10px solid transparent;
    border-left: 13px solid var(--COLOR_PRIMARY);
}
.js-swiper-control.is-stop::after {
    display: none;
}
.js-swiper-control .status {
    position: absolute;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    width: 1px;
    height: 1px;
    white-space: nowrap;
    -webkit-clip-path: inset(100%);
    clip-path: inset(100%);
}
@media print, screen and (min-width: 940px) {
    .js-swiper-control::after {
        left: 10px;
    }
}

@media print, screen and (min-width: 940px) {
    .examinee-carousel-banner .swiper-navigation {
        -webkit-margin-end: 0;
        margin-inline-end: 0;
    }
}

.examinee-carousel-banner__inner {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    margin: 0 auto;
    margin: 0 auto;
    font-size: 0;
    text-align: center;
    list-style: none;
}
.examinee-carousel-banner__inner .swiper-wrapper {
    justify-content: center;
    flex-wrap: wrap;

    gap: 20px;
}
.examinee-carousel-banner__inner .swiper-wrapper .swiper-slide {
    width: auto;
}
.examinee-carousel-banner__inner .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: auto;
}
[data-script-enabled=true] .examinee-carousel-banner__inner {
    display: flex;
}
[data-script-enabled=true] .examinee-carousel-banner__inner .swiper-wrapper {
    justify-content: unset;
    flex-wrap: nowrap;

    gap: 0;
}
[data-script-enabled=true] .examinee-carousel-banner__inner .swiper-wrapper .swiper-slide {
    width: 100%;
}

:root {
    --COLOR_PRIMARY: #008dbd;
    --COLOR_SECONDARY: #62b5cb;
    --COLOR_SUB: #f5ffff;
    --COLOR_GRAD: linear-gradient(to right, var(--COLOR_PRIMARY), var(--COLOR_SECONDARY));
    --COLOR_GRAD2: linear-gradient(to bottom right, #f5fcff, var(--COLOR_WHITE));
    --COLOR_WHITE: #fff;
    --COLOR_STRONG: #c20000;
    --COLOR_BACKGROUND: #f5fcff;
    --COLOR_BACKGROUND02: #f2f6f7;
    --COLOR_BORDER: #e6e6e6;
    --COLOR_BORDER02: #787878;
    --COLOR_TEXT_DEFAULT: #000;
    --FONT_FAMILY_DEFAULT: "Noto Sans CJK JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Arial, sans-serif;
    --FONT_FAMILY_SERIF: "Yu Mincho", "serif";
    --TRANSITION_DEFAULT: .2s ease-in;
    --LAYER_LAYERED02: 20;
    --LAYER_LAYERED01: 10;
    --LAYER_DEFAULT: 0;
    --LAYER_BEHIND: -1;
    --FILTER_COLOR_SECONDARY: brightness(0) saturate(100%) invert(72%) sepia(19%) saturate(969%) hue-rotate(146deg) brightness(90%) contrast(80%);
}

.examinee-content {
    -webkit-margin-before: 48px;
    margin-block-start: 48px;
}
.examinee-content--emergency {
    -webkit-margin-before: unset;
    margin-block-start: unset;
}
.examinee-content--emergency .examinee-content__inner {
    padding-block: 42px;
}
.examinee-content--banner {
    -webkit-margin-before: unset;
    margin-block-start: unset;
}
@media print, screen and (min-width: 940px) {
    .examinee-content--banner {
        position: relative;
        overflow: hidden;
    }
    .examinee-content--banner::before {
        position: absolute;
        top: 0;
        left: 0;
        display: inline-block;
        width: 50vw;
        height: 100%;
        background-image: url("/examinee/images/renew/bg-index-02.svg");
        background-position: center right;
        background-size: cover;
        background-repeat: no-repeat;
        content: "";
    }
}
.examinee-content--banner .examinee-content__inner {
    padding-block: 40px 48px;
}
@media print, screen and (min-width: 940px) {
    .examinee-content--banner .examinee-content__inner {
        padding-block: 60px 56px;
    }
}
.examinee-content--reason {
    position: relative;
    overflow: hidden;

    -webkit-margin-before: 100px;
    margin-block-start: 100px;
}
.examinee-content--reason::before {
    position: absolute;
    top: 0;
    left: 50%;
    z-index: var(--LAYER_BEHIND);
    display: block;
    width: 150vw;
    min-width: 700px;
    background-image: var(--COLOR_GRAD2);
    border-radius: 50%;
    content: "";
    transform: translateX(-50%);

    aspect-ratio: 1/1;
}
@media print, screen and (min-width: 940px) {
    .examinee-content--reason::before {
        width: 120vw;
        height: 100%;

        aspect-ratio: unset;
    }
}
.examinee-content--reason .examinee-content__inner {
    padding-block: 48px;
}
@media print, screen and (min-width: 940px) {
    .examinee-content--reason .examinee-content__inner {
        padding-block: 94px;
    }
}
.examinee-content--future {
    container-type: inline-size;
}
.examinee-content--creative {
    -webkit-margin-before: 0;
    margin-block-start: 0;
}
.examinee-content--creative .examinee-content__inner {
    padding-block: 48px;
}
@media print, screen and (min-width: 940px) {
    .examinee-content--creative .examinee-content__inner {
        padding-block: 80px;
    }
}

.examinee-content__inner {
    max-width: 920px;

    margin-inline: auto;
    padding-inline: 20px;
}
@media print, screen and (min-width: 940px) {
    .examinee-content__inner {
        padding-inline: 10px;
    }
}
@media print, screen and (min-width: 1440px) {
    .examinee-content__inner {
        max-width: 1100px;
    }
}
.examinee-content__inner > *:first-child {
    margin-top: 0;
}

:root {
    --COLOR_PRIMARY: #008dbd;
    --COLOR_SECONDARY: #62b5cb;
    --COLOR_SUB: #f5ffff;
    --COLOR_GRAD: linear-gradient(to right, var(--COLOR_PRIMARY), var(--COLOR_SECONDARY));
    --COLOR_GRAD2: linear-gradient(to bottom right, #f5fcff, var(--COLOR_WHITE));
    --COLOR_WHITE: #fff;
    --COLOR_STRONG: #c20000;
    --COLOR_BACKGROUND: #f5fcff;
    --COLOR_BACKGROUND02: #f2f6f7;
    --COLOR_BORDER: #e6e6e6;
    --COLOR_BORDER02: #787878;
    --COLOR_TEXT_DEFAULT: #000;
    --FONT_FAMILY_DEFAULT: "Noto Sans CJK JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Arial, sans-serif;
    --FONT_FAMILY_SERIF: "Yu Mincho", "serif";
    --TRANSITION_DEFAULT: .2s ease-in;
    --LAYER_LAYERED02: 20;
    --LAYER_LAYERED01: 10;
    --LAYER_DEFAULT: 0;
    --LAYER_BEHIND: -1;
    --FILTER_COLOR_SECONDARY: brightness(0) saturate(100%) invert(72%) sepia(19%) saturate(969%) hue-rotate(146deg) brightness(90%) contrast(80%);
}

@media print, screen and (min-width: 940px) {
    .examinee-emergency-list {
        display: flex;
        align-items: center;
    }
}

.examinee-emergency-list__heading {
    font-size: 1.5rem;
    color: var(--COLOR_STRONG);
    line-height: 1.5;
}
@media print, screen and (min-width: 940px) {
    .examinee-emergency-list__heading {
        flex-shrink: 0;
    }
}

.examinee-emergency-list__content {
    margin: 4px 0 0;
    padding: 8px 0 0;
    border-top: 1px solid var(--COLOR_BORDER02);
}
@media print, screen and (min-width: 940px) {
    .examinee-emergency-list__content {
        margin: 0 0 0 16px;
        padding: 0 0 0 16px;
        border-top: 0;
        border-left: 1px solid var(--COLOR_BORDER02);
    }
}

@media print, screen and (min-width: 940px) {
    .examinee-emergency-list__item {
        display: table-row;
    }
}
.examinee-emergency-list__item + .examinee-emergency-list__item {
    -webkit-margin-before: 10px;
    margin-block-start: 10px;
}
@media print, screen and (min-width: 940px) {
    .examinee-emergency-list__item + .examinee-emergency-list__item {
        -webkit-margin-before: 0;
        margin-block-start: 0;
    }
}
.examinee-emergency-list__item + .examinee-emergency-list__item .examinee-emergency-list__text {
    -webkit-padding-before: 5px;
    padding-block-start: 5px;
}
.examinee-emergency-list__item + .examinee-emergency-list__item .examinee-emergency-list__data {
    -webkit-padding-before: 5px;
    padding-block-start: 5px;
}

.examinee-emergency-list__text {
    font-size: 1.1rem;
    line-height: 1.5;
}
@media print, screen and (min-width: 940px) {
    .examinee-emergency-list__text {
        display: table-cell;
        font-size: 1.3rem;
        vertical-align: top;
    }
}

.examinee-emergency-list__data {
    font-size: 1.3rem;
    line-height: 1.5;

    -webkit-margin-before: 3px;
    margin-block-start: 3px;
}
@media print, screen and (min-width: 940px) {
    .examinee-emergency-list__data {
        display: table-cell;
        padding-left: 16px;
        vertical-align: top;

        -webkit-margin-before: 0;
        margin-block-start: 0;
    }
}

.examinee-emergency-list__link {
    position: relative;
    display: inline-block;
    color: var(--COLOR_TEXT_DEFAULT);
    text-decoration: none;

    -webkit-padding-start: 18px;
    padding-inline-start: 18px;
}
@media print, screen and (min-width: 940px) {
    .examinee-emergency-list__link {
        transition: color var(--TRANSITION_DEFAULT);
    }
    .examinee-emergency-list__link:hover, .examinee-emergency-list__link:active, .examinee-emergency-list__link:focus {
        color: var(--COLOR_SECONDARY);
        text-decoration: underline;
    }
    .examinee-emergency-list__link:hover::before, .examinee-emergency-list__link:active::before, .examinee-emergency-list__link:focus::before {
        left: 2px;
    }
}
.examinee-emergency-list__link::before {
    position: absolute;
    top: 4px;
    left: 0;
    display: block;
    width: 12px;
    height: 12px;
    background-image: url("/common/css/images/svg-sprite.svg");
    background-position: -203px -135px;
    content: "";
    filter: var(--FILTER_COLOR_SECONDARY);
    transition: left var(--TRANSITION_DEFAULT);
}

@media print {
    .site-footer-top {
        display: none;
    }
}
.site-footer-top .page-top > .page-top-inner > p > a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    width: -webkit-fit-content;
    width: fit-content;
    height: 40px;
    margin-left: auto;
    font-size: 1rem;
    color: transparent;
    line-height: 1;
    background-color: unset;
}
.site-footer-top .page-top > .page-top-inner > p > a::before, .site-footer-top .page-top > .page-top-inner > p > a::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: block;
    width: 15px;
    height: 2px;
    margin: auto;
    background-color: #282828;
    border-radius: 2px;
    content: "";
    transition: top var(--TRANSITION_DEFAULT);
}
.site-footer-top .page-top > .page-top-inner > p > a::before {
    left: 8px;
    transform: rotate(56deg);
}
.site-footer-top .page-top > .page-top-inner > p > a::after {
    left: -8px;
    transform: rotate(-56deg);
}
@media print, screen and (min-width: 940px) {
    .site-footer-top .page-top > .page-top-inner {
        max-width: 1440px;
        padding: 0 10px;
    }
    .site-footer-top .page-top > .page-top-inner > p {
        justify-content: flex-end;
    }
    .site-footer-top .page-top > .page-top-inner > p > a {
        width: 100px;
        transition: background-color var(--TRANSITION_DEFAULT);
    }
    .site-footer-top .page-top > .page-top-inner > p > a:hover, .site-footer-top .page-top > .page-top-inner > p > a:active, .site-footer-top .page-top > .page-top-inner > p > a:focus {
        background-color: rgba(40, 40, 40, .1);
    }
    .site-footer-top .page-top > .page-top-inner > p > a:hover::before, .site-footer-top .page-top > .page-top-inner > p > a:hover::after, .site-footer-top .page-top > .page-top-inner > p > a:active::before, .site-footer-top .page-top > .page-top-inner > p > a:active::after, .site-footer-top .page-top > .page-top-inner > p > a:focus::before, .site-footer-top .page-top > .page-top-inner > p > a:focus::after {
        top: -8px;
    }
}
@media print, screen and (min-width: 1440px) {
    .site-footer-top .page-top > .page-top-inner {
        max-width: 1100px;
        margin: auto;
    }
}

.footer-top-item {
    padding: 32px 20px 40px;
    background-image: var(--COLOR_GRAD2);
}
.footer-top-item > .footer-top-item-inner {
    display: flex;
    flex-direction: column;
    padding: 0 0 16px;
}
.footer-top-item > .footer-top-item-inner > .footer-top-logo {
    display: block;
    width: -webkit-fit-content;
    width: fit-content;
    margin: 24px auto 30px;
}
@media print, screen and (min-width: 940px) {
    .footer-top-item > .footer-top-item-inner {
        max-width: 920px;
        margin: 0 auto;
        padding: 0 10px;
    }
    .footer-top-item > .footer-top-item-inner > .footer-top-logo {
        margin: 30px auto 60px;
    }
}
@media print, screen and (min-width: 1440px) {
    .footer-top-item > .footer-top-item-inner {
        max-width: 1100px;
    }
}

.footer-top-link {
    display: flex;
    flex-wrap: wrap;
    margin: 9px 0;

    gap: 9px 24px;
}
.footer-top-link > li {
    font-size: 1.2rem;
    line-height: 1.75;
}
.footer-top-link > li > a {
    position: relative;
    padding: 0 0 0 17px;
    color: #c8c8c8;
    text-decoration: none;
}
.footer-top-link > li > a::before {
    position: absolute;
    top: 3px;
    left: 0;
    display: block;
    width: 12px;
    height: 12px;
    background-image: url("/common/css/images/svg-sprite.svg");
    background-position: -203px -157px;
    content: "";
    transition: left .1s;
}
@media print, screen and (min-width: 940px) {
    .footer-top-link > li > a:hover::before, .footer-top-link > li > a:active::before, .footer-top-link > li > a:focus::before {
        left: 2px;
    }
}

.footer-top-sns-link {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-shrink: 0;
    margin-top: 15px;

    gap: 16px;
}
.footer-top-sns-link > li {
    display: flex;
    align-items: center;
}
.footer-top-sns-link > li > a {
    display: block;
    line-height: 1;
}
.footer-top-sns-link > li > a > img {
    width: 32px;
    height: auto;
    vertical-align: bottom;
}
@media print, screen and (min-width: 940px) {
    .footer-top-sns-link {
        margin-top: 0;
    }
    .footer-top-sns-link > li > a {
        transition: opacity var(--TRANSITION_DEFAULT);
    }
    .footer-top-sns-link > li > a:hover, .footer-top-sns-link > li > a:active, .footer-top-sns-link > li > a:focus {
        opacity: .5;
    }
}

.footer-top-info {
    background-color: #282828;
    border-top: 1px solid #3e3e3e;
}
.footer-top-info > .footer-top-info-inner > .footer-top-link-wrap {
    padding: 16px 20px;
    border-bottom: 1px solid #3e3e3e;
}
.footer-top-info > .footer-top-info-inner > .footer-top-copyright {
    margin-top: 0;
    padding: 16px 10px;
    font-size: 1rem;
    color: #787878;
    text-align: center;
}
@media print, screen and (min-width: 940px) {
    .footer-top-info > .footer-top-info-inner {
        display: flex;
        align-items: center;
        max-width: 920px;
        margin: 0 auto;
        padding: 24px 10px;

        gap: 20px;
    }
    .footer-top-info > .footer-top-info-inner > .footer-top-link-wrap {
        margin-right: auto;
        padding: 0;
        border-bottom: 0;
    }
    .footer-top-info > .footer-top-info-inner > .footer-top-copyright {
        margin-left: auto;
        padding: 0;
        text-align: left;
    }
}
@media print, screen and (min-width: 1440px) {
    .footer-top-info > .footer-top-info-inner {
        max-width: 1100px;
    }
}

:root {
    --COLOR_PRIMARY: #008dbd;
    --COLOR_SECONDARY: #62b5cb;
    --COLOR_SUB: #f5ffff;
    --COLOR_GRAD: linear-gradient(to right, var(--COLOR_PRIMARY), var(--COLOR_SECONDARY));
    --COLOR_GRAD2: linear-gradient(to bottom right, #f5fcff, var(--COLOR_WHITE));
    --COLOR_WHITE: #fff;
    --COLOR_STRONG: #c20000;
    --COLOR_BACKGROUND: #f5fcff;
    --COLOR_BACKGROUND02: #f2f6f7;
    --COLOR_BORDER: #e6e6e6;
    --COLOR_BORDER02: #787878;
    --COLOR_TEXT_DEFAULT: #000;
    --FONT_FAMILY_DEFAULT: "Noto Sans CJK JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Arial, sans-serif;
    --FONT_FAMILY_SERIF: "Yu Mincho", "serif";
    --TRANSITION_DEFAULT: .2s ease-in;
    --LAYER_LAYERED02: 20;
    --LAYER_LAYERED01: 10;
    --LAYER_DEFAULT: 0;
    --LAYER_BEHIND: -1;
    --FILTER_COLOR_SECONDARY: brightness(0) saturate(100%) invert(72%) sepia(19%) saturate(969%) hue-rotate(146deg) brightness(90%) contrast(80%);
}

.site-header-top {
    position: fixed;
    top: 0;
    z-index: 2000;
    display: flex;
    flex-direction: column-reverse;
    width: 100%;
    background-color: #fff;
}
[data-script-enabled=true] .site-header-top {
    display: block;
    flex-direction: row;
}

.header-top-wrapper {
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
    height: auto;
}

.header-top-logo {
    position: relative;
    z-index: 100;
    display: flex;
    align-items: center;
    margin-left: 30px;

    gap: 15px;
}
.header-top-logo > a > img {
    display: block;
    min-width: 115px;
}
@media print, screen and (min-width: 940px) {
    .header-top-logo > a {
        flex: 0 0 auto;
    }
}
@media print, screen and (max-width: 425px) {
    .header-top-logo {
        margin-left: 15px;
    }
}

.header-top-logo__label {
    padding: 4px 7px;
    font-size: 1rem;
    color: var(--COLOR_SECONDARY);
    white-space: nowrap;
    border: 1px solid var(--COLOR_SECONDARY);
    border-radius: .5rem;
}
@media print, screen and (min-width: 940px) {
    .header-top-logo__label {
        padding: 9px 16px;
        font-size: 1.3rem;
    }
}

.header-top-main-nav {
    width: -webkit-fit-content;
    width: fit-content;
}
[data-script-enabled=true] .header-top-main-nav > ul > li.visitor {
    width: -webkit-fit-content;
    width: fit-content;
    margin-left: auto;
}
[data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-btn {
    z-index: 20;
    overflow: hidden;
}
[data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-btn::before {
    transition: bottom var(--TRANSITION_DEFAULT) .4s, opacity var(--TRANSITION_DEFAULT) .4s;
}
[data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-btn::after {
    position: absolute;
    top: -100%;
    left: 0;
    z-index: 10;
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--COLOR_PRIMARY);
    background-image: var(--COLOR_GRAD);
    content: "";
    transition: bottom .1s ease-in .2s;
}
[data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-btn > span::before, [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-btn > span::after {
    position: absolute;
    top: 53px;
    right: 0;
    left: 0;
    z-index: 20;
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 2px;
    content: "";
    opacity: 0;
    transition: top var(--TRANSITION_DEFAULT), opacity var(--TRANSITION_DEFAULT);
}
[data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-btn > span::before {
    transform: rotate(45deg);
}
[data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-btn > span::after {
    transform: rotate(-45deg);
}
[data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap {
    display: block;
}
[data-script-enabled=true] .header-top-main-nav > ul > li.visitor.is-active > .visitor-btn::before {
    top: 45px;
    opacity: 0;
    transition: top var(--TRANSITION_DEFAULT) .3s, opacity var(--TRANSITION_DEFAULT) .3s;
}
[data-script-enabled=true] .header-top-main-nav > ul > li.visitor.is-active > .visitor-btn::after {
    top: 0;
    transition: top .1s ease-in;
}
[data-script-enabled=true] .header-top-main-nav > ul > li.visitor.is-active > .visitor-btn > span::before, [data-script-enabled=true] .header-top-main-nav > ul > li.visitor.is-active > .visitor-btn > span::after {
    top: 30px;
    opacity: 1;
    transition: top var(--TRANSITION_DEFAULT) .2s, opacity var(--TRANSITION_DEFAULT) .2s;
}
.header-top-main-nav > ul {
    display: flex;
    flex-wrap: wrap;
}
.header-top-main-nav > ul > li {
    font-size: 1rem;
    line-height: 1.4;
}
.header-top-main-nav > ul > li > a {
    position: relative;
    z-index: 10;
    display: block;
    padding: 31px 12px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #787878;
    text-align: center;
    line-height: 1.15;
    text-decoration: none;
    background-color: #fff;
}
@media print, screen and (max-width: 425px) {
    .header-top-main-nav > ul > li > a {
        padding: 24px 6px;
    }
}
.header-top-main-nav > ul > li > a::before {
    position: absolute;
    top: 13px;
    right: 0;
    left: 0;
    display: block;
    margin: 0 auto;
    background-repeat: no-repeat;
    content: "";
}
@media print, screen and (max-width: 425px) {
    .header-top-main-nav > ul > li > a {
        padding: 24px 8px;
        font-size: 1rem;
    }
}
@media print, screen and (min-width: 940px) {
    .header-top-main-nav > ul > li > a {
        font-size: 1.5rem;
    }
}
.header-top-main-nav > ul > li.header-top-visitor-panel--request {
    display: none;
}
.header-top-main-nav > ul > li.visitor > .visitor-content-wrap {
    display: none;
}
.header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .item {
    padding-inline: 40px;
}
.header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .item > .hdg {
    font-weight: 900;
    font-size: 2rem;
    text-align: center;
    line-height: 1.5;
}
.header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .item > .keyword {
    margin: 40px 0 0;
    font-weight: 900;
    font-size: 1.5rem;
    color: #6d2970;
    text-align: center;
}
.header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .item > .mf_finder_header-top form {
    margin: 16px 0 0;
}
.header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .item > .list-keyword {
    display: flex;
    flex-wrap: wrap;
    margin: 16px 0 -12px -8px;
}
.header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .item > .list-keyword > li {
    padding: 0 0 12px 8px;
}
.header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .item > .list-keyword > li > a {
    display: block;
    padding: 5px 16px;
    font-size: 1.3rem;
    color: #282828;
    text-decoration: none;
    background-color: #f5f5f5;
    border-radius: 14px;
}
@media print, screen and (max-width: 1163px) {
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap {
        position: fixed;
        top: 0;
        left: 0;
        visibility: hidden;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        height: 100vh;
        padding: 100px 0 0;
        background-color: #fff;
        opacity: 0;
        transition: opacity .2s, visibility .2s;
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content .lyt-btn {
        display: none;
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor.is-active > .visitor-content-wrap {
        visibility: visible;
        opacity: 1;
    }
}
@media print, screen and (min-width: 414px) {
    .header-top-main-nav > ul > li > a::before {
        top: 16px;
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap {
        height: 100vh;
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor.is-active > .visitor-btn > span::before, [data-script-enabled=true] .header-top-main-nav > ul > li.visitor.is-active > .visitor-btn > span::after {
        top: 32px;
    }
}
@media print, screen and (min-width: 1164px) {
    [data-script-enabled=true] .reload .header-top-main-nav > ul > li.visitor > .visitor-content-wrap {
        transition: none;
    }
    [data-script-enabled=true] .header-top-main-nav {
        width: 100%;
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor.is-active > .visitor-btn > span::before, [data-script-enabled=true] .header-top-main-nav > ul > li.visitor.is-active > .visitor-btn > span::after {
        top: 45px;
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor.is-active > .visitor-content-wrap {
        visibility: visible;
        opacity: 1;
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap {
        position: fixed;
        top: 0;
        left: 0;
        z-index: -10;
        visibility: hidden;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        height: 100%;
        opacity: 0;
        transition: opacity .3s, visibility .3s;
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        max-width: 1080px;
        height: 100%;
        margin: auto;
        padding: 0 20px;
        border-radius: 4px;
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner {
        position: relative;
        display: flex;
        align-items: flex-end;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
        height: -webkit-fit-content;
        height: fit-content;
        margin-top: 100px;
        background-color: #fff;
        box-shadow: 0 4px 10px rgba(0, 0, 0, .3);

        align-content: flex-end;
    }
}
@media print, screen and (min-width: 1164px) and (min-width: 940px) {
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner {
        overflow: visible;
    }
}
@media print, screen and (min-width: 1164px) {
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .item {
        overflow-y: scroll;
        width: 100%;
        height: calc(100% - 200px);
        max-height: calc(100vh - 200px);
        margin: 0 auto;
        padding: 60px;
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .item > .hdg {
        font-size: 2.8rem;
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .item > .keyword {
        font-size: 1.8rem;
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .item > .mf_finder_header-top form {
        margin-top: 24px;
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .item > .list-keyword {
        margin: 16px 0 -8px -8px;
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .item > .list-keyword > li {
        padding: 0 0 8px 8px;
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .item > .list-keyword > li > a {
        font-size: 1.5rem;
        transition: color .2s, background-color .2s;
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .item > .list-keyword > li > a:hover, [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .item > .list-keyword > li > a:active, [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .item > .list-keyword > li > a:focus {
        color: var(--COLOR_SECONDARY);
        background-color: #e6e6e6;
    }
}
@media print, screen and (min-width: 1164px) {
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .lyt-btn {
        position: absolute;
        top: -55px;
        right: 10px;
        display: none;
        width: 100%;
        max-width: 919px;
        margin: 0;
        text-align: right;
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .lyt-btn > .btn-close {
        position: relative;
        display: inline-block;
        width: 44px;
        height: 44px;
        padding: 0;
        background-color: rgba(0, 0, 0, .4);
        border: 0;
        border-radius: 50%;
        transition: background-color var(--TRANSITION_DEFAULT);
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .lyt-btn > .btn-close:hover, [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .lyt-btn > .btn-close:active, [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .lyt-btn > .btn-close:focus {
        background-color: rgba(0, 0, 0, .6);
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .lyt-btn > .btn-close > span {
        display: flex;
        align-items: center;
        font-size: 1rem;
        opacity: 0;
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .lyt-btn > .btn-close::before, [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .lyt-btn > .btn-close::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        width: 16px;
        height: 2px;
        margin: auto;
        background-color: #fff;
        border-radius: 2px;
        content: "";
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .lyt-btn > .btn-close::before {
        transform: rotate(45deg);
    }
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .lyt-btn > .btn-close::after {
        transform: rotate(-45deg);
    }
}
@media print, screen and (min-width: 1164px) and (min-width: 940px) {
    [data-script-enabled=true] .header-top-main-nav > ul > li.visitor > .visitor-content-wrap > .visitor-content > .visitor-content-inner > .lyt-btn {
        display: block;
    }
}
@media print, screen and (min-width: 1164px) {
    .header-top-main-nav > ul > li.btn {
        width: 100%;
        padding: 8px 8px 10px;
        font-size: 1.4rem;
    }
    .header-top-main-nav > ul > li.btn > .request {
        padding: 8px 10px;
        color: #282828;
        background-color: #fae63c;
        border-top: 0;
        border-radius: 2px;
        box-shadow: 0 1px 2px rgba(0, 0, 0, .24);
        transition: box-shadow var(--TRANSITION_DEFAULT);
    }
    .header-top-main-nav > ul > li.btn > .request::before {
        display: none;
    }
    .header-top-main-nav > ul > li.btn > .request:hover, .header-top-main-nav > ul > li.btn > .request:active, .header-top-main-nav > ul > li.btn > .request:focus {
        box-shadow: 0 2px 6px rgba(0, 0, 0, .24);
    }
    .header-top-main-nav > ul > li.btn > .request > span {
        position: relative;
        display: inline-block;
        padding-left: 20px;
    }
    .header-top-main-nav > ul > li.btn > .request > span::before {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        display: block;
        width: 12px;
        height: 16px;
        margin: auto 0;
        background-image: url("/common/css/images/svg-sprite.svg");
        background-position: -5px -149px;
        background-repeat: no-repeat;
        content: "";
    }
    .header-top-main-nav > ul > li > a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90px;
        height: 90px;
        padding: 30px 6px;
        font-size: 1.5rem;
        transition: color .2s;
    }
    .header-top-main-nav > ul > li > a:hover, .header-top-main-nav > ul > li > a:active, .header-top-main-nav > ul > li > a:focus {
        color: var(--COLOR_SECONDARY);
    }
}
@media print, screen and (min-width: 1164px) and (min-width: 940px) {
    .header-top-main-nav > ul > li.header-top-visitor-panel--request {
        display: block;
    }
    .header-top-main-nav > ul > li.header-top-visitor-panel--request > a {
        width: -webkit-fit-content;
        width: fit-content;
        padding: 30px 36px;
        color: var(--COLOR_WHITE);
        background-color: var(--COLOR_SUB);
        background-image: var(--COLOR_GRAD);
    }
    .header-top-main-nav > ul > li.header-top-visitor-panel--type2 > a {
        color: var(--COLOR_PRIMARY);
        background-image: unset;
    }
}

.header-top-main-content {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: flex-end;
    flex-wrap: nowrap;
    width: 100%;
    margin-left: auto;
    background-color: rgba(255, 255, 255, .7);
    transition: background-color var(--TRANSITION_DEFAULT);
}
[data-script-enabled=true] .header-top-main-content {
    max-height: 90px;
}
.header-top-main-content > .header-top-main-logo {
    display: flex;
    align-items: center;
    padding: 4px 10px 0 12px;
    line-height: 1;
}
.header-top-main-content > .header-top-main-logo > p > a {
    display: block;
}
.header-top-main-content > .header-top-main-logo > p > a > img {
    width: 141px;
}
.header-top-main-content.is-active {
    background-color: #fff;
}
@media print, screen and (min-width: 1164px) {
    .header-top-main-content {
        justify-content: flex-end;
        min-height: 33px;
        background-color: #fff;
        transition: background-color .2s;
    }
    .top .header-top-main-content {
        background-color: rgba(255, 255, 255, .5);
        border-bottom: 0;
    }
    .header-top-main-content > .header-top-main-logo {
        display: none;
    }
}
@media only screen and (min-width: 1164px) and (max-height: 630px) {
    .header-top-main-content {
        position: absolute;
    }
    [data-script-enabled=true] .header-top-main-content {
        position: absolute;
    }
}
@media print {
    .header-top-main-content {
        position: static !important;
        display: block !important;
        width: 100% !important;
        padding: 6px 0 !important;
        background-color: #fff !important;
    }
    .header-top-main-content > .header-top-main-logo {
        display: block !important;
    }
}

.header-top-main-link {
    display: flex;
    visibility: visible;
    opacity: 1;
    transition: opacity var(--TRANSITION_DEFAULT), visibility var(--TRANSITION_DEFAULT);
}
[data-script-enabled=true] .header-top-main-link > li.header-top-main-menu {
    display: block;
}
.header-top-main-link > li {
    font-size: 1rem;
}
.header-top-main-link > li > a {
    text-decoration: none;
}
.header-top-main-link > li > a::before {
    position: absolute;
    top: 12px;
    right: 0;
    left: 0;
    display: block;
    margin: 0 auto;
    content: "";
}
.header-top-main-link > li > a, .header-top-main-link > li > button {
    position: relative;
    display: block;
    overflow: hidden;
    height: 100%;
    padding: 32px 12px 8px;
    color: #787878;
    line-height: 1.4;
    text-decoration: none;
}
@media print, screen and (min-width: 940px) {
    .header-top-main-link > li > a, .header-top-main-link > li > button {
        padding-top: 58px;
    }
}
.header-top-main-link > li.header-top-main-menu {
    display: none;
}
.header-top-main-link > li.header-top-main-menu > .header-top-main-menu-btn {
    width: 60px;
    height: 100%;
    color: var(--COLOR_SECONDARY);
    background-color: var(--COLOR_WHITE);
}
.header-top-main-link > li.header-top-main-menu > .header-top-main-menu-btn::before {
    position: absolute;
    top: 16px;
    right: 0;
    left: 0;
    display: block;
    width: 20px;
    height: 14px;
    margin: 0 auto;
    background-image: url("/common/images/icon-index-01.svg");
    background-size: cover;
    content: "";
    filter: var(--FILTER_COLOR_SECONDARY);
    transition: opacity var(--TRANSITION_DEFAULT) .3s, transform var(--TRANSITION_DEFAULT) .3s;
}
@media print, screen and (min-width: 940px) {
    .header-top-main-link > li.header-top-main-menu > .header-top-main-menu-btn::before {
        top: 25px;
    }
}
.header-top-main-link > li.header-top-main-menu > .header-top-main-menu-btn::after {
    position: absolute;
    top: -100%;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--COLOR_PRIMARY);
    background-image: var(--COLOR_GRAD);
    content: "";
    transition: top .1s ease-in .2s;
}
.header-top-main-link > li.header-top-main-menu > .header-top-main-menu-btn > span::before, .header-top-main-link > li.header-top-main-menu > .header-top-main-menu-btn > span::after {
    position: absolute;
    top: 6px;
    right: 0;
    left: 0;
    z-index: 20;
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 2px;
    content: "";
    opacity: 0;
    transition: top var(--TRANSITION_DEFAULT), opacity var(--TRANSITION_DEFAULT);
}
.header-top-main-link > li.header-top-main-menu > .header-top-main-menu-btn > span::before {
    transform: rotate(45deg);
}
.header-top-main-link > li.header-top-main-menu > .header-top-main-menu-btn > span::after {
    transform: rotate(-45deg);
}
@media print, screen and (min-width: 1164px) {
    .header-top-main-link > li.header-top-main-menu > .header-top-main-menu-btn {
        width: 90px;
        height: 90px;
    }
    .header-top-main-link > li.header-top-main-menu > .header-top-main-menu-btn::before {
        position: absolute;
        display: block;
        width: 30px;
        height: 20px;
        content: "";
    }
}
.header-top-main-link > li.is-active > .header-top-main-menu-btn::before {
    opacity: 0;
    transition-delay: .3s;
    transform: translateY(-4px);
}
.header-top-main-link > li.is-active > .header-top-main-menu-btn::after {
    top: 0;
    transition-delay: 0s;
}
.header-top-main-link > li.is-active > .header-top-main-menu-btn > span::before, .header-top-main-link > li.is-active > .header-top-main-menu-btn > span::after {
    top: 30px;
    opacity: 1;
    transition: top var(--TRANSITION_DEFAULT), opacity var(--TRANSITION_DEFAULT);
}
@media print, screen and (min-width: 1164px) {
    .header-top-main-link > li.is-active > .header-top-main-menu-btn > span::before, .header-top-main-link > li.is-active > .header-top-main-menu-btn > span::after {
        top: 45px;
    }
}
@media print, screen and (min-width: 1164px) {
    .header-top-main-link > li {
        padding: 0;
        font-size: 1.2rem;
    }
    .header-top-main-link > li + li {
        position: relative;
        padding-left: 24px;
    }
    .header-top-main-link > li + li:last-child {
        padding-right: 0;
    }
    .header-top-main-link > li + li::before {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        display: block;
        width: 1px;
        height: 20px;
        margin: auto 0;
        background-color: #e6e6e6;
        content: "";
        transition: background-color .2s;
    }
    .header-top-main-link > li.access > a::before {
        display: none;
    }
    .header-top-main-link > li > a {
        padding: 0;
        color: #787878;
        line-height: 1.8;
        border-left: 0;
        transition: color var(--TRANSITION_DEFAULT);
    }
    .header-top-main-link > li > a:hover, .header-top-main-link > li > a:active, .header-top-main-link > li > a:focus {
        color: var(--COLOR_SECONDARY);
        text-decoration: underline;
    }
    .header-top-main-link > li.header-top-main-menu {
        display: block;
    }
}

.header-top-main-menu-content {
    position: fixed;
    top: 60px;
    left: 0;
    visibility: hidden;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    height: calc(100vh - 60px);
    padding: 79px 32px 0;
    background-color: var(--COLOR_WHITE);
    opacity: 0;
    transition: opacity var(--TRANSITION_DEFAULT), visibility var(--TRANSITION_DEFAULT);
}
.reload .header-top-main-menu-content {
    transition: none;
}
.header-top-main-menu-content > .hdg {
    margin: 0 0 25px;
    font-weight: 900;
    font-size: 1.8rem;
    color: #462850;
    text-align: center;
    line-height: 1.5;
    opacity: 0;
    transition: opacity var(--TRANSITION_DEFAULT);
}
.header-top-main-menu-content > ul {
    display: flex;
    flex-wrap: wrap;
    margin: -5px 0 0 -5px;
}
.header-top-main-menu-content > ul > li {
    width: 50%;
    min-height: 95px;
    padding: 5px 0 0 5px;
    font-size: 1.5rem;
}
.header-top-main-menu-content > ul > li > a {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 18px 10px;
    font-weight: bold;
    color: #282828;
    text-align: center;
    text-decoration: none;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 0 4px rgba(0, 0, 0, .24);
    opacity: 0;
    transition: transform .3s ease-in .2s, opacity .3s ease-in .2s;
    transform: translateY(10px);
}
.header-top-main-menu-content > ul > li > a > span {
    display: none;
}
.header-top-main-menu-content > ul > li > a::before {
    position: absolute;
    right: 5px;
    bottom: 5px;
    display: block;
    width: 0;
    height: 0;
    border-bottom: 8px solid #000272;
    border-left: 8px solid transparent;
    content: "";
}
.is-active > .header-top-main-menu-content {
    visibility: visible;
    opacity: 1;
    transition: opacity var(--TRANSITION_DEFAULT), visibility var(--TRANSITION_DEFAULT);
}
.is-active > .header-top-main-menu-content > .hdg {
    opacity: 1;
}
.is-active > .header-top-main-menu-content > ul > li > a {
    opacity: 1;
    transform: translateY(0);
}
@media print, screen and (min-width: 1164px) {
    .header-top-main-menu-content {
        top: 90px;
        height: calc(100vh - 90px);
        background-color: #fafafa;
        background-image: var(--COLOR_GRAD2);
    }
    .header-top-main-menu-content > .hdg {
        display: none;
    }
    .header-top-main-menu-content > ul {
        margin: 0;
    }
    .header-top-main-menu-content > ul > li {
        width: auto;
        min-height: 0;
        padding: 0;
        font-size: 1.2rem;
    }
    .header-top-main-menu-content > ul > li + li {
        padding: 0 0 0 23px;
    }
    .header-top-main-menu-content > ul > li > a {
        display: inline;
        padding: 0;
        font-weight: normal;
        color: #787878;
        text-align: left;
        text-decoration: none;
        background-color: transparent;
        border-radius: 0;
        box-shadow: none;
        opacity: 1;
        transition: color var(--TRANSITION_DEFAULT);
        transform: none;
    }
    .header-top-main-menu-content > ul > li > a > span {
        display: inline;
    }
    .header-top-main-menu-content > ul > li > a > br {
        display: none;
    }
    .header-top-main-menu-content > ul > li > a::before {
        display: none;
    }
    .header-top-main-menu-content > ul > li > a:hover, .header-top-main-menu-content > ul > li > a:active, .header-top-main-menu-content > ul > li > a:focus {
        color: var(--COLOR_SECONDARY);
        text-decoration: underline;
    }
}

.header-top-sub-content {
    position: absolute;
    width: 100%;
    padding: 11px 30px;
    background-color: #fff;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .16);
    transition: opacity .5s ease, transform .5s ease;
}
@media print, screen and (min-width: 940px) {
    .header-top-sub-content {
        padding: 20px 30px;
    }
}
.header-top-sub-content > ul {
    display: flex;
}
.header-top-sub-content > ul > li > a {
    color: #282828;
    text-decoration: none;
}
.header-top-sub-content > ul > li > a:hover {
    color: var(--COLOR_SECONDARY);
}
.header-top-sub-content.is-hidden {
    opacity: 0;
    transform: translateY(-20px);
    pointer-events: none;
}
.header-top-sub-content.is-visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.header-top-sub-content--about {
    overflow: auto;
    opacity: 1;
    transform: translateY(0);
}
.header-top-sub-content--about > ul {
    gap: 25px;
}
.header-top-sub-content--about > ul > li {
    position: relative;
    flex-shrink: 0;
}
.header-top-sub-content--about > ul > li::after {
    position: absolute;
    top: 0;
    right: -12px;
    bottom: 0;
    display: block;
    width: 1px;
    height: 100%;
    margin: auto;
    background-color: #a8a8a8;
    content: "";
}
.header-top-sub-content--about > ul > li:last-child {
    padding-right: 30px;
}
.header-top-sub-content--about > ul > li:last-child::after {
    display: none;
}
.header-top-sub-content--department {
    padding: 0;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}
.header-top-sub-content--department > ul {
    justify-content: center;
    max-width: 890px;
    margin: auto;
}
.header-top-sub-content--department > ul > li {
    position: relative;
    width: 100%;
    font-size: 1.4rem;
    text-align: center;
    background: #fff;
    border-bottom: solid 8px;
    border-image: linear-gradient(90deg, #b864b8, #821e8c) 1;
}
.header-top-sub-content--department > ul > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0 6px;
    font-weight: 700;
    font-size: 1.2rem;
    color: #462850;

    gap: 16px;
}
.header-top-sub-content--department > ul > li > a > img {
    width: 30px;
}
.header-top-sub-content--department > ul > li::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    z-index: 100;
    display: block;
    width: 30%;
    max-width: 48px;
    height: 8px;
    content: "";
}
.header-top-sub-content--department > ul > li._exam::after {
    background-color: #4cb1ff;
}
.header-top-sub-content--department > ul > li._pharm::after {
    background-color: #3278d2;
}
.header-top-sub-content--department > ul > li._life-sci::after {
    background-color: #28b4b4;
}
@media print, screen and (min-width: 940px) {
    .header-top-sub-content--department > ul > li > a {
        font-size: 2.4rem;

        gap: 30px;
    }
    .header-top-sub-content--department > ul > li > a > img {
        width: 50px;
    }
}

.header-top-visitor-panel {
    display: -ms-grid;
    display: grid;
    margin-top: 24px;

    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
}
.header-top-visitor-panel--request {
    display: none;
}
.header-top-visitor-panel-item {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    justify-content: flex-end;
    color: #282828;
    text-decoration: none;
    box-shadow: 0 3px 24px rgba(0, 0, 0, .16);
}
.header-top-visitor-panel-item::after {
    position: absolute;
    bottom: 0;
    left: 16px;
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--COLOR_PRIMARY);
    content: "";
}
.header-top-visitor-panel-item__title {
    position: relative;
    width: 100%;
    padding: 9px 16px 12px;
    font-size: 1.2rem;
    background-color: #fff;
}
.header-top-visitor-panel-item__title::after {
    position: absolute;
    right: 10px;
    display: block;
    width: 12px;
    height: 12px;
    margin: auto;
    background-image: url("/common/css/images/svg-sprite.svg");
    background-position: -203px -179px;
    content: "";
    filter: var(--FILTER_COLOR_SECONDARY);
    transition: left var(--TRANSITION_DEFAULT);

    inset-block: 0;
}
.header-top-visitor-panel-item__image {
    position: relative;
    overflow: hidden;
}
.header-top-visitor-panel-item__image > img {
    width: 100%;
    transition: transform var(--TRANSITION_DEFAULT);
    transform: scale(1);
}
.header-top-visitor-panel-item:hover, .header-top-visitor-panel-item:active, .header-top-visitor-panel-item:focus {
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
}
.header-top-visitor-panel-item:hover > .header-top-visitor-panel-item__image > img, .header-top-visitor-panel-item:active > .header-top-visitor-panel-item__image > img, .header-top-visitor-panel-item:focus > .header-top-visitor-panel-item__image > img {
    transform: scale(1.04);
}
.header-top-visitor-panel-item:hover > .header-top-visitor-panel-item__title, .header-top-visitor-panel-item:active > .header-top-visitor-panel-item__title, .header-top-visitor-panel-item:focus > .header-top-visitor-panel-item__title {
    color: var(--COLOR_SECONDARY);
}
@media print, screen and (min-width: 940px) {
    .header-top-visitor-panel {
        margin-top: 32px;

        -ms-grid-columns: 1fr 48px 1fr 48px 1fr;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 32px 48px;
    }
    .header-top-visitor-panel-item__title {
        font-size: 1.5rem;
    }
}

.ico-modal {
    filter: var(--FILTER_COLOR_SECONDARY);
}

.ico-external {
    filter: var(--FILTER_COLOR_SECONDARY);
}

:root {
    --COLOR_PRIMARY: #008dbd;
    --COLOR_SECONDARY: #62b5cb;
    --COLOR_SUB: #f5ffff;
    --COLOR_GRAD: linear-gradient(to right, var(--COLOR_PRIMARY), var(--COLOR_SECONDARY));
    --COLOR_GRAD2: linear-gradient(to bottom right, #f5fcff, var(--COLOR_WHITE));
    --COLOR_WHITE: #fff;
    --COLOR_STRONG: #c20000;
    --COLOR_BACKGROUND: #f5fcff;
    --COLOR_BACKGROUND02: #f2f6f7;
    --COLOR_BORDER: #e6e6e6;
    --COLOR_BORDER02: #787878;
    --COLOR_TEXT_DEFAULT: #000;
    --FONT_FAMILY_DEFAULT: "Noto Sans CJK JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Arial, sans-serif;
    --FONT_FAMILY_SERIF: "Yu Mincho", "serif";
    --TRANSITION_DEFAULT: .2s ease-in;
    --LAYER_LAYERED02: 20;
    --LAYER_LAYERED01: 10;
    --LAYER_DEFAULT: 0;
    --LAYER_BEHIND: -1;
    --FILTER_COLOR_SECONDARY: brightness(0) saturate(100%) invert(72%) sepia(19%) saturate(969%) hue-rotate(146deg) brightness(90%) contrast(80%);
}

.examinee-heading {
    text-align: center;
}

.examinee-heading__item {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    width: -webkit-fit-content;
    width: fit-content;
}
.examinee-heading__item::before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: var(--COLOR_BORDER);
    content: "";
}

.examinee-heading__sub {
    font-size: 1.2rem;
    color: var(--COLOR_SECONDARY);
    line-height: 1.25;
}
@media print, screen and (min-width: 940px) {
    .examinee-heading__sub {
        font-size: 2.4rem;
    }
}

.examinee-heading__main {
    font-size: 2.5rem;
    color: var(--COLOR_PRIMARY);
}
@media print, screen and (min-width: 940px) {
    .examinee-heading__main {
        font-size: 4.2rem;
    }
}

.examinee-heading-type2 {
    display: flex;
    justify-content: center;

    -webkit-margin-before: 86px;
    margin-block-start: 86px;
}

.examinee-heading-type2__item {
    position: relative;
    width: -webkit-fit-content;
    width: fit-content;
    font-family: var(--FONT_FAMILY_DEFAULT);

    -webkit-padding-after: 5px;
    padding-block-end: 5px;
}
.examinee-heading-type2__item::before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 1px;
    background-color: var(--COLOR_BORDER);
    content: "";
}

.examinee-heading-type2__main {
    font-size: 2.4rem;
    color: var(--COLOR_PRIMARY);
}
@media print, screen and (min-width: 940px) {
    .examinee-heading-type2__main {
        font-size: 3rem;
    }
}

.examinee-heading-type2__sub {
    font-size: 1.2rem;
    color: var(--COLOR_SECONDARY);
}
@media print, screen and (min-width: 940px) {
    .examinee-heading-type2__sub {
        font-size: 1.6rem;
    }
}

.examinee-heading-type3 {
    -webkit-margin-before: 40px;
    margin-block-start: 40px;
}
@media print, screen and (min-width: 940px) {
    .examinee-heading-type3 {
        -webkit-margin-before: 89px;
        margin-block-start: 89px;
    }
}

.examinee-heading-type3__item {
    display: flex;
    flex-direction: column;
    align-items: baseline;

    gap: 8px 39px;
}
@media print, screen and (min-width: 940px) {
    .examinee-heading-type3__item {
        flex-direction: row;
    }
}

.examinee-heading-type3__num {
    position: relative;
    font-weight: 700;
    font-size: 3.2rem;
    color: var(--COLOR_PRIMARY);
    line-height: 1.5;
}
@media print, screen and (min-width: 940px) {
    .examinee-heading-type3__num {
        font-size: 4.8rem;
    }
}
.examinee-heading-type3__num::after {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--COLOR_SECONDARY);
    content: "";
}

.examinee-heading-type3__text {
    font-size: 2.4rem;
    line-height: 1.5;
}
@media print, screen and (min-width: 940px) {
    .examinee-heading-type3__text {
        font-size: 3rem;
    }
}

:root {
    --COLOR_PRIMARY: #008dbd;
    --COLOR_SECONDARY: #62b5cb;
    --COLOR_SUB: #f5ffff;
    --COLOR_GRAD: linear-gradient(to right, var(--COLOR_PRIMARY), var(--COLOR_SECONDARY));
    --COLOR_GRAD2: linear-gradient(to bottom right, #f5fcff, var(--COLOR_WHITE));
    --COLOR_WHITE: #fff;
    --COLOR_STRONG: #c20000;
    --COLOR_BACKGROUND: #f5fcff;
    --COLOR_BACKGROUND02: #f2f6f7;
    --COLOR_BORDER: #e6e6e6;
    --COLOR_BORDER02: #787878;
    --COLOR_TEXT_DEFAULT: #000;
    --FONT_FAMILY_DEFAULT: "Noto Sans CJK JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Arial, sans-serif;
    --FONT_FAMILY_SERIF: "Yu Mincho", "serif";
    --TRANSITION_DEFAULT: .2s ease-in;
    --LAYER_LAYERED02: 20;
    --LAYER_LAYERED01: 10;
    --LAYER_DEFAULT: 0;
    --LAYER_BEHIND: -1;
    --FILTER_COLOR_SECONDARY: brightness(0) saturate(100%) invert(72%) sepia(19%) saturate(969%) hue-rotate(146deg) brightness(90%) contrast(80%);
}

.examinee-layout {
    display: -ms-grid;
    display: grid;

    -ms-grid-columns: minmax(0, 1fr);
    grid-template-columns: minmax(0, 1fr);
    gap: 60px;
}
@media print, screen and (min-width: 940px) {
    .examinee-layout[data-column="2"] {
        -ms-grid-columns: (minmax(0, 1fr))[2];
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.examinee-layout__item > *:first-child {
    margin-top: 0;
}

.examinee-layout-studentsFuture {
    position: relative;
    overflow: hidden;
    background-image: url("/examinee/images/renew/bg-index-01.png");
    background-size: contain;

    -webkit-margin-before: 49px;
    margin-block-start: 49px;
    margin-inline: calc(50% - 50cqi);
}
.examinee-layout-studentsFuture::after {
    position: absolute;
    z-index: var(--LAYER_DEFAULT);
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--COLOR_BACKGROUND02);
    content: "";
    opacity: .7;

    inset: 0;
}

.examinee-layout-studentsFuture__inner {
    position: relative;
    z-index: var(--LAYER_LAYERED01);
    max-width: 920px;
    padding: 35px 20px 258px;

    margin-inline: auto;
}
@media print, screen and (min-width: 940px) {
    .examinee-layout-studentsFuture__inner {
        padding: 32px 10px 148px;
    }
}
@media print, screen and (min-width: 1440px) {
    .examinee-layout-studentsFuture__inner {
        max-width: 1100px;
    }
}
.examinee-layout-studentsFuture__inner > *:first-child {
    margin-top: 0;
}

.examinee-layout-studentsFuture__heading {
    font-size: 2.8rem;
    text-align: center;
}

.examinee-layout-studentsFuture__box {
    display: -ms-grid;
    display: grid;

    -webkit-margin-before: 31px;
    margin-block-start: 31px;
    -ms-grid-columns: 1fr 10px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}
@media print, screen and (min-width: 940px) {
    .examinee-layout-studentsFuture__box {
        padding-inline: 55px;
        gap: 66px;
    }
}

.examinee-layout-studentsFuture__boxItem {
    background-color: var(--COLOR_WHITE);
    border-radius: 6px;

    padding-block: 17px;
}
@media print, screen and (min-width: 940px) {
    .examinee-layout-studentsFuture__boxItem {
        padding-block: 32px;
    }
}
.examinee-layout-studentsFuture__boxItem--pharmacy {
    --color-primary: #1e64b4;
    --icon-url: url("/examinee/images/renew/ico-index-01.png");
    --ratio-image: 57 / 54;
}
.examinee-layout-studentsFuture__boxItem--lifescience {
    --color-primary: #009696;
    --icon-url: url("/examinee/images/renew/ico-index-02.png");
    --ratio-image: 54 / 54;
}

.examinee-layout-studentsFuture__entrance {
    font-size: 2.2rem;
    color: var(--color-primary);
    text-align: center;
    line-height: 1.5;
}
@media print, screen and (min-width: 940px) {
    .examinee-layout-studentsFuture__entrance {
        font-size: 3.2rem;
    }
}

.examinee-layout-studentsFuture__ratio {
    font-weight: 700;
    font-size: 3.6rem;
    color: var(--color-primary);
    text-align: center;
    line-height: 1;

    -webkit-margin-before: 10px;
    margin-block-start: 10px;
}
@media print, screen and (min-width: 940px) {
    .examinee-layout-studentsFuture__ratio {
        font-size: 7.6rem;

        -webkit-margin-before: 20px;
        margin-block-start: 20px;
    }
}
.examinee-layout-studentsFuture__ratio::before {
    display: inline-block;
    width: 42px;
    height: 100%;
    background-image: var(--icon-url);
    background-size: contain;
    background-repeat: no-repeat;
    content: "";

    -webkit-margin-end: 6px;
    margin-inline-end: 6px;
    aspect-ratio: var(--ratio-image);
}
@media print, screen and (min-width: 940px) {
    .examinee-layout-studentsFuture__ratio::before {
        width: 54px;

        -webkit-margin-end: 16px;
        margin-inline-end: 16px;
    }
}

.examinee-layout-studentsFuture__ratioUnit {
    font-size: 1.8rem;
}
@media print, screen and (min-width: 940px) {
    .examinee-layout-studentsFuture__ratioUnit {
        font-size: 3.6rem;
    }
}

:root {
    --COLOR_PRIMARY: #008dbd;
    --COLOR_SECONDARY: #62b5cb;
    --COLOR_SUB: #f5ffff;
    --COLOR_GRAD: linear-gradient(to right, var(--COLOR_PRIMARY), var(--COLOR_SECONDARY));
    --COLOR_GRAD2: linear-gradient(to bottom right, #f5fcff, var(--COLOR_WHITE));
    --COLOR_WHITE: #fff;
    --COLOR_STRONG: #c20000;
    --COLOR_BACKGROUND: #f5fcff;
    --COLOR_BACKGROUND02: #f2f6f7;
    --COLOR_BORDER: #e6e6e6;
    --COLOR_BORDER02: #787878;
    --COLOR_TEXT_DEFAULT: #000;
    --FONT_FAMILY_DEFAULT: "Noto Sans CJK JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Arial, sans-serif;
    --FONT_FAMILY_SERIF: "Yu Mincho", "serif";
    --TRANSITION_DEFAULT: .2s ease-in;
    --LAYER_LAYERED02: 20;
    --LAYER_LAYERED01: 10;
    --LAYER_DEFAULT: 0;
    --LAYER_BEHIND: -1;
    --FILTER_COLOR_SECONDARY: brightness(0) saturate(100%) invert(72%) sepia(19%) saturate(969%) hue-rotate(146deg) brightness(90%) contrast(80%);
}

.examinee-list-news {
    -webkit-margin-before: 8px;
    margin-block-start: 8px;
}

.examinee-list-news__item {
    border-bottom: 1px solid var(--COLOR_BORDER);
}

.examinee-list-news__link {
    display: flex;
    flex-direction: column;
    text-decoration: none;

    gap: 8px;
    padding-block: 8px;
}
.examinee-list-news__link:hover .examinee-list-news__body, .examinee-list-news__link:active .examinee-list-news__body, .examinee-list-news__link:focus .examinee-list-news__body {
    color: var(--COLOR_SECONDARY);
}
@media print, screen and (min-width: 940px) {
    .examinee-list-news__link {
        padding-block: 16px;
    }
}

.examinee-list-news__head {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 8px;
}
@media print, screen and (min-width: 940px) {
    .examinee-list-news__head {
        gap: 10px;
    }
}
.examinee-list-news__head > .list-label-a {
    -webkit-margin-before: 0;
    margin-block-start: 0;
}

.examinee-list-news__date {
    font-size: 1rem;
    color: #a8a8a8;
}
@media print, screen and (min-width: 940px) {
    .examinee-list-news__date {
        font-size: 1.1rem;
    }
}

.examinee-list-news__body {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--COLOR_TEXT_DEFAULT);
}
@media print, screen and (min-width: 940px) {
    .examinee-list-news__body {
        font-size: 1.5rem;
    }
}

:root {
    --COLOR_PRIMARY: #008dbd;
    --COLOR_SECONDARY: #62b5cb;
    --COLOR_SUB: #f5ffff;
    --COLOR_GRAD: linear-gradient(to right, var(--COLOR_PRIMARY), var(--COLOR_SECONDARY));
    --COLOR_GRAD2: linear-gradient(to bottom right, #f5fcff, var(--COLOR_WHITE));
    --COLOR_WHITE: #fff;
    --COLOR_STRONG: #c20000;
    --COLOR_BACKGROUND: #f5fcff;
    --COLOR_BACKGROUND02: #f2f6f7;
    --COLOR_BORDER: #e6e6e6;
    --COLOR_BORDER02: #787878;
    --COLOR_TEXT_DEFAULT: #000;
    --FONT_FAMILY_DEFAULT: "Noto Sans CJK JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Arial, sans-serif;
    --FONT_FAMILY_SERIF: "Yu Mincho", "serif";
    --TRANSITION_DEFAULT: .2s ease-in;
    --LAYER_LAYERED02: 20;
    --LAYER_LAYERED01: 10;
    --LAYER_DEFAULT: 0;
    --LAYER_BEHIND: -1;
    --FILTER_COLOR_SECONDARY: brightness(0) saturate(100%) invert(72%) sepia(19%) saturate(969%) hue-rotate(146deg) brightness(90%) contrast(80%);
}

.examinee-media-layout {
    display: -ms-grid;
    display: grid;

    -webkit-margin-before: 37px;
    margin-block-start: 37px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto 16px auto;
    grid-template-areas: "media" "content";
    gap: 16px;
}
@media print, screen and (min-width: 940px) {
    .examinee-media-layout {
        grid-template-areas: "media content";
        -ms-grid-columns: fit-content(50%) 64px 1fr;
        grid-template-columns: fit-content(50%) 1fr;
        gap: 64px;
        place-items: start;
    }
}

.examinee-media-layout__media {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: media;
}

.examinee-panel__item > .examinee-media-layout__media {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.examinee-media-layout__content {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: content;
}
.examinee-media-layout__content > *:first-child {
    margin: 0;
}

.examinee-media-layout__mediaItem {
    width: 100%;
    height: 100%;
    vertical-align: top;

    object-fit: contain;
}

.top-navigation-inner {
    width: 100%;
    max-width: 1080px;
    margin: auto;
}
.top-navigation-wrapper {
    display: -ms-grid;
    display: grid;

    gap: 0 48px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}
.top-navigation-request {
    display: block;
    width: 100%;
    margin-top: 32px;
    padding: 20px 0;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--COLOR_WHITE);
    text-align: center;
    text-decoration: none;
    background-color: var(--COLOR_PRIMARY);
}
.top-navigation-request + .top-navigation-request {
    margin-top: 16px;
}
.top-navigation-search {
    max-width: 400px;
    margin: 30px auto 0;
}
.top-navigation-search ._sitesearch-search-button {
    width: 60px;
    margin-left: 0;
    font-size: 1.2rem;
}
.top-navigation-search ._sitesearch-search-input {
    padding: 12px 0 12px 30px;
    font-size: 1.2rem;
}
.top-navigation-search ._sitesearch-search-form::before {
    top: 12px;
    left: 10px;
}
.top-navigation-sns {
    position: relative;
    margin-top: 24px;
}
.top-navigation-sns::after, .top-navigation-sns::before {
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 10;
    display: block;
    width: 50vw;
    height: 100%;
    margin: auto;
    background-color: #242424;
    content: "";
}
.top-navigation-sns::after {
    right: 50%;
}
.top-navigation-sns::before {
    left: 50%;
}
.top-navigation-sns-link {
    position: relative;
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 26px;

    gap: 20px;
}
.top-navigation-sns-link > li > a:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
    opacity: .5;
}
.top-navigation-item.js-top-toggle.is-active > .js-top-toggle-hook > button::after {
    transform: rotate(90deg);
}
.top-navigation-item__heading {
    position: relative;
    font-weight: 700;
    font-size: 1.5rem;
    text-align: center;
    border-bottom: solid 1px var(--COLOR_BORDER);
}
.top-navigation-item__heading::before {
    position: absolute;
    top: 0;
    right: 25px;
    bottom: 0;
    display: block;
    width: 12px;
    height: 12px;
    margin: auto 0;
    background-color: var(--COLOR_PRIMARY);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}
.top-navigation-item__heading::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 18px;
    height: 2px;
    margin: auto;
    background-color: var(--COLOR_PRIMARY);
    content: "";
}
.top-navigation-item__heading > button {
    position: relative;
    display: block;
    width: 100%;
    padding: 25px 48px;
    font-weight: 700;
    color: #000;
    -webkit-appearance: none;
}
.top-navigation-item__heading > button > .js-status {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    opacity: 0;
}
.top-navigation-item__heading > button::before, .top-navigation-item__heading > button::after {
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    margin: auto 0;
    background-color: #fff;
    border-radius: 2px;
    content: "";
    transition: transform var(--TRANSITION_DEFAULT);
    pointer-events: none;
}
.top-navigation-item__heading > button::before {
    right: 27px;
    width: 8px;
    height: 2px;
}
.top-navigation-item__heading > button::after {
    right: 30px;
    width: 2px;
    height: 8px;
}
.top-navigation-item__list {
    margin-top: 0;
    padding: 24px 12px;
}
.top-navigation-item__list-link {
    font-size: 1.5rem;
}
@media print, screen and (min-width: 1164px) {
    .top-navigation-request {
        display: none;
    }
}
@media print, screen and (min-width: 940px) {
    .top-navigation-wrapper {
        gap: 25px 48px;
        -ms-grid-columns: 1fr 48px 1fr 48px 1fr;
        grid-template-columns: 1fr 1fr 1fr;
    }
    .top-navigation-sns {
        margin-top: 40px;
    }
    .top-navigation-item {
        display: block;
    }
    .top-navigation-item__heading {
        padding-bottom: 10px;
        text-align: left;
    }
    .top-navigation-item__heading::before {
        display: none !important;
    }
    .top-navigation-item__heading::after {
        right: unset;
        left: 0;
        width: 36px;
    }
}

._sitesearch-search-button {
    background-color: var(--COLOR_PRIMARY);
    background-image: var(--COLOR_GRAD);
}

.top-navigation-item__list-link::before {
    filter: var(--FILTER_COLOR_SECONDARY);
}

.examinee-navigation-link__list {
    display: -ms-grid;
    display: grid;

    gap: 24px 40px;
}
@media print, screen and (min-width: 940px) {
    .examinee-navigation-link__list[data-column-pc="3"] {
        -ms-grid-columns: 1fr 40px 1fr 40px 1fr;
        grid-template-columns: repeat(3, 1fr);
        gap: 25px 40px;
    }
}

.examinee-navigation-link__item {
    position: relative;
    border-bottom: solid 1px var(--COLOR_BORDER);
}
.examinee-navigation-link__item::after {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: auto;
    height: 3px;
    background-color: var(--COLOR_PRIMARY);
    content: "";
    transform: translateX(-50%);

    aspect-ratio: 36/3;
}
@media print, screen and (min-width: 940px) {
    .examinee-navigation-link__item::after {
        left: 0;
        transform: unset;
    }
}

.examinee-navigation-link__link {
    position: relative;
    display: block;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--COLOR_TEXT_DEFAULT);
    text-align: center;
    text-decoration: none;

    -webkit-padding-after: 11px;
    padding-block-end: 11px;
}
@media print, screen and (min-width: 940px) {
    .examinee-navigation-link__link {
        text-align: left;
    }
}
.examinee-navigation-link__link:hover::after, .examinee-navigation-link__link:active::after, .examinee-navigation-link__link:focus::after {
    right: .5em;
}
.examinee-navigation-link__link::after {
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 12px;
    height: 12px;
    background-image: url("/common/css/images/svg-sprite.svg");
    background-position: -203px -135px;
    content: "";
    filter: var(--FILTER_COLOR_SECONDARY);
    transition: right var(--TRANSITION_DEFAULT);
    transform: translateY(-50%);
}

:root {
    --COLOR_PRIMARY: #008dbd;
    --COLOR_SECONDARY: #62b5cb;
    --COLOR_SUB: #f5ffff;
    --COLOR_GRAD: linear-gradient(to right, var(--COLOR_PRIMARY), var(--COLOR_SECONDARY));
    --COLOR_GRAD2: linear-gradient(to bottom right, #f5fcff, var(--COLOR_WHITE));
    --COLOR_WHITE: #fff;
    --COLOR_STRONG: #c20000;
    --COLOR_BACKGROUND: #f5fcff;
    --COLOR_BACKGROUND02: #f2f6f7;
    --COLOR_BORDER: #e6e6e6;
    --COLOR_BORDER02: #787878;
    --COLOR_TEXT_DEFAULT: #000;
    --FONT_FAMILY_DEFAULT: "Noto Sans CJK JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Arial, sans-serif;
    --FONT_FAMILY_SERIF: "Yu Mincho", "serif";
    --TRANSITION_DEFAULT: .2s ease-in;
    --LAYER_LAYERED02: 20;
    --LAYER_LAYERED01: 10;
    --LAYER_DEFAULT: 0;
    --LAYER_BEHIND: -1;
    --FILTER_COLOR_SECONDARY: brightness(0) saturate(100%) invert(72%) sepia(19%) saturate(969%) hue-rotate(146deg) brightness(90%) contrast(80%);
}

.examinee-panel {
    display: -ms-grid;
    display: grid;

    -webkit-margin-before: 25px;
    margin-block-start: 25px;
    gap: 18px 20px;
}
@media print, screen and (min-width: 940px) {
    .examinee-panel {
        -webkit-margin-before: 16px;
        margin-block-start: 16px;
    }
}
.examinee-panel[data-column="2"] {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
}

.examinee-panel__item {
    position: relative;
    display: -ms-grid;
    display: grid;
    padding: 20px 30px 23px;
    color: var(--COLOR_TEXT_DEFAULT);
    text-decoration: none;
    background-color: #f8f8f8;
    border-radius: 5px 5px 0 0;
    transition: box-shadow var(--TRANSITION_DEFAULT);

    --color-entrance: #62b5cb;
    -ms-grid-rows: subgrid;
    grid-template-rows: subgrid;
    -ms-grid-row-span: 2;
    grid-row: span 2;
    grid-template-areas: "media" "title";
    row-gap: 11px;
}
.examinee-panel__item:hover, .examinee-panel__item:active, .examinee-panel__item:focus {
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
}
.examinee-panel__item--pharmacy {
    --color-entrance: #1e64b4;
}
.examinee-panel__item--lifescience {
    --color-entrance: #009696;
}
.examinee-panel__item[href]::after {
    position: absolute;
    right: 15px;
    bottom: 21px;
    display: block;
    width: 12px;
    height: 12px;
    background-image: url("/common/css/images/svg-sprite.svg");
    background-position: -203px -157px;
    content: "";
    filter: brightness(0) saturate(100%) invert(34%) sepia(96%) saturate(627%) hue-rotate(175deg) brightness(86%) contrast(95%);
}
.examinee-panel__item::before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 3px;
    background-image: linear-gradient(to left, var(--COLOR_BORDER) 40%, var(--color-entrance) 40%, var(--color-entrance) 55%, var(--COLOR_BORDER) 55%, var(--COLOR_BORDER) 100%);
    content: "";
}

.examinee-panel__title {
    text-align: center;

    -ms-grid-row: 3;
    -ms-grid-column: 1;
    --line-height: 1.5;
    grid-area: title;
}

.examinee-panel__entrance {
    display: block;
    font-size: 1.4rem;
    color: var(--color-entrance);
    line-height: var(--line-height);
}
@media print, screen and (min-width: 940px) {
    .examinee-panel__entrance {
        font-size: 1.6rem;
    }
}

.examinee-panel__text {
    display: block;
    font-size: 1.4rem;
    line-height: var(--line-height);
}
@media print, screen and (min-width: 940px) {
    .examinee-panel__text {
        font-size: 1.6rem;
    }
}

.examinee-panel__media {
    text-align: center;

    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: media;
}

.examinee-panel__item > .examinee-panel__media {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

@media print, screen and (min-width: 940px) {
    .examinee-media-layout__media {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .examinee-media-layout__content {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .examinee-panel__media {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
}

.examinee-panel-type2 {
    display: -ms-grid;
    display: grid;

    -webkit-margin-before: 28px;
    margin-block-start: 28px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 16px 41px;
}
@media print, screen and (min-width: 940px) {
    .examinee-panel-type2 {
        -webkit-margin-before: 24px;
        margin-block-start: 24px;
    }
}
@media print, screen and (min-width: 940px) {
    .examinee-panel-type2[data-column="2"] {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
}

.examinee-panel-type2__item {
    position: relative;
    display: -ms-grid;
    display: grid;
    overflow: hidden;
    padding: 25px;
    background-image: url("/examinee/images/renew/bg-index-01.png");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    border: 2px solid var(--color-primary);
    border-radius: 6px;

    -ms-grid-rows: subgrid;
    grid-template-rows: subgrid;
    -ms-grid-row-span: 4;
    grid-row: span 4;
    gap: 18px;
}
@media print, screen and (min-width: 940px) {
    .examinee-panel-type2__item {
        padding: 25px 25px 32px;

        gap: 25px;
    }
}
.examinee-panel-type2__item--pharmacy {
    --color-primary: #1e64b4;
    --color-secondary: #f1f5f9;
}
.examinee-panel-type2__item--lifescience {
    --color-primary: #009696;
    --color-secondary: #f5fcfc;
}
.examinee-panel-type2__item::after {
    position: absolute;
    z-index: var(--LAYER_DEFAULT);
    width: 100%;
    height: 100%;
    background-color: var(--color-secondary);
    content: "";
    opacity: .8;

    inset: 0;
}

.examinee-panel-type2__head {
    z-index: var(--LAYER_LAYERED01);
    display: -ms-grid;
    display: grid;

    -ms-grid-rows: subgrid;
    grid-template-rows: subgrid;
    -ms-grid-row-span: 2;
    grid-row: span 2;
    gap: 24px;
}

.examinee-panel-type2__media {
    display: -ms-grid;
    display: grid;

    place-items: center;
}

.examinee-panel-type2__body {
    z-index: var(--LAYER_LAYERED01);
    display: -ms-grid;
    display: grid;

    -ms-grid-rows: subgrid;
    grid-template-rows: subgrid;
    -ms-grid-row-span: 2;
    grid-row: span 2;
    gap: 8px;
}

.examinee-panel-type2__title {
    display: -ms-grid;
    display: grid;
    text-align: center;

    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
}

.examinee-panel-type2__entrance {
    text-align: center;
}

.examinee-panel-type2__entranceText {
    font-weight: 700;
    font-size: 2.4rem;
    color: var(--COLOR_WHITE);
    background-color: var(--color-primary);
    border-radius: 50vh;

    padding-inline: 25px;
}
@media print, screen and (min-width: 940px) {
    .examinee-panel-type2__entranceText {
        font-size: 2.4rem;
    }
}

.examinee-panel-type2__content {
    display: flex;
    flex-direction: column;
}
.examinee-panel-type2__content > .examinee-text {
    -ms-grid-row-align: center;

    -ms-grid-column-align: center;
    place-self: center;
}

@media print, screen and (min-width: 940px) {
    .examinee-panel-type2__contentText {
        align-self: center;
        -ms-grid-row-align: center;
    }
}

.examinee-panel-type2__mediaItem {
    width: 100%;
    height: auto;

    object-fit: cover;
}

.examinee-panel-type3 {
    display: -ms-grid;
    display: grid;

    -webkit-margin-before: 21px;
    margin-block-start: 21px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px 60px;
}
@media print, screen and (min-width: 940px) {
    .examinee-panel-type3 {
        -webkit-margin-before: 61px;
        margin-block-start: 61px;
    }
}
@media print, screen and (min-width: 940px) {
    .examinee-panel-type3[data-column="3"] {
        -ms-grid-columns: (1fr)[3];
        grid-template-columns: repeat(3, 1fr);
    }
}
.examinee-layout-studentsFuture + .examinee-panel-type3 {
    position: relative;
    z-index: var(--LAYER_LAYERED01);

    -webkit-margin-before: -234px;
    margin-block-start: -234px;
}
@media print, screen and (min-width: 940px) {
    .examinee-layout-studentsFuture + .examinee-panel-type3 {
        -webkit-margin-before: -87px;
        margin-block-start: -87px;
    }
}

.examinee-panel-type3__item {
    display: -ms-grid;
    display: grid;
    color: var(--COLOR_TEXT_DEFAULT);
    text-decoration: none;
    transition: box-shadow var(--TRANSITION_DEFAULT);

    -ms-grid-rows: subgrid;
    grid-template-rows: subgrid;
    -ms-grid-row-span: 2;
    grid-row: span 2;
    gap: 0;
}
.examinee-panel-type3__item:hover, .examinee-panel-type3__item:active, .examinee-panel-type3__item:focus {
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
}

.examinee-panel-type3__media {
    box-shadow: 0 2px 2px rgba(0, 0, 0, .24);
    transition: box-shadow var(--TRANSITION_DEFAULT);
}

.examinee-panel-type3__mediaItem {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

.examinee-panel-type3__content {
    position: relative;
    padding: 26px 51px 17px 24px;
    background-color: var(--COLOR_WHITE);
}
.examinee-panel-type3__content::before {
    position: absolute;
    bottom: 0;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 3px;
    background-image: linear-gradient(to right, var(--COLOR_SECONDARY) 31px, var(--COLOR_BORDER) 31px);
    content: "";
}
.examinee-panel-type3__content::after {
    position: absolute;
    top: 50%;
    right: 17px;
    display: block;
    width: 12px;
    height: 12px;
    background-image: url("/common/css/images/svg-sprite.svg");
    background-position: -93px -201px;
    content: "";
    filter: var(--FILTER_COLOR_SECONDARY);
    transform: translateY(-50%);
}

.examinee-panel-type3__corp {
    margin: 0;
}

.examinee-panel-type3__name {
    margin: 0;
}

body.site-top {
    padding: 109px 0 0;
}
@media print, screen and (min-width: 940px) {
    body.site-top {
        padding: 156px 0 0;
    }
}

:root {
    --COLOR_PRIMARY: #008dbd;
    --COLOR_SECONDARY: #62b5cb;
    --COLOR_SUB: #f5ffff;
    --COLOR_GRAD: linear-gradient(to right, var(--COLOR_PRIMARY), var(--COLOR_SECONDARY));
    --COLOR_GRAD2: linear-gradient(to bottom right, #f5fcff, var(--COLOR_WHITE));
    --COLOR_WHITE: #fff;
    --COLOR_STRONG: #c20000;
    --COLOR_BACKGROUND: #f5fcff;
    --COLOR_BACKGROUND02: #f2f6f7;
    --COLOR_BORDER: #e6e6e6;
    --COLOR_BORDER02: #787878;
    --COLOR_TEXT_DEFAULT: #000;
    --FONT_FAMILY_DEFAULT: "Noto Sans CJK JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Arial, sans-serif;
    --FONT_FAMILY_SERIF: "Yu Mincho", "serif";
    --TRANSITION_DEFAULT: .2s ease-in;
    --LAYER_LAYERED02: 20;
    --LAYER_LAYERED01: 10;
    --LAYER_DEFAULT: 0;
    --LAYER_BEHIND: -1;
    --FILTER_COLOR_SECONDARY: brightness(0) saturate(100%) invert(72%) sepia(19%) saturate(969%) hue-rotate(146deg) brightness(90%) contrast(80%);
}

.examinee-text {
    font-size: 1.3rem;

    -webkit-margin-before: 12px;
    margin-block-start: 12px;
}
@media print, screen and (min-width: 940px) {
    .examinee-text {
        font-size: 1.5rem;

        -webkit-margin-before: 16px;
        margin-block-start: 16px;
    }
}
