@charset "utf-8";

body {
	font-family: 'M PLUS Rounded 1c', sans-serif;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

/*===================================================
ヘッダー
===================================================*/
header {
	position: relative;
	background-color: #023894;
}

#menu {
	display: flex;
	background-color: rgba(255,255,255,0.9);
	z-index: 10;
}

#list > ul > li > a {
	color: #023894;
	text-decoration: none;
}

#list li a:hover {
	opacity: .5;
}

#listB li a:hover {
	opacity: .5;
}

@media screen and ( min-width:801px ) {
#menu {
	width: 85%;
	height: 80px;
	position: absolute;
	top: 15px;
	left: 8%;
}
}

@media screen and ( max-width:800px ) {
#menu {
	width: 100%;
	height: 45px;
	position: fixed;
	top: 0;
	left: 0;
}

header {
	margin-top: 45px;
}
}


/*===================================================
ヘッダー(トップ以外)
===================================================*/
#pagetitle {
	padding: 160px 0 80px;
	text-align: center;
}

#pagetitle p {
	color: #fff;
	font-size: 160%;
	font-weight: 400;
}

#pagetitle p:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -10px;
	display: inline-block;
	width: 50px;
	height: 3px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #fff;
	border-radius: 2px;
}

#pagetitle h2 {
	font-size: 120%;
	text-align: center;
	padding-bottom: 10px;
	position: relative;
	color: #fff;
}

#pagetitle h2:before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: -10px;
	display: inline-block;
	width: 50px;
	height: 3px;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #fff;
	border-radius: 2px;
}


@media screen and ( max-width:800px ) {
#pagetitle {
	padding: 30px 0 40px 0;
	text-align: center;
}

#pagetitle p {
	font-size: 20px;
}

form {
	margin: 0 10px;
	font-size: 90%;
}

#pagetitle p:before {
  top: 70%;
}

#pagetitle h1 {
	font-size: 20px;
}
#pagetitle h2 {
	font-size: 18px;
}

#pagetitle h2:before {
	height: 1px;
	
}
}


/******************ヘッドロゴ******************/
/**************************************************************/
#headLogo {
	width: 25%;
	box-sizing: border-box;
	margin-left: 25px
}

#headLogo a {
	width: 100%;
	height: 100%;
	background: url("../../img/header_logo.png")no-repeat center / contain;
	display: block;
	line-height: 0;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
}

@media screen and ( max-width:800px ) {
#headLogo {
	width: calc(100% - 45px);
	padding: 5px 10px;
}

#headLogo a {
	background-position: 0 center;
}
}


/******************ヘッドメニュー1******************/
/**************************************************************/
@media screen and ( min-width:801px ) {
#list {
	width: calc(75% - 200px);
	display: block !important;
}

#list > ul {
	display: flex;
}

#list ul li {
	width: calc(100% / 5);
	font-size: 90%;
	text-align: center;
}

#list>ul>li:nth-last-of-type(-n+2) {
	display: none;
}

#list > li > a {
	width: 100%;
	height: 100%;
	display: block;
}

#list li a span {
	background: url("../../img/icon_header/icon00.png") no-repeat 0 22px / 38px auto;
}
#list li:first-of-type a span {
	background-image: url("../../img/icon_header/icon06.png");
}
#list li:nth-of-type(2) a span {
	background-image: url("../../img/icon_header/icon00.png");
}
#list li:nth-of-type(3) a span {
	background-image: url("../../img/icon_header/icon01.png");
}
#list li:nth-of-type(4) a span{
	background-image: url("../../img/icon_header/icon02.png");
}
#list li:nth-of-type(5) span{
	background-image: url("../../img/icon_header/icon03.png");
}
}

@media screen and ( min-width:1501px ) {
#list li a span {
	display: inline-block;
	line-height: 80px;
	padding-left: 50px;
	white-space: nowrap;
}
}

@media screen and ( min-width:801px ) and ( max-width:1500px ) {
#list li a span {
	display: block;
	line-height: 1;
	padding: 55px 0 11px 0;
	background-position: center 10px;
	white-space: nowrap;
}
}

@media screen and ( max-width:800px ) {
#list { 
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.7);
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  transform: translateY(0%);
	z-index: 1200;
}
#list ul {
  width: 100%;
  background: #F1F1F1;
  position: absolute;
  top: 50%;
  box-sizing: border-box;
  transform: translate(0,-50%);
	font-size: 130%;
}

#list ul li a {
  display: block;
  color: #023894;
  padding: 1em 0;
  text-decoration :none;
}
#list ul li {
  width: 100%;
  font-size: 90%;
	text-align: center;
  list-style-type: none;
  border-bottom: 1px solid #fff;
}
#list ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
#list ul li:hover{
  background :#ddd;
}

