@charset "UTF-8";
/* CSS Document */
#contents_body .sec_inner h1{
        font-size: 30px;
    margin: 30px 0 20px;
    line-height: 1.3em;
    font-family: 'Noto Serif JP', serif;
    position: relative;
    display: flex;
    align-items: center;
}
#contents_body .sec_inner h1::before{
    content: "";
    display: inline-block;
    border-top: 1px solid #D52E31;
    min-width: 0.7em;
    margin-right: 0.5em;
}
@media screen and (max-width: 768px){
    #contents_body .sec_inner h1{
        font-size: 18px;
        margin: 26px 0 15px;
    }
}
/*==================
エラーページ
==================*/
#Error .bge-contents h3{
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
#Error .bge-contents .search form{
    display: flex;
}
#Error .bge-contents .search_box_wrap{
    position: relative;
    border: 1px solid #707070;
    width: 453px;
}
#Error .bge-contents .search_box{
    height: 54px;
    width: 100%;
    padding-left: 50px;
    padding-right: 10px;
}
#Error .bge-contents .search_box_wrap::before{
    content: "";
    background: url("../img/ico_search.svg") no-repeat center center / 18px auto;
    width: 54px;
    height: 54px;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
}
#Error .bge-contents .search_btn{
    background: #D52E31;
    color: #fff;
    height: 56px;
    text-align: center;
    transition: 0.2s;
    margin-left: 8px;
    flex-basis: 88px;
}
#Error .bge-contents .search_btn:hover{
    opacity: 0.7;
}
@media screen and (max-width: 768px){
    #Error .bge-contents .search_box_wrap{
        width: auto;
        flex-grow: 1;
    }
    #Error .bge-contents .search_box{
        height: 50px;
        padding-left: 38px;
    }
    #Error .bge-contents .search_box_wrap::before{
        width: 38px;
        height: 50px;
    }
    #Error .bge-contents .search_btn{
        height: 52px;
        flex-basis: 62px;
    }
}

/*==================
フォーム
==================*/
#Contacts .bge-contents h2{
    margin-bottom: 20px;
}
#Contacts form{
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}
#Contacts form .error-message{
    color: #D52E31;
    font-weight: 600;
    font-size: 17px;
    line-height: 1em;
    margin-bottom: 20px;
}
#Contacts .required{
    color: #D52E31;
}
#Contacts form dl{
    margin-bottom: 0;
    padding: 22px 0 30px;
}
#Contacts form dl:last-of-type{
    margin-bottom: 70px;
}
#Contacts form dt{
    color: #333;
    font-family: 'Noto Serif JP', serif;
    border-bottom: none;
    margin-bottom: 0;
}
/*初期化*/
#Contacts form input{
    margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
#Contacts form input[type="text"]{
    background: #F3F3F3;
    border: 1px solid #DDDDDD;
    padding: 0px 20px;
    height: 51px;
    min-width: 29%;
    margin: 6px 0;
}
#Contacts form input[type="radio"]{
    display: none;
}
#Contacts form input[type="radio"] + label{
    padding-left: 2em;
    position: relative;
    margin-right: 40px;
    display: inline-block;
}
#Contacts form input[type="radio"]:last-of-type + label{
    margin-right: 0;
}
#Contacts form input[type="radio"] + label::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    border: 2px solid #CECECE;
    width: 1.4em;
    height: 1.4em;
    border-radius: 50%;
}
#Contacts form input[type="radio"] + label::after{
    display: none;
    content: "";
    position: absolute;
    background: #D52E31;
    width: 0.8em;
    height: 0.8em;
    border-radius: 50%;
    left: 0.3em;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
#Contacts form input[type="radio"]:checked + label::before{
    border-color: #D52E31;
}
#Contacts form input[type="radio"]:checked + label::after{
    display: block;
}
#Contacts form dd .input_tel{
    width: calc((88% - 2em - 6px) / 3);
}
#Contacts form dd .input_zip{
    width: 250px;
}
#Contacts form select{
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
    color: inherit;
    font: inherit;
    border: 0;
    background: transparent;
    padding: 0px 20px;
    margin: 0;
    outline: 0;
    border-radius: 0;
    text-align: inherit;
    height: 100%;
    width: 100%;
}
#Contacts form .select_wrap{
    height: 51px;
    border: 2px solid #E0E0E0;
    width: 29%;
    background: #fff;
    position: relative;
    display: inline-block;
    border-radius: 5px;
    margin: 6px 0;
}
#Contacts form .select_wrap::after{
    content: "";
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #000;
    border-right: 2px solid #000;
    position: absolute;
    transform: rotate(45deg);
    top: 19px;
    right: 20px;
    pointer-events: none;
}
#Contacts .confirm .select_wrap{
    border: none;
    background: transparent;
    height: auto;
    width: auto;
}
#Contacts .confirm .select_wrap::after{
    content: none;
}
#Contacts form dd span div.checkbox{
    display: inline;
    margin-right: 48px;
}
#Contacts form input[type="checkbox"]{
    display: none;
}
#Contacts form input[type="checkbox"] + label{
    padding-left: 2em;
    position: relative;
    display: inline-block;
}
#Contacts form input[type="checkbox"] + label::before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
    border: 2px solid #CECECE;
    width: 1.4em;
    height: 1.4em;
    border-radius: 2px;
}
#Contacts form input[type="checkbox"] + label::after{
    display: none;
    content: "";
    position: absolute;
    border-bottom: 4px solid #D52E31;
    border-right: 4px solid #D52E31;
    width: 0.5em;
    height: 0.8em;
    top: 9px;
    left: 0.45em;
    transform: rotate(45deg);
}
#Contacts form input[type="checkbox"]:checked + label::before{
    border-color: #D52E31;
}
#Contacts form input[type="checkbox"]:checked + label::after{
    display: block;
}
#Contacts form textarea{
    background: #F3F3F3;
    border: 1px solid #DDDDDD;
    padding: 12px 20px;
    border-radius: 7px;
    line-height: 1.4em;
    width: 88%;
    max-width: 700px;
}

#Contacts form .submit .btn_red{
    background: #D52E31;
    border: 1px solid #DDDDDD;
    color: #fff;
    padding: 10px 0;
    width: 290px;
    text-align: center;
    margin-right: 20px;
    transition: 0.2s;
}
#Contacts form .submit .btn_gray{
    background: #fff;
    border: 1px solid #999999;
    color: #707070;
    padding: 10px 0;
    width: 240px;
    text-align: center;
    transition: 0.2s;
}
#Contacts form .submit .btn_red:hover,
#Contacts form .submit .btn_gray:hover{
    opacity: 0.7;
}
#Contacts form.confirm dl{
    border-bottom: 1px dotted #BDBDBD;
}
#Contacts form.confirm dl:last-of-type{
    border-bottom: none;
}
@media screen and (max-width: 768px){
    #Contacts form dt{
        padding: 6px 0 6px 1em;
    }
    #Contacts form dl{
        margin-bottom: 0;
        padding: 11px 0 20px;
    }
    #Contacts form dl:last-of-type{
        margin-bottom: 30px;
    }
    #Contacts form .error-message{
        font-size: 14px;
    }
    #Contacts form input[type="text"] {
        padding: 0px 12px;
        height: 50px;
        width: 100%;
    }
    #Contacts form dd{
        line-height: 1.6em;
    }
    #Contacts form input[type="radio"] + label{
        margin-bottom: 10px;
    }
    #Contacts form .select_wrap{
        width: 100%;
        height: 50px;
    }
    #Contacts form select{
        padding: 0 12px;
    }
    #Contacts form dd span div.checkbox{
        display: block;
        margin-bottom: 10px;
        margin-right: 0;
    }
    #Contacts form dd span div.checkbox:last-of-type{
        margin-bottom: 0;
    }
    #Contacts form textarea{
        width: 100%;
        padding: 12px 12px;
    }

    #Contacts form .submit .btn_red,
    #Contacts form .submit .btn_gray{
        width: 100%;
        max-width: 350px;
        display: block;
        margin: 0 auto;
    }
    #Contacts form .submit .btn_red{
        margin-bottom: 15px;
    }
}
/*==================
その他パーツ
==================*/
.display_none{
    display: none;
    visibility: hidden;
}
.sec_inner .clearfix{
    overflow: hidden;
}
.sec_inner .right {
    float: right;
}
.sec_inner .left {
    float: left;
}
.sec_inner .txtL{
    text-align: left;
}
.sec_inner .txtR{
    text-align: right;
}
.sec_inner .txtC{
    text-align: center;
}
.sec_inner .img-right {
    float: right;
    margin-left: 5%;
    margin-bottom: 20px;
}
.sec_inner .img-left{
    float: left;
    margin-right: 5%;
    margin-bottom: 20px;
}
.sec_inner .caption_text{
    color: #888;
    font-size: 80%;
}
.sec_inner .tit_sub{
    font-weight: 600;
}
.sec_inner div.tit_2c{
    font-size:18px;
    color: #D52E31;
    font-weight: 500;
    margin-bottom: 15px;
    margin-top: 15px;
    line-height: 1.4em;
}
.sec_inner .line_box02,
.sec_inner .box-a{
    border: 1px solid #D1D6D8;
    padding: 20px 5%;
    margin-bottom: 50px;
}
.sec_inner .line_box02 .Title{
    font-size: 18px;
    font-weight: 500;
}
.sec_inner .StartTit_M {
    padding-bottom: 10px;
    border-bottom: 1px solid #D52E31;
    font-size: 20px;
    margin: 15px 0 30px;
    color: #D52E31;
}
.sec_inner .box1{
    border: 1px solid #D52E31;
    padding: 20px 5%;
    margin-bottom: 30px;
}
.sec_inner dl.number{
    position: relative;
    margin-bottom: 30px;
    margin-top: 30px;
}
.sec_inner dl.number dt {
    width: 50px;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    border-bottom: none;
    padding: 0;
}
.sec_inner dl.number dt img{
    width: 100%;
}
.sec_inner dl.number dt::before{
    content: none;
}
.sec_inner dl.number dd{
    margin-left: 70px;
    font-weight: bold;
    font-size: 22px;
    line-height: 1.3em;
    padding-top: 10px;
}
.sec_inner .grid_layout{
    display: grid;
    grid-template-columns: auto auto;
    gap: 0px 5%;
}
.sec_inner .grid_layout .left{
    order: -1;
}
.sec_inner .grid_layout .right{
    order: 1;
}
.sec_inner .border-box .inner .img-box{
    float: left;
	margin-top: 20px;
}
.sec_inner .border-box .inner .explain-box{
    padding-left: calc(150px + 5%);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid #D1D6D8;
}
.sec_inner .border-box .inner .explain-box:last-of-type{
    border-bottom: none;
}
.contents_wrapper {
	display: flex;
	justify-content: space-between;
}
.contents_wrapper .img_box {
	width: 34%;
}
.contents_wrapper .img_box img {
	width: 100%;
}

