@charset "utf-8";
/* CSS Document */

/*@media screen and (max-width: 768px){
	
}*/

/*body全体の設定*/
body{
	margin: 0 auto;
	background-color: #E5D8C4;
	line-height: 1.5;
	max-width: 1920px;
	text-align: center;
	margin: 0 auto;
	padding: 0;
	width: 100%;
	
	font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: normal;
  font-style: normal;
}


html{
	font-size: 100%;/*フォントの設定*/
		
	}

/*背景の設定*/


/*h1*/
h1{
	font-size: 48px;
}
h2{
	font-size: 32px;
}
h3{
	font-size: 24px;
}
h4{
	font-size: 20px;
}



 

/*TOPページfv*/
.top-hd{
	margin-top: 10px;
	display: flex;
	justify-content: center;
	
}
.top-1{
	margin-top: 10px;
	margin-right: 50px;
}
.top-t{
	color: #fff;
}
.top-2{
	margin-top: 10px;
}
.top-con{
	color: #5B6CA8;
	background-color: rgba(255, 255, 255,0.3);
	border-radius: 20px;
	padding: 5px 5px 5px 20px;
	justify-content: center;
	margin-top: 30px;
}
.top-con1{
	display: flex;
	flex-wrap: wrap;
	width: 300px;
	padding: 5px;
}
.top-con1 dt{
	width: 40%;
	text-align: left;
}
.top-con1 dd{
	width: 60%;
	text-align: left;
	margin-left: 0;
}

/*左右に斜線*/
.kogi h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
	margin-bottom: 10px;
	
}
.kogi h3::before,
.kogi h3::after {
    width: 3px;
    height: 40px;
    background-color: #fff;
    content: '';
}

.kogi h3::before {
    transform: rotate(-35deg);
    margin-right: 30px;
}

.kogi h3::after {
    transform: rotate(35deg);
    margin-left: 30px;
}
/*コーギーぽよぽよ*/
.kogi  {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}



.top-2 img{
	border-radius: 60px;
	margin: 20px 30px 0 0;
	
}

/*下層ページfv*/
.ks-hd{
	margin-top: 10px;
	display: flex;
	justify-content: center;
}
.ks-1 h1{
	color: #fff;
	text-decoration:underline;
	margin-top: 100px;
}



.fv-img{
	position: relative;
}
.ks-t h2{
	position: absolute;
	top: 12%;
	left: 63%;
}
.ks-t{
	color: #fff;
}
.scroll img{
	margin-top: 319px;
}
.ks-t h2{
	color: #fff;
	writing-mode: vertical-rl;
}
.fv-img img{
	border-radius: 60px;
}
/*下層ページTOP電話番号*/
.top-tel{
	display: flex;
	justify-content: center;
}
.top-tel p{
	color: #fff;
	margin: 10px 40px;
	font-size: 24px;
}

/*nav*/
.top-3 ul{
	text-decoration: none;
	margin-right: 30px;
	width: 150px;
}
.top-3 li{
	list-style-type: none;
	margin-top: 30px;
	display: inline-block;
	text-align: center;
	width: 150px;
}
/*navふわふわアニメーション*/
.top-3 li img{
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  background: url(../img/ico-apple.svg) no-repeat center center / 60px auto;
  display: inline-block;
  transition: 1.5s ease-in-out;
  margin-top: 15px;
}
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}



.top-3 p{
	width: 150px;
	color: #fff;
	margin: 0;
	font-weight: bold;
	font-size: 20px;
	/*nav下線アニメーション*/
	padding-bottom: 5px;
  position: relative;
}
/*
ホバー時上下
.top-3 p::before {
  background: #fff;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
.top-3 p:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}
.top-3 img:hover {
  transform: translateY(-5px);
}*/


.top-re{
	font-weight: bold;
	}
/*ボタンアニメ*/
.top-re img {
  transition-duration: .4s;
}
.top-re img:hover {
  transform: scale(1.1);
}

