@charset "UTF-8";
/* ==========================================================
Name:
    module.css

Description:
    サイトで共通使用する汎用モジュールのスタイルを記述する
    アルファベット降順(A->Z)に記述する

Contents:
    layout
    component
    utility
========================================================== */
/* ==========================================================
*
*   layout
*
========================================================== */
/* ---------------------------------------------
*   contents
--------------------------------------------- */
.contents {
    margin-top: 14.30556vw;
}

@media screen and (min-width: 1100px) {
    .contents {
        margin-top: 206px;
    }
}

@media screen and (max-width: 767px) {
    .contents {
        margin-top: 100px;
    }
}

.contents--top {
    margin-top: 8.54167vw;
}

@media screen and (min-width: 1100px) {
    .contents--top {
        margin-top: 103px;
    }
}

@media screen and (max-width: 767px) {
    .contents--top {
        margin-top: 79px;
    }
}

.contents--index {
    margin-top: 0;
    height: 100%;
}

body.ie .contents--index {
    overflow-y: scroll;
}

@media screen and (max-width: 767px) {
    .contents--index {
        max-height: auto;
    }
    body.ie .contents--index {
        overflow-y: auto;
    }
}

/* ---------------------------------------------
*   footer
--------------------------------------------- */
.footer {
    position: relative;
}

/*  footer-pagetop
--------------------------------------------- */
.footer-pagetop {
    position: fixed;
    right: 5.20833vw;
    bottom: 60px;
    z-index: 9;
    display: none;
}

@media screen and (min-width: 1100px) {
    .footer-pagetop {
        right: 75px;
    }
}

@media screen and (max-width: 767px) {
    .footer-pagetop {
        right: 3.91134vw;
        bottom: 30px;
    }
}

.footer-pagetop--absolute {
    position: absolute;
}

.footer-pagetop.is-absolute {
    position: absolute;
    top: -120px;
    bottom: auto;
}

@media screen and (max-width: 767px) {
    .footer-pagetop.is-absolute {
        top: -18.25293vw;
        bottom: 30px;
    }
}

.footer-pagetop__link {
    position: relative;
    display: block;
    overflow: hidden;
    width: 4.16667vw;
    height: 4.16667vw;
    background-color: #4E1A84;
}

@media screen and (min-width: 1100px) {
    .footer-pagetop__link {
        width: 60px;
        height: 60px;
    }
}

@media screen and (min-width: 768px) {
    .footer-pagetop__link:hover {
        background-color: rgba(78, 26, 132, 0.7);
        -webkit-transition: background-color .3s;
        transition: background-color .3s;
    }
}

@media screen and (max-width: 767px) {
    .footer-pagetop__link {
        width: 35px;
        height: 35px;
    }
}

.footer-pagetop__link:before, .footer-pagetop__link:after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/img/common/arrow.svg) 45% 50% no-repeat;
    background-size: 7px auto;
    content: '';
}

body.ie .footer-pagetop__link:before, body.ie .footer-pagetop__link:after {
    background-size: 30px auto;
}

@media screen and (max-width: 767px) {
    .footer-pagetop__link:before, .footer-pagetop__link:after {
        background-size: 4px auto;
    }
}

.footer-pagetop__link:before {
    top: 0;
}

.footer-pagetop__link:after {
    top: 100%;
    opacity: 0;
}