.contents_wrapper .img_box .caption_text {
	line-height: initial !important;
}

.contents_wrapper .text_wrapper {
	width: 63%;
}
.change {
    flex-direction: row-reverse;
 }

ul.list_style_02 {
	position: relative;
}
ul.list_style_02 li:before {
	content: none !important;
}
ul.list_style_02 li:after {
	content: "";
    position: absolute;
	background: #000;
    width: 8px;
    height: 8px;
    top: 10px;
    left: 7px;
    border-radius: 100%;
}
ul.list_style_02 li {
	
}

.l_co65 {
	margin-left: 65px !important;
}
@media screen and (max-width: 768px){
    .sec_inner .right {
        float: none;
    }
    .sec_inner .left {
        float: none;
    }
    .sec_inner .img-right{
        float: none;
        margin-left: 0;
        margin-bottom: 10px;
    }
    .sec_inner .img-left{
        float: none;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .sec_inner .img-right img,
    .sec_inner .img-left img{
        width: 100%!important;
        height: auto!important;
    }
    .sec_inner .img_sp{
        max-width: 100px;
    }
    .sec_inner div.tit_2c{
        font-size:15px;
        margin-bottom: 15px;
    }
    .display_none{
        display: block;
        visibility: visible;
    }
    .sec_inner .line_box02 .Title{
        font-size: 15px;
    }
    .sec_inner .StartTit_M {
        padding-bottom: 10px;
        font-size: 15px;
        margin-bottom: 20px;
    }
    .sec_inner dl.number{
        margin-bottom: 20px;
    }
    .sec_inner dl.number dd{
        margin-left: 63px;
        font-size: 16px;
        padding-top: 21px;
    }
    .sec_inner .grid_layout{
        display: block;
    }
    .sec_inner .border-box .inner .img-box{
        float: none;
        width: 150px;
        margin: 0 auto;
    }
    .sec_inner .border-box .inner .explain-box{
        padding-left: 0;
    }
	.contents_wrapper {
		display: initial !important;
		justify-content: initial !important;
	}
	.contents_wrapper .img_box {
		width: 100%;
		text-align: center;
		margin-bottom: 20px;
	}
	.contents_wrapper .img_box img {
	}

	.contents_wrapper .img_box .caption_text {
		line-height: initial !important;
	}

	.contents_wrapper .text_wrapper {
		width: 100%;
	}

	.l_co65 {
		margin-left: 20px !important;
	}
}
ul.photo_gallery{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
}
ul.photo_gallery::after{
    content: "";
    width: calc((100% / 3) - 10px);
}
ul.photo_gallery li{
    width: calc((100% / 3) - 10px);
    padding: 0;
}
ul.photo_gallery li::before{
    content: none!important;
}
ul.photo_gallery li img{
    width: 100%;
    height: 190px;
    object-fit: cover;
}
@media screen and (max-width: 768px){
    ul.photo_gallery{
        display: block;
    }
    ul.photo_gallery li{
        width: 100%;
    }
    ul.photo_gallery li img{
        height: auto;
    }
}
.matrix_List{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 30px 0;
}
.matrix_List div{
    width: calc((100% / 5) - 10px);
}
.matrix_List div img{
    width: 100%;
    height: auto;
}
@media screen and (max-width: 768px){
.matrix_List div{
    width: calc((100% / 2) - 10px);
}
}
#SongsBox{
    display: flex;
    justify-content: space-between;
    border: 1px solid #D1D6D8;
    padding:3% 5%;
}
#SongsBox .box{
    width: 48%;
}
@media screen and (max-width: 768px){
    #SongsBox{
        display: block;
    }
    #SongsBox .box{
        width: 100%;
    }
}
#ShisetsuBox{
    margin: 40px 0;
}
#ShisetsuBox .img-box{
    margin-right: 30px;
    width: 330px;
    float: left;
}
#ShisetsuBox .img-box + .section{
    margin-left: calc(330px + 5%);
}
#ShisetsuBox img{
    margin: 0 auto;
}
@media screen and (max-width: 768px){
#ShisetsuBox{
    margin-top: 0;
    font-size: 14px;
    display: block;
}
#ShisetsuBox .img-box{
    margin-right: 0;
    min-width: 100%;
    width: 100%;
    float: none;
}
#ShisetsuBox .img-box img{
    width: 100%;
}
#ShisetsuBox .img-box + .section,
#ShisetsuBox .img-box + p{
    width: 100%;
    margin-left: 0;
}
#ShisetsuBox img.box_sp{
    width: 100%!important;
}
}

.box-thumbnail,
.box-b{
    border: 1px solid #D1D6D8;
    padding:3% 5%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.box-thumbnail h3{
    margin-top: 0!important;
}
.box-thumbnail h3::before{
    content: none!important;
}
.box-thumbnail p{
    line-height: 1.4em;
}
.box-b .width150{
    width: 150px;
}

@media screen and (max-width: 768px){
    .box-thumbnail,
    .box-b{
        display: block;
        padding: 25px 5%;
    }
    .box-thumbnail img,
    .box-b img{
        width: auto!important;
        max-width: 100%;
        height: auto!important;
    }
}

.btn-box span {
    display: block;
    background-color: #E8EBEB;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 10px;
    margin-bottom: 2px;
}


#BookPhoto2 ul{
    display: flex;
    align-items: stretch;
    flex-wrap: wrap;
}
#BookPhoto2 ul li{
    width: calc(100% / 3);
    padding: 0 33px;
    font-size: 16px;
    margin-bottom: 30px;
    text-align: center;
}
#BookPhoto2 ul li::before{
    content: none!important;
}
#BookPhoto2 ul li img{
        width: 184px;
    }
#BookPhoto2 ul li h3{
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
    display: block;
}
#BookPhoto2 ul li h3::before{
    content: none;
}
#BookPhoto2 ul li a::after{
    content: none!important;
}
@media screen and (max-width: 768px){
    #BookPhoto2 ul{
        display: block;
    }
    #BookPhoto2 ul li{
        width: 100%;
        padding: 0;
        margin: 0 auto;
        border-bottom: 1px solid #DDDDDD;
        padding-top: 20px;
    }
    #BookPhoto2 ul li:last-of-type{
        border-bottom: none;
    }
    #BookPhoto2 ul li img{
        width: 160px;
    }
    #BookPhoto2 ul li h3{
        font-size: 14px;
        margin: 10px 0 20px;
    }
    #BookPhoto2 ul li h3 a{
        position: relative;
        padding-left: 1.2em;
    }
    #BookPhoto2 ul li h3 a::before{
        content: "";
        width: 0.6em;
        height: 0.6em;
        position: absolute;
        display: block;
        left: 0px;
        top: 0;
        margin: 0.48em 0;
        transform: rotate(45deg);
        border-top: 1px solid #D52E31;
        border-right: 1px solid #D52E31;
    }
}

