@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap");

/* 全共通CSS */

html{
    min-height: 100%;
    position: relative;
}

body {
    margin: 0 !important;
    padding: 0;
    width: 100%;
    font-family: "Noto Sans JP", Helvetica, sans-serif;
}

h1, h2, h3, h4, p, a, ul, li {
    margin: 0;
    padding: 0;
    color: #404040;
}

div, span, th, td,
input, select, textarea {
    color: #404040;
}
ol, ul {
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 18px;
}

main {
    padding-bottom: 380px;
}

.topic-path {
    padding: 40px 0 60px 0;
}

.topic-path a {
    text-decoration: none;
    color: #2CAAED;
    font-size: 14px;
    font-weight: 700;
}

.current-item {
    font-size: 14px;
    font-weight: 700;
}

.d-none {
    display: none;
}

.dl-none {
    display: none;
}

.back-home {
    padding: 14px 40px;
    background-color: #404040;
    border-radius: 38px;
    color: #FFF;
    font-size: 18px;
    font-weight: 900;
    text-decoration: none;
}

.back-home:hover {
    opacity: 0.7;
}

/* page-nationのCSS　*/
.pagination {
    margin: 120px 0;
    text-align: center;
}

.pagination a {
    width: 40px;
    height: 40px;
    text-decoration: none;
    color: #404040;
    font-size: 18px;
    font-weight: 900;
}

.pagination span {
    width: 40px;
    height: 40px;
    text-decoration: none;
    color: #404040;
    font-size: 18px;
    font-weight: 900;
}

.pagination .current {
    background-color: #404040;
    color: #fff;
}

.page-numbers {
    display: inline-flex;
    border: 1px solid #404040;
    justify-content: center;
    align-items: center;
    transition: .3s;
    margin: 0 15px;
}

.page-numbers > span {
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.page-numbers:hover {
    background-color: #ddd;
    transition: .3s;
}

.pagination .current:hover {
    background-color: #404040;
    pointer-events: none;
}

/* header css */
.header{
    position: fixed;
    top: 0;
    z-index: 1;
    background: none;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    width: calc(100vw - 20px);
    height: 84px;
    margin: 10px;
    box-sizing: border-box;
    background-color: white;
    border-radius: 5px;
    padding: 0 36px;
    align-items: center;
}

.header-title {
    color: #404040;
    display: block;
    text-decoration: none;
    font-weight: 500;
    font-size: 25px;
    cursor: pointer;
}

.header-menu-wrapper {
    display: flex;
    gap: 20px;
}

.header-title:visited,
.header-title:focus {
    color: #404040;
    text-decoration: none;
}

.header-menu {
    display: flex;
    align-items: center;
}

.header-menu-item {
    padding: 0 16px;
    font-size: 18px;
    position: relative;
    text-decoration: none;
}

.header-menu-item:visited {
    color: #404040;
    text-decoration: none;
}

.header-menu-item:after {
    content: "";
    height: calc(100% - 6px);
    position: absolute;
    top: 3px;
    right: -0.5px;
    border-right: 1px solid #bcbcbc;
}

.header-menu-item:last-child:after {
    border-right: none;
}

.header-language {
    display: flex;
    align-self: center;
}

.header-language > select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: fit-content;
    height: 100%;
    background: url('../img/language.svg') no-repeat;
    background-position: 0;
    padding: 4px 0 4px 28px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
}

.header-language > select:focus {
    border: none;
    outline: none;
}

.hamburger-menu-icon {
    display: none;
}

.hamburger-menu-bg {
    display: none;
}

