@charset "UTF-8";

/*********************************
preset variables
*********************************/
:root {
    --fontSize: 16px;
    --linkColor: #2050a2;
    --textColor: #000;
    /* color preset */
    --mainColor: #2050a2;
    --mainDarkColor: #030619;
    --mainLightColor: #1ab7ec;
    --subColor: #00acac;
    --subDarkColor: #007f8c;
    --subLightColor: #d9f6f9;
    --lightGray: #eeeeee;
    --borderColor: #bfbfbf;
    --borderLightColor: #c4c4c4;
    --headerColor: #00000080;
    --headerHoverColor: #000000cf;
    /* width preset */
    --gutter: 1.3rem;
    --gap: 5rem;
    --spacing: 1rem;
    --contentWidth: 1060px;
    --contentWideWidth: 1200px;
    --headerHeight: 164px;
}

/* OVERWRITE RADIX */
.centering {
    padding-left: 1rem;
    padding-right: 1rem;
}

/* OVERWRITE end */
/*************************************
* START header
*************************************/
header {
    background-color: var(--headerColor);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    transition: 0.3s;
    padding-left: 1rem;
    padding-right: 1rem;
}

header:hover {
    background-color: var(--headerHoverColor);
}

.header-top {
    max-width: var(--contentWideWidth);
    margin: 0 auto;
    /*    background-color: var(--headerColor);*/
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.header-top .site-title {
    display: flex;
    align-items: center;
    min-width: 400px;
}

.header-top .site-title:hover {
    text-decoration: none;
}

.header-top .site-title img {
    width: 70px;
    margin-right: 1rem;
}

.header-top .site-title h1 {
    font-size: 1.95rem;
    font-weight: 500;
    color: #fff;
}

.header-top .site-title h1 .h1-1 {
    display: block;
    font-size: 1.225rem;
    font-weight: 300;
}

.header-top .site-title h1 .h1-2 {
    font-size: 1.5rem;
}

.header-top .header-right-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
    align-self: stretch;
    gap: 1rem;
}

.header-top .contact {
    display: inline-block;
    padding: 0.25rem 1.25rem;
    border: 1px solid #fff;
    color: #fff;
    vertical-align: middle;
    transition: 0.3s;
    font-size: 0.8rem;
    margin-left: 1rem;
}

.header-top .contact:hover {
    background-color: #ffffff60;
    text-decoration: none;
}

#global-nav ul {
    display: flex;
    justify-content: flex-end;
    padding-left: 0;
    margin: 0;
    gap: 0.5rem 2.5rem;
    flex-wrap: wrap;
}

#global-nav ul li {}

#global-nav ul li a {
    display: block;
    color: #fff;
    text-align: center;
    padding: 0;
    font-size: 1rem;
    font-weight: 400;
    position: relative;
}

#global-nav ul li a:hover {
    text-decoration: none;
}

#global-nav ul li a::after {
    content: "";
    display: block;
    width: 0px;
    height: 2px;
    background-color: var(--mainLightColor);
    transition: 0.3s;
}

#global-nav ul li a:hover::after {
    width: 100%;
}


/*************************************
* END header START main
*************************************/
main {
    padding-bottom: calc(var(--gap));
}

.header-padding {
    padding-top: var(--headerHeight);
}

.eyecatch {
    background-image: url("../images/theme/main-bg.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding-bottom: 10rem;
}

.eyecatch img {
    padding-top: 5.75rem;
    display: block;
    max-width: 980px;
    margin: 0 auto;
    width: 90%;
    height: auto;
}


/*************************************
* keen-slider
*************************************/
.navigation-wrapper {
    position: relative;
}

.dots {
    display: flex;
    padding: 10px 0;
    justify-content: center;
}

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

.dot {
    border: none;
    width: 10px;
    height: 10px;
    background: #c5c5c5;
    border-radius: 50%;
    margin: 0 5px;
    padding: 5px;
    cursor: pointer;
}

.dot:focus {
    outline: none;
}

.dot--active {
    background: #000;
}

.arrow {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    fill: #fff;
    cursor: pointer;
}

.arrow--left {
    left: 5px;
    fill: "#fff";
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' %3E%3Cpath d='M16.67 0l2.83 2.829-9.339 9.175 9.339 9.167-2.83 2.829-12.17-11.996z' %3E%3C/path%3E%3C/svg%3E");
}

.arrow--right {
    left: auto;
    right: 5px;
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg'  viewBox='0 0 24 24' %3E%3Cpath d='M5 3l3.057-3 11.943 12-11.943 12-3.057-3 9-9z'%3E%3C/path%3E%3C/svg%3E");
}

.arrow--disabled.arrow--left {
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' fill='grey' viewBox='0 0 24 24' %3E%3Cpath d='M16.67 0l2.83 2.829-9.339 9.175 9.339 9.167-2.83 2.829-12.17-11.996z' %3E%3C/path%3E%3C/svg%3E");
}

.arrow--disabled.arrow--right {
    background-image: url("data:image/svg+xml, %3Csvg xmlns='http://www.w3.org/2000/svg' fill='grey' viewBox='0 0 24 24' %3E%3Cpath d='M5 3l3.057-3 11.943 12-11.943 12-3.057-3 9-9z'%3E%3C/path%3E%3C/svg%3E");
}

main .contents {
    padding-top: 3rem;
}

main section:not(.news-wrapper) h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
    text-align: left;
    /*    color: var(--textColor);*/
    color: var(--mainColor);
    border-bottom: 2px solid var(--mainColor);
}

