@charset "utf-8";
@import url("default.css");
body{background:#ffffff;font-family:'Helvetica Neue', Helvetica, 'Hiragino Sans', 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', "メイリオ", Meiryo , sans-serif;}
h3{font-weight:bold;}
h1{padding-bottom:0;margin-bottom:0;}
p{margin-bottom:2em;text-align: left;}
.small{
	line-height:1.2;
}
.futomin{
	font-family: a-otf-futo-min-a101-pr6n, serif;
	font-weight: 400;
}
.gothic{
	font-family:"Helvetica Neue", Helvetica, Arial, "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
form input.form-control{
	/* padding:1em 0; */
	text-indent: 1em;
	font-size: 1em;
	margin-bottom: 1em;
	height:2.25em;
	line-height:2em;
	box-sizing: border-box;
}
@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@-webkit-keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

@keyframes shake {
  from,
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  5%,
  15%,
  25%,
  35%,
  45% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  10%,
  20%,
  30%,
  40% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
	}
	50%{
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
	}
}
.arrow{
	position: relative;
}
.arrow:before {
	position: absolute;
	top:0;
	left:50%;	
	font-family:"Font Awesome 5 Free";
	content: "\f103";
	font-size:2em;
	background-size: contain;
	background-repeat:none;
	transform: translate(-50%, -50%);
	font-weight: bold;
}

.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}
.btn-icon {
	margin:0;
  display: inline-block;
  text-align: center;
  font-size: 40px;
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
	padding: 2% 0%;
	width:95%;
  border-radius: 20px;
	position: relative;
	margin-left: -2%;
}

.btn-icon:before {
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  position: absolute;
  left: 3%;
  top: 35%;
	margin-top: -8px;
}

.btn-icon:hover {
  opacity: 0.8;
}
.button-box{
	text-align:center;
	/* margin-top:1.5em; */
}
.formbtn{
	color:#FFF;
	line-height:1.1;
	margin:0;
	display: inline-block;
  text-align: center;
	background-color: #9ec34b;
	background:linear-gradient(to bottom, #00b359, #00ad00);
  font-size: 1.3em;
  text-decoration: none;
  font-weight: bold;
	padding: 3% 0%;
	width:100%;
  border-radius: 0.5em;
	position: relative;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: shake;
  animation-name: shake;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.formbtn:before {
	font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  position: absolute;
  left: 5%;
	top: 50%;
	-webkit-transform: translate(0%,-50%);
	-moz-transform: translate(0%,-50%);
	-ms-transform: translate(0%,-50%);
	-o-transform: translate(0%,-50%);
	transform: translate(0%,-50%);
}
.formbtn:hover {
  opacity: 0.8;
}
.formbtn small{
	font-size:0.5em;
	font-weight: bold;
	line-height: 1;
	display:block;
	padding-top: 0.5em;
}
.formattention{
	border:1px solid #999;
	color:#333;
	padding:1em;
	width:90%;
	margin:0 auto 1em;
}
.formattention p{
	font-size: 0.8em;
	margin-bottom: 0;
	line-height:1.05;
}
/* 吹き出し本体 - 普通の吹き出し */
.balloon1{
  position: relative;
  padding: 1em;
  background-color: #fff;
	border-radius: 1em;         /* 角丸を指定 */
	margin-bottom: 2em;
}
/* 三角アイコン - 普通の吹き出し */
.balloon1::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 2em;
  bottom: -1em;
  border-right: 1em solid #fff;
  border-top: 1em solid transparent;
  border-bottom: 1em solid transparent;
}

/* 吹き出し本体 - 普通の吹き出し */
.balloon2{
  position: relative;
  padding: 1em;
  background-color: #fff;
	border-radius: 1em;         /* 角丸を指定 */
	margin-bottom: 2em;
}
/* 三角アイコン - 普通の吹き出し */
.balloon2::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  right: 2em;
  bottom: -1em;
  border-left: 1em solid #fff;
  border-top: 1em solid transparent;
  border-bottom: 1em solid transparent;
}

/* header */
.header-bg{
	background-image:url(../img/header_bg.png);
	width:100%;
	background-size:cover;
}

