html,
body {
    font-family: "georgiapro", "noto-serif", serif;
    font-style: normal;
    font-weight: 400;
    font-size: 16px; font-size: 4.266vw;
    line-height: 2;
}
body {
    margin: 0;
    padding-top: 4.375rem;
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}
a {
    color: inherit;
    text-decoration: none;
}
strong {
    font-weight: 900;
}

.wrapper {
    max-width: 1280px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 20px; padding-right: 1.25rem;
    padding-left: 20px; padding-left: 1.25rem;
}
.myriad-black {
    font-family: "myriad-pro", sans-serif;
    font-weight: 900;
    font-style: normal;
}

@media (any-hover: hover)
{
    a img {
        transition: opacity .2s;
    }
    a:hover img {
        opacity: 0.8;
    }
}

@media screen and (min-width: 480px)
{
    html,
    body {
        font-size: 20px;
    }
}

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

@media screen and (min-width: 768px)
{
    html,
    body {
        font-size: 1.25vw;
    }
    body {
        padding-top: 0;
    }
    .wrapper {
        padding-right: 2.5rem;
        padding-left: 2.5rem;
    }
    .sp-only {
        display: none;
    }
}

@media screen and (min-width: 1280px)
{
    html,
    body {
        font-size: 16px;
    }
}




#header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
}

#header-primary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    height: 4.375rem;
    border-bottom: solid 1px #000;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

#header-primary-logo {
    width: 8.375rem;
    margin: 0;
}
#header-primary-logo a {
    display: block;
}


#header-primary-language-selector {
    display: flex;
    justify-content: center;
    font-size: 0.75rem;
    letter-spacing: 0.0625em;
    gap: 0.25em;
    margin: 0 3.5rem 0 0;
    padding: 0;
}
#header-primary-language-selector li+li::before {
    content: "/";
}
#header-primary-language-selector li {
    display: flex;
    gap: 0.25em;
}
#header-primary-language-selector li a {
    display: block;
    position: relative;
}

#header-primary-university-logo {
    display: none;
}

#nav-toggle {
    display: block;
    width: 2.875rem;
    height: 2.875rem;
    border: solid 1px #000;
    border-radius: 50%;
    background-color: #fff;
    color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0.625rem;
    margin: auto 0;
    cursor: pointer;
    -webkit-transition: background-color .2s;
    transition: background-color .2s;
}
#nav-toggle::before,
#nav-toggle::after {
    content: "";
}
#nav-toggle > span,
#nav-toggle::before,
#nav-toggle::after {
    display: block;
    width: 1.25rem;
    height: 0.2rem;
    background-color: #000;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    -webkit-transition: .2s;
    transition: .2s;
}
#nav-toggle::before {
    top: -0.8rem;
}
#nav-toggle::after {
    bottom: -0.8rem;
}
.nav-open #nav-toggle {
    background-color: #000;
}
.nav-open #nav-toggle::before {
    background-color: #fff;
    top: 0;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
}
.nav-open #nav-toggle::after {
    background-color: #fff;
    bottom: 0;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.nav-open #nav-toggle > span {
    background-color: #fff;
    width: 0;
}

#header-secondary {
    position: fixed;
    top: 4.375rem;
    width: 100%;
    height: calc(100vh - 4.375rem);
    background-color: #fff;
    z-index: 1;
    overflow: auto;
}

#header-secondary-navigation {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 3.3125rem;
    padding-bottom: 3.3125rem;
    letter-spacing: 0.025em;
}

#header-secondary-language-selector {
    display: flex;
    justify-content: center;
    font-size: 1.875rem;
    letter-spacing: 0.0667em;
    gap: 0.1333em;
    margin: 0;
    padding: 3.25rem 0 0rem 0;
}
#header-secondary-language-selector li+li::before {
    content: "/";
}
#header-secondary-language-selector li {
    display: flex;
    gap: 0.1333em;
}
#header-secondary-language-selector li a {
    display: block;
    position: relative;
}

