@charset "utf-8";
/* CSS Document */

/*共通*/
* {
	float: none;
	position: static;
	box-sizing: border-box
}
html {
	font-size: 10px;
}
body{
	background:#C4ECE9;
	font-family: YakuHanJP_Noto, 'Noto Sans JP', sans-serif;
	font-size: 10px;
	line-height:1.85;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%; 
	word-wrap: break-word;
}
body.appear{
	background:#C4ECE9;
}
img {
	max-width: 100%;
	height: auto;
}
main {
	display: inline-block;
	vertical-align: top;
}
aside {
	width: calc(30% - 26px);
	display: inline-block;
	margin-left: 20px;
	box-sizing: border-box;
	border: solid 1px;
}
p {
	line-height: 2;
	/*
	width: 60%;
	*/
	display: inline-block;
	padding-right: 10px;
	box-sizing: border-box;
	vertical-align: top;
	margin: 0;
}
table {
	width: 100%;
	border-collapse: collapse;
}
th,td {
	border: solid 1px;
	padding: 10px;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
li {
	display: list-item;
	text-align: -webkit-match-parent;
	list-style: none;
}
a{
	color: #333;
	text-decoration: none;
    outline: none;
}
img{
    width: 100%;
    height: auto;
}
article {
	margin: 0 auto
}
article p {
	font-size: 15.5px;
	line-height: 1.55;
}
::placeholder {
  color: #B7B7B7;
}

@media screen and (min-width: 768px) {

	/*
	article p,
	article dd {font-size: 17px; margin: 30px 0;}

	article section {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
	}
	*/

}



/*----------- Google Font --------------*/
@import url('https://fonts.googleapis.com/css2?family=Cinzel&family=Cormorant+Garamond:wght@300;500&family=Cormorant:wght@700&display=swap');


/*====== header =============================================*/
#header{
	/*fixedで上部固定*/
	position: fixed;
	width:100%;
	height: 70px;
	z-index: 99;
	/*以下はレイアウトのためのCSS*/
	display: flex;
	align-items: center;
}

@media screen and (min-width: 768px) {

	#header{
		/*fixedで上部固定*/
		height: 230px;
		display: unset;
	}
	#header .header-in {
		width: 100%;
		height: 70px;
		display: flex;
		align-items: center;
	}
	
}

/*HeightMinというクラス名がついたら背景を白に*/
#header.HeightMin{
	position: fixed;
    z-index: 999;/*最前面へ*/
	height:70px;
	background: rgba(255, 255, 255, 0.85);
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}

/*　上に上がる動き　*/
#header.UpMove{
	animation: UpAnime 0.5s forwards;
}

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

/*　下に下がる動き　*/

#header.DownMove{
	/*
	animation: DownAnime 0.5s forwards;
	*/
}
@keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-100px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}

/*画面遷移の後現れるコンテンツ設定*/
#container{
	opacity: 0;/*はじめは透過0に*/
    position: relative;
    z-index: 1;
}

/*bodyにappearクラスがついたら出現*/
body.appear #container{
	animation-name:PageAnimeAppear;
	animation-duration:1s;
	animation-delay:0.2s;
	animation-fill-mode:forwards;
	opacity: 0;
}

@keyframes PageAnimeAppear{
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
}
}

@media screen and (max-width:1000px) {
	#header-nav,
	#utility-nav {
			display: none;
	}
}





/*===========================================================*/
/*機能編  5-2-1　3本線が×に*/
/*===========================================================*/
.openbtn{
	display: none;
}

@media screen and (max-width:1000px) {
	.openbtn{
		display: block;
		position:fixed;
		top:0;
		right:0;
		z-index: 9999;/*ボタンを最前面に*/
		cursor: pointer;
		width: 75px;
		height:70px;
		background:#000;
	}

	/*×に変化*/	
	.openbtn span{
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 20px;
		height: 3px;
		border-radius: 2px;
		background-color: #fff;
		width: 45%;
	}
	.openbtn span:nth-of-type(1) {
		top:20px;	
	}
	.openbtn span:nth-of-type(2) {
		top:34px;
	}
	.openbtn span:nth-of-type(3) {
		top:47px;
	}
	.openbtn.active span:nth-of-type(1) {
		top: 41px;
		left: 28px;
		transform: translateY(6px) rotate(-45deg);
		width: 30%;
	}
	.openbtn.active span:nth-of-type(2) {
		opacity: 0;
	}
	.openbtn.active span:nth-of-type(3){
		top: 52px;
		left: 23px;
		transform: translateY(-6px) rotate(45deg);
		width: 30%;
	}
}