/*ぽよんぽよん*/
/*.top-re {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}*/
/*animation: animationName 1s ease 0.5s infinite alternate forwards;*/
/*スクロールアイコンdown*/

/*スクロールアイコンの親*/
.top-2{
	position: relative;
}
.topscroll-i{
	position: absolute;
	top: 75%;
	left: 38%;
	z-index: 5;
	animation-name:UpDown;
	/* アニメーションの１回分の長さ */
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	/* アニメーション再生の向き */
	animation-direction: alternate;
	}
	/* アニメーションの設定 */
	@keyframes UpDown{
	/* 開始地点 */
	0%{
	/* Y軸0px */
	transform: translateY(0);
	}
	/* 終了地点 */
	100%{
	/* Y軸50px */
	transform: translateY(50px);
}
}

/*下層ページスクロールアイコン*/
.scroll-i{
	margin-top: 350px;
	animation-name:UpDown;
	/* アニメーションの１回分の長さ */
	animation-duration: 1.5s;
	animation-iteration-count: infinite;
	animation-timing-function: ease-in-out;
	/* アニメーション再生の向き */
	animation-direction: alternate;
	}
	/* アニメーションの設定 */
	@keyframes UpDown{
	/* 開始地点 */
	0%{
	/* Y軸0px */
	transform: translateY(0);
	}
	/* 終了地点 */
	100%{
	/* Y軸50px */
	transform: translateY(50px);
	}
	}


/*index.html*/

/*main*/
main{
	margin-top: 100px;
}
/*slide*/
.ss{
	display:flex;
	justify-content: center;
	flex-wrap: wrap;
	position: absolute;
	
}
.ss img{
	width: 30%;
}
/*content重ねる*/
.content{
	position: relative;
	margin: 100px auto;
	height: 1028px;
	width: 100%;
}
.slide img{
	z-index: 3;
    opacity: 0.9;
	
}
.slide{
	position: absolute;
	top: 35%;
	left: 25%;
	
}
.ss{
	position: absolute;
	z-index: -5;
	opacity: 0.2;
	height: 1028px;
	width: 100%;
}
.ss-t1{
	position: absolute;
	top: 5%;
	left: 10%;
	color: #fff;
	 writing-mode: vertical-rl;
	
	color: #fff;
  text-shadow:1px 1px 0 #5B6CA8, -1px -1px 0 #5B6CA8,
              -1px 1px 0 #5B6CA8, 1px -1px 0 #5B6CA8,
              0px 1px 0 #5B6CA8,  0-1px 0 #5B6CA8,
              -1px 0 0 #5B6CA8, 1px 0 0 #5B6CA8;
}
.ss-t2{
	position: absolute;
	top: 3%;
	left: 80%;
	color: #fff;
	
	
}
.ss-t3{
	position: absolute;
	top: 63%;
	left: 39%;
	color: #5B6CA8;
	z-index: 5;
}
.ss-t4{
	width: 25%;
	position: absolute;
	top: 40%;
	left: 60%;
	text-align: left;
	margin-left: 61px;
}
.ss-t4 p{
	color: #5B6CA8;
	font-weight: bold;
	font-size: 20px;
	background-color: rgba(255,255,255,0.6);
	padding: 20px;
    max-width: 400px;
	height: 150px;
	position: relative;
}
 
.content-btn{
	position: absolute;
	top: 83%;
	left: 71%;
	text-align: end;
}
/*ボタンアニメーション*/
 .content-btn img {
  transition-duration: .4s;
}
.content-btn img:hover {
  transform: scale(1.1);
}
.content-btn h3{
	color: #5B6CA8;
}





/*section-1*/
.sec-midasig{
	display: flex;
}
.sec-midasig h2{
	margin: 100px 50px 50px 150px;
}
/*斜め線*/
.sec-midasig h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
	margin-bottom: 10px;
	transform: rotate(20deg);
}
.sec-midasig h3::before,
.sec-midasig h3::after {
    width: 3px;
    height: 40px;
    background-color: #fff;
    content: '';
}

