@charset "UTF-8";

@media screen and (max-width: 999px){
img{
max-width: 100%;
height: auto;
width /***/:auto;
}

.pc{display:none !important;}
.sp{display:block !important;}



/****************************************

	ヘッダー

*****************************************/
header {}

#header {
	background-image: url("../header-bg01.png");
	background-repeat: repeat;
	background-position: left top;
}
#header-inner {
	margin: 0 15px;
}


#header-logo {}
#header-logo h1 {
	padding: 15px 0 15px 0;
	color: #C24729;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;
}
#header-logo h1 b {
	font-size: 18px;
	font-weight: 500;
	margin: 0 0 0 15px;
}
#header-logo h1 a {
	color: #C24729;
	text-decoration: none;
}


#header-navi ul {
	padding: 0 0 10px 0;
}
#header-navi ul li {
	float: left;
	line-height: 1;
	position: relative;
	padding: 0 15px 15px 26px;
}
#header-navi ul li:last-of-type {
	clear: both;
}
#header-navi ul li a {
	color: #C24729;
	font-size: 16px;
	font-weight: 500;
	text-decoration: none;
}
#header-navi ul li:before {
	content: "";
	position: absolute;
	top: -2px;
	left: 0;
	right: 0;
	display: block;
	width: 21px;
	height: 21px;
	background-image: url("../arrow01.png");
	background-size: contain;
	transition: all .4s ease-out;
}



/****************************************

	スクロールをしたら要素を動かす系

*****************************************/
/* fadeUp */
.fadeUp{
	animation-name:fadeUpAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeUpAnime{
	from {
		opacity: 0;
		transform: translateY(100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ふわっ（上から）*/
.fadeDown{
	animation-name: fadeDownAnime;
	animation-duration:0.5s;
	animation-fill-mode:forwards;
	opacity:0;
}
@keyframes fadeDownAnime{
	from {
		opacity: 0;
		transform: translateY(-100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* くるっ（ Y 軸（横へ）） */
.rotateY{
	animation-name: rotateYAnime;
	animation-duration:1s;
	animation-fill-mode:forwards;
}
@keyframes rotateYAnime{
	from{
		transform: rotateY(0);
		}
	to{
		transform: rotateY(-360deg);
		}
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger,
.fadeDownAnime,
.rotateYAnime{
	opacity: 0;
}



/****************************************

	フッター

*****************************************/
/*リンクの形状*/
#page-top a{
	background-image: url("../pagetop-sp.png");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: left top;
	display: block;
	width: 93px;
	height: 111px;
	font-size:0.6rem;
	transition:all 0.3s;
}
/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
	/*はじめは非表示*/
	opacity: 0;
	transform: translateX(150px);
}

/*　左の動き　*/
#page-top.LeftMove{
	animation: LeftAnime 0.5s forwards;
}
@keyframes LeftAnime{
  from {
		opacity: 0;
		transform: translateX(150px);
  }
  to {
		opacity: 1;
		transform: translateX(0);
	}
}

/*　右の動き　*/
#page-top.RightMove{
	animation: RightAnime 0.5s forwards;
}
@keyframes RightAnime{
	from {
		opacity: 1;
		transform: translateX(0);
	}
	to {
		opacity: 1;
		transform: translateX(150px);
	}
}




footer{}
#footer {
	background: url("../footer-bg01-sp.png");
	background-repeat: repeat-x;
	background-position: top left;
}
#footer-inner {
	margin: 0 15px;
}


#footer-contents {
	margin: 0 0 20px 0;
}
#footer-contents #footer-name {
	text-align: center;
	color: #fff;
	font-size: 14px;
	line-height: 1.2;
	padding: 75px 0 10px 0;
	letter-spacing: 1px;
}
#footer-contents #footer-name a {
	color: #fff;
	text-decoration: none;
}
#footer-contents #footer-name b {
	font-size: 22px;
	font-weight: 700;
	line-height: 1.7;
	letter-spacing: 3px;
}
#footer-contents #footer-aaddress {
	text-align: center;
	color: #fff;
	font-size: 14px;
	line-height: 1.2;
	letter-spacing: 1px;
}