main section.news-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    text-align: left;
    color: var(--textColor);
    position: relative;
    padding-bottom: 1rem;
}

main section.news-wrapper h2::after {
    content: "";
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: var(--textColor);
    position: absolute;
    left: 3px;
    bottom: 0;
}

main h3 {
    /*font-size: 1.5rem;
    font-weight: 400;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    color: var(--mainColor);
    border-bottom: 2px solid var(--mainColor);*/
    font-size: 1.275rem;
    font-weight: 600;
    color: var(--textColor);
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-left: 1rem;
    border-left: 10px solid var(--subColor);
}

main h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--mainColor);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

main .contents figure {
    text-align: center;
    margin: 1rem 0;
}

main .contents figure img {
    max-width: 700px;
    width: 100%;
}

main .contents ul li {
    margin-bottom: 1rem;
}

main .contents section.editable-content del{
    text-decoration: line-through;
}

.view-all {
    display: flex;
    justify-content: flex-end;
}

.view-all a {
    display: inline-block;
    padding: 0.35rem 1rem;
    border: 1px solid var(--textColor);
    color: var(--textColor);
    font-weight: 600;
    font-size: 1.2rem;
    transition: 0.3s;
}

.view-all a:hover {
    background-color: var(--textColor);
    color: #fff;
    text-decoration: none;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    align-items: center;
    font-size: 1.2rem;
}

.pagination .next_page,
.pagination .prev_page {
    display: inline-block;
    padding: 1px 7px;
    border: 2px solid var(--textColor);
    color: var(--textColor);
}

