@charset "UTF-8";

/* ---------------------------------------------
*   KV
--------------------------------------------- */
.swiper-slide-active .c-kv__img,
.swiper-slide-duplicate-active .c-kv__img,
.swiper-slide-prev .c-kv__img {
    -webkit-animation: zoomout 6s linear 0s 1 normal both;
    animation: zoomout 6s linear 0s 1 normal both;
}
/* ---------------------------------------------
*   c-kv
--------------------------------------------- */
@-webkit-keyframes zoomout {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@keyframes zoomout {
    0% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1);
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
@-webkit-keyframes scroll {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    85% {
        -webkit-transform: translateY(98%);
        transform: translateY(98%);
    }
    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}
@keyframes scroll {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    85% {
        -webkit-transform: translateY(98%);
        transform: translateY(98%);
    }
    100% {
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
    }
}
.c-kv {
    position: relative;
    margin-bottom: 75px;
}
@media screen and (max-width: 767px) {
    .c-kv {
        margin-bottom: 12vw;
    }
}
.c-kv__container {
    position: relative;
    width: 100%;
    height: calc(100vh - 110px);
}
@media screen and (max-width: 767px) {
    .c-kv__container {
        height: 100%;
    }
}
.c-kv__img-wrap {
    overflow: hidden;
}
.c-kv__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 767px) {
    .c-kv__img {
        background: none;
    }
}
.c-kv__ttl-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    margin: 0 auto;
    width: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.c-kv__ttl {
    padding-left: 12.5%;
    color: #fff;
    letter-spacing: normal;
    font-size: 3rem;
    font-family: "Noto Serif", sans-serif;
    font-weight: 400;
    line-height: 1.75;
    text-shadow: 0 0 10px rgba(0,0,0,.7);
}
@media screen and (max-width: 767px) {
    .c-kv__ttl {
        display: inline-block;
        padding-left: 11.33333%;
        letter-spacing: 0.08em;
        font-size: calc(42/750*100vw);
        line-height: 1.6;
        text-shadow: 0 0 calc(10/750*100vw) rgba(0,0,0,.7);
    }
}
.c-kv__scroll {
    position: absolute;
    bottom: 40px;
    left: 38px;
    z-index: 1;
    width: 11px;
    height: 56px;
}
@media screen and (max-width: 767px) {
    .c-kv__scroll {
        bottom: 6.66667vw;
        left: 5.33333vw;
        width: 1.46667vw;
        height: 8vw;
    }
}
.c-kv__scroll-line {
    position: absolute;
    top: -105px;
    left: 50%;
    overflow: hidden;
    width: 2px;
    height: 100px;
    background-color: rgba(255, 255, 255, 0.3);
    content: '';
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
    .c-kv__scroll-line {
        top: -15.2vw;
        right: -0.13333vw;
        left: auto;
        height: 13.33333vw;
    }
}
.c-kv__scroll-line span {
    display: block;
    width: 2px;
    height: 100px;
    background-color: white;
    content: '';
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-animation: scroll 2.4s infinite cubic-bezier(0.54, 0, 0, 0.99);
    animation: scroll 2.4s infinite cubic-bezier(0.54, 0, 0, 0.99);
}
@media screen and (max-width: 767px) {
    .c-kv__scroll-line span {
        height: 13.33333vw;
    }
}

/* ---------------------------------------------
*   Our Care
--------------------------------------------- */
.our-column {
    display: grid;
}
@media screen and (min-width: 768px) {
    .our-column {
        grid-template-columns: calc(380/1200*100%) 1fr;
        gap: 0 calc(30/1200*100%);
        margin-top: 30px;
    }
}
@media screen and (max-width: 767px) {
    .our-column {
        gap: calc(50/750*100vw) 0;
        margin-top: calc(50/750*100vw);
    }
}
@media screen and (min-width: 768px) {
    .our-name {
        margin-top: 25px;
    }
    .our-name span{
        display: block;
        font-size: calc(20/16*100%);
        font-weight: 700;
    }
    .our-name small{
        display: block;
    }
}
@media screen and (max-width: 767px) {
    .our-name {
        margin-top: calc(30/750*100vw);
    }
    .our-name span{
        display: block;
        font-size: calc(30/750*100vw);
        font-weight: 700;
    }
    .our-name small{
        display: block;
    }
}

@media screen and (min-width: 768px) {
    .research {
        background: url(/en/img/top/bg-research.jpg) center center/cover no-repeat;
        padding: 75px 0 80px;
    }
}
@media screen and (max-width: 767px) {
    .research {
        background: url(/en/img/top/bg-research_sp.jpg) center center/cover no-repeat;
        padding: calc(140/750*100vw) 0 calc(155/750*100vw);
    }
}

.access {
    background-color: #11347a;
    color: #fff;
    overflow: hidden;
}
.access-column {
    display: grid;
}
.access-text__info a {
    color: #fff;
    text-decoration: none;
}
.access-map {
    position: relative;
}
.access-map iframe{
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media screen and (min-width: 768px) {
    .access {
        padding-left: 20px;
    }
    .access-column {
        grid-template-columns: min(380px, calc(380/1200*100%)) 1fr;
        gap: 0 calc(30/1200*100%);
        padding-left: calc((100% - 1240px)/2);
    }
    .access-text{
        align-self: center;
        padding: 20px 0;
    }
    .access-text__ttl {
        font-size: calc(20/16*100%);
        line-height: calc(36/22);
    }
    .access-text__add {
        margin-top: 30px;
    }
    .access-text__info {
        line-height: calc(30/16);
        margin-top: 30px;
    }
    .access-text__info a:hover {
        text-decoration: underline;
    }
    .access-map {
        min-height: 450px;
    }
}
@media screen and (max-width: 767px) {
    .access-column {
        gap: calc(90/750*100vw) 0;
    }
    .access-text{
        align-self: center;
        padding: calc(80/750*100vw) 5.33333vw 0;
    }
    .access-text__ttl {
        font-size: calc(42/750*100vw);
        line-height: calc(69/42);
    }
    .access-text__add {
        margin-top: calc(40/750*100vw);
    }
    .access-text__info {
        line-height: calc(30/16);
        margin-top: calc(40/750*100vw);
    }
    .access-text__info a:hover {
        text-decoration: underline;
    }
    .access-map {
        min-height: calc(710/750*100vw)
    }
}