@media screen and (max-width: 767px)
{
    #header-secondary {
        pointer-events: none;
        opacity: 0;
        -webkit-transition: opacity .2s;
        transition: opacity .2s;
    }
    .nav-open #header-secondary {
        pointer-events: all;
        opacity: 1;
    }

    #header-secondary-language-selector {
        -webkit-transition: transform .4s;
        transition: transform .4s;
        -webkit-transform: translate(0, -1rem);
        transform: translate(0, -1rem);
    }
    .nav-open #header-secondary-language-selector {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }

    #header-primary::before,
    #header-primary::after {
        content: "";
        display: block;
        background: #000;
        clip-path: polygon(50% 0, 100% 100%, 0 100%);
        position: absolute;
        z-index: 2;
        -webkit-transform-origin: bottom;
        transform-origin: bottom;
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transition: transform .2s;
        transition: transform .2s;
    }
    #header-primary::before {
        height: calc(tan(60deg) * calc(0.5rem + 2px) / 2);
        width: calc(0.5rem + 2px);
        background-color: #000;
        bottom: -1px;
        right: 1.75rem;
    }
    #header-primary::after {
        height: calc(calc(tan(60deg) * 0.5rem / 2) + 1px);
        width: 0.5rem;
        background-color: #fff;
        bottom: -2px;
        right: calc(1.75rem + 1px);
    }
    .nav-open #header-primary::before,
    .nav-open #header-primary::after {
        transform: scale(1);
    }

    #header-secondary-navigation li {
        -webkit-transition: transform .4s;
        transition: transform .4s;
    }
    #header-secondary-navigation li:nth-of-type(odd) {
        -webkit-transform: translate(-1rem, 0);
        transform: translate(-1rem, 0);
    }
    #header-secondary-navigation li:nth-of-type(even) {
        -webkit-transform: translate(1rem, 0);
        transform: translate(1rem, 0);
    }
    .nav-open #header-secondary-navigation li {
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
    }
}

@media screen and (min-width: 768px)
{
    #header {
        position: relative;
    }
    #header-primary {
        padding-top: 2rem;
        padding-bottom: 2rem;
        height: 8.75rem;
        border-bottom: none;
    }
    #header-primary-logo {
        width: 23.125vw;
        max-width: 296px;
    }
    #header-primary-language-selector {
        font-size: 1.5rem;
        margin-right: 0;
    }
    #header-primary-university-logo {
        display: block;
        width: 16.09375vw;
        max-width: 206px;
        margin: 0;
    }
    #header-primary-university-logo a {
        display: block;
    }
    #nav-toggle {
        display: none;
    }

    #header-secondary {
        position: relative;
        top: auto;
        height: auto;
        overflow: visible;
        border-style: solid;
        border-color: rgba(0,0,0,0.75);
        border-width: 1px 0;
    }
    #header-secondary-navigation {
        flex-direction: row;
        align-items: stretch;
        justify-content: center;
        gap: 0;
        padding-top: 0;
        padding-bottom: 0;
        font-size: 1.25rem;
        letter-spacing: 0;
    }
    #header-secondary-navigation li {
        position: relative;
        flex-basis: calc(100% / 7);
        border-right: solid 1px rgba(0,0,0,0.75);
    }
    #header-secondary-navigation li:first-of-type {
        border-left: solid 1px rgba(0,0,0,0.75);
    }
    #header-secondary-navigation li.current::before,
    #header-secondary-navigation li.current::after {
        content: "";
        display: block;
        background: #000;
        clip-path: polygon(50% 0, 100% 100%, 0 100%);
        position: absolute;
        right: 0;
        left: 0;
        margin: 0 auto;
        z-index: 2;
    }
    #header-secondary-navigation li.current::before {
        height: calc(tan(60deg) * calc(1rem + 2px) / 2);
        width: calc(1rem + 2px);
        background-color: #000;
        bottom: -1px;
    }
    #header-secondary-navigation li.current::after {
        height: calc(tan(60deg) * 1rem / 2);
        width: 1rem;
        background-color: #fff;
        bottom: -1px;
    }
    #header-secondary-navigation li a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(6.875rem - 2px);
    }
    #header-secondary-navigation .current a {
        background-color: #898989;
        color: #fff;
        pointer-events: none;
    }

    #header-secondary-language-selector  {
        display: none;
    }
}

@media screen and (min-width: 768px) and (any-hover: hover)
{
    #header-primary-language-selector li a::before {
        content: "";
        display: block;
        width: 0;
        height: 0.15rem;
        background-color: #000;
        position: absolute;
        right: 0;
        left: 0;
        bottom: 0.5rem;
        margin: 0 auto;
        opacity: 0;
        -webkit-transition: .2s;
        transition: .2s;
    }
    #header-primary-language-selector li a:hover::before {
        width: 100%;
        opacity: 1;
    }

    #header-secondary-navigation li a {
        -webkit-transition: background-color .2s;
        transition: background-color .2s;
    }
    #header-secondary-navigation li a:hover {
        background-color: #eee;
    }
}




#main {
    min-height: calc(100vh - 7.5rem);
}