/* Hero (TopPage の First View) */
.hero {
    width: 100%;
    max-width: 100vw;
    max-height: 100svh;
    overflow: hidden;
    padding: 300px 64px 200px 64px;
    box-sizing: border-box;
    background-clip: border-box;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero h1 {
    color: white;
    font-weight: 500;
    font-size: 27px;
    margin-bottom: 64px;
}

.hero h2 {
    color: white;
    font-weight: 400;
    font-size: 17px;
}

/* パンくずCSS　*/
.bread_crumb a:hover {
    opacity: 60%;
    transition: .3s;
}


/* content */
.content {
    padding-top: 100px;
    display: flex;
    box-sizing: border-box;
}

.content-title {
    width: 300px;
    min-width: 300px;
    text-align: center;
    padding: 36px 0;
    font-weight: 500;
    font-size: 24px;
    position: relative;
}

.content-title:after {
    position: absolute;
    content: "";
    width: 36px;
    height: 2px;
    left: calc(50% - 18px);
    top: 78px;
    background: #404040;
}

.news {
    margin-right: 36px;
    padding: 36px;
    border: solid 1px #bcbcbc;
    width: calc(100% - 300px);
    height: 400px;
    overflow-y: scroll;
}

.news-item {
    padding: 36px 0;
    border-bottom: solid 1px #bcbcbc;
    display: flex;
}

.news-item:first-child {
    padding: 0 0 36px 0;
}

.news-item:last-child {
    border: none;
    padding: 36px 0 0 0;
}

.news-title {
    margin-left: 24px;
}

.link {
    margin-right: 0;
    padding: 0 0 36px 0;
    width: calc(100% - 300px);
}

.link-list {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
}

.link-item {
    width: 378px;
    height: 212px;
}


/* footerのCSS */
footer {
    position: absolute;
    width: calc(100vw - 96px);
    background: #d9d9d9;
    padding: 48px;
    margin-top: 120px;
    bottom: 0;
}

.footer-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-title {
    color: #404040;
    display: block;
    text-decoration: none;
    font-weight: 500;
    font-size: 30px;
    cursor: pointer;
}

.footer-menu {
    display: flex;
    align-items: end;
    gap: 64px;
}

.footer-menu-item {
    font-size: 16px;
    position: relative;
    text-decoration: none;
}

.footer-menu-item:visited {
    color: #404040;
    text-decoration: none;
}

.footer-copyright {
    margin-top: 100px;
    text-align: right;
    color: #7c7c7c;
    font-size: 13px;
}

.footer-copyright p,
.footer-copyright span {
    font-size: 13px;
    color: #7c7c7c;
    font-weight: 400;
}




/* TOPページCSS */

.top {
    margin: 794px 20px 0;
}

.top-main {
    padding-top: 94px!important;
}

.top-container {
    justify-content: space-between;
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
}

.top-container-section {
    margin-bottom: 120px;
}

.top-container-section-title {
    margin-bottom: 20px;
    font-weight: 900;
}

.top-container-wrapper {
    width: 70%;
}

.top-container-side {
    width: 25%;
}

/* 404 page CSS */

.error-page-container {
    width: 95%;
    max-width: 600px;
    margin: 176px auto 120px;
    text-align: center;
}

.error-page-title {
    font-size: 32px;
    font-weight: 900;
}

.error-page-message {
    font-size: 18px;
    font-weight: 900;
    margin: 80px 0;
}

.error-page-message a {
    text-decoration: none;
    color: #2CAAED;
}

.error-page-message a:hover {
    opacity: 80%;
}


/* page */
.page {
    padding: 200px 120px;
    box-sizing: border-box;
}

.page-title {
    color: #404040;
    font-weight: 500;
    font-size: 24px;
    height: fit-content;
    width: fit-content;
    position: relative;
    margin-bottom: 96px;
}
.page-title:after {
    content: "";
    width: 36px;
    height: 2px;
    bottom: -14px;
    left: calc(50% - 18px);
    background: #404040;
    position: absolute;
}

.page-outline {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 14px;
    margin-bottom: 80px;
}

.page-outline-item {
    padding: 24px;
    box-sizing: border-box;
    border: solid 1px #bcbcbc;
}

.page-outline-item:hover {
    background: #bcbcbc;
    color: white;
}
.page-outline-item:hover a,
.page-outline-item:hover span {
    color: white;
}

.page-outline-item:hover a:visited {
    color: white;
}

.page-outline-item a,
.page-outline-item span {
    color: #404040;
    font-weight: 500;
    font-size: 16px;
    text-align: center;
    text-decoration: none;
}

.page-outline-item a:hover {
    text-decoration: none;
}

.page-outline-item a:visited {
    text-decoration: none;
    color: #404040;
}

.page-section {
    margin-bottom: 64px;
}

.page-section-title {
    font-weight: 500;
    font-size: 20px;
}

.page-section-divider {
    width: 100%;
    height: 1px;
    margin-top: 14px;
    background: #bcbcbc;
}

.page-section-spacer {
    margin-top: -64px;
    padding-top: 80px;
}

.page-section-content {
    width: 100%;
    padding: 36px 0;
}

/* member-page CSS */
.investigators {
    display: flex;
    flex-direction: column;
    gap: 36px;
    width: 100%;
}

.investigator {
    display: flex;
    flex-direction: row;
    gap: 64px;
    flex-wrap: wrap;
    align-items: center;
}

.investigator-avatar {
    width: 240px;
    height: 240px;
}

.investigator-avatar > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.investigator-name {
    font-size: 27px;
    font-weight: 500;
    margin-bottom: 10px;
}

.investigator-job {
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 24px;
    color: #7c7c7c;
}

.investigator-job span {
    color: #7c7c7c;
}

.investigator-email {
    font-weight: 400;
    font-size: 16px;
    margin-bottom: 10px;
    color: #7c7c7c;
}

.investigator-url a {
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    color: #1877F2;
}

.investigator-url a:hover {
    text-decoration: underline;
}

.investigator-url a:visited {
    text-decoration: none;
    color: #1877F2;
}

.current_members {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 64px 80px;
}

.current_member {
    width: 200px;
}

.current_member-avatar {
    width: 200px;
    height: 200px;
    margin-bottom: 18px;
}

.current_member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #d9d9d9;
}