#footer-link {}
#footer-link p {
	text-align: center;
	position: relative;
	width: 290px;
	height: 124px;
	margin: 20px auto 20px auto;
	display: block;
	overflow: hidden;
	cursor: pointer;
}
#footer-link p img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	display: block;
}
#footer-link p:hover img:nth-of-type(2) {
	opacity: 0;
}


#footer-copyright {
	background: #E8F5F2;
}
#footer-copyright p {
	text-align: center;
	color: #464646;
	font-size: 12px;
	line-height: 1.2;
	padding: 12px 0 12px 0;
}



/****************************************

	home

*****************************************/
#top {}


#top-visual {
	background-image: url("../header-bg02.png");
	background-repeat: repeat;
	background-position: center bottom;
	position: relative;
}
#top-visual-inner {
	background-image: url("../header-bg03.png");
	background-repeat: no-repeat;
	background-position: left 12% bottom 20px;
}

#top-visual-image {
	width: 100%;
	position: relative;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: auto;
	overflow: initial;
}
#top-visual-image p img {
	width: 100%;
	height: auto;
	position: relative;
	z-index: 1;
}


#top-guidance {}
#top-guidance p {
	padding: 10px 0 0 0;
	text-align: center;
}


#top-guidance-image {
	padding: 0 0 50px 0;
	margin: -65px 15px 0 15px;
}
#top-guidance-image ul {
	margin: 0 15px 0 15px;
}
#top-guidance-image ul li {
	width: 48%;
	float: left;
	margin: 0 4% 4% 0;
}
#top-guidance-image ul li img {
	width: 100%;
}
#top-guidance-image ul li:nth-of-type(2n) {
	margin: 0 0 4% 0;
}


#header-recruitment {
	position: absolute;
	top: -35px;
	right: 5%;
	z-index: 100;
}
#header-recruitment p {}
#header-recruitment p img {
	height: 170px;
}



#top-flow {
	padding: 50px 0 55px 0;
}
#top-flow-inner {
	background-image: url("../../img/flow-bg01-sp.png");
	background-repeat: no-repeat;
	background-position: center top 450px;
}

#top-flow-inner h2 {
	text-align: center;
	padding: 0 15px 30px 15px;
}
#top-flow-inner p.prt01 {
	text-align: center;
	padding: 0 15px 30px 15px;
}

#top-flow-box {
	margin: 0 15px;
}


#top-flow-box h3.type01 {
	text-align: center;
	color: #464646;
	font-size: 26px;
	font-weight: 700;
	position: relative;
}
#top-flow-box h3.type01::after {
	content: "";
	position: absolute;
	top: 5px;
	width: 35px;
	height: 30px;
	background-image: url("../../img/flow-prt02.png");
	background-size: contain;
	margin: 0 0 0 10px;
}
#top-flow-box h3.type02 {
	text-align: center;
	color: #464646;
	font-size: 26px;
	font-weight: 700;
	position: relative;
}
#top-flow-box h3.type02::after {
	content: "";
	position: absolute;
	top: -5px;
	width: 30px;
	height: 55px;
	background-image: url("../../img/flow-prt03.png");
	background-size: contain;
	margin: 0 0 0 10px;
}
#top-flow-box h3.type03 {
	text-align: center;
	color: #464646;
	font-size: 26px;
	font-weight: 700;
	position: relative;
}
#top-flow-box h3.type04 {
	text-align: center;
	color: #464646;
	font-size: 26px;
	font-weight: 700;
	position: relative;
}
#top-flow-box h3.type04::after {
	content: "";
	position: absolute;
	top: -18px;
	width: 66px;
	height: 55px;
	background-image: url("../../img/flow-prt04.png");
	background-size: contain;
	margin: 0 0 0 10px;
}
#top-flow-box h3.type05 {
	text-align: center;
	color: #464646;
	font-size: 26px;
	font-weight: 700;
	position: relative;
}
#top-flow-box h3.type06 {
	text-align: center;
	color: #464646;
	font-size: 26px;
	font-weight: 700;
	position: relative;
	padding: 0 0 30px 0;
}
#top-flow-box h3.type06::after {
	content: "";
	position: absolute;
	top: -40px;
	width: 72px;
	height: 80px;
	background-image: url("../../img/flow-prt05.png");
	background-size: contain;
	margin: 0 0 0 10px;
}


