@charset "UTF-8";

/*=======================
  共通
  =======================*/
html {
    height: -webkit-fill-available;
}
body {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "HiraKakuPro-W3", "メイリオ", Meiryo, Verdana, sans-serif;
    font-size: 18px;
    line-height: 28.8px;
    color: #333333;
}
@media (max-width: 768px) {
    body {
        font-size: 16px;
        line-height: 1.5;
    }
}
img {
    max-width: 100%;
    height: auto;
}
.sec a:not([class]) {
    color: #3f5999;
    border-bottom: 1px solid #3f5999;
}
.l_container {
    position: relative;
}

/* nav */
/*=======================*/
.l_header {
    position: fixed;
    width: 350px;
    height: 100%;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    background: #f4f4f4;
    overflow-y: hidden;
    z-index: 6;
}
.l_header .head {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 132px;
    /*background: #415b9a;*/
    background: #fff;
}
.l_header .head .logo {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 15px;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
}
.nav_wrap {
    position: relative;
    padding: 28px 25px;
    z-index: 4;
}
.nav_list .item {
    border-bottom: 1px solid #415b9a;
}
.nav_list._member .item {
    border-bottom: 1px solid #de6807;
}
.nav_list .item .link {
    display: flex;
    align-items: center;
    position: relative;
    height: 64px;
    padding-left: 27px;
    color: #444444;
    background-color: transparent;
    font-size: 18px;
    font-weight: bold;
    line-height: 21.6px;
    transition: color .3s, background-color .3s;
}
.nav_list .item .link::before {
    content: "";
    display: block;
    position: absolute;
    width: 15px;
    height: 3px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #415b9a;
    transition: background-color .3s;
}
.nav_list._member .item .link::before {
    background-color: #de6807;
}
@media (min-width: 769px) {
    .l_header {
        min-height: 829px;
    }
    .nav_wrap {
        height: calc(100vh - 132px);
        overflow-y: auto;
    }
    .nav_list .item .link:hover {
        background-color: #415b9a;
        color: #fff;
    }
    .nav_list._member .item .link:hover {
        background-color: #de6807;
    }
    .nav_list .item .link:hover::before {
        background-color: #fff;
    }
}
.nav_wrap .btn_wrap {
    margin: 20px auto 0;
}
.nav_wrap .btn_wrap .btn {
    display: flex;
    align-items: center;
    position: relative;
    height: 65px;
    padding-left: 27px;
    color: #fff;
    background-color: #415b9a;
    font-size: 18px;
    font-weight: bold;
    line-height: 21.6px;
    opacity: 1;
    transition: opacity .3s;
}
.nav_wrap .btn_wrap .btn .ico {
    position: absolute;
    right: 27px;
}
.nav_wrap .btn_wrap .btn._calendar .ico {
    right: 29px;
}
.nav_wrap .btn_wrap .btn + .btn {
    margin-top: 16px;
}
.nav_wrap .btn_wrap .btn._member {
    /*display: none;*/
    background-color: #de6807;
}
.nav_wrap .btn_wrap .btn._logout {
    background-color: #e30289; 
}
.nav_wrap .btn_wrap .btn:hover {
    opacity: .7;
}

