@charset "UTF-8";
/*-----------------------------------------
　全般設定
-----------------------------------------*/
.clearfix:after {
	height: 0;
	content: ".";
	clear: both;
	display: block;
	visibility: hidden;
}
html { font-size: 62.5%; }
body {
	width: 100%;
	font-size: 1.6rem;
	font-family: -apple-system, blinkMacSystemFont,'Helvetica Neue','Segoe UI','Hiragino Kaku Gothic ProN',Meiryo,sans-serif;
	color: #555555;
	margin: 0 auto;
	padding: 0;
	line-height: 1.7;
	counter-reset: number 0;
}
*,*::before,*::after { box-sizing: border-box; }
img { vertical-align: bottom; }
h2,h3 { font-weight: normal;}
.mt10 { margin-top: 10px; }
.mt20 { margin-top: 20px; }
.mt40 { margin-top: 40px; }
.mb20 { margin-bottom: 20px; }
.mt120 { margin-top: 120px; }
.ml20 { margin-left: 20px; }
.right { float: right;}
.left { float: left; }
.clear { clear: both; }
.center { text-align: center; }
.bold { font-weight: bold; }
.fs14 { font-size: 1.4rem; }
.fs16 { font-size: 1.6rem; }
.fs2 { font-size: 2rem; }
.fs3 { font-size: 3rem; }
.fs4 { font-size: 4rem; }
.line25 { line-height: 2.5 }
.forsp { display: none; }
table {	border-collapse: collapse; border-spacing: 0; }

/*-----------------------------------------
　ページ全体のブロック
-----------------------------------------*/
#container {
	width: 100%;
	height: 100%;
	min-height: 100vh;
	position: relative;
}

/*-----------------------------------------
　ヘッダー
-----------------------------------------*/
header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 75px;
	padding: 0 20px 20px 20px;
	background: #FFF;
	border-bottom: 1px solid #999;
	z-index: 3;
	transition: .5s;
}
.logo {
	position: absolute;
	top: 0;
	left: 0;
	padding: 5px 0 0 20px;
}
@media only screen and (max-width: 768px) {
	.nav {
		position: fixed;
		right: -320px; /* 右から出てくる */
		top: 0;
		width: 300px; /* スマホに収まるサイズ */
		height: 100vh;
		padding-top: 60px;
		background-color: #fff;
		transition: all .5s;
		z-index: 200;
		overflow-y: auto; /* メニューが多くなったらスクロールできるように */
	}
	.hamburger {
		position: absolute;
		right: 15px;
		top: 12px;
		width: 50px; /* クリックしやすい幅 */
		height: 50px; /* クリックしやすい高さ */
		cursor: pointer;
		z-index: 300;
	}
	.nav_list {
		margin: 0;
		padding: 0;
		list-style: none;
	}
	.nav_item {
		text-align: left;
		padding: 0 14px;
	}
	.nav_item a {
		display: block;
		padding: 8px 0;
		border-bottom: 1px solid #eee;
		text-decoration: none;
		color: #707070;
	}
	.nav_item a:hover { background-color: #eee; }
	.hamburger_border {
		position: absolute;
		left: 20px;
		width: 30px;
		height: 3px;
		background-color: #7C7C7C;
		transition: all .6s;
	}
	.hamburger_border_top { top: 14px; }
	.hamburger_border_center { top: 22px; }
	.hamburger_border_bottom { top: 30px; }
	.black_bg {
		position: fixed;
		left: 0;
		top: 0;
		width: 100vw;
		height: 100vh;
		z-index: 100;
		background-color: #333;
		opacity: 0;
		visibility: hidden;
		transition: all .6s;
		cursor: pointer;
	}
	/* 表示された時用のCSS */
	.nav-open .nav { right: 0; }
	.nav-open .black_bg {
		opacity: .8;
		visibility: visible;
	}
	.nav-open .hamburger_border_top {
		transform: rotate(45deg);
		top: 20px;
	}
	.nav-open .hamburger_border_center {
		width: 0;
		left: 50%;
	}
	.nav-open .hamburger_border_bottom {
		transform: rotate(-45deg);
		top: 20px;
	}
}
@media only screen and (min-width: 769px) {
	.nav_list { text-align: right; }
	.nav_list li {
		display: inline-block;
		text-align: right;
		margin-left: 20px;
		vertical-align: middle;
		transition: .3s;
		position: relative;
	}
	.nav_list li a {
		color: #7C7C7C;
		text-decoration: none;
		font-size: 1.4rem;
		font-weight: bold;
	}
	.nav_list li:hover,.nav_list li.current { transform: translateY(3px); }
	.nav_list li:hover:after,
	.nav_list li.current:after {
		content: "";
		display: block;
		width: 50px;
		height: 3px;
		background: #F39800;
		bottom: -5px;
		left: calc(50% - 25px);
		position: absolute;
	}
	.nav_list li.contact {
		background: #F39800;
		border-radius: 0 0 10px 10px;
		line-height: 1.2 !important;
		box-shadow: 3px 3px 0px 0px #815203;
		box-sizing: border-box;
	}
	.nav_list li.contact:hover:after { display: none; }
	.nav_list li.contact a {
		color: #FFF;
		padding: 13px 30px 13px 10px;
		display: block;
	}
	.nav_list li.contact a:before,
	.nav_list li.contact a:after,
	#mainimg a:before,
	#mainimg a:after {
		position: absolute;
		top: 0;
		bottom: 0;
		right: 10px;
		margin: auto;
		content: "";
		vertical-align: middle;
	}
	.nav_list li.contact a::before,
	#mainimg a:before {
		width: 15px;
		height: 15px;
		border-radius: 50%;
		background: #FFF;
	}
	.nav_list li.contact a:after,
	#mainimg a:after {
		right: 10px;
		box-sizing: border-box;
		width: 9px;
		height: 8px;
		border: 4px solid transparent;
		border-left: 6px solid #F39800;
	}
	.nav_list li.contact:hover {
		box-shadow: none;
		border: none;
		transform: translatey(3px);
		background: #FFAD25;
	}
}

