@charset "utf-8";
/* CSS Document */
header {
	background: url("../img/kv-illust.svg"), url("../img/kv.jpg");
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size:cover;
	max-width: 100%;
	min-height: 700px;
	margin: 0 auto;
}


#header{
	position: fixed;/*fixedを設定して固定*/
	height: auto;/*高さ指定*/
	width:100%;/*横幅指定*/
	z-index: 999;/*最前面へ*/
	/*以下はレイアウトのためのCSS*/
	display: flex;
	justify-content: space-between;
	text-align: center;
	margin: 0 auto;
	padding:15px 30px;
	background-color:rgb(255,255,255,0.6) 
}

.logo {
	text-align: left;
}

.logo img{
	width: 200px;
}
section{
	padding:100px 0;
	max-width: 1080px;
	margin: 0 auto;
	text-align: center;
}

section#area-1{
	padding:100px 0 30px 0;
}

/*==ふわっと出現させるためのCSS*/

/*　上に上がる動き　*/

#header.UpMove{
	position: fixed;
	width:100%;
	animation: UpAnime 1.0s forwards;
}

@keyframes UpAnime{
	from {
	opacity: 1;
	transform: translateY(0);
	}
	to {
	opacity: 0;
	transform: translateY(-100px);
	}
}

/*　下に下がる動き　*/

#header.DownMove{
	position: fixed;
	width:100%;
	animation: DownAnime 1.0s forwards;
}
@keyframes DownAnime{
	from {
	opacity: 0;
	transform: translateY(-100px);
	}
	to {
	opacity: 1;
	transform: translateY(0);
	}
}

nav ul{
	list-style: none;
	display: flex;
	justify-content: center;
}

nav ul li{
	padding-left:20px;
	padding-top:10px; 
}

nav ul li a{
	display: block;
	text-decoration: none;
	padding:0 0 5px 0 ;
	transition:all 0.3s;
	position: relative;
	font-size: 1.0rem;
	font-weight: bold;
}

.btn-staff {
	background-color: #ea5902;
	padding: 10px 10px 5px 10px;
	margin-left: 20px;
	border-radius: 5px;
	color: #fff;
}

.btn-staff a:hover {
	color: #eec700;
}

nav ul li.current a,
nav ul li a:hover,
nav ul li a:active{
	color:#ea5902; 
}

nav ul li a::after {
	content: '';
	/*絶対配置で線の位置を決める*/
	position: absolute;
	bottom: 0;
	left: 0;
	/*線の形状*/
	width: 100%;
	height: 2px;
	background:#ea5902;
	/*アニメーションの指定*/
	transition: all .5s;
	transform: scale(0, 1);/*X方向0、Y方向1*/
	transform-origin: left top;/*左上基点*/
}

/*現在地とhoverの設定*/
nav ul li.current a::after,
nav ul li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

#copy {
	max-width: 1140px;
	padding: 150px 30px 0 30px;
	margin: 0 auto;
}

