/*--京home.css--*/
/* ##########PC########## */
.contents {
    background: url(../shared/bg_home_catch.png) no-repeat;
    background-size: 120rem 65rem;
    background-position: top center;
    line-height: 1.8;
    overflow: hidden;
}

/*mainvisual*/
.mainvisual {
    width: 100%;
    min-height: ;
    z-index: 0;
    position: relative;
    transition: 1s all ease;
    opacity: 0;
    filter: blur(10px);
    margin-bottom: 6rem;
    min-height: 33rem;
}

.mainvisual.show {
    opacity: 1;
    filter: blur(0);
}

.mainvisual>.box_inner {
    width: 68.75rem;
    margin: 0 auto;
    padding-top: 10rem;
    position: relative;
}

.mainvisual>.box_inner .mv_content {
    width: 36.25rem;
    margin: 0 5rem 0 auto;
}

.mainvisual>.box_inner .lbl1 {
    font-family: "Shippori Mincho B1", serif;
    font-size: 3.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.5;
    color: #303132;
    transition: .8s all ease;
    transition-delay: .5s;
    opacity: 0;
    transform: translateX(-1rem);
}

.mainvisual.show>.box_inner .lbl1 {
    opacity: 1;
    transform: translateX(0);
}

.mainvisual>.box_inner .lbl2 {
    font-size: 1.05rem;
    transition: .8s all ease;
    transition-delay: 1s;
    opacity: 0;
    transform: translateX(1rem);
}

.mainvisual.show>.box_inner .lbl2 {
    opacity: 1;
    transform: translateX(0);
}

.mainvisual>.box_inner .more {
    display: flex;
    justify-content: flex-end;
    margin-top: 2rem;
    transition: .8s all ease;
    transition-delay: 1s;
    opacity: 0;
    transform: translateX(1rem);
}

.mainvisual.show>.box_inner .more {
    opacity: 1;
    transform: translateX(0);
}

.mainvisual.show>.box_inner .more a {
    display: block;
    color: #222;
    text-decoration: none;
    margin-right: 5rem;
    padding: 0.3rem;
    border-bottom: 2px solid #222222;
    transition: .3s all ease;
}

.mainvisual.show>.box_inner .more a:hover {
    color: #344b92;
    border-bottom: 2px solid #344b92;
    background: rgba(52, 75, 146, 0.05);
}

.mainvisual>.box_inner .mv_images img {
    max-width: 100%;
    height: auto;
}

.mainvisual>.box_inner .mv_image_01 {
    width: 11.75rem;
    position: absolute;
    top: 1.5rem;
    left: 4rem;
}

.mainvisual>.box_inner .mv_image_02 {
    width: 11.75rem;
    position: absolute;
    top: 7rem;
    left: 13.5rem;
}

.mainvisual>.box_inner .mv_image_03 {
    width: 13.375rem;
    position: absolute;
    top: 1rem;
    right: 3rem;
}

.mainvisual>.box_inner .mv_image_04 {
    width: 8.75rem;
    position: absolute;
    bottom: 0;
    left: -10rem;
}

.mainvisual>.box_inner .mv_fig_memori {
    width: 1.5rem;
    position: absolute;
    top: 0;
    left: 0;
}

.mainvisual>.box_inner .mv_fig_bosyu {
    position: absolute;
    top: 22rem;
    left: 5rem;
}

.mainvisual>.box_inner .mv_fig_bosyu a {
    display: block;
    width: 15rem;
    transition: .3s all ease;
}

.mainvisual>.box_inner .mv_fig_bosyu a:hover {
    transform: scale(1.1);
    filter: brightness(1.05);
}

/*home_news_box*/
.home_news_box {
    width: 60rem;
    margin: 9rem auto 0 auto;
    transition: .5s all ease;
    transition-delay: .3s;
    opacity: 0;
    transform: translateY(1rem);
}

.home_news_box.show {
    opacity: 1;
    transform: translateY(0);
}

