@import url('https://fonts.googleapis.com/css?family=Barlow+Semi+Condensed:500,600,700');
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans:400,600');
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,600');

/* CSS Document */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-style: normal;
}

select {
	margin: 0 0 0 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-size: 100%;
	font-weight: normal;
	font-style: normal;
}

p,
address,
blockquote,
pre,
div,
abbr,
acronym,
dfn,
cite,
q,
code,
kbd,
samp,
var,
dl,
ol,
ul,
caption,
th {
	font-weight: normal;
	font-style: normal;
}

ul,
li,
ol {
	list-style: none;
}

a {
	margin: 0;
	padding: 0;
	border: 0;
	background: transparent;
	vertical-align: baseline;
	font-size: 100%;
}

html,
body,
form,
fieldset,
p,
div,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ul,
dl,
dt,
dd {
	-webkit-text-size-adjust: 100%;
}
iframe{
	overflow: hidden;
}
img {
	width: 100%;
	height: auto;
	vertical-align: bottom;
}





.wrapper{
	position: relative;
	height: auto;

}

::selection {
	background: #EEE; /*背景色*/

}
::-moz-selection {
	background: #EEE; /*背景色*/
	
}
a{
	color: #444;
	text-decoration: none;
}
a:focus{
	outline:none;
}

html {
	font-size: 62.5%;
	height: 100%;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 100;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 200;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 300;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Medium");
	font-weight: 400;
}
@font-face {
	font-family: "Yu Gothic";
	src: local("Yu Gothic Bold");
	font-weight: bold;
}

body {
	line-height: 1.9;
	font-family:  "Yu Gothic", YuGothic, -apple-system, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; 
	font-weight:normal;
	font-size: 1.7rem;
	background: #FFF ;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-feature-settings: "palt";
	-webkit-text-size-adjust: 100%;
	color: #444;
	box-sizing: border-box;
	height: 100%;
	min-width:1040px;

}
@media only screen and (max-width: 768px) {
	body {
	line-height: 1.7;
	font-size: 1.5rem;
	min-width:auto;
	}
}

/*
common
_________________________________________________________*/

.link__basic{
	font-weight: bold;
	margin-top: 2rem;
}
.link__basic a{
	display: block;
	width: 100%;
	background: #fde01a url(../img/arrow.png) no-repeat 96% center;
	background-size: 14px;
	font-size: 1.6rem;
	line-height:1;
	padding: 1.5rem 0;
	border-radius: 4rem;
	text-align: center;
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.link__basic a:hover{
	opacity: 0.6;
}
@media only screen and (max-width: 768px) {
	.link__basic a{
	font-size: 1.4rem;
	padding: 1.8rem 0;
}
	}

#crumb ul,#crumb-w ul {
	width: 100%;
	box-sizing: border-box;
	padding: 2rem 2rem 1.5rem 2rem ;
	margin: 0 auto;
	overflow: hidden;
}
#crumb li {
	float: left;
	font-size: 1.4rem;
	display: inline-block;
	color: #FFF;
}
#crumb-w li {
	float: left;
	font-size: 1.4rem;
	display: inline-block;
	color: #444;
}
#crumb li a {
	text-decoration: underline;
	color: #FFF;
}
#crumb-w li a {
	text-decoration: underline;
	color: #444;
}
#crumb li a:hover,#crumb-w li a:hover {
	text-decoration: underline;
}
.pc-only{
	display: block;
}
.sp-only{
	display: none;
}

@media only screen and (max-width: 768px) {
#crumb ul,#crumb-w ul {
	width:100%;
	margin: 0 auto;
	overflow: hidden;
	padding: 1rem;
}
#crumb li,#crumb-w li {
	float: left;
	font-size: 1.2rem;
	display: inline-block;
}
#crumb li a:hover,#crumb-w li a:hover {
	text-decoration: underline;
}
.sp-only{
		display: block;
}
.pc-only{
		display: none;
	}
}

/*
header
_________________________________________________________*/
.header{
	width: 100%;
	/*min-width: 1200px;*/
	position: fixed;
	top: 0;
	left:0;
	background: #FFF;
	z-index: 100;
	height: 140px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
}