.sec-midasig h3::before {
    transform: rotate(-35deg);
    margin-right: 30px;
}

.sec-midasig h3::after {
    transform: rotate(35deg);
    margin-left: 30px;
}
/*コーギーふわふわ*/
.sec-item1{
  animation: fuwafuwa 3s ease-in-out infinite alternate;
  background: url(../img/ico-apple.svg) no-repeat center center / 60px auto;
  display: flex;
  transition: 1.5s ease-in-out;
  margin-top: 15px;
}
@keyframes fuwafuwa {
  0% {
    transform:translate(0, 0) rotate(-7deg);
  }
  50% {
    transform:translate(0, -7px) rotate(0deg);
  }
  100% {
    transform:translate(0, 0) rotate(7deg);
  }
}

.sec1-wrap{
	background-color: #DCC7AA;
	padding: 60px 30px 10px 30px ;
	border-radius: 30px;
	margin: 30px auto;
	width: 1000px;
}
.sec-1{
	width: 72%;
	margin: 200px auto 0;
}

.sec-1 {
  animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}
 
@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
section h2{
	color: #fff;
	height: 80px;
	background-color: #5B6CA8;
	width: 400px;
	padding: 30px 20px;
	margin: 0 auto;
	border-radius: 30px;
	
}

/*丸デザイン*/
.sec1-1,.sec1-2,.sec1-3,.sec1-4,.sec1-5,.sec1-6{
	padding: 20px;
	background-color: rgba(153,169,191,0.8);
	width: 200px;
	height: 250px;
	display:inline-block;
	border-radius: 120px;
	margin: 0 auto;
	
}
.sec1-1,.sec1-2,.sec1-4,.sec1-5{
	margin-right: 70px;
}
.sec1-1 p,.sec1-2 p,.sec1-3 p,.sec1-4 p,.sec1-5 p,.sec1-6 p{
	color: #fff;
	font-weight: bold;
	font-size: 20px;
	margin: 0;
	vertical-align: middle;
}

.sec1-1 img{
	margin: 30px;
}
.sec1-3 img{
	margin-top: 10px;
}
.sec1-4 img{
	margin: 20px;
}
.sec1-5 img{
	margin-top: 50px;
}
.sec1-5 p{
	margin-top: 20px;
}
.sec1-6 p{
	margin-bottom: 1px;
}
.sec1-t p{
	text-align:right; 
	margin-bottom: 70px;
	color: #5B6CA8;
}
.secg-1,.secg-2{
	margin: 0 auto;
	display: flex;
	height: 300px;
	width: 80%
}
/*section-2*/
.sec-2{
	text-align: center;
	width: 75%;
	justify-content: center;
	margin: 100px auto 0;
}
.sec2-btn{
	margin: 30px auto;
	width: 75%;
	display: flex;
	
}
.sec-btn1,.sec-btn2,.sec-btn3,.sec-btn4{
	color: #5B6CA8;
	background-color: rgba(255,255,255,0.5);
	text-decoration: none;
	padding: 5px;
	border-radius: 100px;
	width: calc(30%);
	font-weight: bold;
	font-size: 32px;
	align-items: center;
	border: 6px solid rgba(255,255,255,0.8);
	flex: 1;
	margin: 5px;
}
.sec-btn1:hover,.sec-btn2:hover,.sec-btn3:hover,.sec-btn4:hover{
	color: rgba(255,255,255,0.8);
	background-color: #99A9BF;
}
.sec2-btn1 img,.sec-btn2 img,.sec-btn3 img,.sec-btn4 img{
	padding: 0 30px;
}