#list::before,
#list::after {
  width: 36px;
  height: 3px;
  content: "";
  position: absolute;
  top: 20px;
  right: 10px;
  background-color: #FFFFFF;
  border-radius: 2px;
  transform: rotate(-45deg);
}
#list::after {
  transform: rotate(45deg);
}
}


/******************ヘッドメニュー2******************/
/**************************************************************/
@media screen and ( min-width:751px ) {
#listB {
	width: 200px;
}

#listB ul {
	height: 100%;
}

#listB li {
	height: 50%;
	text-align: center;
	background-color: #4D8CCB;
}
#listB li:nth-of-type(2) {
	background-color: #4DCB74;
}

#listB li a {
	display: block;
	color: #fff;
}

#listB li a span {
	display: inline-block;
	line-height: 40px;
	background: url("../../img/icon_header/icon04.png") no-repeat 0 0 / 24px auto;
	padding-left: 34px;
	text-align: center;
}

#listB li:nth-of-type(2) a span {
	display: inline-block;
	line-height: 40px;
	background: url("../../img/icon_header/icon05.png") no-repeat 0 0 / 24px auto;
	padding-right: 20px;
}
}

@media screen and ( max-width:800px ) {
#header-logo {
  width: calc(100% - 60px);
  height: 45px;
}

#listB {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  background-color: rgba(0,0,0,0.7);
}
}


/**********************ドロップダウンメニュー*********************/
/**************************************************************/
a #list-school {
  pointer-events: none;
}
.dropdwn_menu li a{
	display: block;
	color: #023894;
	text-decoration: none;
}
.dropdwn_menu {
	display: none;
	z-index: 10;
}

@media screen and ( min-width:1500px )  {
.dropdwn_menu li a{
	padding: 25px;
}

}

@media screen and ( min-width:801px ) {
.dropdwn_menu{
	background-color: rgba(255,255,255,0.9);
}

.dropdwn_menu li {
	width: 100%!important;
}

.dropdwn_menu li a {
	padding: 20px;
}

.dropdwn_menu li a:hover{
	color: rgba(255,255,255,0.9)!important;
	background-color: rgba(0,60,255,0.80);
}

}

@media screen and ( max-width:800px ) {
.dropdwn_menu li a {
	padding: 25px;
}
}


/***********************ハンバーガーボタン***********************/
/**************************************************************/
@media screen and ( min-width:801px ) {
#headMenuBt {
  display: none;
}
}

@media screen and ( max-width:800px ) {
#menu {
	background-color: rgba(255,255,255,0.9);
}

#headMenuBt {
  width: 45px;
  height: 45px;
  position: relative;
  background-color: #023894;
}

#headMenuBt::before {
  width: 21px;
  height: 19px;
  position: absolute;
  top: 13px;
  left: 11px;
  content: "";
  box-sizing: border-box;
  border-top: 3px solid #fff;
  border-bottom: 3px solid #fff;
}

#headMenuBt hr {
  width: 21px;
  height: 3px;
  position: absolute;
  top: 50%;
  left: 11px;
  background-color: #fff;
  border: none;
	margin: 0;
  transform: translate(0,-50%);
}
}


/*===================================================
フォーム関連
===================================================*/
input[type="text"],
input[type="search"],
input[type="number"],
input[type="email"],
input[type="password"],
input[type="tel"],
select,
textarea {
  appearance: none;
  box-sizing: border-box;
	width: 370px;
	max-width: 100%;
  height: 40px;
  color: #666;
	background-color: #EDEDED;
  border: none;
  border-radius: 3px;
  padding: 3px 5px;
  transition: all 0.2s;
	margin-top: 5px;
}

input:not([type="button"]):focus {
  border-color: #f5b787;
}
.selectArrow {
  position: relative;
  background-color: #EDEDED;
  border-radius: 3px;
	display: block;
}
.selectArrow::after {
  content: "\25BC";
  position: absolute;
  top: 50%;
  right: 15px;
  display: block;
  font-size: 10px;
  line-height: 10px;
  color: #999;
  transform: translate(0,-50%);
}
.selectArrow select {
	width: 100%;
	max-width: 740px;
  position: relative;
  background-color: transparent;
  z-index: 1;
  padding-right: 30px;
}

#remarks textarea,
input[type="email"],
#postalCode {
  width: 100%;
}

#day span,
#bus span,
#gender span {
	margin-left: 5px;
}

.street,
.tel {
	width: 100%!important;
}
	
input[type="checkbox"],
input[type="radio"] {
	position: relative;
	top: 0px;
	margin-right: 2px;
}

@media screen and ( min-width:801px ) {
#remarks textarea {
	height: 100px;
}
}

@media screen and ( max-width:800px ) {
textarea {
	height: 80px;
}
}


