@charset "UTF-8";
/* CSS Document */
/*
font-family: 'Barlow', sans-serif;
font-family: 'Cormorant Garamond', serif;
font-family: 'Noto Sans JP', sans-serif;
font-family: 'Noto Serif JP', serif;
*/
.font_Barlow{
    font-family: 'Barlow', sans-serif;
}
.font_Cormorant{
    font-family: 'Cormorant Garamond', serif;    
}
.font_NotoSerif{
font-family: 'Noto Serif JP', serif;
}
.font_NotoSans{
    font-family: 'Noto Sans JP', sans-serif;
}

@media print {
	#ToolBar {
		display: none;
	}
	header div.floating_menu {
		top: none;
	}
}


body{
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    letter-spacing: 0.1em;
    line-height: 1.5;
    position: relative;
}

main{
    position: relative;
    height: 100%;
    /*overflow: hidden;*/
    z-index: 0;
}
main::after{
    content: "";
    position: fixed;
    width: 450px;
    height: 10000px;
    background-image: radial-gradient(#ccc 30%, transparent 30%);
    background-size: 3px 3px;
    background-position: 0 0, 3px 3px;
    transform: rotate(45deg);
    transform-origin: right top;
    top: -70px;
    left: 100%;
    z-index: -9999;
}
main#Home::after{
    left: 43%;
}

#page_wrapper{
    padding-right: 240px;
}
#contents_body{
    /*margin-bottom: 110px;*/
    margin-bottom: 80px;
}
section:not(.mv){
    margin-bottom: 110px;
}
.sec_inner{
    width: 90%;
    margin: 0 auto;
    max-width: 1000px;
}

a > img{
  transition: 0.3s;  
}
a:hover > img {
    opacity: 0.5;
}

.disp_pc{
    display: block;
    visibility: visible;
}
.disp_sp{
    display: none;
    visibility: hidden;
}


@media screen and (max-width: 1024px){
    .disp_pc{
    display: none;
    visibility: hidden;
    }
    .disp_sp{
    display: block;
    visibility: visible;
    }
    img{
        width: 100%;
        height: auto;
    }
    body{
        top: 0;
    }
    main:not(#Home){
        margin-top: 80px;
    }
}

@media screen and (max-width: 768px){
    main:not(#Home){
        margin-top: 65px;
    }
    main::after{
    top: 0;
    left: 76%;
    width: 300px;
    background: #f6f6f6;
    }
    #contents_body{
        margin-bottom: 60px;
    }
    section:not(.mv){
        margin-bottom: 80px;
    }
}