/* main visual */
/*=======================*/
.l_main_visual {
    position: relative;
    height: 400px;
}
.l_main_visual._top {
    height: 750px;
}
.l_main_visual._top .txt {
    position: absolute;
    z-index: 2;
    width: 813px;
    right: 146px;
    bottom: 117px;
}
.l_main_visual .kv {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 400px;
    object-fit: cover;
}
.l_main_visual._top .kv {
    height: 750px;
}
.l_main_visual .c_ttl4 {
    position: absolute;
    z-index: 2;
    top: 90px;
    left: 113px;
}
.l_main_visual .c_ttl4::before {
    content: "";
    display: block;
    position: absolute;
    width: 84px;
    height: 5px;
    left: -113px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #fff;
}
@media (max-width: 1920px) {
    .l_main_visual {
        height: 20.8vw;
        min-height: 150px;
    }
    .l_main_visual._top {
        height: 39.1vw;
        min-height: 200px;
    }
    .l_main_visual._top .txt {
        width: 42.3vw;
        min-width: 220px;
        right: 7.6vw;
        bottom: 6.1vw;    
    }
    .l_main_visual .kv {
        height: 20.8vw;
        min-height: 150px;
    }
    .l_main_visual._top .kv {
        height: 39.1vw;
        min-height: 200px;
    }
}
@media (max-width: 1270px) {
    .l_main_visual .c_ttl4 {
        top: 50%;
        transform: translateY(-50%);
        left: 50px;
    }
    .l_main_visual .c_ttl4::before {
        width: 40px;
        left: -50px;
    }
}
@media (max-width: 512px) {
    .l_main_visual._top .txt {
        right: 29px;
        bottom: 30px;    
    }
}


/* main */
/*=======================*/
.l_main {
    padding: 80px 50px 70px;
}
.l_main._top {
    padding: 133px 50px 70px;
}

@media (min-width: 769px) {
    .pc {
        display: block;
    }
    .pc_i {
        display: inline;
    }
    .sp {
        display: none;
    }
}
@media (min-width: 1271px) {
    .l_content {
        position: relative;
        width: calc(100% - 350px);
        left: 350px;
    }
    #nav__spbar {
        display: none;
    }
}
@media (max-width: 768px) {
    .pc {
        display: none;
    }
    .pc_i {
        display: none;
    }
    .sp {
        display: block;
    }
    .l_main,
    .l_main._top {
        padding: 60px 20px;
    }
}
@media (max-width: 1270px) {
    /* nav */
    /*=======================*/
    .l_header {
        position: fixed;
        width: 100%;
        height: 80px;
        min-height: 0;
        top: 0;
        left: 0;
        background: #f4f4f4;
        transition: height .3s;
    }
    .l_header .head {
        position: fixed;
        justify-content: space-between;
        width: 100%;
        height: 80px;
        padding: 5px 15px 5px 0;
        z-index: 5;
    }
    .l_header .head .logo {
        align-items: center;
        font-size:18px;
        line-height: 1.3;
    }
    .l_header .head .logo .pc {
        display: none;
    }
    .l_header .head .logo .logo02 {
        width: 45px;
        height: 45px;
    }
    .l_header .head .logo .logo03 {
        width: auto;
        height: 45px;
    }
    .l_header .nav_wrap {
        position: relative;
        top: 80px;
        max-width: 320px;
        margin: 0 auto;
        padding: 28px 15px;
    }
    #nav__spbar {
        display: block;
        position: absolute;
        width: 65px;
        height: 55px;
        right: 0;
        top: 12px;
        cursor: pointer;
        z-index: 999;
    }
    #nav__spbar::before {
        content: "";
        display: block;
        position: absolute;
        width: 65px;
        height: 55px;
        top: 0;
        left: -10px;
    }
    #nav__spbar {
		display: block;
		pointer-events: fill;
	}
    #nav__spbar span {
        position: absolute;
        width: 55%;
        height: 2px;
        left: 7%;
        /*background: #fff;*/
        background: #333;
        transform: rotate(0);
        opacity: 1;
        transition: transform .3s, top .3s, left .3s, opacity .3s;
    }
    #nav__spbar span:first-of-type {
        top: 25%;
    }
    #nav__spbar span:nth-of-type(2) {
        top: 50%;
    }
    #nav__spbar span:last-of-type {
        top: 75%;
    }
    #nav__spbar.active span:first-of-type {
        transform: rotate(45deg);
        top: 50%;
    }
    #nav__spbar.active span:nth-of-type(2) {
        opacity: 0;
    }
    #nav__spbar.active span:last-of-type {
        transform: rotate(-45deg);
        top: 50%;
    }
    .l_container {
        position: relative;
        top: 80px;
    }
}
@media (max-width: 768px) {
    .l_header .head .logo {
        font-size: 2.5vw;
    }
    .nav_list .item .link {
        height: 45px;
        font-size: 16px;
    }
    .nav_wrap .btn_wrap .btn + .btn {
        margin-top: 10px;
    }
}

