@charset "utf-8";

/* Body
------------------------------ */
html {
	overflow-x: hidden;
	font-size: 62.5%;
}
body {
	color: #000;
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 190%;
	letter-spacing: 0;
	text-size-adjust: 100%;
	margin: 0;
	animation: fadeIn 0.4s ease-in 0s 1 normal;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
a {
	text-decoration: none;
	transition: 0.25s ease;
}
ul,ol {
	letter-spacing: -0.4em;
	line-height: 0;
}
li {
	letter-spacing: normal;
	vertical-align: top;
	line-height: 188%;
}
img {
	vertical-align: top;
	max-width: 100%;
	width: 100%;
	height: auto;
}
.en{
	font-family: 'Inter', sans-serif;
}

/* layout
------------------------------ */
@media screen and (min-width: 1251px) {
	.wrapper {
		width: 1250px;
	}
}
.wrapper {
	position: relative;
	display: block;
	margin: 0 auto;
}
*,*::before,*::after {
	box-sizing: border-box;
}

/* Common
------------------------------ */
table {
	width: 100%;
}
.btn{
	position: relative;
	display: flex;
	width: 300px;
	height: 80px;
	color: #FFF;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: .05em;
	padding: 30px 42px;
	border-radius: 50px;
	box-sizing: border-box;
	background-color: #2B7FD3;
	box-shadow: 4px 4px 0 #6AC751;
	justify-content: space-between;
	align-items: center;
	transition: .35s;
	top: 0;
}
.btn::after{
	content: "";
	position: relative;
	display: block;
	width: 26px;
	height: 5px;
	background: url(../images/saiyo/btn_arrow_rightWhite.svg) no-repeat center center / contain;
	transition: .35s;
	right: 0;
}
.btn:hover{
	background-color: #6AC751;
	box-shadow: 0;
	top: 2px;
}
.btn:hover::after{
	right: -5px;
}
a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
}
figure{
	margin: 0;
}

/* Header
------------------------------ */
header {
	position: relative;
	width: 100%;
	z-index: 10;
	background: #fff;
}
header .wrapper{
	display: flex;
	padding-top: 31px;
	padding-bottom: 31px;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
.header_logo a{
	position: relative;
	display: block;
	max-width: 430px;
	width: 100%;
}
@media screen and (min-width:1250px) and (max-width:1500px) {
	.header_logo{
		position: relative;
		max-width: 25%;
	}
}

/* global navi
------------------------------ */
#gnav ul{
	display: flex;
	gap: 30px;
	align-items: center;
	justify-content: flex-end;
}
.header_fixed_menu{
	display: none;
}
#gnav ul li a{
	color: #000;
	position: relative;
	display: block;
	width: 100%;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: .05em;
}
#gnav ul li a:hover{
	color: #2B7FD3;
}

/* 固定header */
header.clone-nav {
	-webkit-transition: .6s ease-in-out;
	position: fixed;
	top: -200%;
	transition: .6s ease-in-out;
	width: 100%;
	z-index: 10;
}
header.is-show {
	-webkit-box-shadow:  0 0 10px rgb(0 0 0 / 85%);
	box-shadow: 0 0 10px rgb(0 0 0 / 85%);
	top: 0;
}
.customize-support header.is-show{
	top: 32px;
}
header.clone-nav .wrapper{
	width: 100%;
	padding: 0 0 0 25px;
}
header.clone-nav #gnav ul{
	gap: 0;
}
header.clone-nav #gnav ul li:not(:first-child){
	margin-left: 20px;
}
header.clone-nav #gnav ul li a{
	font-size: 15px;
}
@media screen and (min-width:1250px) and (max-width:1500px) {
	header.clone-nav #gnav ul li a{
		font-size: 14px;
		white-space: nowrap;
	}
}
header.clone-nav .header_fixed_menu{
	display: block;
}
header.clone-nav #gnav ul li.header_fixed_menu:nth-child(6) a{
	max-width: 150px;
	width: 100%;
	color: #FFF;
	padding: 54px 27px;
	background-color: #6AC751;
}
header.clone-nav #gnav ul li.header_fixed_menu:nth-child(7){
	margin-left: 0;
}
header.clone-nav #gnav ul li.header_fixed_menu:nth-child(7) a{
	max-width: 150px;
	width: 100%;
	color: #FFF;
	padding: 54px 18px;
	background-color: #747474;
}
header.clone-nav #gnav ul li.header_fixed_menu:nth-child(6) a:hover,
header.clone-nav #gnav ul li.header_fixed_menu:nth-child(7) a:hover{
	opacity: .7;
}

/* saiyo common
------------------------------ */
.saiyo_section_title{
	position: relative;
	text-align: center;
}
.saiyo_section_title_ja{
	position: relative;
	display: inline-block;
	color: #2B7FD3;
	font-size: 46px;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	line-height: 145%;
	letter-spacing: .05em;
	text-align: center;
	padding-bottom: 23px;
	border-bottom: 2px solid #3A82F7;
	z-index: 1;
}
.saiyo_section_title_ja span{
	color: #6AC751;
}
.saiyo_section_title_en{
	position: absolute;
	display: block;
	color: #FFF;
	font-size: 128px;
	font-family: "Nata Sans", sans-serif;
	font-weight: 700;
	line-height: 80%;
	letter-spacing: .1em;
}
.saiyo_section_outline{
	position: relative;
	font-size: 18px;
	font-weight: 600;
	line-height: 145%;
	letter-spacing: .05em;
	text-align: center;
}