/*==================
header
==================*/
.global_header .floating_menu{
    position: fixed;
    left: 0;
    top: 0;
    right: 240px;
    width: auto;
    height: 70px;
    box-shadow: 0px 3px 6px rgba(0,0,0,0.1);
    background: #fff;
    z-index: 9995;
}
.global_header .floating_menu ul{
    display: flex;
    margin: 0;
    padding: 0;
}
.global_header .floating_menu ul li{
    flex-grow: 1;
    border-right: 1px solid #DDDDDD;
    margin: 8px 0;
    text-align: center;
    width: calc(100% / 4);
}
.global_header .floating_menu ul li:last-of-type{
    border-right: none;
}
.global_header .floating_menu ul li a p{
    transition: 0.3s;    
}
.global_header .floating_menu ul li a:hover p{
    color: #D52E31;
}
.global_header .floating_menu ul li .head_nav_ico svg{
    width: 100%;
    height: 29px;
    object-fit: cover;
    fill:#D52E31
}
.global_header .side_nav{
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9994;
}
.global_header .side_nav .side_nav_inner{
    background: #E8EBEB;
    width: 240px;
    height: 100%;
    -webkit-overflow-scrolling: touch;
    border-left: 1px solid #D0D6D8;    
    overflow-y: auto;
    overflow-x: hidden;
}
.global_header .side_nav .site_logo{
    text-align: center;
    padding: 28px 31px 33px;
    border-bottom: 1px solid #D1D6D8;
}
.global_header .side_nav .site_logo img{
    width: 100%;
    height: auto;
}
.global_header .side_nav .search form{
    background: #F4F5F5;
    height: 50px;
    border-radius: 50px;
    margin: 10px;
    display: flex;
    align-items: center;
}
.global_header .side_nav .search .search_box{
    line-height: 1.8em;
    font-size: 13px;
    padding-left: 13px;
    flex-grow: 1;
    width: 180px;
}
.global_header .side_nav .search .search_btn{
    margin-left: auto;
    padding-right: 14px;
    padding-left: 11px;
}
.global_header .side_nav .utility_menu_wrap{
/*    position: relative;*/
}
.global_header .side_nav .utility_menu_wrap .utility_menu{
    display: flex;
    margin: 0;
    padding: 0;
}
.global_header .side_nav .utility_menu_wrap .utility_menu li{
    flex-grow: 1;
    text-align: center;
    width: calc(100% / 3);
    background: #fff;
    border-right: 1px solid #E8EBEB;
    transition: 0.2s;
}
.global_header .side_nav .utility_menu_wrap .utility_menu li:last-of-type{
    border-right: none;
}
.global_header .side_nav .utility_menu_wrap .utility_menu li a{
    display: block;
    width: 100%;
    height: 75px;
    position: relative;
    padding-top: 15px;
    cursor: pointer;
    z-index: 0;
    color: #000;
    font-size: 12px;
}
.global_header .side_nav .utility_menu_wrap .utility_menu li a::after{
    content: "";
    position: absolute;
    height: 3px;
    width: 100%;
    background: #D52E31;
    bottom: 0;
    left: 0;
    transition: 0.3s;
    z-index: -1;
}
.global_header .side_nav .utility_menu_wrap .utility_menu li a p{
    font-size: 11px;
    letter-spacing: 0.05em;
}
.global_header .side_nav .utility_menu_wrap .utility_menu li .utility_menu_ico svg{
    width: 100%;
    height: 25px;
    object-fit: cover;
    fill:#D52E31;
    transition: 0.3s;
}
.global_header .side_nav .utility_menu_wrap .utility_menu li a:hover,
.global_header .side_nav .utility_menu_wrap .utility_menu li a.active{
    color: #fff;
}
.global_header .side_nav .utility_menu_wrap .utility_menu li a:hover::after,
.global_header .side_nav .utility_menu_wrap .utility_menu li a.active::after{
    height: 100%;
}
.global_header .side_nav .utility_menu_wrap .utility_menu li a:hover .utility_menu_ico svg,
.global_header .side_nav .utility_menu_wrap .utility_menu li a.active .utility_menu_ico svg{
    fill:#fff;
}
.global_header .side_nav .utility_menu_wrap .lang_menu{
    background: #D52E31;
    font-size: 14px;
    position: absolute;
    right: 260px;
    top: 154px;
    width: 109px;
    border-radius: 12px;
    padding: 20px 16px;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
    z-index: 9999;
}
.global_header .side_nav .utility_menu_wrap .lang_menu.open{
    visibility: visible;
    opacity: 1;
}
.global_header .side_nav .utility_menu_wrap .lang_menu::after{
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 0 10px 14px;
    border-color: transparent transparent transparent #d52e31;
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
}
.global_header .side_nav .utility_menu_wrap .lang_menu li{
    line-height: 2em;
}
.global_header .side_nav .utility_menu_wrap .lang_menu li a{
    color: #fff;
}
.global_header .side_nav .utility_menu_wrap .lang_menu li a:hover{
    text-decoration: underline;
}
.global_header .side_nav .gnav ul{
    margin: 10px 0;
    padding: 0;
}
.global_header .side_nav .gnav_item_inner a{
    display: block;
    /*height: 55px;*/
    padding: 14px 19px;
    line-height: 1.0em;
    transition: 0.2s;
    margin-bottom: 7px;
}
.global_header .side_nav .gnav_item_inner a:hover,
.global_header .side_nav .gnav_item_inner a.open{
    background: #d52e31;
    color: #fff!important;
}
.global_header .side_nav .gnav_item_inner a p{
    font-size: 15px;
	font-family: 'Cormorant Garamond', serif;
}
.global_header .side_nav .gnav_item_inner a p span{
    font-family: 'Cormorant Garamond', serif;    
    color: #D52E31;
    font-size: 11px;
    margin-top: 10px;
    transition: 0.2s;
	display: none;
}
.global_header .side_nav .gnav_item_inner a:hover p span,
.global_header .side_nav .gnav_item_inner a.open p span{
    color: #fff;
}
.global_header .side_nav .gnav_second_level .second_level_head{
    height: 155px;
}
.global_header .side_nav .gnav_second_level .second_level_head img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.global_header .side_nav .gnav_second_level{
    position: absolute;
    right: 240px;
    top: 0;
    bottom: 0;
    height: 100%;
    z-index: -1;
    width: 250px;
    display: none;
}
.global_header .side_nav .gnav_second_level.open{
 
}