.header__contents{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	/*flex-wrap: wrap;*/
	justify-content: space-between;
  	padding: 1.5rem 2rem;
}
.header__logo{
	width: 30%;
	padding: 0;
	box-sizing: border-box;
	min-width: 340px;
}
.header__logo p{
	font-size: 1.4rem;
	font-weight: bold;
	padding-bottom: .5rem;
}
.header__logo h1{
	width: 240px;
}
.header__nav{
	width: 75%;
	text-align: right;
}
.header__nav-menu ul{
	width: 100%;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	flex-wrap: wrap;
  	justify-content: flex-end;
  	margin-top: 1.3rem;
}
.header__nav-menu li{
	font-weight: bold;
	font-size: 1.7rem;
	padding: 0 1.2rem;
	letter-spacing: .02rem;
}
.header__nav-menu li a{opacity: 1;
	-webkit-transition: 0.3s;
	transition: 0.3s;}
.header__nav-menu li a:hover{
	opacity: 0.6;
}
.header__nav-sub{
	width: 100%;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	flex-wrap: wrap;
  	justify-content: flex-end;

}
.header__nav-list ul{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	flex-wrap: wrap;
  	justify-content: flex-start;
  	margin-top: 3.5rem;
}
.header__nav-list li a{
	background: url(../img/arrow_header.png) no-repeat left center;
	background-size: 4px;
	padding-left: 1rem;
	padding: 0 1rem;
	font-size: 1.3rem;
	opacity: 1;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
.header__nav-list li a:hover{
	opacity: 0.6;
}
.header__nav-tel{
	margin-top: .5rem;
	padding-left: 1.5rem;
}
.header__nav-tel dt{
	font-size: 3rem;
	font-weight: bold;
	color: #00bdaa;
	line-height: 1;
	letter-spacing: -.04rem;
}
.header__nav-tel dd{
	font-size: 1.3rem;
	text-align: left;
	padding-top: .5rem;
}
.header__nav-tel dd span{
	background: #EEE;
	display: inline-block;
	padding: .2rem .5rem;
	line-height: 1;
	font-size: 1.2rem;
	margin-right: .5rem;
}
.header__nav-contact{
	width: 200px;
	padding-left: 1.5rem;
	padding-right: 1.5rem;
}
.header__nav-contact .link__basic{
	margin: 1.5rem 0 0 0;
}
.header__nav-contact .link__basic a{
	background: #fde01a url(../img/icon_mail.png) no-repeat 10% center;
	background-size: 16px;
	padding-left: 1rem;
	
}
@media only screen and (max-width: 1420px) {
.header__nav {
	width: 70%;
}
.header__logo p{
	font-size: 1.1rem;
	line-height: 1.2;
	margin-bottom: 0.5rem;
}
}
@media only screen and (max-width: 1380px) {
.header__logo {
	width: 25%;
}
.header__nav {
	width: 75%;
}
.header__logo p{
	font-size: 1.1rem;
	line-height: 1.2;
	margin-bottom: 0.5rem;
}
.header__nav-menu a{
	font-size: 1.6rem;
}
}
@media only screen and (max-width: 1290px) {
.header__contents {
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}
.header__logo {
	width: 20%;
	min-width: auto;
}
.header__nav {
	width: 80%;
}
.header__logo .header__logo-text {
	display: block;
}
.header__nav-menu a{
	font-size: 1.5rem;
}
}
@media only screen and (max-width: 1120px) {
.header {
	min-width: 1000px;
}
.header__logo {
	width: 20%;
}
.header__logo h1 {
	width: 100%;
}
.header__nav-contact {
	width: 130px;
}
.header__nav-contact a {
	font-size: 1.4rem;
}
.header__nav {
	width: 80%;
}
.header__nav-tel dt {
	font-size: 2.6rem;
}
.header__nav-menu li {
	padding: 0 0.8rem;
}
}
@media only screen and (max-width: 768px) {
.header{
	width: 100%;
	height: 60px;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
}
.header__contents{
	display: block;
  	padding: 0 0 0 1rem;
}
.header__logo{
	width: 100%;
	padding: 0;
	box-sizing: border-box;
}
.header__logo p{
	font-size: .8rem;
	font-weight: normal;
	padding-bottom: .2rem;
}
.header__logo h1{
	width: 100px;
}
}

/*
footer
_________________________________________________________*/
#footer{
	width: 100%;
	border-top:1px solid #ddd;
}
.footer__contents{
	width: 1000px;
	margin: 0 auto;
	overflow: hidden;
	padding: 5rem 0 4rem 0;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	flex-wrap: wrap;
}
#footer .footer__address{
	width:30%;
	order:1;
}
#footer .footer__logo{
	width: 240px;
}