.BookPhoto3 ul{
    display: flex;
    align-items: stretch;
    justify-content: space-around;
    flex-wrap: wrap;
}
.BookPhoto3 ul::after{
    content: "";
    flex-grow: 1;
    width: 250px;
}
.BookPhoto3 ul li{
    text-align: center;
    width: 250px;
    padding: 0 33px;
    font-size: 16px;
    margin-bottom: 30px;
}
.BookPhoto3 ul li::before{
    content: none!important;
}
.BookPhoto3 ul li a{
    display: flex;
    flex-direction: column;
    height: auto;
    min-height: 380px;
}
.BookPhoto3 ul li a:hover{
    text-decoration: none;
}
.BookPhoto3 ul li a::after{
    content: none!important;
}
.BookPhoto3 ul li img{
    width: 100%;
    height: auto;
}
.BookPhoto3 ul li span{
    color: #000;
    display: block;
    text-align: center;
    margin-top: 10px;
}
.BookPhoto3 ul li em{
    display: block;
    font-style: normal;
    margin-top: auto;
}
.BookPhoto3 ul li i{
    font-size: 14px;
    color: #AAAAAA;
    font-style: normal;
}
@media screen and (max-width: 768px){
.BookPhoto3 ul li{
    width: calc(100% / 2);
    padding: 0 8px;
    font-size: 14px;
    max-width: 200px;
}
.BookPhoto3 ul li:nth-last-of-type(-n+2){
    margin-bottom: 0;
}
.BookPhoto3 ul li a{
    min-height: auto;
}
.BookPhoto3 ul li i{
    font-size: 12px;
}
}
.original_goods{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.original_goods li{
    width: calc(100% / 2 - 18px);
    padding: 0 0 20px!important;
}
.original_goods li::before{
    content: none!important;
}
.original_goods li img{
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
.original_goods li span{
    display: block;
    text-align: center;
}
.original_goods li span.link_arrows a{
    position: relative;
    padding-left: 1.2em;
}
.original_goods li span.link_arrows a::before{
    content: "";
    width: 0.6em;
    height: 0.6em;
    position: absolute;
    display: block;
    left: 0px;
    top: 0;
    margin: 0.48em 0;
    transform: rotate(45deg);
    border-top: 1px solid #D52E31;
    border-right: 1px solid #D52E31;
}
@media screen and (max-width: 768px){
    .original_goods li{
    width: 100%;
    }
    .original_goods li img{
    margin-bottom: 10px;
    }
}
.sec_inner .section_r{
    float: none;
    margin-right: 370px;
    width: auto!important;
}
@media screen and (max-width: 768px){
    .sec_inner .section_r{
        margin-right: 0;
    }
}

.box-gakka-hanyo{
    padding: 20px;
    border: 1px solid #D1D6D8;
    padding: 3% 5%;
    background: #fff;
}
.box-gakka-hanyo .title-gakka{
    border-bottom: 1px solid #DDDDDD;
    position: relative;
    padding-left: 15px;
}
.box-gakka-hanyo .title-gakka::before{
    content: "";
    position: absolute;
    border-top: 2px solid #D52E31;
    width: 13px;
    left: 0;
    top: 50%;
}
.box-gakka-hanyo .title-gakka img{
    margin: 0;
}
@media screen and (max-width: 768px){
    table.sp_table{
        display: block;
        position: relative;
        border: 1px dotted #DDDDDD;
    }
    table.sp_table tbody {
    display: block;
    width: auto;
    position: relative;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
}
}
/*クマガクチャレンジ120・各種サポート*/
#kumagaku_challenge100 img{
    width: 100%;
    height: auto;
}
#kumagaku_challenge100 > div{
    margin-bottom: 30px;
}
#kumagaku_challenge100 .challenge120_Btn{
    display: flex;
    justify-content: center;
    margin: 90px 0 60px;
}
#kumagaku_challenge100 .challenge120_Btn li{
    padding: 0;
    margin: 0 13px;
    max-width: 310px;
    width: 100%;
}
#kumagaku_challenge100 .challenge120_Btn li::before{
    content: none;
}
#kumagaku_challenge100 .challenge120_Btn li a{
    color: #000;
    position: relative;
    width: 100%;
    height: 55px;
    font-size: 16px;
    display: block;
}
#kumagaku_challenge100 .challenge120_Btn li a::before{
    content: "";
    position: absolute;
    width: 100%;
    border-bottom: 2px solid #DDDDDD;
    bottom: 0;
    left: 0;
    right: 0;
}
#kumagaku_challenge100 .challenge120_Btn li a::after{
    content: "";
    position: absolute;
    width: calc(100% - 30px);
    border-bottom: 2px solid #D52E31;
    bottom: 0;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.3s;
}
#kumagaku_challenge100 .challenge120_Btn li .StudentsBtn::after{
    border-color: #1d2088;
}
#kumagaku_challenge100 .challenge120_Btn li a:hover{
    text-decoration: none;
}
#kumagaku_challenge100 .challenge120_Btn li a:hover::after {
    transform: scaleX(1);
}
#kumagaku_challenge100 .challenge120_Btn li span{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    bottom: 0px;
    line-height: 1.2em;
    padding-right: 30px;
}
#kumagaku_challenge100 .challenge120_Btn li span::before{
    content: "";
    background: url(../img/ico_arrow.svg) no-repeat center center / 12px auto;
    width: 30px;
    height: 100%;
    position: absolute;
    transform: rotate(90deg);
    right: 0;
}
#kumagaku_challenge100 .challenge120_Btn li span::after{
    content: "";
    position: absolute;
    border-bottom: 2px solid #D52E31;
    bottom: 0;
    right: 0;
    width: 30px;
}
#kumagaku_challenge100 .challenge120_Btn li .StudentsBtn span::before{
    background: url(../img/ico_arrow_blue.svg) no-repeat center center / 12px auto;
}
#kumagaku_challenge100 .challenge120_Btn li .StudentsBtn span::after{
    border-color: #1d2088;
}
#kumagaku_challenge100 .challenge120_Btn li a:hover span::before {
    animation: btn_type_a_hover 0.3s;
}
#kumagaku_challenge100 table.supportTable_01{
    margin-bottom: 10px;
}
#kumagaku_challenge100 table.supportTable_01 th{
    background: #fce3cd;
    color: #000;
}
#kumagaku_challenge100 table.supportTable_01 td:first-child{
    background: #fffbf7;
}
#kumagaku_challenge100 table.supportTable_02 th{
    background: #ccd7e9;
    color: #000;
}
#kumagaku_challenge100 table.supportTable_02 td:first-child {
    background: #f7f6f2;
}
#kumagaku_challenge100 .SupportBtn_01,
#kumagaku_challenge100 .SupportBtn_02{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    position: relative;
    max-width: 225px;
    margin: 0 auto 80px;
}
#kumagaku_challenge100 .SupportBtn_01::before,
#kumagaku_challenge100 .SupportBtn_02::before{
    content: "";
    background: url(../img/ico_arrow.svg) no-repeat center center / 12px auto;
    width: 60px;
    min-width: 60px;
    height: 60px;
    margin-left: 15px;
    order: 1;
    position: relative;
    z-index: 1;
}
#kumagaku_challenge100 .SupportBtn_02::before{
    background: url(../img/ico_arrow_blue.svg) no-repeat center center / 12px auto;
}
#kumagaku_challenge100 .SupportBtn_01::after,
#kumagaku_challenge100 .SupportBtn_02::after{
    content: "";
    border-radius: 50%;
    width: 60px;
    min-width: 60px;
    height: 60px;
    border: 1px solid #D52E31;
    order: 1;
    margin-left: -60px;
    transition: 0.3s;
}
#kumagaku_challenge100 .SupportBtn_02::after{
    border-color: #1d2088;
}
#kumagaku_challenge100 .SupportBtn_01:hover,
#kumagaku_challenge100 .SupportBtn_02:hover{
    text-decoration: none;
}
#kumagaku_challenge100 .SupportBtn_01:hover::before,
#kumagaku_challenge100 .SupportBtn_02:hover::before{
    background: url(../img/ico_arrow_w.svg) no-repeat center center / 12px auto;
    animation: link_ico_hover .3s;
}
#kumagaku_challenge100 .SupportBtn_01:hover::after{
    background: #D52E31;
    transform: scale(1.3);
}
#kumagaku_challenge100 .SupportBtn_02:hover::after{
    background: #1d2088;
    transform: scale(1.3);
}
#kumagaku_challenge100 .clearfix .w550,
#kumagaku_challenge100 .clearfix .w450{
    width: calc(100% - 280px);
}
#kumagaku_challenge100 .margin_not img,
#kumagaku_challenge100 .support_Box img{
    width: auto;
}
#kumagaku_challenge100 .margin_not{
    margin: 0;
}
#kumagaku_challenge100 .support_Box{
    background: #e8e9f3;
    padding: 50px;
    font-size: 16px;
}
#kumagaku_challenge100 .support_Box p{
    line-height: 2em;
}
#kumagaku_challenge100 .support_Box > div{
    margin-bottom: 30px;
}
#kumagaku_challenge100 .support_Box > div:last-of-type{
    margin-bottom: 0;
}
#kumagaku_challenge100 .support_Box ul{
    margin: 0;
}
#kumagaku_challenge100 .support_Box .tit_support_S{
    background: #1d2088;
    color: #fff;
    font-weight: bold;
    padding: 0px 18px;
    margin: 1em 0 0;
    display: inline-block;
}
#kumagaku_challenge100 .support_Box_02{
    background: #fff;
    padding: 50px;
}
#kumagaku_challenge100 .support_Box_02 .TriangleTit{
    font-size: 18px;
    color: #1d2088;
    font-weight: 600;
    padding-left: 18px;
    position: relative;
}
#kumagaku_challenge100 .support_Box_02 .TriangleTit::before{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 0 8px 11px;
    border-color: transparent transparent transparent #1d2088;
    top: 13px;
    left: 0;
}
@media screen and (max-width: 768px){
#kumagaku_challenge100 .challenge120_Btn{
    display: block;
    margin: 30px 0 40px;
}
#kumagaku_challenge100 .challenge120_Btn li{
    margin: 0 auto 20px;
}
#kumagaku_challenge100 .challenge120_Btn li a{
    font-size: 14px;
}
#kumagaku_challenge100 .SupportBtn_01, #kumagaku_challenge100 .SupportBtn_02{
    margin-bottom: 50px;
}
#kumagaku_challenge100 .clearfix .w550, #kumagaku_challenge100 .clearfix .w450 {
    width: auto;
}
#kumagaku_challenge100 .margin_not img{
    max-width: 100%;
    margin: 0;
}
#kumagaku_challenge100 .support_Box{
    padding: 20px 5%;
    font-size: 14px;
}
#kumagaku_challenge100 .support_Box img{
    max-width: 100%;
}
#kumagaku_challenge100 .support_Box .float_sp{
    text-align: center;
}
#kumagaku_challenge100 .support_Box .tit_support_S{
    display: block;
}
#kumagaku_challenge100 .support_Box .tit_support_S + p{
    text-align: left;
}
#kumagaku_challenge100 .support_Box li{
    text-align: left;
}
#kumagaku_challenge100 .support_Box .right{
    margin-bottom: 15px;
}
#kumagaku_challenge100 .support_Box_02{
    padding: 20px 6%;
}
#kumagaku_challenge100 .support_Box_02 .TriangleTit{
    font-size: 16px;
}
#kumagaku_challenge100 .support_Box_02 .TriangleTit::before{
    top: 8px;
}
}

