@charset "UTF-8";

/* -----------------------------------------------------------
	下層ヘッダー
----------------------------------------------------------- */

.mv-kasou{
	position: relative;
}
.mv-kasou div{
	width: 100%;
	height: 300px;
}
.mv-kasou div img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}
.main-inner{
	position: relative;
	top: -58px;
}

@media screen and (max-width:1200px) {
	.mv-kasou div{
		height: 200px;
	}
}

@media screen and (max-width:768px) {
	.main-inner{
		top: -30px;
	}
	.mv-kasou div{
		height: 140px;
	}
}

/* -----------------------------------------------------------
	パンナビ
----------------------------------------------------------- */

.breadcrumb{
	justify-content: flex-end;
	margin-bottom: 100px;
}
.breadcrumb > ol{
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	margin: 0;
	padding: 0;
    align-items: center;
}
.breadcrumb > ol > li{
	margin-left: 20px;
	padding-left: 40px;
	position: relative;
}
.breadcrumb > ol > li::before{
	content: '';
	width: 20px;
	height: 1px;
	background: var(--sub-color03);
	position: absolute;
	top: 16px;
	left: 0;
}
.breadcrumb > ol > li:first-child{
	padding-left: 0;
	margin-left: 0;
}
.breadcrumb > ol > li:first-child::before{
	display: none;
}
.breadcrumb-home{
	display: block;
	width: 14px;
}

@media screen and (max-width:768px) {
	.breadcrumb{
		margin-bottom: 60px;
	}
	.breadcrumb-home{
		width: 11px;
	}
	.breadcrumb > ol > li{
		margin-left: 10px;
    	padding-left: 20px;
	}
	.breadcrumb > ol > li::before{
		width: 10px;
		top: 12px;
	}
	
}

/* -----------------------------------------------------------
	下層扉ページ
----------------------------------------------------------- */

.row-point > div:nth-child(odd){
	padding-right: 35px;
}
.row-point > div:nth-child(even){
	padding-left: 35px;
}
.title-sub{
	font-size: 1.56rem;
	color: var(--main-color);
	font-family: var(--font-en);
	font-weight: bold;
	padding-top: 15px;
	margin-top: 60px;
	position: relative;
}
.title-sub::before{
	content: '';
	display: block;
	width: 46px;
	height: 20px;
	background: url("../imgs/common/title-sub.png") center / contain no-repeat;
	position: absolute;
	top: 0;
	left: 0;
}

.button-tobira > a{
	display: block;
    border: 1px solid #000;
    border-radius: 30px;
    overflow: hidden;
	text-decoration: none;
}
.button-tobira > a > .button-tobira-img{
	display: block;
	width: 100%;
    height: 250px;
	overflow: hidden;
}
.button-tobira > a > .button-tobira-img > img{
	display: block;
	width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
	transition: all .3s ease;
}
.button-tobira > a > .button-tobira-text{
	display: block;
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--main-color);
    padding: 10px 20px 10px 45px;
	position: relative;
}
.button-tobira > a > .button-tobira-text::before{
	content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: 0;
	border-left: 11px solid var(--sub-color03);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    margin: auto 0;
	transition: all .3s ease;
}
.button-tobira > a > .button-tobira-text::after{
	content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-right: 0;
	border-left: 7px solid var(--sub-color02);
    position: absolute;
    top: 0;
    bottom: 0;
    left: 21px;
    margin: auto 0;
	transition: all .3s ease;
}

@media (hover: hover) {
	.button-tobira > a:hover > .button-tobira-img > img{
		transform: scale(1.1);
	}
	.button-tobira > a:hover > .button-tobira-text::before{
		left: 25px;
	}
	.button-tobira > a:hover > .button-tobira-text::after{
		left: 26px;
	}
}

@media screen and (max-width:1200px) {
	.row-point > div:nth-child(odd){
		padding-right: 15px;
	}
	.row-point > div:nth-child(even){
		padding-left: 15px;
	}
	.button-tobira > a > .button-tobira-img{
		height: 150px;
	}
}