#breadcrumbs ul {
    display: flex;
    margin: 0;
    padding: 1.25rem 0;
    font-size: 0.75rem;
    white-space: nowrap;
    overflow: auto;
}
#breadcrumbs ul li+li {
    position: relative;
    padding-left: 1.25em;
}
#breadcrumbs ul li+li::before {
    content: "";
    display: block;
    width: 0.5em;
    height: 0.5em;
    border: solid 1px #000;
    border-width: 1px 1px 0 0;
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0.3em;
    margin: auto 0;
}
#breadcrumbs ul li.current {
    pointer-events: none;
}

#lower-main {
    position: relative;
    border-top: solid 1px #000;
    margin-right: -0.625rem;
    margin-left: -0.625rem;
    padding-right: 0.625rem;
    padding-left: 0.625rem;
}
#lower-main::before {
    content: "";
    display: block;
    width: 3.125rem;
    height: 0.3125rem;
    background-color: #000;
    position: absolute;
    top: 0;
    left: 0;
}
#lower-side {
    display: none;
}

@media screen and (min-width: 768px)
{
    #main {
        min-height: calc(100vh - 21.875rem);
    }

    #breadcrumbs ul {
        font-size: 1rem;
        padding: 5.75rem 0;
    }

    .lower-wrapper {
        display: flex;
        align-items: flex-start;
    }
    #lower-main {
        flex-basis: 820px;
        margin-right: 0;
        margin-left: 0;
        padding-right: 2.5rem;
        padding-left: 1.25rem;
    }
    #lower-main::before {
        width: 6.25rem;
        height: 0.625rem;
    }
    #lower-main.wide {
        flex-basis: 100%;
        padding-right: 1.25rem;
    }
    #lower-side {
        display: block;
        flex-basis: 380px;
        border-left: solid 1px #000;
        border-bottom: solid 1px #000;
        margin-bottom: -1px;
    }
}





#lower-update-information {
    display: none;
}

@media screen and (min-width: 768px)
{
    #lower-update-information {
        position: relative;
        display: block;
        padding-left: 2.5rem;
        padding-right: 1.25rem;
        border-top: solid 1px #000;
        flex-basis: 380px;
    }
    #lower-update-information::before {
        content: "";
        display: block;
        width: 6.25rem;
        height: 0.625rem;
        background-color: #000;
        position: absolute;
        top: 0;
        left: 0;
    }
    #lower-update-information-title {
        font-size: 2rem;
        font-weight: 700;
        line-height: 1.125;
        margin: 0;
        padding-top: 3.75rem;
    }
    #lower-update-information-list {
        margin: 0;
        padding: 3.125rem 0;
    }
    .lower-update-information-article {
        padding: 0.5rem 0;
    }
    .lower-update-information-article > a {
        position: relative;
        display: block;
    }
    .lower-update-information-article-update {
        display: block;
        line-height: 1;
    }
    .lower-update-information-article-title {
        display: block;
        font-weight: 700;
    }
}


@media screen and (min-width: 768px) and (any-hover: hover)
{
    .lower-update-information-article a::before {
        content: "";
        display: block;
        width: calc(100% + 1.5625rem);
        height: calc(100% + 0.78125rem);
        background-color: rgba(0,0,0,0.05);
        position: absolute;
        top: -0.78125rem;
        left: -0.78125rem;
        z-index: -1;
        opacity: 0;
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
        -webkit-transition: .2s;
        transition: .2s;
    }
    .lower-update-information-article a:hover::before {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}





.pager {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
    margin: 0;
    padding: 0;
}
.pager li a,
.pager li span {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    white-space: nowrap;
    width: 2rem;
    height: 2rem;
}
.pager li a {
    border: solid 1px #000;
}
.pager li span {
    color: #ddd;
    border: solid 1px #ddd;
}
.pager li a.current {
    font-weight: 700;
    background-color: #000;
    color: #fff;
    pointer-events: none;
}

@media screen and (min-width: 768px)
{
    .pager {
        gap: 0.25rem;
    }
    .pager li a,
    .pager li span {
        font-size: 0.875rem;
        width: 2.25rem;
        height: 2.25rem;
    }
}

@media screen and (min-width: 768px) and (any-hover: hover) {
    .pager li a {
        transition: .2s;
    }
    .pager li a:not(.current):hover {
        background-color: #eee;
    }
}





@media screen and (max-width: 767px)
{
    #pagetop {
        width: 5.6875rem;
        height: 6.375rem;
        margin: 0 auto 1.875rem auto;
    }
    #pagetop-link {
        position: relative;
        display: block;
        width: 200%;
        height: 200%;
        transform-origin: top left;
        transform: scale(0.5);
    }
    #pagetop-link::before,
    #pagetop-link::after {
        content: "";
        display: block;
        position: absolute;
        right: 0;
        left: 0;
        margin: 0 auto;
    }
    #pagetop-link::before {
        top: 1.625rem;
        width: 7.875rem;
        height: 7.875rem;
        border: solid 1px #000;
        border-width: 1px 1px 0 0;
        transform: rotate(-45deg);
    }
    #pagetop-link::after {
        top: 0;
        width: 1px;
        height: 9.25rem;
        background-color: #000;
        transform-origin: top left;
    }
    #pagetop-link-text {
        display: block;
        width: 9.375rem;
        line-height: 1;
        position: absolute;
        right: 0;
        left: 0;
        bottom: 0;
        margin: 0 auto;
    }
    #pagetop-link-text::before {
        content: "";
        display: block;
        width: 1.375rem;
        height: 1.375rem;
        background-color: #000;
        border-radius: 50%;
        position: absolute;
        right: 0;
        left: 0;
        bottom: 2.75rem;
        margin: 0 auto;
    }
}