.contents_img{
    text-align: center;
}
/*ページ内リンク*/
.inline-menu-a,
.inline-menu{
    margin: 30px 0;
}
.inline-menu-a ul,
.inline-menu ul{
    margin: 0!important;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
.inline-menu-a ul::after,
.inline-menu ul::after{
    content: "";
    width: calc((100% / 3) - 20px);
}
.inline-menu-a ul li,
.inline-menu ul li{
    width: calc((100% / 3) - 20px);
    font-size: 16px;
    border-bottom: 2px solid #DDDDDD;
    padding: 0;
    min-height: 55px;
    margin-bottom: 10px;
}
.inline-menu-a ul li::before,
.inline-menu ul li::before{
    content: none!important;
}
.inline-menu-a ul li::after,
.inline-menu ul li::after{
    content: "";
    position: absolute;
    width: calc(100% - 30px);
    border-bottom: 2px solid #D52E31;
    bottom: -2px;
    left: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: 0.3s;
}
.inline-menu-a ul li a,
.inline-menu ul li a{
    position: relative;
    width: 100%;
    min-height: 55px;
    height: 100%;
    display: flex;
    align-items: center;
    bottom: 0px;
    line-height: 1.2em;
    color: #333;
    padding: 8px 30px 8px 0;
}
.inline-menu-a ul li a::before,
.inline-menu ul li a::before{
    content: "";
    background: url(../img/ico_arrow.svg) no-repeat center center / 12px auto;
    width: 30px;
    height: 100%;
    position: absolute;
    transform: rotate(90deg);
    right: 0;
    bottom: -2px;
}
.inline-menu-a ul li a::after,
.inline-menu ul li a::after{
    content: "";
    position: absolute;
    border-bottom: 2px solid #D52E31;
    bottom: -2px;
    right: 0;
    width: 30px;
}
.inline-menu-a ul li a:hover,
.inline-menu ul li a:hover{
    text-decoration: none;
}
.inline-menu-a ul li:hover::after,
.inline-menu ul li:hover::after{
    transform: scaleX(1);
}
.inline-menu-a ul li a:hover::before,
.inline-menu ul li a:hover::before{
    animation: btn_type_a_hover 0.3s;
}
@media screen and (max-width: 768px){
    .inline-menu-a ul,
    .inline-menu ul{
        /*display: block;*/
		display: flex;
		flex-wrap: wrap;
    }
    .inline-menu-a ul::after,
    .inline-menu ul::after{
        content: none;
    }
    .inline-menu-a ul li,
    .inline-menu ul li{
        /*width: 100%;*/
		width: calc((100% / 2) - 3%);
        /*margin: 0 auto 10px;*/
        font-size: 14px;
    }
}

/*ページ内リンク*/
.inline-menu-b {
    margin: 30px 0;
}

.inline-menu-b ul {
	display: flex;
	flex-wrap: wrap;
}

.inline-menu-b ul li {
	padding-left: initial !important;
	width: calc((100% / 3) - 2%);
	margin-right: 2%;
}

.inline-menu-b ul li:before{
    content: none !important;
}
.inline-menu-b ul li a {
	position: relative;
    background: #fff;
    padding: 8px 30px 8px 20px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    min-height: 70px;
    align-items: center;
    color: #000;
}

.bge-contents .link_txt_type_b{
    font-size: 16px;
    color: #000;
	
}
.bge-contents .inline-menu-b ul li a::before{
    content: "";
    width: 1.2em;
    height: 1.2em;
    border: 1px solid #D52E31;
    border-radius: 50%;
    position: absolute;
    transition: 0.3s;
    right: 0.3em;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.bge-contents .inline-menu-b ul li a::after{
    content: "";
    background: url("../img/ico_arrow.svg") no-repeat center center;
    width: 1.2em;
    height: 1.2em;
    position: absolute;
    right: 0.3em;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.bge-contents .inline-menu-b ul li a:hover{
    text-decoration: none;
}
.bge-contents .inline-menu-b ul li a:hover::before{
    transform: scale(1.3);
}
.bge-contents .inline-menu-b ul li a:hover::after{
    animation: link_ico_hover .3s forwards;
}
@media screen and (min-width: 769px){
	.inline-menu-b ul li:nth-child(3n) {
		margin-right: 0;
	}
}
@media screen and (max-width: 768px){
    .inline-menu-b ul {
		display: flex;
		flex-wrap: wrap;
    }
	.inline-menu-b ul li {
		 margin: 0 6px 6px 0;
	}
	.inline-menu-b ul li a {
		display: flex;
		background: #fff;
		min-height: 100px;
		padding: 8px 24px 8px 10px;
	}
    .inline-menu-b ul::after,
    .inline-menu ul::after{
        content: none;
    }
    .inline-menu-b ul li,
    .inline-menu ul li{
        /*width: 100%;*/
		width: calc((100% / 2) - 1%);
        /*margin: 0 auto 10px;*/
        font-size: 14px;
    }
	
	.inline-menu-b ul li:nth-child(2n) {
		margin-right: 0;
	}
}
/*採用ご担当者様*/
.link_button {
	position: relative;
	color: #333 !important;
	text-align: left;
	font-size: 18px;
	font-weight: 500;
	display: inline-block;
	padding: 1.0em 1.5em 1.0em 2.5em;
	box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 3px;
	background-color: #FFF;
	line-height: 1.3;
}
.link_button span {
	color: #333;
	text-align: left;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
}
.link_button:before {
	content: "";
	width: 19px;
	height: 19px;
	background: #D52E31;
	border-radius: 50%;
	position: absolute;
	transition: 0.3s;
	left: 15px;
	top: 0;
	bottom: 0;
	margin: auto 0;
}
.link_button:after {
	content: "";
    background: url(../img/ico_arrow_w.svg) no-repeat center center;
    width: 19px;
    height: 19px;
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.link_button:hover{
    text-decoration: none !important;
    background: #D52E31;
    color: #fff !important;
}
.link_button:hover::before{
    transform: scale(1.3);
	border: 1px solid #fff;
}
.link_button:hover::after{
    animation: link_ico_hover .3s;
}
@media screen and (max-width: 768px){
	.link_button {
		position: relative;
		color: #333 !important;
		text-align: left;
		font-size: 15px;
		font-weight: 500;
		display: inline-block;
		padding: 1.0em 1.5em 1.0em 2.5em;
		box-sizing: border-box;
		border: 1px solid #ccc;
		border-radius: 3px;
		background-color: #FFF;
		line-height: 1.3;
	}
	.link_button span {
		color: #333;
		text-align: left;
		font-size: 15px;
		font-weight: 500;
		line-height: 1.3;
	}
.link_button:before {
	content: "";
	width: 19px;
	height: 19px;
	background: #D52E31;
	border-radius: 50%;
	position: absolute;
	transition: 0.3s;
	left: 15px;
	top: 0;
	bottom: 0;
	margin: auto 0;
}
.link_button:after {
	content: "";
    background: url(../img/ico_arrow_w.svg) no-repeat center center;
    width: 19px;
    height: 19px;
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.link_button:hover{
    text-decoration: none !important;
    background: #D52E31;
    color: #fff !important;
}
.link_button:hover::before{
    transform: scale(1.3);
}
.link_button:hover::after{
    animation: link_ico_hover .3s;
	fill: #fff;
}
}

/*学生年間スケジュール*/
.EventCalender{
    color: #fff;
    font-weight: bold;
    padding: 15px 20px;
    font-size: 20px;
    margin: 5px 0 0;
}
.EventCalender span{
    font-size: 16px;
    margin-left: 13px;
}
.Apr {
    background: #ec7276;
}
.May {
    background: #f7af3f;
}
.Jun {
    background: #8fc31f;
}
.Jul {
    background: #00a29a;
}
.Aug {
    background: #172a88;
}
.Sep {
    background: #00913a;
}
.Oct {
    background: #cf7124;
}
.Nov {
    background: #24688d;
}
.Dec {
    background: #b5a775;
}
.Jan {
    background: #e83828;
}
.Feb {
    background: #d9cf02;
}
.Mar {
    background: #a40b5d;
}
.EventCalender + div[class^="Schedule_wrap_"]{
    padding: 35px 0 35px 14%;
    position: relative;
}
.EventCalender + div[class^="Schedule_wrap_"]::before {
    content: "";
    position: absolute;
    top: 0;
    left: 7%;
    z-index: 9;
    width: 2px;
    height: 100%;
    border-left: 2px dotted #000;
    box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}
.EventCalender + div[class^="Schedule_wrap_"] .ScheduleContents{
    margin-bottom: 30px;
}
.EventCalender + div[class^="Schedule_wrap_"] .ScheduleText h4{
    font-size: 22px;
}
.Schedule_wrap_04::before,
.Schedule_wrap_04 .ScheduleText h4::before{
    border-color: #ec7276!important;
}
.Schedule_wrap_05::before,
.Schedule_wrap_05 .ScheduleText h4::before{
    border-color: #f7af3f!important;
}
.Schedule_wrap_06::before,
.Schedule_wrap_06 .ScheduleText h4::before{
    border-color: #8fc31f!important;
}
.Schedule_wrap_07::before,
.Schedule_wrap_07 .ScheduleText h4::before{
    border-color: #00a29a!important;
}
.Schedule_wrap_08::before,
.Schedule_wrap_08 .ScheduleText h4::before{
    border-color: #172a88!important;
}
.Schedule_wrap_09::before,
.Schedule_wrap_09 .ScheduleText h4::before{
    border-color: #00913a!important;
}
.Schedule_wrap_10::before,
.Schedule_wrap_10 .ScheduleText h4::before{
    border-color: #cf7124!important;
}
.Schedule_wrap_11::before,
.Schedule_wrap_11 .ScheduleText h4::before{
    border-color: #24688d!important;
}
.Schedule_wrap_12::before,
.Schedule_wrap_12 .ScheduleText h4::before{
    border-color: #b5a775!important;
}
.Schedule_wrap_01::before,
.Schedule_wrap_01 .ScheduleText h4::before{
    border-color: #e83828!important;
}
.Schedule_wrap_02::before,
.Schedule_wrap_02 .ScheduleText h4::before{
    border-color: #d9cf02!important;
}
.Schedule_wrap_03::before,
.Schedule_wrap_03 .ScheduleText h4::before{
    border-color: #a40b5d!important;
}
@media screen and (max-width: 768px){
.EventCalender{
    padding: 12px 18px;
    font-size: 16px;
}
.EventCalender span{
    font-size: 14px;
    margin-left: 13px;
}
.EventCalender + div[class^="Schedule_wrap_"] .ScheduleText h4{
    font-size: 16px;
}
}
/*受験・入学後に配慮や支援を必要とする方へ*/
.shogai_flow_01,
.shogai_flow_02,
.shogai_flow_03{
    width: calc(100% - 150px);
}
.circle_2{
    background: #D52E31;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    display: inline-block;
    line-height: 115px;
    color: #fff;
    text-align: center;
}
.shogai_flow_01 .tit_sub,
.shogai_flow_02 .tit_sub,
.shogai_flow_03 .tit_sub{
     font-weight: 600;
}
.lineTriangle {
    width: 100%;
    margin: 25px auto 35px;
    border-bottom: 1px solid #D0D6D8;
    text-align: center;
    position: relative;
    height: 0;
}
.lineTriangle::after {
    content: "";
    border: 12px solid transparent;
    border-top: 12px solid #D0D6D8;
    position: absolute;
    left: 50%;
    bottom: -24px;
    z-index: 1;
    transform: translateX(-50%);
}
.redBox {
    background: #D52E31;
    color: #fff;
    text-align: center;
    font-weight: bold;
    padding: 22px 0;
}
@media screen and (max-width: 768px){
.shogai_flow_01,
.shogai_flow_02,
.shogai_flow_03{
    width: auto;
}
.circle_2{
    width: 80px;
    height: 80px;
    line-height: 80px;
    margin: 0 auto 19px;
    display: block;
}
.shogai_flow_01 .tit_sub,
.shogai_flow_02 .tit_sub,
.shogai_flow_03 .tit_sub{
     text-align: center;
     display: block;
     line-height: 1em;
}
.redBox {
    padding: 10px 0;
}
}


/*学生生活サポート_福利厚生*/
#GlobalIndex{
    border: 1px solid #D1D6D8;
    padding: 3% 5%;
    margin-bottom: 50px;
}
#GlobalIndex .box-f_02{
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
#GlobalIndex .box-f_02:last-of-type{
    margin-bottom: 0;
}
#GlobalIndex .box-f_02 li{
    padding: 0;
    margin: 0;
    width: 50%;
}
#GlobalIndex .box-f_02 li:first-of-type{
    padding-right: 5%;
    border-right: 1px solid #D1D6D8;
}
#GlobalIndex .box-f_02 li:nth-of-type(2){
    padding-left: 5%;
}
#GlobalIndex .box-f_02 li::before{
    content: none;
}
#GlobalIndex .box-f_02 li p{
    font-size: 16px;
}
#GlobalIndex .facility {
    border: 1px solid #D52E31;
    color: #D52E31;
    font-weight: 600;
    padding: 5px 10px;
    margin-bottom: 10px;
    font-size: 17px;
}
#GlobalIndex .facility + img{
    width: 100%!important;
    height: auto!important;
}
#GlobalIndex .facility .after_arrow{
    font-size: 12px;
    position: relative;
    padding-left: 1em;
    float: right;
}
#GlobalIndex .facility .after_arrow::before{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent #D52E31;
    left: 0;
    top: 9px;
}

