@charset "UTF-8";
/* ==============================================================================================
 Base
================================================================================================= */
:root {
    --COLOR_PRIMARY: #6d2970;
    --COLOR_SECONDARY: #821e8c;
    --COLOR_SUB: #fff5ff;
    --COLOR_GRAD: linear-gradient(90deg, #b864b8, #821e8c);
    --COLOR_GRAD2: linear-gradient(to bottom right, #fff5ff, 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;
}

#exam {
    --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));
    --FILTER_COLOR_SECONDARY: brightness(0) saturate(100%) invert(72%) sepia(19%) saturate(969%) hue-rotate(146deg) brightness(90%) contrast(80%);
}

#pharm {
    --COLOR_PRIMARY: #1e64b4;
    --COLOR_SECONDARY: #3278d2;
    --COLOR_SUB: #f2f8ff;
    --COLOR_GRAD: linear-gradient(to right, var(--COLOR_PRIMARY), var(--COLOR_SECONDARY));
    --COLOR_GRAD2: linear-gradient(to bottom right, #f5fcff, var(--COLOR_WHITE));
    --FILTER_COLOR_SECONDARY: brightness(0) saturate(100%) invert(44%) sepia(56%) saturate(768%) hue-rotate(175deg) brightness(88%) contrast(93%);
}

#life-sci {
    --COLOR_PRIMARY: #008dbd;
    --COLOR_SECONDARY: #28b4b4;
    --COLOR_SUB: #f2f8ff;
    --COLOR_GRAD: linear-gradient(to right, var(--COLOR_PRIMARY), var(--COLOR_SECONDARY));
    --COLOR_GRAD2: linear-gradient(to bottom right, #f5fcff, var(--COLOR_WHITE));
    --FILTER_COLOR_SECONDARY: brightness(0) saturate(100%) invert(72%) sepia(19%) saturate(969%) hue-rotate(146deg) brightness(90%) contrast(80%);
}

/* ==============================================================================================
Unique
================================================================================================= */
@media print, screen and (min-width: 940px) {
    .btn-a._top {
        width: 100%;
        min-width: initial;
    }
}
@media print, screen and (min-width: 1440px) {
    .btn-a._top {
        width: auto;
        min-width: 438px;
    }
}

.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: #fff;
    border: solid 2px var(--COLOR_PRIMARY);
    border-radius: 50%;
    transition: width .2s, height .2s;
}
.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: #fff;
    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 {
    margin-top: 52px;
}
.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;
    }
}

.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;
    }
}

.top-hdg-lv2-a {
    display: flex;
    align-items: center;
    padding: 30px 0;
    font-weight: 600;
    font-family: "Yu Mincho", "serif";
    background-image: url("/images/bg-index-01.png"), url("/images/bg-index-01.png");
    background-position: -15px top, 30px bottom;
    background-size: 200px 20px, 200px 20px;
    background-repeat: no-repeat;

    gap: 20px;
}
@media print, screen and (min-width: 940px) {
    .top-hdg-lv2-a {
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
        background-position: -55px top, 60px bottom;
        background-size: 200px 20px, 200px 20px;

        gap: 35px;
    }
}
@media print, screen and (min-width: 1440px) {
    .top-hdg-lv2-a {
        background-position: left top, right bottom;
    }
}
.top-hdg-lv2-a__txt {
    font-size: 2.7rem;
    color: #462850;
}
@media print, screen and (min-width: 940px) {
    .top-hdg-lv2-a__txt {
        font-size: 4.8rem;
        letter-spacing: 1rem;
        -ms-writing-mode: tb-rl;

        writing-mode: vertical-rl;
        text-orientation: upright;
    }
}
.top-hdg-lv2-a__sub {
    font-size: 1rem;
    color: #821e8c;
}
@media print, screen and (min-width: 940px) {
    .top-hdg-lv2-a__sub {
        font-size: 1.5rem;
    }
}

.top-hdg-lv3-a {
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}
@media print, screen and (min-width: 940px) {
    .top-hdg-lv3-a {
        flex-direction: row;
        align-items: center;
        margin-top: 80px;

        gap: 40px;
    }
}
.top-hdg-lv3-a__num {
    font-weight: 900;
    font-size: 3.2rem;
    color: #462850;
}
@media print, screen and (min-width: 940px) {
    .top-hdg-lv3-a__num {
        font-size: 4.8rem;
    }
}
.top-hdg-lv3-a__txt {
    font-weight: 600;
    font-size: 2.4rem;
    font-family: "Yu Mincho", "serif";
    color: #462850;
    line-height: 1.4;
}
@media print, screen and (min-width: 940px) {
    .top-hdg-lv3-a__txt {
        font-size: 3rem;
    }
}

