@charset "UTF-8";

body, html {
	font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
	font-size: 16px;
	height: 100%;
	line-height: 2;
	color: #1a1a1a;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

li {
	list-style: none;
}

div, header, footer, p {
	box-sizing: border-box;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

a,
a:link,
a:visited,
a:hover,
a:focus {
	text-decoration: none;
	word-break: break-all;
}

a {
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
a.underline {
	text-decoration: underline;
}

a:hover {
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
a:hover.underline {
	text-decoration: none;
}

#loader-container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	align-items: center;
	position: fixed;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
	background-color: #001871;
	z-index: 1000;
}
.loader {
	width: 100%;
}
.loader span {
	background-color: #fff;
	border-radius: 50%;
	display: block;
	width: 7px;
	height: 7px;
	margin: auto;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	font-size: 10px;
	-webkit-animation: load8 1.2s infinite linear;
	animation: load8 1.2s infinite linear;
}
.loader span:nth-of-type(1) {
	transform: translateX(-26px);
}
.loader span:nth-of-type(2) {
	-webkit-animation-delay: .3s;
	animation-delay: .3s;
}
.loader span:nth-of-type(3) {
	transform: translateX(26px);
	-webkit-animation-delay: .6s;
	animation-delay: .6s;
}
@-webkit-keyframes load8 {
	0% {
		width: 7px;
		height: 7px;
	}
	33.3% {
		width: 18px;
		height: 18px;
	}
	66.6% {
		width: 7px;
		height: 7px;
	}
}
@keyframes load8 {
	0% {
		width: 7px;
		height: 7px;
	}
	33.3% {
		width: 18px;
		height: 18px;
	}
	66.6% {
		width: 7px;
		height: 7px;
	}
}


/*** header ***/
.header {
	background: #001871;
	border-bottom: 1px solid #fff;
	display: block;
	padding: 11px 10px 16px;
	width: 100%;
	position: fixed;
	z-index: 11;
}
.header.no-fixed {
	position: absolute;
}
.header-logo {
	height: 36px;
	line-height: 1;
}
.header-logo img {
	width: auto;
	height: 100%;
}

/** menu **/
.menu-btn {
	padding: 14px;
	width: 63px;
	height: 63px;
	height: 100%;
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	border-left: 1px solid #fff;
	cursor: pointer;
	z-index: 11;
}
.menu-btn div {
	width: 100%;
	height: 100%;
	position: relative;
}
.menu-btn span {
	width: 30px;
	height: 3px;
	display: block;
	background: #fff;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
}
.menu-btn span:nth-child(2) {
	-webkit-transform: translateY(-13px);
	transform: translateY(-13px);
}
.menu-btn span:nth-child(3) {
	-webkit-transform: translateY(13px);
	transform: translateY(13px);
}
html.open .menu-btn span:nth-of-type(1) {
	opacity: 0;
}
html.open .menu-btn span:nth-of-type(2) {
	-webkit-transform: translateY(0) rotate(-45deg);
	transform: translateY(0) rotate(-45deg);
}
html.open .menu-btn span:nth-of-type(3) {
	-webkit-transform: translateY(0) rotate(45deg);
	transform: translateY(0) rotate(45deg);
}
.menu-block {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-top: 64px;
	width: 100%;
	height: 0;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	overflow: hidden;
	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}
html.open .menu-block {
	height: 100%;
}
.menu-list {
	font-size: 12px;
	font-weight: 900;
	margin: 0 auto;
	overflow-y: auto;
	padding: 50px;
	position: relative;
	height: 100%;
}

.menu-list > li {
	border-bottom: 1px dashed #001871;
	padding-top: 10px;
}

.menu-list > li:first-child {
	border-top: 1px dashed #001871;
}
.menu-list a {
	display: block;
	padding: 10px;
	color: #001871;
	text-decoration: none;
	word-break: break-all;
}
.menu-list .sub-menu-list {
	padding-left: 1.5em;
}
.menu-list .sub-menu-list a {
	padding-left: 0;
}
.menu-list .sub-menu-list .title {
	color: #8a8c8d;
}

/*** footer ***/
.footer {
	display: block;
	width: 100%;
}
.footer .foot-movie-link {
	text-align: center;
}
.footer .foot-movie-link a {
	border-bottom: 1px solid #000;
	color: #000;
	font-weight: 900;
}
.footer .spec-wrap {
	color: #333;
	font-size: 10px;
	margin-top: 36px;
	padding: 0 20px;
}
.footer .spec-wrap .spec-list {
	display: flex;
	flex-wrap: wrap;
}
.footer .spec-wrap .spec-list .spec {
	width: 50%;
	margin-top: 20px;
}
.footer .spec-wrap .spec-list .spec ul {
	padding-left: 1em;
}
.footer .spec-wrap .note {
	margin-top: 30px;
	padding-left: 1em;
	text-indent: -1em;
}
.footer .code {
	color: #333;
	font-size: 10px;
	font-weight: 100;
	margin-top: 30px;
	padding: 0 20px;
}
.copyright {
	background-color: #001871;
	color: #fff;
	padding: 5.385% 5.601%;
	font-size: 10px;
	font-weight: 500;
	margin-top: 15px;
	text-align: center;
	line-height: 1;
}
.footer a {
	color: #fff;
}

.contents{
	font-weight: 900;
}

.inner{
	max-width: 880px;
	margin: 0 auto;
}
#mainvisual{
	text-align: center;
	padding-top: 81px;
	position: relative;
}
#mainvisual .mvImg img{
	width: 100%;
}
#mainvisual h1{
	font-size: 40px;
	line-height: 1.2;
	letter-spacing: 0.06em;
	font-weight: 900;
}
#mainvisual h1 .hukidashi{
	display: inline-block;
	position: relative;
}
#mainvisual h1 .hukidashi:before{
	content: "";
	background: url(../img/img_ttl_hukidashi.png) no-repeat center /94px 90px;
	width: 94px ;
	height: 90px ;
	position: absolute;
	left: -100px;
	top: -30px;
}
#mainvisual h1 .hukidashi .underline-txt{
	line-height: 1.6;
}
.underline-txt{
	display: inline-block;
	position: relative;
	overflow: hidden;
}
.underline-txt .split {
	display: inline-block;
	transform: translateY(100%);
	-webkit-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	-moz-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	-o-transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.underline-txt .split.show {
	transform: translateY(0);
}
.underline-txt:after {
    background-color: #F8B500;
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    border-radius: 10px;
    -webkit-transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    -moz-transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    -o-transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.underline-txt.show:after {
    width: 100%;
}
#mainvisual:before{
	content: "";
	position: absolute;
	bottom: 20px;
	left: 50%;
	background: url(../img/arrow_main.png) no-repeat bottom /15px 33px;
	width: 15px;
	height: 33px;
	transform: translateX(-50%);
}
#mainvisual .lead{
	margin-top: 5px;
	line-height: 1.75;
	font-size: 20px;
	color: #3E3A39;
	letter-spacing: 0.06em;
}
#mainvisual .mapPic{
	margin-top: 50px;
}
#mainvisual .mapPic img{
	transform: translateX(-50%);
}