.tit_center {
	font-family: 'Noto Serif JP', serif;
	font-size: 24px;
	margin-bottom: 25px;
	text-align: center;
}

.Box_transparent {
	background: rgba(204, 214, 219, 0.4);
	width: 100%;
	padding: 65px 55px 55px;
}
ul.triplets {
	display: flex;
	flex-wrap: wrap;
}
ul.triplets li {
	width: calc((100% / 3) - 3%);
	padding-left: initial !important;
	margin-right: 4%;
	margin-bottom: 80px;
}
ul.triplets li.last_mb {
	margin-bottom: 0;
}
ul.triplets li:nth-child(3n) {
	margin-right: 0;
}
ul.triplets li img {
	width: 100% !important;
    height: auto !important;
	/*margin-bottom: 5px;*/
	margin-bottom: 20px;
}
ul.triplets li:before{
    content: none !important;
}

.right_alignment {
	display: flex;
	justify-content: flex-end;
}

.club_activities_box .bgt-grid--first {
	margin-bottom: 5px !important;
}
.club_activities_box h4 {
	padding-top: 0 !important;
}
@media screen and (max-width: 768px){
	.club_activities_box .bgt-grid--first {
		margin-bottom: 30px !important;
	}
}

@media screen and (max-width: 768px){
	ul.triplets {
		display: initial;
	}
	ul.triplets li {
		width: 100%;
		margin-bottom: 30px;
	}
	ul.triplets li:last-child {
		margin-bottom: 0;
	}
}

.floor {
	background: #EAF0F2;
	color: #000;
  	padding: 3px 17px;
	margin-bottom: 5px;
  	font-size: 13px;
  	border-radius: 100px;
	display: inline-block;
}
.facilityTitle {
	color: #D52E31;
	font-size: 20px;
	margin-bottom: 20px;
}
@media screen and (max-width: 768px){
    #GlobalIndex{
        padding-top: 38px;
    }
    #GlobalIndex .box-f_02{
        display: block;
        margin: 0;
    }
    #GlobalIndex .box-f_02 li{
        margin-bottom: 25px;
        padding-bottom: 5px;
        border-bottom: 1px solid #D1D6D8;
        border-right: none;
        width: 100%;
    }
    #GlobalIndex .box-f_02 li:first-of-type{
        padding-right: 0;
        border-right: none;
    }
    #GlobalIndex .box-f_02 li:nth-of-type(2){
        padding-left: 0;
    }
    #GlobalIndex .box-f_02:last-of-type li:last-of-type{
        border-bottom: none;
        margin-bottom: 0;
    }
    #GlobalIndex .box-f_02 li p{
        font-size: 14px;
    }
    #GlobalIndex .facility{
        font-size: 15px;
    }
    #GlobalIndex .facility .after_arrow::before{
        top: 6px;
    }
	.tit_center {
		font-size: 19px;
		margin-bottom: 20px;
		text-align: center;
	}
	.Box_transparent {
		padding: 15px;
	}
	ul.triplets {
		
	}
	ul.triplets li {
		
	}
}