@media screen and (min-width: 768px)
{
    #pagetop {
        display: none;
    }
}





.wysiwyg {}
.wysiwyg h3 {
    font-size: 1.5rem;
    line-height: 1.667;
    font-weight: 900;
    margin: 0;
}
.wysiwyg *+h3 {
    margin-top: 2rem;
}
.wysiwyg p {
    margin: 0;
}
.wysiwyg p+p {
    margin-top: 1rem;
}

.wysiwyg ul,
.wysiwyg ol {
    margin: 0;
    padding: 0;
}
.wysiwyg ol {
    counter-reset: order-list-count;
    list-style-type: none;
}
.wysiwyg ol li {
    position: relative;
    padding-left: 2rem;
}
.wysiwyg ol li::before {
    counter-increment: order-list-count;
    content: counter(order-list-count, decimal-leading-zero) ".";
    display: block;
    width: 2rem;
    position: absolute;
    top: 0;
    left: 0;
}
.wysiwyg a {
    color: #3282d3;
    text-decoration: underline;
}
.wysiwyg hr {
    margin: 2rem 0;
    padding: 0;
    border: dashed 1px #999;
    border-width: 1px 0 0 0;
}

@media screen and (max-width: 767px)
{
    .wysiwyg img {
        width: 100%!important;
        max-width: 100%!important;
        height: auto!important;
    }
}

@media screen and (min-width: 768px)
{
}





#footer {
    position: relative;
    z-index: 1;
    border-top: solid 1px #000;
    min-height: 3.125rem;
}
#footer-navigation-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.625rem;
    padding-bottom: 0.625rem;
    height: 100%;
}

#footer-university-logo {
    width: 6.4375rem;
    margin: 0;
}
#footer-university-logo a {
    display: block;
    line-height: 1;
}

#footer-navigation {
    display: none;
}

#footer-navigation-copyright {
    font-size: 0.875rem;
    margin: 0;
}

@media screen and (max-width: 767px)
{
    #footer-navigation-container {
        padding-right: 0.625rem;
        padding-left: 0.625rem;
    }
    #footer-navigation-copyright {
        -webkit-transform-origin: right;
        transform-origin: right;
        -webkit-transform: scale(0.5);
        transform: scale(0.5);
    }
}

@media screen and (min-width: 768px)
{
    #footer {
        min-height: 6.25rem;
    }
    #footer-university-logo {
        display: none;
    }
    #footer-navigation-container {
        padding-top: 0;
        padding-bottom: 0;
    }
    #footer-navigation {
        display: flex;
        align-items: center;
        gap: 6rem; gap: 4.375rem;
        margin: 0;
        padding: 1em 0;
        min-height: calc(6.25rem - 1px);
    }
    #footer-navigation li a {
        position: relative;
        z-index: 1;
    }
}

@media screen and (min-width: 768px) and (any-hover: hover) {
    #footer-navigation li a::before {
        content: "";
        display: block;
        width: 0;
        height: 0.1em;
        background-color: #000;
        position: absolute;
        right: 0;
        left: 0;
        bottom: -0.2em;
        margin: 0 auto;
        z-index: 1;
        opacity: 1;
        transition: .2s;
    }
    #footer-navigation li a:hover::before {
        width: 100%;
        opacity: 1;
    }
}