.top-hdg-lv3-b {
    margin-top: 16px;
    font-weight: 700;
    font-size: 24px;
    color: var(--COLOR_SECONDARY);
    line-height: 1.5;
}
.top-hdg-lv3-b + * {
    margin-top: 16px;
}

.top-lyt-a {
    display: flex;
    flex-direction: column;

    gap: 48px;
}
@media print, screen and (min-width: 940px) {
    .top-lyt-a {
        display: -ms-grid;
        display: grid;

        -ms-grid-columns: minmax(0, 1fr) 40px minmax(0, 1fr);
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 40px;
    }
}
.top-lyt-a--narrow {
    gap: 24px;
}
.top-lyt-a--reverse {
    flex-direction: column-reverse;
}
@media print, screen and (min-width: 940px) {
    .top-lyt-a--reverse {
        align-items: center;
        direction: rtl;
    }
}
.top-lyt-a__item {
    direction: ltr;
}
.top-lyt-a__item > :first-child {
    margin-top: 0;
}

@media print, screen and (min-width: 940px) {
    .top-lyt-about-a {
        display: -ms-grid;
        display: grid;

        -ms-grid-columns: fit-content(200px) 1fr;
        grid-template-columns: fit-content(200px) 1fr;
    }
}
@media print, screen and (min-width: 940px) {
    .top-lyt-about-a__hdg {
        width: clamp(200px, 18.0555555556vw, 260px);
    }
}
.top-lyt-about-a__contents {
    margin-top: 24px;
}
.top-lyt-about-a__contents > :first-child {
    margin-top: 0;
}
@media print, screen and (min-width: 940px) {
    .top-lyt-about-a__contents {
        margin-top: 80px;
    }
}
.top-lyt-about-a__detail {
    margin-top: 24px;
}
@media print, screen and (min-width: 940px) {
    .top-lyt-about-a__detail {
        margin-top: 32px;
    }
}
.top-lyt-about-a__detail img {
    width: 100%;
    height: auto;
}

.top-lyt-about-b {
    display: flex;
    flex-direction: column-reverse;

    gap: 24px;
}
.top-lyt-about-b__title {
    display: flex;
    align-items: center;
    color: #462850;

    gap: 12px;
}
.top-lyt-about-b__title .list-label-a {
    margin-top: 0;
}
.top-lyt-about-b__txt {
    font-weight: bold;
    font-size: 2.2rem;
    line-height: 1;
}
@media print, screen and (min-width: 940px) {
    .top-lyt-about-b__txt {
        font-size: 2.4rem;

        gap: 12px;
    }
}

.top-lyt-interview-a {
    display: -ms-grid;
    display: grid;

    gap: 16px;
}
@media print, screen and (min-width: 940px) {
    .top-lyt-interview-a {
        -ms-grid-columns: auto 40px fit-content(45%);
        grid-template-columns: auto fit-content(45%);
        gap: 40px;
    }
}

.top-lyt-interview-b {
    display: -ms-grid;
    display: grid;

    gap: 16px;
}
@media print, screen and (min-width: 940px) {
    .top-lyt-interview-b {
        place-content: flex-start;
    }
}

.top-lyt-education {
    display: -ms-grid;
    display: grid;
    margin-top: 24px;

    gap: 64px;
}
.top-lyt-education__item img {
    width: 100%;
    height: auto;
}
@media print, screen and (min-width: 940px) {
    .top-lyt-education {
        -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
    }
    .top-lyt-education__item {
        display: -ms-grid;
        display: grid;

        -ms-grid-columns: subgrid;
        grid-template-columns: subgrid;
        -ms-grid-row-span: 4;
        grid-row: span 4;
    }
}