/*就職実績*/
.tabular_8 th{
    background: #D52E31!important;
    color: #fff!important;
    font-size: 12px!important;
}
.tabular_8 th strong{
    font-size: 200%;
    font-weight: 500;
    line-height: 1.2em;
}
.tabular_8 td .tit_sub{
    font-weight: 600;
    font-size: 15px;
}
@media screen and (max-width: 768px){
    .tabular_8 th strong{
        font-size: 12px;
        font-weight: 600;
    }
}
/*就職支援体制*/
.EmploymentSupport_list li{
    position: relative;
    padding: 25px 0 20px 5%!important;
}
.EmploymentSupport_list li::before{
    width: 15px!important;
    height: 15px!important;
    top: 33px!important;
    left: calc(5% - 7px)!important;
    border: 1px solid #D52E31!important;
    border-radius: 50%;
}
.EmploymentSupport_list li:after {
    content: '';
    position: absolute;
    top: 49px;
    left: 5%;
    width: 1px;
    height: calc(100% - 5px);
    background: #D52E31;
}
.EmploymentSupport_list li.Graduation::after{
    content: none;
}
ul.EmploymentSupport_list li.First_Second_year .FlowContents:after {
    content: "就職活動準備期";
    background: #fff;
    border: 1px solid #D52E31;
    padding: 15px 3px;
    font-weight: bold;
    writing-mode: vertical-rl;
    color: #D52E31;
    position: absolute;
    left: 3.3%;
    display: block;
    margin: auto;
    z-index: 2;
    font-family: 'Noto Sans JP', sans-serif;
    top: 55%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
ul.EmploymentSupport_list li.Third_year .FlowContents:after {
    content: "就職活動スタート";
    background: #fff;
    border: 1px solid #D52E31;
    padding: 15px 3px;
    font-weight: bold;
    writing-mode: vertical-rl;
    color: #D52E31;
    position: absolute;
    left: 3.3%;
    display: block;
    margin: auto;
    z-index: 2;
    font-family: 'Noto Sans JP', sans-serif;
    top: 55%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
ul.EmploymentSupport_list li.Fourth_year .FlowContents:after {
    content: "内定";
    background: #fff;
    border: 1px solid #D52E31;
    padding: 10px 3px;
    font-weight: bold;
    writing-mode: vertical-rl;
    color: #D52E31;
    position: absolute;
    left: 3.3%;
    display: block;
    margin: auto;
    z-index: 2;
    font-family: 'Noto Sans JP', sans-serif;
    top: 55%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
}
@media screen and (max-width: 768px){
.EmploymentSupport_list li::before{
    left: -0.2%!important
}
.EmploymentSupport_list li:after {
    left: 2%;
}
ul.EmploymentSupport_list li.First_Second_year .FlowContents:after,
ul.EmploymentSupport_list li.Third_year .FlowContents:after,
ul.EmploymentSupport_list li.Fourth_year .FlowContents:after{
    left: -2.2%;
    font-size: 12px;
}
}
.GraduationTitle{
    color: #D52E31;
    font-family: 'Noto Serif JP', serif;
    font-size: 25px;
    padding: 14px;
    width: 100%;
    border: 1px solid #D52E31;
}
.FlowContents {
    padding-left: 5%;
}
.FlowContents .tit_year_s_02{
    color: #D52E31;
    font-size: 18px;
    margin: 20px 0 8px;
}
.FlowContents .tit_year_s_03{
    font-size: 20px;
    color: #D52E31;
    padding-left: 1em;
    position: relative;
}
.FlowContents .tit_year_s_03::before{
    content: "";
    width: 13px;
    height: 7px;
    border-left: 2px solid #D52E31;
    border-bottom: 2px solid #D52E31;
    transform: rotate(-45deg);
    position: absolute;
    left: 0;
    top: 0.5em;
}
.FlowContents .tit_year_02{
    font-size: 24px;
    padding: 0px 0 17px;
    margin-bottom: 17px;
    position: relative;
    display: flex;
    line-height: 1.4em;
}
.FlowContents .tit_year_02::before{
    content: "";
    border-bottom: 1px solid #D52E31;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
}
.FlowContents .tit_year_02::after{
    content: "";
    flex-grow: 1;
    margin-bottom: -17px;
    border-bottom: 1px solid #DDDDDD;
    position: relative;
}
.FlowContents .yearTitle{
    font-size: 30px;
    margin: 0px 0 20px;
    line-height: 1em;
    font-family: 'Noto Serif JP', serif;
    position: relative;
    display: flex;
    align-items: center;
}
.FlowContents .yearTitle::before{
        content: "";
    display: inline-block;
    border-top: 1px solid #D52E31;
    min-width: 0.7em;
    margin-right: 0.5em;
}
@media screen and (max-width: 768px){
    .EmploymentSupport_list li{
        padding-bottom: 0!important;
    }
    .FlowContents .tit_year_s_02{
        font-size: 15px;
    }
    .FlowContents .tit_year_s_03{
        font-size: 16px;
    }
    .FlowContents .tit_year_s_03::before{
        width: 10px;
        height: 6px;
    }
    .FlowContents .tit_year_02{
        font-size: 16px;
    }
    .FlowContents .yearTitle{
        font-size: 22px;
        margin-top: 5px;
    }
    .GraduationTitle{
        font-size: 18px;
    }
}
/*留学・国際交流*/
.experience_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.experience_list li{
    border: 1px solid #D0D6D8;
    width: 49%;
    padding: 3%!important;
    display: flex;
}
.experience_list li::before{
    content: none!important;
}
.experience_list .faceImg{
    margin-right: 20px;
}
.experience_list .experienceContents small{
    display: block;
}
@media screen and (max-width: 768px){
.experience_list li{
    width: 100%;
    align-items: center;
}
.experience_list .faceImg{
    min-width: 90px;
    width: 90px;
}
}
/*Q&A アコーディオン*/
.QuestionBox{
    border: 1px solid #D1D6D8;
    padding:3%;
}
.a_item_N{
    font-size: 18px;
    padding: 7px 0px;
    cursor: pointer;
}
.a_contents {
    display: none;
}
.Question {
    position: relative;
    padding-left: 32px;
    font-weight: 500;
    line-height: 1.6em;
}
.Question::before{
    content: "Q";
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    left: 0;
    position: absolute;
}
.Answer {
    position: relative;
    padding-left: 32px;
    margin: 25px 0 0!important;
}
.Answer::before{
    content: "A";
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 500;
    color: #D52E31;
    left: 0;
    position: absolute;
}
@media screen and (max-width: 768px){
.QuestionBox{
    padding:9px 5%;
}
.a_item_N{
    font-size: 15px;
}
.Question {
    padding-left: 27px;
}
.Question::before{
    font-size: 22px;
}
.Answer {
    padding-left: 27px;
    margin-top: 0px!important;
}
.Answer::before{
    font-size: 22px;
}
}
/*アコーディオン*/
.SelectBox02{
    border: 1px solid #D1D6D8;
    padding:3%;
}
.SelectBox02 .SelectTit{
    font-size: 18px;
    padding: 7px 0px;
    cursor: pointer;
    font-weight: 500;
    line-height: 1.6em;
    position: relative;
}
.SelectBox02 .InformationBox{
    margin: 3%;
}
.SelectBox02 .SelectTit,
.a_item_N{
    background: url("/theme/kumagaku2023/img/btn_open.svg") no-repeat right 50%;
    background-size: 21px 21px;
    padding-right: 40px;
}
.SelectBox02 .SelectTit.bg02,
.a_item_N.bg02{
    background: url("/theme/kumagaku2023/img/btn_close.svg") no-repeat right 50%;
}
@media screen and (max-width: 768px){
    .SelectBox02{
        padding: 9px 5%;
    }
    .SelectBox02 .SelectTit{
        font-size: 15px;
    }
    .SelectBox02 .SelectTit::before{
        height: 15px;
        right: 6px;
    }
    .SelectBox02 .SelectTit::after{
        width: 15px;
    }
    .SelectBox02 .SelectTit,
    .a_item_N,
    .SelectBox02 .SelectTit.bg02,
    .a_item_N.bg02{
        background-size: 15px 15px;
        padding-right: 25px;
    }
}
/*==================
クマガク学生広報スタッフ
==================*/
.SNS_Title,
.SNS_Title_YT{
    margin-bottom: 30px;
}
.SNS_Title img,
.SNS_Title_YT img{
    width: auto;
}
#instagram-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#instagram-list li{
    width: calc((100% / 4) - 10px);
    padding-left: 0;
    position: relative;
}
#instagram-list li::before{
    content: none;
}
#instagram-list li::after{
    content: "";
    display: block;
    padding-top: 100%;
}
#instagram-list li a{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
#instagram-list li a::after{
    content: none;
}
#instagram-list li a img {
    width: 100%;
    vertical-align: bottom;
    height: 100%;
    background-size: cover;
    object-fit: cover;
}
.YoutubeContents{
    display: flex;
    justify-content: space-between;
}
.YoutubeContents li{
    width: calc(50% - 10px);
    padding-left: 0!important;
}
.YoutubeContents li::before{
    content: none!important;
}
.YoutubeContents li .YoutubeVideo{
    position: relative;
    width: 100%;
}
.YoutubeContents li .YoutubeVideo::after{
    content: "";
    display: block;
    padding-top: 56.25%;
}
.YoutubeContents li iframe{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.SNS_Contents{
    display: flex;
    justify-content: space-between;
}
.SNS_Contents div.snsBlock{
    width: calc(50% - 10px);
}
.SNS_Contents div.snsBlock .twitter-timeline,
.SNS_Contents div.snsBlock .facebookBox{
    position: relative;
    width: 100%;
}
.SNS_Contents div.snsBlock .twitter-timeline::after,
.SNS_Contents div.snsBlock .facebookBox::after{
    content: "";
    display: block;
    padding-top: 120%;
}
.SNS_Contents div.snsBlock .twitter-timeline iframe,
.SNS_Contents div.snsBlock .facebookBox iframe{
    position: absolute!important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%!important;
    height: 100%!important;
}
.ButtonStyle_02{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222!important;
    position: relative;
    margin: 0 auto 80px;
    max-width: 280px;
}
.ButtonStyle_02::before{
    content: "";
    background: url(../img/ico_arrow.svg) no-repeat center center / 12px auto;
    width: 60px;
    min-width: 60px;
    height: 60px;
    margin-left: 15px;
    order: 1;
    position: relative;
    z-index: 1;
}
.ButtonStyle_02::after{
    content: "";
    border-radius: 50%;
    width: 60px;
    min-width: 60px;
    height: 60px;
    border: 1px solid #D52E31;
    order: 1;
    margin-left: -60px;
    transition: 0.3s;
}
.ButtonStyle_02:hover::before{
    background: url(../img/ico_arrow_w.svg) no-repeat center center / 12px auto;
    animation: link_ico_hover .3s;
}
.ButtonStyle_02:hover::after {
    background: #D52E31;
    transform: scale(1.3);
}
@media screen and (max-width: 768px){
    .SNS_Title,
    .SNS_Title_YT{
        margin-bottom: 10px;
    }
    #instagram-list li{
        width: calc((100% / 2) - 6px);
    }
    .YoutubeContents{
        display: block;
    }
    .YoutubeContents li{
        width: 100%;
    }
    .SNS_Contents{
        display: block;
    }
    .SNS_Contents div.snsBlock{
        width: 100%;
        margin-bottom: 30px;
    }
}
/*==================
課外講座
==================*/
.meritContents{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
ul.meritContents li{
    width: 48%;
    border: 1px solid #DDDDDD;
    padding: 37px 4% 29px;
    margin-bottom: 40px;
}
ul.meritContents li::before{
    content: none!important;
}
ul.meritContents li dl{
    display: flex;
    align-items: center;
}
ul.meritContents li dt{
    padding: 0;
    border-bottom: none;
    width: 40px;
    margin-bottom: 0;
    margin-right: 10px;
}
ul.meritContents li dt::before{
    content: none;
}
ul.meritContents li dd{
    font-size: 20px;
    color: #00527d;
    font-weight: 600;
}
ul.meritContents li .ImageBox{
    text-align: center;
}
ul.meritContents li .ImageBox img{
    width: 60%;
}
@media screen and (max-width: 768px){
    .meritContents{
        display: block;
    }
    ul.meritContents li{
        width: 100%;
        padding: 25px 5%;
        margin-bottom: 20px;
    }
    ul.meritContents li dl{
        margin-bottom: 0px;
    }
    ul.meritContents li dd{
        font-size: 16px;
    }
}
/*==================
卒業者の免許状取得状況と幼稚園への就職状況
==================*/
.dl_Kindergarten{
    width: 277px;
    margin-left: auto;
    text-align: left;
}
.dl_Kindergarten dt{
    padding: 0!important;
    border-bottom: none!important;
    font-size: 16px!important;
    margin-bottom: 0!important;
    float: left;
    width: 2.5em;
    line-height: 2.2em!important;
    color: #222!important;
}
.dl_Kindergarten dt::before{
    content: none!important;
}
@media screen and (max-width: 768px){
    .dl_Kindergarten{
        width: 240px;
    }
    .dl_Kindergarten dt{
        font-size: 14px!important;
    }
}
/*==================
新1号館 みらい
==================*/
.tit_Future{
    font-weight: 600;
}
#StudentCommonsArea {
    position: relative;
    height: 980px;
    margin-bottom: 60px;
}
.Future_Point01 {
    position: absolute;
    top: 75px;
    left: 0;
}
.Future_Point01_Tit {
    position: absolute;
    top: 232px;
    left: 0;
}
.Future_Point01_Text01 {
    position: absolute;
    top: 300px;
    left: 0;
    width: 280px;
    z-index: 100;
}
.Future_Point01_Text02 {
    position: absolute;
    top: 478px;
    left: 0;
    width: 500px;
    z-index: 100;
}
.Future_Point01_Text03 {
    position: absolute;
    bottom: 0;
    left: 0px;
    z-index: 100;
}
.Future_Point01_Visual {
    position: absolute;
    top: 2%;
    right: 0;
    width: calc(100% - 340px);
}
.Future_Point01_Visual img{
    width: 100%!important;
}
.Future_Point01_Image_1 {
    position: absolute;
    top: 626px;
    left: 0;
    width: 48%;
    height: 230px;
}
.Future_Point01_Image_2 {
    position: absolute;
    top: 626px;
    right: 0;
    width: 48%;
    height: 230px;
}
.Future_Point01_Image_1 img,
.Future_Point01_Image_2 img{
    width: 100%!important;
    height: 100%!important;
    object-fit: cover;
}
#UniversalDesignArea{
    position: relative;
    height: 594px;
    margin-bottom: 20px;
}
.Future_Point02 {
    position: absolute;
    top: 75px;
    left: 0;
    z-index: 100;
}
.Future_Point02_Tit {
    position: absolute;
    top: 253px;
    left: 0;
    z-index: 100;
}
.Future_Point02_Text01 {
    position: absolute;
    top: 367px;
    left: 0;
    width: 280px;
    z-index: 100;
}
.Future_Point02_Text02 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 500px;
    z-index: 100;
}
.Future_Point02_Visual {
    position: absolute;
    top: 2%;
    right: 0;
    width: calc(100% - 340px);
}
.Future_Point02_Visual img{
    width: 100%!important;
}
.Future_Point02_Info{
    margin-bottom: 60px;
}
.Future_Point02_Info ul{
    display: flex;
    justify-content: space-between;
}
.Future_Point02_Info ul li{
    padding-left: 0;
    width: calc((100% / 3) - 15px);
}
.Future_Point02_Info ul li::before{
    content: none!important;
}
.Future_Point02_Info ul li img{
    width: 100%!important;
}
.Future_Point02_Info ul li .Future_TextArea{
    margin-top: 15px;
}
#EducationalEnvironmentArea{
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 0;
    margin-bottom: 60px;
    padding-top: 84px;
}
#EducationalEnvironmentArea .Future_Environment_Tit{
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
}
#EducationalEnvironmentArea .Future_Environment_Contents01,
#EducationalEnvironmentArea .Future_Environment_Contents02{
    width: calc((100% / 2) - 25px);
}
#EducationalEnvironmentArea .Future_Environment_Contents01 img,
#EducationalEnvironmentArea .Future_Environment_Contents02 img{
    width: 100%!important;
}
#EducationalEnvironmentArea .Future_Environment_Contents01 .Future_TextArea,
#EducationalEnvironmentArea .Future_Environment_Contents02 .Future_TextArea{
    margin-top: 15px;
}
#Future_FloorMap{
    background: url(/theme/kumagaku/img/gakusei/facility/future/bg_floor_map.jpg) no-repeat top center / cover;
    position: relative;
}
#Future_FloorMap::before{
    content: "";
    padding-top: 257%;
    display: block;
}
.FutureConceptArea{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.FutureConceptContents{
    width: 90%;
    max-width: 615px;
    margin: 149% auto;
}

#Future_FloorMap dl.FutureConcept_text dt{
    position: relative;
    float: left;
    font-size: 14px;
    color: #40575f;
    border-bottom: none;
    padding: 0;
    line-height: 2em;
    margin-bottom: 0;
    text-indent: 1em;
}
#Future_FloorMap dl.FutureConcept_text dt::before{
    content: none;
}
#Future_FloorMap dl.FutureConcept_text dd {
    color: #40575f;
    font-size: 14px;
    margin-left: 125px;
    line-height: 2em;
}
#Future_FloorMap dl.FutureConcept_text dd > dl dt{
    text-indent: 0;
}
#Future_FloorMap dl.FutureConcept_text dd > dl dd{
    margin-left: 45px;
}