/* form */
.formheader{
	/* max-width:90%; */
	margin:0 auto;
	justify-content: center;
}
.formheader div{
	padding:0!important;
}
.free{
	display:inline-flex;
	flex-wrap:wrap;
	padding-right:0;
	flex:0 0 21%;
	max-width:21%;
}
.free span{
	background:#2C47AB;
	color:#FFF;
	margin:0.1em;
	font-size:1.5em;
	text-align: center;
	display:inline-block;
	width:1.5em;
	height:1.5em;
	font-weight: bold;
}
.free span.bg-whi{
	background:#FFF;
}
.regtext{
	display:flex;
	align-items:center;
	justify-content: left;
	margin-left: 1%;
}
.regtext p{
	color:#2C47AB;
	font-weight: bold;
	margin:0;
	font-size:0.8em;
}
.formbody{
	padding:1em;
	margin:0 auto;
	border-radius: 1em;
	border:2px solid #5cab2c;
	font-weight: bold;
	max-width:980px;
}
.formbody label{
	font-size: 0.5em;
}
@media (min-width:768px){
	.formbody label{font-size: 0.7em;}	
}
@media (min-width:991px){
	.formbody label{font-size: 0.8em;}	
}
@media (max-width:575px){
	.free{
		flex:0 0 18%;
		max-width: 18%;
	}
}
@media (min-width:768px){
	.free{
		flex:0 0 16%;
		max-width: 130px;
		margin-right:1%;
	}
}
/* main */
.head-slash:before{
	content:"\\";
	position: absolute;
	top:50%;
	left:4%;
	font-size:5em;
	color:#2464BA;
	transform:translate(0,-50%);
}
.head-slash:after{
	content:"\/";
	position: absolute;
	top:50%;
	right:4%;
	font-size:5em;
	color:#2464BA;
	transform:translate(0,-50%);
}
.head-slash{
	position: relative;
	background:#fff;
	padding:1em 0;
	margin:0 auto;
	max-width:1140px;
}
.head-slash h2{
	color:#2464BA;
	font-size: 1.4em;
	font-weight: bold;
	text-align: center;
}
.head-green{
	background: #e4eba8;
}
.head-green h2{
	text-align: center;
	font-size: 1.2em;
	padding: 1em 0;
	font-weight: bold;
	text-shadow: 
	white 2px 0px,  white -2px 0px,
	white 0px -2px, white 0px 2px,
	white 2px 2px , white -2px 2px,
	white 2px -2px, white -2px -2px,
	white 1px 2px,  white -1px 2px,
	white 1px -2px, white -1px -2px,
	white 2px 1px,  white -2px 1px,
	white 2px -1px, white -2px -1px;
}
.head-gray{
	background: #646464;
}
.head-gray h2{
	text-align: center;
	font-size: 1.5em;
	padding: 1em 0;
	font-weight: bold;
	color:#FFFFFF;
}
#media{
	font-size: 0.7em;
	line-height: 1.2;
	background: linear-gradient(to top, #fff1eb 0%, #ace0f9 100%) fixed;
}
#media p{
	margin-bottom:0.5em;
}
.medialist{
	background:rgba(255,255,255,0.9);
	padding:1em;
	border-radius:1em;
}
#voices{
	background: linear-gradient(to bottom, #43e97b 0%, #38f9d7 100%) fixed;
}
#voiceBak {
	background:url(../img/imgSemiBack.png) center/cover fixed;
}
.rad1{
	border-radius:1em;
}
.fc-blue{color:#001987}
.fc-sky{color:#0066FF;}
.voice{background:#bebebe;}
.voice p{max-width:864px; background:#FFF; margin: 0 auto; padding: 15px 15px 1em; font-size:.8em;}
.voice p.small{font-size: 0.5em;padding-top: 0;}
#fixHeader{
	position: fixed;
	top:0;
	left:0;
	width:100%;
	background:rgba(255,255,255,0.9);
	z-index: 999;
	box-shadow: 0 0 1em #c8c8c8;
	padding:0 1em;
	box-sizing: border-box;
	height:3em;
}
.flexArea{
	max-width:1140px;
	margin:0 auto;
	display: -webkit-flex;
	display:flex;
	-webkit-justify-content: flex-start;
	justify-content: flex-start;
	-webkit-align-items: center;
	align-items: center;
	height:100%;
}
.compinfo{
	box-sizing: border-box;
	margin:.5em 0;
	padding:0 .5em;
	border-right:1px solid #DDD;
}
.compinfo p{
	font-size:.9em;
	line-height: 1.3;
	margin:0;
}

@media(min-width:576px){
	.compinfo p{
		font-size:.8em;
	}
}

@media (min-width:768px){
	.compinfo p{
		font-size:1em;
	}
}
.noborder{
	border:none;
}

.navButton{
	margin-left: auto;
}
.navButton a{
	display:block;
	padding:0.5em 1em;
	margin:.5em 0;
	background:#ff961e;
	color:#fff;
	border-radius:.5em;
	font-weight: bold;
	font-size: 0.8em;
}
.flexArea .small{
	font-size:.5em;
}
/* form hidari */
/*.flexArea div:first-of-type{
	margin-right: auto;
}*/
/* .container{
	padding-left:1em;
	padding-right:1em;
} */

#aboutus{
	background:rgba(255,255,255,0.9)
}
#aboutus h3{
	font-size: 0.8em;
	color:red;
}
#aboutus p{
	font-size: 0.8em;
}
.card{border-radius:1em; padding:1em;}
footer{
	padding:1em 0
}
footer{
	background:#FFF;
	font-size: 0.6em;
}
footer p{
	margin-bottom: 0;
}
.formw .row{
	align-items:center;
	/* padding:1em; */
	margin:0 0 1em;
}
.formw .row div{
	padding-left:0.5em!important;
	padding-right:0.5em!important;
}
.formw .row div:first-child{
	padding-left:0!important;
}
.formw .row div:last-child{
	padding-right:0!important;
}
.formw label,.formw p{
	font-size: 0.7em;
	margin-bottom: 0.3em;
	line-height: 1.4;
}
.balloon-yel{
	background:#FBE942;
	padding:.5em;
	margin-bottom: 0.5em;
	display: inline-block;
	position: relative;
}
.balloon-yel::before{
  content: '';
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  left: 1em;
	bottom: -1em;
	border: .5em solid transparent;
  /* border-right: .5em solid #FBE942; */
  /* border-top: .5em solid transparent; */
  /* border-bottom: .5em solid transparent; */
  border-top: .5em solid #FBE942;
}