@media screen and (max-width:768px) {
	.openbtn{
			width:70px;
			height: 70px;
	}
	/*×に変化*/	
	.openbtn span{
		left: 17px;
	}
	.openbtn span:nth-of-type(1) {
		top:20px;	
	}
	.openbtn span:nth-of-type(2) {
		top:33px;
	}
	.openbtn span:nth-of-type(3) {
		top:45px;
	}
	.openbtn.active span:nth-of-type(1) {
		top: 28px;
		left: 22px;
	}
	.openbtn.active span:nth-of-type(3){
		top: 40px;
		left: 22px;
	}
}



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


/*　ハンバーガーメニューボタン　*/
.openbtn {
	display: block;
	position: fixed;
	z-index: 3;
	right: 0;
	top: 0;
	width: 70px;
	height: 70px;
	cursor: pointer;
	text-align: center;
}
.openbtn span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 3px ;
  left    : 20px;
  background : #BBBBBB;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.openbtn span:nth-child(1) {
  top: 25px;
}
.openbtn span:nth-child(2) {
  top: 35px;
}
.openbtn span:nth-child(3) {
  top: 45px;
}

/* スマホメニューを開いてる時のボタン */
.openbtn.active span:nth-child(1) {
	top: 37px;
	left: 22px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.openbtn.active span:nth-child(2),
.openbtn.active span:nth-child(3) {
	top: 37px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/* メニュー背景　*/
nav.panelactive {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	color: #fff;
	background: rgba( 00,00,00,0.9 );
	text-align: center;
	width: 100%;
	transform: translateX(100%);
	transition: all 0.6s;
	height: 100%;
	padding: 15% 0 0;
}
nav.panelactive ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
nav.panelactive ul a {
	display: block;
  color: #fff;
}
/* g-nav-list　*/
nav #g-nav-list li {
	border-bottom: 1px solid #fff;
	padding: 20px 0;
	list-style-type: none;
  width: 100%;
  transition: .4s all;
	text-align: left;
}
nav #g-nav-list li h3 {
	font-weight: normal;
}
nav #g-nav-list li div {
	padding-top: 20px;
}
nav #g-nav-list li div p {
	display: block;
}
nav #g-nav-list li div p a {
	font-size: 14px;
	line-height: 2.2;
	color: #919191;
}
nav #g-nav-list li div p a::before {
	content: "－";
	margin-right: 4px;
}
/* g-nav-btn*/
nav #g-nav-btn {
	margin: 25px auto 15px;
}
nav #g-nav-btn li + li {
	margin-top: 12px;
}
nav #g-nav-btn a {
	width: 100%;
	height: 50px;
	line-height: 50px;
	font-size: 14px;
	border-radius: 6px;
}
nav #g-nav-btn .entry a {
	background: #FF4833;
}
nav #g-nav-btn .contact a {
	background: #000;
	border: 1px solid #fff
}
/* nav-copy*/
nav .nav-copy {
	font-size: 12px;
	color: #fff;
}

/*==================================================
アコーディオンのためのcss
===================================*/
/*アコーディオン全体*/
.accordion-area{
	list-style: none;
	width: 96%;
	max-width: 900px;
	margin:0 auto;
}
/*アコーディオンタイトル*/
.title {
	position: relative;/*+マークの位置基準とするためrelative指定*/
	cursor: pointer;
	font-size:1rem;
	font-weight: normal;
	transition: all .5s ease;
}
/*アイコンの＋と×*/
.title::before,
.title::after{
	position: absolute;
	content:'';
	width: 15px;
	height: 2px;
	background-color: #fff;
}
.title::before{
	top:48%;
	right: 5px;
	transform: rotate(0deg);
}
.title::after{    
	top:48%;
	right: 5px;
	transform: rotate(90deg);
}
/*　closeというクラスがついたら形状変化　*/
.title.close::before{
transform: rotate(45deg);
}
.title.close::after{
transform: rotate(-45deg);
}
/*アコーディオンで現れるエリア*/
.box {
	display: none;/*はじめは非表示*/
}
/* クリックでjQueryで追加・削除 */
nav.panelactive.active {
  opacity: 100;
  display: block;
	transform: translateX(0%);
	padding: 80px 55px 0;
}