@media screen and (max-width: 1024px){
    #StudentCommonsArea{
        height: auto;
        display: flex;
        flex-wrap: wrap;
    }
    #StudentCommonsArea > div{
        position: static;
    }
    .Future_Point01{
        order: 0;
        margin-right: 20px;
    }
    .Future_Point01_Tit{
        margin: auto 0;
        order: 0;
    }
    .Future_Point01_Text01{
        width: 100%;
        order: 2;
    }
    .Future_Point01_Text02{
        width: 100%;
        order: 3;
    }
    .Future_Point01_Text03{
        order: 6;
    }
    .Future_Point01_Visual{
        width: 100%;
        order: 1;
        text-align: center;
    }
    .Future_Point01_Visual img{
        max-width: 500px!important;
    }
    .Future_Point01_Image_1{
        width: 100%;
        order: 4;
        height: auto;
        margin-bottom: 20px;
        text-align: center;
    }
    .Future_Point01_Image_2{
        width: 100%;
        order: 5;
        height: auto;
        margin-bottom: 20px;
        text-align: center;
    }
    .Future_Point01_Image_1 img,
    .Future_Point01_Image_2 img{
        max-width: 500px!important;
    }
    #UniversalDesignArea{
        height: auto;
        display: flex;
        flex-wrap: wrap;
    }
    #UniversalDesignArea > div{
        position: static;
    }
    .Future_Point02{
        order: 0;
        margin-right: 20px;
    }
    .Future_Point02_Tit{
        margin: auto 0;
        order: 0;
    }
    .Future_Point02_Text01{
        width: 100%;
        order: 2;
    }
    .Future_Point02_Text02{
        width: 100%;
        order: 3;
    }
    .Future_Point02_Text03{
        order: 4;
    }
    .Future_Point02_Visual{
        width: 100%;
        order: 1;
        text-align: center;
    }
    .Future_Point02_Visual img{
        max-width: 500px!important;
    }
}
@media screen and (max-width: 768px){
    #StudentCommonsArea{
        margin-bottom: 40px;
    }
    .Future_Point01{
        width: 50px;
    }
    .Future_Point01_Tit{
        width: 130px;
    }
    .Future_Point02{
        width: 50px;
    }
    .Future_Point02_Tit{
        width: 200px;
    }
    .Future_Point02_Info{
        margin-bottom: 40px;
    }
    .Future_Point02_Info ul{
        display: block;
    }
    .Future_Point02_Info ul li{
        width: 100%;
    }
    .Future_Point02_Info ul li .Future_TextArea{
        margin-top: 10px;
    }
    #EducationalEnvironmentArea{
        display: block;
        margin-bottom: 40px;
    }
    #EducationalEnvironmentArea .Future_Environment_Contents01,
    #EducationalEnvironmentArea .Future_Environment_Contents02{
        width: 100%;
    }
    #EducationalEnvironmentArea .Future_Environment_Contents01 .Future_TextArea,
    #EducationalEnvironmentArea .Future_Environment_Contents02 .Future_TextArea{
        line-height: 1.8em;
    }
    .FutureConceptContents{
        width: 95%;
        margin-top: 144%;
    }
    #Future_FloorMap dl.FutureConcept_text dt,
    #Future_FloorMap dl.FutureConcept_text dd{
        line-height: 1.8em;
        font-size: 13px;
    }
    #Future_FloorMap dl.FutureConcept_text dd{
        margin-left: 100px;
    }
}
@media screen and (max-width: 599px){
    #Future_FloorMap {
        background: url(/theme/kumagaku/img/gakusei/facility/future/bg_floor_map_sp.jpg) no-repeat top center / cover;
        max-width: 420px;
        margin: 0 auto;
    }
    #Future_FloorMap::before{
        padding-top: 457%;
    }
    .FutureConceptContents{
        margin-top: 194%;
    }
    #Future_FloorMap dl.FutureConcept_text > dt{
        float: none;
    }
    #Future_FloorMap dl.FutureConcept_text > dd{
        margin-left: 2em;
    }
}
/*==================
サイトマップ
==================*/
#GlobalIndex.sitemapPage{
    border: none;
    padding: 0;
}
.sitemapPage .box-f{
    display: flex;
    justify-content: space-between;
}
.sitemapPage .box-f > li{
    padding-left: 0;
    width: calc((100% / 3) - 20px);
}
.sitemapPage .box-f > li::before{
    content: none;
}
.sitemapPage .box-f > li h3{
    font-size: 26px;
    margin-top: 0;
}
@media screen and (max-width: 768px){
    .sitemapPage .box-f{
        display: block;
    }
    .sitemapPage .box-f > li{
        width: 100%;
        margin-bottom: 25px;
    }
    .sitemapPage .box-f > li h3{
        font-size: 18px;
        margin-bottom: 0;
    }
}
/*==================
令和元年度卒業記念企画ギャラリー
==================*/
.GraduationAlbum .bge-contents{
    overflow: hidden;
}
.GraduationAlbum .bge-contents .bgb-image1 {
    width: calc((100% - 40px) / 5);
    float: left;
    margin: 10px 0px 10px 10px;
}
.GraduationAlbum .bge-contents .bgb-image1:nth-child(5n),
.GraduationAlbum .bge-contents .bgb-image1:last-of-type{
    margin-left: 0;
}
.GraduationAlbum .bgb-image1 .bgt-link__box{
    position: relative;
    width: 100%;
}
.GraduationAlbum .bgb-image1 .bgt-link__box::before{
    content: "";
  display: block;
  padding-top: 100%;
}
.GraduationAlbum .bgb-image1 .bgt-box__image-container{
   position: absolute;
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
}
.GraduationAlbum .bgb-image1 .bgt-image__link .bgt-box__image-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 768px){
.GraduationAlbum .bge-contents .bgb-image1 {
    width: calc((100% - 10px) / 2);
    float: left;
    margin: 10px 10px 10px 0px;
}
.GraduationAlbum .bge-contents div.bgb-image1:nth-child(2n){
    margin-right: 0;
}
}
/*==================
学修スタートサイト
==================*/
.StartTit_L{
    font-size: 34px;
    padding-left: 0.8em;
    font-family: 'Noto Serif JP', serif;
    letter-spacing: 0.1em;
    margin: 40px 0 32px;
    position: relative;
}
.StartTit_L::before{
    content: "";
    width: 6px;
    height: 100%;
    display: block;
    background: #D52E31;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}
ul.LinkList{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
ul.LinkList li{
    width: calc(50% - 20px);
    padding: 0!important;
}
ul.LinkList li::before{
    content: none!important;
}
ul.LinkList li a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 10px 15px 0;
    border-bottom: 1px solid #222;
    color: #222;
}
ul.LinkList li a::after{
    content: "";
    border-right: 1px solid #222;
    border-top: 1px solid #222;
    transform: rotate(45deg);
    width: 9px;
    height: 9px;
    display: inline-block;
}
ul.LinkList li a:hover{
    color: #D52E31;
    text-decoration: none;
    border-color: #D52E31;
}
ul.LinkList li a:hover::after{
    border-color: #D52E31;
}
ul.LinkList_02{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
}
ul.LinkList_02::after{
    content: "";
    width: calc((100% / 3) - 10px);
    display: block;
}
ul.LinkList_02 li{
    padding-left: 0;
    width: calc((100% / 3) - 10px);
    line-height: 1.2em;
}
ul.LinkList_02 li::before{
    content: none!important;
}
ul.LinkList_02 li a{
    border: 1px solid #D52E31;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #D52E31;
    height: 57px;
    padding: 0 15px;
}
ul.LinkList_02 li a::after{
    content: "";
    background: none!important;
    border-right: 1px solid #D52E31;
    border-top: 1px solid #D52E31;
    transform: rotate(45deg);
    width: 9px!important;
    height: 9px!important;
}
ul.LinkList_02 li a:hover{
    text-decoration: none;
    background: #D52E31;
    color: #fff;
}
ul.LinkList_02 li a:hover::after{
    border-color: #fff;
}
.StartBgTit{
    position: relative;
}
.StartBgTit .titText{
    color: #fff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 5%;
    font-family: 'Noto Serif JP', serif;
    font-size: 34px;
}
.StartBgTit .titText .en{
    display: block;
    font-size: 16px;
    font-family: 'Cormorant Garamond', serif;
}
@media screen and (max-width: 768px){
    .StartTit_L{
        font-size: 22px;
        padding-left: 0.6em;
    }
    .StartTit_L::before{
        width: 3px;
    }
    ul.LinkList li{
        width: 100%;
    }
    ul.LinkList_02 li{
        width: 100%;
    }
    ul.LinkList_02 li a{
        height: 52px;
    }
    .StartBgTit .titText{
        font-size: 20px;
        line-height: 1.5;
    }
    .StartBgTit .titText .en{
        font-size: 12px;
    }
}
/*==================
高大連携センター ニュース一覧
==================*/
.news_renkei-c .index_news{
    background: transparent;
}
.news_renkei-c .index_news .index_news_inner{
    width: 100%;
}
/*==================
広報誌・熊本学園通信銀杏並木
==================*/
#KouhouBooks .text-box{
    margin-left: 130px;
}
#KouhouBooks .text-box h4{
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
}
#KouhouBooks .text-box h4 small{
    width: 100%;
    grid-column: 1 / 3;
}
#KouhouBooks .btn-box span{
    padding: 10px 16px!important;
}
@media screen and (max-width: 768px){
    #KouhouBooks .text-box{
        margin-left: auto;
    }
}