/* breadcrumb */
/*=======================*/
.l_breadcrumb {
    display: flex;
    position: relative;
    align-items: center;
    height: 60px;
    background-color: #f7f7f7;
    overflow-x: auto;
}
.l_breadcrumb .breadcrumb {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    position: relative;
    width: fit-content;
    padding-left: 83px;
    font-size: 18px;
    line-height: 60px;
    word-break: keep-all;
    white-space: nowrap;
}
.l_breadcrumb .breadcrumb::before {
    position: absolute;
    display: block;
    content: "";
    width: 15px;
    height: 3px;
    left: 50px;
    top: 50%;
    transform: translateY(-50%);
    background-color: #3f5999;
}
.l_breadcrumb._member .breadcrumb::before {
    background-color: #de6807;
}
.l_breadcrumb .breadcrumb > span span {
    position: relative;
    word-break: keep-all;
}
.l_breadcrumb .breadcrumb > span span + span {
    padding-left: 36px;
    margin-left: 18px;
}
.l_breadcrumb .breadcrumb > span span + span::before {
    position: absolute;
    content: "＞";
    left: 0;
}
.l_breadcrumb .breadcrumb a {
    color: #3f5999;
    border-bottom: 1px solid #3f5999;
}
.l_breadcrumb._member .breadcrumb a {
    color: #de6807;
    border-bottom: 1px solid #de6807;
}
@media (min-width: 769px) {
    .l_breadcrumb .breadcrumb a:hover {
        border-bottom: 1px solid transparent;
    }
}
@media (max-width: 768px) {
    .l_breadcrumb {
        height: 50px;
    }
    .l_breadcrumb .breadcrumb {
        padding-left: 47px;
        font-size: 14px;
        line-height: 50px;
    }
    .l_breadcrumb .breadcrumb::before {
        left: 20px;
    }
    .l_breadcrumb .breadcrumb > span span + span {
        padding-left: 22px;
        margin-left: 9px;
    }
}

/* footer */
/*=======================*/
.l_footer .copy {
    width: 100%;
    padding: 0 50px;
    background-color: #415b9a;
    color: #fff;
    font-size: 14px;
    line-height: 50px;
    text-align: right;
}
.l_footer .address .logo {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}
.l_footer .address .logo .logo02 {
    width: auto;
    max-height: 65px;
}
.l_footer .footer_nav .item .link {
    display: flex;
    align-items: center;
    position: relative;
    height: 45px;
    padding-left: 16px;
    opacity: 1;
    transition: opacity .3s;
}
.l_footer .footer_nav .item._member {
    display: none;
}
.l_footer .footer_nav .item .link::before {
    content: "\f0da";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
	font-weight: 900;
    color: #11578a;
}
.l_footer .contact_wrap {
    width: 100%;
    margin: 30px 0 58px;
}
@media (min-width: 1271px) {
    .l_footer {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        flex-wrap: wrap;
        position: relative;
        width: calc(100% - 350px);
        left: 350px;
        margin-top: 10px;
        padding: 58px 50px 0;
        background-color: #f7f7f7;
    }
    .l_footer .footer_nav {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        width: calc(100% - 466px);
        max-width: 760px;
        margin-bottom: -7px;
    }
    .l_footer .footer_nav .item {
        width: 50%;
    }
    .l_footer .footer_nav .item .link:hover {
        opacity: .7;
    }
    .l_footer .copy {
        width: calc(100% + 100px);
        margin: 0 -50px;
    }
}
@media (min-width: 1529px) {
    .l_footer .footer_nav .item {
        width: 33.33%;
    }
}
@media (max-width: 1270px) {
    .l_footer {
        margin-top: 10px;
        padding: 58px 50px 0;
        background-color: #f7f7f7;
    }
    .l_footer .address {
        width: fit-content;
        margin: 0 auto 30px;
    }
    .l_footer .footer_nav {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        width: fit-content;
        margin: 0 auto;
    }
    .l_footer .footer_nav .item {
        width: 250px;
    }
    .l_footer .copy {
        width: calc(100% + 100px);
        margin: 0 -50px;
    }
    .l_footer .contact_wrap .c_btn4 {
        margin: 0 auto;
    }
}
@media (max-width: 768px) {
    .l_footer {
        margin-top: 0;
        padding: 40px 20px 0;
        background-color: #f7f7f7;
    }
    .l_footer .address {
        margin: 0 auto 20px;
    }
    .l_footer .address .logo {
        margin-bottom: 15px;
    }
    .l_footer .contact_wrap {
        width: 100%;
        margin: 30px 0 40px;
    }
    .l_footer .copy {
        width: calc(100% + 40px);
        margin: 0 -20px;
    }
}