/*====== logo-head =============================================*/
.logo-head img  {
	display: flex;
	margin: 0 0 0 5%;
	width: 200px;
	z-index: 10;
	position: relative;
}

/*====== nav =============================================*/
@media screen and (min-width: 768px) {
		/*---- header-nav ----*/	
		#header-nav  {
			position: absolute;
			left: 220px;
			/*
			margin-left: 2%;
			*/
		}
		#header-nav ul {
			display: flex;
			/*padding: 0 0 0 5%;*/
		}
		#header-nav ul li {
			position: relative;
			margin: 0 10px;
		}


	/*========= ナビゲーションドロップダウンのためのCSS ===============*/
	/*==ナビゲーション全体の設定
	nav{
		background:#333;
		color:#fff;
		text-align: center;
	}
	*/
	/*ナビゲーションを横並びに*/
	nav#header-nav ul{
		list-style: none;
		display: flex;
		justify-content: center;
	}
	/*2階層目以降は横並びにしない*/
	nav#header-nav ul ul{
		display: block;
	}
	/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
	nav#header-nav ul li{
		position: relative;
	}
	/*ナビゲーションのリンク設定*/
	nav#header-nav ul li a{
		display: block;
		text-decoration: none;
		color: #333;
		/*
		padding:20px 35px;
		*/
		transition:all .3s;
	}
	nav#header-nav ul li li a{
		padding: 10px;
		font-size: 14px;
		line-height: 1.5;
	}
	/*==矢印の設定 */
	/*2階層目を持つliの矢印の設定*/
	nav#header-nav ul li.has-child {
		padding-left: 15px;
	}
	nav#header-nav ul li.has-child::before{
		content:'';
		position: absolute;
		left: 0;
		top: 3px;
		width:6px;
		height:6px;
		border-top: 1px solid #333;
		border-right: 1px solid #333;
		transform: rotate(135deg);
	}
	/*3階層目を持つliの矢印の設定*/
	nav#header-nav ul ul li.has-child::before{
		content:'';
		position: absolute;
		left:6px;
		top:17px;
		width:6px;
		height:6px;
		border-top: 1px solid #333;
		border-right: 1px solid #333;
		transform: rotate(45deg);
	}

	/*== 2・3階層目の共通設定 */
	/*下の階層を持っているulの指定*/
	nav#header-nav li.has-child ul{
		/*絶対配置で位置を指定*/
		position: absolute;
		left: -5px;
		top: 20px;
		z-index: 4;
		/*形状を指定*/
		background: #00AFB1;
		width: 190px;
		/*はじめは非表示*/
		visibility: hidden;
		opacity: 0;
		/*アニメーション設定*/
		transition: all .3s;
	}
	/*hoverしたら表示*/
	nav#header-nav li.has-child:hover > ul,
	nav#header-nav li.has-child ul li:hover > ul,
	nav#header-nav li.has-child:active > ul,
	nav#header-nav li.has-child ul li:active > ul{
		visibility: visible;
		opacity: 1;
	}
	/*ナビゲーションaタグの形状*/
	nav#header-nav li.has-child ul li {
		margin: 0;
	}
	nav#header-nav li.has-child ul li a{
		color: #fff;
		border-bottom:solid 1px rgba(255,255,255,0.6);
	}
	nav#header-nav li.has-child ul li:last-child a{
		border-bottom:none;
	}
	nav#header-nav li.has-child ul li a:hover,
	nav#header-nav li.has-child ul li a:active{
		background: #004843;
	}
	/*==3階層目*/
	/*3階層目の位置*/
	nav#header-nav li.has-child ul ul{
		top:0;
		left:182px;
		background:#66ADF5;
	}
	nav#header-nav li.has-child ul ul li a:hover,
	nav#header-nav li.has-child ul ul li a:active{
		background:#448ED3;
	}
	/*---- utility-nav ----*/	
	#utility-nav ul {
		position: fixed;
		top: 0;
		right: 0;
		z-index: 999;
		display: flex;
	}
	#utility-nav ul li a {
		color: #fff;
		display: block;
		width: 135px;
		transition: all .5s;
		text-align: center;
		font-size: 0.9rem;
		line-height: 70px;
	}
	#utility-nav ul li.btn-entry a {
		background: #FF4833;
	}
	#utility-nav ul li.btn-entry a:hover {
		background: #ff897c;
	}
	#utility-nav ul li.btn-contact a {
		background: #000;
	}
	#utility-nav ul li.btn-contact a:hover {
		background: #6e6e6e;
	}
}