.current_member-name {
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 10px;
}

.current_member-job {
    font-weight: 400;
    font-size: 16px;
    color: #7c7c7c;
}

.current_member-job span {
    color: #7c7c7c;
}

.alumni {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 24px 120px;
}

.alumnus {
    width: 200px;
    word-break: break-word;
}

.alumnus-name span {
    font-weight: 500;
    font-size: 18px;
}

/* research-page CSS */
.research-item {
    display: flex;
    gap: 48px;
}

.research-description {
    word-break: break-word;
    width: calc(100% - 408px);
    text-align: left;
}
.research-description p,
.research-description span,
.research-description a {
    text-align: left;
    font-weight: 400;
    font-size: 18px;
}

.research-image {
    width: 360px;
}

.research-image img {
    width: 100%;
    object-fit: cover;
}

/* publication-page CSS */
.publication-content {
    padding-left: 14px;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 14px;
    text-align: left;
}

.publication-content:last-child {
    margin-bottom: 0;
}

.publication-content p,
.publication-content span,
.publication-content a {
    font-weight: 500;
    font-size: 14px;
}


/* contact-page CSS */

table.contact-table {
    width: 100%;
    border-collapse: collapse;
}

.contact-table td {
    padding-bottom: 36px;
}

.contact-table tr:last-child td {
    padding-bottom: 0;
}

.contact-table td,
.contact-table td span,
.contact-table td a,
.contact-table td p {
    font-size: 16px;
    font-weight: 500;
}

.contact-table td:last-child,
.contact-table td:last-child span,
.contact-table td:last-child a,
.contact-table td:last-child p {
    font-size: 14px;
    font-weight: 400;
}

.access-wrapper {
    display: flex;
    box-sizing: border-box;
    gap: 64px;
    margin-bottom: 24px;
}

.access-description {
    width: calc(100% - 544px);
    text-align: left;
}

.access-description h3 {
    font-size: 18px;
    font-weight: 500;
    color: #404040;
    margin: 36px 0 22px 0;
    text-align: left;
}

.access-description h4 {
    font-size: 16px;
    font-weight: 500;
    color: #404040;
    margin: 14px 0;
    text-align: left;
}

.access-description p,
.access-description span,
.access-description a {
    text-align: left;
    font-weight: 400;
    font-size: 14px;
}

.access-image {
    width: 480px;
}

.access-image iframe,
.access-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.contact-container {
    width: 95%;
    max-width: 600px;
    margin: 60px auto;
    text-align: center;
}

.contact-title {
    font-size: 24px;
    font-weight: 900;
    color: #404040;
    margin-bottom: 8px;
    text-align: left;
}

.contact-massage {
    font-size: 18px;
    font-weight: 500;
    color: #404040;
    text-align: left;
}

.contact-reminder {
    font-size: 13px;
    font-weight: 700;
    color: #ee7382;
    margin: 8px 0 60px 0;
    text-align: left;
}

.wpcf7 {
    font-size: 13px;
    font-weight: 900;
    color: #707070;
}

.wpcf7 p {
    text-align: left;
}