.head_section{
	padding: 60px 0 130px;
}
.step1_section{
	background: #ADE0EE;
}
.step2_section{
	background: #FDDC96;
}
section h2{
	font-size: 30px;
	text-align: center;
	margin-bottom: 25px;
	font-weight: 900;
}
.stepDl{
	max-width: 620px;
	margin: 0 auto;
	display: flex;
	font-size: 18px;
	letter-spacing: 0.02em;
}
.stepDl dt{
	margin-right: 10px;
}
.stepDl.blue dt{
	color: #00A4E4;
}
.stepDl.orange dt{
	color: #F8B500;
}
.col2Wrap{
	display: flex;
	justify-content: space-between;
}
.col2Wrap .col{
	width: 417px;

}
.stepCol{
	margin-top: 50px;
	text-align: center;
}
.stepCol .ttl{
	margin-top: 22px;
}
.stepCol .ttl span{
	display: block;
}
.stepCol .ttl .mini{
	font-size: 12px;
	line-height: 1.25;
	letter-spacing: 0.1em;
}
.stepCol .ttl .big{
	font-size: 22px;
	line-height: 1.25;
	margin-top: 2px;
	letter-spacing: 0.1em;
}
.stepCol .btn{
	margin-top: 25px;
}

.btn_blue,
.btn_orange{
	display: inline-block;
	border: 4px solid #000;
	border-radius: 200px;
	width: 274px;
	padding: 8px;
	font-size: 16px;
	letter-spacing: 0.04em;
}
.btn_blue .icon,
.btn_orange .icon{
	display: inline-block;
	padding-right: 10px;

}
a.btn_blue{
	background: url(../img/icon_target.png) no-repeat right 18px center /20px 16px #081970;
	color: #fff;
}
a.btn_blue.arrow{
	background: url(../img/icon_arrow_circle.png) no-repeat right 18px center /24px 24px #081970;
}
a.btn_orange{
	background: url(../img/icon_target.png) no-repeat right 18px center /22.5px 18.5px #F8B500;
	color: #1A1A1A;
}
.center_btn{
	margin-top: 50px;
}
.center_btn .btn_blue,
.center_btn .btn_orange{
	width: 344px;
}
.side_move {
	-webkit-animation: swing 2s infinite linear;
	animation: swing 2s infinite linear;
}
@-webkit-keyframes swing {
	0% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(10px);
	}
	50% {
		transform: rotate(0deg);
	}
	75% {
		transform: translateX(-10px);
	}
	100% {
		transform: rotate(0deg);
	}
}
@keyframes swing {
	0% {
		transform: translateX(0);
	}
	25% {
		transform: translateX(10px);
	}
	50% {
		transform: rotate(0deg);
	}
	75% {
		transform: translateX(-10px);
	}
	100% {
		transform: rotate(0deg);
	}
}