/*=======================
  utility
  =======================*/

.u_txt2 {
    font-size: 20px;
    line-height: 32px;
}
.u_txt3 {
    font-size: 16px;
    line-height: 25.6px;   
}
@media (max-width: 768px) {
    .u_txt2 {
        font-size: 16px;
        line-height: 1.5;
    }
    .u_txt3 {
        font-size: 14px;
        line-height: 1.5; 
    }
}

.u_txt_c {
    text-align: center;
}

.u_bold {
    font-weight: bold;
}

.u_color1 {
    color: #fff;
}
.u_color2 {
    color: #000000;
}

/*=======================
  component
  =======================*/

/* ttl */
/*=======================*/
.c_ttl1 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    min-height: 70px;
    margin-bottom: 40px;
    background-color: #415b9a;
    color: #fff;
    font-size: 26px;
    line-height: 31.1px;
    text-align: center;
    font-weight: bold;
    letter-spacing: .1rem;
}
.c_ttl1 + .topics_box {
    margin-top: 61px;
}
@media (max-width: 768px) {
    .c_ttl1 {
        min-height: 50px;
        margin-bottom: 25px;
        padding: 0 10px;
        font-size: 22px;
        line-height: 1.5;
        text-align: left;
    }
    .c_ttl1 + .topics_box {
        margin-top: 30px;
    }
}

.c_ttl2 {
    margin-bottom: 20px;
    border-bottom: 2px solid #415a9c;
    font-size: 20px;
    line-height: 41.6px;
    font-weight: bold;
}
.c_ttl2:not(:first-child) {
    margin-top: 40px;
}
@media (max-width: 768px) {
    .c_ttl2 {
        font-size: 19px;
        line-height: 1.5;
    }
    .c_ttl2:not(:first-child) {
        margin-top: 30px;
    }
}

.c_ttl3 {
    margin-bottom: 40px;
    color: #fff;
    font-size: 36px;
    line-height: 57.6px;
    text-align: center;
    font-weight: bold;
    letter-spacing: .5rem;
}
.c_ttl3 .en {
    display: block;
    font-size: 14px;
    line-height: 22.4px;
}
@media (max-width: 768px) {
    .c_ttl3 {
        margin-bottom: 20px;
        font-size: 30px;
        line-height: 1.5;
    }
}

.c_ttl4 {
    color: #fff;
    font-size: 60px;
    line-height: 84px;
    font-weight: bold;
    letter-spacing: .1rem;
}
@media (max-width: 768px) {
    .c_ttl4 {
        font-size: 33px;
        line-height: 1.5;
    }
}

