@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
}
body {
    line-height: 1
}
ol, ul {
    list-style: none
}
blockquote, q {
    quotes: none
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none
}
table {
    border-collapse: collapse;
    border-spacing: 0
}
.pc-only {
    display: block
}
@media screen and (max-width: 767px) {
    .pc-only {
        display: none
    }
}
.sp-only {
    display: none
}
@media screen and (max-width: 767px) {
    .sp-only {
        display: block
    }
}
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}
html {
    font-size: 18px
}
@media screen and (max-width: 767px) {
    html {
        font-size: 14px
    }
}
body {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
    line-height: 1.6;
    color: #333;
    background: #fff;
    letter-spacing: 0.1rem
}
img {
    max-width: 100%;
    height: auto
}
a {
    text-decoration: none;
    color: inherit
}
sup {
    vertical-align: super;
    font-size: smaller
}
small {
    font-size: 0.8rem
}
strong {
    font-weight: 500
}
.scroll-prevent {
    z-index: -1;
    width: 100%;
    height: 100%;
    overflow: hidden
}
.container {
    width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative
}
@media screen and (max-width: 1024px) {
    .container {
        padding: 0 30px;
        width: 100%;
        max-width: none;
        min-width: 0
    }
}
header {
    background: #fff;
    border-top: 6px solid #333;
    border-bottom: 1px solid #ccc;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000
}
header .rayout {
    position: relative;
    padding: 0px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center
}
@media screen and (max-width: 1024px) {
    header .rayout {
        display: block;
        padding: 25px 30px
    }
}
header .rayout .logo {
    width: 100%;
    min-width: 420px
}
@media screen and (max-width: 1024px) {
    header .rayout .logo {
        min-width: auto
    }
}
header .rayout .logo a {
    display: flex;
    justify-content: flex-start;
    align-items: center
}
header .rayout .logo a img {
    width: 120px
}
@media screen and (max-width: 1024px) {
    header .rayout .logo a img {
        width: 80px
    }
}
header .rayout .logo a span {
    padding-left: 20px;
    font-size: 1.8rem;
    font-weight: 600
}
@media screen and (max-width: 1024px) {
    header .rayout .logo a span {
        font-size: 1.4rem
    }
}
header .rayout .global-nav {
    width: 100%
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav {
        position: fixed;
        top: 83px;
        left: 0;
        opacity: 0;
        background: #F6F5F3;
        height: calc(100svh - 83px);
        overflow-y: scroll;
        pointer-events: none
    }
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .sub-menu {
        display: none
    }
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .sub-menu.is-open {
        display: block !important
    }
}
header .rayout .global-nav .submenu-toggle {
    display: none
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .submenu-toggle {
        display: block;
        cursor: pointer;
        font-weight: bold;
        position: absolute;
        top: 30px;
        left: 10px;
        font-size: 1.2rem;
        width: 30px;
        height: 30px;
        text-align: center;
        color: #fff;
        background: #333;
        border-radius: 50%;
        line-height: 1.3;
        letter-spacing: normal
    }
}
@media screen and (max-width: 767px) {
    header .rayout .global-nav .submenu-toggle {
        line-height: 1.7
    }
}
header .rayout .global-nav .main-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    justify-content: space-between;
    width: 100%
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu {
        flex-wrap: wrap;
        display: none
    }
}
header .rayout .global-nav .main-menu>li {
    width: 25%;
    max-width: 200px;
    min-width: 150px;
    position: relative
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu>li {
        width: 100%;
        max-width: none;
        min-width: auto
    }
}
header .rayout .global-nav .main-menu>li::before {
    content: "";
    display: block;
    transition: width 0.3s ease;
    background: #333;
    width: 0%;
    height: 6px;
    position: absolute;
    bottom: 0
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu>li::before {
        display: none
    }
}
header .rayout .global-nav .main-menu>li::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    border-top: 6px solid #333;
    border-bottom: 0;
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translate(-50%, 0%);
    z-index: 1001;
    opacity: 0;
    transition: bottom 0.3s ease, opacity 0.3s ease
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu>li::after {
        display: none
    }
}
header .rayout .global-nav .main-menu>li:last-child .gnavi a::after {
    content: "";
    display: block;
    width: 1px;
    height: 50px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translate(0%, -50%);
    background: #ccc
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu>li:last-child .gnavi a::after {
        display: none
    }
}
header .rayout .global-nav .main-menu>li .gnavi {
    cursor: pointer
}
header .rayout .global-nav .main-menu>li .gnavi a {
    text-align: center;
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 35px 0;
    position: relative;
    pointer-events: none
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu>li .gnavi a {
        border-bottom: 1px solid #ccc;
        pointer-events: auto
    }
}
header .rayout .global-nav .main-menu>li .gnavi a::before {
    content: "";
    display: block;
    width: 1px;
    height: 50px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0%, -50%);
    background: #ccc
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu>li .gnavi a::before {
        content: "";
        display: block;
        width: 20px;
        height: 20px;
        background: url("../image/common/icon_link.svg") no-repeat;
        background-size: contain;
        background-position: center;
        position: absolute;
        left: auto;
        right: 5px;
        top: 50%;
        transform: translate(0%, -50%);
        transition: right 0.3s ease
    }
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu>li .gnavi a.no-link::before {
        display: none
    }
}
header .rayout .global-nav .main-menu>li .mega-menu {
    opacity: 0.0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    display: flex;
    position: fixed;
    top: 108px;
    left: 0;
    width: 100%;
    min-width: 1150px;
    background: #fff;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    padding: 60px;
    flex-wrap: nowrap;
    align-items: flex-start
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu>li .mega-menu {
        opacity: 1;
        pointer-events: auto;
        position: static;
        min-width: auto;
        padding: 0;
        flex-wrap: wrap;
        background: none;
        box-shadow: none;
        background: #EDECEB
    }
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu>li .mega-menu.sub-menu {
        display: none
    }
}
header .rayout .global-nav .main-menu>li .mega-menu .menu-heading {
    width: 30%;
    flex-shrink: 0;
    font-weight: 500;
    font-size: 1.7rem;
    text-align: right
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu>li .mega-menu .menu-heading {
        display: none
    }
}
header .rayout .global-nav .main-menu>li .mega-menu .menu-heading a {
    position: relative
}
header .rayout .global-nav .main-menu>li .mega-menu .menu-heading a::before {
    content: "";
    display: block;
    transition: width 0.3s ease;
    background: #333;
    width: 0%;
    height: 6px;
    position: absolute;
    bottom: -10px;
    left: 0
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu>li .mega-menu .menu-heading a::before {
        display: none
    }
}
header .rayout .global-nav .main-menu>li .mega-menu .menu-heading a:hover::before {
    width: 100%
}
header .rayout .global-nav .main-menu>li .mega-menu .menu-main {
    width: 70%;
    padding-left: 60px;
    margin-left: 60px;
    border-left: 1px solid #ccc
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu>li .mega-menu .menu-main {
        width: 100%;
        padding-left: 0;
        margin-left: 0;
        border: none
    }
}
header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul {
    display: flex;
    gap: 3rem
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul {
        flex-wrap: wrap;
        gap: 0
    }
}
header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul li.passive {
    pointer-events: none
}
header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul>li {
    width: 33.3333%
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul>li {
        width: 100%;
        position: relative
    }
}
header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul>li>a {
    display: block;
    font-size: 1.0rem;
    font-weight: 500;
    padding: 20px 0;
    padding-right: 1.2rem;
    position: relative
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul>li>a {
        text-align: center;
        padding-right: 0
    }
}
header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul>li>a::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url("../image/common/icon_link.svg") no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translate(0%, -50%);
    transition: right 0.3s ease
}
header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul>li>a::after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 1px;
    background: #ccc;
    transition: width 0.3s ease
}
header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul>li>a:hover::before {
    right: 0
}
header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul>li>a:hover::after {
    animation: underline 0.3s ease
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul>li .submenu-toggle {
        top: 15px
    }
}
header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul>li ul {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 0 2rem;
    width: 100%
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul>li ul {
        letter-spacing: 0
    }
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul>li ul.sub-menu {
        display: none;
        background: #E0DEDC;
        gap: 0;
        padding-top: 0
    }
}
header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul>li ul li {
    width: calc(50% - 2rem)
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul>li ul li {
        display: inline-block;
        width: 49.5%;
        letter-spacing: 0
    }
}
header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul>li ul li a {
    padding: 10px 0;
    position: relative;
    font-size: 1.0rem;
    display: block
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul>li ul li a {
        text-align: center
    }
}
header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul>li ul li a::after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    bottom: 0;
    height: 1px;
    background: #ccc;
    transition: width 0.3s ease
}
header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul>li ul li a:hover::after {
    animation: underline 0.3s ease
}
header .rayout .global-nav .main-menu>li .mega-menu .menu-main>ul>li.pdf>a::before {
    background: url("../image/common/icon_blank.svg") no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translate(0%, -50%)
}
header .rayout .global-nav .main-menu>li .mega-menu.two-column .menu-main>ul>li {
    width: 50%
}
@media screen and (max-width: 1024px) {
    header .rayout .global-nav .main-menu>li .mega-menu.two-column .menu-main>ul>li {
        width: 100%
    }
}
header .rayout .global-nav .main-menu>li:hover::before {
    width: 100%
}
header .rayout .global-nav .main-menu>li.open::before {
    width: 100%
}
header .rayout .global-nav .main-menu>li.open::after {
    opacity: 1;
    bottom: -6px
}
header .rayout .global-nav .main-menu>li.open .mega-menu {
    opacity: 1;
    pointer-events: auto
}
header .btn_menu {
    display: none;
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 43px;
    z-index: 9999;
    transition: all 0.2s ease;
    background: rgba(0, 0, 0, 0.9);
    padding: 10px;
    border-radius: 5px
}
@media screen and (max-width: 1024px) {
    header .btn_menu {
        display: block
    }
}
header .btn_menu::before {
    content: " ";
    width: 50px;
    height: 43px;
    position: absolute;
    right: 0px;
    top: 0px;
    background: rgba(176, 147, 195, 0);
    transition: all 0.2s ease;
    z-index: -1
}
header .btn_menu span {
    display: block;
    background: #fff;
    height: 3px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    margin-top: 10px
}
header .btn_menu span::before {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: #fff;
    top: 10px;
    right: 10px;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease
}
header .btn_menu span::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background: #fff;
    bottom: 10px;
    right: 10px;
    -moz-transition: all 0.2s ease;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease
}
header.active .btn_menu span {
    background: none !important
}
header.active .btn_menu span::before {
    -moz-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    top: 19px;
    right: 10px;
    background: #fff !important
}
header.active .btn_menu span::after {
    -moz-transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    bottom: 21px;
    right: 10px;
    background: #fff !important
}
header.active .rayout nav.global-nav {
    opacity: 1;
    pointer-events: visible;
    overscroll-behavior: contain
}
@media screen and (max-width: 1024px) {
    header.active .rayout nav.global-nav>ul.main-menu {
        display: flex
    }
}
header.active .rayout nav.global-nav>ul.main-menu>li ul {
    opacity: 1 !important;
    pointer-events: visible !important;
    position: static;
    width: 100% !important
}
.hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100svh;
    overflow: hidden;
    z-index: -1
}
@media screen and (max-width: 767px) {
    .hero::before {
        content: "";
        display: block;
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(0, 0, 0, 0.2);
        z-index: 3
    }
}
.hero picture {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s linear;
    z-index: 1;
    backface-visibility: hidden;
    will-change: opacity, transform;
    animation: none
}
.hero picture img {
    width: 100%;
    height: 100%;
    object-fit: cover
}
.hero picture.active {
    animation: zoom 8s linear forwards;
    opacity: 1;
    z-index: 2
}
.hero .hero-text {
    position: absolute;
    top: 50%;
    right: 5%;
    z-index: 3
}
@media screen and (max-width: 767px) {
    .hero .hero-text {
        top: auto;
        bottom: 8%;
        right: auto;
        left: 5%
    }
}
.hero .hero-text h1 {
    color: #fff;
    font-size: 3.6rem;
    font-weight: 500
}
@media screen and (max-width: 767px) {
    .hero .hero-text h1 {
        font-size: 3.5rem
    }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
    .hero .hero-text h1 {
        font-size: 2.5rem
    }
    .hero .hero-text h1 .sp-only {
        display: none !important
    }
}
.hero-placeholder {
    height: 100svh
}
main {
    background: #fff;
    position: relative;
    z-index: 10;
    line-height: 2
}
main#top::before {
    content: "";
    display: block;
    background: #F6F5F3;
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 20svh;
    z-index: -1
}
main#top section {
    padding: 120px 0
}
main#top h2 {
    font-size: 3.6rem;
    font-weight: 500;
    margin-bottom: 60px;
    position: relative;
    padding-top: 30px
}
@media screen and (max-width: 767px) {
    main#top h2 {
        font-size: 3rem
    }
}
main#top h2 span {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
    font-size: 1.5rem;
    font-weight: 300;
    color: #999;
    display: block;
    padding-bottom: 0px
}
main#top h2::before {
    content: "";
    display: block;
    background: #999;
    width: 20px;
    height: 1px;
    position: absolute;
    top: 0px;
    left: 0
}
main#top #news {
    padding-bottom: 240px
}
main#top #news .container .news-list {
    height: 350px;
    overflow-y: scroll;
    padding: 0 100px
}
@media screen and (max-width: 767px) {
    main#top #news .container .news-list {
        height: 450px;
        padding: 0
    }
}
main#top #news .container .news-list dl {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #ccc
}
@media screen and (max-width: 767px) {
    main#top #news .container .news-list dl {
        flex-direction: column
    }
}
main#top #news .container .news-list dl dd {
    padding-left: 40px
}
@media screen and (max-width: 767px) {
    main#top #news .container .news-list dl dd {
        padding-left: 0
    }
}
main#top #news .container .news-list dl dd a {
    position: relative
}
main#top #news .container .news-list dl dd a::before {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #333;
    position: absolute;
    left: 0;
    bottom: -5px
}
main#top #news .container .news-list dl dd a:hover::before {
    animation: underline 0.3s ease
}
main#top #overview {
    background-image: url("../image/top/overview_bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative
}
main#top #overview::before {
    content: "";
    height: 100px;
    width: 1px;
    background: #ccc;
    display: block;
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%)
}
main#top #overview::after {
    content: "";
    height: 100px;
    width: 1px;
    background: #fff;
    display: block;
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%)
}
main#top #overview .container h2 {
    color: #fff;
    text-align: center
}
main#top #overview .container h2 span {
    color: #fff
}
main#top #overview .container h2::before {
    display: none
}
main#top #overview .container p {
    text-align: center;
    color: #fff;
    margin-bottom: 40px
}
main#top #overview .container .btn {
    width: 100%
}
main#top #overview .container .btn a {
    display: block;
    text-align: center;
    width: 300px;
    color: #fff;
    padding: 20px 0;
    border: 1px solid #fff;
    margin: auto;
    position: relative;
    transition: color 0.3s ease;
    z-index: 1
}
main#top #overview .container .btn a::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url("../image/common/icon_link_white.svg") no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s ease
}
main#top #overview .container .btn a::after {
    content: "";
    display: block;
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #fff;
    transition: width 0.3s ease;
    z-index: -1
}
main#top #overview .container .btn a:hover {
    color: #333
}
main#top #overview .container .btn a:hover::before {
    background: url("../image/common/icon_link.svg") no-repeat;
    background-size: contain;
    background-position: center;
    right: 10px
}
main#top #overview .container .btn a:hover::after {
    width: 100%
}
main#top #labs .container .card-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr
}
@media screen and (max-width: 767px) {
    main#top #labs .container .card-grid {
        grid-template-columns: repeat(1, 1fr)
    }
}
main#top #labs .container .card-grid .card {
    background-color: #fff;
    height: 100%;
    border: 1px solid #ccc;
    transition: background 0.3s, color 0.3s
}
main#top #labs .container .card-grid .card a {
    display: block;
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 1;
    position: relative
}
main#top #labs .container .card-grid .card a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #555;
    transition: width 0.3s ease;
    z-index: -1
}
main#top #labs .container .card-grid .card a::after {

    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url("../image/common/icon_link.svg") no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
    transition: right 0.3s ease
}
main#top #labs .container .card-grid .card a span:nth-child(1) {
    display: block;
    text-align: center;
    background: #eee;
    padding: 40px 0 20px 0;
    position: relative;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease, background 0.3s ease
}
main#top #labs .container .card-grid .card a span:nth-child(1)::before {
    content: "";
    display: block;
    width: 20px;
    height: 2px;
    background: #999;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1
}
main#top #labs .container .card-grid .card a span:nth-child(2) {
    padding: 20px;
    position: relative;
    display: block;
    padding-bottom: 60px
}
main#top #labs .container .card-grid .card a span:nth-child(2).small {
    font-size: 0.8rem;
    line-height: 1.4
}
main#top #labs .container .card-grid .card a:hover::before {
    animation: underline 0.3s ease;
    animation-fill-mode: forwards
}
main#top #labs .container .card-grid .card a:hover::after {
    background: url("../image/common/icon_link_white.svg") no-repeat;
    background-size: contain;
    background-position: center
}
main#top #labs .container .card-grid .card a:hover span:nth-child(1) {
    background: rgba(238, 238, 238, 0);
    color: #fff
}
main#top #labs .container .card-grid .card a:hover span:nth-child(1)::before {
    background: #fff
}
main#top #labs .container .card-grid .card a:hover span:nth-child(2) {
    color: #fff
}
main#top #research {
    background: #F6F5F3;
    border-bottom: 1px solid #ccc
}
main#top #research .container .two-column {
    display: flex;
    gap: 2rem
}
@media screen and (max-width: 1024px) {
    main#top #research .container .two-column {
        flex-direction: column
    }
}
main#top #research .container .two-column .ttl {
    width: 30%
}
@media screen and (max-width: 1024px) {
    main#top #research .container .two-column .ttl {
        width: 100%
    }
}
main#top #research .container .two-column .card-grid {
    width: 70%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0
}
@media screen and (max-width: 1024px) {
    main#top #research .container .two-column .card-grid {
        width: 100%
    }
}
@media screen and (max-width: 767px) {
    main#top #research .container .two-column .card-grid {
        grid-template-columns: repeat(1, 1fr)
    }
}
main#top #research .container .two-column .card-grid .card {
    background-color: #fff;
    height: 100%;
    transition: background 0.3s, color 0.3s;
    outline: 1px solid #ccc
}
main#top #research .container .two-column .card-grid .card a {
    display: block;
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: 1;
    position: relative;
    text-align: center;
    padding: 40px 0;
    padding-bottom: 60px
}
main#top #research .container .two-column .card-grid .card a::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: #555;
    transition: width 0.3s ease;
    z-index: -1
}
main#top #research .container .two-column .card-grid .card a::after {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url("../image/common/icon_link.svg") no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
    transition: right 0.3s ease
}
main#top #research .container .two-column .card-grid .card a svg {
    margin: auto;
    margin-bottom: 40px
}
main#top #research .container .two-column .card-grid .card a svg .a {
    fill: #999
}
main#top #research .container .two-column .card-grid .card a svg path {
    fill: #999
}
main#top #research .container .two-column .card-grid .card a span {
    padding-bottom: 20px;
    display: block;
    font-size: 1.2rem;
    font-weight: 500;
    transition: color 0.3s ease, background 0.3s ease
}
main#top #research .container .two-column .card-grid .card a:hover::before {
    animation: underline 0.3s ease;
    animation-fill-mode: forwards
}
main#top #research .container .two-column .card-grid .card a:hover::after {
    background: url("../image/common/icon_link_white.svg") no-repeat;
    background-size: contain;
    background-position: center
}
main#top #research .container .two-column .card-grid .card a:hover svg .a {
    fill: #fff
}
main#top #research .container .two-column .card-grid .card a:hover svg path {
    fill: #fff
}
main#top #research .container .two-column .card-grid .card a:hover span {
    color: #fff
}
main#top #research .container .two-column .card-grid .card.passive a {
    pointer-events: none
}
main#top #etc {
    background: #F6F5F3;
    padding: 0
}
main#top #etc .container .two-column {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0
}
@media screen and (max-width: 767px) {
    main#top #etc .container .two-column {
        grid-template-columns: repeat(1, 1fr)
    }
}
main#top #etc .container .two-column .box {
    padding: 120px 40px;
    outline: 1px solid #ccc;
    width: 100%;
    background: #F6F5F3
}
main#top #etc .container .two-column .box h2 {
    text-align: center
}
main#top #etc .container .two-column .box h2::before {
    left: 50%;
    transform: translateX(-50%)
}
main#top #etc .container .two-column .box p {
    margin-bottom: 1rem
}
main#top #etc .container .two-column .box .btn {
    width: 100%;
    margin-bottom: 1rem
}
main#top #etc .container .two-column .box .btn a {
    display: block;
    text-align: center;
    width: 100%;
    color: #333;
    padding: 20px 0;
    border: 1px solid #ccc;
    margin: auto;
    position: relative;
    transition: color 0.3s ease;
    z-index: 1
}
@media screen and (max-width: 767px) {
    main#top #etc .container .two-column .box .btn a {
        padding-left: 20px;
        padding-right: 40px
    }
}
main#top #etc .container .two-column .box .btn a::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url("../image/common/icon_blank.svg") no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s ease
}
main#top #etc .container .two-column .box .btn a::after {
    content: "";
    display: block;
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #555;
    transition: width 0.3s ease;
    z-index: -1
}
main#top #etc .container .two-column .box .btn a:hover {
    color: #fff
}
main#top #etc .container .two-column .box .btn a:hover::before {
    background: url("../image/common/icon_blank_white.svg") no-repeat;
    background-size: contain;
    background-position: center
}
main#top #etc .container .two-column .box .btn a:hover::after {
    width: 100%
}
main#second #ttl {
    padding-top: 60px
}
main#second #ttl .container h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 40px;
    position: relative;
    padding-top: 60px
}
main#second #ttl .container h1 span {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
    font-size: 1.3rem;
    font-weight: 300;
    color: #999;
    display: block;
    padding-bottom: 0px
}
main#second #ttl .container .two-column {
    align-items: flex-end
}
main#second #ttl .container .two-column .right p {
    margin-bottom: 40px
}
main#second #ttl .img {
    width: 100%;
    height: 300px;
    overflow: hidden
}
main#second #ttl .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}
main#second section {
    padding-bottom: 120px
}
main#second section.grey {
    background: #F6F5F3
}
main#second section.first {
    padding-top: 120px
}
main#second section .container h2 {
    font-size: 2.1rem;
    font-weight: 500;
    border-left: 4px solid #999;
    padding: 5px 0;
    padding-left: 2rem;
    margin-bottom: 60px
}
main#second section .container h3 {
    font-size: 2.0rem;
    font-weight: 500;
    padding: 20px 0;
    position: relative;
    margin-bottom: 40px
}
main#second section .container h3::before {
    content: "";
    display: block;
    background: #ccc;
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0
}
main#second section .container h3::after {
    content: "";
    display: block;
    background: #999;
    height: 2px;
    width: 20%;
    position: absolute;
    bottom: 0;
    left: 0
}
main#second section .container p+h2, main#second section .container img+h2 {
    margin-top: 3rem
}
main#second section .container p+p, main#second section .container p+table, main#second section .container p+ul, main#second section .container p+.img, main#second section .container .img+ul, main#second section .container ul+ul, main#second section .container article+article {
    margin-top: 1.5rem
}
main#second section .container .two-column+.two-column, main#second section .container table+.two-column {
    padding-top: 120px
}
main#second section .container .two-column {
    display: flex;
    gap: 2rem
}
@media screen and (max-width: 767px) {
    main#second section .container .two-column {
        flex-direction: column
    }
}
main#second section .container .two-column .left {
    width: 50%
}
@media screen and (max-width: 767px) {
    main#second section .container .two-column .left {
        width: 100% !important
    }
}
main#second section .container .two-column .right {
    width: 50%
}
@media screen and (max-width: 767px) {
    main#second section .container .two-column .right {
        width: 100% !important
    }
}
main#second section .container .two-column.l60r40 .left {
    width: 60%
}
main#second section .container .two-column.l60r40 .right {
    width: 40%
}
main#second section .container .two-column.vcenter {
    align-items: center
}
main#second section .container .img {
    text-align: center
}
main#second section .container .img.jab {
    padding-top: 40px
}
main#second section .container .img.jab img {
    max-width: 200px
}
main#second section .container table {
    width: 100%
}
main#second section .container table tr th {
    text-align: left;
    padding: 15px 0;
    border-bottom: 1px solid #ccc;
    font-weight: 500;
    width: 50%
}
@media screen and (max-width: 767px) {
    main#second section .container table tr th {
        display: block;
        width: 100% !important;
        border: none !important;
        background: #ccc;
        padding: 20px
    }
}
main#second section .container table tr td {
    text-align: left;
    padding: 15px 0;
    border-bottom: 1px solid #ccc
}
@media screen and (max-width: 767px) {
    main#second section .container table tr td {
        display: block;
        width: 100% !important;
        border: 1px solid #ccc !important;
        padding: 20px
    }
}
main#second section .container table tr:first-child th {
    border-top: 1px solid #ccc
}
main#second section .container table tr:first-child td {
    border-top: 1px solid #ccc
}
main#second section .container table.th8 tr th {
    width: 8%
}
main#second section .container table.th10 tr th {
    width: 10%
}
main#second section .container table.th20 tr th {
    width: 20%
}
main#second section .container .map {
    margin-bottom: 120px
}
main#second section .container .map iframe {
    width: 100%
}
main#second section .container .border-box {
    padding: 30px;
    border: 1px solid #ccc
}
main#second section .container .list li {
    list-style-type: disc;
    margin-left: 1rem;
    margin-bottom: 1rem
}
main#second section .container .links li a {
    display: block;
    width: 100%;
    color: #333;
    padding: 10px 0;
    padding-right: 60px;
    padding-left: 20px;
    border-bottom: 1px solid #ccc;
    margin: auto;
    position: relative;
    transition: color 0.3s ease;
    z-index: 1;
    text-decoration: underline;
    display: inline-flex;
    align-items: center;
    gap: 2rem
}
main#second section .container .links li a::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url("../image/common/icon_blank.svg") no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: right 0.3s ease
}
main#second section .container .links li a::after {
    content: "";
    display: block;
    width: 0%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #555;
    transition: width 0.3s ease;
    z-index: -1
}
main#second section .container .links li a img {
    width: 50px
}
main#second section .container .links li a:hover {
    color: #fff;
    text-decoration: none
}
main#second section .container .links li a:hover::before {
    background: url("../image/common/icon_blank_white.svg") no-repeat;
    background-size: contain;
    background-position: center
}
main#second section .container .links li a:hover::after {
    width: 100%
}
main#second section .container .links li a:hover img {
    opacity: 0.5
}
main#second section .container .links li:first-child a {
    border-top: 1px solid #ccc
}
main#second section .container .links li.no-link {
    display: block;
    width: 100%;
    color: #333;
    padding: 10px 0;
    padding-right: 60px;
    border-bottom: 1px solid #ccc;
    margin: auto;
    position: relative;
    transition: color 0.3s ease;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 2rem
}
main#second section .container .links li.no-link:first-child {
    border-top: 1px solid #ccc
}
main#second section .container .links.scroll {
    height: 400px;
    overflow-y: scroll;
    background: #F6F5F3;
    padding: 20px
}
main#second section .container .research-article .ttl a {
    font-size: 1.8rem;
    font-weight: 500;
    position: relative;
    display: inline-block;
    padding-right: 4rem
}
main#second section .container .research-article .ttl a::before {
    content: "";
    display: block;
    width: 36px;
    height: 36px;
    background: url("../image/common/icon_circle-arrow.svg") no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translate(0%, -50%);
    transition: right 0.3s ease
}
main#second section .container .research-article .ttl a::after {
    content: "";
    display: block;
    width: 0%;
    position: absolute;
    bottom: 0;
    height: 1px;
    background: #999;
    transition: width 0.3s ease
}
main#second section .container .research-article .ttl a:hover::before {
    right: 0
}
main#second section .container .research-article .ttl a:hover::after {
    width: 100%
}
footer {
    background: #fff;
    text-align: center;
    padding: 0;
    border-top: 1px solid #ccc
}
footer .home {
    padding: 60px 0;
    text-align: center
}
footer .home a span {
    display: inline-block;
    position: relative
}
footer .home a span::before {
    content: "";
    display: block;
    transition: width 0.3s ease;
    background: #333;
    width: 0%;
    height: 1px;
    position: absolute;
    bottom: 0
}
footer .home a:hover span::before {
    width: 100%
}
footer .global {
    padding-bottom: 10px
}
footer .global img {
    width: 20px;
    position: relative;
    display: inline-block
}
footer .global a {
    display: inline-block;
    position: relative
}
footer .global a::before {
    content: "";
    display: block;
    transition: width 0.3s ease;
    background: #333;
    width: 0%;
    height: 1px;
    position: absolute;
    bottom: 0
}
footer .global a:hover::before {
    width: 100%
}
footer .global span {
    color: #ccc
}
footer .pankuzu {
    padding-bottom: 10px
}
footer .pankuzu a {
    display: inline-block;
    position: relative
}
footer .pankuzu a::before {
    content: "";
    display: block;
    transition: width 0.3s ease;
    background: #333;
    width: 0%;
    height: 1px;
    position: absolute;
    bottom: 0
}
footer .pankuzu a:hover::before {
    width: 100%
}
footer .pankuzu a img {
    width: 60px;
    position: relative;
    top: 3px;
    display: inline-block
}
footer .copy {
    text-align: center;
    width: 100%;
    background: #333;
    color: #fff;
    padding: 10px 0
}
@keyframes zoom {
    0% {
        transform: scale(1)
    }
    100% {
        transform: scale(1.1)
    }
}
@keyframes underline {
    0% {
        width: 0%
    }
    100% {
        width: 100%
    }
}
/*# sourceMappingURL=style.css.map */