/* saiyo_mv
------------------------------ */
.saiyo_first_view{
	position: relative;
	display: block;
	width: 100%;
	background: #2B7FD3;
	background: linear-gradient(165deg, rgba(43, 127, 211, .2) 27%, rgba(106, 199, 81, .2) 100%);
	background-size: 150% 150%;/*サイズを大きくひきのばす*/
	animation: bggradient 20s ease infinite;
}
@keyframes bggradient{
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
.saiyo_mv{
	position: relative;
	display: block;
	height: 700px;
}
.saiyo_mv_wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.saiyo_mv_content{
	position: relative;
	max-width: 621px;
	width: 100%;
	top: 8vw;
	z-index: 1;
}
.saiyo_mv_title{
	position: relative;
	margin-left: -5.5vw;
}
.saiyo_mv_slick{
	position: absolute;
	width: 56vw;
	max-height: 700px;
	border-radius: 0 0 0 50px;
	overflow: hidden;
	margin-right: calc(50% - 50vw);
	top: 0;
	right: 0;
}
.saiyo_mv_btns{
	display: flex;
	justify-content: flex-end;
	gap: 20px;
	margin-top: 60px;
}
.saiyo_mv_links{
	position: absolute;
	display: block;
	top: 0;
	right: 0;
}
.saiyo_mv_link a{
	position: relative;
	display: flex;
	color: #FFF;
	font-size: 18px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: .05em;
	writing-mode: vertical-rl;
	text-orientation: upright;
	gap: 10px;
	align-items: center;
	border-radius: 20px 0 0 20px;
	right: 0;
}
.saiyo_mv_link a:hover{
	opacity: .85;
}
.saiyo_mv_link_contact a{
	padding: 25px 20px;
	background-color: #6AC751;
}
.saiyo_mv_link_contact a::before{
	content: "";
	position: relative;
	display: block;
	width: 40px;
	height: 29px;
	background: url(../images/saiyo/icon_mailWhite.svg) no-repeat center center / contain;
	margin: 0 auto;
}
.saiyo_mv_link_register a{
	padding: 21px 14px;
	background-color: #747474;
	margin-top: 20px;
}
.saiyo_mv_link_register a::before{
	content: "";
	position: relative;
	display: block;
	width: 51px;
	height: 55px;
	background: url(../images/saiyo/icon_teacherWhite.svg) no-repeat center center / contain;
	margin: 0 auto;
}

/* saiyo_recruit
------------------------------ */
.saiyo_recruit{
	position: relative;
	padding-top: 100px;
	padding-bottom: 120px;
}
.saiyo_recruit_title_ja{
	padding-left: 156px;
	padding-right: 156px;
}
.saiyo_recruit_title_en{
	top: -160px;
	right: 0;
}
.saiyo_recruit_outline{
	margin-top: 25px;
}
.saiyo_recruit_btns{
	display: flex;
	justify-content: center;
	gap: 50px;
	margin-top: 60px;
}

/* saiyo_benefits
------------------------------ */
.saiyo_benefits{
	position: relative;
	padding-top: 120px;
}
.saiyo_benefits_title_ja{
	padding-left: 109px;
	padding-right: 109px;
}
.saiyo_benefits_outline{
	position: relative;
	margin-top: 50px;
}
.saiyo_benefits_outline_text{
	position: relative;
	font-size: 18px;
	font-weight: 600;
	text-align: center;
	line-height: 220%;
	letter-spacing: .05em;
}
.saiyo_benefits_outline_text:first-child{
	display: flex;
	line-height: 250%;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 8px;
}
.saiyo_benefits_outline_text span{
	background-color: #E1F4DC;
}
.saiyo_benefits_outline_text:nth-child(2)::before{
	content: "";
	position: relative;
	display: block;
	width: 2px;
	height: 40px;
	background-color: #6AC751;
	margin: 17px auto 13px;
}
.saiyo_benefits_cards{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 105px 40px;
	margin-top: 97px;
}
.saiyo_benefits_card{
	position: relative;
	display: block;
	border-radius: 20px;
	background-color: #E6F0FA;
}
.saiyo_benefits_card_num{
	position: absolute;
	display: block;
	color: #2B7FD3;
	font-size: 96px;
	font-family:  "Arial", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: 0;
	top: -45px;
	left: 30px;
	z-index: 1;
}
.saiyo_benefits_card_pict{
	position: relative;
	max-height: 250px;
	border-radius: 20px 20px 0 0;
	overflow: hidden;
}
.saiyo_benefits_card_contents{
	position: relative;
	padding: 20px 30px 25px;
}
.saiyo_benefits_card_title{
	position: relative;
	color: #2B7FD3;
	font-size: 24px;
	font-weight: 600;
	line-height: 165%;
	letter-spacing: 0;
}
.saiyo_benefits_card_text{
	position: relative;
	font-weight: 500;
	line-height: 190%;
	letter-spacing: 0;
	margin-top: 16px;
}
.saiyo_benefits_card_btn{
	position: relative;
	margin-top: 35px;
}
.saiyo_benefits_card_btn .btn{
	height: 55px;
	padding: 19px 35px;
}

/* saiyo - cta
------------------------------ */
.saiyo_cta{
	position: relative;
	padding-top: 120px;
}
.saiyo_cta .wrapper{
	position: relative;
	border-radius: 20px;
	background: #2B7FD3;
	background: linear-gradient(115deg, rgba(43, 127, 211, 1) 50%, rgba(106, 199, 81, 1) 100%);
}
.saiyo_cta_title{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 40px 60px 0 90px;
}
.saiyo_cta_title_ja{
	position: relative;
	color: #FFF;
	font-size: 40px;
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	line-height: 100%;
	letter-spacing: .05em;
}
.saiyo_cta_title_ja::before{
	content: "";
	position: absolute;
	display: block;
	width: 70px;
	height: 20px;
	border-radius: 0 50px 50px 0;
	background-color: #FFF;
	top: 0;
	left: -90px;
	bottom: 0;
	margin: auto 0;
}
.saiyo_cta_title_en{
	position: relative;
	color: #FFF;
	font-size: 100px;
	font-weight: 700;
	font-family: "Nata Sans", sans-serif;
	line-height: 80%;
	letter-spacing: .1em;
	opacity: .15;
}
.saiyo_cta_wrapper{
	display: flex;
	margin-top: 44px;
	padding: 0 50px 60px;
}
.saiyo_cta_column{
	margin-right: 45px;
	padding-right: 43px;
	border-right: 1px solid #FFF;
}
.saiyo_cta_column:last-of-type{
	margin-right: 0;
	padding-right: 0;
	border-right: 0;
}
.saiyo_cta_text{
	position: relative;
	min-height: 80px;
	color: #FFF;
	font-size: 18px;
	line-height: 185%;
	letter-spacing: 0;
	text-align: center;
}
.saiyo_cta_text span{
	position: relative;
	display: inline-block;
	font-size: 13px;
	line-height: 180%;
}
.saiyo_cta_btn .btn{
	height: 90px;
	color: #2B7FD3;
	font-size: 20px;
	padding: 18px 24px;
	border-radius: 20px;
	background-color: #FFF;
	box-shadow: 5px 5px 0 #474747;
	gap: 12px;
	justify-content: flex-start;
	margin-top: 17px;
}
.saiyo_cta_btn .btn::before{
	content: "";
	position: relative;
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.saiyo_membership_btn .btn::before{
	width: 50px;
	height: 54px;
	background-image: url(../images/saiyo/icon_teacherBlack.svg);
}
.saiyo_guideline_btn .btn::before{
	width: 35px;
	height: 41px;
	background-image: url(../images/saiyo/icon_fileBlack.svg);
	margin-left: 12px;
}
.saiyo_contact_btn .btn::before{
	width: 40px;
	height: 29px;
	background-image: url(../images/saiyo/icon_mailBlack.svg);
	margin-left: 8px;
}
.saiyo_cta_btn .btn::after{
	position: absolute;
	width: 35px;
	height: 7px;
	background-image: url(../images/saiyo/btn_arrow_rightBlue.svg);
	top: 0;
	right: 35px;
	bottom: 0;
	margin: auto 0;
}
.saiyo_cta_btn .btn:hover{
	box-shadow: none;
}

/* saiyo_guide
------------------------------ */
.saiyo_guide{
	position: relative;
	margin-top: 120px;
	padding-top: 120px;
	background-color: #EFF9EC;
}
.saiyo_guide_title_ja{
	padding-left: 93px;
	padding-right: 93px;
}
.saiyo_guide_title_en{
	top: -54px;
	left: 0;
}
.saiyo_guide_outline{
	position: relative;
	font-weight: 600;
	line-height: 250%;
	letter-spacing: .05em;
	text-align: center;
	margin-top: 36px;
}
.saiyo_guide_group + .saiyo_guide_group{
	margin-top: 100px;
}
.saiyo_guide_subtitle{
	position: relative;
	display: flex;
	max-width: 1022px;
	align-items: center;
	border: 2px solid #000;
	background-color: #FFF;
	border-radius: 50px;
	margin: 50px auto 0;
	padding: 16px 0 19px;
	justify-content: center;
}
.saiyo_guide_subtitle_text{
	position: relative;
	font-size: 26px;
	font-weight: 600;
	line-height: 145%;
	letter-spacing: .05em;
}
.saiyo_guide_subtitle_text span{
	color: #2B7FD3;
	font-size: 30px;
}
.saiyo_guide_wrapper{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: row-reverse;
	gap: 20px;
	margin-top: 70px;
}
.saiyo_guide_pict{
	position: relative;
	max-width: 390px;
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}
.saiyo_guide_pict + .saiyo_guide_pict{
	margin-top: 40px;
}
.saiyo_guide_items{
	position: relative;
	max-width: 798px;
	width: 100%;
}
.saiyo_guide_item + .saiyo_guide_item{
	margin-top: 50px;
	padding-top: 50px;
	border-top: 1px solid #6AC751;
}
.saiyo_guide_item_wrapper{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 33px;
}
.saiyo_guide_item_num{
	position: relative;
	max-width: 115px;
	width: 100%;
}
.saiyo_guide_item_contents{
	position: relative;
	max-width: 650px;
	width: 100%;
}
.saiyo_guide_item_title{
	position: relative;
	color: #2B7FD3;
	font-size: 30px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: 0;
}
.saiyo_guide_item_text{
	position: relative;
	font-weight: 500;
	line-height: 250%;
	letter-spacing: .05em;
	margin-top: 10px;
}
.saiyo_guide_cards{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-template-rows: repeat(1, 1fr);
	gap: 90px 40px;
	margin-top: 100px;
}
.saiyo_guide_card{
	position: relative;
	padding: 50px 30px 30px;
	border-radius: 20px;
	background-color: #FFF;
}
.saiyo_guide_card:last-child{
	grid-column: span 3 / span 3;
	padding-bottom: 54px;
}
.saiyo_guide_card_case{
	position: absolute;
	display: block;
	max-width: 152px;
	width: 100%;
	color: #FFF;
	font-size: 20px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: .05em;
	text-align: center;
	border-radius: 50px;
	background-color: #6AC751;
	top: -30px;
	left: 0;
	right: 0;
	margin: 0 auto;
	padding: 18px 0 19px;
}
.saiyo_guide_card_title{
	position: relative;
	color: #2B7FD3;
	font-size: 20px;
	font-weight: 600;
	line-height: 165%;
	letter-spacing: 0;
	text-align: center;
	padding-bottom: 20px;
	border-bottom: 1px solid #6AC751;
}
.saiyo_guide_card_title span{
	position: relative;
	display: block;
	font-size: 16px;
}
.saiyo_guide_card:last-child .saiyo_guide_card_title::before,
.saiyo_guide_card:last-child .saiyo_guide_card_title::after{
	content: "";
	position: absolute;
	display: block;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}
.saiyo_guide_card:last-child .saiyo_guide_card_title::before{
	width: 193px;
	height: 193px;
	background-image: url(../images/saiyo/saiyo_guide_image01.png);
	top: -108px;
	left: 126px;
}
.saiyo_guide_card:last-child .saiyo_guide_card_title::after{
	width: 163px;
	height: 163px;
	background-image: url(../images/saiyo/saiyo_guide_image02.png);
	top: -78px;
	right: 145px;
}
.saiyo_guide_card:last-child .saiyo_guide_card_title span{
	display: inline-block;
}
.saiyo_guide_card_text{
	position: relative;
	font-weight: 500;
	line-height: 190%;
	letter-spacing: 0;
	margin-top: 26px;
}
.saiyo_guide_card_wrapper{
	display: flex;
	justify-content: space-around;
	margin-top: 50px;
	padding: 0 10px;
}
.saiyo_guide_card_item{
	position: relative;
	max-width: 330px;
	width: 100%;
	box-sizing: unset;
}
.saiyo_guide_card_item + .saiyo_guide_card_item{
	padding-left: 45px;
	border-left: 1px solid #6AC751;
}
.saiyo_guide_card_item_title{
	position: relative;
	max-width: 286px;
	width: 100%;
	margin-left: 22px;
}
.saiyo_guide_card_item_title_num{
	position: absolute;
	display: block;
	max-width: 49px;
	top: -25px;
	left: -22px;
	z-index: 1;
}
.saiyo_guide_card_item_title_ja{
	position: relative;
	font-size: 18px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: .05em;
	text-align: center;
	border: 2px solid #000;
	border-radius: 50px;
	padding: 10px 0 11px;
}
.saiyo_guide_card_item_text{
	position: relative;
	max-width: 330px;
	width: 100%;
	font-weight: 500;
	line-height: 190%;
	letter-spacing: 0;
	margin-top: 30px;
}
.saiyo_guide_card_summary{
	position: relative;
	font-size: 20px;
	font-weight: 600;
	line-height: 225%;
	letter-spacing: 0;
	text-align: center;
	margin-top: 50px;
}
.saiyo_guide_steps{
	display: flex;
	gap: 31px;
	margin-top: 110px;
}
.saiyo_guide_step{
	position: relative;
	max-width: 225px;
	width: 100%;
	padding: 42px 21px 50px;
	background-color: #FFF;
	border-radius: 20px;
}
.saiyo_guide_step:nth-child(2){
	max-width: 482px;
	width: 100%;
}
.saiyo_guide_step:not(:last-child)::after{
	content: "";
	position: absolute;
	display: block;
	width: 58px;
	height: 58px;
	background: url(../images/saiyo/circle_arrowRightGreen.svg) no-repeat center center / contain;
	top: 0;
	right: -47px;
	bottom: 0;
	margin: auto 0;
	z-index: 1;
}
.saiyo_guide_step_num{
	position: absolute;
	display: block;
	width: 82px;
	height: 76px;
	top: -65px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.saiyo_guide_step_title{
	position: relative;
	display: flex;
	min-height: 60px;
	color: #2B7FD3;
	font-size: 20px;
	font-weight: 600;
	line-height: 150%;
	letter-spacing: 0;
	text-align: center;
	align-items: center;
	justify-content: center;
}
.saiyo_guide_step_pict{
	position: relative;
	max-width: 116px;
	width: 100%;
	margin: 21px auto 0;
}
.saiyo_guide_step_text{
	position: relative;
	font-weight: 500;
	line-height: 190%;
	letter-spacing: 0;
	margin-top: 24px;
}
.saiyo_guide_step_wrapper{
	display: flex;
	align-items: flex-start;
	gap: 32px;
}
.saiyo_guide_step_group{
	position: relative;
	max-width: 200px;
	width: 100%;
}
.saiyo_cta_sec{
	position: relative;
	padding: 120px 0 130px;
	background: #FFFFFF;
	background: linear-gradient(0deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(239, 249, 236, 1) 50%, rgba(239, 249, 236, 1) 100%);
}
.saiyo_cta_sec .saiyo_cta{
	padding-top: 0;
}

/* saiyo_teachers
------------------------------ */
.saiyo_teachers{
	position: relative;
	padding-top: 120px;
}
.saiyo_teachers_title_ja{
	padding-left: 92px;
	padding-right: 92px;
}
.saiyo_teachers_title_en{
	color: #EFF9EC;
	top: -30px;
	right: 0;
}
.saiyo_teachers_cards{
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 40px;
	margin-top: 70px;
}
.saiyo_teachers_card{
	position: relative;
	display: block;
	padding-bottom: 44px;
	background-color: #E6F0FA;
	border-radius: 20px;
	overflow: hidden;
}
.saiyo_teachers_card_title{
	position: relative;
	color: #2B7FD3;
	font-size: 22px;
	font-weight: 600;
	line-height: 155%;
	letter-spacing: 0;
	text-align: center;
	padding-top: 27px;
}
.saiyo_teachers_card_outline{
	position: relative;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: 0;
	text-align: center;
	margin-top: 16px;
}
.saiyo_teachers_card_btn{
	display: flex;
	justify-content: center;
	margin-top: 25px;
}
.saiyo_teachers_card_btn .btn{
	width: 230px;
	height: 55px;
	padding: 19px 24px;
}
.saiyo_teachers_title_en_sec{
	position: relative;
	color: #EFF9EC;
	margin-top: 30px;
	padding-left: 50px;
}
.saiyo_teachers_message{
	position: relative;
	display: block;
	padding-top: 150px;
	margin-top: -120px;
}
.saiyo_teachers_message + .saiyo_teachers_message{
	padding-top: 150px;
	margin-top: -55px;
}
.saiyo_teachers_message_inner{
	position: relative;
	padding: 70px 50px 40px;
	border-radius: 20px;
	background-color: #E6F0FA;
}
.saiyo_teachers_message_title{
	position: absolute;
	display: block;
	max-width: 550px;
	width: 100%;
	color: #2B7FD3;
	font-size: 22px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: .05em;
	text-align: center;
	padding: 19px 0;
	margin: 0 auto;
	border-radius: 50px;
	border: 2px solid #000;
	background-color: #FFF;
	top: -34px;
	left: 0;
	right: 0;
	margin: 0 auto;
}
.saiyo_teachers_message_subtitle{
	position: relative;
	font-size: 30px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: 0;
	text-align: center;
}
.saiyo_teachers_message_text{
	position: relative;
	font-weight: 500;
	line-height: 220%;
	letter-spacing: .05em;
	margin-top: 22px;
}
.saiyo_teachers_lists_none{
	position: relative;
	font-size: 20px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: .05em;
	text-align: center;
	margin-top: 50px;
}

/* saiyo_about
------------------------------ */
.saiyo_about{
	position: relative;
	margin-top: 120px;
	padding: 145px 0 120px;
	background-color: #EFF9EC;
}
.saiyo_about_wrapper{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
	margin-top: 70px;
}
.saiyo_about_pict{
	position: relative;
	max-width: 390px;
	width: 100%;
	border-radius: 20px;
	overflow: hidden;
}
.saiyo_about_contents{
	position: relative;
	max-width: 800px;
	width: 100%;
}
.saiyo_about_contents::after{
	content: "";
	position: absolute;
	display: block;
	width: 221px;
	height: 97px;
	background: url(../images/saiyo/saiyo_about_illustColor.png) no-repeat center center / contain;
	right: 100px;
	bottom: -13px;
}
.saiyo_about_text{
	position: relative;
	font-weight: 600;
	line-height: 250%;
	letter-spacing: .05em;
}
.saiyo_about_text + .saiyo_about_text{
	margin-top: 0.7em;
}
.saiyo_about_btn{
	position: relative;
	margin-top: 57px;
	z-index: 1;
}
.saiyo_about_en{
	right: 0;
	bottom: 57px;
}
.saiyo_about_subtitle{
	display: flex;
	justify-content: center;
	padding-top: 100px;
}
.saiyo_about_subtitle_ja{
	position: relative;
	max-width: 400px;
	width: 100%;
	color: #2B7FD3;
	font-size: 30px;
	line-height: 100%;
	letter-spacing: .05em;
	text-align: center;
	padding: 16px 0 19px;
	border: 2px solid #000;
	background-color: #FFF;
	border-radius: 50px;
}
.saiyo_about_group{
	position: relative;
	margin-top: 70px;
	padding: 45px 50px 60px;
	border-radius: 20px;
	background-color: #FFF;
}
.saiyo_about_group_title{
	position: relative;
	color: #2B7FD3;
	font-size: 30px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: 0;
	padding-bottom: 20px;
	border-bottom: 2px solid #6AC751;
}
.saiyo_about_group_title::before{
	content: "";
	position: absolute;
	display: block;
	width: 30px;
	height: 16px;
	border-radius: 0 50px 50px 0;
	background-color: #2B7FD3;
	top: 8px;
	left: -50px;
}
.saiyo_about_group_wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-direction: row-reverse;
	gap: 13px;
	margin-top: 50px;
}
.saiyo_about_group_pict{
	position: relative;
	max-width: 406px;
	width: 100%;
}
.saiyo_about_group_figure dl{
	display: grid;
	grid-template-columns: 300px 1fr;
	align-items: center;
	gap: 27px 40px;
}
.saiyo_about_group_btn .btn{
	height: 65px;
	color: #2B7FD3;
	font-size: 24px;
	justify-content: center;
	text-align: center;
	padding: 10px 0;
	box-shadow: none;
	background-color: #E6F0FA;
}
.saiyo_about_group_btn .btn::after{
	display: none;
}
.saiyo_about_group_btn .btn:hover{
	color: #FFF;
	background-color: #2B7FD3;
	top: 0;
}
.saiyo_about_group_figure dl dd{
	font-weight: 600;
	line-height: 220%;
	letter-spacing: .05em;
}
.saiyo_about_group_btns{
	display: grid;
	grid-template-columns: repeat(5,1fr);
	gap: 20px 14px;
	margin-top: 50px;
}
.saiyo_about_group:nth-of-type(5) .saiyo_about_group_btn .btn{
	width: 218px;
	height: 65px;
}
.saiyo_about_group:last-of-type .saiyo_about_group_btns{
	grid-template-columns: repeat(7,1fr);
}
.saiyo_about_group:last-of-type .saiyo_about_group_btn .btn{
	width: 147px;
}

/* saiyo_news
------------------------------ */
.saiyo_news{
	position: relative;
	padding: 157px 0 320px;
	background: url(../images/saiyo/saiyo_news_bgPC.jpg) no-repeat top center / cover;
}
.saiyo_news_wrapper{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}
.saiyo_news_head{
	position: relative;
	max-width: 343px;
	width: 100%;
}
.saiyo_news_title{
	text-align: left;
}
.saiyo_news_title_ja{
	display: block;
	text-align: left;
}
.saiyo_news_title_en{
	top: 24px;
	left: -53px;
}
.saiyo_news_btn{
	position: relative;
	margin-top: 154px;
}
.saiyo_news_content{
	position: relative;
	max-width: 840px;
	width: 100%;
}
.saiyo_news_item_link{
	position: relative;
	display: flex;
	color: #000;
	align-items: center;
	padding: 21px 53px 22px;
	border-radius: 50px;
	gap: 27px;
	box-shadow: 4px 4px 0 #6AC751;
	background-color: #FFF;
	top: 0;
}
.saiyo_news_item_unit{
	display: flex;
	align-items: center;
	gap: 27px;
}
.saiyo_news_item_time{
	position: relative;
	color: #2B7FD3;
	font-size: 14px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: .05em;
	transition: .35s;
}
.saiyo_news_item_cat{
	position: relative;
	color: #FFF;
	font-size: 14px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: .05em;
	text-align: center;
	padding: 11px 19px 12px;
	border-radius: 50px;
	background-color: #2B7FD3;
	transition: .35s;
}
.saiyo_news_item_title{
	position: relative;
	font-size: 14px;
	font-weight: 500;
	line-height: 100%;
	letter-spacing: .05em;
}
.saiyo_news_item_link:hover{
	color: #FFF;
	background-color: #2B7FD3;
	box-shadow: none;
	top: 4px;
}
.saiyo_news_item_link:hover .saiyo_news_item_time{
	color: #FFF;
}
.saiyo_news_item_link:hover .saiyo_news_item_cat{
	color: #2B7FD3;
	background-color: #FFF;
}
.saiyo_last_cta{
	position: relative;
	margin-top: -200px;
}
.saiyo_last_cta .saiyo_cta{
	padding-top: 0;
}

/* sub - main_title
------------------------------ */
.saiyo_sub_title{
	position: relative;
	padding-bottom: 60px;
	background: linear-gradient(165deg, rgba(43, 127, 211, .2) 27%, rgba(106, 199, 81, .2) 100%);
	background-size: 150% 150%;/*サイズを大きくひきのばす*/
	animation: bggradient 20s ease infinite;
}
.saiyo_sub_title_wrapper{
	display: flex;
	align-items: center;
}
.saiyo_sub_title_contents{
	position: absolute;
	display: flex;
	width: 100%;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	z-index: 1;
}
.saiyo_sub_title_contents::after{
	content: "";
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	top: 0;
	left: -50%;
	bottom: 0;
	margin: auto 0;
	background-color: rgba(255,255,255,.9);
	border-radius: 0 50px 50px 0;
}
.saiyo_sub_title_ja{
	position: relative;
	color: #2B7FD3;
	font-size: 46px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: .05em;
	padding: 26px 0 27px;
	z-index: 1;
}
.saiyo_sub_title_en{
	position: absolute;
	color: #FFF;
	font-size: 128px;
	font-family: "Nata Sans", sans-serif;
	font-weight: 700;
	line-height: 100%;
	letter-spacing: .1em;
	/* right: 26vw; */
	/* right: 7vw; */
	left: 15vw;
	bottom: -140px;
	z-index: 1;
	white-space: nowrap;
}
.saiyo_sub_title_img{
	position: relative;
	width: 100vw;
	max-height: 400px;
	margin-right: calc(50% - 50vw);
	margin-left: 30%;
	overflow: hidden;
	border-radius: 0 0 0 50px;
}

/* Breadcrumb
------------------------------ */
.bread_crumb{
	position: relative;
	padding-top: 40px;
}
.bread_crumb .wrapper{
	padding-bottom: 35px;
	border-bottom: 1px solid #7A7B80;
}
.bread_crumb span,.bread_crumb a{
	display: inline-block;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: .05em;
}
.bread_crumb span br,.bread_crumb a br{
	display: none;
}
.bread_crumb span.aioseo-breadcrumb-separator{
	margin: 0 1em;
}
.bread_crumb a{
	color: #000;
}
.bread_crumb a:hover{
	color: #4376F8;
}

/* job_search
------------------------------ */
.job_search_archive{
	position: relative;
	padding-top: 120px;
}
.job_search_school_lists{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 50px;
}
.job_search_school_list{
	position: relative;
	padding: 32px 40px 50px;
	border-radius: 20px;
	background-color: #E6F0FA;
}
.job_search_school_list_title{
	position: relative;
	color: #2B7FD3;
	font-size: 24px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: 0;
	padding-bottom: 15px;
	border-bottom: 2px solid #2B7FD3;
}
.job_search_school_list_wrapper{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-direction: row-reverse;
	gap: 20px;
	margin-top: 30px;
}
.job_search_school_list_badge{
	position: relative;
	max-width: 150px;
	width: 100%;
	max-height: 150px;
	border-radius: 20px;
	padding: 6px;
	overflow: hidden;
	background-color: #FFF;
}
.job_search_school_list_contents{
	position: relative;
	max-width: 320px;
	width: 100%;
}
.job_search_school_list_area{
	position: relative;
	font-size: 18px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: .05em;
}
.job_search_school_list_type_lists{
	display: grid;
	grid-template-columns: repeat(2,1fr);
	gap: 10px;
	margin-top: 20px;
}
.job_search_school_list_type_list a{
	position: relative;
	display: block;
	max-width: 154px;
	width: 100%;
	color: #FFF;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: .05em;
	text-align: center;
	border-radius: 50px;
	padding: 9px 0;
	background-color: #6AC751;
}
.job_search_school_list_btns{
	display: flex;
	gap: 20px;
	margin-top: 40px;
}
.job_search_school_list_btn .btn{
	width: 250px;
	height: 55px;
	padding: 19px 35px;
}

/* news - archive
------------------------------ */
.saiyo_news_archive_list{
	position: relative;
	border-radius: 20px;
	background-color: #E6F0FA;
}
.saiyo_news_archive_item_wrapper{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 40px;
	padding: 40px;
}
.saiyo_news_archive_item_pict{
	position: relative;
	max-width: 250px;
	width: 100%;
	max-height: 170px;
	border-radius: 20px;
	overflow: hidden;
}
.saiyo_news_archive_item_pict img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.saiyo_news_archive_date{
	position: relative;
	color: #2B7FD3;
	font-size: 14px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: .05em;
}
.saiyo_news_archive_list_title{
	position: relative;
	color: #2B7FD3;
	font-size: 24px;
	font-weight: 600;
	line-height: 145%;
	letter-spacing: 0;
	margin-top: 18px;
}
.saiyo_news_archive_list_text{
	position: relative;
	font-size: 14px;
	font-weight: 500;
	line-height: 220%;
	letter-spacing: .05em;
	margin-top: 10px;
}
.saiyo_news_archive_list_btn{
	display: flex;
	justify-content: flex-end;
	margin-top: 30px;
}
.saiyo_news_archive_list_btn .btn{
	width: 230px;
	height: 55px;
}

/* news - single
------------------------------ */
.saiyo_single_wrapper{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 30px;
	margin-top: 120px;
}
.saiyo_single_wrapper article{
	position: relative;
	max-width: 890px;
	width: 100%;
}
.date_box{
	display: flex;
	align-items: center;
	gap: 27px;
}
.date_box .date{
	color: #2B7FD3;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: .05em;
}
.saiyo_news_tag{
	position: relative;
	color: #FFF;
	font-size: 14px;
	line-height: 100%;
	letter-spacing: .05em;
	padding: 11px 34px;
	background-color: #6AC751;
	border-radius: 50px;
}
.saiyo_news_single_title{
	position: relative;
	color: #2B7FD3;
	font-size: 24px;
	line-height: 145%;
	letter-spacing: 0;
	margin-top: 28px;
}
.saiyo_news_single .content{
	position: relative;
	margin-top: 22px;
}
.saiyo_news_single .content h2{
	position: relative;
	color: #009E51;
	font-size: 24px;
	font-weight: 600;
	line-height: 145%;
	letter-spacing: .05em;
	padding-bottom: 10px;
	margin-bottom: 20px;
	border-bottom: 1px solid #009E51;
}
.saiyo_news_single .content h3{
	position: relative;
	color: #2B7FD3;
	font-size: 20px;
	font-weight: 600;
	font-family: "Shippori Mincho", serif;
	line-height: 145%;
	letter-spacing: .1em;
	padding-bottom: 10px;
}
.saiyo_news_single .content img{
	display: inline-block;
	max-width: 49%;
	width: auto;
	border-radius: 20px;
	margin: 20px auto;
}
.saiyo_news_single .content img.news_single_figure{
	max-width: 100%;
	border-radius: 0;
}
.saiyo_news_single .content p{
	font-size: 14px;
	font-weight: 500;
	line-height: 215%;
	letter-spacing: .05em;
}

.adjacent_post_links{
	margin-top: 60px;
	padding-top: 60px;
	border-top: 2px solid #3A82F7;
}
.adjacent_post_links ul{
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}
.adjacent_post_links li{
	max-width: 45%;
}
.adjacent_post_links li a{
	position: relative;
	display: flex;
	color: #FFF;
	font-size: 14px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: .05em;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
}
.adjacent_post_links li.prev{
	flex-direction: row-reverse;
}
.adjacent_post_links li.center a{
	justify-content: center;
}
.adjacent_post_links li.center a::after{
	display: none;
}

/* aside
------------------------------ */
aside{
	max-width: 300px;
	width: 100%;
}
.saiyo_sidebar_title{
	position: relative;
	color: #2B7FD3;
	font-size: 20px;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: .05em;
	padding: 25px 30px;
	border-radius: 20px;
	background-color: #E6F0FA;
}
.saiyo_sidebar_list_link{
	position: relative;
	display: block;
	width: 100%;
	color: #2B7FD3;
	font-weight: 600;
	line-height: 100%;
	letter-spacing: 0;
	padding: 32px 20px;
	border-bottom: 2px solid #3A82F7;
}
.saiyo_sidebar_list_link::after{
	content: "";
	position: absolute;
	display: block;
	width: 26px;
	height: 5px;
	background: url(../images/saiyo/btn_arrow_rightBlue.svg) no-repeat center center / contain;
	top: 0;
	right: 20px;
	bottom: 0;
	margin: auto 0;
	transition: .35s;
}
.saiyo_sidebar_list_link:hover{
	background-color: #E6F0FA;
}
.saiyo_sidebar_list_link:hover::after{
	right: 15px;
}

/* wp-pagenavi
------------------------------ */
.pagenavi,.wp-pagenavi{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 0 20px;
}
.wp-pagenavi span.pages{
	display: none;
}
.wp-pagenavi a,.wp-pagenavi span{
	margin: 0;
}
.wp-pagenavi span.current,.wp-pagenavi a,
.pagenavi span.current,.pagenavi a{
	position: relative;
	display: block;
    width: 41px;
    height: 41px;
	color: #4276FA;
	font-weight: 300;
	text-align: center;
	line-height: 40px;
	border-radius: 50%;
	margin: 0;
	padding: 0;
	border: 0;
	background: #DCEAFF;
}
.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink,
.pagenavi a.prev,.pagenavi a.next{
	position: relative;
	width: 40px;
	height: 40px;
	font-size: 0;
}
.wp-pagenavi a.previouspostslink::after,
.wp-pagenavi a.nextpostslink::after,
.pagenavi a.prev::after,.pagenavi a.next::after{
	content: "";
	position: absolute;
	display: block;
    width: 20px;
    height: 20px;
	background: url(../images/common/arrow_rightB.svg) no-repeat center center / contain;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	margin: auto 0;
	transition: .1s;
}
.wp-pagenavi a.previouspostslink::after,
.pagenavi a.prev::after{
	transform: translate(-50%,-50%) scale(-1,1);
}
.wp-pagenavi span.current,.pagenavi span.current{
	color: #FFF;
	background: #4276FA;
}
.single_pagenavi {
	display: flex;
	gap: 0 35px;
	justify-content: center;
}
.single_pagenavi li a{
	position: relative;
	display: block;
	color: #313131;
	font-family: 'Noto Sans JP', sans-serif;
	letter-spacing: .05em;
	background: #ECECEC;
}
.single_pagenavi li a::before{
	content: "";
	position: absolute;
	display: block;
	width: 28px;
	height: 28px;
	background: url(../images/common/arrow_right_hover.svg) no-repeat center center;
	background-size: contain;
	top: 0;
	bottom: 0;
	margin: auto 0;
	transition: .25s;
}
.single_pagenavi li.list a{
	text-align: center;
}
.single_pagenavi li.list a::before{
	display: none;
}
@media screen and (min-width: 769px) {
	.pagenavi,.wp-pagenavi{
		border-radius: 50px;
		margin-top: 55px;
	}
	.wp-pagenavi{
		margin-top: 100px;
	}
	.wp-pagenavi a:hover,
	.pagenavi a:hover{
		color: #FFF;
		background: #4276FA;
	}
	.wp-pagenavi a.previouspostslink:hover, 
	.wp-pagenavi a.nextpostslink:hover, 
	.pagenavi a.prev:hover, 
	.pagenavi a.next:hover {
		color: #FFF;
		background: #4276FA;
	}
	.wp-pagenavi a.previouspostslink:hover::after, 
	.wp-pagenavi a.nextpostslink:hover::after, 
	.pagenavi a.prev:hover::after, 
	.pagenavi a.next:hover::after {
		background-image: url(../images/common/arrow_rightW.svg);
	}
	.single_pagenavi {
		margin: 80px auto 0;
	}
	.single_pagenavi li a{
		position: relative;
		display: block;
		width: 175px;
		line-height: 62px;
	}
	.single_pagenavi li.prev a{
		padding-left: 67px;
		border-radius: 50px 0 0 50px;
	}
	.single_pagenavi li.next a{
		padding-left: 23px;
		border-radius: 0 50px 50px 0;
	}
	.single_pagenavi li.next a::before{
		right: 23px;
	}
	.single_pagenavi li a:hover::before{
		background-image: url(../images/common/arrow_rightB.svg);
	}
}

@media screen and (min-width: 769px) {
	.pagenavi,.wp-pagenavi{
		height: 62px;
		border-radius: 50px;
	}
	.wp-pagenavi{
		margin-top: 100px;
	}
	.wp-pagenavi a:hover{
		color: #FFF;
		background: #009E51;
	}
	.pagenavi a.previouspostslink:hover::after,
	.pagenavi a.nextpostslink:hover::after{
		opacity: .7;
	}
	.single_pagenavi {
		margin: 80px auto 0;
	}
	.single_pagenavi li a{
		position: relative;
		display: block;
		width: 175px;
		line-height: 62px;
	}
	.single_pagenavi li.prev a{
		padding-left: 67px;
		border-radius: 50px 0 0 50px;
	}
	.single_pagenavi li.next a{
		padding-left: 23px;
		border-radius: 0 50px 50px 0;
	}
	.single_pagenavi li.prev a::before{
		left: 23px;
		transform: rotate(-180deg);
	}
	.single_pagenavi li.next a::before{
		right: 23px;
	}
	.single_pagenavi li a:hover{
		color: #FFF;
		background: #313131;
	}
	.single_pagenavi li a:hover::before{
		background-image: url(../images/common/arrow_rightB.svg);
	}
	.single_pagenavi li.prev a:hover::before{
		left: 18px;
	}
	.single_pagenavi li.next a:hover::before{
		right: 18px;
	}
}

/* footer
------------------------------ */
footer{
	position: relative;
	display: block;
	padding-top: 120px;
}
.saiyo_footer_wrapper{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}
.footer_logo a{
	position: relative;
	display: block;
	max-width: 429px;
	width: 100%;
}
.footer_logo a:hover{
	opacity: .7;
}
.footer_unit{
	position: relative;
	max-width: 574px;
	width: 100%;
}
.footer_unit_wrapper{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 20px;
}
.footer_menu li{
	position: relative;
	line-height: 250%;
}
.footer_menu li a{
	color: #000;
	font-weight: 600;
	letter-spacing: .05em;
}
.footer_menu li a:hover{
	color: #2B7FD3;
}
.footer_corporate_btn .btn{
	width: 361px;
	height: 100px;
	font-weight: 600;
	line-height: 160%;
	letter-spacing: .05em;
	border-radius: 20px;
}
footer small{
	position: relative;
	display: block;
	color: #FFF;
	font-size: 12px;
	line-height: 100%;
	letter-spacing: .05em;
	text-align: center;
	margin-top: 120px;
	padding: 25px 0 35px;
	background-color: #2B7FD3;
}
footer small a{
	position: relative;
	color: #FFF;
}

/* Page Top
------------------------------ */
.show.pagetop {
	opacity: 1;
}
.pagetop {
	position: fixed;
	bottom: 14px;
	right: 20px;
	transition: 0.3s;
	font-size: 0;
	z-index: 10;
	opacity: 0;
}
.pagetop a {
	display: inline-block;
	width: 50px;
	height: 50px;
	border: 1px solid #fff;
	background: #1F1F1F;
}
.pagetop a::before {
	content: "";
	display: block;
	position: absolute;
	top: 41%;
	left: 0;
	right: 0;
	margin: auto;
	width: 14px;
	height: 14px;
	border-top: solid 2px #fff;
	border-left: solid 2px #fff;
	transform: rotate(45deg);
}
.pagetop a:hover {
	border-color: #1F1F1F;
	background: #fff;
	border-radius: 50%;
}
.pagetop a:hover:before {
	border-color: #1F1F1F;
}

/*--------------------------------------------------------
★レスポンシブ■ヘッダ部分
--------------------------------------------------------*/
@media screen and (min-width: 1251px) {
	.pc_none{
		display: none!important;
	}
}
@media screen and (max-width: 1250px) {
	.sp_none{
		display: none!important;
	}

	/* スマホ用メニュー */
	.index #wrapper{
		min-width: 20pc;
		height: auto;
		height: auto;
		padding: 0;
		overflow: hidden;
	}
	.drawer .contents{
		transition: transform 0.6s;
	}
	.drawer #navTgl:checked ~ .contents{
		transform: translateX(-250px);
	}
	.index #navTgl{
		display: none;
		overflow: hidden;
	}
	.drawer label.pc_none{
		position: fixed;
		top: 0;
		right: 0;
		transition: 0.6s;
		cursor: pointer;
	}
	.drawer .open{
		width: 50px;
		height: 50px;
		color: #2B7FD3;
		font-size: 2.2em;
		line-height: 35px;
		text-align: center;
		background-color: #FFF;
		z-index: 20;
	}
	.drawer .open span{
		position: absolute;
		display: block;
		font-size: 10px;
		font-weight: 600;
		line-height: 100%;
		letter-spacing: 0;
		left: 0;
		right: 0;
		bottom: 5px;
		margin: auto;
	}
	.drawer .close{
		width: 100%;
		height: 100%;
		z-index: 1;
		pointer-events: none;
		transition: background-color 0.6s;
	}
	.index #navTgl:checked + .open{
		transform: translateX(-250px);
	}
	.drawer #navTgl:checked ~ .close{
		pointer-events: auto;
		background-color: rgba(248,248,248,.6);
		z-index: 10;
	}
	.menu{
		position: fixed;
		top: 0;
		right: 0;
		width: 250px;
		height: 100%;
		padding: 10px 30px;
		background-color: #DCEAFF;
		transform: translateX(100%);
		transition: transform 0.6s;
		box-sizing: border-box;
		overflow: auto;
		z-index: 20;
	}
	.index #navTgl:checked ~ .menu{
		transform: translateX(0);
	}
	.menu ul{
		padding: 0;
	}
	.menu ul.sub{
		background: #4276FA;
	}
	.menu .dropdown > li{
		position: relative;
		font-size: .8em;
		line-height: 1.8;
		letter-spacing: .05em;
		border-bottom: 1px solid #5A83EC;
	}
	.menu a{
		position: relative;
		display: block;
		color: #2B2B2B;
		padding: 1em 1em 0.9em;
	}
	.menu ul.sub li{
		border-bottom: 1px solid #FFF;
	}
	.menu ul.sub li a{
		color: #FFF;
	}
	.sp_tel,.sp_mail{
		position: absolute;
		width: 50px;
		height: 50px;
		text-align: center;
		background-repeat: no-repeat;
		top: 0;
		z-index: 10;
	}
	.sp_tel {
		color: #FFF;
		background-color: #003552;
		background-image: url(../images/common/icon_telW.svg);
		background-position: top 10px center;
		background-size: 14px auto;
		right: 100px;
	}
	.sp_mail {
		color: #D70051;
		background-color: #F5F5F5;
		background-image: url(../images/common/icon_mailP.svg);
		background-position: top 13px center;
		background-size: 20px auto;
		top: 0;
		right: 50px;
	}
	.sp_logo{
		position: fixed;
		display: block;
		width: 100%;
		height: 50px;
		font-size: 0;
		background-image: url(../images/saiyo/saiyo_logo.png);
		background-repeat: no-repeat;
		background-position: center left 10px;
		background-size: contain;
		background-size: auto 40px;
		background-color: #FFF;
		top: 0;
		left: 0;
		box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
		z-index: 11;
	}
	header,#gnav{
		display: none;
	}
	header,header.fixed {
		position: fixed;
		/*box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;*/
		height: 50px;
		top: 0!important;
		z-index: 0;
	}
	header #logo {
		display: none;
	}
	header .wrapper {
		background: none;
	}
	#wpadminbar {
		position: fixed;
	}
	.customize-support header,
	.customize-support label.pc_none,
	.customize-support .sp_logo,
	.customize-support .menu {
		top: 46px !important;
	}

	.wrapper{
		width: 100%;
		padding: 0 5%;
	}

	.btn{
		width: 250px;
		height: 60px;
		font-size: 14px;
		padding: 15px 21px;
	}

	.saiyo_section_title_ja{
		display: block;
		font-size: 23px;
		padding-bottom: 15px;
	}
	.saiyo_section_title_en{
		font-size: 50px;
	}
	.saiyo_section_outline{
		font-size: 14px;
	}

	/* saiyo_mv
	------------------------------ */
	.saiyo_mv{
		margin-top: 50px;
		min-height: 420px;
		height: auto;
	}
	.saiyo_mv_title{
		width: 60vw;
	}
	.saiyo_mv_links{
		z-index: 10;
	}

	/* saiyo_benefits
	------------------------------ */
	.saiyo_benefits{
		padding-top: 0;
	}
	.saiyo_benefits_cards{
		grid-template-columns: repeat(2,1fr);
	}

	/* saiyo_cta
	------------------------------ */
	.saiyo_cta{
		padding-top: 60px;
	}
	.saiyo_cta .wrapper{
		width: 90%;
	}
	.saiyo_cta_title{
		flex-direction: column;
		align-items: flex-start;
		padding: 50px 0 0;
	}
	.saiyo_cta_title_ja::before{
		width: 50px;
		left: -24%;
	}
	.saiyo_cta_title_en{
		position: absolute;
		font-size: 50px;
		right: 0;
	}
	.saiyo_cta_wrapper{
		flex-wrap: wrap;
		padding: 0 0 30px;
		gap: 30px 0;
		justify-content: center;
	}
	.saiyo_cta_column{
		margin-right: 24px;
		padding-right: 22px;
	}
	.saiyo_cta_column:nth-of-type(2){
		margin-right: 0;
		padding-right: 0;
		border-right: 0;
	}
	.saiyo_cta_btn .btn{
		width: 280px;
		padding: 18px 10px;
	}
	.saiyo_cta_btn .btn::after{
		right: 20px;
	}

	/* saiyo_guide
	------------------------------ */
	.saiyo_guide{
		padding-top: 60px;
	}
	.saiyo_guide_title_en{
		top: -20px;
	}
	.saiyo_guide_subtitle_text span{
		display: block;
	}
	.saiyo_guide_item_num{
		max-width: 90px;
	}
	.saiyo_guide_item_title{
		line-height: 145%;
	}
	.saiyo_guide_cards{
		gap: 90px 20px;
	}
	.saiyo_guide_card:last-child .saiyo_guide_card_title::before{
		width: 120px;
		height: 120px;
		left: 0;
	}
	.saiyo_guide_card:last-child .saiyo_guide_card_title::after{
		width: 100px;
		height: 100px;
		right: 0;
	}
	.saiyo_guide_card_wrapper{
		flex-direction: column;
		padding: 0;
		gap: 30px 0;
	}
	.saiyo_guide_card_item + .saiyo_guide_card_item{
		padding-left: 0;
		padding-top: 30px;
		border-left: 0;
		border-top: 1px solid #6AC751;
	}
	.saiyo_guide_card_item_title{
		margin: 0 auto;
	}
	.saiyo_guide_card_item{
		max-width: unset;
	}
	.saiyo_guide_card_item_text{
		max-width: unset;
		margin-top: 15px;
	}
	.saiyo_guide_steps{
		flex-direction: column;
		align-items: center;
		gap: 120px;
	}
	.saiyo_guide_step:not(:last-child)::after{
		top: auto;
		left: 0;
		right: 0;
		bottom: -50px;
		margin: 0 auto;
		transform: rotate(90deg);
	}

	/* saiyo_teachers
	------------------------------ */
	.saiyo_teachers{
		padding-top: 0;
	}
	.saiyo_teachers_cards{
		gap: 20px;
	}
	.saiyo_teachers_card_title{
		font-size: 18px;
		padding: 20px 5% 0;
	}
	.saiyo_teachers_card_outline{
		line-height: 145%;
		padding: 0 5%;
	}
	.saiyo_teachers_card_btn{
		padding: 0 5%;
	}

	/* saiyo_about
	------------------------------ */
	.saiyo_about{
		margin-top: 60px;
		padding: 60px 0;
	}
	.saiyo_about_contents::after{
		display: none;
	}
	.saiyo_about_group{
		margin-top: 50px;
	}
	.saiyo_about_group_wrapper{
		flex-direction: column;
		gap: 50px;
	}
	.saiyo_about_group_figure dl{
		grid-template-columns: 220px 1fr;
	}
	.saiyo_about_group_btn .btn{
		font-size: 18px;
	}
	.saiyo_about_group_btns{
		grid-template-columns: repeat(3,1fr);
	}
	.saiyo_about_group_btn .btn{
		width: 180px;
	}
	.saiyo_about_group:last-of-type .saiyo_about_group_btns{
		grid-template-columns: repeat(4,1fr);
	}
	.saiyo_about_group:last-of-type .saiyo_about_group_btn .btn{
		width: 136px;
	}

	/* sub - main_title
	------------------------------ */
	.saiyo_sub_title{
		margin-top: 50px;
	}
	.saiyo_sub_title_en{
		font-size: 100px;
		right: 0;
		bottom: -11vw;
	}
	.saiyo_sub_title_img{
		width: 100vw;
		max-height: 400px;
		margin: 0;
		border-radius: 0;
	}

	/* job_search
	------------------------------ */
	.job_search_school_list{
		padding: 8% 5%;
	}
	.job_search_school_list_title{
		font-size: 18px;
		line-height: 145%;
		letter-spacing: .05em;
	}
	.job_search_school_list_wrapper{
		flex-direction: column;
		gap: 20px;
		margin-top: 30px;
	}
	.job_search_school_list_badge{
		margin: 0 auto;
	}
	.job_search_school_list_contents{
		max-width: unset;
	}
	.job_search_school_list_area{
		font-size: 14px;
	}
	.job_search_school_list_type_lists{
		display: grid;
		gap: 10px;
		margin-top: 20px;
	}
	.job_search_school_list_type_list a{
		font-size: 14px;
	}
	.job_search_school_list_btns{
		flex-direction: column;
	}
	.job_search_school_list_btn .btn{
		margin: 0 auto;
	}

	/* saiyo_news
	------------------------------ */
	.saiyo_news{
		padding: 60px 0;
	}
	.saiyo_news_wrapper{
		flex-direction: column;
	}
	.saiyo_news_head{
		display: contents;
		max-width: unset;
	}
	.saiyo_news_title{
		width: 100%;
	}
	.saiyo_news_title_en{
		left: auto;
		right: 0;
	}
	.saiyo_news_btn{
		order: 3;
		margin: 30px auto 0;
	}
	.saiyo_news_item_link{
		padding: 21px 20px 22px;
	}

	/* aside
	------------------------------ */
	aside{
		max-width: 220px;
	}
	.saiyo_sidebar_list_link{
		font-size: 14px;
	}

	/* footer
	------------------------------ */
	.saiyo_footer_wrapper{
		align-items: center;
		flex-direction: column;
		gap: 50px;
	}
	.footer_fixed_menu{
		position: fixed;
		display: flex;
		width: 100%;
		left: 0;
		bottom: 0;
		z-index: 10;
		box-shadow: -5px 0 10px rgba(0,0,0,.5);
	}
	.footer_fixed_menu_btn{
		flex: 1;
	}
	.footer_fixed_menu_btn a{
		position: relative;
		display: flex;
		width: 100%;
		color: #FFF;
		font-size: 12px;
		line-height: 100%;
		letter-spacing: .05em;
		align-items: center;
		justify-content: center;
		padding: 10px 5px;
		gap: 10px;
	}
	.footer_fixed_menu_btn a::before{
		content: "";
		position: relative;
		display: block;
		width: 30px;
		height: 35px;
		background-repeat: no-repeat;
		background-position: center center;
		background-size: contain;
	}
	.footer_fixed_menu_membership{
		background-color: #2B7FD3;
	}
	.footer_fixed_menu_membership::before{
		background-image: url(../images/saiyo/icon_teacherWhite.svg);
	}
	.footer_fixed_menu_guideline{
		background-color: #009E51;
	}
	.footer_fixed_menu_btn .footer_fixed_menu_guideline::before{
		background-image: url(../images/saiyo/icon_fileWhite.svg);
		background-size: auto 26px;
	}
	.footer_fixed_menu_btn .footer_fixed_menu_contact{
		color: #000;
		background-color: #FFF;
	}
	.footer_fixed_menu_btn .footer_fixed_menu_contact::before{
		width: 20px;
		background-image: url(../images/saiyo/icon_mailBlack.svg);
	}

	.pagetop{
		bottom: 70px;
	}
}