.contact-text .wpcf7-form-control {
    width: 578px;
    height: 40px;
    padding: 0 10px;
}

.contact-info .wpcf7-form-control {
    width: 578px;
    height: 260px;
    padding: 10px;
}

.contact-select .wpcf7-form-control {
    width: 600px;
    height: 44px;
    font-size: 13px;
    font-weight: 900;
    border: none;
    padding: 0 10px;
}

.wpcf7-form p {
    margin-bottom: 40px;
}

.contact-transmission .wpcf7-form-control {
    padding: 14px 40px;
    border-radius: 38px;
    cursor: pointer;
    background-color: #404040;
    color: #FFF;
    font-size: 18px;
    font-weight: 900;
    margin-top: 20px;
    border: none;
}

.contact-transmission .wpcf7-form-control:hover {
    opacity: 0.7;
}

.wpcf7-form p #text {
    margin: 20px;
}

.contact-text .wpcf7-form-control {
    border: 1px solid #ACACAC !important;
    border-radius: 5px;
    margin-top: 8px;
}

.contact-select .wpcf7-form-control {
    border: 1px solid #ACACAC !important;
    border-radius: 5px;
    margin-top: 8px;
}

.contact-info .wpcf7-form-control {
    margin-top: 8px;
    border: 1px solid #ACACAC !important;
    border-radius: 5px;
    resize: none;
}

.wpcf7 form.sent .wpcf7-response-output {
    display: none;
}

.wpcf7 form.invalid .wpcf7-response-output {
    border: none;
    font-size: 13px;
    font-weight: 700;
    color: #ee7382;
}

.wpcf7-spinner {
    display: none!important;
    margin: 0!important;
}


/* thanks-page CSS */
.thanks-container {
    width: 95%;
    max-width: 600px;
    margin: 300px auto 80px auto;
    text-align: center;
}

.thanks-title {
    font-size: 34px;
    font-weight: 900;
    color: #404040;
}

.thanks-message {
    font-size: 18px;
    font-weight: 500;
    color: #404040;
    margin-top: 60px;
}

.thanks-back-home {
    margin-top: 100px;
}



/* search-page のCSS　*/