main#gakkai #ttl {
    padding-top: 60px
}
main#gakkai #ttl .container h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 40px;
    position: relative;
    padding-top: 60px
}
main#gakkai #ttl .container h1 span {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
    font-size: 1.3rem;
    font-weight: 300;
    color: #999;
    display: block;
    padding-bottom: 0px
}
main#gakkai #ttl02 {
    padding-top: 10px
}
main#gakkai #ttl02 .container h1 {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 40px;
    position: relative;
    padding-top: 10px
}
main#gakkai #ttl02 .container h1 span {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-feature-settings: "palt";
    font-size: 1.3rem;
    font-weight: 300;
    color: #999;
    display: block;
    padding-bottom: 0px
}
main#gakkai #ttl .container .two-column {
    align-items: flex-end
}
main#gakkai #ttl .container .two-column .right p {
    margin-bottom: 0px
}
main#gakkai #ttl .img {
    width: 100%;

    overflow: hidden
}
main#gakkai #ttl .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}
main#gakkai section {
    padding-bottom: 10px
}
main#gakkai section.grey {
    background: #F6F5F3
}
main#gakkai section.first {
    padding-top: 20px
}
main#gakkai section .container h2 {
    font-size: 2.1rem;
    font-weight: 500;
    border-left: 4px solid #999;
    padding: 5px 0;
    padding-left: 2rem;
    margin-bottom: 60px
}
main#gakkai section .container h3 {
    font-size: 2.0rem;
    font-weight: 500;
    padding: 10px 0;
    position: relative;
    margin-bottom: 10px
}
main#gakkai section .container h3::before {
    content: "";
    display: block;
    background: #ccc;
    height: 2px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0
}
main#gakkai section .container h3::after {
    content: "";
    display: block;
    background: #999;
    height: 2px;
    width: 20%;
    position: absolute;
    bottom: 0;
    left: 0
}
main#gakkai section .container p+h2, main#gakkai section .container img+h2 {
    margin-top: 3rem
}
main#gakkai section .container p+p, main#gakkai section .container p+table, main#gakkai section .container p+ul, main#gakkai section .container p+.img, main#gakkai section .container .img+ul, main#gakkai section .container ul+ul, main#gakkai section .container article+article {
    margin-top: 1.5rem
}
main#gakkai section .container .two-column+.two-column, main#gakkai section .container table+.two-column {
    padding-top: 120px
}
main#gakkai section .container .two-column {
    display: flex;
    gap: 2rem
}
@media screen and (max-width: 767px) {
    main#gakkai section .container .two-column {
        flex-direction: column
    }
}
main#gakkai section .container .two-column .left {
    width: 50%
}
@media screen and (max-width: 767px) {
    main#gakkai section .container .two-column .left {
        width: 100% !important
    }
}
main#gakkai section .container .two-column .right {
    width: 50%
}
@media screen and (max-width: 767px) {
    main#gakkai section .container .two-column .right {
        width: 100% !important
    }
}
main#gakkai section .container .two-column.l60r40 .left {
    width: 60%
}
main#gakkai section .container .two-column.l60r40 .right {
    width: 40%
}
main#gakkai section .container .two-column.vcenter {
    align-items: center
}
main#gakkai section .container .img {
    text-align: center
}
main#gakkai section .container .img.jab {
    padding-top: 40px
}
main#gakkai section .container .img.jab img {
    max-width: 200px
}


main#gakkai section .container table {
    width: 100%;
 
}
main#gakkai section .container table tr th {
    text-align: center;
    padding: 10px 10;
    border: solid 1px #B7B7B7;
    font-weight: 500;
	background-color:#DFDEDE;
}

main#gakkai section .container table tr td {
    padding: 10px 10px;
    border: 1px solid #999999
}
main#gakkai section .container table tr:first-child th {
    border: 1px solid #999999;
}
main#gakkai section .container table tr:first-child td {
    border: 1px solid #999999;
}

.scroll {
  overflow-x: scroll;
  margin-bottom: 50px;
}
.table {
  width: 100%;
  border-collapse: collapse;
  white-space: nowrap;
  font-size: 0.8em;
}
.table01 {
  width: 100%;
}
.center {
	text-align: center;
}