#top-flow-box p.type01 {
	color: #464646;
	font-size: 16px;
	font-weight: 500;
	padding: 0 0 20px 0;
}
#top-flow-box p.type01 a {
	color: #464646;
	text-decoration: none;
}
#top-flow-box p.type02 {
	color: #464646;
	font-size: 16px;
	font-weight: 500;
	padding: 0 0 20px 0;
}
#top-flow-box p.type03 {
	text-align: center;
	color: #464646;
	font-size: 16px;
	font-weight: 500;
	padding: 0 0 20px 0;
}
#top-flow-box p.type04 {
	text-align: center;
	color: #464646;
	font-size: 16px;
	font-weight: 500;
	padding: 0 0 20px 0;
}
#top-flow-box p.type05 {
	text-align: center;
	color: #464646;
	font-size: 16px;
	font-weight: 500;
	padding: 0 0 20px 0;
}


#top-flow-box p.image01 {
	text-align: center;
	padding: 0 0 35px 0;
}
#top-flow-box p.image02 {
	text-align: center;
	padding: 0 0 35px 0;
}
#top-flow-box p.image03 {
	margin: 0 0 -100px 0;
}
#top-flow-box p.image03 img {
	height: 100px;
}

#top-flow-box p.image04 {
	text-align: center;
	padding: 0 0 35px 0;
}
#top-flow-box p.image05 {
	text-align: center;
	padding: 0 0 35px 0;
}


#top-flow-box p.arrow01 {
	text-align: center;
	padding: 0 0 15px 0;
}
#top-flow-box p.arrow02 {}
#top-flow-box p.arrow03 {}



#top-interview {
	background-image: url("../../img/interview-bg01.jpg");
	background-repeat: repeat;
	background-position: center top;
}
#top-interview-inner {
	width: 100%;
	background-image: url("../../img/interview-bg02.jpg");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: contain;
}

#top-interview-inner h2 {
	text-align: center;
	padding: 60px 15px 25px 15px;
}
#top-interview-inner h2 img {
	height: 55px;
}


#top-interview-box01 {
	margin: 0 15px;
	padding: 10px 0 100px 10px;
}
#top-interview-box01-bg01 {
	background-image: url("../../img/interview-bg03.png");
	background-repeat: repeat;
	background-position: left top;
	padding: 10px;
  border-radius: 30px;
  position: relative;
}
#top-interview-box01-bg01::after{
	content: "";
	position: absolute;
	bottom: -34px;
	right: 54px;
	display: block;
	width: 40px;
	height: 34px;
	background-image: url("../../img/interview-bg04.png");
	background-size: contain;
	z-index: 90;
}

#top-interview-box01-bg02 {
	margin: -20px 0 0 -20px;
	background: #fff;
	padding: 25px 20px 50px 30px;
  border-radius: 30px;
  position: relative;
}
#top-interview-box01-bg02::before{
	content: "";
	position: absolute;
	bottom: -35px;
	right: 54px;
	display: block;
	width: 50px;
	height: 35px;
	background-image: url("../../img/interview-bg05.png");
	background-size: contain;
	z-index: 100;
}
#top-interview-box01-bg02::after{
	content: "";
	position: absolute;
	bottom: -70px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	display: block;
	width: 157px;
	height: 100px;
	background-image: url("../../img/interview-prt01.png");
	background-size: contain;
	z-index: 150;
}

#top-interview-box01 h3 {
	color: #464646;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 1px;
	padding: 0 0 15px 0;
}
#top-interview-box01 p.txt {
	color: #464646;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 1px;
}


