body:not(.slug-top) .content-cards {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
	row-gap: 20px;
}
body:not(.slug-top) .content-cards::before {
	content: "";
	display: block;
	order: 1;
	width: calc((100% / 3) - 15px);
}
body:not(.slug-top) .content-card {
	width: calc((100% / 3) - 15px);
}
.taglist {
	margin: 25px auto;
}
.pagination {
	margin: 45px 0 0;
}
.nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

@media screen and (max-width: 768px) {
	body:not(.slug-top) .main {
		padding: 25px 0 45px;
	}
	body:not(.slug-top) .content-cards::before,
	body:not(.slug-top) .content-card {
		width: 100%;
	}
}

/* application */
.application {
	background: #fff;
	margin: 25px auto 85px;
	padding: 35px 0;
	width: 95%;
	max-width: 1000px;
}
.application-inner {
	margin: 0 auto;
	width: 95%;
	max-width: 840px;
}
.application-head {
	margin: 0 0 35px;
}
.application-head h1,
.application-head h2 {
	font-size: 28px;
	font-weight: 600;
	margin: 0 0 15px;
}
.application-head p {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.8em;
}
.application-form__list {
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.application-form__item {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}
.application-form__item dt {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	width: 300px;
}
.application-form__item dd {
	width: calc(100% - 340px);
}
.application-form__item.policy-form__item dt,
.application-form__item.policy-form__item dd {
	width: 100%;
}
.application-form__item.policy-form__item dt {
	margin: 0 0 10px;
}
.application-form__item.required dt::after {
	background: #E60012;
	border-radius: 2px;
	content: "必須";
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 9px;
	font-weight: 600;
	height: 14px;
	margin-left: 5px;
	position: relative;
	top: 8px;
	text-align: center;
	width: 26px;
}
.application-form__item dt label {
	font-size: 13px;
	font-weight: 600;
}
.application-form__item input[type="text"],
.application-form__item input[type="tel"],
.application-form__item input[type="email"],
.application-form__item input[type="date"],
.application-form__item input[type="submit"],
.application-form__item textarea {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	border: 1px solid #707070;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 16px;
	font-weight: 300;
	height: 23px;
	outline: none;
	padding: 5px;
	width: 100%;
}
.application-form__item input[type="radio"] + .wpcf7-list-item-label,
.application-form__item input[type="checkbox"] + .wpcf7-list-item-label {
	font-size: 16px;
	font-weight: 300;
}
.application-form__item textarea {
	align-items: flex-start;
	height: 92px;
}
.policy-content {
	border: 1px solid #707070;
	height: 172px;
	overflow-y: auto;
	padding: 15px;
}
.policy-content__inner {
	height: 100%;
}
.policy-content__inner h3 {
	font-size: 15px;
	font-weight: 600;
	margin: 0 0 10px;
}
.policy-content__inner p {
	font-size: 12px;
	font-weight: 300;
	line-height: 1.8em;
}
.policy-check {
	margin: 15px 0 0;
	text-align: center;
}
.application-form__submit {
	margin: 25px 0 0;
}
.application-form__submit input[type="submit"] {
	background: var(--main-text-color);
	border-radius: 50px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 21px;
	font-weight: 600;
	height: 53px;
	margin: 0 auto;
	text-align: center;
	width: 90%;
	max-width: 490px;
}
@media screen and (max-width: 768px) {
	.application-head h1,
	.application-head h2 {
		font-size: 21px;
	}
	.application-form__item dt {
		margin: 0 0 10px;
		width: 100%;
	}
	.application-form__item dd {
		width: 100%;
	}
	.application-form__item.policy-form__item dt,
	.application-form__item.policy-form__item dd {
		width: 100%;
	}
}

/* breadcrumb */
.breadcrumb {
	margin: 25px 0 0;
}
.breadcrumb__list {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 auto;
	width: 95%;
	max-width: 1000px;
}
.breadcrumb__list li:not(:last-child)::after {
	content: ">";
	margin: 0 10px;
}
.breadcrumb__list li,
.breadcrumb__list li a {
	font-size: 14px;
	font-weight: 600;
}
.breadcrumb__list li:last-child {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: 150px;
}
@media screen and (max-width: 768px) {
	.breadcrumb {
		margin: 25px auto 0;
		overflow-x: auto;
		padding: 0 2.5%;
	}
	.breadcrumb__list {
		width: max-content;
	}
}

/* detail */
.detail {
	background: #fff;
	margin: 25px auto 85px;
	padding: 35px 0;
	width: 95%;
	max-width: 1000px;
}
.detail-inner {
	margin: 0 auto;
	width: 95%;
	max-width: 840px;
}
.detail-head {
	margin: 0 0 25px;
}
.detail-head h1 {
	font-size: 28px;
	font-weight: 600;
}
.detail-top {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	margin: 0 0 25px;
}
.detail-top__left {
	width: 85%;
}
.detail-top__right {
	width: 15%;
}
.detail-category__name {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	font-size: 21px;
	font-weight: 600;
}
.detail-category__name::before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 32px;
	margin-right: 10px;
	width: 32px;
}
#feature .detail-category__name::before {
	background-image: url(../images/icon-feature.png);
}
#teacher .detail-category__name::before {
	background-image: url(../images/icon-teacher.png);
}
#kind .detail-category__name::before {
	background-image: url(../images/icon-kind.png);
}
#graduation .detail-category__name::before {
	background-image: url(../images/icon-graduation.png);
}
.detail-tags {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
	margin: 10px 0 0;
}
.detail-tag {
	background: #E25252;
	border-radius: 4px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 11px;
	font-weight: 300;
	height: 17px;
	padding: 0 10px;
	width: max-content;
}
.detail-date {
	font-size: 13px;
	font-weight: 600;
}
.toc {
	background: #F1E7E7;
	margin: 20px 0 30px;
	padding: 20px;
}
.toc-title {
	font-size: 28px;
	font-weight: 600;
	margin: 0 0 10px;
}
.toc-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.toc-list li {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.toc-list li::before {
	content: "-";
	width: 10px;
}
.toc-list li a {
	font-size: 13px;
	font-weight: 600;
	width: calc(100% - 10px);
}
.detail-content h2 {
	font-size: 24px;
	font-weight: 600;
	margin: -75px 0 15px;
	padding: 75px 0 0;
}
.detail-content h3 {
	font-size: 21px;
	font-weight: 600;
	margin: -75px 0 15px;
	padding: 75px 0 0;
}
.detail-content p {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.8em;
	margin: 0 0 15px;
	min-height: 25px;
}
.detail-content p:empty {
	margin: 0;
}
.detail-content ul,
.detail-content ol {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin: 0 0 15px;
	padding-left: 20px;
}
.detail-content ul li,
.detail-content ol li {
	font-size: 14px;
	font-weight: 300;
}
.detail-content ul li {
	list-style: disc;
}
.detail-content ol li {
	list-style: decimal;
}
@media screen and (max-width: 768px) {
	.detail-head h1 {
		font-size: 21px;
	}
	.detail-top__left {
		margin: 0 0 10px;
		width: 100%;
	}
	.detail-top__right {
		width: 100%;
	}
	p.toc-title {
		font-size: 21px;
	}
	.detail-content h2 {
		margin: -35px 0 15px;
		padding: 35px 0 0;
	}
	.detail-content h3 {
		margin: -35px 0 15px;
		padding: 35px 0 0;
	}
}

/* pageblock */
.pageblock {
	background: #fff;
	filter: drop-shadow(0 3px 6px rgb(0 0 0 / 16%));
	margin: 25px auto 85px;
	padding: 35px 0 50px;
	width: 95%;
	max-width: 1000px;
}
.pageblock-inner {
	margin: 0 auto;
	width: 95%;
	max-width: 840px;
}
.pageblock-inner__blocks {
	display: flex;
	flex-direction: column;
	gap: 35px;
}
.pageblock-head {
	margin: 0 0 20px;
}
.pageblock-head h1,
.pageblock-head h2 {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin: 0 0 15px;
}
.pageblock-head h1 span,
.pageblock-head h2 span {
	font-size: 28px;
	font-weight: 600;
	width: calc(100% - 29px);
}
.pageblock-head h1::before,
.pageblock-head h2::before {
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	content: "";
	display: block;
	height: 32px;
	margin-right: 10px;
	width: 19px;
}
.pageblock-head h1::before,
.pageblock-head h2::before {
	background-image: url(../images/icon-ttl.svg);
}
@media screen and (max-width: 768px) {
	.pageblock-head h1 span,
	.pageblock-head h2 span {
		font-size: 21px;
	}
}

/* numbers */
.numbers-blocks {
	border-top: 1px solid #707070;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}
.numbers-block {
	border-bottom: 1px solid #707070;
	padding: 20px 0;
	text-align: center;
	width: calc(100% / 3);
}
.numbers-block.numbers-block--left {
	text-align-last: left;
}
.numbers-block.flexitem-block {
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    min-height: 186px;
    width: 50%;
}
.numbers-block:nth-child(3n-1) {
	border: 1px solid #707070;
	border-top: 0;
}
.numbers-block:nth-child(3n+1) {
	border-left: 1px solid #707070;
}
.numbers-block:nth-of-type(3n) {
	border-right: 1px solid #707070;
}
.numbers-block:nth-child(9) {
	border-right: 0;
	border-left: 1px solid #707070;
}
.numbers-block__middle {
/* 	width: 82px; */
}
.numbers-block__image {
	height: 80px;
}
.numbers-block.flexitem-block .numbers-block__image {
	width: 82px;
}
.numbers-block__image img {
	height: 100%;
	object-fit: contain;
	width: 100%;
}
.numbers-block__ttl {
	background: var(--main-theme-color);
	border-radius: 50px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 13px;
	font-weight: 600;
	height: 20px;
	margin: 0 auto 20px;
	padding: 0 20px;
	text-align: center;
	min-width: 100px;
	width: max-content;
}
.numbers-block.flexitem-block .numbers-block__ttl {
    margin: 0 16px;
}
.numbers-block__txt-wrapper {
	width: fit-content;
	margin-inline: auto;
	text-align: left;
	margin-left: 4px;
	margin-right: 4px;
}
.numbers-block__txt {
	font-size: 24px;
	font-weight: 700;
	margin: 15px 0 0;
	color: var(--main-theme-color);
}
.numbers-block.flexitem-block .numbers-block__txt {
	margin: 5px 0 0;
}
.numbers-block__txt-year {
	margin-top: 24px;
	font-size: 18px;
	font-weight: 600;
}
.numbers-block__right {
/* 	width: calc(100% - (82px + 150px)); */
    position: absolute;
    bottom: 0;
	right: 10px;
    text-align: right;
}
.numbers-block__right p {
    font-size: 10px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 4px;
}
@media screen and (max-width: 768px) {
	.numbers-block {
		width: calc(100% / 2);
	}
	.numbers-block:nth-of-type(3n) {
		border-left: 1px solid #707070;
	}
	.numbers-block:nth-child(3n+1) {
		border-right: 1px solid #707070;
	}
	.numbers-block.flexitem-block {
        min-height: 140px;
        padding-bottom: 50px;
        padding-right: 20px;
        justify-content: center;
        width: 100%;
	}
	.numbers-block:nth-child(7) {
		border-right: 1px solid #707070;
	}
	.numbers-block__middle {
/* 		width: 52px; */
	}
	.numbers-block__image {
		height: 50px;
	}
	.numbers-block.flexitem-block .numbers-block__image {
		width: 52px;
	}
	.numbers-block__ttl {
		font-size: 10px;
		margin: 0 auto 15px;
		padding: 0 5px;
		min-width: 70px;
	}
	.numbers-block__txt {
		font-size: 17px;
	}
	.numbers-block__right {
/* 		width: calc(100% - (52px + 100px)); */
	}
	.numbers-block__right p {
		font-size: 8px;
	}
	.numbers-block__txt-year {
		font-size: 15px;
	}
	.numbers-block:last-child {
		width: 100%;
	}
}

/* recruit */
.recruit-toc {
	background: #F1E7E7;
	padding: 20px 25px;
}
.recruit-toc ol li a {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.8em;
}
.recruit-toc ol li ol {
	padding-left: 20px;
}

.recruit-information {
	background: #EAF8FF;
	padding: 25px 30px;
}
.recruit-information__ttl {
	margin: 0 0 20px;
}
.recruit-information__ttl p {
	font-size: 24px;
	font-weight: 600;
}
.recruit-information__item {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-wrap: wrap;
	padding: 10px 0;
}
.recruit-information__item:not(:last-child) {
	border-bottom: 1px dotted #707070;
}
.recruit-information__item dt {
	width: 135px;
}
.recruit-information__item dd {
	width: calc(100% - 135px);
}
.recruit-information__item dt p,
.recruit-information__item dt strong {
	font-size: 14px;
	font-weight: 300;
}
.recruit-information__item dd p,
.recruit-information__item dd strong {
	font-size: 14px;
	font-weight: 300;
}
.recruit-information__item dt strong,
.recruit-information__item dd strong {
	font-weight: 600;
}
.recruit-information__btn {
	margin: 25px auto 0;
	width: 95%;
	max-width: 593px;
}
.recruit-information__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: 18px;
	border-radius: 50px;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 18px;
	font-weight: 600;
	height: 60px;
	width: 100%;
}
.flexcontent {
	display: flex;
	flex-direction: column;
	gap: 45px;
}
.flexcontent-item {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}
.flexcontent-item:nth-child(even) {
	flex-direction: row-reverse;
}
.flexcontent-text {
	width: calc(100% - 335px);
}
.flexcontent-image {
	width: 300px;
}
.flexcontent-text h3 {
	font-size: 24px;
	font-weight: 600;
	margin: 0 0 20px;
}
.flexcontent-text h3.c {
	text-align: center;
}
.flexcontent-text p {
	font-size: 14px;
	font-weight: 300;
}

.recruit-process {
	display: flex;
	flex-direction: column;
	gap: 25px;
}
.recruit-process__item {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
.recruit-process__num {
	background: var(--main-theme-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 69px;
	margin-right: 25px;
	width: 69px;
}
.recruit-process__num p {
	color: #fff;
	font-size: 38px;
	font-weight: 600;
}
.recruit-process__text {
	width: calc(100% - (69px + 25px));
}
.recruit-process__text h3 {
	font-size: 17px;
	font-weight: 600;
	margin: 0 0 10px;
}
.recruit-process__text p {
	font-size: 13px;
	font-weight: 300;
}

.recruit-msg__text {
	margin: 0 0 25px;
}
.recruit-msg__text p {
	font-size: 14px;
	font-weight: 300;
	line-height: 1.8em;
}
.recruit-msg__image img {
	width: 100%;
}
@media screen and (max-width: 768px) {
	.recruit-toc {
		padding: 20px 12px;
	}
	.recruit-information {
		padding: 20px 12px;
	}
	.recruit-information__ttl {
		margin: 0 0 20px;
	}
	.recruit-information__ttl p {
		font-size: 18px;
	}
	.recruit-information__item dt {
		margin: 0 0 5px;
		width: 100%;
	}
	.recruit-information__item dd {
		width: 100%;
	}
	.recruit-information__btn a {
		font-size: 14px;
		height: 50px;
	}
	.flexcontent {
		gap: 25px;
	}
	.flexcontent-item {
		flex-direction: column-reverse;
	}
	.flexcontent-text {
		margin: 15px 0 0;
		width: 100%;
	}
	.flexcontent-image {
		width: 100%;
	}
	.flexcontent-text h3 {
		font-size: 18px;
	}
	.recruit-process__num {
		height: 50px;
		margin-right: 15px;
		width: 50px;
	}
	.recruit-process__num p {
		font-size: 28px;
	}
	.recruit-process__text {
		width: calc(100% - (50px + 15px));
	}
	.recruit-process__text h3 {
		font-size: 15px;
	}
	.recruit-process__text p {
		font-size: 12px;
	}
}

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

/* 採用情報 */
p, dd {
	line-height: 1.8;
	margin:  14px auto;
}

/* ------------------------------------------------------------
page title
------------------------------------------------------------ */
.page_header {
	height: 230px;
	margin: 0 auto 60px;
	padding: 73px 4%;
	background: rgba(41, 41, 41, .05) url(../images/page_head_logo.png) no-repeat center center;
	background-size: 56px auto;
}

.page_ttl {
	font-size: 28px;
	font-weight: 600;
	text-align: center;
	line-height: 1.5;
	letter-spacing: .02em;
}

@media screen and (min-width: 900px) {
	.page_header {
		margin: 0 auto 80px;
		padding: 91px 0;
	}

	.page_ttl {
		font-size: 32px;
		letter-spacing: .1em;
	}
}

.container_recruit {
	position: relative;
	width: calc(100% - (4.2% * 2));
	max-width: 900px;
	margin: 0 auto;
}

.sec_container {
	margin: 0 0 80px;
}

.content_block {
	margin-bottom: 40px;
}


@media screen and (min-width: 900px) {
	.content_block {
		margin-bottom: 60px;
	}
}


.page_h2 {
	position: relative;
	margin-bottom: 40px;
	padding-bottom: 20px;
	font-size: 22px;
	font-weight: 600;
	text-align: center;
	line-height: 1.5;
}

.page_h2:after {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	content: '';
	display: block;
	width: 100px;
	height: 5px;
	margin: auto;
	background: linear-gradient(90deg, #c23842, #c23842 50px, #26396b 50px, #26396b);
}

@media screen and (min-width: 900px) {
	.page_h2 {
		margin-bottom: 60px;
		padding-bottom: 30px;
		font-size: 32px;
		letter-spacing: .05em;
	}
}

.tac {
	text-align: center;
}

.tac iframe {
	max-width: 560px;
	width: 100%;
	height: auto;
	aspect-ratio: 16/9;
}

.sec_container p.f-big-p {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
}

.sec_container p {
	margin-bottom: 1em;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: .02em;
}

.font_red {
	color: #BB0104;
	font-weight: bold;
}

.philosophy_txt p {
	font-size: 16px;
}

@media screen and (min-width: 900px) {
	.philosophy_txt p {
		font-size: 18px;
	}
}

.sec_container p:last-of-type {
	margin-bottom: 0;
}

.saiyo-flow {
	background: #ebf5f8;
	padding: 15px 30px 12px;
	margin-block:11px;
}

.saiyo-flow p span {
	font-weight: bold;
}

.sec_container p:last-of-type {
	margin-bottom: 0;
}

.red {
	color: #C60012;
}

.btn {
	width: 86%;
	max-width: 320px;
	height: 48px;
	margin: 3em auto 0;
	line-height: 1.5;
}

.btn_primary a {
	color: #fff;
	background: #b70a27;
}

.btn_blue a {
	background: #eb3544;
}


.btn a {
	display: block;
	width: 100%;
	height: 100%;
	font-size: 1.4rem;
	letter-spacing: .05em;
	text-align: center;
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

a {
	color: #c23842;
	outline: none;
	text-decoration: none;
}

.frame_line2 {
	border: 3px solid rgba(38, 57, 107, .2);
	border-radius: 4px;
	margin-top: 20px;
}

.frame_line2 + .frame_line2 {
	margin-top: 32px;
}

.frame_line2 dt {
	padding: 16px;
	background: rgba(38, 57, 107, .2);
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
}

.frame_line2 dd {
	padding: 16px;
}

@media screen and (min-width: 900px) {
	.frame_line2 dt {
		font-size: 24px;
		letter-spacing: .05em;
	}

	.frame_line2 dt,
	.frame_line2 dd {
		padding: 1rem 0 0 2rem;
	}
}

.content-inner-block {
	margin: 0 0 40px;
}

h3 {
	margin: 20px auto;
	padding: 11px;
	background: rgba(208, 96, 105, .2);
	border-radius: 2px;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.5;
	letter-spacing: .02em;
}

.question-flow__item {
	padding: 22px 29px;
	margin-block: 11px;
}

.question-flow__item.question-flow__item--orange {
	background-color: #FFF2E3;
}

.question-flow__item.question-flow__item--yellow{
	background-color: #FFFFE3;
}

.question-flow__title {
	font-size: 14px;
	font-weight: bold;
}

.question-flow__comment {
	font-weight: 14px;
}

.entry-message__title {
	text-align: center;
	color: white;
	background-color: #E60013;
	border-radius: 13px;
	padding: 25px 55px;
	width: fit-content;
	margin-inline: auto;
	font-size: 20px;
}

@media screen and (min-width: 900px) {
	.entry-message__title {
		font-size: 28px;
		padding: 25px 66px;
	}
}

.entry-message__body {
	margin-top: 68px;
	display: grid;
	gap: 18px;
}

@media screen and (min-width: 900px) {
	.entry-message__body {
		margin-top: 45px;
	}
}


.entry-message__text {
	text-align: center;
	font-size: 14px;
}