.top-list-news-a {
    margin-top: 8px;
}
.top-list-news-a__item {
    border-bottom: 1px solid #e6e6e6;
}
.top-list-news-a__link {
    display: flex;
    flex-direction: column;
    padding: 8px 0;
    text-decoration: none;

    gap: 8px;
}
.top-list-news-a__link:hover .top-list-news-a__txt, .top-list-news-a__link:active .top-list-news-a__txt, .top-list-news-a__link:focus .top-list-news-a__txt {
    color: #6d2970;
}
@media print, screen and (min-width: 940px) {
    .top-list-news-a__link {
        padding: 16px 0;
    }
}
.top-list-news-a__lyt {
    display: flex;
    flex-wrap: wrap;
    align-items: center;

    gap: 8px;
}
@media print, screen and (min-width: 940px) {
    .top-list-news-a__lyt {
        gap: 10px;
    }
}
.top-list-news-a__lyt > .list-label-a {
    margin-top: 0;
}
.top-list-news-a__date {
    font-size: 1rem;
    color: #a8a8a8;
}
@media print, screen and (min-width: 940px) {
    .top-list-news-a__date {
        font-size: 1.1rem;
    }
}
.top-list-news-a__txt {
    font-weight: 700;
    font-size: 1.3rem;
    color: #282828;
}
@media print, screen and (min-width: 940px) {
    .top-list-news-a__txt {
        font-size: 1.5rem;
    }
}

.top-list-bnr-a {
    display: -ms-grid;
    display: grid;

    -ms-grid-columns: 1fr 8px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
@media print, screen and (min-width: 940px) {
    .top-list-bnr-a {
        -ms-grid-columns: 1fr 5px 1fr 5px 1fr 5px 1fr;
        grid-template-columns: repeat(4, 1fr);
        gap: 16px 5px;
    }
}
.top-list-bnr-a__link:hover .top-list-bnr-a__img img, .top-list-bnr-a__link:active .top-list-bnr-a__img img, .top-list-bnr-a__link:focus .top-list-bnr-a__img img {
    transform: scale(1.04);
}
.top-list-bnr-a__img {
    overflow: hidden;
}
.top-list-bnr-a__img img {
    width: 100%;
    height: auto;
    transition: transform .2s;
}

@media print, screen and (min-width: 940px) {
    .list-tab-wrap._top {
        padding-bottom: 5px;
        border-bottom: none;

        scrollbar-width: thin;
    }
    .list-tab-wrap._top > .list-tab-a > li {
        border-bottom: 1px solid #6d2970;
    }
}

.top-pnl-interview-a--primary .top-pnl-interview-a__link {
    display: flex;
    flex-direction: column-reverse;
    direction: initial;
}
.top-pnl-interview-a--primary .top-pnl-interview-a__img img {
    width: 100%;
}
.top-pnl-interview-a--primary .top-pnl-interview-a__lead {
    font-size: 1.8rem;
}
@media print, screen and (min-width: 940px) {
    .top-pnl-interview-a--primary .top-pnl-interview-a__lead {
        font-size: 2rem;
    }
}
.top-pnl-interview-a--primary .top-pnl-interview-a__lead + [class^=top-pnl-interview-a__] {
    margin-top: 12px;
}
.top-pnl-interview-a--primary .top-pnl-interview-a__title {
    font-size: 1.3rem;
}
@media print, screen and (min-width: 940px) {
    .top-pnl-interview-a--primary .top-pnl-interview-a__title {
        font-size: 1.7rem;
    }
}
.top-pnl-interview-a--primary .top-pnl-interview-a__profile {
    font-size: 1.3rem;
}
@media print, screen and (min-width: 940px) {
    .top-pnl-interview-a--primary .top-pnl-interview-a__profile {
        font-size: 1.5rem;
    }
}
.top-pnl-interview-a--primary .top-pnl-interview-a__label {
    top: 10px;
    left: 13px;
    width: 50px;
    height: 58px;
    font-size: 1.1rem;
    line-height: 1.3;
}
@media print, screen and (min-width: 940px) {
    .top-pnl-interview-a--primary .top-pnl-interview-a__label {
        top: 16px;
        left: 17px;
    }
}
.top-pnl-interview-a--primary .top-pnl-interview-a__label--pharm {
    padding: 22px 0;
}
.top-pnl-interview-a--primary .top-pnl-interview-a__label--life-sci {
    padding: 14px 0;
}
.top-pnl-interview-a__link {
    display: -ms-grid;
    display: grid;
    text-decoration: none;
    direction: rtl;

    -ms-grid-columns: auto 16px fit-content(45%);
    grid-template-columns: auto fit-content(45%);
    gap: 16px;
}
.top-pnl-interview-a__link:hover .top-pnl-interview-a__lead, .top-pnl-interview-a__link:hover .top-pnl-interview-a__title, .top-pnl-interview-a__link:hover .top-pnl-interview-a__profile, .top-pnl-interview-a__link:active .top-pnl-interview-a__lead, .top-pnl-interview-a__link:active .top-pnl-interview-a__title, .top-pnl-interview-a__link:active .top-pnl-interview-a__profile, .top-pnl-interview-a__link:focus .top-pnl-interview-a__lead, .top-pnl-interview-a__link:focus .top-pnl-interview-a__title, .top-pnl-interview-a__link:focus .top-pnl-interview-a__profile {
    color: #6d2970;
}
.top-pnl-interview-a__link:hover .top-pnl-interview-a__img img, .top-pnl-interview-a__link:active .top-pnl-interview-a__img img, .top-pnl-interview-a__link:focus .top-pnl-interview-a__img img {
    transform: scale(1.04);
}
.top-pnl-interview-a__content {
    direction: ltr;
}
.top-pnl-interview-a__lead {
    font-weight: 700;
    font-size: 1.4rem;
    color: #282828;
}
.top-pnl-interview-a__lead + [class^=top-pnl-interview-a__] {
    margin-top: 8px;
}
.top-pnl-interview-a__title {
    display: inline-block;
    font-size: 1.2rem;
    color: #282828;
}
.top-pnl-interview-a__profile {
    display: flex;
    flex-wrap: wrap;
    font-size: 1.2rem;
    color: #282828;

    gap: 0 14px;
}
.top-pnl-interview-a__img {
    position: relative;
    overflow: hidden;
}
.top-pnl-interview-a__img img {
    height: auto;
    transition: transform .2s;
}
.top-pnl-interview-a__label {
    position: absolute;
    top: 5px;
    left: 7px;
    z-index: 10;
    width: 39px;
    height: 45px;
    font-size: .9rem;
    color: #fff;
    text-align: center;
    line-height: 1.6;
    background-size: contain;
    background-repeat: no-repeat;
}
@media print, screen and (min-width: 940px) {
    .top-pnl-interview-a__label {
        top: 7px;
        left: 8px;
    }
}
.top-pnl-interview-a__label--life-sci {
    padding: 8px 0;
    background-image: url("/common/css/images/ico-shape-life-01.png");
}
.top-pnl-interview-a__label--pharm {
    padding: 16px 0;
    background-image: url("/common/css/images/ico-shape-pharm-01.png");
}
.top-pnl-interview-a__label-block {
    display: inline-block;
}

.top-pnl-mv-list {
    display: -ms-grid;
    display: grid;
    align-items: stretch;
    max-width: 1320px;
    margin: 24px auto 0;

    gap: 16px;
    -ms-grid-columns: 1fr 16px 1fr;
    grid-template-columns: 1fr 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
}

.top-pnl-mv-list > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
}