.global_header .side_nav .gnav_second_level_inner{
    background: #E6EBEB;
    height: 100%;
}
.global_header .side_nav .gnav_second_level ul{
    margin: 0;
    padding: 0;
}
.global_header .side_nav .gnav_second_level ul a{
    display: block;
    padding: 10px 32px 10px 15px;
    font-size: 13px;
    border-bottom: 1px solid #D0D6D8;
    position: relative
}
.global_header .side_nav .gnav_second_level ul a:hover{
    background: #fff;
}
.global_header .side_nav .gnav_second_level ul a::after{
    content: "";
    border-top: 1px solid #D52E31;
    border-right: 1px solid #D52E31;
    width: 8px;
    height: 8px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.global_header .side_nav .sub_menu{
    margin: 0;
    padding: 0;
    display: flex;
}
.global_header .side_nav .sub_menu li{
    flex-grow: 1;
    width: 50%;
    position: relative;
}
.global_header .side_nav .sub_menu li:first-of-type::after{
    content: "";
    border-right: 1px solid #D1D6D8;
    height: 33px;
    position: absolute;
    right: -0.5px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.global_header .side_nav .sub_menu li .link_btn{
    position: relative;
    background: #DFE3E5;
    width: 100%;
    font-size: 12px;
    height: 55px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #D1D6D8;
    transition: 0.2s;
}
.global_header .side_nav .sub_menu li .link_btn:hover{
    background: #ECEEEF;
}
.global_header .side_nav .sub_menu li .link_txt{
    position: relative;
    display: flex;
    align-items: center;
    color: #000!important;
}

.global_header .side_nav .sns_menu{
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 16px 0 40px;
    padding: 0;
}
.global_header .side_nav .sns_menu li{
    width: 30px;
    height: 30px;
    margin: 0 5px;
}
.global_header .side_nav .sns_menu li svg,
.global_header .side_nav .sns_menu li img {
    width: 100%;
    height: 100%;
    /*fill:#aaa;*/
    /*transition: 0.3s;*/
}
.global_header .side_nav .sns_menu li a:hover svg{
    /*fill:#D52E31;*/
}
.global_header .side_nav .sns_menu li svg use{
    transition: 0.3s;
}
.global_header .side_nav .sns_menu li svg use[href*="#facebook"]{
    fill:#1877F2;
}
.global_header .side_nav .sns_menu li svg use[href*="#twitter"]{
    fill:#1d9bf0;
}
.global_header .side_nav .sns_menu li svg use[href*="#x"]{
    fill:#000000;
}
.global_header .side_nav .sns_menu li svg use[href*="#LINE"]{
    fill:#06C755;
}
.global_header .side_nav .sns_menu li svg use[href*="#youtube"]{
    fill:#FF0000;
}
.global_header .side_nav .sns_menu li svg use:hover{
    opacity: 0.7;
}

@media screen and (max-width: 1024px){
    #page_wrapper{
        padding-right: 0;
    }
    .sp_header{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 80px;
        display: flex;
        align-items: center;
        background: #fff;
        z-index: 9995;
    }
    .sp_header .site_logo{
        padding-left: 2.5vw;
        width: 210px;
    }
    .sp_header .lang_menu_wrap{
        margin-left: auto;
        height: 100%;
        width: 80px;
    }
    .sp_header .lang_menu_wrap .btn_lang{
        display: block;
        background: #fff;
        height: 100%;
        color: #000;
        font-size: 11px;
        text-align: center;
        letter-spacing: 0;
        padding-top: 17px;
        transition: 0.3s;
    }
    .sp_header .lang_menu_wrap .btn_lang svg{
        width: 100%;
        height: 26px;
            transition: 0.3s;
    }
    .sp_header .lang_menu_wrap .btn_lang.active{
        color: #D52E31;
    }
    .sp_header .lang_menu_wrap .btn_lang.active svg{
        fill:#D52E31;
    }
    .sp_header .ham_btn{
        background: #E8EBEB;
        height: 100%;
        width: 80px;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 32px 28px;
    }
    .sp_header .ham_btn span{
        width: 24px;
        height: 2px;
        background: #000;
        transition: 0.2s;
    }
    .sp_header .ham_btn span:nth-of-type(3){
        width: 16px;
    }
    .sp_header .ham_btn.active span:nth-of-type(1){
        transform: translateY(7.5px) rotate(45deg);
    }
    .sp_header .ham_btn.active span:nth-of-type(2){
        opacity: 0;
    }
    .sp_header .ham_btn.active span:nth-of-type(3){
        transform: translateY(-6.5px) rotate(-45deg);
        width: 24px;
    }
    
    .sp_floating_menu{
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #fff;
        height: 80px;
        z-index: 9995;
    }
    .sp_floating_menu ul{
        display: flex;
        margin: 0;
        padding: 0;
        height: 100%;
    }
    .sp_floating_menu ul li{
        width: calc(100% / 4);
        flex-grow: 1;
        height: 100%;
        border-right: 1px solid #D1D6D8;
        padding: 0;
    }
    .sp_floating_menu ul li a{ 
        display: block;
        position: relative;
        text-align: center;
        height: 100%;
        padding: 13px 0;
    }
    .sp_floating_menu ul li a::before{
        content: "";
        position: absolute;
        background: #D52E31;
        height: 3px;
        top: 0;
        left: 0;
        right: 0;
        transition: 0.3s;
        z-index: -1;
    }
    .sp_floating_menu ul li .head_nav_ico{
    height: 36px;
    width: 47px;
        margin: 0px auto;
    }
    .sp_floating_menu ul li .head_nav_ico svg{
    object-fit: scale-down;
    width: 100%;
    height: 100%;
    fill:#D52E31;
    }
    .sp_floating_menu ul li .head_nav_ico p{
        font-size: 12px;
    }
    .sp_floating_menu ul li a:hover{
        color: #fff;
    }
    .sp_floating_menu ul li a:hover::before{
        height: 100%;
    }
    .sp_floating_menu ul li a:hover .head_nav_ico svg{
        fill:#fff;
    }
    
    .global_header .side_nav{
        top: 80px;
        transition: 0.5s;     
        visibility: hidden;
    }
    .global_header .side_nav.open{
        visibility: inherit;
    }
    .global_header .overlayer{
        background: rgba(0,0,0,0.6);
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
    }
    .global_header .overlayer.open{
        opacity: 1;
        visibility: inherit;
    }
    .global_header .side_nav .side_nav_inner{
        border-left: none;
        height: 0;
        transition: 0.5s;
    }
    .global_header .side_nav.open .side_nav_inner{
        height: 100%;
    }
    .global_header .side_nav .gnav_second_level.open{
        right: 0;
        opacity: 0;
        visibility: hidden;
    }
    .global_header .side_nav .utility_menu_wrap .utility_menu{
        display: none;
    }
    .global_header .side_nav .utility_menu_wrap .lang_menu{
        background: #E8EBEB;
        margin: 0;
        padding: 0;
        width: 100%;
        position: absolute;
        right: 0;
        top: 0;
        opacity: 0;
        visibility: hidden;
        transition: 0.5s;
        border-radius: 0;
    }
    .global_header .side_nav .utility_menu_wrap .lang_menu::after{
        content: none;
    }
    .global_header .side_nav .utility_menu_wrap .lang_menu.open{
        opacity: 1;
        visibility: visible;
    }
    .global_header .side_nav .utility_menu_wrap .lang_menu li a{
        display: block;
        color: #333;
        line-height: 45px;
        padding-left: 20px;
        border-bottom: 1px solid #D0D6D8;
        position: relative;
    }
    .global_header .side_nav .utility_menu_wrap .lang_menu li a::after{
        content: "";
        border-top: 1px solid #D52E31;
        border-right: 1px solid #D52E31;
        width: 8px;
        height: 8px;
        position: absolute;
        right: 22px;
        top: 50%;
        transform: translateY(-50%) rotate(45deg);
    }
    .global_header .side_nav .gnav_second_level{
        top: 0;
    }
}

@media screen and (max-width: 768px){
    .global_header .side_nav{
        top: 65px;
        visibility: hidden;
    }
    .global_header .side_nav.open{
        visibility: visible;
    }
    .global_header .side_nav .side_nav_inner{
        width: 100vw;
    }
    .global_header .side_nav .sub_menu li .link_btn{
        font-size: 15px;
    }
    .global_header .side_nav .sns_menu{
        margin-bottom: 110px;
    }
    .global_header .side_nav .sns_menu li{
        margin: 0 10px;
    }
    .sp_header{
        height: 65px;
    }
    .sp_header .site_logo{
        width: 170px;
    }
    .sp_header .lang_menu_wrap{
        width: 65px;
    }
    .sp_header .lang_menu_wrap .btn_lang{
        font-size: 10px;
        padding-top: 11px;
    }
    .sp_header .ham_btn{
        width: 65px;
        padding: 24.5px 21px;
    }
    .sp_floating_menu{
        height: 70px;
        font-size: 12px;
    }
    .sp_floating_menu ul li .head_nav_ico{
height: 28px;
    width: 33px;
    }
}


/*==================
fotter
==================*/
footer{
    border-top:1px solid #DDDDDD;
}
footer .ftr_menu{
    padding: 90px 0 42px;
    max-width: 1070px;
    width: 95%;
    margin: 0 auto;
}
footer .ftr_gnav{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
}
footer .ftr_gnav > li{
    flex-grow: 1;
    border-right: 1px solid #D1D6D8;
    /*padding: 0 36px;*/
    padding: 0 25px;
}
footer .ftr_gnav > li:last-of-type{
    border-right: none;
    padding-right: 0;
}
footer .ftr_gnav > li:first-of-type{
    padding-left: 0;
}
@media print,screen and (max-width: 1300px){
    footer .ftr_gnav > li{
        width: 50%;
        margin-bottom: 40px;
    }
    footer .ftr_gnav > li:nth-of-type(2){
        border-right: none;
        padding-right: 0;
    }
    footer .ftr_gnav > li:nth-of-type(3){
        padding-left: 0;
    }
}
@media screen and (max-width: 1024px){
    footer .ftr_gnav{
        display: none;
    }
}
footer .ftr_gnav > li p{
    font-size: 16px;
    margin-bottom: 18px;
}
footer .ftr_gnav .ftr_second_gnav{
    display: flex;
    margin-left: 24px;
}
footer .ftr_gnav .ftr_second_gnav ul:nth-of-type(2){
    margin-left: 35px;
}
footer .ftr_gnav .ftr_second_gnav li{
    margin-bottom: 15px;
}
footer .ftr_gnav .ftr_second_gnav li:last-of-type{
    margin-bottom: 0;
}
footer .ftr_gnav .ftr_second_gnav li a{
    transition: 0.2s;
}
footer .ftr_gnav .ftr_second_gnav li a:hover{
    color: #D52E31;
}

footer .ftr_gnav .no_title {
	margin-top: 44px;
}
footer .ftr_utility{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    color: #888;
}
footer .ftr_utility ul{
    display: flex;
    margin: 15px 0;
}
footer .ftr_utility ul li{
    margin-right: 30px;
}
footer .ftr_utility ul li:last-of-type{
    margin-right: 0;
}
footer .ftr_address{
    display: flex;
    align-items: center;
}
footer .ftr_address h1 img{
    width: 380px;
    height: auto;
    object-fit: cover;
}
footer .ftr_address p{
    margin-left: 20px;
    font-size: 13px;
}
footer .ftr_school{
    border-top: 1px solid #DDDDDD;
    border-bottom: 1px solid #DDDDDD;
}
footer .ftr_school ul{
    display: flex;
    margin: 0;
    padding: 0;
}
footer .ftr_school ul li{
    flex-grow: 1;
    width: calc(100% / 5);
    border-right: 1px solid #ddd;
    background: #fff;
}
footer .ftr_school ul li:last-of-type{
    border-right: none;
}
footer .ftr_school ul li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 50px;
    padding: 0 10px;
    line-height: 1.2em;
    transition: 0.2s;
}
footer .ftr_school ul li a span::after{
    content: "";
    background: url("../img/ico_link_red.svg") no-repeat center center;
    width: 1em;
    height: 1em;
    display: inline-block;
}
footer .ftr_school ul li a:hover{
    color: #D52E31;
}
footer .ftr_img{
    background: url("../img/ftr_img.jpg") no-repeat center center / cover;
    height: 400px;
    padding-top: 338px;
}
footer .ftr_img .copy{
    background: rgba(255,255,255,0.8);
    width: 450px;
    line-height: 30px;
    margin: 0 auto;
    text-align: center;
    
}
@media screen and (max-width: 1024px){
    footer{
        padding-bottom: 80px;
    }
    footer .ftr_menu .ftr_address{
        margin-right: 0;
        min-width: auto;
    }
    footer .ftr_address p span{
        display: none;
    }
    footer .ftr_utility ul li{
        margin-right: 0;
        margin-bottom: 0;
        padding: 0 15px;
    }
    footer .ftr_utility ul li:first-child{
        border-right: 1px solid #DDDDDD;
    }
    footer .ftr_purpose{
        background: #EAEFF1;
    }
    footer .ftr_purpose ul{
        width: 95%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        padding: 20px 0;
    }
    footer .ftr_purpose ul li{
        width: calc((100% - 20px ) / 4);
        background: #fff;
        text-align: center;
        font-size: 11px;
        line-height: 1.2em;
        border-radius: 5px;
    }
    footer .ftr_purpose ul li .menu_ico{
        padding-top: 10px;
    }
    footer .ftr_purpose ul li .menu_ico svg{
            width: 100%;
    height: 25px;
    object-fit: cover;
    fill: #D52E31;
    transition: 0.3s;
    }
    footer .ftr_purpose ul li p{
        display: flex;
        justify-content: center;
        align-items: center;
        height: 36px;
        padding-bottom: 6px;
        transition: 0.2s;
    }
    footer .ftr_purpose ul li:active p{
        color: #D52E31;
    }
    footer .ftr_menu .ftr_address .sns_menu{
        margin-bottom: 0;
        justify-content: center;
    }
    footer .ftr_menu .ftr_address .sns_menu li:last-of-type{
        margin-right: 0;
    }
    footer .ftr_school ul li a{
        height: 45px;
    }
}
@media screen and (max-width: 768px){
    footer{
        padding-bottom: 70px;
    }
    footer .ftr_utility{
        display: block;
        text-align: center;
    }
    footer .ftr_menu{
        padding-top: 50px;
        padding-bottom: 30px;
    }
    footer .ftr_menu .ftr_address{
        display: block;
        text-align: center;
        margin-bottom: 25px;
    }
    footer .ftr_menu .ftr_address h1{
        margin-bottom: 10px;
    }
    footer .ftr_utility ul {
        justify-content: center;
    }
    footer .ftr_school ul{
        flex-wrap: wrap;
    }
    footer .ftr_school ul li{
        flex-grow: 1;
        width: 50%;
        border-bottom:1px solid #ddd;
        font-size: 13px;
    }
    footer .ftr_school ul li:last-of-type{
        border-bottom: none;
    }
    footer .ftr_img{
        height: 215px;
        padding-top: 154px;
    }
    footer .ftr_img .copy{
        width: 90%;
        line-height: 1em;
        padding: 7px;
    }
}
/*==================
リンクテキスト
==================*/
.link_txt_type_b{
    position: relative;
    padding-left: 24px;
}
.link_txt_type_b::before{
    content: "";
    width: 19px;
    height: 19px;
    border: 1px solid #D52E31;
    border-radius: 50%;
    position: absolute;
    transition: 0.3s;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.link_txt_type_b::after{
    content: "";
    background: url("../img/ico_arrow.svg") no-repeat center center;
    width: 19px;
    height: 19px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.link_txt_type_b:hover::before{
    transform: scale(1.3);
}
.link_txt_type_b:hover::after{
    animation: link_ico_hover .3s forwards;    
}
/*==================
ボタン
==================*/
.btn_arrow_circle{
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    width: 215px;
}
.arrow_circle{
    width: 19px;
    height: 19px;
    position: relative;
    margin: 0 6px;
    display: block;
}
.arrow_circle::before{
    content: "";
    width: 19px;
    height: 19px;
    border: 1px solid #D52E31;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    transition: 0.3s;
}
.arrow_circle::after{
    content: "";
    background: url("../img/ico_arrow.svg") no-repeat center center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
}
a:hover > .arrow_circle::before{
    transform: scale(1.3);    
}
a:hover > .arrow_circle::after{
    animation: link_ico_hover .3s forwards;    
}
.arrow_circle_large{
    width: 60px;
    height: 60px;
    border: 1px solid #D52E31;
    border-radius: 50%;
    position: relative;
    margin: 0 15px;    
    display: block;
}
.arrow_circle_large::before{
    content: "";
    width: 60px;
    height: 60px;
    background: #D52E31;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    transition: 0.3s;
    transform: scale(0);    
}
.arrow_circle_large::after{
    content: "";
    background: url("../img/ico_arrow.svg") no-repeat center center / 12px auto;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
}
a:hover > .arrow_circle_large::before{
    transform: scale(1.3);    
}
a:hover > .arrow_circle_large::after{
    background: url("../img/ico_arrow_w.svg") no-repeat center center / 12px auto;
    animation: link_ico_hover .3s forwards;    
}
@keyframes link_ico_hover{
    0% {
        opacity: 1;
        transform: translateX(0)
    }

    30% {
        opacity: 0;
        transform: translateX(15px)
    }

    30.1% {
        opacity: 0;
        transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

/*==================
下層ページ　メインビジュアル
==================*/
.page_mv{
    height: 220px;
    width: 100%;
    position: relative;
    z-index: 0;
}
.page_mv.index_mv{
    height: 430px;
}
.page_mv .page_mv_ttl{
    max-width: 1000px;
    width: 90%;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    margin: 0 auto;
    transform: translateY(-50%);
	text-shadow: 0px 0px 5px #ffffff,4px -1px 10px #ffffff,0px 0px 9px #ffffff,-1px 1px 14px #ffffff,0px 0px 15px #ffffff,0px 0px 18px #ffffff,0px 0px 17px #ffffff,-4px -1px 7px #ffffff,5px -5px 9px #ffffff; 
}
.page_mv.index_mv .page_mv_ttl{
    bottom: 50%;
    top: auto;
    transform: translateY(0);
}
.page_mv .page_mv_ttl p{
    font-family: 'Cormorant Garamond', serif;    
    color: #D52E31;
    font-size: 20px;
    letter-spacing: 0.1em;
}
.page_mv .page_mv_ttl h1{
    font-family: 'Cormorant Garamond', serif;
    font-size: 37px;
    letter-spacing: 0.1em;
    font-weight: 400;
    line-height: 1.2em; 
}
.page_mv.index_mv .page_mv_ttl h1{
    font-size: 40px;
}
.page_mv .page_mv_ttl h1.font_white{
    color: #fff;
}
.page_mv .page_mv_img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.page_mv .page_mv_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 1024px){
    .page_mv{
        height: 220px;
    }   
    .page_mv.index_mv{
        height: 280px;
    }
    .page_mv.index_mv .page_mv_ttl{
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }
    .page_mv .page_mv_ttl p{
        font-size: 14px;
    }
    .page_mv .page_mv_ttl h1,
    .page_mv.index_mv .page_mv_ttl h1{
        font-size: 32px;
    }
}
@media screen and (max-width: 768px){
    .page_mv{
        height: 160px;
    }
    .page_mv.index_mv{
        height: 190px;
    }
    .page_mv .page_mv_ttl p{
        font-size: 12px;
    }
    .page_mv .page_mv_ttl h1,
    .page_mv.index_mv .page_mv_ttl h1{
        font-size: 24px;
        line-height: 1.2em;
    }
}


/*==================
パンくずリスト
==================*/
.bread_crumbs{
    max-width: 1100px;
    width: 90%;
    margin: 0 auto 50px;
    padding-top: 20px;
}
.bread_crumbs ul{
    text-align: right;
    font-size: 12px;
    font-weight: 300;
}
.bread_crumbs ul li{
    line-height: 1;
    display: inline;
}
.bread_crumbs ul li.home span{
    padding-right: 5px;
    display: inline-block;
}
.bread_crumbs ul li a{
    padding-right: 25px;
    position: relative;
    transition: 0.2s;
}
.bread_crumbs ul li a:hover{
     color: #D52E31;
}
.bread_crumbs ul li a::after{
    content: "";
    width: 7px;
    height: 7px;
    border-top: 1px solid #B2B2B2;
    border-right: 1px solid #B2B2B2;
    transform: rotate(45deg);
    position: absolute;
    top: 6px;
    margin-left: 8px;
}
@media screen and (max-width: 768px){
        .bread_crumbs ul{
        text-align: left;
    }
}

/*==================
第2階層インデックスページ
==================*/
#second_index{
    display: flex;
    flex-wrap: wrap;
}
#second_index .index_list{
    width: calc(100% / 3);
    position: relative;
    padding: 20px;
}
#second_index .index_list img{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    z-index: -1;
}
#second_index .index_list .index_list_inner{
    background: rgba(255,255,255,0.9);
    width: 100%;
    height: 100%;
    min-height: 270px;
    max-width: 390px;
    margin: 0 auto;
    padding: 15px 25px 20px;
}
#second_index .index_list .index_list_inner h5{
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    text-align: center;
    border-bottom: 1px solid #000;
    line-height: 1.2em;
    padding-bottom: 10px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 70px;
    margin-bottom: 17px;
}
#second_index .index_list .index_list_inner ul li{
    font-size: 16px;
    margin-bottom: 5px;
    padding-left: 1.2em;
    position: relative;
}
#second_index .index_list .index_list_inner ul li::before{
    content: "";
    width: 0.7em;
    height: 2px;
    background: #D52E31;
    position: absolute;
    top: 12px;
    left: 0;
}
#second_index .index_list .index_list_inner ul li a{
    transition: 0.2s;
}
#second_index .index_list .index_list_inner ul li a:hover{
    color: #D52E31;
}
@media screen and (max-width: 1280px){
    #second_index .index_list{
        width: calc(100% / 2);
    }
}
@media screen and (max-width: 768px){
    #second_index .index_list{
        width: 100%;
    }
    #second_index .index_list .index_list_inner{
        padding: 30px 25px 30px;
        min-height: 200px;
    }
    #second_index .index_list .index_list_inner h5{
        font-size: 22px;
        height: auto;
    }
    #second_index .index_list .index_list_inner ul li{
        font-size: 14px;
    }
}
/*==================
第3階層インデックスページ
==================*/
#third_index{
    width: 90%;
    max-width: 1070px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    /*justify-content: space-between;*/
}
#third_index .index_list{
    width: 30%;
    border-bottom: 1px solid #DDDDDD;
    position: relative;
	margin-bottom: 30px;
	margin-right: 5%;
}
#third_index .index_list:nth-of-type(3n) {
	margin-right: 0;
}
#third_index .index_list::after{
    content: "";
    background: rgba(204, 214, 219, 0.3);
    position: absolute;
    z-index: -1;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scaleX(0);
    transition: 0.4s;
    transform-origin: left;
}
#third_index .index_list:hover::after{
    transform: scaleX(1);
    opacity: 1;
}
#third_index .index_list a{
    display: block;
    /*padding: 30px 30px 30px 64px;*/
	padding: 15px 20px 20px 35px;
}