.riskBox{
	border-radius: 12px;
	padding: 50px 60px 40px;
	background: #d7eef6;
	text-align: center;
}
.riskBox h2{
	letter-spacing: 0.05em;
}
.riskBox p{
	font-size: 16px;
	letter-spacing: 0.12em;
}
.riskBox .img{
	margin-top: 40px;
}
.hd_bottom{
	margin-top: 100px;
	font-size: 26px;
	line-height: 1.9;
	letter-spacing: 0.12em;
	margin-bottom: 0;
	padding-bottom: 35px;
	background: url(../img/icon_arrow_bottom.png) no-repeat center bottom /15.5px 11px;
	font-weight: 900;
}
.step_section{
	padding: 120px 0 150px;
	text-align: center;
}
.step_section .step_text{
	font-size: 18px;
	line-height: 1.8;
}
.step_section .step_notice {
	margin-top: 5px;
	font-size: 16px;
}
.step_section .btn_lead{
	font-size: 24px;
	margin-top: 48px;
	line-height: 1.75;
	letter-spacing: 0.1em;
}
.step_notice{
}
.step_section .img{
	margin-top: 55px;
}
.step_section .map{
	margin-top: 55px;
}
.step_section h2{
	font-size: 34px;
	line-height: 1.3;
	margin-top: 28px;
	letter-spacing: 0.1em;
}
.step_head{
	background: #081970;
	width: 170px;
	margin: 0 auto;
	padding: 8px;
	border-radius: 100px;
	line-height: 1;
	color: #fff;
}
.step_head .unit{
	font-size: 19px;
	margin-right: 5px;
}
.step_head .num{
	font-size: 24px;
}
.map_color{
	margin-top: 10px;
}