.news-wrapper dl {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.news-wrapper dl dt,
.news-wrapper dl dd {
    /*    padding: 1.275rem 0;*/
}

.news-wrapper dl dt {
    width: 115px;
}

.news-wrapper dl dd {
    width: calc(100% - 115px);
    margin-bottom: 1rem;
}

.news-wrapper.output-wrapper dl dd {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.news-wrapper.output-wrapper dl dd figure {
    margin: 0;
    width: 35%;
}

.news-wrapper.output-wrapper dl dd img {
    max-width: 200px;
    height: auto;
}

.news-wrapper.activity-wrapper dl dd {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.news-wrapper.activity-wrapper dl dd figure {
    margin: 0;
    width: 35%;
}

.news-wrapper.activity-wrapper dl dd img {
    max-width: 200px;
    height: auto;
}

.page-header {
    padding-top: var(--headerHeight);
    padding-bottom: 3.375rem;
    background-image: url("../images/theme/main-bg.webp");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
}

.page-header h1 {
    padding-top: 2.6rem;
    margin-bottom: 0;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: left;
    color: #fff;
    position: relative;
    padding-bottom: 1rem;
}

.page-header h1::after {
    content: "";
    display: block;
    width: 1.5rem;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 3px;
    bottom: 0;
}

.breadcrumb {
    max-width: var(--contentWideWidth);
    margin: 0 auto;
    font-size: 0.875rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.breadcrumb ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    padding: 1rem 0;
    margin-bottom: 0;
}

.breadcrumb li::after {
    content: "＞";
    margin: 0 0.5rem;
}

.breadcrumb li:last-child::after {
    display: none;
}

.float-right {
    float: right;
    max-width: 55%;
    padding-left: 3rem;
    margin-top: 0;
}

.float-right+*::after {
    content: "";
    display: block;
    clear: both;
}

.anchor-list {
    list-style: none;
    padding-left: 0;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.anchor-list li a {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--subColor);
    color: #fff;
    font-feature-settings: "palt";
    transition: 0.3s;
}

.anchor-list li a:hover {
    text-decoration: none;
    background-color: var(--subDarkColor);
}

.anchor-list li a i {
    margin-left: 10px;
}

.member-list {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    padding-left: 0;
}

.member-list li {
    flex-basis: calc((100% - 4rem) / 2);
    list-style: none;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.member-list li img {
    width: 90px;
    height: auto;
}

main .member-list .name h3 {
    font-size: 1.125rem;
    border-left: 6px solid var(--subColor);
    line-height: 1;
    padding-left: 8px;
    font-weight: 700;
    margin-top: 0;
}

section>*:first-child {
    margin-top: 0 !important;
}

/*************************************
* END main START footer
*************************************/
footer {
    background-image: url("../images/theme/main-bg.jpg");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
    padding-top: 10rem;
    padding-bottom: 8rem;
}

.banners-wrapper {
    padding: 0;
}

.banners-wrapper .banner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.banners-wrapper .banner a {
    max-width: 420px;
    width: 100%;
    vertical-align: middle;
}

.banners-wrapper .banner a img {
    vertical-align: middle;
}

.footer-main-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.footer-content {
    padding: 0;
}

.footer-info {
    text-align: center;
    margin-top: 3rem;
}

.footer-info .info-name {
    font-size: 19px;
    font-weight: 500;
}

.footer-info p span {
    color: var(--lightGray);
    font-size: 0.9rem;
}

.footer-info p {
    margin-bottom: 1rem;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-left: 0;
    gap: 2rem;
}

.footer-nav ul li a {
    display: block;
    padding: 0;
    color: #fff;
    position: relative;
}

.footer-nav ul li a:hover {
    text-decoration: none;
}

.footer-nav ul li a::after {
    content: "";
    display: block;
    width: 0px;
    height: 2px;
    background-color: var(--mainLightColor);
    transition: 0.3s;
}

.footer-nav ul li a:hover::after {
    width: 100%;
}

footer .copyright {
    text-align: left;
    font-size: 0.875rem;
    margin-top: 5rem;
    color: #fff;
}

.go-to-top {
    display: block;
    text-align: center;
    width: 60px;
    height: 60px;
    border-radius: 30px;
    border: 2px solid #fff;
    position: fixed;
    bottom: 1.5rem;
    right: 1rem;
    z-index: 20;
    color: #fff;
    background-color: var(--textColor);
    opacity: 0;
    transition: 0.3s;
}

.go-to-top:hover {
    background-color: #ffffff60;
}

.go-to-top i {
    font-size: 1.5rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%)translateY(-50%);
    color: #fff;
}

/*************************************
* END footer START only for sp
*************************************/
@media only screen and (max-width: 700px) {
    :root {
        --headerHeight: 75px;
    }

    body,
    html {
        font-size: 15px;
        margin: 0;
		overflow-wrap:break-word;
    }

    /*body {
        padding-top: var(--headerHeight);
    }*/

    .centering {
        padding-right: 10px;
        padding-left: 10px;
    }

    .sp-hide {
        visibility: hidden;
        opacity: 0
    }

    .sp-visible {
        visibility: visible;
        opacity: 1
    }

    .sp-none {
        display: none !important
    }

    .rdx-btn {
        display: block
    }

    header {
        background-color: var(--headerHoverColor);
    }

    .header-top {
        padding: 10px;
    }

    .header-top .site-title {
        min-width: auto;
    }

    .header-top .site-title img {
        width: 37px;
    }

    .header-top .site-title h1 {
        font-size: 1.175rem;
        min-width: 180px;
    }

    .header-top .site-title h1 span {
        font-size: 11px;
    }

    .header-top .header-right-wrapper {
        flex-direction: row;
        align-items: center;
    }

    #toggle-nav {
        width: 45px;
        height: 45px;
        color: #fff;
        padding: 6px;
    }

    #toggle-nav .radix-icon {
        width: 100%;
        height: 100%;
    }

    .nav-wrapper {
        border-bottom: none;
        background-color: transparent;
    }

    #global-nav {
        position: fixed;
        top: var(--headerHeight);
        right: -200%;
        padding: 0;
        transition: 0.3s;
    }

    #global-nav.opened {
        right: 0;
    }

    #global-nav ul {
        flex-direction: column;
        background-color: #000;
        gap: 0;
    }

    #global-nav ul li a {
        display: block;
        padding: 1.5rem 1rem;
    }

    #global-nav ul li a::after {
        content: none;
    }

    #global-nav ul.pc-none {
        border-top: 1px solid var(--borderColor);
    }

    #global-nav ul li:not(:last-child) a {
        border-bottom: 1px solid var(--borderColor);
    }

    #global-nav ul li.pc-none {
        background-color: var(--subColor);
    }

    main .contents {
        padding-top: 2rem;
    }

    .eyecatch {
        padding-bottom: 2.8rem;
    }

    .eyecatch img {
        padding-top: 2.8rem;
    }

    main section:not(.news-wrapper) h2 {
        font-size: 1.25rem;
        padding-bottom: 0.5rem;
    }

    main .contents h3 {
        font-size: 1.15rem;
    }

    main .contents h4 {
        font-size: 1rem;
    }

    .view-all a {
        font-size: 1.125rem;
    }

    .news-wrapper dl {
        display: block;
    }

    .news-wrapper dl dt {
        width: 100%;
        font-weight: 600;
    }

    .news-wrapper dl dd {
        width: 100%;
        font-size: 14px;
    }

    .news-wrapper.output-wrapper dl dd {
        flex-direction: column;
    }

    .news-wrapper.output-wrapper dl dd figure {
        align-self: center;
        width: auto;
    }

    .news-wrapper.output-wrapper dl dd img {
        max-width: 300px;
    }
	
	.news-wrapper.activity-wrapper dl dd {
        flex-direction: column;
    }

    .news-wrapper.activity-wrapper dl dd figure {
        align-self: center;
        width: auto;
    }

    .news-wrapper.activity-wrapper dl dd img {
        max-width: 300px;
    }

    .page-header {
        padding-bottom: 2rem;
    }

    .page-header h1 {
        font-size: 1.35rem;
        padding-top: 2rem;
    }

    .breadcrumb ul {
        padding-top: 5px;
        padding-bottom: 5px;
    }

    .breadcrumb {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
    }

    .float-right {
        float: none;
        max-width: 80%;
        padding-left: 0;
        margin: 1rem auto !important;
    }

    .research-li-flex img {
        max-width: 90%;
        margin: 10px auto;
    }

    .research-li-flex:nth-of-type(1) img {
        margin-top: 0;
    }

    .anchor-list {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .anchor-list li a {
        width: 230px;
        text-align: center;
    }

    .member-list {
        flex-direction: column;
        gap: 2rem;
    }

    .member-list li {
        flex-basis: 100%;
        flex-direction: column-reverse;
    }

    .member-list li img {
        margin: 0 auto;
        width: 150px;
    }

    main .member-list .name h3 {
        font-size: 1rem;
    }


    footer {
        font-size: 14px;
        padding-top: 3.4rem;
        padding-bottom: 2rem;
    }

    .footer-main-wrapper {
        flex-direction: column-reverse;
    }

    .banners-wrapper {
        padding-bottom: 1rem;
    }

    .banners-wrapper .banner {
        display: block;
        text-align: center;
    }

    .banners-wrapper .banner a {
        display: inline-block;
        margin-bottom: 2rem;
    }

    .banners-wrapper .banner a img {
        max-width: 250px;
        width: 100%;
        margin: 0 auto;
    }

    .footer-content {
        max-width: 250px;
        width: 90%;
        margin: 0 auto;
    }

    .footer-nav ul {
        flex-wrap: wrap;
        gap: 0.75rem;
    }

    .footer-nav ul li a {
        padding: 0.5rem 0;
        font-size: 12px;
    }

    .footer-info {
        margin-top: 1rem;
    }

    .go-to-top {
        bottom: 1.5rem;
        right: 1rem;
        width: 50px;
        height: 50px;
        border-radius: 25px;
    }

    .go-to-top i {
        font-size: 30px;
    }

    footer .copyright {
        font-size: 12px;
        text-align: center;
        margin-top: 1rem;
    }

}

/*************************************
* END only for sp START only for pc
*************************************/
@media print,
screen and (min-width: 700px) {
    .pc-hide {
        visibility: hidden;
        opacity: 0
    }

    .pc-visible {
        visibility: visible;
        opacity: 1
    }

    .pc-none {
        display: none !important
    }

    .research-li-flex {
        display: flex;
        align-items: flex-start;
        gap: 2rem;
    }

    .research-li-flex-wrapper:nth-of-type(1) img {
        max-width: 245px;
        display: inline;
        vertical-align: top;
        margin-top: -33px;
    }

    .research-li-flex-wrapper:nth-of-type(2) img {
        max-width: 290px;
        display: inline;
        vertical-align: top;
    }

    .research-li-flex-wrapper:nth-of-type(4) img {
        max-width: 290px;
        display: inline;
        vertical-align: top;
        margin-top: 15px;
    }

}