#third_index .index_list a.thumbnail_imdex {
	padding: 0 !important;
}

#third_index .index_list a.thumbnail_imdex img {
	width: 100%;
	height: auto;
}
#third_index .index_list a.thumbnail_imdex figure {
	position: relative;
}
#third_index .index_list a.thumbnail_imdex figure figcaption.eye_catch {
	position: absolute;
	color: #fff;
	top: 5px;
	left: 0;
	font-size: 14px;
	padding: 10px;
	max-width: 300px;
	font-family: 'Noto Serif JP', serif;
}
#third_index .index_list a.thumbnail_imdex figure figcaption.r_bg {
	background: rgba(213, 46, 49, 0.8);
}

#third_index .index_list a.thumbnail_imdex figure figcaption.g_bg {
	background: rgba(43, 142, 101, 0.8);
}

#third_index .index_list a.thumbnail_imdex figure figcaption.b_bg {
	background: rgba(75, 161, 197, 0.8);
}


#third_index .index_list h5{
font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    margin-bottom: 15px;
}
#third_index .index_list p{
    color: #888888;
    font-size: 18px;
    line-height: 2em;
    font-weight: 300;
}
#third_index .index_list .link_txt_type_b::before,
#third_index .index_list .link_txt_type_b::after{
    margin: auto;
    /*top: 40px;
    left: 27px;*/
	top: 22px;
	left: 10px;
    bottom: auto;
}
@media screen and (max-width: 1280px){
    #third_index .index_list a{
        padding: 20px 5% 20px 10%;
    }
    #third_index .index_list p{
        font-size: 16px;
    }
    #third_index .index_list .link_txt_type_b::before,
    #third_index .index_list .link_txt_type_b::after{
        left: 3%;
        top: 29px;
    }
}
@media screen and (max-width: 1024px){
    #third_index .index_list p{
        line-height: 1.8em;
    }
    #third_index .index_list h5{
        font-size: 22px;
        margin-bottom: 4px;
    }
}
@media screen and (max-width: 768px){
    #third_index .index_list{
        width: 100%;
    }
    #third_index .index_list a{
        padding: 20px 0 20px 10%;
    }
    #third_index .index_list p{
        line-height: 1.8em;
        font-size: 14px;
    }
    #third_index .index_list h5{
        font-size: 18px;
    }
    #third_index .index_list .link_txt_type_b::before,
    #third_index .index_list .link_txt_type_b::after{
        left: 2.5%;
        top: 25px;
    }
    #third_index .index_list:last-of-type{
        border-bottom: 1px solid #DDDDDD;
    }
}
/*==================
訪問者別ページに表示するニュース一覧
==================*/
.index_news{
    background: rgba(196,217,228, 0.2);
}
.index_news a{
    color: #222!important;
}
.index_news .index_news_inner{
    width: 90%;
    max-width: 1000px;
    margin:0 auto;
    padding: 60px 0 35px;
}
.index_news .news_ttl{
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px;
    letter-spacing: 0.1em;
    border-bottom: none;
    margin: 0;
    padding: 0;
    line-height: 1.4em;
}
.index_news .news_ttl::after{
    content: none;
}
.index_news .news_ttl span{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    display: inline-block;
    padding-left: 30px;
    position: relative;
    line-height: 1;
}
.index_news .news_ttl span::before{
    content: "";
    position: absolute;
    left: 17px;
    bottom: 0px;
    width: 1px;
    height: 27px;
    background: #D52E31;
    transform: rotate(45deg);
}
.index_news .news_list{
    margin: 13px 0 37px;
}
.index_news .news_list li{
    display: flex;
    align-items: center;
    height: 70px;
    border-bottom: 1px solid #D1D6D8;
    padding-left: 0;
    margin-bottom: 0;
}
.index_news .news_list li::before{
    content: none;
}
.index_news .news_list li:first-of-type{
    border-top: 1px solid #D1D6D8;
}
.index_news .news_list li .post_data{
    font-size: 14px;
    color: #D52E31;
    width: 103px;
    flex-shrink: 0;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
}
.index_news .news_list li p{
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    margin: 0;
}
.index_news .news_list li p:hover{
    text-decoration: underline;
}
.index_news .btn_arrow_circle{
    margin-left: auto;
}
@media screen and (max-width: 768px){
    .index_news .news_ttl{
        font-size: 30px;
    }
    .index_news .news_ttl span{
        font-size: 12px;
    }
    .index_news .news_ttl span::before{
        height: 21px;
    }
    .index_news .news_list li{
        display: block;
        height: auto;
        padding: 15px 0;
    }
    .index_news .news_list li .post_data{
        font-size: 13px;
    }
    .index_news .news_list li p{
        font-size: 14px;
    }
    .index_news .btn_arrow_circle{
        margin-right: auto;
    }
}

.last_contents {
	margin-bottom: 110px !important;
}

@media screen and (max-width: 768px){
	.last_contents {
		margin-bottom: 60px !important;
	}
}


/*==================
（）数字のリストタグ
==================*/
ol.number_list_01 {
    counter-reset: number !important;
    margin-left: 34px !important;
}
ol.number_list_01 li {
	list-style-type: none;
	list-style-position: inside;
	counter-increment: cnt;
	text-align: left;
	line-height: 2 !important;
	margin-bottom: 10px !important;
	text-indent: 0 !important;
	padding: 0; 
}
ol.number_list_01 li:before {
	display: marker !important;
	content: "(" counter(cnt) ") " !important;
	font-size: 1em !important;
  	text-indent: 0 !important;
  	position: absolute !important;
  	left: -35px !important;
  	letter-spacing: 0 !important;
  	line-height: 2em !important;
  	width: 1.5em !important;
}