.sec-btn1,.sec-btn3{
	margin-right: 30px;
}/*acces*/
.acces{
	margin-top: 200px;
}
.acces h2{
	color: #fff;
	text-align: left;
}
.ac-wrap{
	display: flex;
	justify-content: center;
	margin-top: 106px;
}
.ac-left{
	margin-left: 11.8%;
	margin-right: 102px;/* min(14.1vw, 102px);*/
}
.ac-right{
	margin-right: 11.8%;
	
}
.ac-right img{
	display: block;
}
.ac-img2{
	margin-top: 20px;
}
.ac-1{
	color: #fff;
	background-color: #99A9BF;
	padding: 18px;
	max-width: 477px;
	margin-top: 49px;
	border-radius: 20px;
	display: flex;
}
/*アクセス表*/
.ac-2{
	color: #fff;
	background-color: #99A9BF;
	padding: 20px 20px 20px 70px;
	max-width: 477px;
	margin-top: 50px ;
	border-radius: 20px;
}
.ac2-1{
	display: flex;
	width: 300px;
	padding: 2px 0;
	justify-content: center;
}
.ac2-1 dl{
	display: flex;
	flex-wrap: wrap;
	width: 300px;
}
.ac2-1 dt{
	width: 30%;
	text-align: left;
}
.ac2-1 dd{
	width: 70%;
	text-align: left;
	margin-left: 10px;
}