@media screen and (max-width: 768px) {
	/* saiyo_mv
	------------------------------ */
	.saiyo_mv{
		height: auto;
	}
	.saiyo_mv_wrapper{
		flex-direction: column;
		align-items: flex-start;
	}
	.saiyo_mv_content{
		display: contents;
		top: auto;
	}
	.saiyo_mv_title{
		width: 55%;
		margin-left: 0;
		z-index: 1;
		top: 10vw;
	}
	.saiyo_mv_slick{
		width: 75%;
		max-height: 435px;
		border-radius: 0 0 0 50px;
		overflow: hidden;
		margin-right: 0;
	}
	.saiyo_mv_btns{
		display: flex;
		flex-direction: column;
		align-items: center;
		justify-content: center;
		gap: 20px;
		margin: 35vw auto 0;
	}
	.saiyo_mv_links{
		display: none;
	}

	/* saiyo_recruit
	------------------------------ */
	.saiyo_recruit{
		padding: 60px 0;
	}
	.saiyo_recruit_title_ja{
		padding: 0 0 23px;
	}
	.saiyo_recruit_title_en{
		top: -20px;
		right: 0;
	}
	.saiyo_recruit_outline{
		margin-top: 25px;
	}
	.saiyo_recruit_btns{
		flex-direction: column;
		gap: 20px;
		margin-top: 30px;
		align-items: center;
		justify-content: center;
	}

	/* saiyo_benefits
	------------------------------ */
	.saiyo_benefits{
		padding-top: 60px;
	}
	.saiyo_benefits_title_ja{
		padding-left: 0;
		padding-right: 0;
	}
	.saiyo_benefits_outline{
		position: relative;
		margin-top: 50px;
	}
	.saiyo_benefits_outline_text{
		font-size: 14px;
	}
	.saiyo_benefits_cards{
		grid-template-columns: 1fr;
		gap: 30px;
		margin-top: 50px;
	}
	.saiyo_benefits_card_num{
		font-size: 48px;
		top: -23px;
		left: 5%;
	}
	.saiyo_benefits_card_contents{
		padding: 5%;
	}
	.saiyo_benefits_card_title{
		font-size: 18px;
		letter-spacing: .05em;
	}
	.saiyo_benefits_card_text{
		font-size: 14px;
		letter-spacing: .05em;
	}
	.saiyo_benefits_card_btn{
		margin-top: 20px;
	}
	.saiyo_benefits_card_btn .btn{
		margin: 0 auto;
	}

	/* saiyo - cta
	------------------------------ */
	.saiyo_cta{
		padding-top: 60px;
	}
	.saiyo_cta .wrapper{
		width: 90%;
		margin: 0 auto;
		padding: 0 15px 30px;
	}
	.saiyo_cta_title{
		flex-direction: column;
		align-items: flex-start;
		padding: 40px 0 0 25px;
	}
	.saiyo_cta_title_ja{
		font-size: 24px;
	}
	.saiyo_cta_title_ja::before{
		width: 25px;
		height: 10px;
		left: -40px;
	}
	.saiyo_cta_title_en{
		position: absolute;
		font-size: 40px;
		top: 20px;
		right: 0;
	}
	.saiyo_cta_wrapper{
		flex-direction: column;
		margin-top: 30px;
		padding: 0;
		gap: 30px;
	}
	.saiyo_cta_column{
		margin: 0;
		padding: 0;
		border-right: 0;
	}
	.saiyo_cta_column:last-of-type{
		margin: 0;
		padding: 0;
		border-bottom: 0;
	}
	.saiyo_cta_text{
		min-height: unset;
		font-size: 16px;
		line-height: 165%;
		letter-spacing: .035em;
	}
	.saiyo_cta_btn .btn{
		max-width: 240px;
		width: 100%;
		height: 70px;
		font-size: 16px;
		margin: 10px auto 0;
	}
	.saiyo_membership_btn .btn::before{
		width: 33px;
		height: 34px;
	}
	.saiyo_guideline_btn .btn::before{
		width: 27px;
		height: 31px;
		margin-left: 8px;
	}
	.saiyo_contact_btn .btn::before{
		width: 27px;
		height: 19px;
		margin-left: 4px;
	}
	.saiyo_cta_btn .btn::after{
		right: 20px;
	}

	/* saiyo_guide
	------------------------------ */
	.saiyo_guide{
		margin-top: 60px;
		padding-top: 60px;
	}
	.saiyo_guide_title_ja{
		padding-left: 0;
		padding-right: 0;
	}
	.saiyo_guide_title_en{
		top: -14px;
	}
	.saiyo_guide_outline{
		font-size: 14px;
		line-height: 200%;
		margin-top: 24px;
	}
	.saiyo_guide_group + .saiyo_guide_group{
		margin-top: 50px;
	}
	.saiyo_guide_subtitle{
		border-radius: 20px;
		margin: 30px auto 0;
		padding: 8% 5%;
	}
	.saiyo_guide_subtitle_text{
		font-size: 16px;
	}
	.saiyo_guide_subtitle_text span{
		display: block;
		font-size: 4vw;
		padding-bottom: 10px;
	}
	.saiyo_guide_wrapper{
		flex-direction: column;
		margin-top: 40px;
	}
	.saiyo_guide_picts{
		display: flex;
		gap: 10px;
	}
	.saiyo_guide_pict{
		max-width: unset;
		flex: 1;
		border-radius: 10px;
	}
	.saiyo_guide_pict + .saiyo_guide_pict{
		margin-top: 0;
	}
	.saiyo_guide_item + .saiyo_guide_item{
		margin-top: 25px;
		padding-top: 25px;
	}
	.saiyo_guide_item_wrapper{
		gap: 10px;
	}
	.saiyo_guide_item_num{
		position: relative;
		max-width: 40px;
	}
	.saiyo_guide_item_contents{
		max-width: unset;
	}
	.saiyo_guide_item_title{
		font-size: 20px;
		letter-spacing: .05em;
		padding-top: 8px;
	}
	.saiyo_guide_item_text{
		font-size: 14px;
		line-height: 200%;
	}
	.saiyo_guide_cards{
		display: grid;
		grid-template-columns: 1fr;
		grid-template-rows: 1fr;
		gap: 50px;
		margin-top: 50px;
	}
	.saiyo_guide_card{
		padding: 30px 5% 8%;
		border-radius: 10px;
	}
	.saiyo_guide_card:last-child{
		grid-column: span 1 / span 1;
		padding-bottom: 54px;
	}
	.saiyo_guide_card_case{
		font-size: 16px;
		border-radius: 50px;
		top: -20px;
		padding: 12px 0 13px;
	}
	.saiyo_guide_card_title{
		font-size: 20px;
		font-weight: 600;
		line-height: 145%;
		letter-spacing: .05em;
		padding-bottom: 10px;
	}
	.saiyo_guide_card_title span{
		font-size: 14px;
	}
	.saiyo_guide_card:last-child .saiyo_guide_card_title::before{
		width: 80px;
		height: 80px;
		top: -58px;
		left: 0;
	}
	.saiyo_guide_card:last-child .saiyo_guide_card_title::after{
		width: 65px;
		height: 65px;
		top: -58px;
		right: 0;
	}
	.saiyo_guide_card:last-child .saiyo_guide_card_title span{
		display: block;
	}
	.saiyo_guide_card_text{
		font-size: 14px;
		line-height: 190%;
		letter-spacing: .05em;
		margin-top: 15px;
	}
	.saiyo_guide_card_wrapper{
		flex-direction: column;
		margin-top: 30px;
		padding: 0;
	}
	.saiyo_guide_card_item{
		max-width: unset;
		width: 100%;
		box-sizing: border-box;
	}
	.saiyo_guide_card_item + .saiyo_guide_card_item{
		margin-top: 30px;
		padding: 30px 0 0;
		border-left: 0;
		border-top: 1px solid #6AC751;
	}
	.saiyo_guide_card_item_title{
		max-width: unset;
		width: 90%;
		margin-left: 12px;
	}
	.saiyo_guide_card_item_title_num{
		max-width: 30px;
		top: -15px;
		left: -12px;
	}
	.saiyo_guide_card_item_title_ja{
		font-size: 16px;
	}
	.saiyo_guide_card_item_text{
		max-width: unset;
		font-size: 14px;
		line-height: 190%;
		letter-spacing: .05em;
		margin-top: 10px;
	}
	.saiyo_guide_card_summary{
		font-size: 16px;
		line-height: 200%;
		letter-spacing: .05em;
		margin-top: 30px;
	}
	.saiyo_guide_steps{
		gap: 80px;
		margin-top: 50px;
		align-items: center;
		flex-direction: column;
	}
	.saiyo_guide_step{
		position: relative;
		max-width: 300px;
		width: 100%;
		padding: 42px 21px 21px;
	}
	.saiyo_guide_step:nth-child(2){
		max-width: 300px;
		margin: 0 auto;
	}
	.saiyo_guide_step_group{
		max-width: unset;
	}
	.saiyo_guide_step:not(:last-child)::after{
		width: 29px;
		height: 29px;
		top: auto;
		left: 0;
		right: 0;
		bottom: -40px;
		margin: 0 auto;
		transform: rotate(90deg);
	}
	.saiyo_guide_step_wrapper{
		flex-direction: column;
		gap: 32px;
	}
	.saiyo_guide_step_num{
		width: 62px;
		height: 65px;
		top: -35px;
	}
	.saiyo_guide_step_title{
		min-height: unset;
	}
	.saiyo_guide_step_title br{
		display: none;
	}
	.saiyo_guide_step_group .saiyo_guide_step_title br{
		display: block;
	}
	.saiyo_guide_step_pict{
		max-width: 76px;
		margin-top: 15px;
	}
	.saiyo_guide_step_text{
		font-size: 14px;
		line-height: 190%;
		letter-spacing: .05em;
		margin-top: 0;
	}
	.saiyo_cta_sec{
		padding: 60px 0 70px;
	}

	/* saiyo_teachers
	------------------------------ */
	.saiyo_teachers{
		padding-top: 0;
	}
	.saiyo_teachers_title_ja{
		padding-left: 0;
		padding-right: 0;
	}
	.saiyo_teachers_cards{
		grid-template-columns: 1fr;
		gap: 20px;
		margin-top: 70px;
	}
	.saiyo_teachers_card{
		position: relative;
		display: block;
		padding-bottom: 44px;
		background-color: #E6F0FA;
		border-radius: 20px;
		overflow: hidden;
	}
	.saiyo_teachers_card_title{
		font-size: 18px;
		letter-spacing: .05em;
		padding-top: 27px;
	}
	.saiyo_teachers_message + .saiyo_teachers_message{
	}
	.saiyo_teachers_message_inner{
		padding: 70px 8% 5%;
	}
	.saiyo_teachers_message_title{
		max-width: 90%;
		width: 100%;
		font-size: 18px;
		line-height: 145%;
		padding: 10px 5%;
		top: -34px;
	}
	.saiyo_teachers_message_subtitle{
		font-size: 18px;
		line-height: 145%;
		letter-spacing: .05em;
	}
	.saiyo_teachers_message_text{
		font-size: 14px;
		line-height: 190%;
	}
	.saiyo_teachers_lists_none{
		font-size: 16px;
	}

	/* saiyo_about
	------------------------------ */
	.saiyo_about{
		margin-top: 60px;
		padding: 60px 0 50px;
	}
	.saiyo_about_wrapper{
		flex-direction: column;
		margin-top: 30px;
	}
	.saiyo_about_pict{
		margin: 0 auto;
	}
	.saiyo_about_contents{
		max-width: unset;
	}
	.saiyo_about_contents::after{
		display: none;
	}
	.saiyo_about_text{
		font-size: 14px;
		line-height: 220%;
	}
	.saiyo_about_btn{
		position: relative;
		margin-top: 30px;
		z-index: 1;
	}
	.saiyo_about_btn .btn{
		margin: 0 auto;
	}
	.saiyo_about_subtitle{
		padding-top: 70px;
	}
	.saiyo_about_subtitle_ja{
		font-size: 18px;
	}
	.saiyo_about_group{
		margin-top: 30px;
		padding: 30px 25px 40px;
	}
	.saiyo_about_group_title{
		font-size: 22px;
		letter-spacing: .05em;
		padding-bottom: 10px;
	}
	.saiyo_about_group_title::before{
		width: 20px;
		height: 10px;
		top: 8px;
		left: -25px;
	}
	.saiyo_about_group_wrapper{
		display: flex;
		flex-direction: column;
		gap: 30px;
		margin-top: 20px;
	}
	.saiyo_about_group_pict{
		margin: 0 auto;
	}
	.saiyo_about_group_figure dl{
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.saiyo_about_group_figure dt:not(:first-child){
		margin-top: 20px;
	}
	.saiyo_about_group_btn .btn{
		height: 55px;
		font-size: 16px;
		padding: 10px 0;
	}
	.saiyo_about_group_figure dl dd{
		font-size: 14px;
		line-height: 190%;
	}
	.saiyo_about_group_btns{
		grid-template-columns: repeat(2,1fr);
		gap: 10px 7px;
		margin-top: 30px;
	}
	.saiyo_about_group_btn .btn{
		width: 125px;
		height: 45px;
	}
	.saiyo_about_group:last-of-type .saiyo_about_group_btns{
		grid-template-columns: repeat(3,1fr);
	}
	.saiyo_about_group:nth-of-type(4) .saiyo_about_group_btn .btn{
		width: 200px;
	}
	.saiyo_about_group:nth-of-type(5) .saiyo_about_group_btn .btn{
		width: 100%;
		height: 50px;
	}
	.saiyo_about_group:last-of-type .saiyo_about_group_btn .btn{
		width: 100%;
	}

	/* saiyo_news
	------------------------------ */
	.saiyo_news{
		padding: 80px 0 120px;
	}
	.saiyo_news_wrapper{
		flex-direction: column;
		gap: 20px;
	}
	.saiyo_news_head{
		display: contents;
		max-width: unset;
	}
	.saiyo_news_title{
		width: 100%;
	}
	.saiyo_news_title_en{
		top: 24px;
		left: auto;
		right: 0;
	}
	.saiyo_news_btn{
		margin-top: 30px;
		order: 3;
	}
	.saiyo_news_content{
		max-width: unset;
	}
	.saiyo_news_item_link{
		flex-direction: column;
		padding: 6% 5%;
		border-radius: 20px;
		gap: 10px;
		align-items: flex-start;
	}
	.saiyo_news_item_unit{
		display: flex;
		align-items: center;
		gap: 10px;
	}
	.saiyo_news_item_title{
		line-height: 150%;
	}
	.saiyo_news_btn{
		margin: 20px auto 0;
	}
	.saiyo_last_cta{
		position: relative;
		margin-top: -80px;
	}

	/* footer
	------------------------------ */
	footer{
		padding-top: 60px;
	}
	.saiyo_footer_wrapper{
		flex-direction: column;
	}
	.footer_logo a{
		margin: 0 auto;
	}
	.footer_unit{
		max-width: unset;
	}
	.footer_unit_wrapper{
		flex-direction: column;
	}
	.footer_menu{
		display: none;
	}
	.footer_corporate_btn{
		position: relative;
		margin: 30px auto 0;
	}
	.footer_corporate_btn .btn{
		width: 280px;
	}
	footer small{
		font-size: 10px;
		line-height: 145%;
		margin-top: 60px;
		padding: 25px 0 80px;
	}

	/* sub - main_title
	------------------------------ */
	.saiyo_sub_title{
		padding-bottom: 60px;
	}
	.saiyo_sub_title_wrapper{
		flex-direction: column-reverse;
		gap: 20px;
	}
	.saiyo_sub_title_contents{
		position: relative;
		display: flex;
		width: 100%;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		z-index: 1;
	}
	.saiyo_sub_title_contents::after{
		left: -10%;
	}
	.saiyo_sub_title_ja{
		font-size: 23px;
		font-weight: 600;
		line-height: 100%;
		letter-spacing: .05em;
		padding: 15px 0 16px;
		z-index: 1;
	}
	.saiyo_sub_title_en{
		font-size: 12vw;
		left: auto;
		right: 0;
		bottom: 15vw;
	}
	.saiyo_sub_title_img{
		width: 100vw;
		max-height: 400px;
		margin: 0;
		border-radius: 0;
	}

	/* Breadcrumb
	------------------------------ */
	.bread_crumb span,.bread_crumb a{
		line-height: 145%;
	}

	/* job_search
	------------------------------ */
	.job_search_archive{
		padding-top: 60px;
	}
	.job_search_school_lists{
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.job_search_school_list{
		padding: 8% 5%;
	}
	.job_search_school_list_title{
		font-size: 18px;
		line-height: 145%;
		letter-spacing: .05em;
	}
	.job_search_school_list_wrapper{
		flex-direction: column;
		gap: 20px;
		margin-top: 30px;
	}
	.job_search_school_list_badge{
		margin: 0 auto;
	}
	.job_search_school_list_contents{
		max-width: unset;
	}
	.job_search_school_list_area{
		font-size: 14px;
	}
	.job_search_school_list_type_lists{
		display: grid;
		gap: 10px;
		margin-top: 20px;
	}
	.job_search_school_list_type_list a{
		font-size: 14px;
	}
	.job_search_school_list_btns{
		flex-direction: column;
	}
	.job_search_school_list_btn .btn{
		margin: 0 auto;
	}

	/* news - archive
	------------------------------ */
	.saiyo_news_archive_item_wrapper{
		flex-direction: column;
		gap: 20px;
		padding: 8%;
	}
	.saiyo_news_archive_item_pict{
		margin: 0 auto;
	}
	.saiyo_news_archive_list_title{
		font-size: 18px;
		letter-spacing: .05em;
		margin-top: 10px;
	}
	.saiyo_news_archive_list_text{
		line-height: 200%;
	}
	.saiyo_news_archive_list_btn{
		justify-content: center;
	}

	/* news - single
	------------------------------ */
	.saiyo_single_wrapper{
		flex-direction: column;
		gap: 50px;
		margin-top: 60px;
	}
	.saiyo_single_wrapper article{
		max-width: unset;
	}
	.date_box{
		gap: 14px;
	}
	.saiyo_news_tag{
		font-size: 12px;
		padding: 11px 15px;
	}
	.saiyo_news_single_title{
		font-size: 18px;
		letter-spacing: .05em;
		margin-top: 15px;
	}
	.saiyo_news_single .content h2{
		font-size: 16px;
	}
	.saiyo_news_single .content h3{
		font-size: 16px;
	}
	.adjacent_post_links{
		margin-top: 30px;
		padding-top: 30px;
	}
	.adjacent_post_links ul{
		flex-direction: column;
		gap: 20px;
	}
	.adjacent_post_links li{
		max-width: unset;
		width: 80%;
	}
	.adjacent_post_links li a{
		width: 100%;
		font-size: 14px;
		font-weight: 600;
		line-height: 100%;
		letter-spacing: .05em;
		align-items: center;
		justify-content: space-between;
		gap: 20px;
	}

	/* aside
	------------------------------ */
	aside{
		margin: 0 auto;
	}
}