/* btn */
.btn-wrap {
	margin: 30px 0 0;
}
.btn {
	background: var(--main-text-color);
	background-image: url(../images/icon-arrow-r.svg);
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: 14px;
	border-radius: 50px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: 300;
	height: 53px;
	margin: 0 auto;
	text-align: center;
	width: 90%;
	max-width: 490px;
}

/* toppanel */
.toppanel {
	background: url(../images/toppanel-bg.jpg) no-repeat;
	background-position: center top;
	background-size: cover;
	padding: 65px 0;
}
.toppanel-inner {
	margin: 0 auto;
	width: 95%;
	max-width: 1000px;
}
.toppanel-about {
	background: #fff;
	border-radius: 8px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	margin: 0 0 35px;
	padding: 20px;
}
.toppanel-about__left {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	width: 231px;
}
.toppanel-about__left::after {
	background: var(--main-theme-color);
	content: "";
	display: block;
	height: 1px;
	margin: 0 16px;
	width: 40px;
}
.toppanel-about__right {
	width: calc(100% - 231px);
}
.toppanel-about__left p {
	font-size: 18px;
	font-weight: 600;
	width: calc(100% - 56px);
}
.toppanel-about__right p {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.7em;
	display: -webkit-box;
	/*     -webkit-box-orient: vertical;
	-webkit-line-clamp: 2; */
	overflow: hidden;
}
.toppanel-content__cards {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	gap: 20px;
}
.toppanel-content__card {
	width: calc((100% / 3) - 15px);
}
.toppanel-content__card:first-child {
	width: 100%;
}
.toppanel-content__card:first-child a {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}
.toppanel-card__image {
	line-height: 0;
	width: 100%;
}
.toppanel-content__card:first-child .toppanel-card__image {
	height: auto;
}
.toppanel-content__card:first-child .toppanel-card__image,
.toppanel-content__card:first-child .toppanel-card__text {
	width: 50%;
}
.toppanel-card__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
	aspect-ratio: 16 / 9;
}
.toppanel-card__text {
	background: #fff;
	padding: 25px;
	width: 100%;
	min-height: 200px;
}
.toppanel-content__card:first-child .toppanel-card__text {
	padding: 45px 30px;
}
.toppanel-card__ttl {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.6em;
	margin: 10px 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.toppanel-card__date {
	font-size: 12px;
	font-weight: 300;
	margin: 10px 0 0;
}
.toppanel-content__card:first-child .toppanel-card__ttl {
	font-size: 24px;
	margin: 15px 0;
}
.toppanel-content__card:first-child .toppanel-card__date {
	font-size: 14px;
	margin: 15px 0 0;
}
.toppanel-content__card:first-child .cat {
	font-size: 12px;
	height: 24px;
}
.toppanel-content__card:first-child .posttag {
	font-size: 12px;
	height: 18px;
}
@media screen and (max-width: 968px) {
	.toppanel-card__text {
		padding: 20px;
	}
	.toppanel-content__card:first-child .toppanel-card__text {
		padding: 25px 20px;
	}
}
@media screen and (max-width: 768px) {
	.toppanel {
		padding: 45px 0;
	}
	.toppanel-about {
		margin: 0 0 25px;
		padding: 15px;
	}
	.toppanel-about__left {
		flex-direction: column;
		align-items: flex-start;
		margin: 0 0 10px;
		width: 100%;
	}
	.toppanel-about__left::after {
		margin: 10px 0 0;
		width: 40px;
	}
	.toppanel-about__right {
		width: 100%;
	}
	.toppanel-about__left p {
		/*         width: max-content; */
		margin: 0;
		width: 100%;
	}
	.toppanel-content__cards {
		gap: 10px;
	}
	.toppanel-content__card {
		width: 100%;
	}
	.toppanel-content__card:first-child .toppanel-card__image {
		width: 100%;
	}
	.toppanel-content__card:first-child .toppanel-card__text {
		width: 100%;
	}
	.toppanel-card__text {
		padding: 15px;
	}
	.toppanel-content__card:first-child .toppanel-card__text {
		padding: 15px;
	}
	.toppanel-card__ttl {
		font-size: 16px;
	}
	.toppanel-card__date {
		font-size: 11px;
	}
	.toppanel-content__card:first-child .toppanel-card__ttl {
		font-size: 16px;
		margin: 10px 0;
	}
	.toppanel-content__card:first-child .toppanel-card__date {
		font-size: 11px;
		margin: 15px 0 0;
	}
	.toppanel-content__card:first-child .cat {
		font-size: 10px;
		height: 18px;
	}
	.toppanel-content__card:first-child .posttag {
		font-size: 11px;
		height: 17px;
	}
}

/* block */
.main {
	background: #F1E7E7;
}
.block {
	padding: 25px 0 45px;
}
.block-inner {
	margin: 0 auto;
	width: 95%;
	max-width: 1000px;
}
.block-head {
	margin: 0 0 30px;
}
.block-head h2 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.block-head h2::before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 32px;
	margin-right: 10px;
	width: 32px;
}
#feature .block-head h2::before {
	background-image: url(../images/icon-feature.png);
}
#teacher .block-head h2::before {
	background-image: url(../images/icon-teacher.png);
}
#kind .block-head h2::before {
	background-image: url(../images/icon-kind.png);
}
#graduation .block-head h2::before {
	background-image: url(../images/icon-graduation.png);
}
#newarrival .block-head h2::before {
	display: none;
}
.block-head h2 span {
	display: block;
	font-size: 28px;
	font-weight: 600;
	width: calc(100% - 42px);
}
.block-head p {
	font-size: 14px;
	font-weight: 600;
	margin: 15px 0 0;
}
@media screen and (max-width: 968px) {
	.block-head h2 span {
		font-size: 21px;
	}
}
@media screen and (max-width: 768px) {
	.block-head h2 span {
		font-size: 18px;
	}
}