.c_ttl5 {
    display: flex;
    justify-content: center;
    flex-wrap: nowrap;
    position: relative;
    margin-bottom: 68px;
    font-size: 26px;
    line-height: 32px;
    font-weight: bold;
    letter-spacing: .1rem;
}
.c_ttl5:not(first-child) {
    margin-top: 60px;
}
.c_ttl5::after {
    content: "";
    display: block;
    position: absolute;
    width: 40px;
    height: 3px;
    bottom: -15px;
    background-color: #1e83ce;
}
@media (max-width: 768px) {
    .c_ttl5 {
        margin-bottom: 40px;
        font-size: 22px;
        line-height: 1.5;
    }
    .c_ttl5:not(first-child) {
        margin-top: 30px;
    }
    .c_ttl5::after {
        bottom: -10px;
    }
}

.c_ttl6 {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    min-height: 70px;
    margin-bottom: 61px;
    background-color: #de6807;
    color: #fff;
    font-size: 26px;
    line-height: 31.1px;
    text-align: center;
    font-weight: bold;
    letter-spacing: .1rem;
}
@media (max-width: 768px) {
    .c_ttl6 {
        min-height: 50px;
        margin-bottom: 30px;
        font-size: 22px;
        line-height: 1.5;
    }
}

.c_ttl7 {
    margin-bottom: 20px;
    border-bottom: 2px solid #de6807;
    font-size: 20px;
    line-height: 41.6px;
    font-weight: bold;
}
@media (max-width: 768px) {
    .c_ttl7 {
        font-size: 19px;
        line-height: 1.5;
    }
}

/* list */
/*=======================*/
.c_topics_list .list + .list {
    margin-top: 32px;
}
.c_topics_list .list .link {
    display: block;
    padding: 21px 21px 16px 21px;
    border: 1px solid #1d83ce;
    background-color: transparent;
    transition: background-color .3s;
}
.c_topics_list._member .list .link {
    border: 1px solid #de6807;
}
.c_topics_list .list .link .head {
    display: block;
    margin-bottom: 15px;
    font-weight: bold;
}
.c_topics_list .list .link .head .time {
    display: inline-block;
    width: 114px;
}
.c_topics_list .list .link .head .category {
    display: inline-block;
    width: 150px;
    color: #fff;
    background-color: #1d83ce;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
}
.c_topics_list .list .link .ttl {
    color: #3f5999;
    border-bottom: 1px solid #3f5999;
}
.c_topics_list._member .list .link .ttl {
    color: #de6807;
    border-bottom: 1px solid #de6807;
}
.c_topics_list .list span.link .ttl {
    border-bottom: none;
}
.c_topics_list .list .link._seminar {
    border: 1px solid #e10473;
}
.c_topics_list .list .link._seminar .head .category {
    background-color: #e10473;
}
.c_topics_list .list .link._conference {
    border: 1px solid #18c17e;
}
.c_topics_list .list .link._conference .head .category {
    background-color: #18c17e;
}
@media (min-width: 769px) {
    .c_topics_list .list .link:hover {
        background-color: #f1f1f1;
    }
    .c_topics_list .list span.link:hover {
        background-color: transparent;
    }
}
@media (max-width: 768px) {
    .c_topics_list .list + .list {
        margin-top: 15px;
    }
    .c_topics_list .list .link {
        padding: 12px 12px 10px 12px;
    }
    .c_topics_list .list .link .head {
        margin-bottom: 10px;
    }
    .c_topics_list .list .link .head .time {
        width: 106px;
    }
    .c_topics_list .list .link .head .category {
        background-color: #1d83ce;
        font-size: 14px;
        line-height: 25px;
    }
}

/* btn */
/*=======================*/
.c_btn1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 350px;
    height: 80px;
    margin: 0 auto;
    padding: 5px 21px 5px 28px;
    border: 1px solid #415a9c;
    background-color: transparent;
    color: #415a9c;
    font-weight: bold;
    transition: background-color .3s, color .3s;
}
.c_btn1._left {
    margin: 0;
}

