@charset "utf-8";
@import url("reset.css");
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500&family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1&display=swap');

/*--京base.css--*/
html {
    font-size: 16px;
}

body {
    width: 100%;
    height: 100%;
    color: #222;
    font-family: 'Noto Sans JP', sans-serif, FontAwesome;
    background-color: #fff;
    line-height: 1.0;
}

img {
    vertical-align: bottom;
}

#container {
    width: 100%;
    min-width: 1100px;
    position: relative;
}

/*----------header----------*/
header {
    box-sizing: border-box;
    width: 100%;
    position: fixed;
    z-index: 3;
    top: 0;
    left: 0;
    /*background: rgba(255,255,255,0);*/
    background: url(../shared/bg_home_catch.png) no-repeat;
    background-size: 120rem 65rem;
    background-position: top center;
    transition: .5s all ease;
}

header>.box_inner {
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 6.25rem;
    min-width: 68.75rem;
    transition: .3s all ease;
    padding: 0 3.75vw;
}


header>.box_inner .ku_logo_site_title {
    display: flex;
}

header>.box_inner .ku_logo_site_title a {
    display: flex;
    position: relative;
    transition: .3s all ease;
}

header>.box_inner .ku_logo_site_title a:hover {
    opacity: 0.8;
}

header>.box_inner .ku_logo_site_title img {
    max-width: 100%;
    height: auto;
}

header>.box_inner .ku_logo_site_title .ku_logo {
    width: 4rem;
    margin-right: 1rem;
    display: block;
    transition: .5s all ease;
}

header>.box_inner .ku_logo_site_title .site_title {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 1rem;
    transition: .5s all ease;
}

header>.box_inner .ku_logo_site_title .site_title .lbl_ja {
    width: 17.5rem;
    transition: .5s all ease;
}

header>.box_inner .ku_logo_site_title .site_title .lbl_en {
    width: 21rem;
    transition: .5s all ease;
}

header>.box_inner .navs {}

header>.box_inner .navs .global_nav {
    margin-top: 0.5rem;
}

header>.box_inner .navs .global_nav ul {
    display: flex;
    justify-content: flex-end;
    gap: 1.5rem;
}

header>.box_inner .navs .global_nav ul li {
    position: relative;
}

header>.box_inner .navs .global_nav ul li a {
    display: block;
    text-decoration: none;
    color: #222;
}

header>.box_inner .navs .global_nav ul li a .lbl_ja {
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 0 0.5rem;
}

header>.box_inner .navs .global_nav ul li a .lbl_en {
    display: block;
    font-size: 0.8rem;
    padding: 0 0.5rem;
    margin-top: 0.3rem;
    position: relative;
    z-index: 2;
}

header>.box_inner .navs .global_nav ul li a .lbl_en::before {
    content: "";
    width: 0;
    height: 100%;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.3));
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transition: .3s all ease;
}

header>.box_inner .navs .global_nav ul li a:hover .lbl_en::before {
    width: 100%;
}

header>.box_inner .navs .global_nav ul li.active a .lbl_en::before {
    width: 100%;
}

/*small_header*/
.small_header header {
    /*background: rgba(255,255,255,0.99);*/
    box-shadow: 0 5px 10px -10px rgba(0, 0, 0, 0.3);
}

.small_header header>.box_inner {
    height: 5rem;
}

.small_header header>.box_inner .ku_logo_site_title .ku_logo {
    width: calc(4rem * 0.8);
    margin-right: calc(1rem * 0.8);
}

.small_header header>.box_inner .ku_logo_site_title .site_title .lbl_ja {
    width: calc(17.5rem * 0.8);
}

.small_header header>.box_inner .ku_logo_site_title .site_title .lbl_en {
    width: calc(21rem * 0.8);
}





/*----------contents----------*/
.contents {
    position: relative;
    top: 0;
    left: 0;
    z-index: 0;
    padding-top: 6.25rem;
}