.active_care_section{
	padding: 100px 0 150px;
	text-align: center;
	height: 650px;
	background: url(../img/bg_active_care.png) no-repeat center top /cover;
	
}
.active_care_section h2{
	letter-spacing: 0.06em;
	line-height: 1.5;
}
.active_care_section .lead{
	letter-spacing: 0.1em;

}
.footer_btn_wrap{
	margin-top: 80px;
}
.footer_btn_colWrap {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0;
	text-align: center;
}
.footer_btn_colWrap a + a {
	margin: 0 0 0 35px;
}

.bnrWrap {
	opacity: 0;
	pointer-events: none;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;
	z-index: 9;
}
.bnrWrap.show {
	opacity: 1;
	pointer-events: auto;
}
.bnrWrap ul {
	display:-ms-flexbox;
	display: -webkit-box;
	display: flex;
}
.bnrWrap ul li {
	width: 50%;
}
.bnrWrap ul li a {
	display:-ms-flexbox;
	display: -webkit-box;
	display: flex;
	width: 100%;
	height: auto;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all 0.3s ease;	
}
.bnrWrap ul li:first-child a {
	background-color: #00a4e4;
	justify-content: flex-end;
}
.bnrWrap ul li:last-child a {
	background-color: #fab802;
	justify-content: flex-start;
}

.page_anchor_box {
	margin-top: 90px;
}
.page_anchor_box .step_anchor_list_wrap {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}
.page_anchor_box .step_anchor_list > li + li {
	margin-top: 10px;
}
.page_anchor_box .step_anchor_list a {
	color: #231815;
	display: inline-flex;
	align-items: center;
	font-size: 18px;
}
.page_anchor_box .step_anchor_list a:after {
	background: url(../img/icon_arrow_bottom_circle.png) no-repeat center center / contain;
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	margin-left: 8px;
	vertical-align: middle;
	-webkit-animation: pop 1s infinite linear;
	animation: pop 1s infinite linear;
}
.page_anchor_box .step_anchor_list a .step {
	color: #081970;
	margin-right: 30px;
}
.page_anchor_box .step_tile_list {
	display: flex;
	justify-content: center;
	margin-top: 50px;
}
.page_anchor_box .step_tile_list li + li {
	margin-left: 26px;
}
.page_anchor_box .step_tile_list a {
	border: 3px solid #231815;
	border-radius: 12px;
	color: #231815;
	display: block;
	line-height: 1.3;
	padding: 28px 16px 26px;
	position: relative;
	text-align: center;
	width: 276px;
	height: 222px;
}
@-webkit-keyframes pop {
	0% {
		transform: translateY(0);
	}
	25% {
		transform: translateY(3px);
	}
	75% {
		transform: translateY(-3px);
	}
	100% {
		transform: translateY(0);
	}
}
@keyframes pop {
	0% {
		transform: translateY(0);
	}
	25% {
		transform: translateY(3px);
	}
	75% {
		transform: translateY(-3px);
	}
	100% {
		transform: translateY(0);
	}
}

.page_anchor_box .step_tile_list a:after {
	background: url(../img/icon_arrow_bottom_circle.png) no-repeat center center / contain;
	content: "";
	display: block;
	width: 32px;
	height: 32px;
	position: absolute;
	left: calc(50% - 16px);
	top: calc(100% - 15px);
	-webkit-animation: pop 1s infinite linear;
	animation: pop 1s infinite linear;
}
.page_anchor_box .step_tile_list .step1 {
	background: #ade0ee;
}
.page_anchor_box .step_tile_list .step2 {
	background: #fddc96;
}
.page_anchor_box .step_tile_list .step3 {
	background: #f0f0f0;
}
.page_anchor_box .step_tile_list a .label {
	background: #081970;
	border-radius: 20px;
	color: #fff;
	width: 104px;
	height: 40px;
	line-height: 40px;
	margin: 0 auto;
	text-align: center;
}
.page_anchor_box .step_tile_list a .label .unit {
	font-size: 18px;
}
.page_anchor_box .step_tile_list a .label .num {
	font-size: 24px;
}
.page_anchor_box .step_tile_list a .lead-txt {
	font-size: 23px;
	margin-top: 20px;
}
.page_anchor_box .step_tile_list a .more {
	font-size: 16px;
	margin-top: 25px;
}
.step3_section {
	background: #f0f0f0;
}
.school_link_section {
	background: #f8b500;
	padding: 80px 0;
}
.school_link_section .lead_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
}
.school_link_section .lead_wrap .img {
	width: 262px;
	margin-right: 40px;
}
.school_link_section .lead_wrap .txt_wrap h2 {
	line-height: 1.3;
	margin-bottom: 0;
}
.school_link_section .lead_wrap .txt_wrap h2 + p {
	margin-bottom: 15px;
}
.school_link_section .center_btn {
	text-align: center;
}