.top-pnl-mv-list > *:nth-child(2) {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
}
@media print, screen and (max-width: 1439px) {
    .top-pnl-mv-list {
        padding-inline: 20px;
    }
}
@media print, screen and (min-width: 940px) {
    .top-pnl-mv-list {
        margin: -24px auto 0;

        gap: 24px;
        -ms-grid-columns: 1fr 24px 1fr 24px 1fr;
        grid-template-columns: repeat(3, 1fr);
        -ms-grid-rows: auto;
        grid-template-rows: auto;
    }
    .top-pnl-mv-list > *:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-column: 1;
    }
    .top-pnl-mv-list > *:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-column: 3;
    }
    .top-pnl-mv-list > *:nth-child(3) {
        -ms-grid-row: 1;
        -ms-grid-column: 5;
    }
}
.top-pnl-mv-list-item {
    position: relative;
    z-index: 10;
}
.top-pnl-mv-list-item:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-area: 1/1/2/3;
}
.top-pnl-mv-list-item:nth-child(2) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-area: 2/1/3/2;
}
.top-pnl-mv-list-item:nth-child(3) {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-area: 2/2/3/3;
}
.top-pnl-mv-list-item:nth-child(2) > .top-pnl-mv-list-item__link, .top-pnl-mv-list-item:nth-child(3) > .top-pnl-mv-list-item__link {
    flex-direction: column-reverse;
}
@media print, screen and (min-width: 940px) {
    .top-pnl-mv-list-item:nth-child(1) {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 1;
        -ms-grid-column-span: 1;
        grid-area: 1/1/2/2;
    }
    .top-pnl-mv-list-item:nth-child(2) {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 2;
        -ms-grid-column-span: 1;
        grid-area: 1/2/2/3;
    }
    .top-pnl-mv-list-item:nth-child(3) {
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        -ms-grid-column: 3;
        -ms-grid-column-span: 1;
        grid-area: 1/3/2/4;
    }
    .top-pnl-mv-list-item:nth-child(2) > .top-pnl-mv-list-item__link, .top-pnl-mv-list-item:nth-child(3) > .top-pnl-mv-list-item__link {
        flex-direction: row-reverse;
    }
}
.top-pnl-mv-list-item__link {
    position: relative;
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 16px 32px;
    color: #000;
    text-decoration: none;
    background: #fff;
    border-bottom: solid 8px;
    border-image: linear-gradient(90deg, #b864b8, #821e8c) 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, .24);
    transition: box-shadow .2s;

    gap: 8px;
}
.top-pnl-mv-list-item__link::after {
    position: absolute;
    right: 0;
    bottom: -8px;
    z-index: 10;
    display: block;
    width: 48px;
    height: 8px;
    content: "";
}
.top-pnl-mv-list-item__link:hover, .top-pnl-mv-list-item__link:active, .top-pnl-mv-list-item__link:focus {
    box-shadow: 0 4px 10px rgba(0, 0, 0, .3);
}
.top-pnl-mv-list-item__link._exam > .top-pnl-mv-list-item__textbox {
    flex-direction: row;
}
@media print, screen and (min-width: 940px) {
    .top-pnl-mv-list-item__link._exam > .top-pnl-mv-list-item__textbox {
        flex-direction: column;
    }
}
.top-pnl-mv-list-item__link._exam::after {
    background-color: #4cb1ff;
}
.top-pnl-mv-list-item__link._pharm::after {
    background-color: #3278d2;
}
.top-pnl-mv-list-item__link._life-sci::after {
    background-color: #28b4b4;
}
.top-pnl-mv-list-item__title {
    font-size: 1.8rem;
    text-align: center;
}
.top-pnl-mv-list-item__textbox {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 8px;
}
.top-pnl-mv-list-item__text {
    margin-top: 0;
    font-size: 1rem;
}
.top-pnl-mv-list-item__image {
    width: 32px;
    height: auto;
}
@media print, screen and (min-width: 940px) {
    .top-pnl-mv-list-item__link {
        height: 200px;
        padding: 32px;

        gap: 28px;
    }
    .top-pnl-mv-list-item__title {
        font-size: 2.4rem;
        text-align: left;
    }
    .top-pnl-mv-list-item__textbox {
        align-items: flex-start;

        gap: 12px;
    }
    .top-pnl-mv-list-item__text {
        font-size: 1.4rem;
    }
    .top-pnl-mv-list-item__image {
        width: 60px;
    }
}

.top-pnl-mv-link {
    display: flex;
    margin-top: 40px;
    margin-bottom: 20px;
}
.top-pnl-mv-link-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 24px;
    text-align: center;
    text-decoration: none;
    border-right: solid 1px #e6e6e6;

    gap: 18px;
}
.top-pnl-mv-link-item:last-child {
    border-right: unset;
}
.top-pnl-mv-link-item__image {
    width: 40px;
    height: auto;
}
.top-pnl-mv-link-item__title {
    width: 100%;
    margin-top: 0;
    font-weight: 700;
    font-size: 1.5rem;
    color: #282828;
}
.top-pnl-mv-link-item:hover > .top-pnl-mv-link-item__title, .top-pnl-mv-link-item:active > .top-pnl-mv-link-item__title, .top-pnl-mv-link-item:focus > .top-pnl-mv-link-item__title {
    color: #6d2970;
}
@media print, screen and (min-width: 940px) {
    .top-pnl-mv-link {
        margin-bottom: 36px;

        gap: 24px;
    }
    .top-pnl-mv-link-item {
        flex-direction: row;
        padding: 0 30px 24px 0;
        border-right: unset;
        border-bottom: solid 1px #e6e6e6;

        gap: 0;
    }
    .top-pnl-mv-link-item:first-child {
        border-left: unset;
    }
}