.access_box {
    min-width: 68.75rem;
    height: 12.5rem;
    margin-top: 5rem;
    background: url(../shared/bg_access.png) no-repeat;
    background-size: 120rem 12.5rem;
    background-position: top center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.access_box .box_header {
    padding-right: 4.375rem;
    border-right: 2px solid #9b93a1;
}

.access_box .box_header h2 a {
    display: block;
    padding-right: 6.25rem;
    position: relative;
    color: #222;
    text-decoration: none;
}

.access_box .box_header h2 a::before {
    content: "";
    display: block;
    background: #19191b;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    position: absolute;
    top: calc(50% - 1.5rem);
    right: 0;
    transition: .3s all ease;
}

.access_box .box_header h2 a::after {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    background: url(../shared/icon_arrrow_w.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: calc(50% - 0.5rem);
    right: 1rem;
    transition: .3s all ease;
}

.access_box .box_header h2 a:hover::before {
    right: -0.5rem;
}

.access_box .box_header h2 a:hover::after {
    right: 0.5rem;
}


.access_box .box_header h2 .lbl_en {
    font-family: "Shippori Mincho B1", serif;
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.access_box .box_header h2 .lbl_ja {
    font-size: 1.1rem;
}

.access_box .box_inner {
    padding-left: 4.375rem;
    line-height: 1.8;
}

/*-----footer-----*/
footer {}

footer>.box_header ul {
    display: flex;
    justify-content: center;
    gap: 2px;
}

footer>.box_header ul li {
    width: 26.25rem;
    position: relative;
}

footer>.box_header ul li::after {
    content: "";
    width: 2px;
    height: 2.5rem;
    background: #d7d7d7;
    position: absolute;
    top: calc(50% - 1.25rem);
    right: -2px;
}

footer>.box_header ul li:last-child:after {
    display: none;
}

footer>.box_header ul li a {
    display: block;
    padding: 1.2rem 0;
    color: #222;
    text-decoration: none;
    text-align: center;
    position: relative;
    transition: .3s all ease;
}

footer>.box_header ul li a:hover {
    font-weight: 500;
    background: rgba(50, 110, 170, 0.05);
}


footer>.box_header ul li a:before {
    content: "";
    background: url(../shared/icon_link.png) no-repeat;
    background-size: contain;
    width: 0.625rem;
    height: 0.625rem;
    position: absolute;
    bottom: 0.4rem;
    right: 0.4rem;
}

footer>.box_inner {
    padding: 3.4375rem 0 3.125rem 0;
    border-top: 1px solid #cccccc;
}

footer>.box_inner .f_site_title {
    width: 15rem;
    margin: 0 auto;
}

footer>.box_inner .f_site_title a {
    display: block;
    transition: .3s all ease;
}

footer>.box_inner .f_site_title a:hover {
    opacity: 0.8;
}

footer>.box_inner .f_site_title img {
    max-width: 100%;
    height: auto;
}

footer>.box_footer {
    padding: 0 0 3.125rem 0;
    position: relative;
}

.copyright {
    text-align: center;
    color: #797979;
    font-size: 0.84rem;
}

.nav_oc,
.side_nav {
    display: none;
}

.br_detail {
    display: none;
}


/*ページトップ*/
.pagetop {
    width: 5rem;
    height: 5rem;
    position: fixed;
    bottom: 5.625rem;
    right: 3.75rem;
    z-index: 10;
    transform: translateY(6.25rem);
    transition: .3s all ease;
    opacity: 0;
}

.pagetop.show {
    transform: translateY(0);
    opacity: 1;
}

.pagetop a {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .5s all ease;
    width: 100%;
    height: 100%;
    text-decoration: none;
    border-radius: 50%;
    background: rgba(50, 110, 170, 0.8);
}

.pagetop a:hover {
    transform: translateY(-5px);
    background: rgba(50, 110, 170, 1);
}


.pagetop a:before {
    font-family: FontAwesome;
    content: "\f106";
    color: #fff;
    font-size: 2.4rem;
}


/*ヘッダ固定によるアンカーずれ対応*/
*[id^="anc_"] {
    padding-top: 110px;
    margin-top: -110px;
}


/*改行のPC,SPでの表示切替*/
br.pc,
img.pc,
span.pc {
    display: inline;
}

br.sp,
img.sp,
span.sp {
    display: none;
}

.ta_center {
    text-align: center;
}

.ta_left {
    text-align: left;
}

.ta_right {
    text-align: right;
}

/*1200px以下*/
@media screen and (min-width:1px) and (max-width:1400px) {
    header>.box_inner .ku_logo_site_title .ku_logo {
        width: 3.5rem;
    }

    header>.box_inner .ku_logo_site_title .site_title .lbl_ja {
        width: 14rem;
    }

    header>.box_inner .ku_logo_site_title .site_title .lbl_en {
        width: 16.8rem;
    }

    header>.box_inner .navs .global_nav ul li a .lbl_ja {
        font-size: 1.1rem;
    }

    .small_header header>.box_inner .ku_logo_site_title .ku_logo {
        width: calc(3.5rem * 0.8);
    }

    .small_header header>.box_inner .ku_logo_site_title .site_title .lbl_ja {
        width: calc(15rem * 0.8);
    }

    .small_header header>.box_inner .ku_logo_site_title .site_title .lbl_en {
        width: calc(20.5rem * 0.8);
    }

    .br_detail {
        display: block;
    }

}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px) {
    html {
        font-size: 1.8vw;
    }

    #container {
        min-width: unset;
    }

    header>.box_inner {
        min-width: unset;
    }

    header>.box_inner .ku_logo_site_title .ku_logo {
        width: calc(3.5rem * 0.8);
        margin-right: calc(1rem * 0.8);
    }

    header>.box_inner .ku_logo_site_title .site_title .lbl_ja {
        width: calc(15rem * 0.8);
    }

    header>.box_inner .ku_logo_site_title .site_title .lbl_en {
        width: calc(20.5rem * 0.8);
    }

    header>.box_inner .navs {
        display: none;
    }

    .access_box {
        min-width: unset;
        width: 100%;
        height: 10rem;
        margin-top: 1rem;
        background: url(../shared/bg_access.png) center top / 96rem 10rem no-repeat;
    }

    footer>.box_header ul li {
        width: calc(100% / 3);
    }

    .nav_oc {
        display: block;
        width: 5rem;
        height: 5rem;
        position: fixed;
        top: 0.625rem;
        right: 0;
        z-index: 10;
        transition: .5s all ease;
    }

    .small_header .nav_oc {
        width: 5rem;
        height: 5rem;
        position: fixed;
        top: 0;
        right: 0;
    }

    .menu-trigger {
        width: 100%;
        height: 100%;
        padding: 0;
        border: none;
        background: rgba(255, 255, 255, 0);
        cursor: pointer;
        outline: none;
        position: relative;
        transition: .3s all ease;
    }

    .menu-trigger:hover {}

    .menu-trigger span {
        display: inline-block;
        transition: all .4s;
        box-sizing: border-box;
        background-color: #333;
        position: absolute;
        width: 2.6rem;
        left: 1.2rem;
        height: 2px;
    }

    .menu-trigger span:nth-of-type(1) {
        top: 1.475rem;
    }

    .menu-trigger span:nth-of-type(2) {
        top: calc(2.575rem - 1px);
    }

    .menu-trigger span:nth-of-type(3) {
        bottom: 1.475rem;
    }

    .menu-trigger.active span {
        background-color: #333;
    }

    .menu-trigger.active span:nth-of-type(1) {
        -webkit-transform: translateY(1.8vw) rotate(-315deg);
        transform: translateY(1.8vw) rotate(-315deg);
    }

    .menu-trigger.active span:nth-of-type(2) {
        opacity: 0;
    }

    .menu-trigger.active span:nth-of-type(3) {
        -webkit-transform: translateY(-1.8vw) rotate(315deg);
        transform: translateY(-1.8vw) rotate(315deg);
    }

    .side_nav {
        box-sizing: border-box;
        position: fixed;
        top: 0;
        left: 0;
        z-index: -1;
        opacity: 0;
        width: 100%;
        height: 100%;
        transition: .3s all ease;
        background: rgba(255, 255, 255, 0);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 20vw;
    }

    .side_nav.active {
        z-index: 9;
        opacity: 1;
        background: rgba(250, 236, 233, 0.99);
    }

    .side_nav .side_global_nav {
        box-sizing: border-box;
        width: 100%;
        padding: 0 5vw;
    }

    .side_nav .side_global_nav>ul {
        width: 100%;
    }

    .side_nav .side_global_nav>ul>li {
        margin-bottom: 0.5rem;
    }

    .side_nav .side_global_nav>ul>li:last-child {
        margin-bottom: 0;
    }

    .side_nav .side_global_nav>ul>li a {
        background: #fff;
        display: block;
        color: #333;
        text-decoration: none;
        padding: 1rem;
        font-weight: 500;
        border-radius: 3px;
        box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.2);
    }


}

/* ##########印刷用########## */
@media print {
    header {
        position: relative;
    }

    .pagetop {
        display: none;
    }

}