/*====== main-area ==============================*/
#main-area {
	width: 100%;
	margin-top: 75px;
}
#main-area-style01 {
  background-color: #fff;
}
#main-area-style01::before {
	content: "";
  background-color: #C4ECE9;
}
#main-area-style01-in {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 30px;
}

/*---- breadcrumb ----*/	
.breadcrumb {
	display: none;
}


@media screen and (min-width: 768px) {
	#main-area {
		margin-top: 230px;
	}

		/*---- breadcrumb ----*/	
		.breadcrumb {
			display: block;
			max-width: 1000px;
			width: 100%;
			margin: 0 auto;
			padding: 30px 0;
		}
		.breadcrumb ul {
			display: flex;
			margin-left: 13px;
		}
		.breadcrumb li,
		.breadcrumb a {
			font-size: 0.8rem;
			color: #707070;
		}
		.breadcrumb a {
			color: #9F9F9F;
		}
		.breadcrumb li::after {
			content: "→";
			margin: 0 15px;
		}
		.breadcrumb li:last-child::after {
			display: none;
		}

}



/*====== btn-style ===================*/
.btn-style a{
	display: block;
	width: 88%;
	height: 55px;
	margin: 0 auto;
	line-height: 55px;
	text-align: center;
	font-size: 14px;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
	border-radius: 6px;
}
.btn-style.blue a {
	background: #00AFB1;
	color: #fff;
}
.btn-style.blue a:hover {
	background: #36cdcf;
}
.btn-style.white a {
	background: #fff;
	color: #000;
	border: 1px solid #fff;;
}
.btn-style.white a:hover {
	background: rgba(255, 255, 255, 0.5);
	border: 1px solid #fff;;
}
.btn-style.black a {
	background: #000;
	color: #fff;
}
.btn-style.black-bd_w a {
	background: #000;
	color: #fff;
	border: #fff solid 1px;
}
.btn-style.black-bd_w a:hover,
.btn-style.black a:hover {
	background: #3b3b3b;
}
.btn-style.red a {
	background: #FF4833;
	color: #fff;
}
.btn-style.red a:hover {
	background: #FF7767;
}

@media screen and (min-width: 768px) {
	.btn-style a{
		width: 160px;
    height: 40px;
    line-height: 40px;
		}
}

/*====== title-style ==============================*/
/*-----  title-style-a  ------*/
#title-style-a {
  width: 100%;
  height: 141px;
  position: relative;
  margin: 0 auto;
  background-color: #fff;
  display: flex;
}
#title-style-a div {
  display: flex;
  align-items: center;
}
#title-style-a::before {
  content: "";
  background-color: #C4ECE9;
  width: 100%;
  height: 60px;
  position: absolute;
  top: -1px;
}
#title-style-a p {
  position: absolute;
  font-size: clamp(38px,3vw,37px);
  font-family: 'Cormorant', serif;
  color: #C1C1C1;
  left: 3%;
  top: 54px;
}
#title-style-a h1 {
  position: absolute;
  color: #C1C1C1;
  font-weight: normal;   
  left: 4%;
  top: 110px;
  font-size: 16px;
}
#title-style-a img {
  width: auto;
  height: 100%;
  position: absolute;
  z-index: 1;
  right: 5%;
	bottom: -10px;
}
@media screen and (min-width: 768px) {
	#title-style-a {
		height: 110px;
	}
	#title-style-a::before {
		height: 0;
	}
	#title-style-a div {
		width: 1000px;
		margin: 0 auto;
		position: relative;
		display: unset;
	}
	#title-style-a img {
    right: 1.5%;
    height: 280px;
    bottom: -50px;
	}
	#title-style-a p {
    left: 1.1%;
    font-size: 85px;
    top: -41px;
	}
	#title-style-a h1 {
    left: 2%;
    top: 81px;
    font-size: 24px;
	}
}