.book_area .bgt-image__link .bgt-box__image-container img {
	width: 153px !important;
	height: auto !important;
	margin: 0 auto !important;
}



/*==================
sns
==================*/

ul.sns_list {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

ul.sns_list li {
	margin-right: 22px;
	padding-left: initial !important;
}
ul.sns_list li:before{
    content: none !important;
}
ul.sns_list li a:after {
	content: none !important;
}
ul.sns_list li:last-child {
	margin-right: 0;
}

ul.sns_list li a {
	
}

ul.sns_list li img {
	width: 20px;
	height: auto;
}
ul.sns_list li img.icon_yt {
	width: 27px !important;
}
table.sns-table th {
	background: #F5F8FA !important;
	color: #000 !important;
}

.tit_arrow {
	position: relative;
	border: 1px solid #DDDDDD;
	padding: 20px;
	font-size: 22px !important;
}
.tit_arrow:after {
	position: absolute;
	display: block;
    content: '';
    top: 45%;
    right: 30px;
    width: 10px;
    height: 10px;
    border-right: 1px solid #D52E31;
    border-bottom: 1px solid #D52E31;
    -webkit-transform: rotate(-45deg);
    transform: rotate(45deg);
}


.bgt-box__image-container {
	margin-bottom: 10px;
}


.single_img {
	text-align: center;
}

.single_img img {
	width: 75%;
}

@media screen and (max-width: 768px){
    .single_img img {
		width: 100%;
	}
}


.text_list {
	position: relative;
	line-height: 1.6em;
	margin-bottom: 10px;
	padding-left: 1.65em;
}

.text_list:before {
	content: "";
	position: absolute;
	background: #000;
	width: 8px;
	height: 8px;
	top: 10px;
	left: 7px;
	border-radius: 100%;
}


.list_en {
	margin-left: 33px !important;
}
.list_en li {
	padding-left: initial !important;
}
.list_en li:before {
	content: none !important;
}


ol.li_number {
	margin-left: 3.5em;
}
ol.li_number li {
	list-style-type: none;
	counter-increment: cnt;
	position: relative;
	padding-left: 34px !important;
}
ol.li_number li:before {
	content: "(" counter(cnt) ")" !important;
	display: inline-block;
	margin-left: 3px; 
	width: 3em;
	text-align: right;
	position: absolute;
	top: 0;
	left: 0;
}

/*a.b.c.リスト*/
ol.lower_latin {
	list-style-type: lower-latin;
	margin-left: 25px !important;
}
ol.lower_latin li {
	padding-left: 0 !important;
}
ol.lower_latin li::before {
	content: none !important;
	padding-left: 0 !important;
}

/*行頭を揃える*/
.head_line {
	padding-left: 1.5em;
  	text-indent: -1.5em;
}

.link_inner {
	margin-left: 20px;
}

/*チェックマーク*/
.checkmark {
	content: '';
  	width: 12px;
	height: 7px;
	border-left: 2px solid #333;
	border-bottom: 2px solid #333;
	transform: rotate(-45deg);
	margin: 0 auto;
}