@media screen and (min-width: 768px) { 
	.spOnly { display: none !important; }
	.pcOnly { display: block !important; }
	.detail-btn:hover,
	#movie-modal #movie .closeBtn:hover,
	.foot-btn-wrap a:hover,
	.movie-btn:hover {
		opacity: .7;
	}
	.footer .foot-movie-link a:hover {
		border-bottom-color: #fff;
	}
	.bnrWrap ul li a:hover {
		transform: translate(0,-10px);
		box-shadow: 0 1px 4px rgba(0,0,0,.3);
	}

	.pc-fade {
		opacity: 0;
		transform: translateY(75px);
		transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
	}
	.pc-fade.show {
		opacity: 1;
		transform: translateY(0);
	}


	/*** header ***/
	.header {
		padding: 0;
	}
	.header .header-inner {
		padding: 15px 0;
		width: 940px;
		margin: 0 auto;
		position: relative;
	}
	.header-logo {
		height: 50px;
	}
	/** menu **/
	.menu-btn {
		border-right: 1px solid #fff;
		width: 80px;
		height: 80px;
	}
	.menu-btn span {
		width: 40px;
		height: 4px;
	}
	.menu-btn span:nth-child(2) {
		-webkit-transform: translateY(-18px);
		transform: translateY(-18px);
	}
	.menu-btn span:nth-child(3) {
		-webkit-transform: translateY(18px);
		transform: translateY(18px);
	}
	.menu-block {
		padding-top: 81px;
	}
	.menu-list {
		font-size: 16px;
		max-width: 940px;
	}
	/*** footer ***/
	.footer .foot-movie-link a {
		font-size: 20px;
	}
	.footer .spec-wrap {
		margin: 60px auto 0;
		max-width: 940px;
		padding: 0;
	}
	.footer .spec-wrap .spec-list .spec {
		width: auto;
	}
	.footer .spec-wrap .spec-list .spec + .spec {
		margin-left: 45px;
	}
	.footer .spec-wrap .note {
		margin-top: 20px;
	}
	.footer .code {
		max-width: 940px;
		margin: 40px auto 0;
		padding: 0;
	}
	.copyright {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 0;
		height: 40px;
		margin-top: 20px;
	}


}
@media screen and (max-width: 767px){
	.spOnly { display: block !important; }
	.pcOnly { display: none !important; }

	.detail-btn:hover,
	#movie-modal #movie .closeBtn:hover,
	.foot-btn-wrap a:hover,
	.movie-btn:hover {
		opacity: .7;
	}
	.footer .foot-movie-link a:hover {
		border-bottom-color: #fff;
	}

	.sp-fade {
		opacity: 0;
		transform: translateY(75px);
		transition: all .5s cubic-bezier(0.165, 0.84, 0.44, 1);
	}
	.sp-fade.show {
		opacity: 1;
		transform: translateY(0);
}

	.inner{
		margin-left: 20px;
		margin-right: 20px;
	}
	.col2Wrap{
		display: block;
	}
	.col2Wrap .col{
		width: auto;
	}
	#mainvisual{
		padding-top: 0;
	}
	#mainvisual h1{
		font-size: 31px;
	}
	#mainvisual .lead{
		font-size: 17px;
		margin-top: 10px;
	}
	#mainvisual h1 .hukidashi:before{
		background-size: 74px 70px;
		width: 74px;
		height: 70px;
    left: -68px;
    top: -48px;
	}
	#mainvisual:before{
		background-size: 12px 26px;
		width: 12px;
		height: 26px;
		bottom: 14px;
	}
	section h2{
		font-size: 27px;
		line-height: 1.5;
	}
	.stepDl{
		display: block;
		text-align: center;
		font-size: 15px;
	}
	.stepDl dt{
		margin-right: 0;
	}

	.stepCol .ttl .mini{
		font-size: 15px;
		letter-spacing: 0;
	}
	.stepCol .ttl .big{
		font-size: 27px;
		letter-spacing: 0;
	}
	.stepCol .btn{
		margin-top: 15px;
	}

	.btn_blue, .btn_orange{
		border: 3px solid #000;
		width: 100%;
		font-size: 19px;
		padding: 5px;
	}
	.col2Wrap .col:not(:first-child){
		margin-top: 100px;
	}
	.riskBox{
		border-radius: 0;
		padding: 40px 20px;
		margin-left: -20px;
		margin-right: -20px;
	}
	.riskBox p{
		letter-spacing: 0.06em;
		font-size: 15px;
		line-height: 1.75;
	}
	.riskBox h2{
		margin-bottom: 30px;

	}
	.hd_bottom{
		font-size: 20px;
		letter-spacing: 0.02em;
	}

	.step_section{
		padding: 60px 0 70px;
	}
	.step_head .unit{
		font-size: 18px;
	}
	.step_section h2{
		font-size: 27px;
		letter-spacing: 0.02em;
		margin-top: 20px;
	}
	.step_section .step_text{
		font-size: 15px;
	}
	.step_section .step_notice{
		font-size: 13px;
		margin-top: 2px;
	}
	.step_section .btn_lead{
		font-size: 17px;
		letter-spacing: 0.02em;
	}
	.center_btn .btn_blue, .center_btn .btn_orange{
		width: 100%;
	}
	.step_section .btn_lead{
		margin-top: 40px;
	}
	.center_btn{
		margin-top: 45px;
	}
	.active_care_section{
		height: auto;
		padding: 15.466vw 0 45vw;
		background: url(../img/bg_active_care_sp.png) no-repeat center bottom /cover;
	}
	.active_care_section h2{
		font-size: 27px;
		margin-bottom: 20px;
	}
	.active_care_section .lead{
		font-size: 15px;
		letter-spacing: 0.02em;
	}
	.footer_btn_wrap{
		margin-top: 50px;
	}
	.footer_btn_colWrap{
		display: block;
	}
	.footer_btn_colWrap a{
		display: block;
		text-align: center;
	}
	.footer_btn_colWrap a:not(:first-child){
		margin: 30px 0 0;

	}

	.bnrWrap ul li a {
		display: block;
	}

.page_anchor_box {
	margin-top: 60px;
}
.page_anchor_box .step_anchor_list_wrap {
	margin-top: 30px;
}
.page_anchor_box .step_anchor_list a {
	display: block;
	font-size: 15px;
	text-align: center;
}
.page_anchor_box .step_anchor_list a:after {
	display: block;
	width: 14px;
	height: 14px;
	margin: 8px auto 0;
}
.page_anchor_box .step_anchor_list a .step {
	display: block;
	margin: 0 auto;
}
.page_anchor_box .step_tile_list {
	display: none;
}
.step3_section h2 {
	margin: 45px auto 25px;
	width: 283px;
}
.step3_section .img {
	margin-top: 32px;
}
.school_link_section {
	padding: 60px 0;
}
.school_link_section .lead_wrap {
	flex-direction: column;
}
.school_link_section .lead_wrap .img {
	order: 2;
	margin: 20px auto 0;
	width: 232px;
}
.school_link_section .lead_wrap .txt_wrap {
	text-align: center;
}
.school_link_section .center_btn {
	margin-top: 25px;
}


}


@media screen and (min-width: 768px) {
	#step3 h2 {
		margin: 70px 0 50px;
	}
}