/*-----  title-style-b  ------*/
#title-style-b {
  width: 100%;
  height: 141px;
  position: relative;
  margin: 0 auto;
  background-color: #fff;
}
#title-style-b::before {
  content: "";
  background-color: #C4ECE9;
  width: 100%;
  height: 60px;
  position: absolute;
  top: -1px;
}
#title-style-b h1 {
  position: absolute;
  color: #9F9F9F;
  font-weight: normal;
  right: 0;   
  left: 0;
  top: 90px;
  text-align: center;
  font-size: 27px;
}

@media screen and (min-width: 768px) {

	#title-style-b {
		height: 112px;
	}
	#title-style-b::before {
		height: 0;
	}
	#title-style-b h1 {
    top: 30px;
    font-size: 60px;
	}
}

/*====== form-area ==============================*/
/*-----  form-area  ------*/
#form-area p.form-conf-txt {
	padding: 0 0 50px;
}
#form-area dl {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #D5D5D5;
}
#form-area dt {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 10px;
	line-height: 1.3;
}
#form-area dt::before {
	content: "必須";
	font-size: 12px;
	font-weight: normal;
	background-color: #E04A43;
	color: #fff;
	border-radius: 5px;
	line-height: 18px;
	height: 18px;
	width: 31px;
	text-align: center;
	display: inline-block;
	margin-right: 3px;
	position: relative;
	bottom: 2px;
}
#form-area dt.reqd-none::before {
	content: none;
}
#form-area dt span {
	position: relative;
	left: -5px;
}
#form-area dd {
	line-height: 1.7;
}
#form-area input,
#form-area textarea {
	width: 100%;
	background-color: #F3F3F3;
	border: none;
	outline: none;
	font-size: 15px;
	padding: 15px 10px;
	border-radius: 7px;
	font-family: YakuHanJP_Noto, 'Noto Sans JP', sans-serif;
}
#form-area input:placeholder-shown,
#form-area textarea:placeholder-shown {
	background-color: #F3F3F3;
}
#form-area input:not(:placeholder-shown),
#form-area textarea:not(:placeholder-shown) {
	outline: 3px solid #E2E2E2;
	background-color: #fff;
}
#form-area input:focus,
#form-area textarea:focus {
	outline: 3px solid #E2E2E2;
	background-color: #fff;
}
#form-area textarea {
	height: 150px;
}
#form-area input[type="text"],
#form-area input[type="number"] {
	color: #333;
}
#form-area p.note {
	font-size: 15px;
}
/*-- form-radio --*/
#form-area dl.form-radio input {
	position: relative;
	bottom: 3px;
	width: 15px;
	height: 15px;
	-moz-transform: scale( 1.2 , 1.2 );
	-webkit-transform: scale( 1.2 , 1.2 );
	outline: none;
}
#form-area dd.form-radio p {
	margin-left: -3px;
}
#form-area dl.form-radio label {
	margin-right: 10px;
}
/*-- form-select --*/
#form-area dl.form-select select {
	border: 1px solid #edebeb;
	background: #edecec;
	padding: 8px 8px 7px 8px;
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	-webkit-appearance: none;
	border-radius: 5px;
	width: 70px;
	margin-right: 8px;
	height: 45px;
}
#form-area dl.form-select select + select {
	margin-left: 5px;
}
/*-- form-age --*/
#form-area dl.form-age input {
	width: 100%;
}
/*-- form-add --*/
#form-area dl.form-add div + div {
	margin-top: 15px;
}
#form-area dl.form-add input.ipt01 {
	width: 65%;
}
/*-- form-tel --*/
#form-area dl.form-tel input {
	width: 90px;
}
/*-- form-educ --*/
/*
#form-area dl.form-educ dd {
	padding: 3px 0;
	position: relative;
}
*/
#form-area dl.form-educ p.error {
	position: absolute;
	top: -22px;
}
#form-area dl.form-educ div {
	position: relative;
	display: flex;
	align-items: center;
	/* justify-content: center; */
	/* margin-top: 32px; */
	-webkit-box-align: center;
	-webkit-box-pack: center;
	margin-top: 24px;
}
#form-area dl.form-educ p {
	padding: 0 3px;
}
#form-area dl.form-educ input.radio {
	position: relative;
	bottom: 3px;
	width: 15px;
	height: 15px;
	-moz-transform: scale( 1.2 , 1.2 );
	-webkit-transform: scale( 1.2 , 1.2 );
	outline: none;
}
#form-area dl.form-educ h3 {
	font-weight: normal;
  width: 65px;
}
#form-area dl.form-educ input.text {
	width: 100px;
}
/*-- form-history --*/
#form-area dl.form-history div {
	margin-top: 15px;
}
/*-----  btn-form  ------*/
#form-area .btn-form {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 30px 0;
}
#form-area .btn-form .formbtn {
  width: 300px;
  height: 70px;
	line-height: 70px;
	padding: 0;
	margin: 0 10px;
	text-align: center;
  border-radius: 0;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