/*===================================================
フッター 
===================================================*/
#mainConF {
  background: url("../../img/mainconF_background.jpg") no-repeat 0 0 / cover;
  position: relative;
  overflow: hidden;
} 

#mainConF > div:not(:first-of-type) {
	position: relative;
  z-index: 2;
}

.info-F {
  margin: 130px auto 0;
  font-size: 110%;
  background-color: #D1D1D1;
  text-align: center;
}

.inner {
  max-width: 800px;
  margin: 80px auto;
  position: relative;
}

.info li {
  text-align: center;
	transition: box-shadow .3s;
}

.SNS ul {
	display: flex;
	justify-content: center;
}

.sns_icon {
	width: 42px;
	height: 42px;
}

.sns_icon a {
	display: block;
}

.sns_icon img {
	border-radius: 50%;
}

.Garland_B {
	width: 562px;
  position: absolute;
  top: -105px;
  right: -43px;
  transform: rotate( 30deg );
}

/*-------float---------*/
.sns_icon a,
.info ul li {
	transition: box-shadow .3s;
}
.sns_icon a,
.info ul li {
  transition-property: transform;
}

.sns_icon a:hover {
  transform: translateY(-8px);
}
.info ul li:hover {
  transform: translateY(-8px);
}



@media screen and ( min-width:801px ) {
.info-F {
  width: 65%;
}
.info ul {
  margin: 80px 0 20px 0;
	display: flex;
	align-items: center;
	justify-content: center;
}
.info ul li:not(:first-of-type) {
  margin-left: 50px;
}
.SNS ul { 
  max-width: 700px;
  margin: 0 auto;
}
.SNS li { 
  width: calc((100% - 400px) / 5);
  margin: 30px 40px 30px 40px;
}
.footer-logo {
  width: 40%;
	text-align: center;
  margin: 20px auto 20px auto;
}
}

@media screen and ( max-width:800px ) {
.info-F {
  margin: 200px 20px 30px 20px;
}
.info ul li:not(:nth-of-type(2)) {
  margin: 20px 0;
}
.SNS li { 
  margin: 10px 15px;
}
.footer-logo {
  margin: 20px auto 0 auto;
	text-align: center;
	z-index: 999;
}
}

@media screen and ( max-width:480px ) {
.SNS ul { 
	width: 300px;
	margin: 0 auto;
}
.SNS li { 
	margin: 10px 13px;
}
.footer-logo {
  width: 60%;
  margin: 10px auto;
  text-align: center;
}
}


/***************************フッターリスト****************************/
/*****************************************************************/
#menuB {
	height: 300px;
	background-color: #023894;
	color: #fff;
}

#menu-liA {
	width: 500px;
	margin: 0 auto;
} 

#menu-liA ul {
	display: flex;
	padding-top: 90px;
}

#menu-liA ul li {
	width: calc(100% / 3);
	text-align: center;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}

#menu-liA ul li+ li {
  border-left: 0;
  border-right: 1px solid #fff;
}

#menu-liA ul li a{
	text-decoration: none;
  color: #fff;
}

#menu-liA ul li a:hover,
#menu-liB ul li a:hover {
	opacity: .5;
}

#menu-liB {
	margin: 0 auto;
}
#menu-liB ul {
	display: flex;
	justify-content: center;
	line-height: 1;
	margin-top: 60px;
}
#menu-liB ul li:not(:first-of-type) {
	margin-left: 20px;
}
#menu-liB ul li a {
	color: #fff;
	text-decoration: none;
	white-space: nowrap;
	transition: box-shadow .3s;
}
#company {
	height: 80px;
	background-color: #3E3E3E;
	color: #fff;
}
#company p {
	padding-top: 30px;
	text-align: center;
}



@media screen and ( min-width:801px ) {
#pagetop {
	right: 10px;
	bottom: 15px;
}
}


@media screen and ( max-width:800px ) {
fooder {
	font-size: 80%;
}
#menu-liA {
	width: 90%;
}
#menu-liA ul {
	width: 100%;
  padding: 0;
	flex-wrap: nowrap;
	justify-content: center;
}
#menu-liA > ul > li {
	width: 100px;
	padding: 0 5px;
	box-sizing: border-box;
	white-space: nowrap;
}

#menuB {
	height: auto;
	padding: 15px 0;
}
#menu-liB ul {
	flex-wrap: wrap;
	margin-top: 25px;
}
#menu-liB > ul > li {
	width: auto;
	margin: 5px 10px;
}
}

@media screen and ( max-width:415px ) {
}


/************************ページＴＯＰボタン***********************/
/**************************************************************/
#pagetop {
	width: 60px;
	height: 60px;
	position: fixed;
	z-index: 8;
}
#pagetop a {
	width: 100%;
	height: 100%;
	display: block;
	text-indent: 100%;
	white-space: nowrap;
	background: url("../../img/sign.png") no-repeat 0 0 / cover;
	overflow: hidden;
	border-radius: 50%;
	transition: box-shadow .3s;
}