/* categories */
.categories {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.cat {
	background: #fff;
	border: 1px solid var(--main-theme-color);
	border-radius: 50px;
	color: var(--main-theme-color);
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 10px;
	font-weight: 300;
	height: 18px;
	padding: 0 10px;
	width: max-content;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
}

/* tags */
.posttags {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.blog .posttags,
.category .posttags {
	margin: 0 0 15px;
}
.posttag {
	background: #F0EFEF;
	border-radius: 4px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 11px;
	font-weight: 300;
	height: 17px;
	padding: 0 10px;
	width: max-content;
}
.blog .posttag,
.category .posttag {
	background: #E25252;
	color: #fff;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* content-card */
.content-card {
	background: #fff;
	height: auto;
}
.flex-card a {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}
.content-card__image {
	line-height: 0;
}
.flex-card .content-card__image {
	width: 45%;
}
.content-card__image img {
	height: 100%;
	object-fit: cover;
	width: 100%;
	aspect-ratio: 16 / 9;
}
.content-card__text {
	background: #fff;
	padding: 25px 20px;
}
.flex-card .content-card__text {
	width: 55%;
}
.content-card__ttl {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.6em;
	margin: 10px 0;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}
.content-card__date {
	font-size: 12px;
	font-weight: 300;
	margin: 10px 0 0;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
	.flex-card .content-card__image,
	.flex-card .content-card__text {
		width: 100%;
	}
	.content-card__text {
		padding: 15px 12px;
	}
}

/* contents-slider */
.contents-sliders {
	position: relative;
}
.contents-slider {
	margin: 0 auto;
	overflow: hidden;
	width: 100%;
	max-width: 1000px;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
.swiper-button-next,
.swiper-button-prev {
	background: var(--main-theme-color);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 14px;
	border-radius: 50%;
	height: 64px;
	top: 45%;
	width: 64px;
}
.swiper-button-next {
	background-image: url(../images/slider-arrow-r.svg);
}
.swiper-button-prev {
	background-image: url(../images/slider-arrow-l.svg);
}
.swiper-button-next::before,
.swiper-button-next::after,
.swiper-button-prev::before,
.swiper-button-prev::after {
	display: none;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
	right: -30px;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: -30px;
}
@media screen and (max-width: 968px) {
	.swiper-button-next,
	.swiper-button-prev {
		background-size: 10px;
		height: 45px;
		width: 45px;
	}
	.swiper-button-next,
	.swiper-rtl .swiper-button-prev {
		right: -10px;
	}
	.swiper-button-prev,
	.swiper-rtl .swiper-button-next {
		left: -10px;
	}
}
@media screen and (max-width: 768px) {
	.swiper-button-next,
	.swiper-button-prev {
		background-size: 7px;
		height: 40px;
		width: 40px;
	}
	.swiper-button-next,
	.swiper-rtl .swiper-button-prev {
		right: -10px;
	}
	.swiper-button-prev,
	.swiper-rtl .swiper-button-next {
		left: -10px;
	}
}

/* taglist */
.taglist {
	background: #fff;
	border-radius: 8px;
	margin: 65px auto 25px;
	padding: 25px;
	width: 95%;
	max-width: 1000px;
}
.taglist-inner {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}
.taglist-head {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding-right: 20px;
	position: relative;
	text-align: left;
	width: 150px;
}
.taglist-body {
	padding-left: 20px;
	width: calc(100% - 150px);
}
.taglist-head::after {
	background: var(--main-text-color);
	content: "";
	display: block;
	height: 100%;
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: 1px;
}
.taglist-head h2 {
	font-size: 18px;
	font-weight: 600;
}
.taglist-body ul {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}
.taglist-body ul li a {
	background: #E15252;
	border-radius: 4px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 14px;
	font-weight: 300;
	height: 26px;
	padding: 0 10px;
	width: max-content;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
	.taglist {
		padding: 15px;
	}
	.taglist-head {
		margin: 0 0 10px;
		padding: 0 0 5px;
		width: 100%;
	}
	.taglist-head::after {
		height: 1px;
		top: inherit;
		width: 100%;
	}
	.taglist-body {
		padding-left: 0;
		width: 100%;
	}
}

/* information */
.information {
	background: #ADCBE0;
	background-image: url(../images/information-bg.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: 1000px;
	padding: 45px 0 260px;
}
.information-inner {
	margin: 0 auto;
	width: 95%;
	max-width: 1000px;
}
.information-head {
	margin: 0 0 20px;
	text-align: center;
}
.information-head h2 {
	font-size: 28px;
	font-weight: 600;
}
.information-cards {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	margin: 0 0 45px;
}
.information-card {
	background: #fff;
	border-radius: 8px;
	width: 48.5%;
}
.information-card a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
}
.information-card__image {
	width: 64px;
}
.information-card__text {
	width: calc(100% - 79px);
}
.information-card__ttl {
	font-size: 20px;
	font-weight: 600;
	margin: 0 0 5px;
}
.information-card__txt {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6em;
}
.information-cta p {
	font-size: 24px;
	font-weight: 600;
	text-align: center;
}
.information-cta p span {
	color: var(--main-theme-color);
}
.information-cta__btn {
	margin: 25px auto 0;
	width: 95%;
	max-width: 490px;
}
.information-cta__btn a {
	background: var(--main-theme-color);
	background-image: url(../images/icon-arrow-r.svg);
	background-position: right 20px center;
	background-repeat: no-repeat;
	background-size: 14px;
	border-radius: 50px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-weight: 600;
	height: 50px;
	width: 100%;
}
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {
	.information {
		background-size: 520px;
		padding: 45px 0 140px
	}
	.information-head h2 {
		font-size: 18px;
	}
	.information-cards {
		gap: 10px;
		margin: 0 0 35px;
	}
	.information-card {
		width: 100%;
	}
	.information-card a {
		padding: 15px;
	}
	.information-card__ttl {
		font-size: 18px;
	}
	.information-cta p {
		font-size: 18px;
	}
}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}

/* blockname */
@media screen and (max-width: 968px) {}
@media screen and (max-width: 768px) {}