#form-area .btn-form .formbtn.fb-sty01 {
  color: #079E9E;
  border: 1px solid #079E9E;
  background-color: #fff;
	outline: none;
}
#form-area .btn-form .formbtn.fb-sty01:hover {
  background-color: #079E9E;
	color: #fff;
}
#form-area .btn-form .formbtn.fb-sty02 {
  color: #fff;
  border: 1px solid #079E9E;
  background-color: #079E9E;
}
#form-area .btn-form .formbtn.fb-sty02:hover {
  background-color: #fff;
	color: #079E9E;
}
#form-area .btn-form .formbtn.fb-sty03 {
  color: #F54531;
  border: 1px solid #F54531;
}
#form-area .btn-form .formbtn.fb-sty03:hover {
  background-color: #FFDFDB;
}
#form-area .btn-form .formbtn.fb-sty04 {
  color: #fff;
  border: 1px solid #F54531;
  background-color: #F54531;
}
#form-area .btn-form .formbtn.fb-sty04:hover {
  background-color: #fff;
	color: #F54531;
}
/*------  form-area conf ------*/
#form-area.conf dt::before {
  display: none;
}
/*------  form-area send ------*/
#form-area.send {
  text-align: center;
}
#form-area.send h2 {
  font-size: 20px;
}
#form-area.send p {
  text-align: left;
  padding-top: 30px;
}
/*------ 　注釈 ------*/
#form-area .note {
	font-size: 15px;
	display: block;
}
/*------ エラー各表示 ------*/
#form-area p.error {
	color: red;
	display: block;
	text-align: left;
}
#form-area .error input,
#form-area .error textarea {
	background: #FFCECF;
}
#form-area em {
	color: #333;
	padding: 0 5px;
}





/*======  media screen  ==============================*/

@media screen and (min-width: 768px) {

			#form-area {
				max-width: 1000px;
				width: 100%;
				margin: 0 auto;
			}
			#form-area dl {
				display: flex;
				align-items: center;
				margin-bottom: 35px;
				padding-bottom: 35px;
			}
			#form-area dt {
				font-size: 18px;
				font-weight: normal;
				width: 250px;
				margin-left: 30px;
				text-align: left;
			}
			#form-area dd {
				width: 530px;
			}
			#form-area input,
			#form-area textarea {
				/*
				color: #B7B7B7;*/
				font-size: 18px;
				width: 100%;
			}
			#form-area .btn-contact-form input {
				width: 400px;
				height: 100px;
			}
			/*------  form-area comf ------*/
			#form-area.conf dd {
				text-align: left;
				padding-left: 30px;
			}
			/*------  form-area send ------*/
			#form-area.send .send-in {
				border-bottom: 1px solid #D5D5D5;
				padding-bottom: 60px;
				margin-bottom: 60px;
			}
			#form-area.send h2 {
				font-size: 30px;
			}
			#form-area.send p {
				text-align: center;
				padding-top: 45px;
				display: block;
				font-size: 18px;
				line-height: 2;
			}
			#form-area.send p span {
				display: block;
			}
			/*-- form-age --*/
			#form-area dl.form-age input {
				width: 260px;
			}
			/*-- form-add --*/
			#form-area dl.form-add input.ipt01 {
				width: 260px;
			}
			/*-- form-educ --*/
			#form-area dl.form-educ input.text {
				width: 260px;
			}
			/*------  btn-form  ------*/
			#form-area .btn-form {
				margin: 0 auto;
				padding: 20px 0 30px;
			}
			#form-area .btn-form .formbtn {
				width: 400px;
				height: 100px;
				line-height: 100px;
				font-size: 1rem;
				display: inline-block;
			}
}