.ac-3{
	color: #fff;
	background-color: #99A9BF;
	padding: 20px 20px 20px 70px;
	max-width: 477px;
	margin-top: 49px;
	border-radius: 20px;
}
.ac3-1{
	display: flex;
	width: 300px;
	padding: 2px 0;
	justify-content: center;
}
.ac3-1 dl{
	display: flex;
	flex-wrap: wrap;
	width: 300px;
}
.ac3-1 dt{
	width: 30%;
	text-align: left;
}
.ac3-1 dd{
	width: 70%;
	text-align: left;
	margin-left: 10px;
}
.ac3-2 p{
	text-align: left;
}
/*mapレスポンシブ*/
.map {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*about.html*/


/*section-1*/
.absec1-wrap{
	width: 75%;
	margin: 100px auto;
}
/*左右に斜線*/
.absec1-wrap h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.absec1-wrap h2::before,
.absec1-wrap h2::after {
    width: 3px;
    height: 40px;
    background-color: #fff;
    content: '';
}

.absec1-wrap h2::before {
    transform: rotate(-35deg);
    margin-right: 30px;
}

.absec1-wrap h2::after {
    transform: rotate(35deg);
    margin-left: 30px;
}


.ab-sec1{
	background-color: rgba(255,255,255,0.7);
	width: 75%;
	margin: 50px auto 0;
	padding: 50px;
	border-radius: 40px;
}
.ab-sec1 span{
	font-size: 24px;
}
.ab-sec1 h3,.ab-sec1 h4{
	color: #5B6CA8;
}
.ab-sec1 h4{
	text-align: left;
	width: 75%;
	margin: 0 auto;
}
.sec1-img p {
    position: relative;
    padding: 20px;
    border-radius: 30px;
    background-color: #5B6CA8;
    color: #fff;
    font-weight: bold;
    font-size: 24px;
	width: 300px;
	height: 30px;
	margin-right: 20px;
}
.ab-sec1 p:before {
    position: absolute;
    top: 100%;
    right: 30px;
    height: 0;
    width: 0;
    border-style: solid;
    border-color: transparent;
    border-top-color: #5B6CA8;
    border-width: 8px;
    content: "";
}

.sec1-img{
	display: flex;
	margin: 0 0 0 40%;
}


.ab-table{
	background-color: #99A9BF;
	color: #fff;
	margin: 0 auto;
}
.ab-table th,.ab-table td{
	padding: 18px;
}
.ab-table{
	border-collapse: collapse;
}
.ab-table tr{
	border-bottom: 1px solid #fff;
}
.sec1-wrap span{
	font-size: 32px;
}
.ab-t{
	margin: 0 auto;
}
.ab-t h4{
	text-align: left;
	width: 75%;
	line-height: 1.5;
	margin-top: 30px;
}
.ab-t p{
	text-align: center;
	margin-top: 40px;
	color: #5B6CA8;
}
/*section-2*/
.sec2-wrap{
	width: 75%;
	margin: 0 auto;
}

.abimg-st-1{
	margin-left: 0px;
}

/*幼稚園の１日、骨画像ポジション設定*/
.ab-sec2{
	position: relative;
	margin: 50px 0 0 0;
	text-align: center;
}
.ab-sec2 h2{
	color: #fff;
	position: absolute;
	top: 20%;
	left: 25%;
}

	/*Good morning!左右に斜線*/
.ab-item1 h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.ab-item1 h3::before,
.ab-item1 h3::after {
    width: 3px;
    height: 40px;
    background-color: #fff;
    content: '';
}

.ab-item1 h3::before {
    transform: rotate(-35deg);
    margin-right: 30px;
}

.ab-item1 h3::after {
    transform: rotate(35deg);
    margin-left: 30px;
}

/*Good morning!　斜めに傾ける*/
.ab-item1 h3{
	transform: rotate(20deg);
	margin: 0;
}

.abimg-st-1{
	margin: 50px 10px 0 350px;
}

/*HOME 斜めに傾ける
position*/

.abimg-st-2{
	margin-top: 100px;
	position: relative;
	
}
.ab-item4 img{
	display: inline-block;
	position: absolute;
	

}
.ab-item3 h3{
	transform: rotate(-35deg);
	position: absolute;
	display: inline-block;
	top: -20px;
	left: 30px;
}

/*幼稚園の１日スケジュール*/
.abimg-st{
	display: flex;
}
.ab-sj-wrap{
	width: 85%;
	margin: 0 auto;
}

.sec2-wrap p{
	font-size: 16px;
	font-weight: bold;
	max-width: 250px;
	color: #fff;
	text-align: left;
	margin: 50px auto 0;
	background-color: #DCC7AA;
	padding: 20px;
	font-feature-settings: "palt";
}


.ab-sj-wrap h3{
	color: #fff;
	width: 350px;
}


.ab-sj1g{
	margin: 0;
	display: flex;
}
.ab-sj2g,.ab-sj3g{
	display: flex;
	margin-top: -120px;
}
.ab-sj1,.ab-sj3,.ab-sj5{
	width: 30%;
	margin-right: 100px;
}
.ab-sjimg1,.ab-sjimg2,.ab-sjimg3{
	margin-right: 100px;
}
.ab-sjimg1-1,.ab-sjimg2-1,.ab-sjimg3-1{
	margin-top: -50px;
}
.ab-sjimg1-2,.ab-sjimg2-2,.ab-sjimg3-2{
	margin-top: 120px;
}
.ab-sj2,.ab-sj4,.ab-sj6{
	margin-top: 250px;
}

.ab-sj1 img,.ab-sj2 img,.ab-sj3 img,.ab-sj4 img,.ab-sj5 img,.ab-sj6 img,.ab-sj7 img{
	border-radius: 157px;
	
}

.abimg-end{
	display: flex;
	margin: -100px auto 0;
	
}
.ab-item5{
	margin-top: -50px;
}
.ab-item5-1{
	margin-bottom: 50px;
}
.ab-item6{
	margin-top: 250px;
}
.abimg-end-1{
	margin-top: 230px;
}
.ab-sj7{
	margin-right: 50px;
}
/*See you!左右に斜線*/
.ab-item6 h3 {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.ab-item6 h3::before,
.ab-item6 h3::after {
    width: 3px;
    height: 40px;
    background-color: #fff;
    content: '';
}

.ab-item6 h3::before {
    transform: rotate(-35deg);
    margin-right: 30px;
}

.ab-item6 h3::after {
    transform: rotate(35deg);
    margin-left: 30px;
}
/*See you!　斜めに傾ける*/
.ab-item6 h3{
	transform: rotate(-30deg);
	margin: 0;
}
/*endHOME 斜めに傾ける
position*/
.abimg-st-3{
	margin-top: 100px;
	position: relative;
	width: 500px;
	height: 500px;
}
.ab-item8 img{
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 10%;

}
.ab-item7 h3{
	transform: rotate(-35deg);
	position: absolute;
	display: inline-block;
	top: 40%;
	left: 0%;
}


/*plan.html*/
/*plan テーブルの設定*/

.plan-main h2{
	color: #fff;
	background-color: #5B6CA8;
	width: 250px;
	padding: 20px;
	margin: 0 auto;
	border-radius: 30px;
}
.plan-main ,h3,h4{
	color: #fff;
}
.plan-main p{
	font-size: 32px;
	background-color: #DCC7AA;
	padding: 20px;
	border-radius: 30px;
	width: calc(50%);
	margin: 100px auto;
}
.plan{
	padding: 30px;
}
.plan-table {
  border-collapse: separate;
  overflow: hidden;
  border-spacing: 0;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #aaa;
}
  .plan-table th {
    padding: .6em 3em;
    vertical-align: middle;
	 background-color: #99A9BF;
    border-bottom: 1px solid #aaa;
	color: #fff;
	}
.plan-table td {
    padding: .6em 3em;
    vertical-align: middle;
    border-right: 1px solid #aaa;
    border-bottom: 1px solid #aaa;
	}

    
.plan-table{
  border-collapse: collapse;
	max-width: 947px;
	height: 381px;
	text-align: center;
	margin: 0 auto;
}

/*.plan-table, .plan-table th, .plan-table td {
  border: none;
}*/

.plan-hd {
  padding: 28px 424px;
  background-color: #99A9BF;
  font-size: 32px;
  color: #fff;
	margin: 0 auto;
}

.plan-cl {
  /*padding: 8px;*/
  background-color: rgba(255,255,255,0.8);
	color: #5B6CA8;
	font-size: 24px;
}

.plan-tx{
	display: flex;
	justify-content: center;
	background-color: #DCC7AA;
	border-radius: 30px;
	width: calc(50%);
	margin: 0 auto;
}
.plan-tx img h3{
	display: inline-block;
}
.plan-tx img{
	padding-top: 15px;
}

/*contact.html*/
.con-main1{
	background-color: #5B6CA8;
	color: #fff;
	padding: 20px 40px;
	max-width: 416px;
	text-align: center;
	border-radius: 30px;
	font-size: 32px;
	margin: 30px auto 0;
}
/*contact-form*/
.com-wrap1{
	background-color:rgba(255,255,255,0.3);
	padding: 10px;
	border-radius: 30px;
	width: 50%;
	margin: 100px auto 0;
}
.com-wrap1 h4{
	color: #5B6CA8;
}
.contact-table{
	width: 57.9%;
	max-width: 834px;
	margin-bottom: 30px;
	border-collapse: collapse;
	margin: 0 auto;
	border-radius: 100px;
	
}
.contact-table th,.contact-table td{
	padding: 10px 20px;
}
.contact-table th{
	width: 10em;
	background-color: #99A9BF;
	text-align: left;
	color: #fff;
}
.contact-table td{
	width: 10em;
	background-color: #99A9BF;
	text-align: left;
	color: #fff;
	
}

/*入力フォームの設定*/
.contact-table input[type=text],
.contact-table input[type=email],
.contact-table input[type=tel],
.contact-table textarea{
	width: 100%;
	padding: 10px;
	border: 1px solid #ccc;
	font-size: 1em;
}
.contact-table input[type="text"]:hover,
.contact-table input[type="email"]:hover,
.contact-table input[type="tel"]:hover,
.contact-table textarea:hover{
	background-color: rgba(255,255,255,0.8);
	outline: none;}

.contact-table input[type="text"]:focus,
.contact-table input[type="email"]:focus,
.contact-table input[type="tel"]:focus,
.contact-table textarea:focus{
	background-color: rgba(255,255,255,0.6);
	outline: none;
}

/*カーソル形状*/
label,input,textarea,select{
	cursor: pointer;
}

/*送信ボタンの設定*/
.contact-btn{
	text-align: center;
	vertical-align: middle;
}
.contact-btn input{
	width: 190px;
	height: 68px;
	border-radius: 20px;
	margin: 33px;
	padding: 10px;
	font-size: 1.5em;
	-webkit-appearance: none;
}

.contact-btn input[type="submit"]{
	background: #5B6CA8;
	color: #fff;
}
.contact-btn input:hover{
	background: rgba(255,255,255,0.6);
	color: #5B6CA8;
}

/*予約について*/
.com-wrap2{
	padding: 10px;
	border-radius: 30px;
	width: 70%;
	margin: 100px auto 0;
}
.con-main2{
	background-color: #5B6CA8;
	color: #fff;
	padding: 20px 40px;
	max-width: 416px;
	text-align: center;
	border-radius: 30px;
	font-size: 32px;
	margin: 30px auto 0;
}
.con-re{
	background-color: #99A9BF;
	padding: 20px;
	color: #fff;
	width: 57.9%;
	max-width: 834px;
	margin: 0 auto 40px;
	border-radius: 30px;
}
.con-t{
	color: #5B6CA8;
}
.con-re h1{
	margin-top: 50px;
}
.con-i{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
}
.con-i h4{
	background-color: #fff;
	color: #99A9BF;
	border-radius: 18px;
	width: 60px;
	height: 60px;
	line-height: 60px;
	text-align: center;
	
}
.con-it{
	margin-right: 20px;
}
.con-i a{
	text-decoration: none;
}
/*全体footer*/


.ft-left{
	display: flex;
	justify-content: center;
	margin-top: 114px;
	
}
.ft-left img{
	margin-right: 42px;
	
}

.ft-contact1{
	display: flex;
	width: 300px;
	padding: 2px 0;
}
.ft-contact dl{
	display: flex;
	flex-wrap: wrap;
	width: 300px;
}
.ft-contact dt{
	width: 30%;
	text-align: left;
}
.ft-contact dd{
	width: 70%;
	text-align: left;
	margin-left: 10px;
}

.i-1{
	display: flex;
	justify-content: center;
	margin: 10px 180px 40px 0;
}
.i-1 p,img{
	display: inline-block;
}
.i-1 p{
	color: #5B6CA8;
	margin-right: 19px;
}
.i-1 a{
	text-decoration: none;
}


.ft-jon h4{
	color: #fff;
}
.ft-p{
	margin-left: 60px;
}
.ft-p img{
	padding: 7px;
	background-color: rgba(255,255,255,0.7);	
}
.i-2{
	margin-top: 35px;
}
.i-2 img{
	margin-right: 23px;
}

/*フッターボタン*/
.ft-btn1,.ft-btn2{
	border-radius: 13px;
	font-size: 32px;
	background-color: #5B6CA8;
	padding: 15px;
	width: calc(50%);
	text-decoration: none;
	color: #fff;
}

.ft-btn1{
	margin-right: 50px;
}
/*.ft-btn1 img,.ft-btn2 img{
	padding-top: 10px;
}*/
.ft-btng{
	width: 1000px;
	display: flex;
	margin: 0 auto;
}


.btn-con{
	display: inline-block;
}
.ft-contact{
	color: #fff;
	margin-right: 70px;
}
.btn-con p{
	color: #fff;
	background-color: #E6BB44;
}

/*フッター帯*/
.ft-navg{
	background-color: #99A9BF;
	margin-top: 70px;
	width: 100%;	
	
}
.ft-nav{
	display: flex;
	justify-content: center;
	height: 80px;
	align-items: center;
}

.ft-nav li{
	list-style-type: none;
	display: inline-block;
	color: #fff;
	margin-right: 62px;
	margin-top: 50px;
	}
small{
	color: #fff;
}
strong{
	color: #fff;
}