.sec_column_btn{
	display:flex;
	flex-wrap:wrap;
	justify-content:left;
	width:730px;
	margin:0 auto 0;
}
	.sec_column_btn .c_btn1{
		width:350px;
		margin-left:0;
		margin-right:15px;
		margin-bottom:15px;
	}

@media (max-width: 800px) {
	.sec_column_btn{
		display:flex;
		flex-wrap:wrap;
		justify-content:space-between;
		width:100%;
	}
	.sec_column_btn .c_btn1{
		max-width:48.5%;
		width:48.5%;
		margin-right:0;
	}
}
@media (min-width: 769px) {
    .c_btn1:hover {
        background-color: #415a9c;
        color: #fff;
    }
}
@media (max-width: 768px) {
    .c_btn1 {
        height: 60px;
    }
}
@media (max-width: 600px) {
	.sec_column_btn{
		display:block;
		width:100%;
	}
	.sec_column_btn .c_btn1{
		max-width:100%;
		width:100%;
		margin-right:0;
	}
}

.c_btn2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 350px;
    height: 100px;
    padding: 5px 29px 5px 35px;
    border: 1px solid #415a9c;
    background-color: #415a9c;
    color: #fff;
    font-weight: bold;
    transition: background-color .3s, color .3s;
}
@media (min-width: 769px) {
    .c_btn2:hover {
        background-color: #fff;
        color: #415a9c;
    }
}
@media (max-width: 768px) {
    .c_btn2 {
        height: 80px;
    }
}

.c_btn3 {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 350px;
    height: 80px;
    margin: 0 auto;
    padding: 5px 21px 5px 28px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
    font-weight: bold;
    transition: background-color .3s, color .3s, border .3s;
}
@media (min-width: 769px) {
    .c_btn3:hover {
        border: 1px solid #415a9c;
        background-color: #fff;
        color: #415a9c;
    }
}
@media (max-width: 768px) {
    .c_btn3 {
        height: 60px;
    }
}

.c_btn4 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 360px;
    height: 45px;
    color: #fff;
    background-color: #415b9a;
    border: 1px solid #415b9a;
    transition: background-color .3s, color .3s;
}
@media (min-width: 769px) {
    .c_btn4:hover {
        background-color: #fff;
        color: #415b9a;
    }
}

.c_btn5 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 490px;
    height: 80px;
    margin: 0 auto;
    color: #fff;
    background-color: #415b9a;
    border: 1px solid #415b9a;
    transition: background-color .3s, color .3s;
}
.c_btn5 i {
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
}
@media (min-width: 769px) {
    .c_btn5:hover {
        background-color: #fff;
        color: #415b9a;
    }
}

.c_btn6 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 350px;
    height: 80px;
    margin: 0 auto;
    padding: 5px 21px 5px 28px;
    border: 1px solid #de6807;
    background-color: transparent;
    color: #de6807;
    font-weight: bold;
    transition: background-color .3s, color .3s;
}
.c_btn6._left {
    margin: 0;
}
@media (min-width: 769px) {
    .c_btn6:hover {
        background-color: #de6807;
        color: #fff;
    }
}
@media (max-width: 768px) {
    .c_btn6 {
        height: 60px;
    }
}

.c_btn7 {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 490px;
    height: 80px;
    margin: 0 auto;
    color: #fff;
    background-color: #de6807;
    border: 1px solid #de6807;
    transition: background-color .3s, color .3s;
}
.c_btn7 i {
    position: absolute;
    top: 50%;
    right: 22px;
    transform: translateY(-50%);
}
@media (min-width: 769px) {
    .c_btn7:hover {
        background-color: #fff;
        color: #de6807;
    }
}