/*========= ページトップのためのCSS ===============*/

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #FF4833;
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #fff;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	font-size: 1rem;
	transition: all 0.3s;
}

#page-top a:hover{
  background: #777;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
	right: 20px;
	bottom: 20px;
  z-index: 2;
    /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
  transform: translateY(0);
  }
  to {
    opacity: 1;
  transform: translateY(100px);
  }
}

/*====== footer-area ==============================*/
#footer-area {
	width: 100%;
	padding: 40px;
	background: #000;
	margin: 0 auto;
}
#footer-area .footer-area-in {
	width: 100%;
	margin: 0 auto;
	text-align: center;
}
#footer-area .footer-area-in dd,
#footer-area .footer-area-in a,
#footer-area .footer-area-in p {
	color: #fff;
}
#footer-area .footer-area-in dl {
	width: 100%;
	display: inline-block;
	padding: 40px 0;
	border-bottom: 1px solid #333;
}
#footer-area .footer-area-in dl span {
	display: block;
	margin: 0 auto;
}
#footer-area .footer-area-in dl span img {
	width: 120px;
	margin: 5px auto;
}
#footer-area .footer-area-in dl dt {
	margin-bottom: 15px;;
}
#footer-area .footer-area-in dl dd {
	font-size: 0.9375rem;
	line-height: 22px;
	padding: 0 0 10px;
}
#footer-area .footer-area-in dl dd.footer-btn-box {
	display: flex;
	margin: 10px auto;
	padding: 0 11%;
}
#footer-area .footer-area-in dl dd.footer-btn-box span {
	width: 100%;
}
#footer-area .footer-area-in dl dd.footer-btn-box span + span {
	margin-left: 15px;
}
#footer-area .footer-area-in dl dd.footer-btn-box a {
	width: 100%;
}
#footer-area .footer-area-in #footer-nav {
	border-bottom: 1px solid #333;
	margin-bottom: 30px;
	padding: 30px 0;
	/*
	display: flex;
	justify-content: space-between;
	*/
}
#footer-area .footer-area-in #footer-nav ul {
	text-align: left;
}
#footer-area .footer-area-in #footer-nav li {
	line-height: 1em;
}
#footer-area .footer-area-in #footer-nav li.ftr-nav-sty01 {
	text-indent: 1em;
}
#footer-area .footer-area-in #footer-nav li.ftr-nav-sty02 {
	text-indent: 2.2em;
}
#footer-area .footer-area-in #footer-nav a {
	font-size: 0.9375rem;
	line-height: 33px;;
}
#footer-area .footer-area-in #footer-nav a span {
	color: #919191;
}
#footer-area .footer-area-in .copy {
	color: #7F7F7F;
	font-size: 12px;;
}

@media screen and (min-width: 768px) {
/*====== footer-area ==============================*/
	#footer-area {
		padding: 70px 15px;
	}
	#footer-area .footer-area-in {
		max-width: 1000px;
	}
	#footer-area .footer-area-in dd,
	#footer-area .footer-area-in a,
	#footer-area .footer-area-in p {
		color: #fff;
	}
	#footer-area .footer-area-in dl {
		width: auto;
		border: none;
	}
	#footer-area .footer-area-in dl span {
		margin: 0 4px;
	}
	#footer-area .footer-area-in dl span img {
		width: 50%;
		margin: 5px auto;
	}
	#footer-area .footer-area-in dl dd {
		font-size: 1rem;
		line-height: 24px;;
	}
	#footer-area .footer-area-in dl dd.footer-btn-box {
		padding: 0;
	}
	#footer-area .footer-area-in dl dd.footer-btn-box span {
		width: 160px;
	}
	#footer-area .footer-area-in #footer-nav {
		display: flex;
		justify-content: space-between;
			border: none;
			padding: 0;
	}
	#footer-area .footer-area-in #footer-nav li.ftr-nav-sty {
		text-indent: 1em;
	}
	#footer-area .footer-area-in #footer-nav a {
		font-size: 1rem;
	}
	#footer-area .footer-area-in #footer-nav a span {
		color: #919191;
	}
	#footer-area .footer-area-in .copy {
		color: #7F7F7F;
		font-size: 12px;;
	}
}


