.tit-orange {
	display: inline-block;
	border-radius: 100px;
	padding:10px 20px;
	background:linear-gradient(270deg, #ee7e00, #ea5902);
	color: #fff;
	font-weight: bold;
	margin-bottom: 10px;
	max-width: 90%;
}

.tit-orange02 {
	display: inline-block;
	border-radius: 100px;
	padding:10px 20px;
	background:linear-gradient(270deg, #ee7e00, #ea5902);
	color: #fff;
	font-weight: bold;
	margin-bottom: 10px;
	width: 80%;
}

.tit-orange03 {
	display: inline-block;
	border-radius: 100px;
	padding:10px;
	background:linear-gradient(270deg, #ee7e00, #ea5902);
	color: #fff;
	font-weight: bold;
	margin-bottom: 10px;
	width: 100%;
}

.txt-light {
	text-shadow:0 0 7px #FFF;
}

.conceptWrapp {
	background:url("../img/kangoshi.jpg");
	background-repeat: no-repeat;
	background-position: bottom center;
	position: relative;
	background-size:cover;
	max-width: 100%;
	min-height: 600px;
	margin: 0 auto;
}

.concept-boxRight {
	position: absolute;
	bottom: 0;
	left: 3%;
	max-width: 53%;
	background-color: rgb(255,255,255,0.8);
	padding: 30px;
	border-radius: 20px;
	box-shadow: 0 0 5px 2px rgba(0,0,0,0.1); 
	text-align: left;
	z-index: 3;
}

.concept-boxLeft {
	position: absolute;
	bottom: 20%;
	right: 3%;
	max-width: 40%;
	text-align: right;
	z-index: 2;
}

.concept-boxCenter {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.conceptFlexWrapp {
	display: flex;
	justify-content: space-around;
}

.conceptFlexBox {
	flex-basis: 30%;
}

.conceptFlexBox p {
	max-width: 100%;
	padding:30px;
	color: #fff;
	text-align: center;
	font-weight: bold;
	background: url("../img/circle-orange.svg") no-repeat;
	background-position: center;
}

.memberWrapp {
	display: flex;
	justify-content: space-around;
	margin: 50px 20px 80px 20px;
}

.memberBox {
	margin:0 5px;
	max-width: 160px;
	border-radius: 20px;
	padding:15px;
	background:linear-gradient(#fffeee, #ffffff);
	box-shadow: 0 0 5px 2px rgba(0,0,0,0.1); 
}

.memberBox img {
	max-width: 100px;
}

.memberBox h5 {
	padding: 10px 5px;
	background-color: #ffcc00;
	border-radius: 50px;
	margin-bottom: 10px;
	font-size: 0.9rem;
	
}

.memberBox p {
	text-align: left;
	font-size: 0.9rem;
	padding: 5px;
	transform: rotate(0.03deg);
	color: #000000;
}

.supportWrapp {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	margin:50px 20px;
}

.supportBox {
	margin:0 5px 30px 5px;
	max-width: 31%;
	border-radius: 20px;
	padding:15px;
	background:linear-gradient(#fffeee, #ffffff);
	box-shadow: 0 0 5px 2px rgba(0,0,0,0.1); 
}

.supportBoxInWrapp {
	display: flex;
	justify-content: space-between;
	align-items:center;
	max-width: 100%;
	padding: 20px;
}

.supportBoxInWrapp h5 {
	flex-basis: auto;
	font-size: 1.5rem;
	flex-grow: 2;
}

.supportBoxInWrapp img {
	max-width: 130px;
	max-height: 120px;
	padding-left: 15px;
	flex-grow: 1;
}

.supportTxt {
	max-width: 95%;
	margin: 0 auto;
	font-size: 0.9rem;
	text-align: left;
}

.cvWrapp {
	background: url("../img/cv-back-illust.svg"), url( "../img/cv-back.svg");
	background-repeat:no-repeat,repeat-x;
	background-position: center bottom;
	background-size:auto;
	background-color: #fff095;
	min-height: 500px;
}

.cvInsaide {
	max-width: 1080px;
	text-align: center;
	margin: 0 auto;
	padding: 90px 0;
}

.cvTxt {
	font-size: 1.6rem;
	font-weight: bold;
	margin-bottom: 30px;
}

.facilityWrapp {
	border: 3px solid #ee7e00;
	border-radius: 15px;
	box-shadow: 0 0 5px 2px rgba(0,0,0,0.1);
	margin: 50px 20px;
	padding: 50px;
	text-align: center;
}

.facilityFlexWrap {
	display: flex;
	justify-content: space-between;
	margin:50px 0;
}

.facilityFlexBox {
	flex-basis: 48%;
	text-align: left;
}

.priceBox {
	border-radius: 15px;
	border: 2px solid #ee7e00;
	background: #fff;
	width: 100%;
	padding: 30px;
	text-align: center;
}

.priceBox table {
	width: 100%;
	margin-top: 10px;
}

.priceBox table th {
	font-size: 1.3rem;
	vertical-align: middle;
}

.priceBox table td {
	padding: 5px 0 0 0;
	text-align: right;
	font-weight: bold;
	font-size: 1.3rem;
	vertical-align: middle;
}

.map {
	height: 450px;
}

.lifeWrapp {
	flex-basis: 100%;
	background:linear-gradient(#fffeee, #ffffff);
	box-shadow: 0 0 5px 2px rgba(0,0,0,0.1);
	border-radius: 15px;
	padding: 50px;
	margin: 50px 20px;
}

.lifeWrapp table {
	width: 100%;
}

.lifeWrapp th {
	width: 20%;
	padding: 20px;
	text-align: center;
	vertical-align: middle;
}

.lifeWrapp th h5 {
	padding: 0;
}


.lifeWrapp td {
	width: 40%;
	text-align: left;
	padding: 20px;
	vertical-align: middle;
}

.lifeWrapp table,.lifeWrapp th,.lifeWrapp td {
	border-collapse: collapse;
	border:2px solid #ee7e00;
}

.lifeWrapp ul {
	list-style-type: circle;
	margin: 0 0 0 20px;
}

.lifeFlexWrapp {
	max-width: 100%;
	margin: 0 20px;
	display: flex;
	justify-content: space-between;
}

.lifeFlexBox {
	flex-basis: 48%;
	background:linear-gradient(#fffeee, #ffffff);
	box-shadow: 0 0 5px 2px rgba(0,0,0,0.1);
	border-radius: 15px;
	padding: 30px;
}

.lifeFlexBox p {
	padding-left: 20px;
	font-size: 0.9rem;
}

.lifeFlexBox table td {
	border-bottom: 2px dotted #ee7e00;
	padding: 10px 0;
	font-size: 0.9rem;
	text-align: left;
}

.timeTable {
	width: 20%;
}

.flowWrap {
	flex-basis: 100%;
	margin: 0 20px;
	display: flex;
	flex-wrap: wrap;
}

.flowBox {
	flex-basis: 23%;
	background:linear-gradient(#fffeee, #ffffff);
	box-shadow: 0 0 5px 2px rgba(0,0,0,0.1);
	padding: 20px;
	margin: 15px 1%;
	border-radius: 15px;
}

.flowNo {
	background: #eec700;
	border-radius: 50%;
	padding: 3px 10px;
	color: #000;
}

.flowTit {
	display: inline-block;
	padding-left: 5px;
	font-size: 1.0rem;
	transform: rotate(0.03deg);
}

.flowBox img {
	border-radius: 10px;
	margin:10px 0 15px 0;
}

.flowBox p {
	padding: 0 10px;
}

.gradient1{
    /*ボタンの形状*/
    display: block;
	max-width: 200px;
    color:#fff;
    padding: 10px 60px;
	margin: 30px auto;
    
    border-radius:30px;
    text-decoration: none;
    outline: none;
    /*背景の色と形状*/
    background: linear-gradient(270deg, #ea5902 0%, #ee7e00 25%, #ee7e00 51%, #ea5902 100%);
    background-position: 1% 50%;
    background-size: 200% auto;
    /*アニメーションの指定*/
    transition: all 0.3s ease-out;
	transform: rotate(0.03deg);
}

/*hoverした際の、背景の場所とテキスト色の変更*/
.gradient1:hover {
    color:rgb(255,255,255,0.8);
    background-position: 99% 50%;
}

.floating-banner {
 position: fixed;
 bottom: 3%;
 right: 2%;
}

.floating-banner img {
	width: 204px;
	height: auto;
	transition: 0.5s ;
}

.floating-banner img:hover,.iconInstagram img:hover {
	transform: scale(0.9);
	transition: 0.5s ;
}

.floating-banner a,.iconInstagram a {
	transition: 1.0s ;
}


.floating-banner a:hover,.iconInstagram a:hover {
	opacity: .5;
	transition: 0.5s ;
}

.iconInstagram {
	position: fixed;
	bottom: 20%;
	right: 2%;
}

.iconInstagram img {
	width: 50px;
	height: auto;
	transition: 0.5s ;
}

@media screen and (max-width : 860px) {
	.logo {padding: 20px;}
	.logo img{width: 220px;}
	#copy {max-width: 90%; text-align: center; padding: 30px 0 0 0;}
	header {min-height: 500px;}
	section{padding:50px;}
	section#area-1{padding:50px 0 0 0;}
	section#area-2{padding:0;}
	.conceptWrapp {display: block; background-position: top center; background-size:contain; height: auto; margin: 0 auto;}
	.concept-boxRight {bottom: auto; top: 5%; left: 5%; width: 90%; padding: 20px;}	
	.conceptFlexWrapp {display: block;}
	.conceptFlexBox {max-width: 100%;}
	.conceptFlexBox p {width: 100%; padding:10px; margin-bottom: 15px; background-image: none; background-color:#ea5902; border-radius: 30px; font-size: 0.9rem;}
	.memberWrapp {flex-wrap:wrap; justify-content: space-around; margin-top: 30px; margin-bottom: 50px;}
	.memberBox {margin:0 0 30px 0; max-width: 46%; border-radius: 20px; padding:15px;}
	.cvInsaide p {padding: 0 30px;}
	.facilityWrapp {padding: 30px; margin: 30px 0;}
	.facilityFlexWrap {display: block; margin:30px 0;}
	.facilityFlexBox {width: 100%;}
	.facilityFlexBox h5 {text-align: center;}
	.priceBox { margin-top: 30px;}
	.lifeWrapp {padding: 20px; margin: 30px 0;}
	.lifeWrapp h4 {font-size: 1.0rem;}
	.lifeFlexWrapp {display: block; margin: 0;}
	.lifeFlexBox {flex-basis: 100%; padding: 20px; margin-bottom: 30px;}
	.lifeFlexBox p {padding-left: 10px;}
	.flowWrap {margin: 0; justify-content: space-between;}
	.flowBox {flex-basis: 48%; padding: 10px; margin: 10px 0;}
	.supportWrapp{margin-top:30px;}
	.supportBox {max-width: 48%;}
	
}

@media screen and (max-width : 500px) {
	.concept-boxRight {position: absolute; top: 30%; margin: 0 auto; bottom: auto; left: 0; right: 0; max-width: 100%;}
	section{padding:50px 20px;}
	section#area-2{margin: 230px 0 0 0;}
	.spTxt{padding: 0 20px; text-align: left;}
	.lifeWrapp th {padding: 10px; vertical-align: top;}
	.lifeWrapp td {padding: 10px; vertical-align: top;}
	.tit-orange02 {width: 100%;}
	.supportBox {max-width: 100%;}
	.cvTxt {font-size: 1.2rem; text-align: left;}
	.cvInsaide {padding: 50px 0;}
	.cvWrapp {min-height: 400px;}
	.priceBox table th, .priceBox table td{font-size: 1.0rem;}
	.lifeWrapp td {font-size:0.9rem;}
	.facilityWrapp {padding: 20px;}

.floating-banner {bottom: 2%;
}

.floating-banner img {width: 130px;}

.iconInstagram {
	position: fixed;
	bottom: 15%;
	right: 2%;
}


}