@media screen and (max-width:768px) {
	.row-point > div:nth-child(odd){
		padding-right: calc(var(--bs-gutter-x) * .5);
	}
	.row-point > div:nth-child(even){
		padding-left: calc(var(--bs-gutter-x) * .5);
	}
	.title-sub{
		font-size: 1.25rem;
		padding-top: 10px;
		margin-top: 30px;
	}
	.title-sub::before{
		width: 32px;
		height: 14px;
	}
	.button-tobira > a > .button-tobira-text{
		font-size: 1rem;
		padding: 10px 20px 10px 35px;
	}
	.button-tobira > a > .button-tobira-text::before{
		border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 8px solid var(--sub-color03);
	}
	.button-tobira > a > .button-tobira-text::after{
		border-top: 3px solid transparent;
        border-bottom: 3px solid transparent;
        border-left: 5px solid var(--sub-color02);
	}
}

/* -----------------------------------------------------------
	下層　ページ下部イラスト
----------------------------------------------------------- */

.kasou-footer-illa{
	width: 650px;
	position: relative;
	left: 20px;
	bottom: 0;
}

@media screen and (max-width:768px) {
	.kasou-footer-illa{
		width: 280px;
	}
}

/* -----------------------------------------------------------
	ニュース一覧
----------------------------------------------------------- */

.news-list > li{
	display: flex;
    gap: 30px;
    align-items: center;
	border-bottom: 1px dashed var(--sub-color03);
	margin-bottom: 10px;
	position: relative;
}
.news-cat{
	display: flex;
	gap: 10px;
	min-width: 260px;
}
.news-cat time,
.news-cat div{
	font-size: 0.875rem;
	line-height: 1;
	padding: 9px 20px 10px;
	border-radius: 30px;
}
.news-cat time{
	color: #fff;
	background: var(--main-color);
    min-width: 10em;
    text-align: center;
}
.news-cat div.cat-news{
	background: var(--sub-color02);
}
.news-cat div.cat-event{
	background: var(--sub-color07);
}
.news-cat-single,
.news-cat-course{
	justify-content:space-between;
	align-items: center;
    margin-bottom: 3em;
    flex-wrap: wrap;
    border-bottom: 1px dashed var(--sub-color03);
}
.news-cat-single{
	justify-content:end;
}
.news-cat-single time{
	background:unset;
	color:#222;
	padding:0 !important;
	font-size:1em !important;
	width:unset;
	text-align:unset;
    min-width: unset;
}
.news-cat-single .news-cat-list,
.news-cat-course .news-cat-list{
	display:flex;
	gap:10px;
    justify-content: flex-end;
    padding-right: 0;
}

.news-link,
.news-nolink{
	margin: 20px 0;
}
.news-link > a{
	display: block;
	color: var(--sub-color03);
	text-decoration: none;
}
.news-link > a::after{
	content: '';
	display: block;
	width: 0;
	height: 3px;
	background: var(--main-color);
	position: absolute;
	bottom: -1px;
	left: 0;
	transition: all .3s ease;
}
.news-cat.news-cat-course .news-cat-list div{
	background:var(--bg-color01);
}
.news-cat-course .item-teacher{
	margin-bottom:0;
	border-bottom:unset;
	padding-bottom:0;
}
@media (hover: hover) {
	.news-link > a:hover{
		color: var(--main-color);
	}
	.news-link > a:hover::after{
		width: 100%;
	}
}

@media screen and (max-width:1200px) {
	.news-list > li{
		flex-direction: column;
        align-items: flex-start;
        gap: 0px;
		margin-bottom: 30px;
	}
	.news-link,
	.news-nolink{
		margin: 10px 0;
	}
}

@media screen and (max-width:767px) {
	.news-cat time,
	.news-cat div{
		font-size: 0.75rem;
		padding: 5px 15px 6px;
	}
}

/* -----------------------------------------------------------
	授業紹介・ゼミ紹介共通
----------------------------------------------------------- */

.swiper-slide.item{
	height: 100%;
}