#top-interview-box02 {
	margin: 0 15px;
	padding: 10px 0 100px 10px;
}
#top-interview-box02-bg01 {
	background-image: url("../../img/interview-bg06.png");
	background-repeat: repeat;
	background-position: left top;
	padding: 10px;
  border-radius: 30px;
  position: relative;
}
#top-interview-box02-bg01::after{
	content: "";
	position: absolute;
	bottom: -34px;
	right: 54px;
	display: block;
	width: 40px;
	height: 34px;
	background-image: url("../../img/interview-bg07.png");
	background-size: contain;
	z-index: 90;
}

#top-interview-box02-bg02 {
	margin: -20px 0 0 -20px;
	background: #fff;
	padding: 25px 20px 50px 30px;
  border-radius: 30px;
  position: relative;
}
#top-interview-box02-bg02::before{
	content: "";
	position: absolute;
	bottom: -35px;
	right: 54px;
	display: block;
	width: 50px;
	height: 35px;
	background-image: url("../../img/interview-bg05.png");
	background-size: contain;
	z-index: 100;
}
#top-interview-box02-bg02::after{
	content: "";
	position: absolute;
	bottom: -70px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	display: block;
	width: 163px;
	height: 100px;
	background-image: url("../../img/interview-prt02.png");
	background-size: contain;
	z-index: 150;
}

#top-interview-box02 h3 {
	color: #464646;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 1px;
	padding: 0 0 15px 0;
}
#top-interview-box02 p.txt {
	color: #464646;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 1px;
}


#top-interview-box03 {
	margin: 0 15px;
	padding: 10px 0 100px 10px;
}
#top-interview-box03-bg01 {
	background-image: url("../../img/interview-bg08.png");
	background-repeat: repeat;
	background-position: left top;
	padding: 10px;
  border-radius: 30px;
  position: relative;
}
#top-interview-box03-bg01::after{
	content: "";
	position: absolute;
	bottom: -34px;
	right: 54px;
	display: block;
	width: 40px;
	height: 34px;
	background-image: url("../../img/interview-bg09.png");
	background-size: contain;
	z-index: 90;
}

#top-interview-box03-bg02 {
	margin: -20px 0 0 -20px;
	background: #fff;
	padding: 25px 20px 50px 30px;
  border-radius: 30px;
  position: relative;
}
#top-interview-box03-bg02::before{
	content: "";
	position: absolute;
	bottom: -35px;
	right: 54px;
	display: block;
	width: 50px;
	height: 35px;
	background-image: url("../../img/interview-bg05.png");
	background-size: contain;
	z-index: 100;
}
#top-interview-box03-bg02::after{
	content: "";
	position: absolute;
	bottom: -70px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	display: block;
	width: 166px;
	height: 100px;
	background-image: url("../../img/interview-prt03.png");
	background-size: contain;
	z-index: 150;
}

#top-interview-box03 h3 {
	color: #464646;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 1px;
	padding: 0 0 15px 0;
}
#top-interview-box03 p.txt {
	color: #464646;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 1px;
}


#top-interview-box04 {
	margin: 0 15px;
	padding: 10px 0 100px 10px;
}
#top-interview-box04-bg01 {
	background-image: url("../../img/interview-bg10.png");
	background-repeat: repeat;
	background-position: left top;
	padding: 10px;
  border-radius: 30px;
  position: relative;
}
#top-interview-box04-bg01::after{
	content: "";
	position: absolute;
	bottom: -34px;
	right: 54px;
	display: block;
	width: 40px;
	height: 34px;
	background-image: url("../../img/interview-bg11.png");
	background-size: contain;
	z-index: 90;
}