@media(min-width:576px){
	.formw label,.formw p{font-size: 0.55em;}
}
@media (min-width:768px){
	.formw label,.formw p{font-size: 0.75em;}	
}
@media (min-width:991px){
	.formw label,.formw p{font-size: 0.95em;}
}

.formw form input.form-control{
	margin-bottom: 0;
}
.recommend,.movies{
	padding-left: 0;
}

/* @media (min-width:991px){
	.recommend,.movies{
		width:90%;
		margin:0 auto;
	}
} */
.recommend li,.movies li{
	padding:.5em;
	padding-left:3em;
	background:#faf0e6;
	margin-bottom: 0.7em;
	list-style: none;
	position: relative;
	border-radius: .5em;
	font-weight: bold;
}
.recommend li:before,.movies li:before{
	position:absolute;
	top:50%;
	left:.5em;
	transform: translateY(-50%);
	font-family: "Font Awesome 5 Free";
	line-height:1.5em;
	font-size: 1.5em;
	height:1.5em;
	width:1.5em;
	box-sizing:border-box;
}
.recommend li:before{
	content:"\f058";
	color:#ff961e;
	font-weight: bold;
}
.movies li{
	background:#B0FFD9;
}
.movies li:before{
	content:"\f03d";
	font-weight:bold;
	color:#008C48;
}
.container{
	padding-left:1em;
	padding-right: 1em;
}
.contact_sp{
	position:fixed;
	box-sizing: border-box;
	bottom:0;
	width:100%;
	padding:.3em;
	z-index:9999;
}
.bottombtn{	
	display:block;
	padding:1em 2em;
	background:#ff961e;
	color:#fff;
	border-radius:.5em;
	font-weight: bold;
	font-size: 0.8em;
}
.bottombtn:hover{
	color:#FFF;
	text-decoration: none;
	opacity:0.8;
}
@media (min-width:768px){
	.contact_sp{
		display:none;
	}
	body{
		padding-bottom:0;
		/*padding-top:3em;*/
	}
}


.container {
    max-width: 980px;
  }

.form_bg{
    width:980px;
	height:500px;
	background:#FFFFFF url(../img/form_bg.png) center no-repeat;
	margin:0 auto;
	display:block;
	}
.bg-1{
	background: #bebebe;
}
.bg-2{
	background: #e6e6e6;
}
.fs08{
font-size:1.0em!important}

button{background:none;
border:none;}

button:hover{cursor:pointer;}

.button-box button{
	width:100%;
}