#footer .footer__nav{
	overflow: hidden;
	width: 65%;
	order:2;
	padding-left: 5%;
}
#footer .footer__address-text{
	font-size: 1.3rem;
	margin-top: 15px;
}
#footer .footer__copy{
	padding: 0 0 2rem 0;
	font-size: 1.1rem;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 400;
	letter-spacing: 0.05em;
	text-align: center;
}
#footer ul{
	width: 210px;
	float: left;
}
#footer li{
	font-size: 1.4rem;
	padding: 0 0 18px 0;
}
#footer .footer__nav-sub a{
	font-weight: normal;
	background: none;
	background: url(../img/line_footer.png) no-repeat left center;
	background-size: 12px;
	font-size: 1.3rem;
	color: #333
}
#footer li a{
	display: block;
	padding: 0 0 0 20px;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	line-height: 1;
}
#footer li a:hover{
	opacity: 0.5;
}
#footer .link__basic{
	width: 240px;
}
#footer .link__basic a{
	background: #fde01a url(../img/icon_mail.png) no-repeat 8% center;
	background-size: 16px;
}
@media only screen and (max-width: 768px) {
.footer__contents{
	width: 100%;
	margin: 0 auto;
	overflow: hidden;
	padding: 0 0 0 0;
	display: block;

}
#footer .footer__address{
	width:100%;
	text-align: center;
	order:1;
	padding: 1.5rem 0 2rem 0;
	background: #FFF;
	margin: 0;
}
#footer .footer__logo{
	width: 50%;
	margin-left: auto;
	margin-right: auto;
}

#footer .footer__nav{
	overflow: hidden;
	width: 100%;	
	display: block;
  	padding: 0 0;
  	margin: 0;
}

#footer .footer__address-text{
	font-size: 1.3rem;
	margin: 1rem 0 0 0;

}
#footer .footer__copy{
	padding: 0 0 2rem 0;
	margin: 0;

	font-size: 1rem;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 400;
	text-align: center;
}
#footer ul{
	width: 100%;
	float: none;
	
}
#footer ul:first-child{
	border-top: 5px solid #ccc;
}
#footer ul:last-child{
	border-bottom: 5px solid #ccc;
}
#footer li{
	font-size: 1.4rem;
	padding:0;
	margin: 0;
}
#footer .footer__nav-sub{
	display: none;
}
#footer li a{
	display: block;
	padding:1.2rem 2rem 1.2rem 1.5rem;
	margin: 0;
	border-bottom: 1px dotted #ccc;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	line-height: 1;
	background: #FFF url(../img/arrow.png) no-repeat 96% center;
	background-size: 10px;
		
}
#footer li a:hover{
	opacity: 0.5;
}
#footer .link__basic{
	width: 94%;
	margin-left: auto;
	margin-right: auto;
}
}
/*
link
_________________________________________________________*/