@media (max-width: 799px) {

    /* 全共通CSS */

    body {
        max-width: 799px;
        width: 100%;
        box-sizing: border-box!important;
        z-index: auto;
    }

    main {
        padding-top: 0;
        box-sizing: border-box;
        overflow-x: hidden!important;
    }

    .dl-none {
        display: initial!important;
    }

    .ds-none {
        display: none!important;
    }

    /* header css */
    .header{
        position: fixed;
        top: 0;
        z-index: 10;
        background: none;
    }

    .header-inner {
        display: flex;
        justify-content: space-between;
        width: calc(100vw - 20px);
        height: 50px;
        margin: 10px;
        box-sizing: border-box;
        background-color: white;
        border-radius: 5px;
        padding: 0 16px;
        z-index: 10;
        align-items: center;
    }

    .header-title {
        color: #404040;
        display: block;
        text-decoration: none;
        font-weight: 500;
        font-size: 16px;
        cursor: pointer;
        z-index: 5;
    }

    .header-title:visited,
    .header-title:focus {
        color: #404040;
        text-decoration: none;
    }

    .header-menu {
        display: none;
    }

    .header-menu.active {
        position: fixed;
        display: flex;
        flex-direction: column;
        gap: 20px;
        padding: 80px 0;
        box-sizing: border-box;
        width: calc(100vw - 20px);
        height: calc(100svh - 20px);
        top: 10px;
        left: 10px;
        background: white;
        border-radius: 5px;
        z-index: 0;
        align-items: start;
    }

    .header-menu-item {
        font-weight: 400;
        font-size: 24px;
    }

    .header-menu-item:after {
        display: none;
    }

    .header-language {
        display: flex;
        align-self: center;
        position: relative;
    }

    .header-language:after {
        content: "";
        position: absolute;
        top: calc(50% - 7px);
        right: 0;
        width: 1px;
        height: 14px;
        background: #BCBCBC;
    }

    .header-language > select {
        background: url('../img/language_small.svg') no-repeat;
        background-position: left;
        padding: 4px 20px 4px 28px;
        border-radius: 2px;
        font-size: 10px;
    }

    .hamburger-menu-icon {
        display: block;
        position: relative;
        width: 18px;
        height: 13px;
        align-self: center;
    }

    .hamburger-menu-icon > span {
        display: block;
        width: 18px;
        height: 1px;
        position: absolute;
        background: #404040;
        transition-duration: 0.5s;
    }

    .hamburger-menu-icon > span:nth-child(1) {
        top: 0;
        left: 0;
    }

    .hamburger-menu-icon > span:nth-child(2) {
        top: 6px;
        left: 0;
        opacity: 1;
    }

    .hamburger-menu-icon > span:nth-child(3) {
        top: 12px;
        left: 0;
    }

    .hamburger-menu-icon.active > span:nth-child(1) {
        transform: rotate(45deg) translateY(8px);
        transition-duration: 0.5s;
    }

    .hamburger-menu-icon.active > span:nth-child(2) {
        opacity: 0;
        transition-duration: 0.5s;
    }

    .hamburger-menu-icon.active > span:nth-child(3) {
        transform: rotate(-45deg) translateY(-8px);
        transition-duration: 0.5s;
    }

    .hamburger-menu-bg.active {
        display: block;
        position: fixed;
        width: 100vw;
        height: 100lvh;
        overflow: hidden;
        background: rgba(0,0,0,0.2);
        box-sizing: border-box;
        left: 0;
        right: 0;
        top: 0;
        bottom:0;
        z-index: 5;
    }

    /* Hero (TopPage の First View) */
    .hero {
        width: 100%;
        max-width: 100vw;
        max-height: 100svh;
        overflow: hidden;
        padding: 90px 24px 36px 24px;
        box-sizing: border-box;
        background-clip: border-box;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .hero h1 {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .hero h2 {
        font-size: 14px;
    }

    /* content */
    .content {
        padding: 40px 24px 0 24px;
        flex-direction: column;
        gap: 36px;
    }

    .content:not(:nth-child(1)) {
        margin-top: 24px;
    }

    .content-title {
        width: fit-content;
        min-width: initial;
        padding: 24px 0;
        font-size: 24px;
        text-align: left;
    }

    .content-title:after {
        top: 68px;
    }

    .news {
        margin-right: 0;
        padding: 24px;
        box-sizing: border-box;
        width: 100%;
    }

    .news-item {
        padding: 24px 0;
        border-bottom: solid 1px #bcbcbc;
        display: flex;
        flex-direction: column;
    }

    .news-item:first-child {
        padding: 0 0 24px 0;
    }

    .news-item:last-child {
        border: none;
        padding: 24px 0 0 0;
    }

    .news-title {
        margin-left: 0;
        margin-top: 14px;
    }

    .link {
        margin-right: 0;
        padding: 0 0 100px 0;
        width: 100%;
        box-sizing: border-box;
    }

    .link-list {
        display: flex;
        gap: 36px;
        flex-wrap: wrap;
    }

    .link-item {
        width: calc(100vw - 48px);
        height: auto;
    }

    .link-item iframe,
    .link-item svg {
        width: calc(100vw - 48px);
        height: auto;
        aspect-ratio: 16/9;
    }

    /* footerのCSS */
    footer {
        box-sizing: border-box;
        width: 100vw;
        padding: 36px 20px;
    }

    .footer-nav {
        display: block;
    }

    .footer-menu {
        display: flex;
        align-items: start;
        flex-direction: column;
        gap: 24px;
        margin-top: 48px;
    }

    .footer-copyright {
        margin-top: 48px;
        text-align: left;
    }


    .topic-path {
        padding: 20px 0 20px 0;
    }

    .topic-path a {
        text-decoration: none;
        color: #2CAAED;
        font-size: 11px;
        font-weight: 700;
    }

    .current-item {
        font-size: 11px;
        font-weight: 700;
    }

    /* article-content css */
    .article-title {
        font-size: 14px;
        padding: 14px 0 10px;
    }

    .article-date {
        font-size: 12px;
    }

    /* archive css */
    .archive-title {
        font-size: 18px;
        margin: 0 0 20px;
    }

    /* TOPページ css */
    .top {
        margin: 540px 20px 0!important;
    }

    .top-main {
        padding-top: 85px!important;
    }

    .top-container {
        display: block;
    }

    .top-container-wrapper {
        width: 100%;
    }

    .top-container-section-title {
        font-size: 18px;
    }

    /* single css */
    .single-article-title {
        font-size: 18px;
        font-weight: 900;
        margin: 10px 0 40px 0;
    }

    .single-entry-date {
        font-size: 14px;
    }

    .single-entry-content h2 {
        font-size: 16px;
        font-weight: 900;
        margin: 80px 0 20px 0;
    }

    .single-article-section-content h2 {
        padding-left: 20px!important;
    }

    .single-article-section-content h2::before {
        width: 6px;
        height: 36px;
    }

    .single-entry-content p {
        font-size: 14px;
    }

    .single-related-post-container {
        gap: 60px;
    }

    .single-related-post h3 {
        font-size: 18px;
    }

    /* page CSS */

    .page {
        padding: 100px 24px;
    }

    .page-title {
        font-size: 20px;
        margin-bottom: 62px;
    }

    .page-title:after {
        bottom: -12px;
    }

    .page-outline {
        gap: 10px;
        margin-bottom: 48px;
    }

    .page-outline-item {
        padding: 13.5px;
    }

    .page-outline-item a,
    .page-outline-item span {
        font-size: 13px;
    }

    .page-section {
        margin-bottom: 40px;
    }

    .page-section-title {
        font-size: 18px;
    }

    .page-section-divider {
        margin-top: 12px;
    }

    .page-section-content {
        padding: 24px 0;
    }

    /* member-page CSS */
    .investigators {
        gap: 24px;
    }

    .investigator {
        flex-direction: column;
        gap: 24px;
        align-items: start;
    }

    .investigator-avatar {
        width: 180px;
        height: 180px;
    }

    .investigator-name {
        font-size: 20px;
        margin-bottom: 7px;
    }

    .investigator-job {
        font-size: 14px;
    }

    .investigator-email {
        font-size: 12px;
        margin-bottom: 7px;
    }

    .investigator-url a {
        font-size: 12px;
    }

    .current_members {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 48px 14px;
    }

    .current_member {
        width: calc(50vw - 31px);
        max-width: 200px;
    }

    .current_member-avatar {
        width: calc(50vw - 31px);
        height: calc(50vw - 31px);
        max-width: 200px;
        max-height: 200px;
    }

    .current_member-name {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .alumni {
        gap: 14px;
    }

    .alumnus {
        width: calc(50vw - 31px);
    }

    .alumnus-name span {
        font-size: 14px;
    }

    /* research-page CSS */

    .research-item {
        display: flex;
        flex-direction: column-reverse;
        gap: 24px;
    }

    .research-description {
        word-break: break-word;
        width: 100%;
        text-align: left;
    }
    .research-description p,
    .research-description span,
    .research-description a {
        text-align: left;
        font-weight: 400;
        font-size: 18px;
    }

    .research-image {
        width: auto;
        max-width: 100%;
    }

    .research-image img {
        width: calc(100% - 28px);
        padding: 0 14px;
        object-fit: cover;
    }

    /* contact css */

    .contact-table td:last-child {
        padding-left: 24px;
    }

    .access-wrapper {
        flex-direction: column-reverse;
        gap: 24px;
        margin-bottom: 48px;
    }

    .access-description {
        width: 100%;
    }

    .access-description h3 {
        font-size: 18px;
        font-weight: 500;
        color: #404040;
        margin: 0 0 6px 0;
        text-align: left;
    }

    .access-description h4 {
        font-size: 16px;
        font-weight: 500;
        color: #404040;
        margin: 18px 0 14px 0;
        text-align: left;
    }

    .access-description p,
    .access-description span,
    .access-description a {
        text-align: left;
        font-weight: 400;
        font-size: 14px;
    }

    .access-image {
        width: 100%;
    }

    .access-image iframe,
    .access-image img {
        width: 100%;
        height: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
    }

    .contact-container {
        margin: 40px auto;
    }

    .contact-massage {
        font-size: 15px;
    }

    .contact-text .wpcf7-form-control {
        width: calc(100% - 22px);
    }

    .contact-select .wpcf7-form-control {
        width: 100%;
    }

    .contact-info .wpcf7-form-control {
        width: calc(100% - 22px);
    }

    /* thanks css */
    .thanks-title {
        font-size: 24px;
    }

    .thanks-message {
        font-size: 15px;
    }
}