.footer-pagetop__link:hover:before {
    -webkit-animation-name: arrowbefore;
    animation-name: arrowbefore;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@media screen and (max-width: 767px) {
    .footer-pagetop__link:hover:before {
        -webkit-animation: none;
        animation: none;
    }
}

.footer-pagetop__link:hover:after {
    -webkit-animation-name: arrowafter;
    animation-name: arrowafter;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

@media screen and (max-width: 767px) {
    .footer-pagetop__link:hover:after {
        -webkit-animation: none;
        animation: none;
    }
}

@-webkit-keyframes arrowbefore {
    100% {
        top: -4em;
        opacity: 0;
    }
}

@keyframes arrowbefore {
    100% {
        top: -4em;
        opacity: 0;
    }
}

@-webkit-keyframes arrowafter {
    100% {
        top: .2em;
        opacity: 1;
    }
}

@keyframes arrowafter {
    100% {
        top: .2em;
        opacity: 1;
    }
}

/*  footer-box
--------------------------------------------- */
.footer-box {
    margin-right: auto;
    margin-left: auto;
    max-width: 76.38889vw;
}

@media screen and (min-width: 1100px) {
    .footer-box {
        max-width: 1100px;
    }
}

@media screen and (max-width: 767px) {
    .footer-box {
        max-width: 89.96089vw;
    }
}

/*  footer-nav
--------------------------------------------- */
.footer-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 6.11111vw;
}

@media screen and (min-width: 1100px) {
    .footer-nav {
        margin-bottom: 88px;
    }
}

@media screen and (max-width: 767px) {
    .footer-nav {
        display: block;
        margin-bottom: 3.91134vw;
    }
}

.footer-nav__list {
    padding-bottom: 1.38889vw;
    border-right: 1px solid rgba(64, 64, 64, 0.3);
}

@media screen and (min-width: 1100px) {
    .footer-nav__list {
        padding-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .footer-nav__list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 100%;
        border-right: none;

        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.footer-nav__list--left {
    padding-left: 6.94444vw;
    width: 22.77778vw;
}

@media screen and (min-width: 1100px) {
    .footer-nav__list--left {
        padding-left: 100px;
        width: 328px;
    }
}

@media screen and (max-width: 767px) {
    .footer-nav__list--left {
        padding-left: 0;
        width: 100%;
    }
}

.footer-nav__list--center {
    padding-left: 5.27778vw;
    width: 25.55556vw;
}

@media screen and (min-width: 1100px) {
    .footer-nav__list--center {
        padding-left: 76px;
        width: 368px;
    }
}

@media screen and (max-width: 767px) {
    .footer-nav__list--center {
        padding-left: 0;
        width: 100%;
    }
}

.footer-nav__list--right {
    padding-left: 5.41667vw;
    width: 28.05556vw;
}

@media screen and (min-width: 1100px) {
    .footer-nav__list--right {
        padding-left: 78px;
        width: 404px;
    }
}

@media screen and (max-width: 767px) {
    .footer-nav__list--right {
        padding-left: 0;
        width: 100%;
    }
}

.footer-nav__list:last-of-type {
    border-right: none;
}

.footer-nav__list-item {
    margin-top: 1.80556vw;
}

@media screen and (min-width: 1100px) {
    .footer-nav__list-item {
        margin-top: 26px;
    }
}

@media screen and (max-width: 767px) {
    .footer-nav__list-item {
        margin-top: 0;
        width: 50%;
    }
}

.footer-nav__list-item:first-of-type {
    margin-top: 0.41667vw;
}

@media screen and (min-width: 1100px) {
    .footer-nav__list-item:first-of-type {
        margin-top: 6px;
    }
}

@media screen and (max-width: 767px) {
    .footer-nav__list-item:first-of-type {
        margin-top: 0;
    }
}

@media screen and (max-width: 767px) {
    .footer-nav__list-item--program {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .footer-nav__list-item--en {
        width: 100%;
    }
}

.footer-nav__link {
    position: relative;
    display: inline-block;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 200;
    font-size: 1.11111vw;
    line-height: 1.5;
}

@media screen and (min-width: 1100px) {
    .footer-nav__link {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .footer-nav__link {
        font-size: 3.12907vw;
    }
}

.footer-nav__link:before {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 0;
    height: 1px;
    background-color: rgba(64, 64, 64, 0.5);
    content: "";
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media screen and (max-width: 767px) {
    .footer-nav__link:before {
        -webkit-transition: none;
        transition: none;
    }
}

.footer-nav__link:hover:before {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .footer-nav__link:hover:before {
        width: 0;
    }
}

.footer-nav__link[target="_blank"] {
    position: relative;
    padding-right: 2.08333vw;
}

@media screen and (min-width: 1100px) {
    .footer-nav__link[target="_blank"] {
        padding-right: 30px;
        white-space: nowrap;
    }
}

@media screen and (max-width: 767px) {
    .footer-nav__link[target="_blank"] {
        padding-right: 3.91134vw;
    }
}

.footer-nav__link[target="_blank"]:before {
    display: none;
}

.footer-nav__link[target="_blank"]:after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 1.45833vw;
    height: 1.31944vw;
    background: url(/img/common/link2.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

body.firefox .footer-nav__link[target="_blank"]:after {
    background-size: auto 100%;
}

body.ie .footer-nav__link[target="_blank"]:after {
    width: 1.59722vw;
    height: 1.73611vw;
    background-size: auto 100%;
}

@media screen and (min-width: 1100px) {
    .footer-nav__link[target="_blank"]:after {
        width: 21px;
        height: 19px;
    }
    body.ie .footer-nav__link[target="_blank"]:after {
        width: 21px;
        height: 19px;
        background-size: 100% auto;
    }
}

@media screen and (max-width: 767px) {
    .footer-nav__link[target="_blank"]:after {
        width: 2.73794vw;
        height: 2.73794vw;
        -webkit-transform: translateY(-35%);
        transform: translateY(-35%);
    }
}

.footer-nav__link[target="_blank"]:hover .footer-nav__txt:before {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .footer-nav__link[target="_blank"]:hover .footer-nav__txt:before {
        width: 0;
    }
}

@media screen and (min-width: 768px) {
    .footer-nav__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .footer-nav__link:hover {
        opacity: 0.8;
    }
}

@media screen and (min-width: 768px) and (max-width: 767px) {
    .footer-nav__link:hover {
        opacity: 1;
    }
}

.footer-nav__link--en {
    font-weight: 300;
    font-family: 'Lato';
}

.footer-nav__txt {
    position: relative;
    color: #404040;
    white-space: nowrap;
    letter-spacing: 0.1em;
    font-weight: 200;
    font-size: 1.11111vw;
    line-height: 1.5;
}

@media screen and (min-width: 1100px) {
    .footer-nav__txt {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .footer-nav__txt {
        font-size: 3.12907vw;
    }
}

.footer-nav__txt:before {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 0;
    height: 1px;
    background-color: rgba(64, 64, 64, 0.5);
    content: "";
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media screen and (max-width: 767px) {
    .footer-nav__txt:before {
        -webkit-transition: none;
        transition: none;
    }
}

.footer-nav__txt--en {
    font-weight: 300;
    font-family: 'Lato';
}

/*  footer-item
--------------------------------------------- */
.footer-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    -ms-flex-align: center;
    margin-bottom: 4.16667vw;

    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
}

@media screen and (min-width: 1100px) {
    .footer-item {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 767px) {
    .footer-item {
        margin-bottom: 5.21512vw;
    }
}

/*  footer-subnav
--------------------------------------------- */
@media screen and (max-width: 767px) {
    .footer-subnav {
        width: 67.79661vw;
    }
}

.footer-subnav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.footer-subnav__list-item {
    padding-top: 0.48611vw;
    padding-right: 2.43056vw;
    padding-bottom: 0.69444vw;
    padding-left: 2.43056vw;
    border-right: 1px solid rgba(64, 64, 64, 0.3);
}

@media screen and (min-width: 1100px) {
    .footer-subnav__list-item {
        padding-top: 7px;
        padding-right: 35px;
        padding-bottom: 10px;
        padding-left: 35px;
    }
}

@media screen and (max-width: 767px) {
    .footer-subnav__list-item {
        padding-top: 0.65189vw;
        padding-right: 1.95567vw;
        padding-bottom: 1.30378vw;
        padding-left: 1.95567vw;
        line-height: 1;
    }
}

.footer-subnav__list-item:last-of-type {
    border-right: none;
}

.footer-subnav__link {
    position: relative;
    display: inline-block;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 200;
    font-size: 1.11111vw;
    line-height: 1.5;
}

@media screen and (min-width: 1100px) {
    .footer-subnav__link {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .footer-subnav__link {
        font-size: 2.73794vw;
    }
}

@media screen and (min-width: 768px) {
    .footer-subnav__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .footer-subnav__link:hover {
        opacity: 0.8;
    }
}

@media screen and (min-width: 768px) and (max-width: 767px) {
    .footer-subnav__link:hover {
        opacity: 1;
    }
}

.footer-subnav__link:before {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 0;
    height: 1px;
    background-color: rgba(64, 64, 64, 0.5);
    content: "";
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media screen and (max-width: 767px) {
    .footer-subnav__link:before {
        -webkit-transition: none;
        transition: none;
    }
}

.footer-subnav__link:hover:before {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .footer-subnav__link:hover:before {
        width: 0;
    }
}

.footer-subnav__link--en {
    font-weight: 300;
    font-family: 'Lato';
}

/*  footer-logo
--------------------------------------------- */
.footer-logo {
    margin-left: 3.33333vw;
    width: 13.33333vw;
}

@media screen and (min-width: 1100px) {
    .footer-logo {
        margin-left: 48px;
        width: 192px;
    }
}

@media screen and (max-width: 767px) {
    .footer-logo {
        margin-left: 5.21512vw;
        width: 22.16428vw;
    }
}

.footer-logo__link {
    display: block;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.footer-logo__link:hover {
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    .footer-logo__link:hover {
        opacity: 1;
    }
}

/*  footer-language
--------------------------------------------- */
.footer-language {
    margin-left: 2.91667vw;
}

@media screen and (min-width: 1100px) {
    .footer-language {
        margin-left: 42px;
    }
}

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

.footer-language__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;

    -webkit-box-align: center;
    align-items: center;
}

.footer-language__item {
    width: 4.16667vw;
}

@media screen and (min-width: 1100px) {
    .footer-language__item {
        width: 60px;
    }
}

.footer-language__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    height: 4.16667vw;
    background-color: #fff;
    color: #404040;
    font-size: 1.11111vw;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (min-width: 1100px) {
    .footer-language__link {
        height: 60px;
        font-size: 1rem;
    }
}

.footer-language__link--current {
    background-color: #4E1A84;
    color: #fff;
}

.footer-language__link:hover {
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    .footer-language__link:hover {
        opacity: 1;
    }
}

/*  footer-copyright
--------------------------------------------- */
.footer-copyright {
    padding-top: 2.63889vw;
    padding-bottom: 2.63889vw;
    background-color: #4E1A84;
    text-align: center;
}

@media screen and (min-width: 1100px) {
    .footer-copyright {
        padding-top: 38px;
        padding-bottom: 38px;
    }
}

@media screen and (max-width: 767px) {
    .footer-copyright {
        padding-top: 3.91134vw;
        padding-bottom: 3.91134vw;
    }
}

.footer-copyright__txt {
    color: #fff;
    letter-spacing: 0.1em;
    font-weight: 200;
    font-size: 0.97222vw;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .footer-copyright__txt {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .footer-copyright__txt {
        font-size: 2.86832vw;
    }
}

/* ---------------------------------------------
*   header
--------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 10;
    padding-top: 3.125vw;
    width: 100%;
    background-color: #fff;
    -webkit-transition: .4s;
    transition: .4s;
}

@media screen and (min-width: 1100px) {
    .header {
        padding-top: 45px;
    }
}

.header.is-change {
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(166, 166, 166, 0.5);
    -webkit-transition-duration: .4s;
    transition-duration: .4s;
    -webkit-transition-property: padding-top, padding-bottom;
    transition-property: padding-top, padding-bottom;
}

@media screen and (max-width: 1100px) {
    .header {
        padding: 10px 30px;
        -webkit-transition: none;
        transition: none;
    }
}

@media screen and (max-width: 767px) {
    .header {
        padding: 10px 30px;
    }
}

/*  header-container
--------------------------------------------- */
.header-container {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: end;
    margin-right: auto;
    margin-left: auto;
    max-width: 76.38889vw;
    -webkit-transition: .4s;
    transition: .4s;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    align-items: flex-end;
}

@media screen and (min-width: 1100px) {
    .header-container {
        max-width: 1100px;
    }
}

.header-container.is-change {
    -ms-flex-align: center;
    -webkit-transition: .4s;
    transition: .4s;

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 1100px) {
    .header-container {
        display: block;
        max-width: 100%;
        max-width: none;
        -webkit-transition: none;
        transition: none;
    }
}

/*  header-logo
--------------------------------------------- */
.header-logo {
    width: 12.15278vw;
}

@media screen and (min-width: 1100px) {
    .header-logo {
        width: 175px;
    }
}

@media screen and (min-width: 768px) {
    .header-logo__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .header-logo__link:hover {
        opacity: 0.8;
    }
}

@media screen and (min-width: 768px) and (max-width: 767px) {
    .header-logo__link:hover {
        opacity: 1;
    }
}

@media screen and (max-width: 1100px) {
    .header-logo {
        width: 100px;
    }
    .header-logo img {
        vertical-align: baseline;
    }
}

/*  header-nav
--------------------------------------------- */
.header-nav {
    margin-bottom: -2px;
    width: 63.19444vw;
    -webkit-transition: .4s;
    transition: .4s;
}

@media screen and (min-width: 1100px) {
    .header-nav {
        width: 910px;
    }
}

@media screen and (max-width: 1100px) {
    .header-nav {
        margin-bottom: 40px;
        width: 100%;
        -webkit-transition: none;
        transition: none;
    }
}

.header-nav.is-change {
    margin-top: 8px;
    margin-bottom: 0;
    -webkit-transition: .4s;
    transition: .4s;
}

body.windows .header-nav.is-change {
    margin-top: 12px;
}

.header-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    -ms-flex-align: center;
    width: 100%;

    -webkit-box-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 1100px) {
    .header-nav__list {
        display: block;
    }
}

.header-nav__list-item {
    position: relative;
    margin-left: 1.72778vw;
    padding-bottom: 2px;
}

@media screen and (min-width: 1100px) {
    .header-nav__list-item {
        margin-left: 22px;
    }
}

.header-nav__list-item:first-of-type {
    margin-left: 0;
}

.header-nav__list-item:hover .header-nav-aco {
    visibility: visible;
    opacity: 1;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translateY(2px);
    transform: translateY(2px);
    pointer-events: auto;
}

@media screen and (max-width: 1100px) {
    .header-nav__list-item {
        margin-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.5);
    }
    .header-nav__list-item:last-of-type {
        border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    }
}

.header-nav__link {
    position: relative;
    display: inline-block;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 200;
    font-size: 0.97222vw;
    line-height: 1.5;
}

@media screen and (min-width: 1100px) {
    .header-nav__link {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 1100px) {
    .header-nav__link {
        display: block;
        padding: 20px;
        color: #fff;
        font-size: 18px;
    }
}

.header-nav__link:before {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 0;
    height: 1px;
    background-color: rgba(64, 64, 64, 0.5);
    content: "";
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media screen and (max-width: 1100px) {
    .header-nav__link:before {
        content: none;
    }
}

.header-nav__link:hover:before {
    width: 100%;
}

.header-nav__link.is-current {
    font-weight: 500;
}

.header-nav__link--en {
    font-weight: 300;
    font-family: 'Lato';
}

/*  header-nav-aco
--------------------------------------------- */
.header-nav-aco {
    position: absolute;
    z-index: 1;
    visibility: hidden;
    padding-top: 10px;
    width: auto;
    background-color: #fff;
    opacity: 0;
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
    pointer-events: none;
}

@media screen and (max-width: 1100px) {
    .header-nav-aco {
        display: none;
        padding-top: 0;
    }
}

.header-nav-aco__link {
    position: relative;
    display: inline-block;
    padding: 10px 20px 10px 30px;
    color: #404040;
    white-space: nowrap;
    letter-spacing: 0.1em;
    font-weight: 200;
    font-size: 0.875rem;
    line-height: 1.5;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.header-nav-aco__link:after {
    position: absolute;
    top: 50%;
    left: 15px;
    width: 6px;
    height: 12px;
    background: url(/img/common/nav_arrow.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-nav-aco__link:hover {
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    .header-nav-aco__link:hover {
        opacity: 1;
    }
}

.header-nav-aco__link--en {
    font-weight: 300;
    font-family: 'Lato';
}

/*  header-box
--------------------------------------------- */
.header-box {
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-pack: justify;
    -ms-flex-align: end;
    width: 5.55556vw;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    align-items: flex-end;
}

@media screen and (min-width: 1100px) {
    .header-box {
        width: 80px;
    }
}

@media screen and (max-width: 1100px) {
    .header-box {
        position: static;
        display: block !important;
        width: 100%;
    }
}

.header-box__item {
    width: 1.66667vw;
}

@media screen and (min-width: 1100px) {
    .header-box__item {
        width: 24px;
    }
}

@media screen and (max-width: 1100px) {
    .header-box__item {
        width: auto;
    }
}

.header-box__item:last-of-type {
    margin-left: 2.08333vw;
    width: auto;
}

@media screen and (min-width: 1100px) {
    .header-box__item:last-of-type {
        margin-left: 30px;
    }
}

@media screen and (max-width: 1100px) {
    .header-box__item:last-of-type {
        margin-top: 30px;
        margin-left: 0;
    }
}

.header-box__link {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.header-box__link:hover {
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    .header-box__link:hover {
        opacity: 1;
    }
}

.header-box.is-change {
    display: none !important;
    -webkit-transition: .4s;
    transition: .4s;
}

@media screen and (max-width: 1100px) {
    .header-box {
        display: none;
    }
}

/*  header-language
--------------------------------------------- */
.header-language:hover {
    cursor: pointer;
}

.header-language:hover .header-language__head {
    opacity: .7;
    -webkit-transition: .3s;
    transition: .3s;
}

.header-language__head {
    width: 24px;
}

@media screen and (max-width: 1100px) {
    .header-language__head {
        display: none;
    }
}

.header-language__body {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1;
    display: none;
}

@media screen and (max-width: 1100px) {
    .header-language__body {
        position: static;
        display: block !important;
    }
}

/*  header-search
--------------------------------------------- */
@media screen and (max-width: 1100px) {
    .header-search {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        -ms-flex-align: center;

        -webkit-box-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        align-items: center;
    }
}

@media screen and (min-width: 768px) {
    .header-search__img {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .header-search__img:hover {
        opacity: 0.8;
    }
}

@media screen and (min-width: 768px) and (max-width: 767px) {
    .header-search__img:hover {
        opacity: 1;
    }
}

@media screen and (min-width: 768px) {
    .header-search__img:hover {
        cursor: pointer;
    }
}

.header-search__box {
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1;
    display: none;
    -webkit-box-sizing: content-box !important;
    box-sizing: content-box !important;
    padding: 25px;
    width: 200px;
    height: 100%;
    outline: none;
    border: 1px solid rgba(64, 64, 64, 0.5);
    background-color: #fff;
    font-weight: 200;
    font-size: 0.875rem;
}

@media screen and (max-width: 1100px) {
    .header-search__box {
        position: static;
        display: block !important;
        margin-left: 16px;
        padding: 10px;
        width: 260px;
        font-size: 16px;
    }
}

.header-search__btn {
    position: relative;
    z-index: 2;
}

.header-search__btn-image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 1100px) {
    .header-search__btn-image {
        width: 20px;
        height: 20px;
    }
}

.header-search input::-webkit-input-placeholder {
    color: #404040 !important;
}

.header-search input::-moz-placeholder {
    color: #404040 !important;
}

.header-search input:-ms-input-placeholder {
    color: #404040 !important;
}

.header-search input::-ms-input-placeholder {
    color: #404040 !important;
}

.header-search input::placeholder {
    color: #404040 !important;
}

/*  bogo-language-switcher
--------------------------------------------- */
.bogo-language-switcher {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 1100px) {
    .bogo-language-switcher {
        -ms-flex-pack: center;

        -webkit-box-pack: center;
        justify-content: center;
    }
}

.bogo-language-switcher li {
    width: 70px;
    background-color: #F7F2FF;
    color: #4E1A84;
    text-align: center;
}

@media screen and (max-width: 1100px) {
    .bogo-language-switcher li {
        display: block;
        width: 150px;
    }
    .bogo-language-switcher li:last-of-type {
        margin-left: 20px;
    }
}

.bogo-language-switcher li.current {
    background-color: #4E1A84;
    color: #fff;
}

@media screen and (max-width: 1100px) {
    .bogo-language-switcher li.current {
        border: 1px solid #fff;
    }
}

.bogo-language-switcher a {
    display: block;
    padding: 14px;
    width: 100%;
    height: 100%;
    font-family: "Noto Sans Japanese";
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

@media screen and (max-width: 1100px) {
    .bogo-language-switcher a {
        padding: 10px;
    }
}

.bogo-language-switcher a:hover {
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    .bogo-language-switcher a:hover {
        opacity: 1;
    }
}

/*  header-sp-menu
--------------------------------------------- */
@media screen and (min-width: 1101px) {
    .header-sp-menu {
        display: block !important;
    }
}

@media screen and (max-width: 1100px) {
    .header-sp-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 99;
        display: none;
        overflow: auto;
        padding-top: 79px;
        padding-bottom: 40px;
        width: 100%;
        height: 100%;
        background-color: rgba(78, 26, 132, 0.9);
    }
}

/*  header-sp-trigger
--------------------------------------------- */
.header-sp-trigger {
    position: absolute;
    top: 50%;
    right: 0;
    z-index: 100;
    display: none;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.header-sp-trigger--opened .header-sp-trigger__text span {
    background-color: rgba(255, 255, 255, 0.8) !important;
}

.header-sp-trigger--opened .header-sp-trigger__text span:nth-of-type(1) {
    -webkit-transform: translateY(11px) rotate(-315deg);
    transform: translateY(11px) rotate(-315deg);
}

.header-sp-trigger--opened .header-sp-trigger__text span:nth-of-type(2) {
    opacity: 0;
}

.header-sp-trigger--opened .header-sp-trigger__text span:nth-of-type(3) {
    -webkit-transform: translateY(-7px) rotate(315deg);
    transform: translateY(-7px) rotate(315deg);
}

.header-sp-trigger__text {
    position: relative;
    display: block;
    width: 30px;
    height: 20px;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.header-sp-trigger__text span {
    position: absolute;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    background-color: #A6A6A6;
    -webkit-transition: all .4s;
    transition: all .4s;
}

.header-sp-trigger__text span:nth-of-type(1) {
    top: 0;
}

.header-sp-trigger__text span:nth-of-type(2) {
    top: 9px;
}

.header-sp-trigger__text span:nth-of-type(3) {
    bottom: 0;
}

@media screen and (max-width: 1100px) {
    .header-sp-trigger {
        display: block;
    }
}

/* ---------------------------------------------
*   wrapper
--------------------------------------------- */
.is-index .wrapper {
    height: 100%;
}

@media screen and (max-width: 767px) {
    .is-index .wrapper {
        height: auto;
    }
}

body.ie .wrapper--index {
    overflow-y: hidden;
}

/* ==========================================================
*
*   component
*
========================================================== */
/* ---------------------------------------------
*   c-anchor-1
--------------------------------------------- */
.c-anchor-1 {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9;
    padding-top: 2.08333vw;
    padding-bottom: 2.08333vw;
    background-color: #fff;
    opacity: 0;
    -webkit-transition: margin .3s;
    transition: margin .3s;
}

.c-anchor-1.is-fadein {
    -webkit-animation-name: anchor-area;
    animation-name: anchor-area;
    -webkit-animation-duration: .4s;
    animation-duration: .4s;
    -webkit-animation-delay: 0.8s;
    animation-delay: 0.8s;

    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

@media screen and (min-width: 1100px) {
    .c-anchor-1 {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

@media screen and (max-width: 767px) {
    .c-anchor-1 {
        padding-top: 0;
        padding-bottom: 0;
    }
}

@-webkit-keyframes anchor-area {
    0% {
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

@keyframes anchor-area {
    0% {
        opacity: 0;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

.c-anchor-1.is-fixed {
    position: fixed;
    top: 0;
    right: 0;
    bottom: auto;
}

@media screen and (max-width: 1100px) {
    .c-anchor-1.is-fixed {
        position: absolute !important;
        right: 0 !important;
        bottom: 0 !important;
    }
}

.c-anchor-1__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: end;
    -ms-flex-align: center;
    margin-right: auto;
    margin-left: auto;
    max-width: 76.38889vw;

    -webkit-box-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (min-width: 1100px) {
    .c-anchor-1__list {
        max-width: 1100px;
    }
}

@media screen and (max-width: 767px) {
    .c-anchor-1__list {
        -ms-flex-pack: start;
        max-width: 100%;

        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        justify-content: flex-start;
    }
}

.c-anchor-1__item {
    margin-left: 2.22222vw;
}

body.safari .c-anchor-1__item {
    margin-left: 0;
    padding-left: 2.22222vw;
}

.c-anchor-1__item:first-of-type {
    margin-left: 0;
}

@media screen and (min-width: 1100px) {
    .c-anchor-1__item {
        margin-left: 32px;
    }
    body.safari .c-anchor-1__item {
        margin-left: 0;
        padding-left: 32px;
    }
}

@media screen and (max-width: 767px) {
    .c-anchor-1__item {
        margin-left: 0;
        width: 50%;
    }
    body.safari .c-anchor-1__item {
        padding-left: 0;
    }
    .c-anchor-1__item:nth-of-type(n+3) {
        margin-top: 2.60756vw;
    }
}

.c-anchor-1__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;

    -webkit-box-align: center;
    align-items: center;
}

.c-anchor-1__link:hover .c-anchor-1__txt--about {
    color: #55CC80;
    -webkit-transition: color .2s;
    transition: color .2s;
}

@media screen and (max-width: 767px) {
    .c-anchor-1__link:hover .c-anchor-1__txt--about {
        color: #404040;
    }
}

.c-anchor-1__link:hover .c-anchor-1__txt--campus {
    color: #5580FF;
    -webkit-transition: color .2s;
    transition: color .2s;
}

@media screen and (max-width: 767px) {
    .c-anchor-1__link:hover .c-anchor-1__txt--campus {
        color: #404040;
    }
}

.c-anchor-1__link:hover .c-anchor-1__txt--admissions {
    color: #5580FF;
    -webkit-transition: color .2s;
    transition: color .2s;
}

@media screen and (max-width: 767px) {
    .c-anchor-1__link:hover .c-anchor-1__txt--admissions {
        color: #404040;
    }
}

.c-anchor-1__link:hover .c-anchor-1__txt--laboratory {
    color: #FF5580;
    -webkit-transition: color .2s;
    transition: color .2s;
}

@media screen and (max-width: 767px) {
    .c-anchor-1__link:hover .c-anchor-1__txt--laboratory {
        color: #404040;
    }
}

.c-anchor-1__arrow {
    position: relative;
    margin-right: 1.11111vw;
    width: 1.80556vw;
    height: 1.80556vw;
}

@media screen and (min-width: 1100px) {
    .c-anchor-1__arrow {
        margin-right: 16px;
        width: 26px;
        height: 26px;
    }
}

@media screen and (max-width: 767px) {
    .c-anchor-1__arrow {
        margin-right: 10px;
        width: 18px;
        height: 18px;
    }
}

.c-anchor-1__arrow:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/img/common/arrow.svg) 45% 50% no-repeat;
    background-size: 4px auto;
    content: '';
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

body.ie .c-anchor-1__arrow:before {
    background-size: 15px auto;
}

@media screen and (max-width: 1100px) {
    .c-anchor-1__arrow:before {
        background-size: 3px auto;
    }
}

.c-anchor-1__arrow--about {
    background-color: #55CC80;
}

.c-anchor-1__arrow--campus {
    background-color: #5580FF;
}

.c-anchor-1__arrow--admissions {
    background-color: #5580FF;
}

.c-anchor-1__arrow--laboratory {
    background-color: #FF5580;
}

.c-anchor-1__txt {
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 200;
    font-size: 0.97222vw;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-anchor-1__txt {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .c-anchor-1__txt {
        font-size: 0.6875rem;
    }
}

.c-anchor-1__txt--en {
    font-weight: 300;
    font-family: 'Lato';
}

@media screen and (max-width: 767px) {
    .c-anchor-1__txt--en {
        width: 35vw;
    }
}

/* ---------------------------------------------
*   c-anchor-target
--------------------------------------------- */
.c-anchor-target {
    margin-top: -19.44444vw;
    padding-top: 19.44444vw;
}

body.firefox .c-anchor-target {
    margin-top: -14.58333vw;
    padding-top: 14.58333vw;
}

body.safari .c-anchor-target {
    margin-top: -14.58333vw;
    padding-top: 14.58333vw;
}

@media screen and (min-width: 1100px) {
    .c-anchor-target {
        margin-top: -210px;
        padding-top: 210px;
    }
}

@media screen and (max-width: 767px) {
    .c-anchor-target {
        margin-top: -27.3794vw;
        padding-top: 27.3794vw;
    }
    body.safari .c-anchor-target {
        margin-top: -29.98696vw;
        padding-top: 29.98696vw;
    }
}

/* ---------------------------------------------
*   c-box-1
--------------------------------------------- */
.c-box-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin-bottom: 2.43056vw;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (min-width: 1100px) {
    .c-box-1 {
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 767px) {
    .c-box-1 {
        margin-bottom: 5.21512vw;

        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.c-box-1__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 33.33333vw;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

@media screen and (min-width: 1100px) {
    .c-box-1__item {
        width: 480px;
    }
}

@media screen and (max-width: 1100px) {
    .c-box-1__item {
        width: 34.02778vw;
    }
}

@media screen and (max-width: 767px) {
    .c-box-1__item {
        width: 100%;
    }
    .c-box-1__item:last-of-type {
        margin-top: 7.82269vw;
    }
}

/* ---------------------------------------------
*   c-box-2
--------------------------------------------- */
/* ---------------------------------------------
*   c-box-3
--------------------------------------------- */
.c-box-3--access {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin-top: 4.16667vw;
    margin-bottom: 4.16667vw;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (min-width: 1100px) {
    .c-box-3--access {
        margin-top: 60px;
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 767px) {
    .c-box-3--access {
        display: block;
        margin-top: 7.82269vw;
        margin-bottom: 7.82269vw;
    }
}

.c-box-3__cat {
    margin-top: 3.75vw;
}

@media screen and (min-width: 1100px) {
    .c-box-3__cat {
        margin-top: 54px;
    }
}

@media screen and (max-width: 767px) {
    .c-box-3__cat {
        margin-top: 10.43025vw;
    }
}

.c-box-3__cat:first-of-type {
    margin-top: 0;
}

.c-box-3__cat--access {
    margin-top: 4.30556vw;
    width: 33.33333vw;
}

.c-box-3__cat--access:nth-of-type(-n+2) {
    margin-top: 0;
}

@media screen and (min-width: 1100px) {
    .c-box-3__cat--access {
        margin-top: 62px;
        width: 480px;
    }
}

@media screen and (max-width: 767px) {
    .c-box-3__cat--access {
        margin-top: 10.43025vw;
        width: 100%;
    }
    .c-box-3__cat--access:first-of-type {
        margin-top: 0;
    }
    .c-box-3__cat--access:nth-of-type(n+2) {
        margin-top: 10.43025vw;
    }
}

.c-box-3__ttl {
    margin-bottom: 1.66667vw;
    padding: 0.78227vw 1.56454vw 0.91265vw;
    width: 34.72222vw;
    background-color: #4E1A84;
    color: #fff;
    letter-spacing: 0.1em;
    font-weight: 100;
    font-size: 1.66667vw;
}

@media screen and (min-width: 1100px) {
    .c-box-3__ttl {
        margin-bottom: 34px;
        padding: 7px 27px;
        width: 500px;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 767px) {
    .c-box-3__ttl {
        margin-bottom: 3.91134vw;
        padding: 1.95567vw 3.91134vw 1.69492vw;
        width: 100%;
        font-size: 4.1721vw;
    }
}

.c-box-3__ttl--access {
    width: 100%;
    text-align: center;
}

.c-box-3__ttl--en {
    letter-spacing: 0;
    font-weight: 300;
    font-family: 'Lato';
}

.c-box-3__item {
    position: relative;
    margin-top: 0.20833vw;
    padding-left: 2.36111vw;
}

@media screen and (min-width: 1100px) {
    .c-box-3__item {
        margin-top: 8px;
        padding-left: 40px;
    }
}

@media screen and (max-width: 767px) {
    .c-box-3__item {
        margin-top: 1.30378vw;
        padding-left: 5.21512vw;
    }
}

.c-box-3__item:first-of-type {
    margin-top: 0;
}

.c-box-3__item:before {
    position: absolute;
    top: 60%;
    left: 0;
    width: 1.25vw;
    height: 1.25vw;
    border-radius: 50%;
    background-color: #4E1A84;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (min-width: 1100px) {
    .c-box-3__item:before {
        top: 52%;
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 767px) {
    .c-box-3__item:before {
        top: 2.08605vw;
        width: 2.86832vw;
        height: 2.86832vw;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.c-box-3__item--access {
    margin-top: 1.66667vw;
}

@media screen and (min-width: 1100px) {
    .c-box-3__item--access {
        margin-top: 24px;
    }
}

@media screen and (max-width: 767px) {
    .c-box-3__item--access {
        margin-top: 5.21512vw;
    }
}

.c-box-3__item--access:before {
    top: 0.55556vw;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

@media screen and (min-width: 1100px) {
    .c-box-3__item--access:before {
        top: 7px;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

@media screen and (max-width: 767px) {
    .c-box-3__item--access:before {
        top: 2.60756vw;
        width: 2.86832vw;
        height: 2.86832vw;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.c-box-3__link {
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .c-box-3__link {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-box-3__link {
        font-size: 3.65059vw;
        line-height: 1.5;
    }
}

.c-box-3__link:hover {
    color: #4E1A84;
    -webkit-transition: color .3s;
    transition: color .3s;
}

.c-box-3__link[target="_blank"]:after {
    display: inline-block;
    margin-left: 1.04167vw;
    width: 1.45833vw;
    height: 1.45833vw;
    background: url(/img/common/link2.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    vertical-align: middle;
}

body.ie .c-box-3__link[target="_blank"]:after {
    width: 1.59722vw;
    height: 1.73611vw;
    background-size: auto 100%;
}

@media screen and (min-width: 1100px) {
    .c-box-3__link[target="_blank"]:after {
        margin-left: 15px;
        width: 21px;
        height: 21px;
    }
    body.ie .c-box-3__link[target="_blank"]:after {
        width: 21px;
        height: 21px;
        background-size: 100% auto;
    }
}

@media screen and (max-width: 767px) {
    .c-box-3__link[target="_blank"]:after {
        margin-left: 1.82529vw;
        width: 3.65059vw;
        height: 3.65059vw;
    }
}

.c-box-3__link--en {
    font-weight: 300;
    font-family: 'Lato';
}

.c-box-3__label {
    display: block;
    margin-bottom: 0.41667vw;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-size: 1.11111vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .c-box-3__label {
        margin-bottom: 6px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-box-3__label {
        margin-bottom: 0;
        font-size: 3.65059vw;
    }
}

.c-box-3__label--normal {
    font-weight: normal;
}

.c-box-3__label--row {
    white-space: nowrap;
}

@media screen and (max-width: 1100px) {
    .c-box-3__label--row {
        white-space: normal;
    }
}

.c-box-3__label--small {
    font-size: 0.97222vw;
}

@media screen and (min-width: 1100px) {
    .c-box-3__label--small {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .c-box-3__label--small {
        font-size: 3.38983vw;
    }
}

.c-box-3__label--en {
    letter-spacing: 0;
    font-weight: 300;
    font-family: 'Lato';
}

.c-box-3__txt {
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .c-box-3__txt {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-box-3__txt {
        font-size: 3.65059vw;
    }
}

.c-box-3__txt--en {
    letter-spacing: 0;
    font-weight: 300;
    font-family: 'Lato';
}

/* ---------------------------------------------
*   c-box-4
--------------------------------------------- */
.c-box-4 {
    margin-top: 4.16667vw;
}

@media screen and (min-width: 1100px) {
    .c-box-4 {
        margin-top: 60px;
    }
}

@media screen and (max-width: 767px) {
    .c-box-4 {
        margin-top: 7.82269vw;
    }
}

.c-box-4--middle {
    margin-top: 2.63889vw;
}

@media screen and (min-width: 1100px) {
    .c-box-4--middle {
        margin-top: 38px;
    }
}

@media screen and (max-width: 767px) {
    .c-box-4--middle {
        margin-top: 5.21512vw;
    }
}

.c-box-4--narrow {
    margin-top: 1.52778vw;
}

@media screen and (min-width: 1100px) {
    .c-box-4--narrow {
        margin-top: 22px;
    }
}

@media screen and (max-width: 767px) {
    .c-box-4--narrow {
        margin-top: 5.21512vw;
    }
}

/* ---------------------------------------------
*   c-box-5
--------------------------------------------- */
@media screen and (min-width: 1100px) {
    .c-box-5 {
        margin-top: 60px;
    }
}

@media screen and (max-width: 767px) {
    .c-box-5 {
        margin-top: 7.82269vw;
    }
}

.c-box-5__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .c-box-5__box {
        display: block;
    }
}

.c-box-5__item {
    width: 33.33333vw;
}

@media screen and (min-width: 1100px) {
    .c-box-5__item {
        width: 480px;
    }
}

@media screen and (max-width: 767px) {
    .c-box-5__item {
        width: 100%;
    }
    .c-box-5__item:first-of-type {
        margin-bottom: 6.5189vw;
    }
}

.c-box-5 iframe {
    width: 100%;
    height: 21.875vw;
}

@media screen and (min-width: 1100px) {
    .c-box-5 iframe {
        height: 315px;
    }
}

@media screen and (max-width: 767px) {
    .c-box-5 iframe {
        height: 41.0691vw;
    }
}

.c-box-5__note {
    display: block;
    margin-top: 0.41667vw;
    color: #404040;
    text-align: right;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-box-5__note {
        margin-top: 6px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-box-5__note {
        margin-top: 1.30378vw;
        font-size: 3.38983vw;
    }
}

.c-box-5__note--en {
    font-weight: 300;
    font-family: 'Lato';
}

/* ---------------------------------------------
*   c-box-6
--------------------------------------------- */
.c-box-6 {
    height: 100%;
}

@media screen and (max-width: 767px) {
    .c-box-6 {
        height: auto;
    }
}

.c-box-6__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-line-pack: justify;
    align-content: space-between;
}

.c-box-6__catch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    margin-right: auto;
    margin-left: auto;
    min-height: 330px;
    max-width: 76.38889vw;
    height: 52%;

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (min-width: 1100px) {
    .c-box-6__catch {
        max-width: 1100px;
    }
}

@media screen and (max-width: 767px) {
    .c-box-6__catch {
        margin-top: 2.60756vw;
        margin-bottom: 6.5189vw;
        min-height: auto;
        max-width: 89.96089vw;
        height: auto;
    }
}

.c-box-6__logo {
    width: 14.93056vw;
}

@media screen and (min-width: 1100px) {
    .c-box-6__logo {
        width: 215px;
    }
}

@media screen and (max-width: 767px) {
    .c-box-6__logo {
        width: 28.68318vw;
    }
}

.c-box-6__logo img {
    width: 100%;
}

.c-box-6__cat-outer {
    margin-top: 2.08333vw;
}

@media screen and (min-width: 1100px) {
    .c-box-6__cat-outer {
        margin-top: 30px;
    }
}

@media screen and (max-width: 767px) {
    .c-box-6__cat-outer {
        margin-top: 7.82269vw;
    }
}

.c-box-6__cat {
    margin-bottom: 1.80556vw;
}

@media screen and (min-width: 1100px) {
    .c-box-6__cat {
        margin-bottom: 26px;
    }
}

@media screen and (max-width: 767px) {
    .c-box-6__cat {
        margin-bottom: 5.21512vw;
    }
}

.c-box-6__cat:last-of-type {
    margin-bottom: 0;
}

.c-box-6__link {
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.c-box-6__link:hover {
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    .c-box-6__link:hover {
        opacity: 1;
    }
}

.c-box-6__txt {
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 100;
    font-size: 1.38889vw;
    line-height: 1.8;
}

@media screen and (min-width: 1100px) {
    .c-box-6__txt {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    .c-box-6__txt {
        font-size: 4.1721vw;
        line-height: 1.5;
    }
}

.c-box-6__txt--en {
    display: block;
    font-weight: 300;
    font-size: 0.83333vw;
    font-family: 'Lato';
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-box-6__txt--en {
        letter-spacing: 0.1em;
        font-size: 0.75rem;
    }
}

@media screen and (max-width: 767px) {
    .c-box-6__txt--en {
        margin-top: 0.65189vw;
        font-size: 3.12907vw;
        line-height: 1.5;
    }
}

@media screen and (max-width: 767px) {
    .c-box-6__txt--row {
        white-space: nowrap;
    }
}

@media screen and (max-width: 767px) {
    .c-box-6__txt--norow {
        white-space: normal;
    }
}

/* ---------------------------------------------
*   c-list-1
--------------------------------------------- */
.c-list-1 {
    margin-top: 1.94444vw;
    margin-bottom: 0;
    padding: 2.77778vw 2.08333vw;
    height: 100%;
    background-color: #fff;
}

@media screen and (min-width: 1100px) {
    .c-list-1 {
        margin-top: 28px;
        padding: 43px 30px 40px 44px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-1 {
        margin-top: 5.21512vw;
        padding: 5.21512vw 3.91134vw;
    }
}

.c-list-1__item {
    margin-bottom: 2.70833vw;
}

@media screen and (min-width: 1100px) {
    .c-list-1__item {
        margin-bottom: 39px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-1__item {
        margin-bottom: 5.21512vw;
    }
}

.c-list-1__item:last-of-type {
    margin-bottom: 0;
}

.c-list-1__link {
    position: relative;
    display: block;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.c-list-1__link:hover {
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    .c-list-1__link:hover {
        opacity: 1;
    }
}

.c-list-1__link:before {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 0;
    height: 1px;
    background-color: #404040;
    content: "";
    -webkit-transition: all .3s;
    transition: all .3s;
}

.c-list-1__link:hover:before {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .c-list-1__link:hover:before {
        width: 0;
    }
}

.c-list-1__date {
    display: block;
    margin-bottom: 0.55556vw;
    color: #A6A6A6;
    letter-spacing: 0.1em;
    font-weight: 200;
    font-size: 0.97222vw;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-list-1__date {
        margin-bottom: 8px;
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-1__date {
        margin-bottom: 2.60756vw;
        font-size: 2.86832vw;
    }
}

.c-list-1__ttl {
    overflow: hidden;
    color: #404040;
    text-overflow: ellipsis;
    white-space: nowrap;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 1.5;
}

@media screen and (min-width: 1100px) {
    .c-list-1__ttl {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1100px) {
    .c-list-1__ttl {
        font-size: 0.97222vw;
    }
}

@media screen and (max-width: 767px) {
    .c-list-1__ttl {
        white-space: nowrap;
        letter-spacing: 0.05em;
        font-size: 2.9987vw;
    }
}

/* ---------------------------------------------
*   c-list-10
--------------------------------------------- */
.c-list-10 {
    margin-left: 1.18056vw;
}

@media screen and (min-width: 1100px) {
    .c-list-10 {
        margin-left: 17px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-10 {
        margin-left: 0;
    }
}

.c-list-10--example {
    margin-bottom: 4.02778vw;
    margin-left: 0;
}

@media screen and (min-width: 1100px) {
    .c-list-10--example {
        margin-bottom: 58px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-10--example {
        margin-top: 2.60756vw;
        margin-bottom: 7.82269vw;
    }
}

.c-list-10__item {
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 2.25;
}

@media screen and (min-width: 1100px) {
    .c-list-10__item {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-10__item {
        font-size: 3.65059vw;
    }
}

.c-list-10__item--example {
    line-height: 2;
}

/* ---------------------------------------------
*   c-list-11
--------------------------------------------- */
.c-list-11 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin-top: 2.63889vw;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (min-width: 1100px) {
    .c-list-11 {
        margin-top: 38px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-11 {
        margin-top: 10.43025vw;
    }
}

.c-list-11__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 33.33333vw;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

.c-list-11__item:nth-of-type(n+3) {
    margin-top: 2.5vw;
}

@media screen and (min-width: 1100px) {
    .c-list-11__item:nth-of-type(n+3) {
        margin-top: 36px;
    }
}

@media screen and (min-width: 1100px) {
    .c-list-11__item {
        width: 480px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-11__item {
        width: 100%;
    }
    .c-list-11__item:nth-of-type(n+2) {
        margin-top: 6.5189vw;
    }
}

.c-list-11__label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;
    padding: 0.625vw 2.08333vw;
    min-height: 4.16667vw;
    background-color: #FF5580;
    line-height: 1;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media screen and (min-width: 1100px) {
    .c-list-11__label {
        padding: 9px 30px;
        min-height: 60px;
        line-height: normal;
    }
}

@media screen and (max-width: 767px) {
    .c-list-11__label {
        padding: 2.34681vw 3.91134vw;
        min-height: 10%;
        line-height: normal;
    }
}

.c-list-11__ttl {
    color: #fff;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.38889vw;
    line-height: 1.2;
}

@media screen and (min-width: 1100px) {
    .c-list-11__ttl {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-11__ttl {
        font-size: 4.1721vw;
    }
}

.c-list-11__ttl--en {
    letter-spacing: 0;
}

.c-list-11__link-outer {
    padding: 0.13889vw 3.47222vw 0.83333vw 1.80556vw;
    background-color: #bf405e;
}

@media screen and (min-width: 1100px) {
    .c-list-11__link-outer {
        padding: 8px 50px 8px 26px;
    }
    body.chrome .c-list-11__link-outer {
        padding: 8px 50px 10px 26px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-11__link-outer {
        padding: 1.04302vw 9.64798vw 1.30378vw 3.38983vw;
    }
}

.c-list-11__link {
    position: relative;
    display: inline-block;
    background-color: #bf405e;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-list-11__link {
        line-height: normal;
    }
}

@media screen and (max-width: 767px) {
    .c-list-11__link {
        line-height: normal;
    }
}

.c-list-11__link[target="_blank"] .c-list-11__link-txt:after {
    position: absolute;
    top: 55%;
    right: 0;
    right: -120%;
    width: 1.31944vw;
    height: 1.18056vw;
    background: url(/img/common/link2_w.svg) 0 0 no-repeat;
    background-size: auto 100%;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (min-width: 1100px) {
    .c-list-11__link[target="_blank"] .c-list-11__link-txt:after {
        top: 55%;
        width: 18px;
        height: 17px;
    }
    body.ie .c-list-11__link[target="_blank"] .c-list-11__link-txt:after {
        top: 58%;
    }
}

@media screen and (max-width: 767px) {
    .c-list-11__link[target="_blank"] .c-list-11__link-txt:after {
        top: 50%;
        top: 45%;
        right: -100%;
        width: 3.25945vw;
        height: 3.25945vw;
        background-size: 100% auto;
        -webkit-transform: translateY(-35%);
        transform: translateY(-35%);
    }
}

.c-list-11__link[target="_blank"]:hover .c-list-11__link-txt:before {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .c-list-11__link[target="_blank"]:hover .c-list-11__link-txt {
        width: 0;
    }
}

.c-list-11__link-txt {
    position: relative;
    color: #fff;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    font-family: "Noto Sans Japanese";
}

.c-list-11__link-txt:before {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    content: "";
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media screen and (max-width: 767px) {
    .c-list-11__link-txt:before {
        -webkit-transition: none;
        transition: none;
    }
}

@media screen and (min-width: 1100px) {
    .c-list-11__link-txt {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-11__link-txt {
        font-size: 3.65059vw;
    }
}

.c-list-11__detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.80556vw 2.08333vw 2.08333vw;
    height: 100%;
    background-color: #FFF2F5;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

@media screen and (min-width: 1100px) {
    .c-list-11__detail {
        padding: 26px 30px 30px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-11__detail {
        padding: 3.91134vw 3.91134vw;
    }
}

.c-list-11__head {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.c-list-11__txt {
    color: #FF5580;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 0.97222vw;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-list-11__txt {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-11__txt {
        font-size: 3.38983vw;
    }
}

.c-list-11__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 0.13889vw;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (min-width: 1100px) {
    .c-list-11__box {
        padding-top: 2px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-11__box {
        padding-top: 0.65189vw;
    }
}

.c-list-11__name {
    position: relative;
    display: inline-block;
    margin-top: 0.55556vw;
    margin-right: 1.38889vw;
    color: #6600CC;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 0.97222vw;
    line-height: 2;
}

.c-list-11__name:before {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #6600CC;
    content: "";
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media screen and (max-width: 767px) {
    .c-list-11__name:before {
        -webkit-transition: none;
        transition: none;
    }
}

.c-list-11__name:hover:before {
    right: 0;
    left: auto;
    width: 0;
}

@media screen and (max-width: 767px) {
    .c-list-11__name:hover:before {
        width: 0;
    }
}

.c-list-11__name:after {
    position: absolute;
    right: -10%;
    content: ',';
}

.c-list-11__name:last-of-type {
    margin-right: 0;
}

.c-list-11__name:last-of-type:after {
    content: none;
}

@media screen and (min-width: 1100px) {
    .c-list-11__name {
        margin-right: 20px;
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-11__name {
        margin-top: 1.30378vw;
        margin-right: 5.21512vw;
        font-size: 3.38983vw;
    }
}

.c-list-11__name--nolink {
    margin-right: 1.38889vw !important;
    color: #404040;
}

.c-list-11__name--nolink:before {
    display: none;
}

.c-list-11__name--nolink:after {
    position: absolute;
    right: -10%;
    content: ',' !important;
}

@media screen and (min-width: 1100px) {
    .c-list-11__name--nolink {
        margin-right: 20px !important;
    }
}

@media screen and (max-width: 767px) {
    .c-list-11__name--nolink {
        margin-right: 5.21512vw !important;
    }
}

.c-list-11__body {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    margin-top: 2.08333vw;
    padding: 1.66667vw 2.08333vw 2.08333vw;
    height: 100%;
    background-color: #fff;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (min-width: 1100px) {
    .c-list-11__body {
        margin-top: 30px;
        padding: 24px 30px 30px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-11__body {
        margin-top: 6.5189vw;
        padding: 3.91134vw 3.25945vw;
    }
}

.c-list-11__desc {
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 0.97222vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .c-list-11__desc {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-11__desc {
        font-size: 3.38983vw;
    }
}

.c-list-11__img {
    margin-top: 2.77778vw;
    width: 100%;
    text-align: center;
}

body.windows.ie .c-list-11__img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    margin-top: 0;

    -webkit-box-align: end;
    align-items: flex-end;
}

@media screen and (min-width: 1100px) {
    .c-list-11__img {
        margin-top: 40px;
    }
    body.windows.ie .c-list-11__img {
        display: block;
        margin-top: 40px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-11__img {
        margin-top: 5.21512vw;
    }
}

body.windows.ie .c-list-11__img img {
    width: 100%;
}

@media screen and (min-width: 1100px) {
    body.windows.ie .c-list-11__img img {
        width: auto;
    }
}

/* ---------------------------------------------
*   c-list-12
--------------------------------------------- */
.c-list-12__cat {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2.77778vw;
}

@media screen and (min-width: 1100px) {
    .c-list-12__cat {
        margin-top: 40px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-12__cat {
        display: block;
        margin-top: 10.43025vw;
    }
}

.c-list-12__cat:first-of-type {
    margin-top: 0;
}

.c-list-12__label {
    margin-right: 1.38889vw;
    padding-top: 1.66667vw;
    width: 8.33333vw;
    background-color: #FF5580;
    text-align: center;
}

@media screen and (min-width: 1100px) {
    .c-list-12__label {
        margin-right: 20px;
        padding-top: 24px;
        width: 120px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-12__label {
        margin-bottom: 5.21512vw;
        padding: 2.34681vw 3.12907vw 3.12907vw;
        width: 100%;
        text-align: left;
    }
}

.c-list-12__txt {
    color: #fff;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-list-12__txt {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-12__txt {
        font-size: 3.65059vw;
    }
}

.c-list-12__txt--en {
    letter-spacing: 0;
}

.c-list-12__list {
    width: 59.72222vw;
}

@media screen and (min-width: 1100px) {
    .c-list-12__list {
        width: 860px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-12__list {
        width: 100%;
    }
}

.c-list-12__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 0.69444vw;
}

@media screen and (min-width: 1100px) {
    .c-list-12__item {
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-12__item {
        display: block;
        margin-bottom: 3.91134vw;
    }
}

.c-list-12__item:last-of-type {
    margin-bottom: 0;
}

.c-list-12__term {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    margin-right: 2.77778vw;
    padding: 0.69444vw 0.69444vw 1.45833vw;
    width: 13.88889vw;
    background-color: #FFF2F5;

    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

@media screen and (min-width: 1100px) {
    .c-list-12__term {
        margin-right: 40px;
        padding: 21px 10px;
        width: 200px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-12__term {
        -ms-flex-pack: start;
        margin-right: 0;
        padding: 2.08605vw 3.12907vw 2.86832vw;
        width: 100%;

        -webkit-box-pack: start;
        justify-content: flex-start;
    }
}

.c-list-12__link {
    display: inline-block;
}

.c-list-12__link:hover .c-list-12__link-txt:before {
    right: 0;
    left: auto;
    width: 0;
}

@media screen and (max-width: 767px) {
    .c-list-12__link:hover .c-list-12__link-txt:before {
        width: 0;
    }
}

.c-list-12__link-txt {
    position: relative;
    display: inline-block;
    color: #6600CC;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 2;
}

.c-list-12__link-txt:before {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #6600CC;
    content: "";
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media screen and (max-width: 767px) {
    .c-list-12__link-txt:before {
        -webkit-transition: none;
        transition: none;
    }
}

@media screen and (min-width: 1100px) {
    .c-list-12__link-txt {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-12__link-txt {
        font-size: 3.38983vw;
    }
}

.c-list-12__link-txt--nolink {
    color: #404040;
}

.c-list-12__link-txt--nolink:before {
    display: none;
}

.c-list-12__desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    padding-top: 0.69444vw;
    padding-bottom: 0.69444vw;
    width: 43.05556vw;
    color: #404040;
    font-weight: 300;
    font-size: 0.97222vw;

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (min-width: 1100px) {
    .c-list-12__desc {
        padding-top: 10px;
        padding-bottom: 10px;
        width: 620px;
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-12__desc {
        padding: 2.60756vw 3.12907vw 0;
        width: 100%;
        font-size: 3.38983vw;
    }
}

/* ---------------------------------------------
*   c-list-13
--------------------------------------------- */
.c-list-13 {
    position: relative;
    min-height: 330px;
    height: 48%;
    background: url(/img/index/bg_school.jpg) 0 0 no-repeat;
    background-size: cover;
}

@media screen and (max-width: 767px) {
    .c-list-13 {
        display: block;
        padding-top: 10.43025vw;
        min-height: auto;
        height: auto;
    }
}

.c-list-13__list-outer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    height: calc(100% - 4vw);

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (min-width: 1100px) {
    .c-list-13__list-outer {
        height: calc(100% - 38px);
    }
}

.c-list-13__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    margin-right: auto;
    margin-left: auto;
    width: 63.19444vw;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (min-width: 1100px) {
    .c-list-13__list {
        width: 910px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-13__list {
        display: block;
        width: 100%;
    }
}

.c-list-13__item {
    width: 27.77778vw;
    background-color: rgba(247, 242, 255, 0.8);
    text-align: center;
}

@media screen and (min-width: 1100px) {
    .c-list-13__item {
        width: 400px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-13__item {
        margin-right: auto;
        margin-left: auto;
        width: 70%;
    }
    .c-list-13__item:last-of-type {
        margin-top: 7.82269vw;
    }
}

.c-list-13__link {
    display: block;
    padding-top: 2.5vw;
    padding-bottom: 3.19444vw;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.c-list-13__link:hover .c-list-13__cat {
    display: block;
}

@media screen and (min-width: 1100px) {
    .c-list-13__link {
        padding-top: 36px;
        padding-bottom: 46px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-13__link {
        padding-top: 5.21512vw;
        padding-bottom: 8.08344vw;
    }
}

.c-list-13__link:hover {
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    .c-list-13__link:hover {
        opacity: 1;
    }
}

.c-list-13__link:hover .c-list-13__txt-outer:after {
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translate3d(8%, 0, 0);
    transform: translate3d(8%, 0, 0);
}

@media screen and (max-width: 767px) {
    .c-list-13__link:hover .c-list-13__txt-outer:after {
        -webkit-transition: none;
        transition: none;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.c-list-13__cat {
    color: #A6A6A6;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    font-family: 'Lato';
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .c-list-13__cat {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-13__cat {
        font-size: 3.65059vw;
    }
}

.c-list-13__ttl {
    display: block;
    margin-top: 1.38889vw;
    color: #4E1A84;
    letter-spacing: 0.1em;
    font-weight: 100;
    font-size: 1.52778vw;
    line-height: 1.5;
}

@media screen and (min-width: 1100px) {
    .c-list-13__ttl {
        margin-top: 20px;
        font-size: 1.375rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-13__ttl {
        margin-top: 3.91134vw;
        font-size: 4.1721vw;
    }
}

.c-list-13__txt-outer {
    position: relative;
    margin-top: 1.52778vw;
    margin-right: auto;
    margin-left: auto;
    width: 12.5vw;
    text-align: center;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-list-13__txt-outer {
        margin-top: 22px;
        width: 180px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-13__txt-outer {
        margin-top: 3.91134vw;
        width: 39.11343vw;
    }
}

.c-list-13__txt-outer:after {
    position: absolute;
    top: 80%;
    left: 0;
    width: 100%;
    height: 1.66667vw;
    background: url(/img/common/more_t.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@media screen and (min-width: 1100px) {
    .c-list-13__txt-outer:after {
        height: 24px;
    }
}

body.ie .c-list-13__txt-outer:after {
    top: 70%;
}

@media screen and (max-width: 767px) {
    .c-list-13__txt-outer:after {
        height: 4.1721vw;
        -webkit-transition: none;
        transition: none;
    }
}

.c-list-13__txt {
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    font-family: 'Lato';
    line-height: 1.5;
}

@media screen and (min-width: 1100px) {
    .c-list-13__txt {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-13__txt {
        font-size: 3.65059vw;
    }
}

.c-list-13__label {
    position: absolute;
    bottom: 0;
    left: 0;
    padding-top: 0.27778vw;
    padding-bottom: 0.83333vw;
    width: 100%;
    background-color: rgba(78, 26, 132, 0.8);
}

@media screen and (min-width: 1100px) {
    .c-list-13__label {
        position: static;
        padding-top: 6px;
        padding-bottom: 8px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-13__label {
        position: static;
        display: block;
        margin-top: 7.82269vw;
        padding-top: 1.04302vw;
        padding-bottom: 2.08605vw;
    }
}

.c-list-13__label-box {
    margin-right: auto;
    margin-left: auto;
    width: 63.19444vw;
    text-align: right;
}

@media screen and (min-width: 1100px) {
    .c-list-13__label-box {
        width: 910px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-13__label-box {
        width: 100%;
        text-align: center;
    }
}

.c-list-13__label-link {
    position: relative;
    display: inline-block;
}

.c-list-13__label-link:hover .c-list-13__label-txt:before {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .c-list-13__label-link:hover .c-list-13__label-txt:before {
        width: 0;
    }
}

.c-list-13__label-link[target="_blank"] {
    position: relative;
    padding-right: 2.08333vw;
}

@media screen and (min-width: 1100px) {
    .c-list-13__label-link[target="_blank"] {
        padding-right: 30px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-13__label-link[target="_blank"] {
        padding-right: 5.86701vw;
    }
}

.c-list-13__label-link[target="_blank"]:after {
    position: absolute;
    top: 60%;
    right: 0;
    width: 1.45833vw;
    height: 1.31944vw;
    background: url(/img/common/link2_w.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

body.firefox .c-list-13__label-link[target="_blank"]:after {
    background-size: auto 100%;
}

body.ie .c-list-13__label-link[target="_blank"]:after {
    width: 1.59722vw;
    height: 1.73611vw;
    background-size: auto 100%;
}

@media screen and (min-width: 1100px) {
    .c-list-13__label-link[target="_blank"]:after {
        width: 21px;
        height: 19px;
    }
    body.ie .c-list-13__label-link[target="_blank"]:after {
        width: 21px;
        height: 19px;
        background-size: 100% auto;
    }
}

@media screen and (max-width: 767px) {
    .c-list-13__label-link[target="_blank"]:after {
        top: 50%;
        width: 3.65059vw;
        height: 3.65059vw;
        -webkit-transform: translateY(-35%);
        transform: translateY(-35%);
    }
}

.c-list-13__label-link[target="_blank"]:hover .c-list-13__label-txt:before {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .c-list-13__label-link[target="_blank"]:hover .c-list-13__label-txt:before {
        width: 0;
    }
}

@media screen and (min-width: 768px) {
    .c-list-13__label-link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .c-list-13__label-link:hover {
        opacity: 0.8;
    }
}

@media screen and (min-width: 768px) and (max-width: 767px) {
    .c-list-13__label-link:hover {
        opacity: 1;
    }
}

.c-list-13__label-txt {
    position: relative;
    color: #fff;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 1.5;
}

@media screen and (min-width: 1100px) {
    .c-list-13__label-txt {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-13__label-txt {
        font-size: 3.12907vw;
    }
}

.c-list-13__label-txt:before {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.5);
    content: "";
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media screen and (max-width: 767px) {
    .c-list-13__label-txt:before {
        -webkit-transition: none;
        transition: none;
    }
}

/* ---------------------------------------------
*   c-list-2
--------------------------------------------- */
.c-list-2 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
    .c-list-2 {
        display: block;
    }
}

.c-list-2__item {
    margin-right: 1.38889vw;
    width: 22.22222vw;
    background-color: #fff;
}

@media screen and (min-width: 1100px) {
    .c-list-2__item {
        margin-right: 20px;
        width: 320px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-2__item {
        margin-top: 5.21512vw;
        margin-right: 0;
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .c-list-2__item:first-of-type {
        margin-top: 0;
    }
}

.c-list-2__item:nth-of-type(3n) {
    margin-right: 0;
}

.c-list-2__item:nth-of-type(n+4) {
    margin-top: 1.38889vw;
}

@media screen and (min-width: 1100px) {
    .c-list-2__item:nth-of-type(n+4) {
        margin-top: 20px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-2__item:nth-of-type(n+4) {
        margin-top: 5.21512vw;
    }
}

.c-list-2__link {
    display: block;
    height: 100%;
    text-align: center;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
}

.c-list-2__link:hover {
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    .c-list-2__link:hover {
        opacity: 1;
    }
}

@media screen and (max-width: 767px) {
    .c-list-2__link {
        padding-top: 15.64537vw;
        padding-bottom: 22.16428vw;
    }
}

.c-list-2__link:hover .c-list-2__link-outer:after {
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translate3d(8%, 0, 0);
    transform: translate3d(8%, 0, 0);
}

@media screen and (max-width: 767px) {
    .c-list-2__link:hover .c-list-2__link-outer:after {
        -webkit-transition: none;
        transition: none;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.c-list-2__ttl {
    display: inline-block;
    margin-top: 5.13889vw;
    margin-bottom: 3.47222vw;
    color: #A6A6A6;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 0.97222vw;
    font-family: 'Lato';
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-list-2__ttl {
        margin-top: 74px;
        margin-bottom: 50px;
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 1100px) {
    .c-list-2__ttl {
        margin-top: 4.3vw;
    }
}

@media screen and (max-width: 767px) {
    .c-list-2__ttl {
        margin-top: 5.21512vw;
        margin-bottom: 10.82138vw;
        font-size: 3.91134vw;
    }
}

.c-list-2__ttl--catch {
    display: block;
    margin-top: 0.625vw;
    font-size: 2.08333vw;
    line-height: 1.2;
}

@media screen and (min-width: 1100px) {
    .c-list-2__ttl--catch {
        margin-top: 9px;
        font-size: 1.875rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-2__ttl--catch {
        margin-top: 1.95567vw;
        font-size: 6.25815vw;
    }
}

.c-list-2__txt {
    display: block;
    margin-bottom: 3.81944vw;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 100;
    font-size: 1.25vw;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-list-2__txt {
        margin-bottom: 55px;
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-2__txt {
        margin-bottom: 10.95176vw;
        font-size: 3.91134vw;
    }
}

.c-list-2__link-outer {
    position: relative;
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 12.5vw;
    text-align: center;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-list-2__link-outer {
        width: 180px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-2__link-outer {
        width: 39.11343vw;
    }
}

.c-list-2__link-outer:after {
    position: absolute;
    top: 90%;
    left: 0;
    width: 100%;
    height: 1.66667vw;
    background: url(/img/common/more_b.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@media screen and (min-width: 1100px) {
    .c-list-2__link-outer:after {
        height: 24px;
    }
}

body.ie .c-list-2__link-outer:after {
    top: 70%;
}

@media screen and (max-width: 767px) {
    .c-list-2__link-outer:after {
        height: 4.1721vw;
        -webkit-transition: none;
        transition: none;
    }
}

.c-list-2__link-txt {
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 0.90278vw;
    font-family: 'Lato';
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-list-2__link-txt {
        font-size: 0.8125rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-2__link-txt {
        font-size: 3.38983vw;
    }
}

.c-list-2__img img {
    width: 100%;
}

/* ---------------------------------------------
*   c-list-3
--------------------------------------------- */
.c-list-3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 2.36111vw 2.77778vw;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (min-width: 1100px) {
    .c-list-3 {
        padding: 34px 40px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-3 {
        display: block;
        padding: 3.12907vw 2.60756vw;
    }
}

.c-list-3--nobg {
    margin-left: 0.34722vw;
    padding: 0;
}

@media screen and (min-width: 1100px) {
    .c-list-3--nobg {
        margin-left: 6px;
    }
}

.c-list-3--about {
    padding: 3.05556vw 2.77778vw;
    background-color: #F2FFF7;
}

@media screen and (min-width: 1100px) {
    .c-list-3--about {
        padding: 44px 40px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-3--about {
        padding: 3.12907vw 2.60756vw;
    }
}

.c-list-3--campus {
    padding: 3.05556vw 2.77778vw;
    background-color: #EBF0FF;
}

@media screen and (min-width: 1100px) {
    .c-list-3--campus {
        padding: 44px 40px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-3--campus {
        padding: 3.12907vw 2.60756vw;
    }
}

.c-list-3--space {
    margin-top: 2.77778vw;
}

@media screen and (min-width: 1100px) {
    .c-list-3--space {
        margin-top: 40px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-3--space {
        margin-top: 5.21512vw;
    }
}

.c-list-3__item {
    margin-left: 1.80556vw;
    width: 21.80556vw;
}

@media screen and (min-width: 1100px) {
    .c-list-3__item {
        margin-left: 26px;
        width: 314px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-3__item {
        margin-left: 0;
        width: 100%;
    }
}

.c-list-3__item:first-of-type {
    margin-left: 0;
}

.c-list-3__item:nth-of-type(3n+1) {
    margin-left: 0;
}

.c-list-3__item:nth-of-type(n+4) {
    margin-top: 2.43056vw;
}

@media screen and (min-width: 1100px) {
    .c-list-3__item:nth-of-type(n+4) {
        margin-top: 35px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-3__item:nth-of-type(n+4) {
        margin-top: 3.91134vw;
    }
}

@media screen and (max-width: 767px) {
    .c-list-3__item:nth-of-type(n+2) {
        margin-top: 2.60756vw;
    }
}

.c-list-3__item--auto {
    margin-left: 4.72222vw;
    width: auto;
}

@media screen and (min-width: 1100px) {
    .c-list-3__item--auto {
        margin-left: 68px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-3__item--auto {
        margin-left: 0;
    }
}

.c-list-3__link {
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.c-list-3__link[target="_blank"] .c-list-3__txt:after {
    display: inline-block;
    margin-left: 0.34722vw;
    width: 1.45833vw;
    height: 1.45833vw;
    background: url(/img/common/link2.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    vertical-align: middle;
}

body.ie .c-list-3__link[target="_blank"] .c-list-3__txt:after {
    width: 1.59722vw;
    height: 1.73611vw;
    background-size: auto 100%;
}

@media screen and (min-width: 1100px) {
    .c-list-3__link[target="_blank"] .c-list-3__txt:after {
        margin-left: 10px;
        width: 21px;
        height: 21px;
    }
    body.ie .c-list-3__link[target="_blank"] .c-list-3__txt:after {
        width: 21px;
        height: 21px;
        background-size: 100% auto;
    }
}

@media screen and (max-width: 767px) {
    .c-list-3__link[target="_blank"] .c-list-3__txt:after {
        margin-left: 1.82529vw;
        width: 3.65059vw;
        height: 3.65059vw;
    }
}

.c-list-3__link:hover .c-list-3__txt {
    -webkit-transition: color .2s;
    transition: color .2s;
}

.c-list-3__link:hover .c-list-3__txt--campus {
    color: #5580FF;
}

.c-list-3__link:hover .c-list-3__txt--about {
    color: #55CC80;
}

.c-list-3__link:hover .c-list-3__txt--admissions {
    color: #5580FF;
}

.c-list-3__link:hover .c-list-3__txt--laboratory {
    color: #FF5580;
}

.c-list-3__link:hover .c-list-3__txt--link {
    color: #4E1A84;
}

.c-list-3__link--auto {
    -ms-flex-align: end;

    -webkit-box-align: end;
    align-items: flex-end;
}

@media screen and (max-width: 767px) {
    .c-list-3__link--auto {
        -ms-flex-align: normal;

        -webkit-box-align: normal;
        align-items: normal;
    }
}

.c-list-3__arrow {
    position: relative;
    margin-top: 0.27778vw;
    margin-right: 0.97222vw;
    width: 1.80556vw;
    height: 1.80556vw;
}

@media screen and (min-width: 1100px) {
    .c-list-3__arrow {
        margin-top: 0;
        margin-right: 14px;
        width: 26px;
        height: 26px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-3__arrow {
        margin-top: 0.78227vw;
        margin-right: 2.34681vw;
        width: 5.21512vw;
        height: 5.21512vw;
    }
}

.c-list-3__arrow:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/img/common/arrow.svg) 45% 50% no-repeat;
    background-size: 4px auto;
    content: '';
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

body.ie .c-list-3__arrow:before {
    background-size: 15px auto;
}

@media screen and (max-width: 1100px) {
    .c-list-3__arrow:before {
        background-size: 3px auto;
    }
}

.c-list-3__arrow--about {
    background-color: #55CC80;
}

.c-list-3__arrow--campus {
    background-color: #5580FF;
}

.c-list-3__arrow--admissions {
    background-color: #5580FF;
}

.c-list-3__arrow--laboratory {
    background-color: #FF5580;
}

.c-list-3__arrow--link {
    background-color: #4E1A84;
}

.c-list-3__arrow--auto {
    margin-top: 0;
}

@media screen and (max-width: 767px) {
    .c-list-3__arrow--auto {
        margin-top: 0.78227vw;
    }
}

.c-list-3__txt-outer {
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-list-3__txt-outer {
        line-height: 26px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-3__txt-outer {
        width: auto;
        line-height: normal;
    }
}

.c-list-3__txt-outer--long {
    width: 19.02778vw;
}

@media screen and (min-width: 1100px) {
    .c-list-3__txt-outer--long {
        width: 274px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-3__txt-outer--long {
        width: auto;
    }
}

.c-list-3__txt-outer--campus {
    width: 18.33333vw;
}

@media screen and (min-width: 1100px) {
    .c-list-3__txt-outer--campus {
        width: 264px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-3__txt-outer--campus {
        width: 75vw;
    }
}

.c-list-3__txt-outer--admissions {
    width: 19.02778vw;
}

@media screen and (min-width: 1100px) {
    .c-list-3__txt-outer--admissions {
        width: 274px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-3__txt-outer--admissions {
        width: auto;
    }
}

.c-list-3__txt {
    position: relative;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 200;
    font-size: 1.11111vw;
    line-height: 1.5;
}

@media screen and (min-width: 1100px) {
    .c-list-3__txt {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-3__txt {
        font-size: 0.875rem;
    }
}

body.firefox .c-list-3__txt {
    white-space: nowrap;
}

.c-list-3__txt--en {
    font-weight: 300;
    font-family: 'Lato';
}

body.firefox .c-list-3__txt--en {
    white-space: normal;
}

/* ---------------------------------------------
*   c-list-4
--------------------------------------------- */
.c-list-4 {
    padding: 2.36111vw 2.63889vw;
}

@media screen and (min-width: 1100px) {
    .c-list-4 {
        padding: 34px 38px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-4 {
        padding: 3.12907vw 2.34681vw;
    }
}

.c-list-4--about {
    background-color: #F2FFF7;
}

.c-list-4__item {
    position: relative;
    margin-bottom: 0.76389vw;
    padding-left: 1.52778vw;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .c-list-4__item {
        margin-bottom: 11px;
        padding-left: 22px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-4__item {
        margin-bottom: 1.82529vw;
        padding-left: 4.1721vw;
        font-size: 3.65059vw;
    }
}

.c-list-4__item:before {
    position: absolute;
    top: 0.41667vw;
    left: 0;
    width: 0.41667vw;
    height: 1.66667vw;
    content: '';
}

@media screen and (min-width: 1100px) {
    .c-list-4__item:before {
        top: 6px;
        width: 6px;
        height: 24px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-4__item:before {
        top: 1.30378vw;
        width: 1.56454vw;
        height: 5.21512vw;
    }
}

.c-list-4__item--about:before {
    background-color: #55CC80;
}

.c-list-4__item:last-of-type {
    margin-bottom: 0;
}

.c-list-4__item--en {
    font-weight: 300;
    font-family: 'Lato';
}

/* ---------------------------------------------
*   c-list-5
--------------------------------------------- */
.c-list-5--about {
    margin-top: 3.61111vw;
    margin-bottom: 6.94444vw;
}

@media screen and (min-width: 1100px) {
    .c-list-5--about {
        margin-top: 52px;
        margin-bottom: 100px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-5--about {
        margin-top: 7.82269vw;
        margin-bottom: 13.03781vw;
    }
}

.c-list-5__cat {
    margin-bottom: 6.94444vw;
}

@media screen and (min-width: 1100px) {
    .c-list-5__cat {
        margin-bottom: 100px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-5__cat {
        margin-bottom: 13.03781vw;
    }
}

.c-list-5__cat--column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .c-list-5__cat--column {
        display: block;
    }
}

.c-list-5__cat--chara {
    margin-bottom: 5.41667vw;
}

@media screen and (min-width: 1100px) {
    .c-list-5__cat--chara {
        margin-bottom: 78px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-5__cat--chara {
        margin-bottom: 10.43025vw;
    }
}

.c-list-5__cat--narrow {
    margin-bottom: 3.88889vw;
}

@media screen and (min-width: 1100px) {
    .c-list-5__cat--narrow {
        margin-bottom: 56px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-5__cat--narrow {
        margin-bottom: 10.43025vw;
    }
}

.c-list-5__cat:last-of-type {
    margin-bottom: 0;
}

.c-list-5__list {
    width: 45.13889vw;
}

@media screen and (min-width: 1100px) {
    .c-list-5__list {
        width: 650px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-5__list {
        width: 100%;
    }
}

.c-list-5__list--wide {
    width: 100%;
}

.c-list-5__item {
    position: relative;
    margin-bottom: 1.52778vw;
    padding-left: 2.77778vw;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .c-list-5__item {
        margin-bottom: 22px;
        padding-left: 40px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-5__item {
        margin-bottom: 2.86832vw;
        padding-left: 5.21512vw;
        font-size: 3.65059vw;
    }
}

.c-list-5__item:before {
    position: absolute;
    top: 0.55556vw;
    left: 0.34722vw;
    width: 1.25vw;
    height: 1.25vw;
    border-radius: 50%;
    content: '';
}

@media screen and (min-width: 1100px) {
    .c-list-5__item:before {
        top: 7px;
        left: 5px;
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-5__item:before {
        top: 2.73794vw;
        left: 0;
        width: 2.60756vw;
        height: 2.60756vw;
    }
}

.c-list-5__item--about:before {
    background-color: #55CC80;
}

.c-list-5__item--campus:before {
    background-color: #5580FF;
}

.c-list-5__item--admissions:before {
    background-color: #5580FF;
}

.c-list-5__item--bold {
    font-weight: 500;
}

.c-list-5__item--heading {
    display: block;
    font-weight: 500;
}

.c-list-5__item:last-of-type {
    margin-bottom: 0;
}

.c-list-5__item--en {
    font-weight: 300;
    font-family: 'Lato';
}

.c-list-5__img {
    width: 22.22222vw;
}

@media screen and (min-width: 1100px) {
    .c-list-5__img {
        width: 320px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-5__img {
        margin-top: 6.5189vw;
        width: 100%;
        text-align: center;
    }
}

.c-list-5__img--chemical {
    margin-top: 0.41667vw;
}

@media screen and (min-width: 1100px) {
    .c-list-5__img--chemical {
        margin-top: 6px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-5__img--chemical {
        margin-top: 6.5189vw;
    }
}

.c-list-5__label {
    margin-bottom: 2.08333vw;
    padding: 0.13889vw 1.94444vw 0.97222vw;
    width: 44.44444vw;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-list-5__label {
        margin-bottom: 30px;
        padding: 8px 28px 10px;
        width: 640px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-5__label {
        margin-bottom: 3.91134vw;
        padding: 1.82529vw 3.65059vw 2.08605vw;
        width: 100%;
    }
}

.c-list-5__label--about {
    background-color: #55CC80;
}

.c-list-5__label--campus {
    background-color: #5580FF;
}

.c-list-5__txt {
    color: #fff;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-list-5__txt {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-5__txt {
        font-size: 3.65059vw;
    }
}

.c-list-5__txt--en {
    font-weight: 300;
    font-family: 'Lato';
}

.c-list-5__desc {
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .c-list-5__desc {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-5__desc {
        font-size: 3.65059vw;
    }
}

.c-list-5__desc--en {
    font-weight: 300;
    font-family: 'Lato';
}

.c-list-5__link {
    position: relative;
    display: inline-block;
}

.c-list-5__link[target="_blank"] {
    margin-right: 0.34722vw;
    padding-right: 1.73611vw;
}

@media screen and (min-width: 1100px) {
    .c-list-5__link[target="_blank"] {
        margin-right: 5px;
        padding-right: 25px;
        white-space: nowrap;
    }
}

@media screen and (max-width: 767px) {
    .c-list-5__link[target="_blank"] {
        margin-right: 1.30378vw;
        padding-right: 3.91134vw;
    }
}

.c-list-5__link[target="_blank"]:after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 1.45833vw;
    height: 1.31944vw;
    background: url(/img/common/link2_p.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (min-width: 1100px) {
    .c-list-5__link[target="_blank"]:after {
        width: 21px;
        height: 19px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-5__link[target="_blank"]:after {
        width: 3.25945vw;
        height: 3.25945vw;
        -webkit-transform: translateY(-35%);
        transform: translateY(-35%);
    }
}

.c-list-5__link[target="_blank"]:hover:before {
    right: 0;
    width: 0;
}

@media screen and (max-width: 767px) {
    .c-list-5__link[target="_blank"]:hover:before {
        width: 0;
    }
}

@media screen and (min-width: 768px) {
    .c-list-5__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .c-list-5__link:hover {
        opacity: 0.8;
    }
}

@media screen and (min-width: 768px) and (max-width: 767px) {
    .c-list-5__link:hover {
        opacity: 1;
    }
}

.c-list-5__link-txt {
    position: relative;
    color: #6600CC;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
}

@media screen and (min-width: 1100px) {
    .c-list-5__link-txt {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-5__link-txt {
        font-size: 3.65059vw;
    }
}

.c-list-5__link-txt:before {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #6600CC;
    content: "";
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media screen and (max-width: 767px) {
    .c-list-5__link-txt:before {
        -webkit-transition: none;
        transition: none;
    }
}

.c-list-5__link-txt:hover:before {
    right: 0;
    left: auto;
    width: 0;
}

@media screen and (max-width: 767px) {
    .c-list-5__link-txt:hover:before {
        width: 0;
    }
}

/* ---------------------------------------------
*   c-list-6
--------------------------------------------- */
.c-list-6 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;

    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .c-list-6 {
        display: block;
    }
}

.c-list-6__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 33.33333vw;

    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
}

@media screen and (min-width: 1100px) {
    .c-list-6__item {
        width: 480px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-6__item {
        margin-bottom: 10.43025vw;
        width: 100%;
    }
    .c-list-6__item:last-of-type {
        margin-bottom: 0;
    }
}

.c-list-6__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 2.77778vw;

    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media screen and (min-width: 1100px) {
    .c-list-6__head {
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-6__head {
        display: block;
        margin-bottom: 5.21512vw;
    }
}

.c-list-6__img {
    margin-right: 2.08333vw;
    width: 16.66667vw;
    height: 22.22222vw;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (min-width: 1100px) {
    .c-list-6__img {
        margin-right: 30px;
        width: 240px;
        height: 320px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-6__img {
        margin-right: auto;
        margin-bottom: 3.91134vw;
        margin-left: auto;
        width: 75%;
        height: 80vw;
        text-align: center;
    }
}

.c-list-6__detail {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 14.58333vw;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

@media screen and (min-width: 1100px) {
    .c-list-6__detail {
        width: 210px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-6__detail {
        display: block;
        width: 100%;
    }
}

.c-list-6__ttl {
    display: block;
    margin-top: 4.16667vw;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-size: 1.38889vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .c-list-6__ttl {
        margin-top: 60px;
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-6__ttl {
        margin-top: 3.91134vw;
        font-size: 4.1721vw;
    }
}

.c-list-6__ttl--en {
    letter-spacing: 0;
    font-weight: 300;
    font-family: 'Lato';
}

.c-list-6__info {
    margin: auto 0 0 0;
}

.c-list-6__txt {
    display: block;
    color: #404040;
    font-weight: 300;
    font-size: 0.97222vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .c-list-6__txt {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-6__txt {
        font-size: 3.38983vw;
    }
}

.c-list-6__txt--en {
    font-weight: 300;
    font-family: 'Lato';
}

.c-list-6__body {
    padding: 1.80556vw 1.80556vw 1.80556vw 2.08333vw;
    height: 100%;
    background-color: #F2FFF7;
}

@media screen and (min-width: 1100px) {
    .c-list-6__body {
        padding: 26px 26px 26px 30px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-6__body {
        padding: 2.60756vw;
        min-height: auto;
    }
}

.c-list-6__desc {
    color: #404040;
    letter-spacing: 0.05em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .c-list-6__desc {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-6__desc {
        font-size: 3.65059vw;
    }
}

.c-list-6__desc--en {
    font-weight: 300;
    font-family: 'Lato';
}

/* ---------------------------------------------
*   c-list-7
--------------------------------------------- */
.c-list-7 {
    margin-top: 4.16667vw;
}

@media screen and (min-width: 1100px) {
    .c-list-7 {
        margin-top: 60px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-7 {
        margin-top: 10.43025vw;
    }
}

.c-list-7__list-outer {
    margin-bottom: 4.16667vw;
}

@media screen and (min-width: 1100px) {
    .c-list-7__list-outer {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-7__list-outer {
        margin-bottom: 6.5189vw;
    }
}

.c-list-7__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: center;
    margin-bottom: 1.38889vw;

    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    align-items: center;
}

@media screen and (min-width: 1100px) {
    .c-list-7__list {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-7__list {
        display: block;
        margin-bottom: 3.91134vw;
    }
}

.c-list-7__list:last-of-type {
    margin-bottom: 0;
}

.c-list-7__term {
    padding: 2.63889vw 2.22222vw;
    width: 27.08333vw;
    background-color: #EBF0FF;
    color: #404040;
    white-space: nowrap;
    letter-spacing: 0.1em;
    font-weight: 100;
    font-size: 1.25vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .c-list-7__term {
        padding: 38px 32px;
        width: 390px;
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-7__term {
        margin-bottom: 2.60756vw;
        padding: 3.12907vw 3.65059vw;
        width: 100%;
        white-space: normal;
        font-size: 3.65059vw;
    }
}

.c-list-7__desc {
    width: 40.27778vw;
}

@media screen and (min-width: 1100px) {
    .c-list-7__desc {
        width: 580px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-7__desc {
        width: 100%;
    }
}

.c-list-7__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    margin-top: 0.55556vw;
    white-space: nowrap;
    line-height: 1;

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (min-width: 1100px) {
    .c-list-7__box {
        margin-top: 8px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-7__box {
        display: block;
        margin-top: 0;
        line-height: normal;
    }
}

.c-list-7__box:first-of-type {
    margin-top: 0;
}

.c-list-7__box--multi {
    line-height: 1.5;
}

@media screen and (max-width: 767px) {
    .c-list-7__box--multi {
        line-height: normal;
    }
}

.c-list-7__link {
    position: relative;
    display: inline-block;
}

@media screen and (max-width: 767px) {
    .c-list-7__link {
        margin-bottom: 1.95567vw;
    }
}

.c-list-7__link[target="_blank"] {
    margin-right: 0.34722vw;
    padding-right: 1.73611vw;
}

@media screen and (min-width: 1100px) {
    .c-list-7__link[target="_blank"] {
        margin-right: 5px;
        padding-right: 25px;
        white-space: nowrap;
    }
}

@media screen and (max-width: 767px) {
    .c-list-7__link[target="_blank"] {
        margin-right: 1.30378vw;
        padding-right: 3.91134vw;
    }
}

.c-list-7__link[target="_blank"]:after {
    position: absolute;
    top: 65%;
    right: 0;
    width: 1.45833vw;
    height: 1.31944vw;
    background: url(/img/common/link2_p.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (min-width: 1100px) {
    .c-list-7__link[target="_blank"]:after {
        top: 50%;
        width: 21px;
        height: 19px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-7__link[target="_blank"]:after {
        top: 50%;
        width: 3.25945vw;
        height: 3.25945vw;
        -webkit-transform: translateY(-35%);
        transform: translateY(-35%);
    }
}

.c-list-7__link[target="_blank"]:hover:before {
    right: 0;
    width: 0;
}

@media screen and (max-width: 767px) {
    .c-list-7__link[target="_blank"]:hover:before {
        width: 0;
    }
}

@media screen and (min-width: 768px) {
    .c-list-7__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .c-list-7__link:hover {
        opacity: 0.8;
    }
}

@media screen and (min-width: 768px) and (max-width: 767px) {
    .c-list-7__link:hover {
        opacity: 1;
    }
}

.c-list-7__link-txt {
    position: relative;
    color: #6600CC;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
}

@media screen and (min-width: 1100px) {
    .c-list-7__link-txt {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-7__link-txt {
        font-size: 3.65059vw;
    }
}

.c-list-7__link-txt:before {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #6600CC;
    content: "";
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media screen and (max-width: 767px) {
    .c-list-7__link-txt:before {
        -webkit-transition: none;
        transition: none;
    }
}

.c-list-7__link-txt:hover:before {
    right: 0;
    left: auto;
    width: 0;
}

@media screen and (max-width: 767px) {
    .c-list-7__link-txt:hover:before {
        width: 0;
    }
}

.c-list-7__link-txt--nolink {
    color: #404040;
}

.c-list-7__link-txt--nolink:before {
    display: none;
}

.c-list-7__tel {
    display: inline-block;
    margin-top: 0.41667vw;
    margin-right: 1.66667vw;
    margin-left: 1.04167vw;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
}

@media screen and (min-width: 1100px) {
    .c-list-7__tel {
        margin-top: 0;
        margin-right: 24px;
        margin-left: 15px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-7__tel {
        display: block;
        margin-top: 0;
        margin-right: 0;
        margin-bottom: 0.39113vw;
        margin-left: 0;
        font-size: 3.65059vw;
    }
}

.c-list-7__tel:hover {
    cursor: auto;
}

.c-list-7__tel--no-mail {
    margin-right: 0;
}

.c-list-7__mail {
    position: relative;
}

@media screen and (max-width: 767px) {
    .c-list-7__mail {
        display: block;
    }
}

.c-list-7__mail:before {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 0;
    height: 1px;
    background-color: #6600CC;
    content: "";
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media screen and (max-width: 767px) {
    .c-list-7__mail:before {
        -webkit-transition: none;
        transition: none;
    }
}

.c-list-7__mail:hover:before {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .c-list-7__mail:hover:before {
        width: 0;
    }
}

.c-list-7__link-mail {
    display: inline-block;
    color: #6600CC;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
}

@media screen and (min-width: 1100px) {
    .c-list-7__link-mail {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-7__link-mail {
        font-size: 3.65059vw;
    }
}

.c-list-7__link-mail--nolink {
    color: #404040;
}

/* ---------------------------------------------
*   c-list-8
--------------------------------------------- */
.c-list-8 {
    margin-top: 2.22222vw;
}

@media screen and (min-width: 1100px) {
    .c-list-8 {
        margin-top: 32px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-8 {
        margin-top: 7.82269vw;
    }
}

.c-list-8__item {
    margin-top: 2.22222vw;
}

@media screen and (min-width: 1100px) {
    .c-list-8__item {
        margin-top: 32px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-8__item {
        margin-top: 5.21512vw;
    }
}

.c-list-8__item:first-of-type {
    margin-top: 0;
}

.c-list-8__ttl {
    position: relative;
    padding-left: 2.08333vw;
    color: #5580FF;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .c-list-8__ttl {
        padding-left: 30px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-8__ttl {
        padding-left: 4.1721vw;
        font-size: 0.875rem;
    }
}

.c-list-8__ttl:before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 0.41667vw;
    height: 100%;
    background-color: #5580FF;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (min-width: 1100px) {
    .c-list-8__ttl:before {
        width: 6px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-8__ttl:before {
        width: 0.91265vw;
        height: 80%;
    }
}

.c-list-8__ttl--en {
    font-weight: 300;
}

@media screen and (max-width: 767px) {
    .c-list-8__ttl--en:before {
        top: 2.5vw;
        height: 5vw;
    }
    body.android .c-list-8__ttl--en:before {
        top: 2vw;
    }
}

.c-list-8__txt {
    margin-top: 0.55556vw;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .c-list-8__txt {
        margin-top: 8px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-8__txt {
        margin-top: 1.30378vw;
        font-size: 0.875rem;
    }
}

.c-list-8__txt--en {
    font-weight: 300;
}

/* ---------------------------------------------
*   c-list-9
--------------------------------------------- */
.c-list-9--wide {
    margin-top: 3.88889vw;
    margin-bottom: 2.91667vw;
}

@media screen and (min-width: 1100px) {
    .c-list-9--wide {
        margin-top: 56px;
        margin-bottom: 42px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-9--wide {
        margin-top: 6.5189vw;
        margin-bottom: 6.5189vw;
    }
}

.c-list-9__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    padding-top: 0.83333vw;
    width: 45.48611vw;

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (min-width: 1100px) {
    .c-list-9__list {
        padding-top: 12px;
        width: 655px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-9__list {
        display: block;
        padding-top: 3.91134vw;
        width: 100%;
    }
}

.c-list-9__list:first-of-type {
    padding-top: 0;
}

.c-list-9__list--program {
    -ms-flex-align: start;
    width: 100%;

    -webkit-box-align: start;
    align-items: flex-start;
}

.c-list-9__term {
    margin-right: 2.43056vw;
    padding: 1.45833vw 0.69444vw 1.45833vw 2.36111vw;
    width: 19.44444vw;
    background-color: #EBF0FF;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 100;
    font-size: 1.11111vw;
    line-height: 1.5;
}

@media screen and (min-width: 1100px) {
    .c-list-9__term {
        margin-right: 35px;
        padding: 21px 10px 21px 34px;
        width: 280px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-9__term {
        margin-right: 0;
        padding: 2.60756vw 3.91134vw;
        width: 100%;
        font-size: 3.65059vw;
    }
}

.c-list-9__term--program {
    color: #5580FF;
}

.c-list-9__desc {
    width: 23.61111vw;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .c-list-9__desc {
        width: 340px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-9__desc {
        margin-top: 2.86832vw;
        margin-left: 3.91134vw;
        width: auto;
        font-size: 3.65059vw;
    }
}

.c-list-9__desc--program {
    margin-top: 0.90278vw;
    width: 47.56944vw;
}

@media screen and (min-width: 1100px) {
    .c-list-9__desc--program {
        margin-top: 13px;
        width: 685px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-9__desc--program {
        margin-top: 2.86832vw;
        width: auto;
    }
}

.c-list-9__desc--row {
    white-space: nowrap;
}

@media screen and (max-width: 900px) {
    .c-list-9__desc--row {
        white-space: normal;
    }
}

.c-list-9__link {
    display: inline-block;
}

.c-list-9__link[target="_blank"] {
    position: relative;
    margin-right: 0.34722vw;
    padding-right: 1.73611vw;
}

@media screen and (min-width: 1100px) {
    .c-list-9__link[target="_blank"] {
        margin-right: 5px;
        padding-right: 25px;
    }
}

@media screen and (max-width: 767px) {
    .c-list-9__link[target="_blank"] {
        margin-right: 0.65189vw;
        padding-right: 3.91134vw;
    }
}

.c-list-9__link[target="_blank"]:after {
    position: absolute;
    top: 55%;
    right: 0;
    width: 1.45833vw;
    height: 1.31944vw;
    background: url(/img/common/link2_p.svg) 0 0 no-repeat;
    background-size: auto 100%;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (min-width: 1100px) {
    .c-list-9__link[target="_blank"]:after {
        width: 21px;
        height: 19px;
    }
    body.ie .c-list-9__link[target="_blank"]:after {
        top: 58%;
    }
}

@media screen and (max-width: 767px) {
    .c-list-9__link[target="_blank"]:after {
        top: 50%;
        width: 3.25945vw;
        height: 3.25945vw;
        background-size: 100% auto;
        -webkit-transform: translateY(-35%);
        transform: translateY(-35%);
    }
}

.c-list-9__link[target="_blank"]:hover .c-list-9__link-txt:before {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .c-list-9__link[target="_blank"]:hover .c-list-9__link-txt:before {
        width: 0;
    }
}

@media screen and (min-width: 768px) {
    .c-list-9__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .c-list-9__link:hover {
        opacity: 0.8;
    }
}

@media screen and (min-width: 768px) and (max-width: 767px) {
    .c-list-9__link:hover {
        opacity: 1;
    }
}

.c-list-9__link-txt {
    position: relative;
    color: #6600CC;
    white-space: nowrap;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 1.5;
}

@media screen and (min-width: 1100px) {
    .c-list-9__link-txt {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .c-list-9__link-txt {
        font-size: 3.65059vw;
    }
}

.c-list-9__link-txt:before {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 0;
    height: 1px;
    background-color: rgba(102, 0, 204, 0.5);
    content: "";
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media screen and (max-width: 767px) {
    .c-list-9__link-txt:before {
        -webkit-transition: none;
        transition: none;
    }
}

/* ---------------------------------------------
*   c-section-1
--------------------------------------------- */
.c-section-1 {
    position: relative;
}

.c-section-1:before {
    position: absolute;
    width: 0;
    content: '';
}

.c-section-1.is-fadein:before {
    width: 69.44444vw;
    -webkit-transition: 1s;
    transition: 1s;
}

@media screen and (min-width: 1100px) {
    .c-section-1.is-fadein:before {
        width: calc((100% - 1100px) / 2 + 830px);
    }
}

@media screen and (max-width: 767px) {
    .c-section-1.is-fadein:before {
        width: 65.18905vw;
    }
}

.c-section-1--kv {
    margin-left: 0;
    opacity: 1;
}

@media screen and (max-width: 767px) {
    .c-section-1--kv {
        padding-top: 3.91134vw;
    }
}

@media screen and (max-width: 480px) {
    .c-section-1--kv {
        padding-top: 0;
    }
}

.c-section-1--about {
    margin-bottom: 11.94444vw;
    padding-top: 11.11111vw;
}

@media screen and (min-width: 1100px) {
    .c-section-1--about {
        margin-bottom: 172px;
        padding-top: 160px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1--about {
        margin-bottom: 15.64537vw;
        padding-top: 18.25293vw;
    }
}

.c-section-1--about:before {
    top: 0;
    right: 0;
    z-index: -1;
    height: 100%;
    background-color: #F2FFF7;
}

.c-section-1--info {
    margin-bottom: 9.86111vw;
}

@media screen and (min-width: 1100px) {
    .c-section-1--info {
        margin-bottom: 142px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1--info {
        margin-bottom: 16.94915vw;
    }
}

.c-section-1--info:before {
    top: 8vw;
    left: 0;
    z-index: -1;
    height: calc(100% - 8vw);
    background-color: #FFFEEB;
}

@media screen and (min-width: 1100px) {
    .c-section-1--info:before {
        top: 110px;
        height: calc(100% - 110px);
    }
}

@media screen and (max-width: 767px) {
    .c-section-1--info:before {
        top: 12vw;
        height: calc(100% - 12vw);
    }
}

.c-section-1--life {
    margin-bottom: 15vw;
}

@media screen and (min-width: 1100px) {
    .c-section-1--life {
        margin-bottom: 216px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1--life {
        margin-bottom: 19.55671vw;
    }
}

.c-section-1--life:before {
    top: 13vw;
    right: 0;
    z-index: -1;
    height: calc(100% - 13vw);
    background-color: #EBF0FF;
}

@media screen and (min-width: 1100px) {
    .c-section-1--life:before {
        top: 192px;
        height: calc(100% - 192px);
    }
}

@media screen and (max-width: 767px) {
    .c-section-1--life:before {
        top: 32vw;
        height: calc(100% - 32vw);
    }
}

.c-section-1--study {
    margin-bottom: 11.11111vw;
}

@media screen and (min-width: 1100px) {
    .c-section-1--study {
        margin-bottom: 160px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1--study {
        position: relative;
        margin-bottom: 23.46806vw;
    }
}

.c-section-1--study:before {
    top: 13vw;
    left: 0;
    z-index: -1;
    height: calc(100% - 13vw);
    background-color: #FFF2F5;
}

@media screen and (min-width: 1100px) {
    .c-section-1--study:before {
        top: 190px;
        height: calc(100% - 190px);
    }
}

@media screen and (max-width: 767px) {
    .c-section-1--study:before {
        top: 30vw;
        height: calc(100% - 30vw);
    }
}

.c-section-1__inner {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    max-width: 76.38889vw;
}

@media screen and (min-width: 1100px) {
    .c-section-1__inner {
        max-width: 1100px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__inner {
        margin-left: 4.56323vw;
        max-width: 86.04954vw;
    }
}

.c-section-1__inner--kv {
    max-width: none;
}

@media screen and (max-width: 767px) {
    .c-section-1__inner--kv {
        margin-left: 0;
        max-width: 100%;
    }
}

.c-section-1__item {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    margin-right: auto;
    margin-left: auto;
    min-height: 580px;
    max-width: 76.38889vw;
    height: calc(100vh - 8.54vw);

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (min-width: 1100px) {
    .c-section-1__item {
        max-width: 1100px;
        height: calc(100vh - 103px);
    }
}

@media screen and (max-width: 1100px) {
    .c-section-1__item {
        max-width: 90%;
        height: calc(100vh - 80px);

        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__item {
        margin-left: 9.77836vw;
        max-width: 88.65711vw;
    }
}

.c-section-1__item:before {
    position: absolute;
    top: auto;
    bottom: 0;
    left: 0;
    min-height: 12.84722vw;
    width: 1px;
    background-color: rgba(64, 64, 64, 0.3);
    content: '';
    -webkit-transition: -webkit-transform .7s .3s;
    transition: -webkit-transform .7s .3s;
    transition: transform .7s .3s;
    transition: transform .7s .3s, -webkit-transform .7s .3s;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

@media screen and (min-width: 1100px) {
    .c-section-1__item:before {
        min-height: 235px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__item:before {
        left: -6.8%;
        min-height: 39.11343vw;
    }
}

.c-section-1__item.is-fadein:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.c-section-1__item--kv {
    margin-right: auto;
    margin-left: auto;
    max-width: 76.38889vw;
}

@media screen and (min-width: 1100px) {
    .c-section-1__item--kv {
        max-width: 1100px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__item--kv {
        max-width: 88.65711vw;
    }
}

.c-section-1__particle {
    width: 37.15278vw;
    height: 29.72222vw;
}

@media screen and (min-width: 1100px) {
    .c-section-1__particle {
        width: 535px;
        height: 428px;
    }
}

@media screen and (max-width: 1100px) {
    .c-section-1__particle {
        width: 100%;
        height: 45.13889vw;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__particle {
        margin-left: 0;
        height: 71.70795vw;
    }
}

.c-section-1__head {
    position: relative;
    margin-left: 6.94444vw;
}

@media screen and (min-width: 1100px) {
    .c-section-1__head {
        margin-left: 100px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__head {
        margin-left: 7.82269vw;
    }
}

.c-section-1__body {
    position: relative;
    padding-bottom: 6.94444vw;
    padding-left: 6.94444vw;
}

.c-section-1__body:before {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100%;
    width: 1px;
    background-color: rgba(64, 64, 64, 0.4);
    content: '';
    -webkit-transition: -webkit-transform .7s .3s;
    transition: -webkit-transform .7s .3s;
    transition: transform .7s .3s;
    transition: transform .7s .3s, -webkit-transform .7s .3s;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.c-section-1__body.is-fadein:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.c-section-1__body--study:before {
    top: auto;
    bottom: 0;
    min-height: calc(100% - 14vw);
}

@media screen and (min-width: 1100px) {
    .c-section-1__body--study:before {
        min-height: calc(100% - 204px);
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__body--study:before {
        min-height: calc(100% - 44vw);
    }
}

@media screen and (min-width: 1100px) {
    .c-section-1__body {
        padding-bottom: 100px;
        padding-left: 100px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__body {
        padding-bottom: 16.94915vw;
        padding-left: 7.82269vw;
    }
}

.c-section-1__body--about {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    padding-bottom: 0;

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
    .c-section-1__body--about {
        display: block;
        padding-bottom: 14vw;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__body--study {
        padding-bottom: 26.07562vw;
    }
}

.c-section-1__box {
    position: relative;
    margin-left: 6.94444vw;
}

@media screen and (min-width: 1100px) {
    .c-section-1__box {
        margin-left: 100px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__box {
        margin-left: 0;
    }
}

.c-section-1__kv {
    position: relative;
    width: 100%;
    height: 27.77778vw;
    background: url(/img/top/img_keyvisual.jpg) center center no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

@media screen and (min-width: 768px) {
    .safari .c-section-1__kv {
        background-attachment: scroll;
    }
}

@media screen and (min-width: 1100px) {
    .c-section-1__kv {
        height: 400px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__kv {
        height: 39.11343vw;
        background-attachment: scroll;
    }
}

.c-section-1__desc--about {
    margin-right: 6.25vw;
    width: 50.69444vw;
}

@media screen and (min-width: 1100px) {
    .c-section-1__desc--about {
        margin-right: 90px;
        width: 730px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__desc--about {
        margin-right: 0;
        width: 100%;
    }
}

.c-section-1__desc--study {
    width: 31.25vw;
}

@media screen and (min-width: 1100px) {
    .c-section-1__desc--study {
        width: 450px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__desc--study {
        position: relative;
        width: 100%;
    }
}

.c-section-1__txt {
    display: block;
    margin-bottom: 2.22222vw;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .c-section-1__txt {
        margin-bottom: 32px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__txt {
        margin-bottom: 4.69361vw;
        font-size: 3.12907vw;
    }
}

.c-section-1__txt:last-of-type {
    margin-bottom: 0;
}

.c-section-1__txt--bottom {
    padding-bottom: 5.55556vw;
}

@media screen and (min-width: 1100px) {
    .c-section-1__txt--bottom {
        padding-bottom: 80px;
    }
}

.c-section-1__txt--wsnw {
    white-space: nowrap;
}

@media screen and (max-width: 1200px) {
    .c-section-1__txt--wsnw {
        white-space: normal;
    }
}

.c-section-1__txt--en {
    font-weight: 300;
    font-family: 'Lato';
}

.c-section-1__link-outer {
    position: relative;
    display: block;
    margin-top: -3vw;
    width: 12.5vw;
    text-align: center;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-section-1__link-outer {
        margin-top: -10px;
        width: 180px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__link-outer {
        margin-top: 0;
        margin-right: auto;
        margin-left: auto;
        width: 39.11343vw;
    }
}

.c-section-1__link-outer:after {
    position: absolute;
    top: 90%;
    left: 0;
    width: 100%;
    height: 1.66667vw;
    content: '';
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

@media screen and (min-width: 1100px) {
    .c-section-1__link-outer:after {
        height: 24px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__link-outer:after {
        height: 4.69361vw;
    }
}

.c-section-1__link-outer:hover {
    opacity: .7;
}

@media screen and (max-width: 767px) {
    .c-section-1__link-outer:hover {
        opacity: 1;
    }
}

.c-section-1__link-outer:hover:after {
    -webkit-transition: .3s;
    transition: .3s;
    -webkit-transform: translate3d(8%, 0, 0);
    transform: translate3d(8%, 0, 0);
}

@media screen and (max-width: 767px) {
    .c-section-1__link-outer:hover:after {
        -webkit-transition: none;
        transition: none;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.c-section-1__link-outer--about:after {
    background: url(/img/common/more_g.svg) 0 0 no-repeat;
    background-size: 100% auto;
}

.c-section-1__link-outer--info {
    margin: 0 10.41667vw 0 auto;
}

@media screen and (min-width: 1100px) {
    .c-section-1__link-outer--info {
        margin-right: 150px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__link-outer--info {
        margin: 0 auto;
    }
}

.c-section-1__link-outer--info:after {
    background: url(/img/common/more_o.svg) 0 0 no-repeat;
    background-size: 100% auto;
}

.c-section-1__link-outer--study {
    margin-top: 3.88889vw;
    margin-right: auto;
    margin-left: auto;
}

@media screen and (min-width: 1100px) {
    .c-section-1__link-outer--study {
        margin-top: 56px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__link-outer--study {
        position: absolute;
        top: 173%;
        left: 50%;
        margin-top: 5.21512vw;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

.c-section-1__link-outer--study:after {
    background: url(/img/common/more_p.svg) 0 0 no-repeat;
    background-size: 100% auto;
}

@media screen and (max-width: 767px) {
    .c-section-1__link-outer--en {
        top: 140%;
    }
}

.c-section-1__link {
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 0.90278vw;
    font-family: 'Lato';
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-section-1__link {
        font-size: 0.8125rem;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__link {
        font-size: 3.12907vw;
    }
}

.c-section-1__img {
    position: absolute;
    top: 0;
    right: 0;
    width: 33.33333vw;
}

@media screen and (min-width: 1100px) {
    .c-section-1__img {
        width: 480px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__img {
        position: static;
        margin-top: 7vw;
        width: 100%;
    }
}

.c-section-1__img img {
    width: 100%;
}

.c-section-1__border-outer {
    position: absolute;
    top: 14.40556vw;
    left: 0;
    -webkit-transform: translateX(-45%);
    transform: translateX(-45%);
}

@media screen and (max-width: 767px) {
    .c-section-1__border-outer {
        top: 37vw;
        -webkit-transform: translateX(-62%);
        transform: translateX(-62%);
    }
}

.c-section-1__border-outer--kv {
    top: auto;
    bottom: 17vw;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}

@media screen and (min-width: 1100px) {
    .c-section-1__border-outer--kv {
        bottom: 290px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__border-outer--kv {
        bottom: 49.54368vw;
        -webkit-transform: translateX(-80%);
        transform: translateX(-80%);
    }
}

.c-section-1__border-txt {
    position: absolute;
    top: -3%;
    left: 0;
    display: inline-block;
    padding-right: 0.69444vw;
    padding-left: 1.73611vw;
    background-color: #fff;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 100;
    font-size: 0.97222vw;
    font-family: 'Lato';
    line-height: 2;
    opacity: 0;
    -webkit-transition: opacity .6s;
    transition: opacity .6s;
    -webkit-transform: translateX(-100%) rotate(-90deg);
    transform: translateX(-100%) rotate(-90deg);
    -webkit-transform-origin: right;
    transform-origin: right;
}

.is-fadein .c-section-1__border-txt {
    opacity: 1;
}

@media screen and (min-width: 1100px) {
    .c-section-1__border-txt {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__border-txt {
        top: -2%;
        padding-right: 2.60756vw;
        padding-left: 4.56323vw;
        font-size: 3.12907vw;
    }
}

.c-section-1__border-txt--kv {
    top: -5.83333vw;
    left: 0;
    padding-left: 0;
    opacity: 1 !important;
}

@media screen and (min-width: 1100px) {
    .c-section-1__border-txt--kv {
        top: -84px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__border-txt--kv {
        top: -20vw;
        left: -6vw;
        background-color: transparent;
    }
}

.c-section-1__border-txt--info {
    background-color: #FFFEEB;
}

@media screen and (max-width: 767px) {
    .c-section-1__border-txt--life {
        top: -1%;
    }
}

.c-section-1__border-txt--study {
    top: 0;
    padding-right: 0;
    padding-left: 0;
    background-color: transparent;
}

.c-section-1__scroll-outer {
    position: absolute;
    right: -5vw;
    bottom: 16.66667vw;
    -webkit-animation-name: scroll;
    animation-name: scroll;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
}

@media screen and (min-width: 1100px) {
    .c-section-1__scroll-outer {
        right: -50px;
        bottom: 120px;
    }
}

@media screen and (max-width: 1250px) {
    .c-section-1__scroll-outer {
        right: 0;
    }
    body.windows.firefox .c-section-1__scroll-outer {
        right: 40px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__scroll-outer {
        right: 0;
        bottom: 32.59452vw;
    }
}

@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(25%);
        transform: translateY(25%);
    }
}

@keyframes scroll {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(25%);
        transform: translateY(25%);
    }
}

.c-section-1__scroll-link {
    display: block;
    width: 100%;
    height: 100%;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.c-section-1__scroll-txt {
    position: relative;
    padding-right: 1.11111vw;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 100;
    font-size: 0.90278vw;
    font-family: 'Lato';
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-section-1__scroll-txt {
        padding-right: 16px;
        font-size: 0.8125rem;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__scroll-txt {
        padding-right: 2.60756vw;
        font-size: 2.22222vw;
    }
}

.c-section-1__scroll-txt:after {
    position: absolute;
    top: 50%;
    right: -50%;
    width: 0.48611vw;
    height: 2.77778vw;
    border-bottom: 1px solid rgba(64, 64, 64, 0.4);
    border-left: 1px solid rgba(64, 64, 64, 0.4);
    content: '';
    -webkit-transform: translate(0, -50%) rotate(-135deg) skew(-45deg);
    transform: translate(0, -50%) rotate(-135deg) skew(-45deg);
}

@media screen and (min-width: 1100px) {
    .c-section-1__scroll-txt:after {
        width: 7px;
        height: 40px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-1__scroll-txt:after {
        width: 1.82529vw;
        height: 10.43025vw;
    }
}

/* ---------------------------------------------
*   c-section-2
--------------------------------------------- */
.c-section-2 {
    position: relative;
    margin-bottom: 10.69444vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2 {
        margin-bottom: 154px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2 {
        margin-bottom: 15.64537vw;
    }
}

.c-section-2:before {
    position: absolute;
    width: 0;
    content: '';
}

.c-section-2.is-fadein:before {
    width: 69.44444vw;
    -webkit-transition: 1s;
    transition: 1s;
}

@media screen and (min-width: 1100px) {
    .c-section-2.is-fadein:before {
        width: calc((100% - 1100px) / 2 + 830px);
    }
}

@media screen and (max-width: 767px) {
    .c-section-2.is-fadein:before {
        width: 65.18905vw;
    }
}

.c-section-2--greeting:before {
    top: 10.83333vw;
    right: 0;
    z-index: -1;
    height: calc(100% - 10.8vw);
    background-color: #F2FFF7;
}

@media screen and (min-width: 1100px) {
    .c-section-2--greeting:before {
        top: 156px;
        height: calc(100% - 156px);
    }
}

@media screen and (max-width: 767px) {
    .c-section-2--greeting:before {
        top: 10vw;
        height: calc(100% - 10vw);
    }
}

.c-section-2--purpose:before {
    top: 8.33333vw;
    left: 0;
    z-index: -1;
    height: 75vw;
    background-color: #F2FFF7;
}

@media screen and (min-width: 1100px) {
    .c-section-2--purpose:before {
        top: 120px;
        height: 1080px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2--purpose:before {
        top: 10vw;
        height: 140.80834vw;
    }
}

.c-section-2--route:before {
    right: 0;
    bottom: 0;
    z-index: -1;
    height: 84.72222vw;
    background-color: #EBF0FF;
}

@media screen and (min-width: 1100px) {
    .c-section-2--route:before {
        height: 1220px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2--route:before {
        height: 511.08214vw;
    }
}

.c-section-2--route.is-fadein:before {
    width: 40.97222vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2--route.is-fadein:before {
        width: calc((100% - 1100px) / 2 + 420px);
    }
}

.c-section-2--exam:before {
    top: 4.16667vw;
    right: 0;
    z-index: -1;
    height: 32.63889vw;
    background-color: #EBF0FF;
}

@media screen and (min-width: 1100px) {
    .c-section-2--exam:before {
        top: 70px;
        height: 470px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2--exam:before {
        top: 8vw;
        height: 136.897vw;
    }
}

@media screen and (min-width: 1100px) {
    .c-section-2--exam.is-fadein:before {
        width: calc((100% - 1100px) / 2 + 810px);
    }
}

@media screen and (max-width: 767px) {
    .c-section-2--exam.is-fadein:before {
        width: 69.10039vw;
    }
}

.c-section-2--school:before {
    top: 9.02778vw;
    right: 0;
    z-index: -1;
    height: 100%;
    background-color: #EBF0FF;
}

@media screen and (min-width: 1100px) {
    .c-section-2--school:before {
        top: 140px;
        height: calc(100% - 130px);
    }
}

@media screen and (max-width: 767px) {
    .c-section-2--school:before {
        top: 10vw;
        height: calc(100% - 10vw);
    }
}

.c-section-2--school.is-fadein:before {
    width: 41.66667vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2--school.is-fadein:before {
        width: calc((100% - 1100px) / 2 + 430px);
    }
}

@media screen and (max-width: 767px) {
    .c-section-2--school.is-fadein:before {
        width: 43.02477vw;
    }
}

.c-section-2__inner {
    position: relative;
    margin-right: auto;
    margin-left: auto;
    max-width: 76.38889vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__inner {
        max-width: 1100px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__inner {
        margin-left: 4.56323vw;
        max-width: 89.96089vw;
    }
}

.c-section-2__head {
    position: relative;
    margin: 0 0 4.72222vw auto;
}

@media screen and (min-width: 1100px) {
    .c-section-2__head {
        margin: 0 0 68px auto;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__head {
        margin-bottom: 11.08214vw;
    }
}

.c-section-2__catch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    margin-top: -1.94444vw;

    -webkit-box-align: end;
    align-items: flex-end;
}

@media screen and (min-width: 1100px) {
    .c-section-2__catch {
        margin-top: -28px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__catch {
        margin-top: 0;

        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
}

.c-section-2__info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    width: 39.23611vw;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: end;
    align-items: flex-end;
}

@media screen and (min-width: 1100px) {
    .c-section-2__info {
        width: 565px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__info {
        -ms-flex-order: 2;
        width: 100%;

        -webkit-box-ordinal-group: 3;
        order: 2;
    }
}

.c-section-2__name {
    display: block;
    margin-bottom: 1.66667vw;
    width: 100%;
    color: #404040;
    text-align: right;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-size: 1.52778vw;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-section-2__name {
        margin-bottom: 24px;
        font-size: 1.375rem;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__name {
        margin-bottom: 2.34681vw;
        font-size: 4.43286vw;
    }
}

.c-section-2__name--en {
    font-weight: 300;
    font-family: 'Lato';
}

.c-section-2__position {
    display: block;
    width: 100%;
    color: #404040;
    text-align: right;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.25vw;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-section-2__position {
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__position {
        font-size: 3.38983vw;
    }
}

.c-section-2__position--cat {
    display: block;
}

@media screen and (max-width: 767px) {
    .c-section-2__position--cat {
        display: inline-block;
        margin-right: 1.30378vw;
    }
}

.c-section-2__position--en {
    font-weight: 300;
    font-family: 'Lato';
}

.c-section-2__photo {
    margin-left: 3.81944vw;
    width: 33.33333vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__photo {
        margin-left: 55px;
        width: 480px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__photo {
        -ms-flex-order: 1;
        margin-top: 5.21512vw;
        margin-bottom: 5.21512vw;
        margin-left: 0;
        width: 100%;
        text-align: center;

        -webkit-box-ordinal-group: 2;
        order: 1;
    }
}

.c-section-2__body {
    position: relative;
    padding-left: 6.94444vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__body {
        padding-left: 100px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__body {
        padding-left: 5.86701vw;
    }
}

.c-section-2__body:before {
    position: absolute;
    top: 0;
    left: 0;
    min-height: 100%;
    width: 1px;
    background-color: rgba(64, 64, 64, 0.4);
    content: '';
    -webkit-transition: -webkit-transform .7s .3s;
    transition: -webkit-transform .7s .3s;
    transition: transform .7s .3s;
    transition: transform .7s .3s, -webkit-transform .7s .3s;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
}

.c-section-2__body.is-fadein:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.c-section-2__body--narrow {
    padding-bottom: 0;
}

.c-section-2__body--experience {
    padding-bottom: 2.43056vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__body--experience {
        padding-bottom: 35px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__body--experience {
        padding-bottom: 0;
    }
}

.c-section-2__body--yet:before {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
}

.c-section-2__item {
    margin-bottom: 6.94444vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__item {
        margin-bottom: 100px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__item {
        margin-bottom: 13.03781vw;
    }
}

.c-section-2__item:last-of-type {
    margin-bottom: 0;
}

.c-section-2__item--long {
    margin-bottom: 11.80556vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__item--long {
        margin-bottom: 170px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__item--long {
        margin-bottom: 13.03781vw;
    }
}

.c-section-2__item--route {
    position: relative;
    padding-bottom: 5.55556vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__item--route {
        padding-bottom: 80px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__item--route {
        padding-bottom: 10.43025vw;
    }
}

.c-section-2__item--narrow {
    position: relative;
    margin-bottom: 4.16667vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__item--narrow {
        margin-bottom: 60px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__item--narrow {
        margin-bottom: 7.82269vw;
    }
}

.c-section-2__label {
    position: absolute;
    top: -2vw;
    left: 0;
    display: inline-block;
    padding-right: 1.38889vw;
    padding-left: 1.73611vw;
    background-color: #fff;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 100;
    font-size: 0.97222vw;
    font-family: 'Lato';
    line-height: 2;
    opacity: 0;
    opacity: 1;
    -webkit-transition: opacity .6s;
    transition: opacity .6s;
    transition: opacity .6s;
    -webkit-transform: translateX(-100%) rotate(-90deg);
    transform: translateX(-100%) rotate(-90deg);
    -webkit-transform-origin: right;
    transform-origin: right;
}

.is-fadein .c-section-2__label {
    opacity: 1;
}

@media screen and (min-width: 1100px) {
    .c-section-2__label {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__label {
        top: -5vw;
        padding-right: 2.60756vw;
        padding-left: 4.56323vw;
        font-size: 3.12907vw;
    }
}

.c-section-2__label--purpose {
    background-color: #F2FFF7;
}

.c-section-2__cat {
    margin-bottom: 4.02778vw;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 100;
    font-size: 1.66667vw;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-section-2__cat {
        margin-bottom: 58px;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__cat {
        margin-bottom: 7.82269vw;
        font-size: 4.69361vw;
        line-height: 1.5;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__cat--row {
        white-space: nowrap;
    }
}

.c-section-2__cat--space {
    margin-top: 4.16667vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__cat--space {
        margin-top: 60px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__cat--space {
        margin-top: 10.43025vw;
        margin-bottom: 5.21512vw;
    }
}

.c-section-2__cat--narrow {
    margin-bottom: 2.91667vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__cat--narrow {
        margin-bottom: 42px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__cat--narrow {
        margin-bottom: 7.82269vw;
    }
}

.c-section-2__cat--en {
    font-weight: 300;
    font-family: 'Lato';
}

.c-section-2__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    -ms-flex-align: start;

    -webkit-box-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    justify-content: space-between;
}

@media screen and (max-width: 767px) {
    .c-section-2__box {
        display: block;
    }
}

.c-section-2__box--space {
    margin-top: 2.5vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__box--space {
        margin-top: 36px;
    }
}

.c-section-2__box--wide {
    margin-top: 4.16667vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__box--wide {
        margin-top: 60px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__box--wide {
        margin-top: 10.43025vw;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__desc {
        margin-bottom: 3.91134vw;
    }
}

.c-section-2__desc--program {
    width: 33.33333vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__desc--program {
        width: 480px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__desc--program {
        width: 100%;
    }
}

.c-section-2__desc--route {
    width: 44.02778vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__desc--route {
        width: 634px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__desc--route {
        width: 100%;
    }
}

.c-section-2__desc--school {
    width: 43.05556vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__desc--school {
        width: 620px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__desc--school {
        width: 100%;
    }
}

.c-section-2__desc--en {
    font-weight: 300;
    font-family: 'Lato';
}

.c-section-2__img--program {
    margin-top: -0.41667vw;
    width: 33.33333vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__img--program {
        margin-top: -6px;
        width: 480px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__img--program {
        width: 100%;
    }
}

.c-section-2__img--route {
    margin-top: 6.59722vw;
    width: 22.22222vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__img--route {
        margin-top: 95px;
        width: 320px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__img--route {
        width: 100%;
    }
}

.c-section-2__img--narrow {
    width: 22.22222vw;
    height: 29.16667vw;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (min-width: 1100px) {
    .c-section-2__img--narrow {
        width: 320px;
        height: 420px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__img--narrow {
        margin-top: 7.82269vw;
        margin-bottom: 10.43025vw;
        width: 100%;
        height: 100vw;
    }
}

.c-section-2__img--map {
    width: 33.33333vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__img--map {
        width: 480px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__img--map {
        width: 100%;
    }
    .c-section-2__img--map:last-of-type {
        margin-top: 6.5189vw;
    }
}

.c-section-2__img img {
    width: 100%;
}

.c-section-2__txt {
    margin-bottom: 2.22222vw;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .c-section-2__txt {
        margin-bottom: 32px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__txt {
        margin-bottom: 6.5189vw;
        font-size: 3.65059vw;
    }
}

.c-section-2__txt--bottom {
    padding-bottom: 5vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__txt--bottom {
        padding-bottom: 72px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__txt--bottom {
        padding-bottom: 9.12647vw;
    }
}

.c-section-2__txt:last-of-type {
    margin-bottom: 0;
}

.c-section-2__txt--heading {
    display: block;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .c-section-2__txt--heading {
        margin-bottom: 1.30378vw;
    }
}

.c-section-2__txt--en {
    font-weight: 300;
    font-family: 'Lato';
}

.c-section-2__chart {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    margin-top: 4.44444vw;

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (min-width: 1100px) {
    .c-section-2__chart {
        margin-top: 64px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__chart {
        display: block;
        margin-top: 10.43025vw;
    }
}

.c-section-2__link {
    position: relative;
}

.c-section-2__link[target="_blank"] .c-section-2__link-txt {
    margin-right: 0.69444vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__link[target="_blank"] .c-section-2__link-txt {
        margin-right: 10px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__link[target="_blank"] .c-section-2__link-txt {
        margin-right: 1.30378vw;
    }
}

.c-section-2__link[target="_blank"] .c-section-2__link-txt:after {
    display: inline-block;
    margin-top: -0.13889vw;
    margin-left: 0.34722vw;
    width: 1.45833vw;
    height: 1.45833vw;
    background: url(/img/common/link2.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    vertical-align: middle;
}

@media screen and (min-width: 1100px) {
    .c-section-2__link[target="_blank"] .c-section-2__link-txt:after {
        margin-top: 0;
        margin-left: 5px;
        width: 21px;
        height: 21px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__link[target="_blank"] .c-section-2__link-txt:after {
        margin-top: 0;
        margin-left: 1.82529vw;
        width: 3.65059vw;
        height: 3.65059vw;
    }
}

.c-section-2__link:hover .c-section-2__link-txt {
    color: #5580FF;
    -webkit-transition: color .2s;
    transition: color .2s;
}

.c-section-2__link-txt {
    position: relative;
}

.c-section-2__pie {
    width: 25vw;
    height: auto;
}

@media screen and (min-width: 1100px) {
    .c-section-2__pie {
        width: 360px;
        height: 360px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__pie {
        width: 100%;
    }
}

.c-section-2__note-outer {
    margin-bottom: 2.22222vw;
    padding: 0.34722vw 2.01389vw 0.48611vw;
    border: 1px solid #ff0000;
}

@media screen and (min-width: 1100px) {
    .c-section-2__note-outer {
        margin-bottom: 32px;
        padding: 5px 29px 7px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__note-outer {
        margin-bottom: 5.21512vw;
        padding: 1.95567vw 2.60756vw;
    }
}

body.ie .c-section-2__note-outer--en {
    padding: 0.55556vw 2.01389vw 0.27778vw;
}

@media screen and (min-width: 1100px) {
    body.ie .c-section-2__note-outer--en {
        padding: 8px 29px 4px;
    }
}

.c-section-2__note {
    color: #ff0000;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 1.5;
}

@media screen and (min-width: 1100px) {
    .c-section-2__note {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__note {
        font-size: 0.875rem;
    }
}

.c-section-2__note--row {
    white-space: nowrap;
}

@media screen and (max-width: 1100px) {
    .c-section-2__note--row {
        white-space: normal;
    }
}

.c-section-2__note--en {
    font-weight: 300;
}

.c-section-2__line {
    position: relative;
    display: inline-block;
}

.c-section-2__line[target="_blank"] {
    margin-right: 0.34722vw;
    padding-right: 1.73611vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__line[target="_blank"] {
        margin-right: 5px;
        padding-right: 25px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__line[target="_blank"] {
        margin-right: 0.65189vw;
        padding-right: 3.91134vw;
    }
}

.c-section-2__line[target="_blank"]:after {
    position: absolute;
    top: 55%;
    right: 0;
    width: 1.45833vw;
    height: 1.31944vw;
    background: url(/img/common/link2_p.svg) 0 0 no-repeat;
    background-size: auto 100%;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (min-width: 1100px) {
    .c-section-2__line[target="_blank"]:after {
        width: 21px;
        height: 19px;
    }
    body.ie .c-section-2__line[target="_blank"]:after {
        top: 58%;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__line[target="_blank"]:after {
        top: 50%;
        width: 3.25945vw;
        height: 3.25945vw;
        background-size: 100% auto;
        -webkit-transform: translateY(-35%);
        transform: translateY(-35%);
    }
}

@media screen and (min-width: 768px) {
    .c-section-2__line {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .c-section-2__line:hover {
        opacity: 0.8;
    }
}

@media screen and (min-width: 768px) and (max-width: 767px) {
    .c-section-2__line:hover {
        opacity: 1;
    }
}

.c-section-2__line-txt {
    position: relative;
    color: #6600CC;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__line-txt {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__line-txt {
        font-size: 3.65059vw;
    }
}

.c-section-2__line-txt:before {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #6600CC;
    content: "";
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media screen and (max-width: 767px) {
    .c-section-2__line-txt:before {
        -webkit-transition: none;
        transition: none;
    }
}

.c-section-2__line-txt:hover:before {
    right: 0;
    left: auto;
    width: 0;
}

@media screen and (max-width: 767px) {
    .c-section-2__line-txt:hover:before {
        width: 0;
    }
}

.c-section-2__note-link {
    position: relative;
    display: inline-block;
}

.c-section-2__note-link[target="_blank"] {
    margin-right: 0.34722vw;
    padding-right: 1.73611vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__note-link[target="_blank"] {
        margin-right: 5px;
        padding-right: 25px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__note-link[target="_blank"] {
        margin-right: 0.65189vw;
        padding-right: 3.91134vw;
    }
}

.c-section-2__note-link[target="_blank"]:after {
    position: absolute;
    top: 55%;
    right: 0;
    width: 1.45833vw;
    height: 1.31944vw;
    background: url(/img/common/link2_r.svg) 0 0 no-repeat;
    background-size: auto 100%;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (min-width: 1100px) {
    .c-section-2__note-link[target="_blank"]:after {
        top: 50%;
        width: 21px;
        height: 19px;
    }
    body.ie .c-section-2__note-link[target="_blank"]:after {
        top: 58%;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__note-link[target="_blank"]:after {
        top: 50%;
        width: 3.25945vw;
        height: 3.25945vw;
        background-size: 100% auto;
        -webkit-transform: translateY(-35%);
        transform: translateY(-35%);
    }
}

@media screen and (min-width: 768px) {
    .c-section-2__note-link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .c-section-2__note-link:hover {
        opacity: 0.8;
    }
}

@media screen and (min-width: 768px) and (max-width: 767px) {
    .c-section-2__note-link:hover {
        opacity: 1;
    }
}

.c-section-2__note-txt {
    position: relative;
    color: #ff0000;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__note-txt {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__note-txt {
        font-size: 3.65059vw;
    }
}

.c-section-2__note-txt:before {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #ff0000;
    content: "";
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media screen and (max-width: 767px) {
    .c-section-2__note-txt:before {
        -webkit-transition: none;
        transition: none;
    }
}

.c-section-2__note-txt:hover:before {
    right: 0;
    left: auto;
    width: 0;
}

@media screen and (max-width: 767px) {
    .c-section-2__note-txt:hover:before {
        width: 0;
    }
}

.c-section-2__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    margin-bottom: 2.36111vw;

    -webkit-box-align: center;
    align-items: center;
}

@media screen and (min-width: 1100px) {
    .c-section-2__list {
        margin-bottom: 34px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__list {
        display: block;
        margin-bottom: 5.21512vw;
    }
}

.c-section-2__term {
    margin-right: 2.36111vw;
    padding-top: 2.08333vw;
    padding-bottom: 2.08333vw;
    width: 15.27778vw;
    background-color: #5580FF;
    color: #fff;
    text-align: center;
    letter-spacing: 0.1em;
    font-weight: 100;
    font-size: 1.38889vw;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-section-2__term {
        margin-right: 34px;
        padding-top: 30px;
        padding-bottom: 30px;
        width: 220px;
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__term {
        margin-right: 0;
        padding: 2.60756vw;
        width: 100%;
        text-align: left;
        font-size: 3.65059vw;
    }
}

.c-section-2__day {
    width: 24.72222vw;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.38889vw;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-section-2__day {
        width: 356px;
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__day {
        margin-top: 3.91134vw;
        width: 100%;
        font-size: 3.65059vw;
    }
}

.c-section-2__alert {
    margin-bottom: 4.16667vw;
    padding: 2.08333vw 2.77778vw 3.05556vw;
    background-color: #F7F2FF;
}

@media screen and (min-width: 1100px) {
    .c-section-2__alert {
        margin-bottom: 60px;
        padding: 30px 40px 44px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__alert {
        margin-bottom: 6.5189vw;
        padding: 3.91134vw 5.21512vw;
    }
}

.c-section-2__map {
    margin-top: 2.77778vw;
    width: 100%;
    height: 33.33333vw;
}

@media screen and (min-width: 1100px) {
    .c-section-2__map {
        margin-top: 40px;
        height: 480px;
    }
}

@media screen and (max-width: 767px) {
    .c-section-2__map {
        margin-top: 6.5189vw;
        height: 65.18905vw;
    }
}

.c-section-2__map iframe {
    width: 100%;
    height: 100%;
}

/* ---------------------------------------------
*   c-table-1
--------------------------------------------- */
.c-table-1__head {
    border-top: 0.48611vw solid #5580FF;
    border-bottom: 0.48611vw solid #5580FF;
    background-color: #EBF0FF;
}

@media screen and (min-width: 1100px) {
    .c-table-1__head {
        border-top: 7px solid #5580FF;
        border-bottom: 7px solid #5580FF;
    }
}

@media screen and (max-width: 767px) {
    .c-table-1__head {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .c-table-1__body,
    .c-table-1 tbody {
        display: block;
    }
}

.c-table-1__heading {
    padding-top: 1.38889vw;
    padding-bottom: 1.38889vw;
    width: 13.88889vw;
    color: #5580FF;
    text-align: center;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-size: 1.11111vw;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-table-1__heading {
        padding-top: 20px;
        padding-bottom: 20px;
        width: 200px;
        font-size: 1rem;
    }
}

.c-table-1__heading:first-letter {
    font-size: 1.66667vw;
}

@media screen and (min-width: 1100px) {
    .c-table-1__heading:first-letter {
        font-size: 1.5rem;
    }
}

.c-table-1__heading--en {
    font-weight: 300;
}

.c-table-1 hr {
    width: 100%;
    height: 0.48611vw;
    background-color: #5580FF;
}

@media screen and (min-width: 1100px) {
    .c-table-1 hr {
        height: 7px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-1 hr {
        width: 100%;
        height: 0.91265vw;
    }
}

/* ---------------------------------------------
*   c-table-2
--------------------------------------------- */
.c-table-2 {
    margin-top: 0.69444vw;
    margin-bottom: 0.69444vw;
    width: 100%;
}

@media screen and (min-width: 1100px) {
    .c-table-2 {
        margin-top: 10px;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-2 {
        display: block;
        margin-top: 3.91134vw;
        margin-bottom: 3.91134vw;
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .c-table-2__row {
        display: block;
    }
}

.c-table-2__row:first-of-type .c-table-2__desc {
    padding-top: 1.25vw;
}

@media screen and (min-width: 1100px) {
    .c-table-2__row:first-of-type .c-table-2__desc {
        padding-top: 18px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-2__row:first-of-type .c-table-2__desc {
        padding-top: 3.91134vw;
    }
}

@media screen and (max-width: 767px) {
    .c-table-2__row:first-of-type .c-table-2__desc:first-of-type {
        padding-top: 3.91134vw;
    }
}

.c-table-2__row:last-of-type .c-table-2__desc {
    padding-bottom: 1.25vw;
}

@media screen and (min-width: 1100px) {
    .c-table-2__row:last-of-type .c-table-2__desc {
        padding-bottom: 18px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-2__row:last-of-type .c-table-2__desc {
        padding-bottom: 3.91134vw;
    }
}

.c-table-2__head {
    padding-right: 1.25vw;
    padding-left: 1.80556vw;
    width: 13.19444vw;
    border-right: 7px solid #fff;
    background-color: #5580FF;
}

@media screen and (min-width: 1100px) {
    .c-table-2__head {
        padding-right: 18px;
        padding-left: 18px;
        width: 200px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-2__head {
        display: block;
        padding: 5.21512vw 3.91134vw;
        width: 100%;
        border-right: none;
    }
}

.c-table-2__desc {
    padding-right: 0.34722vw;
    padding-left: 0.34722vw;
    width: 13.88889vw;
    background-color: #EBF0FF;
    vertical-align: top;
}

@media screen and (min-width: 1100px) {
    .c-table-2__desc {
        padding-top: 5px;
        padding-left: 5px;
        width: 200px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-2__desc {
        display: block;
        padding: 2.60756vw 3.91134vw;
        width: 100%;
    }
    .c-table-2__desc[data-text]:before {
        display: block;
        color: #5580FF;
        content: attr(data-text) "";
        letter-spacing: 0.1em;
        font-weight: 300;
        font-size: 4.1721vw;
    }
}

.c-table-2__txt {
    display: inline-block;
    width: 100%;
    color: #404040;
    text-align: center;
    letter-spacing: 0.05em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .c-table-2__txt {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-table-2__txt {
        width: auto;
        font-size: 3.65059vw;
    }
    .c-table-2__txt:after {
        content: '、';
    }
    .c-table-2__txt:last-of-type:after {
        content: none;
    }
}

.c-table-2__txt--narrow {
    letter-spacing: 0;
}

.c-table-2__txt--en {
    letter-spacing: 0;
}

.c-table-2__ttl {
    display: block;
    color: #fff;
    text-align: center;
    letter-spacing: 0.1em;
    font-weight: 100;
    font-size: 1.38889vw;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-table-2__ttl {
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    .c-table-2__ttl {
        text-align: left;
        font-size: 4.69361vw;
    }
}

.c-table-2__ttl--en {
    letter-spacing: 0;
    font-weight: 300;
    line-height: 1.5;
}

.c-table-2__detail {
    margin-top: 4.16667vw;
    color: #fff;
    text-align: left;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 0.97222vw;
    line-height: 1.5;
}

@media screen and (min-width: 1100px) {
    .c-table-2__detail {
        margin-top: 60px;
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .c-table-2__detail {
        margin-top: 5.21512vw;
        font-size: 3.65059vw;
    }
}

.c-table-2__detail--en {
    font-weight: 300;
}

/* ---------------------------------------------
*   c-table-3
--------------------------------------------- */
.c-table-3 {
    margin-top: 2.36111vw;
}

@media screen and (min-width: 1100px) {
    .c-table-3 {
        margin-top: 34px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-3 {
        margin-top: 7.82269vw;
    }
}

.c-table-3__cat {
    padding-top: 2.08333vw;
}

.c-table-3__cat:first-of-type {
    padding-top: 0;
}

body.safari .c-table-3__cat {
    padding-top: 20px;
}

@media screen and (min-width: 1100px) {
    .c-table-3__cat {
        padding-top: 30px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-3__cat {
        padding-top: 5.21512vw;
    }
    body.safari .c-table-3__cat {
        padding-top: 5.21512vw;
    }
}

.c-table-3__head {
    position: relative;
    padding: 1.25vw 2.22222vw;
    background-color: #EBF0FF;
}

@media screen and (min-width: 1100px) {
    .c-table-3__head {
        padding: 18px 32px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-3__head {
        padding: 2.34681vw 4.1721vw;
    }
}

.c-table-3__btn-outer {
    position: absolute;
    top: 0;
    right: 0;
    width: 4.16667vw;
    height: 100%;
    background-color: #5580FF;
    cursor: pointer;
}

@media screen and (min-width: 1100px) {
    .c-table-3__btn-outer {
        width: 60px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-3__btn-outer {
        width: 10.43025vw;
    }
}

.c-table-3__btn {
    position: relative;
    width: 100%;
    height: 100%;
}

.c-table-3__btn:before, .c-table-3__btn:after {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #fff;
    content: '';
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.c-table-3__btn:before {
    width: 1.38889vw;
    height: 0.13889vw;
}

@media screen and (min-width: 1100px) {
    .c-table-3__btn:before {
        width: 20px;
        height: 2px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-3__btn:before {
        width: 2.60756vw;
        height: 0.26076vw;
    }
}

.c-table-3__btn:after {
    width: 0.13889vw;
    height: 1.38889vw;
}

@media screen and (min-width: 1100px) {
    .c-table-3__btn:after {
        width: 2px;
        height: 20px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-3__btn:after {
        width: 0.26076vw;
        height: 2.60756vw;
    }
}

.c-table-3__btn.is-open:after {
    display: none;
}

.c-table-3__txt {
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-table-3__txt {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-table-3__txt {
        font-size: 3.38983vw;
    }
}

.c-table-3__body {
    display: none;
    margin-top: 0.69444vw;
    padding: 1.38889vw;
    background-color: #EBF0FF;
}

@media screen and (min-width: 1100px) {
    .c-table-3__body {
        margin-top: 10px;
        padding: 20px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-3__body {
        margin-top: 2.08605vw;
        padding: 2.60756vw;
    }
}

.c-table-3 table {
    display: block;
    padding: 1.52778vw 2.77778vw;
    background-color: #fff;
}

@media screen and (min-width: 1100px) {
    .c-table-3 table {
        padding: 22px 40px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-3 table {
        padding: 2.86832vw 4.43286vw;
    }
}

@media screen and (max-width: 767px) {
    .c-table-3 table thead {
        display: none;
    }
}

.c-table-3 table thead:first-of-type th, .c-table-3 table thead:first-of-type td {
    color: #5580FF;
    font-size: 0.97222vw;
}

@media screen and (min-width: 1100px) {
    .c-table-3 table thead:first-of-type th, .c-table-3 table thead:first-of-type td {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .c-table-3 table thead:first-of-type th, .c-table-3 table thead:first-of-type td {
        font-size: 3.38983vw;
    }
}

.c-table-3 table thead th:first-of-type {
    padding-left: 0.83333vw;
}

@media screen and (min-width: 1100px) {
    .c-table-3 table thead th:first-of-type {
        padding-left: 24px;
    }
}

.c-table-3 table thead th:nth-of-type(n+2) {
    width: 10.06944vw;
    text-align: center;
}

@media screen and (min-width: 1100px) {
    .c-table-3 table thead th:nth-of-type(n+2) {
        width: 155px;
    }
    body.firefox .c-table-3 table thead th:nth-of-type(n+2) {
        width: 150px;
    }
    body.ie .c-table-3 table thead th:nth-of-type(n+2) {
        width: 150px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-3 table thead th:nth-of-type(n+2) {
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .c-table-3 table tbody {
        display: block;
    }
}

.c-table-3 table tbody th {
    padding-left: 1.66667vw;
}

@media screen and (min-width: 1100px) {
    .c-table-3 table tbody th {
        padding-left: 24px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-3 table tbody th {
        overflow: hidden;
        padding-left: 0;
    }
    .c-table-3 table tbody th[data-text]:before {
        display: inline-block;
        float: left;
        width: 40%;
        color: #5580FF;
        content: attr(data-text) "";
        letter-spacing: 0.1em;
        font-weight: 300;
        font-size: 3.65059vw;
    }
}

@media screen and (max-width: 767px) {
    .c-table-3 table tbody td {
        overflow: hidden;
    }
    .c-table-3 table tbody td[data-text]:before {
        display: inline-block;
        width: 40%;
        color: #5580FF;
        content: attr(data-text) "";
        letter-spacing: 0.1em;
        font-weight: 300;
        font-size: 3.65059vw;
    }
}

.c-table-3 table th, .c-table-3 table td {
    display: inline-block;
    padding-top: 1.38889vw;
    padding-bottom: 1.25vw;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 1.5;
}

@media screen and (min-width: 1100px) {
    .c-table-3 table th, .c-table-3 table td {
        padding-top: 20px;
        padding-bottom: 18px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-table-3 table th, .c-table-3 table td {
        display: inline-block;
        padding-top: 2.60756vw;
        padding-bottom: 2.34681vw;
        font-size: 3.38983vw;
    }
}

.c-table-3 table tr {
    border-bottom: 1px solid #EBF0FF;
}

@media screen and (max-width: 767px) {
    .c-table-3 table tr {
        display: block;
        padding-top: 1.30378vw;
        padding-bottom: 1.30378vw;
    }
}

.c-table-3 table th:first-of-type {
    width: 28.81944vw;
}

@media screen and (min-width: 1100px) {
    .c-table-3 table th:first-of-type {
        width: 415px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-3 table th:first-of-type {
        width: 100%;
    }
}

.c-table-3 table td {
    width: 10.06944vw;
    text-align: center;
}

@media screen and (min-width: 1100px) {
    .c-table-3 table td {
        width: 155px;
    }
    body.firefox .c-table-3 table td {
        width: 150px;
    }
    body.ie .c-table-3 table td {
        width: 150px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-3 table td {
        width: 100%;
        text-align: left;
    }
}

.c-table-3__txt-outer {
    display: inline;
}

.c-table-3__link {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

@media screen and (max-width: 767px) {
    .c-table-3__link {
        display: block;
        margin-left: 40%;
    }
}

.c-table-3__link[target="_blank"] .c-table-3__link-txt:after {
    display: inline-block;
    margin-left: 0.34722vw;
    width: 1.45833vw;
    height: 1.45833vw;
    background: url(/img/common/link2.svg) 0 0 no-repeat;
    background-size: 100% auto;
    content: '';
    vertical-align: middle;
}

body.ie .c-table-3__link[target="_blank"] .c-table-3__link-txt:after {
    width: 1.59722vw;
    height: 1.73611vw;
    background-size: auto 100%;
}

@media screen and (min-width: 1100px) {
    .c-table-3__link[target="_blank"] .c-table-3__link-txt:after {
        margin-left: 10px;
        width: 21px;
        height: 21px;
    }
    body.ie .c-table-3__link[target="_blank"] .c-table-3__link-txt:after {
        width: 21px;
        height: 21px;
        background-size: 100% auto;
    }
}

@media screen and (max-width: 767px) {
    .c-table-3__link[target="_blank"] .c-table-3__link-txt:after {
        margin-top: -0.52151vw;
        margin-left: 1.82529vw;
        width: 3.65059vw;
        height: 3.65059vw;
    }
}

.c-table-3__link:hover .c-table-3__link-txt {
    color: #5580FF;
    -webkit-transition: color .2s;
    transition: color .2s;
}

.c-table-3__link--nolink:hover .c-table-3__link-txt {
    color: #404040 !important;
}

.c-table-3__link-txt {
    position: relative;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 1.5;
}

@media screen and (min-width: 1100px) {
    .c-table-3__link-txt {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-table-3__link-txt {
        font-size: 3.38983vw;
    }
}

.c-table-3__arrow {
    position: relative;
    display: inline-block;
    margin-right: 1.11111vw;
    width: 1.66667vw;
    height: 1.66667vw;
    vertical-align: bottom;

    -ms-flex-negative: 0;
    flex-shrink: 0;
}

@media screen and (min-width: 1100px) {
    .c-table-3__arrow {
        margin-right: 16px;
        width: 24px;
        height: 24px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-3__arrow {
        display: none;
        margin-right: 2.34681vw;
        width: 5.21512vw;
        height: 5.21512vw;
    }
}

.c-table-3__arrow:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(/img/common/arrow.svg) 45% 50% no-repeat;
    background-color: #5580FF;
    background-size: 4px auto;
    content: '';
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

body.ie .c-table-3__arrow:before {
    background-size: 15px auto;
}

@media screen and (max-width: 1100px) {
    .c-table-3__arrow:before {
        background-size: 3px auto;
    }
}

/* ---------------------------------------------
*   c-table-4
--------------------------------------------- */
.c-table-4 {
    width: 44.44444vw;
}

@media screen and (min-width: 1100px) {
    .c-table-4 {
        width: 640px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-4 {
        margin-bottom: 7.82269vw;
        width: 100%;
    }
}

.c-table-4 thead {
    background-color: #EBF0FF;
}

.c-table-4 thead th {
    padding-top: 0.83333vw;
    padding-bottom: 0.83333vw;
}

@media screen and (min-width: 1100px) {
    .c-table-4 thead th {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-4 thead th {
        padding-top: 3.91134vw;
        padding-bottom: 3.91134vw;
    }
}

.c-table-4 tbody tr {
    border-top: 0.69444vw solid #fff;
}

@media screen and (min-width: 1100px) {
    .c-table-4 tbody tr {
        border-top: 10px solid #fff;
    }
}

@media screen and (max-width: 767px) {
    .c-table-4 tbody tr {
        border-top: 1.30378vw solid #fff;
    }
}

.c-table-4 tbody tr th, .c-table-4 tbody tr td {
    padding-top: 1.59722vw;
    padding-bottom: 1.59722vw;
}

@media screen and (min-width: 1100px) {
    .c-table-4 tbody tr th, .c-table-4 tbody tr td {
        padding-top: 23px;
        padding-bottom: 23px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-4 tbody tr th, .c-table-4 tbody tr td {
        padding-top: 3.91134vw;
        padding-bottom: 3.91134vw;
    }
}

.c-table-4 tbody tr th {
    background-color: #EBF0FF;
}

.c-table-4 tbody tr td {
    background-color: #fff;
}

.c-table-4 tbody tr:last-of-type th {
    background-color: #5580FF;
    color: #fff;
}

.c-table-4 tbody tr:last-of-type td {
    color: #5580FF;
}

.c-table-4 th, .c-table-4 td {
    width: 11.11111vw;
    color: #404040;
    text-align: center;
    letter-spacing: 0.1em;
    font-weight: 100;
    font-size: 0.97222vw;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-table-4 th, .c-table-4 td {
        width: 160px;
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .c-table-4 th, .c-table-4 td {
        width: 22.16428vw;
        font-size: 0.8125rem;
        line-height: 1.5;
    }
}

.c-table-4--en th, .c-table-4--en td {
    font-weight: 300;
}

/* ---------------------------------------------
*   c-table-5
--------------------------------------------- */
.c-table-5 {
    margin-top: 2.63889vw;
    padding: 1.94444vw 2.77778vw;
    border: 1.38889vw solid #EBF0FF;
    background-color: #fff;
}

@media screen and (min-width: 1100px) {
    .c-table-5 {
        margin-top: 38px;
        padding: 28px 40px;
        border: 20px solid #EBF0FF;
    }
}

@media screen and (max-width: 767px) {
    .c-table-5 {
        margin-top: 10.43025vw;
        padding: 1.30378vw 2.60756vw 3.91134vw;
        border: 2.60756vw solid #EBF0FF;
    }
}

@media screen and (max-width: 767px) {
    .c-table-5 thead {
        display: none;
    }
}

.c-table-5 tr {
    border-bottom: 1px solid #EBF0FF;
}

@media screen and (max-width: 767px) {
    .c-table-5 tr {
        display: block;
        padding-top: 1.30378vw;
        padding-bottom: 1.30378vw;
    }
}

.c-table-5 th, .c-table-5 td {
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 0.97222vw;
    line-height: 1.5;
}

@media screen and (min-width: 1100px) {
    .c-table-5 th, .c-table-5 td {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .c-table-5 th, .c-table-5 td {
        font-size: 3.38983vw;
    }
}

.c-table-5 th {
    padding-top: 1.04167vw;
    padding-bottom: 1.04167vw;
    color: #5580FF;
}

@media screen and (min-width: 1100px) {
    .c-table-5 th {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

.c-table-5 th:nth-of-type(1) {
    padding-left: 1.73611vw;
    width: 13.88889vw;
}

@media screen and (min-width: 1100px) {
    .c-table-5 th:nth-of-type(1) {
        padding-left: 25px;
        width: 200px;
    }
}

.c-table-5 th:nth-of-type(2) {
    width: 6.94444vw;
}

@media screen and (min-width: 1100px) {
    .c-table-5 th:nth-of-type(2) {
        width: 100px;
    }
}

.c-table-5 th:nth-of-type(3) {
    width: 15.27778vw;
}

@media screen and (min-width: 1100px) {
    .c-table-5 th:nth-of-type(3) {
        width: 220px;
    }
}

.c-table-5 th:nth-of-type(4) {
    width: 25vw;
}

@media screen and (min-width: 1100px) {
    .c-table-5 th:nth-of-type(4) {
        width: 360px;
    }
}

.c-table-5 td {
    padding-top: 1.25vw;
    padding-right: 0.69444vw;
    padding-bottom: 1.25vw;
    color: #404040;
}

@media screen and (min-width: 1100px) {
    .c-table-5 td {
        padding-top: 18px;
        padding-right: 0;
        padding-bottom: 18px;
        word-break: break-all;
    }
}

@media screen and (max-width: 767px) {
    .c-table-5 td {
        display: block;
        overflow: hidden;
        padding-top: 2.08605vw;
        padding-right: 0;
        padding-bottom: 2.08605vw;
        width: 100%;
    }
    .c-table-5 td[data-text]:before {
        display: block;
        width: 100%;
        color: #5580FF;
        content: attr(data-text) "";
        letter-spacing: 0.1em;
        font-weight: 300;
        font-size: 3.38983vw;
    }
}

.c-table-5 td:first-of-type {
    padding-left: 1.73611vw;
}

@media screen and (min-width: 1100px) {
    .c-table-5 td:first-of-type {
        padding-left: 25px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-5 td:first-of-type {
        padding-left: 0;
    }
}

.c-table-5 td:last-of-type {
    padding-right: 1.38889vw;
}

body.ie .c-table-5 td:last-of-type {
    padding-right: 0.48611vw;
}

@media screen and (min-width: 1100px) {
    .c-table-5 td:last-of-type {
        padding-right: 20px;
    }
    body.ie .c-table-5 td:last-of-type {
        padding-right: 7px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-5 td:last-of-type {
        padding-right: 0;
    }
}

.c-table-5__link {
    position: relative;
    display: inline-block;
}

.c-table-5__link[target="_blank"] {
    margin-right: 0.34722vw;
    padding-right: 1.73611vw;
}

@media screen and (min-width: 1100px) {
    .c-table-5__link[target="_blank"] {
        padding-right: 25px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-5__link[target="_blank"] {
        padding-right: 3.91134vw;
    }
}

.c-table-5__link[target="_blank"]:after {
    position: absolute;
    top: 55%;
    top: 60%;
    right: 0;
    width: 1.31944vw;
    height: 1.18056vw;
    background: url(/img/common/link2_p.svg) 0 0 no-repeat;
    background-size: auto 100%;
    content: '';
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

@media screen and (min-width: 1100px) {
    .c-table-5__link[target="_blank"]:after {
        top: 55%;
        width: 19px;
        height: 17px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-5__link[target="_blank"]:after {
        top: 50%;
        width: 3.25945vw;
        height: 3.25945vw;
        background-size: 100% auto;
        -webkit-transform: translateY(-35%);
        transform: translateY(-35%);
    }
}

@media screen and (min-width: 768px) {
    .c-table-5__link {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .c-table-5__link:hover {
        opacity: 0.8;
    }
}

@media screen and (min-width: 768px) and (max-width: 767px) {
    .c-table-5__link:hover {
        opacity: 1;
    }
}

.c-table-5__link-txt {
    position: relative;
    color: #6600CC;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 0.97222vw;
}

@media screen and (min-width: 1100px) {
    .c-table-5__link-txt {
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .c-table-5__link-txt {
        font-size: 3.38983vw;
    }
}

.c-table-5__link-txt:before {
    position: absolute;
    top: 100%;
    left: 0;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #6600CC;
    content: "";
    -webkit-transition: all .3s;
    transition: all .3s;
}

@media screen and (max-width: 767px) {
    .c-table-5__link-txt:before {
        -webkit-transition: none;
        transition: none;
    }
}

.c-table-5__link-txt:hover:before {
    right: 0;
    left: auto;
    width: 0;
}

@media screen and (max-width: 767px) {
    .c-table-5__link-txt:hover:before {
        width: 0;
    }
}

/* ---------------------------------------------
*   c-table-6
--------------------------------------------- */
.c-table-6__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;

    -webkit-box-align: center;
    align-items: center;
}

.c-table-6__item {
    width: 13.88889vw;
}

@media screen and (min-width: 1100px) {
    .c-table-6__item {
        width: 200px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-6__item {
        width: 28.68318vw;
    }
}

.c-table-6__cat {
    display: block;
    padding-top: 1.04167vw;
    padding-bottom: 1.04167vw;
    background-color: #FFFEEB;
    color: #404040;
    text-align: center;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.38889vw;
    font-family: 'Lato';
}

@media screen and (min-width: 1100px) {
    .c-table-6__cat {
        padding-top: 15px;
        padding-bottom: 15px;
        font-size: 1.25rem;
    }
    body.ie .c-table-6__cat {
        padding-top: 17px;
        padding-bottom: 13px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-6__cat {
        padding-top: 2.60756vw;
        padding-bottom: 2.60756vw;
        font-size: 0.9375rem;
    }
}

.c-table-6__cat:hover {
    color: #FFAA55;
    -webkit-transition: color .3s;
    transition: color .3s;
}

.c-table-6__cat--current {
    background-color: #FFAA55;
    color: #fff;
}

.c-table-6__cat--current:hover {
    color: #fff;
}

.c-table-6__table {
    margin-top: 0.55556vw;
    padding: 2.08333vw 2.77778vw;
    border: 1.38889vw solid #FFFEEB;
    background-color: #fff;
}

@media screen and (min-width: 1100px) {
    .c-table-6__table {
        margin-top: 8px;
        padding: 30px 40px;
        border: 20px solid #FFFEEB;
    }
}

@media screen and (max-width: 767px) {
    .c-table-6__table {
        margin-top: 1.30378vw;
        padding: 3.91134vw 3.91134vw;
        border: 2.60756vw solid #FFFEEB;
    }
}

.c-table-6 table {
    width: 100%;
}

@media screen and (max-width: 767px) {
    .c-table-6 thead {
        display: none;
    }
}

.c-table-6 tr {
    border-bottom: 1px solid #eeeeee;
}

@media screen and (max-width: 767px) {
    .c-table-6 tr {
        display: block;
        padding-top: 1.30378vw;
        padding-bottom: 1.30378vw;
    }
}

.c-table-6 th, .c-table-6 td {
    letter-spacing: 0.1em;
    line-height: 2;
}

.c-table-6 th {
    padding-top: 0.69444vw;
    padding-bottom: 1.04167vw;
    color: #FFAA55;
    font-weight: 300;
    font-size: 0.97222vw;
}

@media screen and (min-width: 1100px) {
    .c-table-6 th {
        padding-top: 10px;
        padding-bottom: 15px;
        font-size: 0.875rem;
    }
}

.c-table-6 th:nth-of-type(1) {
    padding-left: 1.73611vw;
    width: 14.93056vw;
}

@media screen and (min-width: 1100px) {
    .c-table-6 th:nth-of-type(1) {
        padding-left: 25px;
        width: 215px;
    }
}

.c-table-6 th:nth-of-type(2) {
    width: 14.23611vw;
}

@media screen and (min-width: 1100px) {
    .c-table-6 th:nth-of-type(2) {
        width: 205px;
    }
}

.c-table-6 th:nth-of-type(3) {
    width: 40.27778vw;
}

@media screen and (min-width: 1100px) {
    .c-table-6 th:nth-of-type(3) {
        width: 580px;
    }
}

.c-table-6 td {
    padding-top: 1.73611vw;
    padding-bottom: 1.73611vw;
}

@media screen and (min-width: 1100px) {
    .c-table-6 td {
        padding-top: 25px;
        padding-bottom: 25px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-6 td {
        display: block;
        overflow: hidden;
        padding-top: 1.95567vw;
        padding-bottom: 1.95567vw;
        width: 100%;
    }
    .c-table-6 td[data-text]:before {
        display: inline-block;
        width: 25%;
        color: #FFAA55;
        content: attr(data-text) "";
        letter-spacing: 0.1em;
        font-weight: 300;
        font-size: 3.38983vw;
    }
    .c-table-6 td[data-text]:last-of-type:before {
        width: 100%;
    }
}

.c-table-6 td:nth-of-type(1) {
    padding-left: 1.73611vw;
    color: #404040;
    font-weight: 300;
    font-size: 1.11111vw;
    font-family: 'Lato';
}

@media screen and (min-width: 1100px) {
    .c-table-6 td:nth-of-type(1) {
        padding-left: 25px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-table-6 td:nth-of-type(1) {
        padding-left: 0;
        font-size: 3.65059vw;
    }
}

.c-table-6 td:nth-of-type(3) {
    padding-right: 1.04167vw;
    color: #404040;
    font-size: 1.11111vw;
}

body.ie .c-table-6 td:nth-of-type(3) {
    padding-right: 0.83333vw;
}

@media screen and (min-width: 1100px) {
    .c-table-6 td:nth-of-type(3) {
        padding-right: 15px;
        font-size: 1rem;
    }
    body.ie .c-table-6 td:nth-of-type(3) {
        padding-right: 12px;
    }
}

@media screen and (max-width: 767px) {
    .c-table-6 td:nth-of-type(3) {
        padding-right: 0;
        font-size: 3.65059vw;
    }
}

.c-table-6__label {
    display: inline-block;
    margin-bottom: 0.69444vw;
    padding: 0.06944vw 0.34722vw 0.13889vw;
    min-width: 6.25vw;
    background-color: #FFAA55;
    color: #fff;
    text-align: center;
    font-weight: 300;
    font-size: 0.97222vw;
    line-height: 2;
}

body.safari .c-table-6__label {
    margin-bottom: 1.38889vw;
    padding: 0.13889vw 0.34722vw 0.13889vw;
}

body.windows .c-table-6__label {
    margin-bottom: 0.625vw;
}

body.ie .c-table-6__label {
    margin-bottom: 0.76389vw;
}

@media screen and (min-width: 1100px) {
    .c-table-6__label {
        margin-bottom: 0;
        padding: 0 5px 2px;
        min-width: 90px;
        font-size: 0.875rem;
        line-height: 1.9;
    }
    body.safari .c-table-6__label {
        margin-bottom: 0;
        padding: 0 5px 2px;
    }
    body.windows .c-table-6__label {
        margin-bottom: 0;
    }
    body.ie .c-table-6__label {
        margin-bottom: 5px;
    }
}

@media screen and (max-width: 900px) {
    body.firefox .c-table-6__label {
        margin-bottom: 1.66667vw;
    }
    body.ie .c-table-6__label {
        margin-bottom: 1.66667vw;
    }
}

@media screen and (max-width: 767px) {
    .c-table-6__label {
        margin-bottom: 0;
        margin-left: -0.97222vw;
        padding: 0.20833vw 0.69444vw 0.69444vw;
        min-width: 20.8605vw;
        font-size: 3.38983vw;
        line-height: 1.5;
    }
    body.safari .c-table-6__label {
        margin-bottom: 0;
        padding: 0.20833vw 0.69444vw 0.69444vw;
    }
    body.android .c-table-6__label {
        padding: 0.34722vw 0.69444vw 0.69444vw;
    }
}

.c-table-6__link {
    display: -webkit-box;
    overflow: hidden;
    word-break: break-all;

    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.c-table-6__link:hover {
    color: #FFAA55;
    -webkit-transition: color .3s;
    transition: color .3s;
}

/* ---------------------------------------------
*   c-ttl-1
--------------------------------------------- */
.c-ttl-1 {
    margin-right: 6.59722vw;
    margin-left: 6.94444vw;
    width: 22.91667vw;
}

@media screen and (min-width: 1100px) {
    .c-ttl-1 {
        margin-right: 95px;
        margin-left: 100px;
        width: 330px;
    }
}

@media screen and (max-width: 1100px) {
    .c-ttl-1 {
        margin-right: auto;
        margin-bottom: 2.08333vw;
        margin-left: auto;
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .c-ttl-1 {
        margin-bottom: 0;
    }
}

.c-ttl-1--en {
    margin-right: 4.51389vw;
    margin-left: 4.86111vw;
    width: 27.08333vw;
}

@media screen and (min-width: 1100px) {
    .c-ttl-1--en {
        margin-right: 65px;
        margin-left: 70px;
        width: 390px;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-1--en {
        width: 100%;
    }
}

.c-ttl-1__cat {
    display: block;
    margin-top: 4.86111vw;
    margin-bottom: 1.73611vw;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.80556vw;
    font-family: 'Lato';
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-ttl-1__cat {
        margin-top: 50px;
        margin-bottom: 25px;
        font-size: 1.625rem;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-1__cat {
        margin-top: 0;
        margin-bottom: 5.21512vw;
        font-size: 3.91134vw;
    }
}

.c-ttl-1__desc {
    display: block;
    margin-bottom: 4.86111vw;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    font-family: 'Lato';
    line-height: 1.35;
}

@media screen and (min-width: 1100px) {
    .c-ttl-1__desc {
        margin-bottom: 70px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-1__desc {
        margin-bottom: 6.5189vw;
        font-size: 3.12907vw;
    }
}

.c-ttl-1__ttl {
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 100;
    font-size: 2.5vw;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-ttl-1__ttl {
        font-size: 2.25rem;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-1__ttl {
        font-size: 5.21512vw;
    }
}

.c-ttl-1__ttl--emphasis {
    display: block;
    margin-top: 0.69444vw;
    font-size: 3.47222vw;
}

@media screen and (min-width: 1100px) {
    .c-ttl-1__ttl--emphasis {
        margin-top: 10px;
        font-size: 3.125rem;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-1__ttl--emphasis {
        margin-top: 1.95567vw;
        font-size: 7.30117vw;
    }
}

.c-ttl-1__ttl--en {
    letter-spacing: 0;
    font-weight: 300;
    font-family: 'Lato';
}

.c-ttl-1__ttl--small {
    display: block;
    margin-top: 2.77778vw;
    font-size: 1.66667vw;
    line-height: 1.5;
}

@media screen and (min-width: 1100px) {
    .c-ttl-1__ttl--small {
        margin-top: 40px;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-1__ttl--small {
        margin-top: 5.21512vw;
        font-size: 3.91134vw;
    }
}

/* ---------------------------------------------
*   c-ttl-2
--------------------------------------------- */
.c-ttl-2--about {
    margin-bottom: 4.86111vw;
}

@media screen and (min-width: 1100px) {
    .c-ttl-2--about {
        margin-bottom: 70px;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-2--about {
        margin-bottom: 7.82269vw;
    }
}

.c-ttl-2--info {
    margin-bottom: 8.19444vw;
}

@media screen and (min-width: 1100px) {
    .c-ttl-2--info {
        margin-bottom: 118px;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-2--info {
        margin-bottom: 11.73403vw;
    }
}

.c-ttl-2--life {
    margin-bottom: 5.55556vw;
}

@media screen and (min-width: 1100px) {
    .c-ttl-2--life {
        margin-bottom: 80px;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-2--life {
        margin-bottom: 7.82269vw;
    }
}

.c-ttl-2--study {
    margin-bottom: 4.86111vw;
}

@media screen and (min-width: 1100px) {
    .c-ttl-2--study {
        margin-bottom: 70px;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-2--study {
        margin-bottom: 7.82269vw;
    }
}

.c-ttl-2__h2 {
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 100;
    font-size: 2.08333vw;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-ttl-2__h2 {
        font-size: 1.875rem;
    }
}

.c-ttl-2__h2--event {
    margin-left: 0;
}

@media screen and (max-width: 767px) {
    .c-ttl-2__h2 {
        font-size: 5.73664vw;
    }
}

.c-ttl-2__h2--en {
    font-weight: 300;
    font-family: 'Lato';
}

.c-ttl-2__h3 {
    margin-left: 0.69444vw;
    color: #A6A6A6;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.38889vw;
    font-family: 'Lato';
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-ttl-2__h3 {
        margin-left: 10px;
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-2__h3 {
        margin-left: 2.34681vw;
        font-size: 3.65059vw;
    }
}

/* ---------------------------------------------
*   c-ttl-3
--------------------------------------------- */
.c-ttl-3 {
    position: relative;
    margin-right: auto;
    margin-bottom: 9.30556vw;
    margin-left: auto;
    max-width: 76.38889vw;
    height: 18.33333vw;
}

@media screen and (min-width: 1100px) {
    .c-ttl-3 {
        margin-bottom: 134px;
        max-width: 1100px;
        height: 264px;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-3 {
        margin-bottom: 12.5vw;
        max-width: 95%;
        height: 37.02738vw;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-3--campus {
        height: 42.2425vw;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-3--admissions {
        height: 42.2425vw;
    }
}

.c-ttl-3--no-anchor {
    margin-bottom: 11.25vw;
    height: auto;
}

@media screen and (min-width: 1100px) {
    .c-ttl-3--no-anchor {
        margin-bottom: 162px;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-3--no-anchor {
        margin-bottom: 12.5vw;
    }
}

.c-ttl-3__inner {
    margin-left: 6.94444vw;
}

@media screen and (min-width: 1100px) {
    .c-ttl-3__inner {
        margin-left: 100px;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-3__inner {
        margin-left: 0;
    }
}

.c-ttl-3__ttl {
    position: relative;
    overflow: hidden;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 100;
    font-size: 3.47222vw;
    line-height: 1;
}

@media screen and (min-width: 1100px) {
    .c-ttl-3__ttl {
        font-size: 3.125rem;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-3__ttl {
        font-size: 6.5189vw;
        line-height: 1.3;
    }
}

.c-ttl-3__ttl:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    background-color: #fff;
    content: '';
    -webkit-transition: all 1s cubic-bezier(0.77, 0, 0.18, 1);
    transition: all 1s cubic-bezier(0.77, 0, 0.18, 1);
}

.c-ttl-3__ttl.is-fadein:before {
    left: 100%;
}

.c-ttl-3__ttl--yet:before {
    left: 100%;
}

.c-ttl-3__ttl--en {
    display: block;
    margin-bottom: 2.36111vw;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.80556vw;
    font-family: 'Lato';
}

@media screen and (min-width: 1100px) {
    .c-ttl-3__ttl--en {
        margin-bottom: 34px;
        font-size: 1.625rem;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-3__ttl--en {
        margin-bottom: 3.91134vw;
        font-size: 4.1721vw;
    }
}

.c-ttl-3__ttl--big {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: text-top;
    letter-spacing: 0;
    font-size: 3.47222vw;
}

@media screen and (min-width: 1100px) {
    .c-ttl-3__ttl--big {
        margin-bottom: 0;
        font-size: 3.125rem;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-3__ttl--big {
        margin-bottom: 0;
        font-size: 6.5189vw;
    }
}

/* ---------------------------------------------
*   c-ttl-4
--------------------------------------------- */
.c-ttl-4 {
    margin-bottom: 5vw;
    margin-left: 6.94444vw;
}

@media screen and (min-width: 1100px) {
    .c-ttl-4 {
        margin-bottom: 72px;
        margin-left: 100px;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-4 {
        margin-bottom: 7.82269vw;
        margin-left: 4.56323vw;
    }
}

.c-ttl-4--narrow {
    margin-bottom: 0;
}

@media screen and (max-width: 767px) {
    .c-ttl-4--narrow {
        margin-left: 0;
    }
}

.c-ttl-4--short {
    margin-bottom: 4.02778vw;
}

@media screen and (min-width: 1100px) {
    .c-ttl-4--short {
        margin-bottom: 58px;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-4--short {
        margin-bottom: 13.03781vw;
    }
}

.c-ttl-4--long {
    margin-bottom: 8.33333vw;
}

@media screen and (min-width: 1100px) {
    .c-ttl-4--long {
        margin-bottom: 120px;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-4--long {
        margin-bottom: 13.03781vw;
    }
}

.c-ttl-4--wide {
    margin-bottom: 11.80556vw;
}

@media screen and (min-width: 1100px) {
    .c-ttl-4--wide {
        margin-bottom: 170px;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-4--wide {
        margin-bottom: 13.03781vw;
    }
}

.c-ttl-4__ttl {
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 100;
    font-size: 2.08333vw;
    line-height: 1.33;
}

@media screen and (min-width: 1100px) {
    .c-ttl-4__ttl {
        font-size: 1.875rem;
    }
}

@media screen and (max-width: 767px) {
    .c-ttl-4__ttl {
        font-size: 5.73664vw;
        line-height: 1.5;
    }
}

.c-ttl-4__ttl--en {
    font-weight: 300;
    font-family: 'Lato';
}

/* ---------------------------------------------
*   wp-pagenavi
--------------------------------------------- */
/*  wp-pagenavi-outer
--------------------------------------------- */
.wp-pagenavi-outer {
    margin-top: 4.51389vw;
    text-align: center;
}

@media screen and (min-width: 1100px) {
    .wp-pagenavi-outer {
        margin-top: 65px;
    }
}

@media screen and (max-width: 767px) {
    .wp-pagenavi-outer {
        margin-top: 10.43025vw;
    }
}

/*  wp-pagenavi
--------------------------------------------- */
.wp-pagenavi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;

    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.wp-pagenavi a,
.wp-pagenavi span {
    display: inline-block;
    margin-right: 0.69444vw;
    margin-left: 0.69444vw;
    padding-top: 0.69444vw !important;
    padding-bottom: 0.69444vw !important;
    width: 2.77778vw;
    color: #FFAA55;
    font-size: 1.25vw;
}

@media screen and (min-width: 1100px) {
    .wp-pagenavi a,
    .wp-pagenavi span {
        margin-right: 10px;
        margin-left: 10px;
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        width: 40px;
        font-size: 1.125rem;
    }
}

@media screen and (max-width: 767px) {
    .wp-pagenavi a,
    .wp-pagenavi span {
        margin-top: 1.30378vw;
        margin-right: 1.56454vw;
        margin-left: 1.56454vw;
        padding-top: 1.30378vw !important;
        padding-bottom: 1.30378vw !important;
        width: 7.82269vw;
        font-size: 3.91134vw;
    }
}

.wp-pagenavi .page,
.wp-pagenavi .current {
    border: 1px solid #FFAA55 !important;
    background-color: #FFFEEB;
    font-weight: 300;
    font-weight: 300 !important;
    font-family: 'Lato';
}

.wp-pagenavi .page:hover,
.wp-pagenavi .current:hover {
    background-color: #FFAA55;
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .extend,
.wp-pagenavi .first,
.wp-pagenavi .last {
    border: none;
}

.wp-pagenavi .previouspostslink:hover,
.wp-pagenavi .nextpostslink:hover,
.wp-pagenavi .extend:hover,
.wp-pagenavi .first:hover,
.wp-pagenavi .last:hover {
    opacity: .7;
    -webkit-transition: .3s;
    transition: .3s;
}

@media screen and (max-width: 767px) {
    .wp-pagenavi .previouspostslink,
    .wp-pagenavi .nextpostslink,
    .wp-pagenavi .extend,
    .wp-pagenavi .first,
    .wp-pagenavi .last {
        margin-right: 0;
        margin-left: 0;
        width: 7.04042vw;
    }
}

.wp-pagenavi .current {
    background-color: #FFAA55;
    color: #fff;
}

/* ---------------------------------------------
*   wysiwyg
--------------------------------------------- */
/*  wysiwyg-head
--------------------------------------------- */
.wysiwyg-head__box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;

    -webkit-box-align: center;
    align-items: center;
}

.wysiwyg-head__label {
    padding: 0.83333vw 0.83333vw;
    min-width: 20.83333vw;
    background-color: #FFAA55;
    color: #fff;
    text-align: center;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.66667vw;
    font-family: 'Lato';
}

body.windows .wysiwyg-head__label {
    padding: 0.97222vw 0.83333vw 0.76389vw;
}

body.ie .wysiwyg-head__label {
    padding: 1.11111vw 0.83333vw 0.625vw;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-head__label {
        padding: 12px 12px;
        min-width: 300px;
        font-size: 1.5rem;
    }
    body.windows .wysiwyg-head__label {
        padding: 14px 12px 11px;
    }
    body.windows .wysiwyg-head__label {
        padding: 16px 12px 9px;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-head__label {
        padding: 0.83333vw 0.83333vw 0.69444vw;
        min-width: 32.59452vw;
        font-size: 3.91134vw;
    }
}

.wysiwyg-head__date {
    margin-left: 4.16667vw;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.38889vw;
    font-family: 'Lato';
}

body.windows .wysiwyg-head__date {
    margin-top: 0.27778vw;
}

body.ie .wysiwyg-head__date {
    margin-top: 0.69444vw;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-head__date {
        margin-left: 60px;
        font-size: 1.25rem;
    }
    body.windows .wysiwyg-head__date {
        margin-top: 4px;
    }
    body.ie .wysiwyg-head__date {
        margin-top: 10px;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-head__date {
        margin-top: 0.83333vw;
        margin-left: 5.21512vw;
        font-size: 3.91134vw;
    }
}

.wysiwyg-head__ttl {
    margin-top: 3.26389vw;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 500;
    font-size: 1.38889vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-head__ttl {
        margin-top: 47px;
        font-size: 1.25rem;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-head__ttl {
        margin-top: 6.5189vw;
        font-size: 3.91134vw;
    }
}

/*  wysiwyg-body
--------------------------------------------- */
.wysiwyg-body {
    margin-top: 5.625vw;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body {
        margin-top: 81px;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body {
        margin-top: 13.03781vw;
    }
}

.wysiwyg-body:after {
    display: block;
    clear: both;
    content: "";
}

.wysiwyg-body hr {
    display: block;
    border: none;
    border-top: #FFAA55 1px solid;
    border-bottom: #FFAA55 1px solid;
}

.wysiwyg-body h1, .wysiwyg-body h2 {
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 100;
    font-size: 2.08333vw;
    line-height: 1.5;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body h1, .wysiwyg-body h2 {
        font-size: 1.875rem;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body h1, .wysiwyg-body h2 {
        font-size: 4.69361vw;
    }
}

.wysiwyg-body h3 {
    margin-top: 2.36111vw;
    padding: 0.48611vw 1.94444vw;
    width: 34.72222vw;
    background-color: #FFAA55;
    color: #fff;
    letter-spacing: 0.1em;
    font-weight: 100;
    font-size: 1.66667vw;
    line-height: 1.5;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body h3 {
        margin-top: 34px;
        padding: 7px 28px;
        width: 500px;
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body h3 {
        margin-top: 5.21512vw;
        padding: 1.56454vw 3.91134vw;
        font-size: 4.1721vw;
    }
}

.wysiwyg-body h4,
.wysiwyg-body h5,
.wysiwyg-body h6 {
    margin-top: 2.5vw;
    padding: 0.69444vw 1.94444vw;
    background-color: #FFFEEB;
    color: #FFAA55;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 1.5;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body h4,
    .wysiwyg-body h5,
    .wysiwyg-body h6 {
        margin-top: 36px;
        padding: 10px 28px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body h4,
    .wysiwyg-body h5,
    .wysiwyg-body h6 {
        margin-top: 5.21512vw;
        padding: 1.30378vw 3.91134vw;
        font-size: 3.91134vw;
    }
}

.wysiwyg-body p {
    margin-top: 3.75vw;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body p {
        margin-top: 54px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body p {
        margin-top: 7.82269vw;
        font-size: 3.65059vw;
    }
}

.wysiwyg-body figcaption,
.wysiwyg-body .wp-caption-text {
    margin-top: 1.11111vw;
    color: #404040;
    text-align: center;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 0.97222vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body figcaption,
    .wysiwyg-body .wp-caption-text {
        margin-top: 16px;
        font-size: 0.875rem;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body figcaption,
    .wysiwyg-body .wp-caption-text {
        margin-top: 1.30378vw;
        font-size: 3.12907vw;
        line-height: 1.5;
    }
}

.wysiwyg-body a {
    position: relative;
    color: #FFAA55;
    text-decoration: underline;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
}

.wysiwyg-body a:hover {
    text-decoration: none;
    -webkit-transition: 0.6s;
    transition: 0.6s;
}

.wysiwyg-body a[target="_blank"] {
    margin-right: 2.5vw;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body a[target="_blank"] {
        margin-right: 36px;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body a[target="_blank"] {
        margin-right: 7.30117vw;
    }
}

.wysiwyg-body a[target="_blank"]:after {
    position: absolute;
    bottom: 5%;
    margin-left: 0.48611vw;
    width: 1.45833vw;
    height: 1.31944vw;
    background: url(/img/common/link2_o.svg) 0 0 no-repeat;
    background-size: auto 100%;
    content: '';
}

body.safari .wysiwyg-body a[target="_blank"]:after {
    bottom: 15%;
}

body.firefox .wysiwyg-body a[target="_blank"]:after {
    bottom: 10%;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body a[target="_blank"]:after {
        margin-left: 7px;
        width: 21px;
        height: 19px;
    }
    body.ie .wysiwyg-body a[target="_blank"]:after {
        bottom: 5%;
    }
    body.firefox .wysiwyg-body a[target="_blank"]:after {
        bottom: 5%;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body a[target="_blank"]:after {
        bottom: 1%;
        margin-left: 1.30378vw;
        width: 4.1721vw;
        height: 4.1721vw;
        background-size: 100% auto;
    }
    body.safari .wysiwyg-body a[target="_blank"]:after {
        bottom: 1%;
    }
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body a {
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body a {
        font-size: 3.65059vw;
    }
}

@media screen and (min-width: 768px) {
    .wysiwyg-body a {
        -webkit-transition: opacity 300ms;
        transition: opacity 300ms;
    }
    .wysiwyg-body a:hover {
        opacity: 0.8;
    }
}

@media screen and (min-width: 768px) and (max-width: 767px) {
    .wysiwyg-body a:hover {
        opacity: 1;
    }
}

.wysiwyg-body strong {
    font-weight: bold;
}

.wysiwyg-body em {
    font-style: italic;
}

.wysiwyg-body del {
    text-decoration: line-through;
}

.wysiwyg-body .alignright {
    float: right;
    margin-bottom: 1.04167vw;
    margin-left: 2.77778vw;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body .alignright {
        margin-bottom: 15px;
        margin-left: 40px;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body .alignright {
        display: block;
        float: none;
        margin-right: auto;
        margin-bottom: 3.91134vw;
        margin-left: auto;
        text-align: center;
    }
}

.wysiwyg-body .alignright + p {
    margin-top: 0;
}

.wysiwyg-body .alignleft {
    float: left;
    margin-right: 3.125vw;
    margin-bottom: 1.04167vw;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body .alignleft {
        margin-right: 45px;
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body .alignleft {
        display: block;
        float: none;
        margin-right: auto;
        margin-bottom: 3.91134vw;
        margin-left: auto;
    }
}

.wysiwyg-body .alignleft + p {
    margin-top: 0;
}

.wysiwyg-body .aligncenter {
    display: block;
    margin-right: auto;
    margin-bottom: 1.38889vw;
    margin-left: auto;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body .aligncenter {
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body .aligncenter {
        margin-bottom: 3.91134vw;
    }
}

.wysiwyg-body ul {
    margin-top: 3.61111vw;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body ul {
        margin-top: 52px;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body ul {
        margin-top: 5.21512vw;
    }
}

.wysiwyg-body ul li {
    position: relative;
    margin-top: 1.25vw;
    padding-left: 2.77778vw;
    color: #404040;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 2;
}

.wysiwyg-body ul li:first-of-type {
    margin-top: 0;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body ul li {
        margin-top: 18px;
        padding-left: 40px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body ul li {
        margin-top: 2.60756vw;
        padding-left: 5.21512vw;
        font-size: 3.65059vw;
    }
}

.wysiwyg-body ul li:before {
    position: absolute;
    top: 0.48611vw;
    left: 0;
    width: 1.25vw;
    height: 1.25vw;
    border-radius: 50%;
    background-color: #FFAA55;
    content: '';
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body ul li:before {
        top: 7px;
        width: 20px;
        height: 20px;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body ul li:before {
        top: 2.34681vw;
        width: 3.12907vw;
        height: 3.12907vw;
    }
}

.wysiwyg-body ol {
    margin-top: 3.81944vw;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body ol {
        margin-top: 55px;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body ol {
        margin-top: 5.21512vw;
    }
}

.wysiwyg-body ol li {
    position: relative;
    margin-top: 0.83333vw;
    padding-left: 3.33333vw;
    color: #404040;
    counter-increment: number;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 2;
}

.wysiwyg-body ol li:first-of-type {
    margin-top: 0;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body ol li {
        margin-top: 12px;
        padding-left: 48px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body ol li {
        margin-top: 2.60756vw;
        padding-left: 8.08344vw;
        font-size: 3.65059vw;
    }
}

.wysiwyg-body ol li:before {
    position: absolute;
    top: 0vw;
    left: 1.18056vw;
    color: #FFAA55;
    content: counter(number) ".";
    letter-spacing: 0;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body ol li:before {
        top: 1px;
        left: 17px;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body ol li:before {
        top: 0;
        left: 2.86832vw;
    }
}

.wysiwyg-body ol li:after {
    position: absolute;
    top: 0.27778vw;
    left: 0;
    width: 0.41667vw;
    height: 1.66667vw;
    background-color: #FFAA55;
    content: '';
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body ol li:after {
        top: 6px;
        width: 6px;
        height: 24px;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body ol li:after {
        top: 1.30378vw;
        width: 1.04302vw;
        height: 4.95437vw;
    }
}

.wysiwyg-body blockquote {
    margin-top: 4.16667vw;
    padding: 1.94444vw 2.77778vw;
    background-color: #FFFEEB;
    color: #404040;
    word-break: break-all;
    letter-spacing: 0.1em;
    font-weight: 300;
    font-size: 1.11111vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body blockquote {
        margin-top: 60px;
        padding: 28px 40px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body blockquote {
        margin-top: 7.82269vw;
        padding: 3.65059vw 5.73664vw;
        font-size: 3.65059vw;
    }
}

.wysiwyg-body blockquote p {
    margin-top: 0;
}

.wysiwyg-body table {
    margin-top: 5.55556vw;
    border-top: 1px solid #eeeeee;
    border-right: 1px solid #eeeeee;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body table {
        display: block;
        margin-top: 80px;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body table {
        margin-top: 10.43025vw;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body tr {
        display: block;
        padding-top: 1.30378vw;
        padding-bottom: 1.30378vw;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body tr {
        display: block;
        padding-top: 0;
        padding-bottom: 0;
    }
}

.wysiwyg-body th, .wysiwyg-body td {
    padding-right: 2.29167vw;
    padding-left: 2.29167vw;
    width: 23.125vw;
    border-bottom: 1px solid #eeeeee;
    border-left: 1px solid #eeeeee;
    letter-spacing: 0.1em;
    font-size: 1.11111vw;
    line-height: 2;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body th, .wysiwyg-body td {
        padding-right: 33px;
        padding-left: 33px;
        width: 333px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body th, .wysiwyg-body td {
        display: block;
        padding: 2.34681vw 3.65059vw;
        width: 100%;
        font-size: 3.65059vw;
    }
}

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

.wysiwyg-body thead th {
    padding-top: 0.90278vw;
    padding-bottom: 0.90278vw;
    border-left: 1px solid #fff;
    background-color: #FFAA55;
    color: #fff;
    font-weight: 500;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body thead th {
        padding-top: 13px;
        padding-bottom: 13px;
        font-size: 1rem;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body tbody {
        display: block;
    }
}

.wysiwyg-body tbody th {
    color: #404040;
    font-weight: 500;
}

@media screen and (max-width: 767px) {
    .wysiwyg-body tbody th[data-text]:before {
        display: inline-block;
        width: 40%;
        color: #FFAA55;
        content: attr(data-text) "";
        letter-spacing: 0.1em;
        font-weight: 300;
        font-size: 3.38983vw;
    }
}

.wysiwyg-body tbody td {
    padding-top: 1.18056vw;
    padding-bottom: 1.18056vw;
    color: #404040;
    font-weight: 300;
}

@media screen and (min-width: 1100px) {
    .wysiwyg-body tbody td {
        padding-top: 17px;
        padding-bottom: 17px;
    }
}

@media screen and (max-width: 767px) {
    .wysiwyg-body tbody td {
        overflow: hidden;
        padding-top: 1.95567vw;
        padding-bottom: 1.95567vw;
    }
    .wysiwyg-body tbody td[data-text]:before {
        display: block;
        width: 100%;
        color: #FFAA55;
        content: attr(data-text) "";
        letter-spacing: 0.1em;
        font-weight: 300;
        font-size: 3.38983vw;
    }
}

/* ==========================================================
*
*   javascript style hooks
*
========================================================== */
/* ---------------------------------------------
*   js-scroll-interaction
--------------------------------------------- */
.js-scroll-interaction {
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
    transition-timing-function: cubic-bezier(0, 0, 0.58, 1);
}

.js-scroll-interaction--opacity {
    opacity: 0;
}

.js-scroll-interaction--opacity.is-fadein {
    opacity: 1;
}

.js-scroll-interaction--translate-y {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
}

.js-scroll-interaction--translate-y.is-fadein {
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

/* ==========================================================
*
*   utility
*
========================================================== */
@media screen and (min-width: 768px) {
    .pc-hide {
        display: none !important;
    }
}

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

/* ---------------------------------------------
*   margin-top
--------------------------------------------- */
.mgt-pc--0 {
    margin-top: 0 !important;
}

.mgt-pc--5 {
    margin-top: 5px !important;
}

.mgt-pc--10 {
    margin-top: 10px !important;
}

.mgt-pc--15 {
    margin-top: 15px !important;
}

.mgt-pc--20 {
    margin-top: 20px !important;
}

.mgt-pc--25 {
    margin-top: 25px !important;
}

.mgt-pc--30 {
    margin-top: 30px !important;
}

.mgt-pc--35 {
    margin-top: 35px !important;
}

.mgt-pc--40 {
    margin-top: 40px !important;
}

.mgt-pc--45 {
    margin-top: 45px !important;
}

.mgt-pc--50 {
    margin-top: 50px !important;
}

.mgt-pc--55 {
    margin-top: 55px !important;
}

.mgt-pc--60 {
    margin-top: 60px !important;
}

.mgt-pc--65 {
    margin-top: 65px !important;
}

.mgt-pc--70 {
    margin-top: 70px !important;
}

.mgt-pc--75 {
    margin-top: 75px !important;
}

.mgt-pc--80 {
    margin-top: 80px !important;
}

.mgt-pc--85 {
    margin-top: 85px !important;
}

.mgt-pc--90 {
    margin-top: 90px !important;
}

.mgt-pc--95 {
    margin-top: 95px !important;
}

.mgt-pc--100 {
    margin-top: 100px !important;
}

.mgt-pc--105 {
    margin-top: 105px !important;
}

.mgt-pc--110 {
    margin-top: 110px !important;
}

.mgt-pc--115 {
    margin-top: 115px !important;
}

.mgt-pc--120 {
    margin-top: 120px !important;
}

.mgt-pc--125 {
    margin-top: 125px !important;
}

.mgt-pc--130 {
    margin-top: 130px !important;
}

.mgt-pc--135 {
    margin-top: 135px !important;
}

.mgt-pc--140 {
    margin-top: 140px !important;
}

.mgt-pc--145 {
    margin-top: 145px !important;
}

.mgt-pc--150 {
    margin-top: 150px !important;
}

.mgt-pc--155 {
    margin-top: 155px !important;
}

.mgt-pc--160 {
    margin-top: 160px !important;
}

.mgt-pc--165 {
    margin-top: 165px !important;
}

.mgt-pc--170 {
    margin-top: 170px !important;
}

.mgt-pc--175 {
    margin-top: 175px !important;
}

.mgt-pc--180 {
    margin-top: 180px !important;
}

.mgt-pc--185 {
    margin-top: 185px !important;
}

.mgt-pc--190 {
    margin-top: 190px !important;
}

.mgt-pc--195 {
    margin-top: 195px !important;
}

.mgt-pc--200 {
    margin-top: 200px !important;
}

.mgt-pc--205 {
    margin-top: 205px !important;
}

.mgt-pc--210 {
    margin-top: 210px !important;
}

.mgt-pc--215 {
    margin-top: 215px !important;
}

.mgt-pc--220 {
    margin-top: 220px !important;
}

.mgt-pc--225 {
    margin-top: 225px !important;
}

.mgt-pc--230 {
    margin-top: 230px !important;
}

.mgt-pc--235 {
    margin-top: 235px !important;
}

.mgt-pc--240 {
    margin-top: 240px !important;
}

.mgt-pc--245 {
    margin-top: 245px !important;
}

.mgt-pc--250 {
    margin-top: 250px !important;
}

@media screen and (max-width: 767px) {
    .mgt-sp--0 {
        margin-top: 0 !important;
    }
    .mgt-sp--5 {
        margin-top: 0.65189vw !important;
    }
    .mgt-sp--10 {
        margin-top: 1.30378vw !important;
    }
    .mgt-sp--15 {
        margin-top: 1.95567vw !important;
    }
    .mgt-sp--20 {
        margin-top: 2.60756vw !important;
    }
    .mgt-sp--25 {
        margin-top: 3.25945vw !important;
    }
    .mgt-sp--30 {
        margin-top: 3.91134vw !important;
    }
    .mgt-sp--35 {
        margin-top: 4.56323vw !important;
    }
    .mgt-sp--40 {
        margin-top: 5.21512vw !important;
    }
    .mgt-sp--45 {
        margin-top: 5.86701vw !important;
    }
    .mgt-sp--50 {
        margin-top: 6.5189vw !important;
    }
    .mgt-sp--55 {
        margin-top: 7.1708vw !important;
    }
    .mgt-sp--60 {
        margin-top: 7.82269vw !important;
    }
    .mgt-sp--65 {
        margin-top: 8.47458vw !important;
    }
    .mgt-sp--70 {
        margin-top: 9.12647vw !important;
    }
    .mgt-sp--75 {
        margin-top: 9.77836vw !important;
    }
    .mgt-sp--80 {
        margin-top: 10.43025vw !important;
    }
    .mgt-sp--85 {
        margin-top: 11.08214vw !important;
    }
    .mgt-sp--90 {
        margin-top: 11.73403vw !important;
    }
    .mgt-sp--95 {
        margin-top: 12.38592vw !important;
    }
    .mgt-sp--100 {
        margin-top: 13.03781vw !important;
    }
    .mgt-sp--105 {
        margin-top: 13.6897vw !important;
    }
    .mgt-sp--110 {
        margin-top: 14.34159vw !important;
    }
    .mgt-sp--115 {
        margin-top: 14.99348vw !important;
    }
    .mgt-sp--120 {
        margin-top: 15.64537vw !important;
    }
    .mgt-sp--125 {
        margin-top: 16.29726vw !important;
    }
    .mgt-sp--130 {
        margin-top: 16.94915vw !important;
    }
    .mgt-sp--135 {
        margin-top: 17.60104vw !important;
    }
    .mgt-sp--140 {
        margin-top: 18.25293vw !important;
    }
    .mgt-sp--145 {
        margin-top: 18.90482vw !important;
    }
    .mgt-sp--150 {
        margin-top: 19.55671vw !important;
    }
    .mgt-sp--155 {
        margin-top: 20.2086vw !important;
    }
    .mgt-sp--160 {
        margin-top: 20.8605vw !important;
    }
    .mgt-sp--165 {
        margin-top: 21.51239vw !important;
    }
    .mgt-sp--170 {
        margin-top: 22.16428vw !important;
    }
    .mgt-sp--175 {
        margin-top: 22.81617vw !important;
    }
    .mgt-sp--180 {
        margin-top: 23.46806vw !important;
    }
    .mgt-sp--185 {
        margin-top: 24.11995vw !important;
    }
    .mgt-sp--190 {
        margin-top: 24.77184vw !important;
    }
    .mgt-sp--195 {
        margin-top: 25.42373vw !important;
    }
    .mgt-sp--200 {
        margin-top: 26.07562vw !important;
    }
    .mgt-sp--205 {
        margin-top: 26.72751vw !important;
    }
    .mgt-sp--210 {
        margin-top: 27.3794vw !important;
    }
    .mgt-sp--215 {
        margin-top: 28.03129vw !important;
    }
    .mgt-sp--220 {
        margin-top: 28.68318vw !important;
    }
    .mgt-sp--225 {
        margin-top: 29.33507vw !important;
    }
    .mgt-sp--230 {
        margin-top: 29.98696vw !important;
    }
    .mgt-sp--235 {
        margin-top: 30.63885vw !important;
    }
    .mgt-sp--240 {
        margin-top: 31.29074vw !important;
    }
    .mgt-sp--245 {
        margin-top: 31.94263vw !important;
    }
    .mgt-sp--250 {
        margin-top: 32.59452vw !important;
    }
}

/* ---------------------------------------------
*   margin-bottom
--------------------------------------------- */
.mgb-pc--0 {
    margin-bottom: 0 !important;
}

.mgb-pc--5 {
    margin-bottom: 5px !important;
}

.mgb-pc--10 {
    margin-bottom: 10px !important;
}

.mgb-pc--15 {
    margin-bottom: 15px !important;
}

.mgb-pc--20 {
    margin-bottom: 20px !important;
}

.mgb-pc--25 {
    margin-bottom: 25px !important;
}

.mgb-pc--30 {
    margin-bottom: 30px !important;
}

.mgb-pc--35 {
    margin-bottom: 35px !important;
}

.mgb-pc--40 {
    margin-bottom: 40px !important;
}

.mgb-pc--45 {
    margin-bottom: 45px !important;
}

.mgb-pc--50 {
    margin-bottom: 50px !important;
}

.mgb-pc--55 {
    margin-bottom: 55px !important;
}

.mgb-pc--60 {
    margin-bottom: 60px !important;
}

.mgb-pc--65 {
    margin-bottom: 65px !important;
}

.mgb-pc--70 {
    margin-bottom: 70px !important;
}

.mgb-pc--75 {
    margin-bottom: 75px !important;
}

.mgb-pc--80 {
    margin-bottom: 80px !important;
}

.mgb-pc--85 {
    margin-bottom: 85px !important;
}

.mgb-pc--90 {
    margin-bottom: 90px !important;
}

.mgb-pc--95 {
    margin-bottom: 95px !important;
}

.mgb-pc--100 {
    margin-bottom: 100px !important;
}

.mgb-pc--105 {
    margin-bottom: 105px !important;
}

.mgb-pc--110 {
    margin-bottom: 110px !important;
}

.mgb-pc--115 {
    margin-bottom: 115px !important;
}

.mgb-pc--120 {
    margin-bottom: 120px !important;
}

.mgb-pc--125 {
    margin-bottom: 125px !important;
}

.mgb-pc--130 {
    margin-bottom: 130px !important;
}

.mgb-pc--135 {
    margin-bottom: 135px !important;
}

.mgb-pc--140 {
    margin-bottom: 140px !important;
}

.mgb-pc--145 {
    margin-bottom: 145px !important;
}

.mgb-pc--150 {
    margin-bottom: 150px !important;
}

.mgb-pc--155 {
    margin-bottom: 155px !important;
}

.mgb-pc--160 {
    margin-bottom: 160px !important;
}

.mgb-pc--165 {
    margin-bottom: 165px !important;
}

.mgb-pc--170 {
    margin-bottom: 170px !important;
}

.mgb-pc--175 {
    margin-bottom: 175px !important;
}

.mgb-pc--180 {
    margin-bottom: 180px !important;
}

.mgb-pc--185 {
    margin-bottom: 185px !important;
}

.mgb-pc--190 {
    margin-bottom: 190px !important;
}

.mgb-pc--195 {
    margin-bottom: 195px !important;
}

.mgb-pc--200 {
    margin-bottom: 200px !important;
}

.mgb-pc--205 {
    margin-bottom: 205px !important;
}

.mgb-pc--210 {
    margin-bottom: 210px !important;
}

.mgb-pc--215 {
    margin-bottom: 215px !important;
}

.mgb-pc--220 {
    margin-bottom: 220px !important;
}

.mgb-pc--225 {
    margin-bottom: 225px !important;
}

.mgb-pc--230 {
    margin-bottom: 230px !important;
}

.mgb-pc--235 {
    margin-bottom: 235px !important;
}

.mgb-pc--240 {
    margin-bottom: 240px !important;
}

.mgb-pc--245 {
    margin-bottom: 245px !important;
}

.mgb-pc--250 {
    margin-bottom: 250px !important;
}

@media screen and (max-width: 767px) {
    .mgb-sp--0 {
        margin-bottom: 0 !important;
    }
    .mgb-sp--5 {
        margin-bottom: 0.65189vw !important;
    }
    .mgb-sp--10 {
        margin-bottom: 1.30378vw !important;
    }
    .mgb-sp--15 {
        margin-bottom: 1.95567vw !important;
    }
    .mgb-sp--20 {
        margin-bottom: 2.60756vw !important;
    }
    .mgb-sp--25 {
        margin-bottom: 3.25945vw !important;
    }
    .mgb-sp--30 {
        margin-bottom: 3.91134vw !important;
    }
    .mgb-sp--35 {
        margin-bottom: 4.56323vw !important;
    }
    .mgb-sp--40 {
        margin-bottom: 5.21512vw !important;
    }
    .mgb-sp--45 {
        margin-bottom: 5.86701vw !important;
    }
    .mgb-sp--50 {
        margin-bottom: 6.5189vw !important;
    }
    .mgb-sp--55 {
        margin-bottom: 7.1708vw !important;
    }
    .mgb-sp--60 {
        margin-bottom: 7.82269vw !important;
    }
    .mgb-sp--65 {
        margin-bottom: 8.47458vw !important;
    }
    .mgb-sp--70 {
        margin-bottom: 9.12647vw !important;
    }
    .mgb-sp--75 {
        margin-bottom: 9.77836vw !important;
    }
    .mgb-sp--80 {
        margin-bottom: 10.43025vw !important;
    }
    .mgb-sp--85 {
        margin-bottom: 11.08214vw !important;
    }
    .mgb-sp--90 {
        margin-bottom: 11.73403vw !important;
    }
    .mgb-sp--95 {
        margin-bottom: 12.38592vw !important;
    }
    .mgb-sp--100 {
        margin-bottom: 13.03781vw !important;
    }
    .mgb-sp--105 {
        margin-bottom: 13.6897vw !important;
    }
    .mgb-sp--110 {
        margin-bottom: 14.34159vw !important;
    }
    .mgb-sp--115 {
        margin-bottom: 14.99348vw !important;
    }
    .mgb-sp--120 {
        margin-bottom: 15.64537vw !important;
    }
    .mgb-sp--125 {
        margin-bottom: 16.29726vw !important;
    }
    .mgb-sp--130 {
        margin-bottom: 16.94915vw !important;
    }
    .mgb-sp--135 {
        margin-bottom: 17.60104vw !important;
    }
    .mgb-sp--140 {
        margin-bottom: 18.25293vw !important;
    }
    .mgb-sp--145 {
        margin-bottom: 18.90482vw !important;
    }
    .mgb-sp--150 {
        margin-bottom: 19.55671vw !important;
    }
    .mgb-sp--155 {
        margin-bottom: 20.2086vw !important;
    }
    .mgb-sp--160 {
        margin-bottom: 20.8605vw !important;
    }
    .mgb-sp--165 {
        margin-bottom: 21.51239vw !important;
    }
    .mgb-sp--170 {
        margin-bottom: 22.16428vw !important;
    }
    .mgb-sp--175 {
        margin-bottom: 22.81617vw !important;
    }
    .mgb-sp--180 {
        margin-bottom: 23.46806vw !important;
    }
    .mgb-sp--185 {
        margin-bottom: 24.11995vw !important;
    }
    .mgb-sp--190 {
        margin-bottom: 24.77184vw !important;
    }
    .mgb-sp--195 {
        margin-bottom: 25.42373vw !important;
    }
    .mgb-sp--200 {
        margin-bottom: 26.07562vw !important;
    }
    .mgb-sp--205 {
        margin-bottom: 26.72751vw !important;
    }
    .mgb-sp--210 {
        margin-bottom: 27.3794vw !important;
    }
    .mgb-sp--215 {
        margin-bottom: 28.03129vw !important;
    }
    .mgb-sp--220 {
        margin-bottom: 28.68318vw !important;
    }
    .mgb-sp--225 {
        margin-bottom: 29.33507vw !important;
    }
    .mgb-sp--230 {
        margin-bottom: 29.98696vw !important;
    }
    .mgb-sp--235 {
        margin-bottom: 30.63885vw !important;
    }
    .mgb-sp--240 {
        margin-bottom: 31.29074vw !important;
    }
    .mgb-sp--245 {
        margin-bottom: 31.94263vw !important;
    }
    .mgb-sp--250 {
        margin-bottom: 32.59452vw !important;
    }
}