#top-interview-box04-bg02 {
	margin: -20px 0 0 -20px;
	background: #fff;
  padding: 25px 20px 50px 30px;
  border-radius: 30px;
  position: relative;
}
#top-interview-box04-bg02::before{
	content: "";
	position: absolute;
	bottom: -35px;
	right: 54px;
	display: block;
	width: 50px;
	height: 35px;
	background-image: url("../../img/interview-bg05.png");
	background-size: contain;
	z-index: 100;
}
#top-interview-box04-bg02::after{
	content: "";
	position: absolute;
	bottom: -70px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	display: block;
	width: 164px;
	height: 100px;
	background-image: url("../../img/interview-prt04.png");
	background-size: contain;
	z-index: 150;
}

#top-interview-box04 h3 {
	color: #464646;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 1px;
	padding: 0 0 15px 0;
}
#top-interview-box04 p.txt {
	color: #464646;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.7;
	letter-spacing: 1px;
}



#top-entry {
	padding: 70px 0 10px 0;
}
#top-entry-inner {
	margin: 0 15px;
}

#top-entry-inner h2 {
	text-align: center;
	padding: 0 0 30px 0;
}
#top-entry-inner ul.type01 {
	padding: 0 0 30px 0;
}
#top-entry-inner ul.type01 li {
	color: #464646;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8;
	padding: 0 0 0 18px;
	position: relative;
	display: block;
}
#top-entry-inner ul.type01 li:before{
	position: absolute;
	content: '';
	top: 10px;
	left: 0;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #365EA7;
}


#top-entry-inner table {
	width: 100%;
	margin: 0 auto;
	border-collapse: collapse;
	border: 2px solid #DE9B8B;
	padding: 0 0 80px 0;
}
#top-entry-inner table th {
	background: #FFECE8;
	padding: 10px;
	border: 1px solid #DE9B8B;
	font-weight: 400;
	vertical-align: middle;
	color: #333;
	font-size: 16px;
	width: 32%;
}
#top-entry-inner table th span {
	color: #C24729;
}
#top-entry-inner table td {
	background: #FFF;
	padding: 10px;
	border: 1px solid #DE9B8B;
	vertical-align: middle;
	color: #333;
	font-size: 16px;
}

#top-entry-inner table td label {
	display: block;
}

#top-entry-inner table td input[name="entry-email"],
#top-entry-inner table td input[name="entry-tel"],
#top-entry-inner table td input[name="entry-schoolyear"],
#top-entry-inner table td input[name="entry-school"],
#top-entry-inner table td input[name="entry-kana"],
#top-entry-inner table td input[name="entry-name"] {
	width: 100%;
  padding: 10px;
	color: #333;
	background-color: #EEEEEE;
	border: none;
	padding: 10px;
}

#top-entry-inner table td textarea[name="entry-address"],
#top-entry-inner table td textarea[name="entry-inquiry"] {
	width: 100%;
  padding: 10px;
	color: #333;
	background-color: #EEEEEE;
	border: none;
	padding: 10px;
}


#top-entry-contact {
	margin: 35px 0 0 0;
	background-image: url("../../img/contact-bg02-sp.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	padding: 0 0 65px 0;
}
#top-entry-contact p.txt {
	text-align: center;
	color: #464646;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;
	padding: 0 0 15px 0;
}
#top-entry-contact p.btn {
	text-align: center;
	line-height: 1;
}

#top-entry-inner form input[type="submit"] {
	background: transparent;
	background-image: url("../form-button.png");
	background-size: contain;
	display: block;
	font-size: 0;
	margin: 2rem auto;
	width: 143px;
	height: 37px;
	transition: opacity ease .3s;

	-webkit-appearance: none;
	border: none;
	border-radius: 0;
	cursor: pointer;
}

#top-entry-inner form input[type="submit"]:hover {
	opacity: .7;
}

.message-success {
	border: 2px solid green;
	background: #cdeccd;
	color: green;
	font-weight: bold;
	padding: .5rem 1rem;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
}

.message-fail {
	border: 2px solid red;
	background: #f3d4d4;
	color: red;
	font-weight: bold;
	padding: .5rem 1rem;
	position: fixed;
	left: 0;
	bottom: 0;
	width: 100%;
}

.honey {display:none;
}

/****************************************

	以下レスポンシブ　記述終了用　削除禁止

*****************************************/
}