/*-----------------------------------------
　コンテンツ
-----------------------------------------*/
#contents,#contents-privacy {
	width: 100%;
	text-align: left;
}
#contents {
	background: url("img/bg_content.png") repeat-y;
	background-size: 100%;
	background-position: 0 700px;
	padding-bottom: 40px;
}

/*-----------------------------------------
　パーツ
-----------------------------------------*/
.breadcrumbs {
	background: #F7F6F5;
	padding: 8px 20px;
	margin-top: 75px;
	font-size: 1.2rem;
}
.breadcrumbs a {
	text-decoration: none;
	color: #707070;
}
h1.main-title {	padding: 70px 0; }
h1.main-title:before,
h1.main-title:after {
	display: inline-block;
	content: "";
	width: 150px;
	height: 22px;
}
h1.main-title:before {
	background: url("img/bg_main-title-left.png") no-repeat;
	background-size: contain;
	margin-right: 30px;
}
h1.main-title:after {
	background: url("img/bg_main-title-right.png") no-repeat;
	background-size: contain;
	margin-left: 30px;
}
.sub-title {
    display: flex;
    align-items: center;
}
.sub-title:before,
.sub-title:after {
    content: "";
    height: 2px;
    flex-grow: 1;
    background-color: #707070;
}
.sub-title:before { margin-right: 2rem; }
.sub-title:after { margin-left: 2rem; }
.sub-title2 {
	position: relative;
	padding-bottom: 50px;
}
.sub-title2:after {
	display: block;
	content: "";
	background: url("img/bg_sub-title2.png") no-repeat;
	background-size: contain;
	width: 93px;
	height: 26px;
	position: absolute;
	left: calc(50% - 46.5px);
}
#mainimg {
	width: 100%;
    height: 0;
    padding-top: 41.3434%; /* (画像の高さ / 画像の横幅) × 100 */
    background: url("img/img_mainimg.png") no-repeat;
    background-position: center center;
    background-size: cover;
	position: relative;
}
#mainimg a {
	background: #F39800;
	border: 3px solid #FFF;
	border-radius: 10px;
	box-shadow: 3px 3px 0px 0px #815203;
	display: block;
	color: #FFF;
	text-decoration: none;
	padding: 20px 70px 20px 30px;
	font-weight: bold;
	max-width: 600px;
	transition: .3s;
	position: absolute;
	bottom: 20%;
	left: 10%;
}
#mainimg a span {
	position: absolute;
	top: -40px;
	right: -40px;
	width: 80px;
	height: 80px;
	text-align: center;
	line-height: 1.4;
	background: #FFE600;
	border: 2px solid #F39800;
	border-radius: 50%;
	color: #FF6F00;
	padding: 10px;
	font-size: 2rem;
}
#mainimg a::before,#mainimg a::after { right: 30px; }
#mainimg a::before {
	width: 25px;
	height: 25px;
}
#mainimg a::after {
	right: 30px;
	width: 13px;
	height: 12px;
	border: 6px solid transparent;
	border-left: 10px solid #F39800;
}
#mainimg a:hover {
	box-shadow: none;
	transform: translateY(3px);
	background: #FFAD25;
}
#news {
	border: 5px solid #F39800;
	padding: 20px;
	background: #FFF;
	width: 90%;
	max-width: 900px;
	margin: -50px auto 60px auto;
	position: relative;
	z-index: 2;
}
#news h2 {
	background: #F39800;
	color: #FFF;
	padding: 10px;
	margin-bottom: 10px;
	text-align: center;
}
#news ul {
	display: inline-block;
	list-style: none;
	vertical-align: middle;
	line-height: 2.5;
}
#news ul li a {
	text-decoration: none;
	color: #7C7C7C;
}
#news ul li span {
	margin: 0 10px;
	border-radius: 5px;
	padding: 0 10px;
	width: 100px;
	height: 25px;
	display: inline-block;
	text-align: center;
	color: #FFF;
	line-height: 1.7;
}
.orange { background: #F39800; }
.blue { background: #82C1D7; }
.green { background: #B4CC31; }
.inner {
	width: 90%;
	max-width: 1160px;
	padding: 20px 0;
	margin: 0 auto;
}
.box01 {
	border: 1px solid #CCC;
	background: #FFF;
	padding: 30px;
	border-radius: 10px;
	box-shadow: 3px 3px 0px 0px #CCC;
	position: relative;
}
h2.arrow-orange,
h2.arrow-blue,
h2.arrow-green {
	padding: 15px;
	color: #FFF;
	width: 60%;
	text-align: center;
	position: absolute;
	top: 20px;
}
h2.arrow-orange,h2.arrow-green { left: -10px; }
h2.arrow-orange {
	background: #F39800;
	box-shadow: 3px 3px 0px 0px #583703;
}
h2.arrow-blue {
	right: -10px;
	background: #82C1D7;
	box-shadow: -3px 3px 0px 0px #0C2B36;
}
h2.arrow-green {
	background: #B4CC31;
	box-shadow: 3px 3px 0px 0px #4D5812;
}
h2.arrow-orange:before,
h2.arrow-blue:after,
h2.arrow-green:before {
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	position: absolute;
	bottom: -10px;
}
h2.arrow-orange:before,
h2.arrow-green:before {
	border-width: 0 10px 10px 0;
	left: 0px;
}
h2.arrow-orange:before { border-color: transparent #583703 transparent transparent;	}
h2.arrow-blue:after {
	border-width: 10px 10px 0 0;
	border-color: #0C2B36 transparent  transparent transparent;
	right: 0px;
}
h2.arrow-green:before { border-color: transparent #4D5812 transparent transparent; }
h2.arrow-orange:after,
h2.arrow-blue:before,
h2.arrow-green:after {
	display: block;
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	position: absolute;
	top: calc(50% - 57.5px);
} 
h2.arrow-orange:after,
h2.arrow-green:after {
	border-width: 57.5px 0 57.5px 50px;
	right: -50px;
}
h2.arrow-orange:after {
	border-color: transparent transparent transparent #F39800;
	filter: drop-shadow(0px 4px 0px rgba(88,56,3,1));
}
h2.arrow-blue:before {
	border-width: 57.5px 50px 57.5px 0;
	left: -50px;
	border-color: transparent #82C1D7 transparent transparent;
	filter: drop-shadow(0px 4px 0px rgba(12,43,54,1));
}
h2.arrow-green:after {
	border-color: transparent transparent transparent #B4CC31;
	filter: drop-shadow(0px 4px 0px rgba(77,88,18,1));
}
.left-block,
.right-block {
	display: inline-block;
	width: 49.5%;
	max-width: 550px;
	box-sizing: border-box;
	vertical-align: top;
}
.left-block { padding-right: 20px; }
.right-block { padding-left: 20px; }
.right-block img,
.left-block img {
	width: 100%;
	height: auto;
}
a.link-orange,
a.link-blue,
a.link-green {
	padding: 20px;
	text-align: center;
	display: block;
	border-radius: 8px;
	text-decoration: none;
	width: 90%;
	max-width: 350px;
	margin: 40px auto 0 auto;
	transition: .3s;
}
a.link-orange {
	border: 3px solid #F39800;
	color: #F39800;
}
a.link-blue {
	border: 3px solid #82C1D7;
	color: #82C1D7;
}
a.link-green {
	border: 3px solid #B4CC31;
	color: #B4CC31;
}
a.link-orange:hover,
a.link-blue:hover,
a.link-green:hover {
	color: #FFF;
	transform: translateY(3px);
}
a.link-orange:hover { background: #F39800; }
a.link-blue:hover { background: #82C1D7; }
a.link-green:hover { background: #B4CC31; }
table.nomal { margin: 0 auto; }
table.nomal th,
table.nomal td {
	border: 1px solid #CCC;
	padding: 20px;
	background: #FFF;
}
table.nomal th {
	text-align: center;
	font-weight: normal;
}
table.nomal td ul li { margin-left: 20px; }
.back-gray {
	background: #F7F6F5;
	padding: 30px 0;
}
ul.staff {
	text-align: center;
	font-size: 0;
	list-style: none;
}
ul.staff li {
	display: inline-block;
	margin: 15px;
}
ul.staff li span { display: block; }
ul.staff li { transition: .3s; }
ul.staff li:hover {
	opacity: 0.6;
	transform: translateY(3px);
}
#staff01,#staff02,#staff03,#staff04,
#program01,#program02,#program03,#program04,#program05,#program06,#program07,#program08 { display: none; }/*エリアをはじめは非表示*/
.modaal-container {	max-width: 600px; }/*モーダルの横幅*/
/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after,.modaal-close:before { background:#ccc; }
.modaal-close:focus:after,.modaal-close:focus:before,.modaal-close:hover:after,.modaal-close:hover:before { background:#666; }
.staff-photo {
	display: inline-block;
	width: 32%;
}
.staff-photo img {
	width: 100%;
	height: auto;
}
.staff-text {
	display: inline-block;
	width: 67%;
	vertical-align: top;
	box-sizing: border-box;
	padding-left: 40px;
}
.staff-date dt {
	background: #EEE;
	padding: 5px 10px;
	display: inline-block;
}
.facility-left,.facility-right { position: relative; }
.facility-right { 
	text-align: right;
	margin-top: 40px;
}
.facility-left dl,
.facility-right dl {
	background: #F7F6F5;
	padding: 20px;
	position: absolute;
	bottom: 40px;
}
.facility-left dl {	left: 500px; }
.facility-right dl {
	width: 50%; 
	left: 20px;
	text-align: left;
}
.merit,.demerit { margin: 20px; }
.merit div,.demerit div {
	background: #FFF;
	border-radius: 0 0 10px 10px;
	box-sizing: border-box;
}
.merit div { border: 5px solid #F39800; }
.demerit div { border: 5px solid #82C1D7; }
.merit div,.demerit div { border-top: none; }
.merit h3,.demerit h3 {
	color: #FFF;
	font-weight: bold;
	text-align: center;
	padding: 5px 10px;
	border-radius: 10px 10px 0 0;
}
.merit h3 {	background: #F39800; }
.demerit h3 { background: #82C1D7; }
.merit ul,.demerit ul {
	padding: 20px;
	list-style: none;
	text-align: left;
	line-height: 2.2;
}
.merit ul li {
	padding-left: 30px;
	background: url("img/img_maru.png")left 0px top 7px no-repeat;
	background-size: 20px auto;
}
.demerit ul li {
	padding-left: 35px;
	background: url("img/img_batsu.png")left 0px top 4px no-repeat;
	background-size: 30px auto;
}
.flow,.flow-last {
	border: 1px solid #CCC;
	border-radius: 10px;
	background: #FFF;
	padding: 20px 20px 20px 40px;
	width: 100%;
	max-width: 900px;
	margin: 20px auto;
	position: relative;
	margin-bottom: 100px;
}
.flow:before,.flow-last:before {
	counter-increment: number 1;
	content: "0"counter(number) ;
	background: #B4CC31;
	color: #FFF;
	padding: 10px 0;
	font-size: 2.4rem;
	font-weight: bold;
	text-align: center;
	border-radius: 50px;
	width: 60px;
	height: 60px;
	display: block;
	position: absolute;
	top: calc(50% - 30px);
	left: -30px;
}
.flow:after {
	display: block;
	content: "";
	background: url("img/img_arrow.png") no-repeat;
	background-size: contain;
	width: 35px;
	height: 63px;
	position: absolute;
	left: -17px;
	bottom: -83px;
}
ul.program {
	text-align: center;
	font-size: 0;
}
ul.program li {
	border-radius: 10px;
	background: #FFF;
	padding: 20px;
	margin: 10px;
	color: #FFF;
	display: inline-block;
	width: 270px;
	height: 250px;
	box-shadow: 0px 0px 10px 0px #666;
	transition: .3s;
	position: relative;
}
ul.program li:hover { box-shadow: none; }
ul.program li p {
	padding: 5px 20px;
	border-radius: 5px;
	margin-bottom: 40px;
}
ul.program li img {
	width: auto;
	height: 90px;
}
ul.program li a {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
ul.contact {
	text-align: center;
	font-size: 0;
}
ul.contact li {
	display: inline-block;
	margin: 50px 10px;
	width: 366px;
	vertical-align: top;
}
ul.contact li h3 {
	border-radius: 10px 10px 0 0;
	padding: 15px 20px;
	color: #FFF;
}
ul.contact li div {
	border-radius: 0 0 10px 10px;
	padding: 20px;
	height: 200px;
	background: #FFF;
}
ul.contact li div p { text-align: left;}
ul.contact li div img {
	width: 100%;
	height: auto;
}
ul.contact li h3 { position: relative; }
ul.contact li h3 span {
	z-index: 2;
	position: relative;
}
ul.contact li.tel h3 { background: #F39800; }
ul.contact li h3:before {
	display: block;
	content: "";
	width: 100px;
	height: 100px;
	border-radius: 50px;
	position: absolute;
	top: -50px;
	left: calc(50% - 50px);
}
ul.contact li.tel h3:before { background: #F39800; }
ul.contact li.mail h3:before { background: #82C1D7; }
ul.contact li.line h3:before { background: #B4CC31; }
ul.contact li h3:after {
	display: block;
	content: "";
	position: absolute;
}
ul.contact li.tel h3:after {
	background: url("img/img_smartphone.png") no-repeat;
	background-size: contain;
	width: 48px;
	height: 37px;
	top: -28.5px;
	left: calc(50% - 24px);
}
ul.contact li.mail h3:after {
	background: url("img/img_mail.png") no-repeat;
	background-size: contain;
	width: 39px;
	height: 28px;
	top: -24px;
	left: calc(50% - 19px);
}
ul.contact li.line h3:after {
	background: url("img/img_line.png") no-repeat;
	background-size: contain;
	width: 45px;
	height: 37px;
	top: -27px;
	left: calc(50% - 22px);
}
ul.contact li.tel div { border: 3px solid #F39800; }
ul.contact li.mail h3 { background: #82C1D7; }
ul.contact li.mail div { border: 3px solid #82C1D7; }
ul.contact li.line h3 { background: #B4CC31; }
ul.contact li.line div { border: 3px solid #B4CC31; }
a.blue-btn {
	background: #82C1D7;
	color: #FFF;
	padding: 20px;
	display: block;
	text-decoration: none;
	border-radius: 10px;
	box-shadow: 3px 3px 0px 0px #949798;
	transition: .3s;
	position: relative;
}
a.blue-btn:before,
a.blue-btn:after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 20px;
	margin: auto;
	content: "";
	vertical-align: middle;
}
a.blue-btn:before {
	width: 25px;
	height: 25px;
	border-radius: 50%;
	background: #FFF;
}
a.blue-btn:after {
	right: 19px;
	box-sizing: border-box;
	width: 16px;
	height: 13px;
	border: 7px solid transparent;
	border-left: 11px solid #82C1D7;
	transition: .3s;
}
a.blue-btn:hover {
	box-shadow: none;
	transform: translateY(3px);
	background: #A1D6E8;
}
a.blue-btn:hover:after { border-left: 11px solid #A1D6E8; }
div#sitemap ul {
	width: 100%;
	max-width: 600px;
	text-align: left;
	vertical-align: top;
	margin: 0 auto;
	list-style: none;
	line-height: 2.5;
}
div#sitemap ul li a {
	color: #7C7C7C;
	text-decoration: none;
	transition: .3s;
	display: block;
	text-indent: -2em;
	padding-left: 2em;
}
div#sitemap ul li.child a:before {
	content: "―";
	margin: 0 0.5em 0 1em;
}
div#sitemap ul li a:hover { transform: translateX(3px); }
.scroll table { width:1160px; }
.scroll{
	overflow: auto;
	white-space: nowrap;
}
.scroll::-webkit-scrollbar { height: 5px; }
.scroll::-webkit-scrollbar-track { background: #F1F1F1; }
.scroll::-webkit-scrollbar-thumb { background: #BCBCBC; }
table.schedule { margin: 20px auto; }
table.schedule th,
table.schedule td {
	text-align: center;
	font-weight: bold;
	border: 1px solid #CCC;
	width: 16.6%;
}
table.schedule th {
	background: #EEE;
	padding: 10px 20px;
}
table.schedule td {
	background:  #FFF;
	padding: 20px;
}
ul.access {
	text-align: center;
	font-size: 0;
}
ul.access li {
	display: inline-block;
	width: 100%;
	max-width: 497px;
	box-sizing: border-box;
	padding: 20px 30px;
	font-size: 1.6rem;
}
ul.access li img {
	width: 100%;
	height: auto;
}

/*-----------------------------------------
フッター
-----------------------------------------*/
#footer-info {
	background: #F7F6F5;
	text-align: center;
	padding: 10px 20px;
}
#footer-logo {
	display: inline-block;
	vertical-align: middle;
	margin: 10px 20px 10px 0;
}
#footer-access {
	display: inline-block;
	text-align: left;
	vertical-align: middle;
	margin: 10px 20px 10px 0;
	line-height: 1.4;
}
#footer-info a {
	display: inline-block;
	border: 3px solid #7C7C7C;
	padding: 15px 60px;
	text-decoration: none;
	background: #FFF;
	color: #7C7C7C;
	vertical-align: middle;
	transition: .3s;
	margin: 10px 0;
}
#footer-info a:hover {
	background: #7C7C7C;
	color: #FFF;
}
#footer-link {
	background: #7C7C7C;
	padding: 30px 20px;
	text-align: center;
}
#footer-link ul {
	display: inline-block;
	text-align: left;
	vertical-align: top;
	color: #FFF;
	margin: 0 15px;
	font-size: 1.4rem;
	list-style: none;
	line-height: 2.5;
}
#footer-link ul li a {
	color: #FFF;
	text-decoration: none;
	transition: .3s;
	display: block;
}
#footer-link ul li.child a:before {
	content: "―";
	margin: 0 0.5em 0 1em;
}
#footer-link ul li a:hover { transform: translateX(3px); }
footer {
	background: #FFF;
	font-size: 1.4rem;
	padding: 10px 0;
	box-sizing: border-box;
	text-align: center;
	position: relative;
}
#page-top {
	width: 50px;
	height: 50px;
	position: fixed;
	bottom: 20px;
	right: 20px;
	cursor: pointer;
}
#page-top a {
	display: block;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}
#page-top a:before {
	width: 50px;
	height: 50px;
	background: #FFF;
	content: '';
	position: absolute;
	border-radius: 50px;
	top: 0;
	left: 0;
	transition: .3s all;
}
#page-top a:after {
	width: 20px;
	height: 20px;
	position: absolute;
	content: '';
	border-top: solid 4px #7C7C7C;
	border-right: solid 4px #7C7C7C;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	top: 38%;
	left: 15px;
}
#page-top a:hover:before { background: #7C7C7C;	}
#page-top a:hover:after {
	border-top: solid 4px #FFF;
	border-right: solid 4px #FFF;
}

/*-----------------------------------------
Contact Form7
-----------------------------------------*/
.contact7 {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
	box-sizing: border-box;
}
.contact7 table {
	width: 100%;
}
.contact7 table th,.contact7 table td {
	border: 1px solid #CCC;
	padding: 20px;
	box-sizing: border-box;
	background: #FFF;
}
.contact7 table td input,.contact7 table td textarea,.contact7 table td select {
	width: 100%;
	border: 1px solid #CCC;
	padding: 5px;
}
.contact7 .must,
.contact7 .optional {
	color: #FFF;
	border-radius: 3px;
	font-size: 10px;
	margin-right: 10px;
	padding: 5px 10px;
	letter-spacing: 2px;
}
.contact7 .must { background: #FF1A00; }
.contact7 .optional { background: #999; }
.btn_contact7 {
	margin: 20px auto;
	max-width: 300px;
}
.btn_contact7 input {
	width: 100%;
	padding: 20px;
	color: #F39800;
	font-size: 2rem;
	font-weight: bold;
	border: 2px solid #F39800;
	border-radius: 5px;
	transition: 0.3s;
	background: #FFF;
}
.btn_contact7 input:hover {
	background-color: #F39800;
	color: #FFF; 
}
.contact7 input[type=checkbox] {
	transform: scale(2);
	margin: 0 10px 0 0;
}
iframe#privacypage {
	width: 100%;
	max-width: 600px;
	height: 250px;
	margin: 20px auto;
	display: block;
	background: #FFF;
}

/*-----------------------------------------
レスポンシブ
-----------------------------------------*/
@media screen and (max-width : 600px) {
	.fs2 { font-size: 1.7rem; }
	.fs3 { font-size: 2.2rem; }
	.fs4 { font-size: 2.5rem; }
	.forpc { display: none !important;}
	.forsp { display: block; }
	#mainimg { margin-top: 75px; }
	#news { margin: -20px auto 20px auto; }
	.left-block,.right-block,a.link-orange, a.link-blue, a.link-green,.staff-text,.staff-date dt,.facility-left img,.facility-right img,.facility-left dl,.facility-right dl,ul.contact li,ul.program li { width: 100%; }
	.left-block { padding-right: 0; }
	.right-block { padding-left: 0; }
	h2.arrow-orange, h2.arrow-blue, h2.arrow-green { width: 80%; }
	a.link-orange, a.link-blue, a.link-green { margin: 10px auto; }
	h1.main-title:before, h1.main-title:after {
		width: 30px;
		height: 4px;
	}
	h1.main-title:before { margin-right: 10px; }
	h1.main-title:after { margin-left: 10px; }
	#news ul li,.staff-photo,.staff-text,.staff-text p span { display: block; }
	.staff-photo {
		width: 60%;
		margin: 0 auto 10px auto;
	}
	.staff-text { padding-left: 0; }
	.staff-date dt,#footer-logo,#footer-access { text-align: center; }
	.staff-text p span { margin-left: 0 !important; }
	.facility-left img,.facility-right img,ul.contact li div  { height: auto; }
	.facility-left dl,.facility-right dl {
		position: static;
		margin-top: 10px;
	}
	.merit, .demerit { margin: 10px 0; }
	.merit div, .demerit div { height: auto; }
	.flow, .flow-last {
		padding: 40px 20px 20px 20px;
		margin-bottom: 120px;
	}
	.flow:before, .flow-last:before {
		top: -30px;
		left: calc(50% - 30px);
	}
	.flow:after { left: calc(50% - 17px); }
	#footer-logo,#footer-access,ul.program li { margin: 10px 0;}
	ul.contact li { margin: 50px 0; }
	.contact7 table th,.contact7 table td { display: block; }
	.contact7 table th {
		border-bottom: none;
		padding-bottom: 0;
	}
	.contact7 table td { border-top: none; }
}
@media (min-width: 751px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}