.top-pnl-education {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 34px;

    gap: 24px;
}
.top-pnl-education + .top-lyt-education {
    margin-top: 90px;
}
.top-pnl-education__item {
    position: relative;
    display: -ms-grid;
    display: grid;
    flex: 0 0 350px;
    padding: 40px;
    text-decoration: none;
    box-shadow: 12px 12px 24px 0 rgba(0, 0, 0, .1);

    --local-outline: #37c7e8;
    gap: 30px;
    -ms-grid-columns: auto 30px 1fr;
    grid-template-columns: auto 1fr;
}
.top-pnl-education__item::before, .top-pnl-education__item::after {
    position: absolute;
    bottom: 0;
    height: 8px;
    content: "";
}
.top-pnl-education__item::before {
    left: 0;
    width: 85%;
    background: linear-gradient(90deg, #1ecccc 30.83%, #00a6a6 100%);
}
.top-pnl-education__item::after {
    right: 0;
    width: 15%;
    background-color: var(--local-outline);
}
.top-pnl-education__icon {
    min-width: 70px;
    height: 70px;

    object-fit: contain;
}
.top-pnl-education__title {
    font-weight: bold;
    font-size: 24px;
    color: #004d4d;
}
.top-pnl-education__sub {
    font-size: 13px;
    color: #282828;
}

.top-site-contents-a {
    display: -ms-grid;
    display: grid;
    margin-top: 32px;

    -ms-grid-columns: 1fr 20px minmax(335px, 1320px) 20px 1fr;
    grid-template-columns: 1fr minmax(335px, 1320px) 1fr;
    gap: 0 20px;
}
@media print, screen and (min-width: 940px) {
    .top-site-contents-a {
        margin-top: 48px;
    }
}
.top-site-contents-a__inner {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
}

.top-site-contents-b {
    display: -ms-grid;
    display: grid;
    margin-top: 56px;
    padding-bottom: 105px;
    background-image: url("/images/bg-index-03.png"), url("/images/bg-index-02.png");
    background-position: right top, left bottom;
    background-size: 100px 100px, 400px 400px;
    background-repeat: no-repeat;

    -ms-grid-columns: 1fr 20px minmax(335px, auto) 20px 1fr;
    grid-template-columns: 1fr minmax(335px, auto) 1fr;
    gap: 0 20px;
}
@media print, screen and (min-width: 940px) {
    .top-site-contents-b {
        margin-top: 80px;
        background-image: url("/images/bg-index-02.png"), url("/images/bg-index-02.png");
        background-size: initial;

        -ms-grid-columns: 1fr initial auto initial 20px initial 1fr;
        grid-template-columns: 1fr auto 20px 1fr;
        gap: initial;
    }
}
@media print, screen and (min-width: 1440px) {
    .top-site-contents-b {
        -ms-grid-columns: 1fr minmax(auto, 1700px) 60px 1fr;
        grid-template-columns: 1fr minmax(auto, 1700px) 60px 1fr;
    }
}
.top-site-contents-b__inner {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
}

.top-site-contents-c {
    display: -ms-grid;
    display: grid;
    background-repeat: no-repeat;

    -ms-grid-columns: 1fr 20px minmax(335px, 1320px) 20px 1fr;
    grid-template-columns: 1fr minmax(335px, 1320px) 1fr;
    gap: 0 20px;
}
.top-site-contents-c__inner {
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
    grid-column: 2/3;
}

#pharm .top-site-contents-c {
    background-image: url("/common/css/images/ico-shape-pharm-11.png"), url("/common/css/images/ico-shape-pharm-12.png");
    background-position: left top, right center;
    background-size: 150px 150px, 200px 200px;
}
@media print, screen and (min-width: 940px) {
    #pharm .top-site-contents-c {
        background-position: -130px top, 85vw center;
        background-size: initial;
    }
}

#life-sci .top-site-contents-c {
    background-image: url("/common/css/images/ico-shape-life-11.png"), url("/common/css/images/ico-shape-life-12.png");
    background-position: left top, right center;
    background-size: 150px 150px, 200px 200px;
}
@media print, screen and (min-width: 940px) {
    #life-sci .top-site-contents-c {
        background-position: 0 top, 82vw center;
        background-size: initial;
    }
}

.top-txt-about-a {
    margin-top: 24px;
}
@media print, screen and (min-width: 940px) {
    .top-txt-about-a {
        margin-top: 16px;
    }
}

@media print, screen and (min-width: 1440px) {
    .top-txt-about-b {
        width: 438px;

        margin-inline: auto;
    }
}