.tokuten-body{
	padding: 2em 2em 2em 2em;
	margin:0 auto;
	border:1px solid #4b87ff;
	border-top:none;
	max-width:980px;
	/*border-radius: 10px;角の丸み*/
}

.tokuten-body-head{
	/*padding: 2em 2em 2em 2em;*/
	margin:0 auto;
	border: 1px solid #4b87ff;
	border-bottom:none;
	max-width:980px;
	/*border-radius: 10px;角の丸み*/
}

.profile-body{
	padding: 1em 1em 1em 1em;
	text-align:left;
	border:1px solid #96b24e;
	max-width:800px;
	background-color:#ffffff;
}

.henkin-body{
	padding: 1em 1em 1em 1em;
	text-align:left;
	border:1px solid #96b24e;
	max-width:980px;
	background-color:#ffffff;
}

.koka-body{
	padding: 1em 1em 1em 1em;
	text-align:left;
	border:1px solid #96b24e;
	max-width:980px;
	background-color:#fffacd;
	border-radius: 10px;/**;角の丸み**/
}

.matome-body{
	padding: 1em 1em 1em 1em;
	text-align:left;
	border:1px solid #96b24e;
	max-width:980px;
	background-color:#fffacd;
	border-radius: 10px;/**;角の丸み**/
}

.semi-body{
	padding: 2em 2em 2em 2em;
	text-align:left;
	border:1px solid #96b24e;
	max-width:980px;
	background-color:#ffffff;
}

.gokai-body{
	padding: 1em 1em 1em 1em;
	margin:0 auto;
	border:1px solid #96b24e;
	max-width:980px;
	border-radius: 10px;/**;角の丸み**/
	background-color:#f2ffd2;
	
}

.profile-bg{
	background-image:url(../img/profile_bg.png);
	width:100%;
	background-size:cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}


.ichizuke-body{
	padding: 0.1em 2em 0.1em 2em;
	margin:0 auto;
	border:1px solid #282828;
	max-width:980px;
	
}

.q-body{
	padding: 0.1em 2em 0.1em 2em;
	margin:0 auto;
	border:1px solid #282828;
	max-width:980px;
	background-color:#f2ffd2;
	
}

.a-body{
	padding: 0.1em 2em 0.1em 2em;
	margin:0 auto;
	border:1px solid #282828;
	max-width:980px;
	border-top:none;
	background-color:#ffffff;
	
}

.interview-q{
	padding: 0.1em 2em 0.1em 2em;
	margin:0 auto;
	border:1px solid #282828;
	max-width:980px;
	background-color:#f2ffd2;
	
}

.interview-a{
	padding: 0.1em 2em 0.1em 2em;
	margin:0 auto;
	border:1px solid #282828;
	max-width:980px;
	border-top:none;
	background-color:#ffffff;
	
}
.doga-box{
max-width:980;}

.google_map{
    position:relative;
    width:100%;
    height:0;
		/* padding-top:75%; */
		height:calc((100vw - 2em) * 9 / 16)
}
.google_map iframe{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
}

a{display:inline-block;}

/*PCの場合*/
.pc	{ display:inline!important; }
.mb	{ display:none!important; }
@media screen and (max-width: 768px) {
/*タブレット、スマホの場合*/
.pc	{ display:none!important; }
.mb { display:inline!important; }
}

/************************************************/
table, th, td {
  border-collapse: collapse;
  border: 1px solid #ccc;
	line-height: 1.5;
	box-sizing: border-box;
}

table.type06 th {
  /* width: 150px; */
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
}
table.type06 td {
  /* width: 800px; */
  padding: 10px;
	vertical-align: top;
	text-align: left;
 }

tr:nth-child(even) {
  background: #d9d9d9;
 }
td.cancel{
	font-size: 0.8em;
 }
 .type06 td p{
	 margin-bottom:1em;
 }
/************************************************/


/******************フォント******************************/

span.bold{
	 font-weight:bold;
	 }

span.red-bold{
	 font-weight:bold;
	 color:#FF0000;
	 }
	 
span.red-bold-big{
	 font-weight:bold;
	 color:#FF0000;
	 font-size:1.5em;
	 }
	 
span.q{
	 font-weight:bold;
	 color:#ff5a00;
	 font-size:200%;
	 }
	 
span.a{
	 font-weight:bold;
	 color:#0055ff;
	 font-size:200%;
	 }
	 
span.bold-big{
	 font-weight:bold;
	 font-size:1.5em;
	 }	 
span.risk{
	font-size: 0.7em;
	color: #fff;
}