.home_news_box>.box_header {
    margin-bottom: 2em;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home_news_box>.box_header h2 .lbl_en {
    font-family: "Shippori Mincho B1", serif;
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.home_news_box>.box_header h2 .lbl_ja {
    font-size: 1.1rem;
}

.home_news_box>.box_header .more {
    margin-top: 0.5rem;
}

.home_news_box>.box_header .more a {
    display: block;
    padding: 0.8rem 3.5rem 0.8rem 2rem;
    border-radius: 2rem;
    color: #222;
    text-decoration: none;
    position: relative;
    background-image: linear-gradient(90deg, rgba(200, 221, 249, 1), rgba(255, 204, 202, 1));
    transition: .3s all ease;
}

.home_news_box>.box_header .more a:hover {
    filter: brightness(1.1);
}

.home_news_box>.box_header .more a::after {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    background: url(../shared/icon_arrow_bk.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: calc(50% - 0.5rem);
    right: 2rem;
    transition: .3s all ease;
}

.home_news_box>.box_header .more a:hover::after {
    right: 1.5rem;
}

.home_news_box>.box_header .cat_nav ul {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    border-bottom: 2px solid #336dac;
}

.home_news_box>.box_header .cat_nav ul li {
    box-sizing: border-box;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    width: 10em;
    font-size: 0.9rem;
    color: #fff;
    background: #326EAA;
    text-align: center;
    padding: 0.5em 1.4em;
    margin-left: 1em;
    border: 2px solid #326EAA;
    border-bottom: none;
    cursor: pointer;
    transition: .3s all ease;
}

.home_news_box>.box_header .cat_nav ul li:hover {
    background: #204c78;
    border-color: #204c78;
    padding-top: 1em;
}

.home_news_box>.box_header .cat_nav ul li:after {
    position: absolute;
    bottom: -2px;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 0;
    border-bottom: 2px solid #fff;
    opacity: 0;
}

.home_news_box>.box_header .cat_nav ul li.active {
    color: #222;
    background: #fff;
    border-left: 2px solid rgba(255, 255, 255, 0);
    padding-top: 1em;
    font-weight: bold;
}

.home_news_box>.box_header .cat_nav ul li.active:after {
    opacity: 1;
}

.home_news_box>.box_inner {
    min-height: 200px;
}

.home_news_box>.box_inner .news_list_box ul,
.home_news_box>.box_inner .news_list_box p {
    display: none;
}

.home_news_box>.box_inner .news_list_box ul.active,
.home_news_box>.box_inner .news_list_box p.active {
    display: block;
}

.home_news_box>.box_inner .news_list_box p {
    text-align: center;
}

.home_news_box>.box_inner .news_list_box ul li {
    border-bottom: 1px solid #F5F0F5;
    padding: 1px 0;
    line-height: 1.4;
}

.home_news_box>.box_inner .news_list_box ul li:nth-child(1) {
    border-top: 1px solid #F5F0F5;
}

.home_news_box>.box_inner .news_list_box ul li a,
.home_news_box>.box_inner .news_list_box ul li .nolink {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    color: #111;
    text-decoration: none;
    padding: 0.8em 3em 0.8em 0.4em;
    position: relative;
}

.home_news_box>.box_inner .news_list_box ul li a:before,
.home_news_box>.box_inner .news_list_box ul li .nolilnk::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transition: .3s all ease;
    background: rgba(50, 110, 170, 0);
    transform: scaleX(0);
    transform-origin: left center;
}

.home_news_box>.box_inner .news_list_box ul li a:hover:before {
    background: rgba(50, 110, 170, 0.05);
    transform: scaleX(1);
}

.home_news_box>.box_inner .news_list_box ul li a:after {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    background: url(../shared/icon_arrow_gr.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: calc(50% - 0.5rem);
    right: 1rem;
}

.home_news_box>.box_inner .news_list_box ul li a .entry_date,
.home_news_box>.box_inner .news_list_box ul li .nolink .entry_date {
    display: block;
    width: 6rem;
    position: relative;
    z-index: 1;
}

.home_news_box>.box_inner .news_list_box ul li a .entry_cat {
    display: block;
    width: 7rem;
    position: relative;
    z-index: 1;
}

.home_news_box>.box_inner .news_list_box ul li a .entry_cat .lbl {
    display: block;
    width: 100%;
    color: #fff;
    background: #326EAA;
    text-align: center;
    padding: 0.2em 0;
    font-size: 0.74rem;
}


.home_news_box>.box_inner .news_list_box ul li .entry_title {
    box-sizing: border-box;
    font-size: 0.95em;
    padding-left: 1em;
    flex: 1;
    position: relative;
    z-index: 1;
}

.home_news_box>.box_inner .news_list_box ul li .entry_title .new {
    display: inline-block;
    color: #d7092f;
    padding: 0 0.4em;
    border: 1px solid #d7092f;
    font-weight: 500;
    font-size: 0.85em;
}

.home_news_box>.box_footer {
    margin: 2rem auto 0 auto;
    display: flex;
    justify-content: center;
}

.btn_goto_detail {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    width: 200px;
    height: 40px;
    font-size: 0.94rem;
    font-weight: bold;
    color: #959595;
    border: #9F9F9F 2px solid;
    border-radius: 20px;
    position: relative;
    transition: .3s all ease;
}

.btn_goto_detail:hover {
    border-color: #326eaa;
    color: #326eaa;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.1);
}

.common_box {}

.common_box>.box_header {
    margin-bottom: 2em;
}

.common_box>.box_header h2 {}

.common_box>.box_header h2 img {
    max-width: 100%;
    height: auto;
}

.common_box>.box_inner {
    margin-bottom: 2rem;
}

.common_box>.box_inner .lbl1 {
    font-size: 1.8rem;
    line-height: 1.4;
    font-weight: 500;
    margin-bottom: 0.5em;
}

.common_box>.box_inner .lbl_text {
    line-height: 1.7;
}

/*home_outline_box*/
.home_outline_box {
    width: 60rem;
    position: relative;
    margin: 0 auto 7rem auto;
    transition: .7s all ease;
    transition-delay: .8s;
    opacity: 0;
    filter: blur(10px);
    transform: translateX(2rem);
}

.home_outline_box.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.home_outline_box>.box_header h2 {
    color: #344b92;
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.4;
}

.home_outline_box>.box_inner {
    width: 55rem;
}

.home_outline_box>.box_inner p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.home_outline_box .lbl_trp_channels {
    width: 27.5rem;
    position: absolute;
    top: 4rem;
    right: -6.25rem;
}

.home_outline_box .lbl_fig_memori {
    width: 1.5rem;
    position: absolute;
    top: 16.75rem;
    right: -11.25rem;
}

.home_outline_box .lbl_trp_channels img,
.home_outline_box .lbl_fig_memori img {
    max-width: 100%;
    height: auto;
}

/*home_research_box*/
.home_research_box {
    width: 63.75rem;
    position: relative;
    margin: 0 auto;
    transition: .5s all ease;
    transition-delay: .3s;
    opacity: 0;
    filter: blur(10px);
}

.home_research_box::before {
    content: "";
    display: block;
    width: 15rem;
    height: 41rem;
    background: url(../shared/bg_fig_research_01.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 17.5rem;
    left: -13.25rem;
}

.home_research_box::after {
    content: "";
    display: block;
    width: 15rem;
    height: 41rem;
    background: url(../shared/bg_fig_research_02.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: 17.5rem;
    right: -13.25rem;
}

.home_research_box.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.home_research_box .box_header {
    width: 60rem;
    margin: 0 auto 4rem auto;
}

.home_research_box .box_header h2 .lbl_en {
    font-family: "Shippori Mincho B1", serif;
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.3;
}

.home_research_box .box_header h2 .lbl_ja {
    font-size: 1.1rem;
}

.research_list_wrap {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.research_list_wrap dl {
    width: 55rem;
}

.research_list_wrap dl dt {
    margin-bottom: 0.5rem;
}

.research_list_wrap dl dt a {
    transition: .3s all ease;
}

.research_list_wrap dl dt a:hover {
    filter: brightness(1.1);
}

.research_list_wrap dl dt img {
    max-width: 100%;
    height: auto;
}

.research_list_wrap dl dd {
    font-size: 1.1rem;
    margin: 0 0.3rem;
    text-align: center;
}

.f_links_box {
    padding: 2.5rem 0;
}

.f_links_box ul {
    display: flex;
    justify-content: center;
}


.f_links_box ul li {
    padding: 0 0 0 1.5rem;
    margin: 0 3rem 0 0;
    position: relative;
}

.f_links_box ul li:last-child {
    margin: 0;
}

.f_links_box ul li:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border: 1px solid #222;
    position: absolute;
    top: 2px;
    left: 5px;
}

.f_links_box ul li:after {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 1px solid #222;
    border-left: 1px solid #222;
    position: absolute;
    top: 5px;
    left: 3px;
}


.f_links_box ul li a {
    text-decoration: none;
    color: #222;
}

.f_links_box ul li a:hover {
    text-decoration: underline;
}

.home_research_box .box_inner .research_btn a {
    display: block;
    width: 7rem;
    margin: 1.5rem auto 0;
    padding: 0.6rem 3.5rem 0.6rem 2rem;
    border-radius: 2rem;
    border: 2px solid #344b92;
    color: #344b92;
    position: relative;
    text-decoration: none;
    transition: .3s all ease;
}

.home_research_box .box_inner .research_btn a::after {
    content: "";
    display: block;
    width: 1rem;
    height: 1rem;
    background: url(../shared/icon_arrow_bk.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: calc(50% - 0.5rem);
    right: 2rem;
    transition: .3s all ease;
}

.home_research_box .box_inner .research_btn a:hover {
    background-color: #344b92;
    color: #ffffff;
    text-decoration: none;
}

.home_research_box .box_inner .research_btn a:hover::after {
    background: url(../shared/icon_arrrow_w.png) no-repeat;
    background-size: contain;
    display: block;
}



@media screen and (min-width:1px) and (max-width:1400px) {

    .home_outline_box {
        width: 50rem;
    }

    .home_outline_box>.box_inner {
        width: 41.875rem;
    }

    .home_research_box .box_header {
        width: 50rem;
    }

    .home_outline_box .lbl_trp_channels {
        top: 11.25rem;
    }

    .home_news_box {
        width: 50rem;
    }

    .research_list_wrap dl {
        width: 27.5rem;
    }

    .research_list_wrap dl dd {
        font-size: 1rem;
    }

    .research_list_wrap dl {
    width: 43rem;
}
}

/*ipad*/
@media screen and (min-width:1px) and (max-width:1024px) {
    header {
        background: url(../shared/bg_home_catch.png) no-repeat;
        background-size: 96rem 52rem;
        background-position: top center;
    }

    .contents {
        background: url(../shared/bg_home_catch.png) no-repeat;
        background-size: 96rem 52rem;
        background-position: top center;
    }

    .mainvisual {
        min-height: 26rem;
    }

    .mainvisual>.box_inner {
        width: 90vw;
        margin: 0 auto;
        padding-top: 8rem;
    }

    .mainvisual>.box_inner .lbl1 {
        font-size: 2.5rem;
    }

    .mainvisual>.box_inner .mv_content {
        width: 29rem;
        margin: 0 3rem 0 auto;
    }

    .mainvisual>.box_inner .mv_image_01 {
        width: 9.4rem;
        position: absolute;
        top: 1.2rem;
        left: 0.2rem;
    }

    .mainvisual>.box_inner .mv_image_02 {
        width: 9.4rem;
        position: absolute;
        top: 5.6rem;
        left: 7.8rem;
    }

    .mainvisual>.box_inner .mv_image_03 {
        width: 10.7rem;
        position: absolute;
        top: 0.8rem;
        right: 2.4rem;
    }

    .mainvisual>.box_inner .mv_image_04 {
        width: 7rem;
        position: absolute;
        bottom: 0;
        left: -3rem;
    }

    .mainvisual>.box_inner .mv_fig_bosyu {
        position: absolute;
        top: 17.6rem;
        left: 4rem;
    }

    .mainvisual>.box_inner .mv_fig_bosyu a {
        width: 12rem;
    }

    .mainvisual>.box_inner .lbl2 {
        font-size: 1rem;
    }

    .home_outline_box {
        width: 80vw;
        margin: 0 auto 4rem auto;
    }

    .home_outline_box>.box_inner {
        width: 70vw;
    }

    .home_outline_box .lbl_trp_channels {
        width: 22rem;
        position: absolute;
        top: 14rem;
        right: -2rem;
    }

    .home_outline_box .lbl_fig_memori {
        width: 1.2rem;
        position: absolute;
        top: 21.4rem;
        right: -4.5rem;
    }

    .home_research_box {
        width: 85vw;
    }

    .home_research_box .box_header {
        width: 80vw;
        margin: 0 auto 2rem auto;
    }

    .research_list_wrap dl {
        width: calc((100% - 2rem) / 2);
    }

    .home_research_box::before {
        content: "";
        display: block;
        width: 12rem;
        height: 32.8rem;
        background: url(../shared/bg_fig_research_01.png) no-repeat;
        background-size: contain;
        position: absolute;
        top: 14rem;
        left: -10.6rem;
    }

    .home_research_box::after {
        content: "";
        display: block;
        width: 12rem;
        height: 32.8rem;
        background: url(../shared/bg_fig_research_02.png) no-repeat;
        background-size: contain;
        position: absolute;
        top: 14rem;
        right: -10.6rem;
    }

    .home_news_box {
        width: 80vw;
        margin: 5rem auto 0 auto;
    }

    .home_news_box>.box_inner .news_list_box ul li .entry_title {
        width: calc(100% - 6rem);
    }

}

/* ##########SP横向き########## */
@media screen and (min-width:1px) and (max-width:768px) {}

/* ##########SP########## */
@media screen and (min-width:1px) and (max-width:479px) {
    header {
        background: url(../shared/bg_home_catch.png) no-repeat;
        background-size: 60rem 32.5rem;
        background-position: top center;
    }

    .contents {
        background: url(../shared/bg_home_catch.png) no-repeat;
        background-size: 60rem 32.5rem;
        background-position: top center;
    }

    .mainvisual {
        margin-bottom: 4rem;
        min-height: 23rem;
    }

    .mainvisual>.box_inner {
        padding-top: 8rem;
    }

    .mainvisual>.box_inner .mv_content {
        width: auto;
        margin: 0;
    }

    .mainvisual>.box_inner .lbl1 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .mainvisual>.box_inner .lbl2 br {
        display: none;
    }

    .mainvisual>.box_inner .mv_image_01 {
        width: 6.58rem;
        position: absolute;
        top: 0.5rem;
        left: 0;
    }

    .mainvisual>.box_inner .mv_image_02 {
        width: 6.58rem;
        position: absolute;
        top: 1.8rem;
        left: 6.5rem;
    }

    .mainvisual>.box_inner .mv_image_03 {
        width: 7.49rem;
        position: absolute;
        top: 1.4rem;
        right: 1.2rem
    }

    .mainvisual>.box_inner .mv_image_04 {
        width: 4.9rem;
        position: absolute;
        bottom: -4rem;
        left: 9.5rem;
    }

    .mainvisual>.box_inner .more {
        margin-top: 1rem;
    }

    .mainvisual>.box_inner .mv_fig_bosyu {
        position: absolute;
        top: auto;
        bottom: -5rem;
        left: 0;
    }

    .mainvisual>.box_inner .mv_fig_bosyu a {
        width: 8.4rem;
    }


    .mainvisual.show>.box_inner .more a {
        margin-right: 2rem;
    }

    .home_outline_box {
        width: 85vw;
        margin: 0 auto 4rem auto;
    }

    .home_outline_box>.box_header h2 {
        font-size: 1.4rem;
    }

    .home_outline_box>.box_inner {
        width: 75vw;
    }

    .home_outline_box>.box_inner p {
        font-size: 1rem;
    }


    .home_outline_box .lbl_trp_channels {
        width: 11rem;
        position: absolute;
        top: auto;
        bottom: -5rem;
        right: -1rem;
    }

    .home_research_box .box_header {
        width: 85vw;
    }

    .home_research_box .box_header h2 .lbl_en {
        font-size: 2.5rem;
    }

    .research_list_wrap {
        flex-direction: column;
        align-items: center;
    }

    .research_list_wrap dl {
        width: 70vw;
    }

    .home_news_box {
        width: 85vw;
    }

    .home_news_box>.box_header h2 .lbl_en {
        font-size: 2.5rem;
    }

    .home_news_box>.box_header .more a {
        padding: 0.8rem 2.5rem 0.8rem 1.5rem;
    }

    .home_news_box>.box_header .more a::after {
        position: absolute;
        top: calc(50% - 0.5rem);
        right: 1rem;
    }

    .home_news_box>.box_header .more a:hover::after {
        position: absolute;
        top: calc(50% - 0.5rem);
        right: 0.5rem;
    }

    .home_news_box>.box_inner .news_list_box ul li a,
    .home_news_box>.box_inner .news_list_box ul li .nolink {
        display: block;
    }

    .home_news_box>.box_inner .news_list_box ul li .entry_title {
        display: block;
        width: auto;
        padding-left: 0;
        margin-top: 0.3rem;
    }

}


/* ##########印刷用########## */
@media print {}