/* ---------Float-------- */
#pagetop a{
  display: inline-block;
  transition-property: transform;
}

#pagetop a:hover {
	transform: translateY(-8px);
}


@media screen and ( min-width:801px ) {
#pagetop {
	right: 10px;
	bottom: 15px;
}
}

@media screen and ( max-width:800px ) {
#pagetop {
	right: 10px;
	bottom: 80px;
}
}


/***********************サイドボタン***********************/
.sidebutton2 {
	position: fixed;
	z-index: 9;
}

.sidebutton2 li a {
	background: no-repeat 0 0 / cover;
	display: block;
	line-height: 0;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	transition: box-shadow .3s;
	border-radius: 50%;
}

/* ---------Float--------- */
.sidebutton2 ul li a{
  display: inline-block;
  transition-property: transform;
}


@media screen and ( min-width:801px ) {
.sidebutton2 {
	bottom: 100px;
	right: 10px;
}
.sidebutton2 li {
 	margin-bottom: 20px;
}
.sidebutton2 li a {
	width: 160px;
	height: 160px;
	background: url("../../img/button.png") no-repeat 0 0 / contain;
	transition: box-shadow .3s;
}
.sidebutton2 li:last-of-type a {
	background: url("../../img/button2.png") no-repeat 0 0 / contain;
}
.sidebutton2 ul li a:hover {
  transform: translateX(-8px);
}
}

@media screen and ( max-width:800px ) {
.sidebutton2 {
	width: 100%;
	bottom: 0;
	left: 0;
}
.sidebutton2 ul {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.sidebutton2 ul li:hover {
  transform: translateY(-8px);
}

/********************サイドボタン2つ**********************/

.sidebutton2 li {
	width: 50%;
	background-color: #E0135A;
}

/********************サイドボタン1つ**********************/
/*
.sidebutton2 li {
	width: 100%;
	background-color: #E0135A;
}
*/
/******************************************************/

.sidebutton2 li:last-of-type {
	background-color: #4787B5;
}
.sidebutton2 li a {
	width: 100%;
	max-width: 375px;
	height: 60px;
	background: url("../../img/button_375_120.png") no-repeat center / contain;
	margin: 0 auto;
	display: block;
}
.sidebutton2 li:last-of-type a {
	background-image: url("../../img/button2_375_120.png");
}
}


/************************子供の画像******************************/
/**************************************************************/
#child {
	width: 200px;
	position: absolute;
	bottom: -120px;
	right: 70px;
	z-index: 2;
}
#child-2 {
	width: 200px;
	position: absolute;
	bottom: -120px;
	left: 70px;
	z-index: 2;
}
/*
#child-2 {
	width: 200px;
	position: absolute;
	top: -50px;
	left: 70px;
}
*/
#child-3 {
	width: 300px;
	position: absolute;
	bottom: -35px;
	right: 30px;
	z-index: 5;
}
#child-4 {
	width: 300px;
	position: absolute;
	bottom: -80px;
	left: -145px;
}

@media screen and ( min-width:480px ) and ( max-width:800px ) {
#child,
#child-2,
#child-3,
#child-4 {
	width: 150px;
}
#child {
	bottom: -40px;
	right: 30px;
}
#child-2 {
	bottom: -25px;
	left: 60px;
}
#child-3 {
	bottom: -20px;
	right: 60px;
}
#child-4 {
	bottom: -80px;
	left: 26px;
}
}


@media screen and ( max-width:479px ) {
#child,
#child-2 {
	width: 100px;
}
#child-3,
#child-4 {
	width: 150px;
}
#child {
	bottom: 10px;
	right: 12px;
}
#child-2 {
	bottom: 15px;
	left: 0px;
}
#child-3 {
	bottom: -20px;
	right: 60px;
}
#child-4 {
	bottom: -80px;
	left: 20px;
}
}


/*!----------Waves----------*/

.waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px;
  min-height:100px;
  max-height:150px;
}


/* Animation */
.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5) infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
0% {
	transform: translate3d(-90px,0,0);
}
100% {
	transform: translate3d(85px,0,0);
}
}


/*****************************************************************/
/*****************************************************************/
.object-fit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}

body .ofi {
	object-fit: contain;
	font-family: "object-fit: contain;";
}
body .ofi {
	object-fit: cover;
	font-family: "object-fit: cover;";
}


/**************************************************************/
/**************************************************************/
/*表示関連*/
.nods {
  display: none !Important;
}

.noborder {
  border: none !Important;
}

@media screen and ( min-width:769px ) {
.spOnly {
  display: none !important;
}

.nobr br {
  display: none !important;
}
}

@media screen and ( max-width:768px ) {
.pcOnly {
  display: none !important;
}
}