.c_btn8 {
    display: flex;
    position: relative;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    height: 80px;
    margin: 0 auto;
    border: 1px solid #de6807;
    background-color: transparent;
    color: #de6807;
    font-weight: bold;
    transition: background-color .3s, color .3s;
}
.c_btn8 .year {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 112px;
    height: 100%;
    background-color: #de6807;
    text-align: center;
    color: #fff;
}
.c_btn8 .txt {
    display: flex;
    width: calc(100% - 112px);
    padding: 15px 30px 15px 20px;
}
.c_btn8::after {
    content: "";
    display: block;
    position: absolute;
    width: 15px;
    height: 3px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    background-color: #de6807;
}
.c_btn8._left {
    margin: 0;
}
@media (min-width: 769px) {
    .c_btn8:hover {
        background-color: #de6807;
        color: #fff;
    }
}
@media (max-width: 768px) {
    .c_btn8 {
        height: 60px;
    }
}

/* link_box */
/*=======================*/
.c_link_box {
    padding: 50px 40px;
    border: 1px solid #999999;
}
.paging + .c_link_box {
    margin-top: 40px;
}
.c_link_box .link_list {
    display: flex;
    flex-wrap: wrap;
    gap: 43px 25px;
}
.c_link_box .link_list .list {
    width: calc(25% - (75px / 3));
}
@media (max-width: 1270px) {
    .c_link_box .link_box {
        padding: 40px 30px;
    }
    .c_link_box .link_list {
        justify-content: center;
        gap: 43px 25px;
    }
    .c_link_box .link_list .list {
        width: calc(50% - 25px);
    }
    .c_link_box .link_list .list .c_btn1 {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .c_link_box {
        padding: 20px;
    }
    .c_link_box .link_list {
        justify-content: center;
        gap: 20px;
    }
    .c_link_box .link_list .list {
        width: 100%;
    }
}

.c_link_box2 .link_list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}
.c_link_box2 .link_list .list {
    width: calc(33.333% - 30px);
}
@media (max-width: 1656px) {
    .c_link_box2 .link_list {
        gap: 20px;
    }
    .c_link_box2 .link_list .list {
        width: calc(33.333% - 13.3333px);
    }
}
@media (max-width: 1618px) {
    .c_link_box2 .link_box {
        padding: 40px 30px;
    }
    .c_link_box2 .link_list {
        gap: 20px;
    }
    .c_link_box2 .link_list .list {
        width: calc(50% - 10px);
    }
    .c_link_box2 .link_list .list .c_btn1 {
        max-width: 100%;
    }
}
@media (max-width: 768px) {
    .c_link_box2 .link_list {
        justify-content: center;
        gap: 20px;
    }
    .c_link_box2 .link_list .list {
        width: 100%;
    }
}

/* table */
/*=======================*/
.sp_scroll {
    width: 100%;
    overflow-x: auto;
}
.c_table1,
.c_table1 table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #999999;
}
figure.c_table1 {
    border: none;
}
.c_table1 th,
.c_table1 td {
    /*padding: 26px 30px;*/
    padding: 15px 20px;
    border: 1px solid #999999;
    font-size: 18px;
}
.c_table1 th {
    background-color: #f9f9f9;
}
.c_table1 tr:first-of-type th {
    font-size: 22px;
}
@media (min-width: 769px) {
    .c_table1 tr:not(:first-of-type) th {
        width: 280px;
    }
}
@media (max-width: 768px) {
    .c_table1 {
        width: fit-content;
        min-width: 100%;
        word-break: keep-all;
        white-space: nowrap;
    }
    .c_table1 th,
    .c_table1 td {
        padding: 10px 10px;
        font-size: 16px;
    }
    .c_table1 tr:first-of-type th {
        font-size: 18px;
    }
}