.link-2 ul{
	width: 1000px;
	margin: 6rem auto 3rem auto;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	flex-wrap: wrap;
}
.link-2 li{
	width: 48%;
	position: relative;
}
.link-2 li:last-child{
	margin-left: 4%;
}
.link-2 li a dl,.link-2__new dl{
	position: relative;
}
.link-2 li a dt,.link-2__new dt{
	position: relative;
	z-index: 1;
}
.link-2 li a dd{
	line-height: 1;
	box-sizing: border-box;
	padding: 2rem 0 2rem 3rem;
	font-weight: bold;
	background: #FFF url(../img/arrow.png) no-repeat 95% center;
	background-size: 14px;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	border-top-left-radius: 1rem;
	letter-spacing: .05rem;
	position: relative;
	z-index: 2;
	margin-top: -3rem;
	width: 86%;
	margin-left: 14%;
}
.link-2__new dd{
	line-height: 1;
	box-sizing: border-box;
	padding: 2rem 0 2rem 3rem;
	font-weight: bold;
	background: #FFF;
	border-top-left-radius: 1rem;
	letter-spacing: .05rem;
	position: relative;
	z-index: 2;
	margin-top: -3rem;
	width: 86%;
	margin-left: 14%;
}
.link-2 li a dd p,.link-2__new dd p{
	font-weight: bold;
	font-size: 2.3rem;
	line-height: 1.3;

}
.link-2 li a dd p span,.link-2__new dd p span{
	display: block;
	font-family: 'Josefin Sans', sans-serif;
	color: #00bdaa;
	font-size: 1.6rem;
	font-weight: 600;
}
.link-2__new dd ul{
	width: 100%;
	margin: 1.5rem 0 0 0!important;
	padding: 0!important;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	flex-wrap: wrap;

}
.link-2__new dd ul li{
	width: 48%;
	

}
.link-2__new dd ul li a{
	display: block;
	border:1px solid #00abeb;
}
.link-2 li a{
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.link-2 li a:hover{
	opacity: 0.6;
}
@media only screen and (max-width: 768px) {
	.link-2 ul{
	width: 94%;
	margin: 3rem auto 0rem auto;
	display: block;
}
.link-2 li{
	width: 100%;
	position: relative;
}
.link-2 li:last-child{
	margin-left: 0;
}
.link-2 li a dl,.link-2__new dl{
	position: relative;
}
.link-2 li a dt,.link-2__new t{
	position: relative;
	z-index: 1;
}
.link-2 li a dd{
	padding: 1.5rem 0 2.5rem 2rem;
	font-weight: bold;
	background: #FFF url(../img/arrow.png) no-repeat 95% center;
	background-size: 14px;
	margin-top: -3rem;
	width: 96%;
	margin-left: 4%;
}
.link-2__new dd{
	padding: 1.5rem 0 2.5rem 2rem;
	font-weight: bold;
	margin-top: -3rem;
	width: 96%;
	margin-left: 4%;
}
.link-2 li a dd p,.link-2__new dd p{
	font-size: 1.6rem;
	line-height: 1.3;
}
.link-2 li a dd p span,.link-2__new dd p span{
	display: block;
	font-family: 'Josefin Sans', sans-serif;
	color: #00bdaa;
	font-size: 1.3rem;
	font-weight: 600;
}
.link-2__new dd ul{
	width: 100%;
	margin: .5rem 0 0 0!important;
	padding: 0!important;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	flex-wrap: wrap;

}
.link-2__new dd ul li{
	width: 48%;
	margin: 1%;
	

}
	}

.link-3 ul{
	width: 1000px;
	margin: 3rem auto 0 auto;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	flex-wrap: wrap;
  	padding-bottom: 6rem;
}
.link-3 li{
	width: 32%;
	padding: 1rem 0;
}
.link-3 li:nth-child(3n+2){
	padding: 1rem 2rem;
}
.link-3 li a{
	display: block;
	width: 100%;
}
.link-3 li a figure{
	width: 100%;
	position: relative;
}
.link-3 li a img{
	-webkit-transition: 0.2s;
	transition: 0.2s;
}
.link-3 a p{
	line-height: 1;
	padding: 1.2rem 0 1.4rem 1.8rem;
	font-weight: bold;
	background: #FFF url(../img/arrow.png) no-repeat 95% center;
	background-size: 14px;
	-webkit-transition: 0.2s;
	transition: 0.2s;
	border-bottom-left-radius: 1rem;
	border-bottom-right-radius: 1rem;
	letter-spacing: .05rem;
}
.link-3 a:hover img{
	opacity: 0.6;
}

@media only screen and (max-width: 768px) {
.link-3 ul{
	width: auto;
	margin: 1rem .5rem 0 .5rem;
  	padding-bottom: 4rem;
}
.link-3 li{
	width: 50%;
	padding: 0 ;
	box-sizing: border-box;
	padding: .5rem;
}
.link-3 li:nth-child(3n+2){
	padding: .5rem;
}
.link-3 li:nth-child(3n+2){
	padding: .5rem;
}
.link-3 h2{
	text-align: left;
	letter-spacing: .05rem;
	color: #00bdaa;
	font-size: 1.6rem;
	padding: 0 1.5rem;
}
.link-3 h2 br{
	display: none;
}
.link-3 a p{
	padding: 1rem 0 1rem 1rem;
	font-size: 1.4rem;
	font-weight: normal;
	background: #FFF url(../img/arrow.png) no-repeat 96% center;
	background-size: 10px;
}
}
/*
main
_________________________________________________________*/
.main__top{
	height: auto;
	display: block;
	
	margin-top: 140px;
}
.main{
	width: 100%;
	min-width: 1200px;
	margin-top: 140px;
}
.main:after{
	content: "";
	width: 100%;
	display: block;
	background: url(../img/main_bottom.png) no-repeat center bottom;
	background-size: 100%;
	height: 4rem;
	margin-top: -4rem;
}
.main__contents{
	width: 1000px;
	height: 470px;
	margin: 0 auto;
	padding: 0 0 9rem 0; 
	padding-right: 520px;
	box-sizing: border-box;
	color: #FFF;
}
.main__contents h2{
	font-size: 4rem;
	font-weight: bold;
	line-height: 1;
}
.main__contents h3{
	font-family: 'Josefin Sans', sans-serif;
	color: #fde01a;
	font-size: 1.8rem;
	font-weight: 600;
	margin-top: 1rem;
}
.main__contents h4{
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.5;
	margin-top: 3rem;
}
.main__facility h4,.main__disabilities h4{
font-size: 2.8rem;
	font-weight: bold;
	line-height: 1.4;
	margin-top: 3rem;
}
.main__contents h4 span,.heading h4 span{
	color: #fde01a;
}
.main__contents p{
	margin-top: 2.5rem;

}
.main__disabilities p{
	line-height: 1.75;
}
@media only screen and (max-width: 768px) {
.main__top{	
	margin-top: 60px;
}
.main{
	width: 100%;
	min-width: 100%;
	margin-top: 60px;
}
.main:after{
	content: "";
	background: no-repeat;
	width: 100%;
	display: block;
	background: none;
	height: 0;
	margin-top: 0rem;
}
.main__contents{
	width: 100%;
	height: auto;
	box-sizing: border-box;
	padding: 2rem 1.5rem 2.5rem 1.5rem ; 
	background: #02c1ae;
}
.main__contents h2{
	font-size: 2.2rem;
	text-align: center;
}
.main__contents h3{
	text-align: center;
	font-size: 1.5rem;
margin-top: 0;
}
.main__contents h4{
	font-size: 1.8rem;
	line-height: 1.6;
	margin-top: 2rem;
	letter-spacing: .01rem;
	
	padding: 0 1rem;
}

.main__contents p{
	margin-top: 1.5rem;
	font-size: 1.4rem;
	padding: 0 1rem;
	line-height: 1.7;
}
.main__disabilities p{
	line-height: 1.7;
}
	}

/*
見出し
_________________________________________________________*/

.heading{
	padding-bottom: 0;
	margin-top: 140px;
}
.heading h2{
	font-size: 3.4rem;
	font-weight: bold;
	line-height: 1;
}
.heading h2,.heading h3,.heading h4{
	text-align: center;
}
.heading h3{
	font-family: 'Josefin Sans', sans-serif;
	color: #00bdaa;
	font-size: 1.8rem;
	font-weight: 600;
}
.heading h3.jpn{
	color: #00bdaa;
	font-size: 1.8rem;
	font-weight: 600;
	font-family:  "Yu Gothic", YuGothic, -apple-system, "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; 
}
.heading h4{
	font-size: 3rem;
	font-weight: bold;
	line-height: 1.5;
	margin-top: 3rem;
}
.heading .heading__text{
	width:1000px;
	margin: 2rem auto 0 auto;
	text-align: center;
}
.heading-sub{
	margin: 3rem auto 2rem auto;
	font-weight: bold;
	line-height: 1;
	padding:.5rem 1.5rem;
	letter-spacing: .03rem;
	font-size: 2.4rem;
	border-left:4px solid #04beab;
}
@media only screen and (max-width: 768px) {
.heading{
	padding-bottom: 0;
	margin-top: 60px;
}
.heading h2{
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1;
}
.heading h2,.heading h3,.heading h4{
	text-align: center;
}

.heading h3{
	font-size: 1.5rem;
	margin-top: 1.5rem;
}
.heading h3.jpn{
	font-size: 1.5rem;
}
.heading h4{
	font-size: 3rem;
}
.heading .heading__text{
	width:100%;
	margin: 2rem auto 0 auto;
	text-align: center;
}
.heading-sub{
	padding:0 0 0 1rem;
	margin: 2.5rem 0 1rem 0;
	letter-spacing: .03rem;
	font-size: 1.6rem;
	line-height: 1.4;
	border-left:4px solid #04beab;
	
}
}