.c_table2 {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #999999;
}
.c_table2 th,
.c_table2 td {
    /*padding: 26px 30px;*/
    padding: 15px 20px;
    border: 1px solid #999999;
    font-size: 18px;
}
.c_table2 th {
    background-color: #f9f9f9;
}
@media (min-width: 769px) {
    .c_table2 tr:not(:first-of-type) th {
        width: 280px;
    }
}
@media (max-width: 768px) {
    .c_table2 {
        width: fit-content;
        min-width: 100%;
        word-break: keep-all;
        white-space: nowrap;
    }
    .c_table2 th,
    .c_table2 td {
        padding: 10px 10px;
        font-size: 16px;
    }
    .c_table2 tr:first-of-type th {
        font-size: 18px;
    }
    #p_dousoukai-calendar .c_table2 tr:first-of-type th {
    	font-size:16px;
    }
}

.c_table3 {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #999999;
}
.c_table3 th,
.c_table3 td {
    /*padding: 26px 30px;*/
    padding: 15px 20px;
    border: 1px solid #999999;
    font-size: 18px;
}
.c_table3 th {
    background-color: #f9f9f9;
}
@media (min-width: 769px) {
    .c_table3 tr:not(:first-of-type) th {
        width: 280px;
    }
}
@media (max-width: 768px) {
    .c_table3 {
        min-width: 100%;
        border: none;
    }
    .c_table3 th,
    .c_table3 td {
        display: block;
        padding: 10px 10px;
        font-size: 16px;
        border-bottom: none;
    }
    .c_table3 tr:last-of-type td {
        border-bottom: 1px solid #999999;
    }
}

/* paging */
/*=======================*/
.paging {
    margin-top: 65px;
}
.pagenation .numbox,
.paging.pagenation  {
    display: flex;
    justify-content: center;
    gap: 15px;
}
.pagenation .numbox li,
.pagenation .page-numbers {
    width: 30px;
    height: 30px;
}
.pagenation .page-numbers {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
    background-color: #f1f1f1;
    color: #3f5999;
    line-height: 30px;
    text-align: center;
}
._member .pagenation .page-numbers {
    color: #de6807 !important;
}
.pagenation .page-numbers.prev,
.pagenation .page-numbers.next {
    left: 8px;
    background-color: #fff;
    color: transparent;
}
.pagenation .page-numbers.next {
    left: auto;
    right: 8px;
}
/*.pagenation .numbox li .page-numbers.prev:hover,
.pagenation .numbox li .page-numbers.next:hover {
    background-color: #f1f1f1;
}*/
.pagenation .page-numbers.prev::after {
    content: "＜";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #3f5999;
}
._member .pagenation .page-numbers.prev::after {
    color: #de6807 !important;
}
.pagenation .page-numbers.next::after {
    content: "＞";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    color: #3f5999;
}
._member .pagenation .page-numbers.next::after {
    color: #de6807 !important;
}
._member .pagenation .page-numbers {
    color: #de6807 !important;
}
.pagenation .page-numbers.current {
    background-color: #3f5999;
    color: #fff;
}
._member .pagenation .page-numbers.current {
    background-color: #de6807 !important;
    color: #fff !important;
}
@media (max-width: 768px) {
    .paging {
        margin-top: 45px;
    }
}

.c_financial_list {
    max-width: 800px;
    margin: 0 auto !important;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.c_financial_list li {
    width: 100%;
    margin: 0 !important;
    padding-left: 0 !important;
}
.c_financial_list li::before {
    display: none;
}
.c_financial_list li .link {
    display: block;
    padding: 10px;
    border-bottom: none;
    color: #de6807;
    background-color: #f1f1f1;
    border: 1px solid transparent;
    transition: border .3s;
}
.c_financial_list li .link:hover {
    border: 1px solid #de6807;
}

.c_movies_list {
    width: 100%;
    margin: 0 auto !important;
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}
.c_movies_list li {
    width: 49%;
    margin: 0 !important;
    padding-left: 0 !important;
}
.c_movies_list li::before {
    display: none;
}
.c_movies_list .movie {
    width: 100%;
}
@media (max-width: 768px) {
    .c_movies_list li {
        width: 100%;
    }
}