@charset "UTF-8";
/* CSS Document */
/** {
	outline: 1px solid #F00;
}*/
.clearfix::after {
	content: "";
	display: block;
	height: 0;
	clear: both;
}
body {
	font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	background: url("../images/body_bg01.gif");
}
header {
	position: relative;
	width: 100vw;
	height: 750px;
	text-align: center;
	clip-path: polygon(0px 0px, 0px 95%, 50% 100%, 100% 95%, 100% 0px);
	overflow: hidden;
}
header::before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background-image: url("../images/top_img.jpg");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	-webkit-animation: zoom 20s infinite;
	animation: zoom 20s infinite;
	animation-fill-mode: forwards;
	position: relative;
	z-index: -1;
}
@keyframes zoom {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}
#hero_header {
	position: absolute;
	width: 100%;
	height: 100%;
	margin: 0 auto;
	top: 0;
	z-index: 1;
}
#logo {
	max-width: 1000px;
	height: 750px;
	margin: 0 auto;
	padding: 0 20px;
}
#logo h1 a {
	height: 60px;
	display: flex;
	align-items: center;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: 9999;
}
#logo h1 img {
	width: 300px;
	height: auto;
}
h2 {
	font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-size: 65px;
	color: #fff;
	text-shadow: 0 0 5px #000;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
}
/*========= スクロールダウンのためのCSS ===============*/
/*スクロールダウン全体の場所*/
.scrolldown {
	/*描画位置※位置は適宜調整してください*/
	position: absolute;
	bottom: 10px;
	left: 50%;
}
/*Scrollテキストの描写*/
.scrolldown span {
	/*描画位置*/
	position: absolute;
	left: 10px;
	bottom: 10px;
	/*テキストの形状*/
	color: #eee;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	/*縦書き設定*/
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
}
/* 丸の描写 */
.scrolldown:before {
	content: "";
	/*描画位置*/
	position: absolute;
	bottom: 0;
	left: -4px;
	/*丸の形状*/
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: #eee;
	/*丸の動き1.6秒かけて透過し、永遠にループ*/
	animation:
		circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
	0% {
		bottom: 45px;
	}
	100% {
		bottom: -5px;
	}
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
	0% {
		opacity: 0
	}
	50% {
		opacity: 1;
	}
	80% {
		opacity: 0.9;
	}
	100% {
		opacity: 0;
	}
}
/* 線の描写 */
.scrolldown:after {
	content: "";
	/*描画位置*/
	position: absolute;
	bottom: 0;
	left: 0;
	/*線の形状*/
	width: 2px;
	height: 50px;
	background: #eee;
}
section {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
	overflow: hidden;
}
@-webkit-keyframes passing-bar {
	0% {
		left: 0;
		right: auto;
		width: 0;
	}
	50% {
		left: 0;
		right: auto;
		width: 100%;
	}
	51% {
		left: auto;
		right: 0;
		width: 100%;
	}
	100% {
		left: auto;
		right: 0;
		width: 0;
	}
}
@keyframes passing-bar {
	0% {
		left: 0;
		width: 0;
	}
	50% {
		left: 0;
		width: 100%;
	}
	51% {
		left: 0;
		width: 100%;
	}
	100% {
		left: 100%;
		width: 0;
	}
}
@-webkit-keyframes passing-txt {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes passing-txt {
	0% {
		opacity: 0;
	}
	50% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
/* css */
.passing .passing-box {
	display: block;
	/*text-align: center;*/
}
.passing .passing-bar {
	position: relative;
	display: inline-block;
	/*　後ほど解説　*/
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.passing .passing-bar:before {
	content: '';
	display: inline-block;
	width: 0;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	/* 任意の値 */
	background: #0087b8;
}
.passing .passing-txt {
	opacity: 0;
	/* 後ほど解説 */
	-webkit-transform: translate3d(0, 0, 0);
	-ms-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.passing.move .passing-bar:before {
	-webkit-animation: passing-bar 1s ease 0s 1 normal forwards;
	animation: passing-bar 1s ease 0s 1 normal forwards;
}
.passing.move .passing-txt {
	-webkit-animation: passing-txt 0s ease .5s 1 normal forwards;
	animation: passing-txt 0s ease .5s 1 normal forwards;
}
article#lead {
	padding: 70px 0;
}
#lead .textbox {
	position: relative;
	width: 100%;
	background: url("../images/woman01.png") no-repeat right -20px top 40px;
}
.seminer00{
	display: none;
}
#lead .textbox h3 {
	font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-size: 35px;
}
#lead .textbox h3 span {
	font-family: "游ゴシック体", "YuGothic", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
	color: #0087b8;
	font-size: 110%;
}
#lead .textbox p {
	line-height: 1.8;
	margin: 20px 0 50px;
}
.seminer02 {
	position: absolute;
	right: 0;
	bottom: -60px;
}
#place {
	width: 100%;
	padding: 70px 0;
	background-color: #e6e7e8;
}
#place section {
	display: flex;
	justify-content: space-between;
	align-items: start;
}
#place section img {
	width: 470px;
}
#place section .textbox {
	width: 480px;
	height: 350px;
	background: url("../images/map.png") no-repeat right bottom;
}
#place section .textbox h4 {
	font-size: 33px;
}
#place section .textbox h4 span {
	font-size: 75%;
	font-weight: normal;
}
#place section .textbox ul li {
	line-height: 1.3;
	margin-top: 20px;
	margin-bottom: 20px;
	margin-left: 1.5em;
}
#urgent {
	display: inline-block;
	width: 100%;
	padding-bottom: 70px;
	background-image: linear-gradient(rgba(244,244,244,0),rgba(244,244,244,1))
}
#urgent section{
	max-width: 1000px;
	margin: 0 auto;
	padding: 70px 20px 20px;
}

#urgent section h4 {
	font-size: 33px;
	color: #000;
}
.swiper{
	width: 100%;
	margin-bottom: 30px;
}
.swiper-wrapper{
	padding: 40px 0;
	box-sizing: border-box;
}
.swiper-slide{
	max-width: 400px;
	padding: 40px 20px;
	background-color: #fff;
	box-shadow: 0 0 5px #666;
	border-radius: 10px;
	box-sizing: border-box;
}
.swiper-slide table{
	width: 100%;
	min-height: 420px;
	border-collapse: collapse;
	font-size: 15px;
	line-height: 1.5;
}
.swiper-slide table span{
	font-size: 12px;
}
.swiper-slide tr:nth-child(odd){
	background-color: #ebf6f7;
}
.swiper-slide tr:nth-child(even){
	background-color: #eaf4fc;
}
.swiper-slide tbody th{
	height: 50px;
}
.swiper-slide th, .swiper-slide td{
	border-top: 1px solid #333;
	padding: 10px 7px;
}
.swiper-slide td.vat{
	vertical-align: top;
	padding-top: 20px;
}

#course {
	width: 100%;
	min-height: 800px;
	background: url("../images/seminar04.jpg") no-repeat center top;
	background-size: cover;
	padding: 40px 0;
}
#course section h4 {
	font-size: 33px;
	color: #fff;
}
#course table {
	width: 100%;
	color: #fff;
	border-collapse: collapse;
	margin-top: 20px;
}
#course th {
	width: 40%;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	padding: 15px 0 15px 40px;
	font-size: 24px;
	text-align: left;
	background-color: rgba(0, 0, 0, 0.3);
}
#course td {
	width: 60%;
	border-top: 1px solid #fff;
	border-bottom: 1px solid #fff;
	padding: 15px 10px;
	line-height: 1.8;
	background-color: rgba(0, 0, 0, 0.5);
}
#flow {
	width: 100%;
	min-height: 300px;
	padding: 70px 0;
	background-color: transparent;
}
#flow section h4 {
	font-size: 33px;
	color: #4d4d4d;
}
#flow section p {
	color: #4d4d4d;
	text-indent: 2em;
	margin-top: 20px;
	margin-bottom: 40px;
}
.flowChart {
	width: 100%;
	min-height: 160px ;
	display: flex;
	justify-content: space-around;
	align-items: center;
}
.circle {
	width: 160px;
	height: 160px;
	border-radius: 50%;
	background-color: #2599c3;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 22px;
	color: #fff;
}
.poly {
	width: 20px;
	height: 25px;
	clip-path: polygon(0px 0px, 0px 25px, 20px 12.5px);
	background-color: #81c1cf;
}
#entry {
	width: 100%;
	background-color: #f4f4f4;
	text-align: center;
}
#entry section {
	min-height: 490px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.entry {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.entry h5 {
	font-size: 33px;
	color: #0087b8;
}
.entryBtn {
	width: 420px;
	height: 80px;
	border-radius: 20px;
	background-image: linear-gradient(#1c3b5b, #0f2849);
	border: 5px solid #FFF;
	box-shadow: 2px 2px 2px #aaa;
	box-sizing: border-box;
	overflow: hidden;
	display: flex;
	justify-content: center;
	align-items: center;
}
.entryBtn a {
	height: 80px;
	color: #fff;
	text-decoration: none;
	font-size: 35px;
	font-weight: bold;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
.entryBtn a span {
	font-size: 120%;
}
/* ボタンをキラッとさせる */
.entryBtn a::before {
	content: '';
	display: block;
	position: absolute;
	width: 100%;
	height: 80px;
	top: 0;
	left: -140%;
	background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
	-webkit-transition: 0.5s;
	transition: 0.5s;
}
.entryBtn a:hover::before {
	-webkit-animation: shine 0.5s;
	animation: shine 0.5s;
}
@-webkit-keyframes shine {
	100% {
		left: 100%;
	}
}
@keyframes shine {
	100% {
		left: 100%;
	}
}
#entry .entryImg01 {
	width: 250px;
}
#entry .entryImg02 {
	width: 250px;
}
#address {
	width: 100%;
	min-height: 200px;
	background-image: linear-gradient(#1c3b5b, #0f2849);
}
#address section {
	width: 100%;
	min-height: 200px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.address {
	max-width: 500px;
}
.address img {
	max-width: 300px;
	height: auto;
}
.address p {
	font-style: normal;
	line-height: 1.4;
	color: #fff;
}
.tel {
	min-width: 350px;
	margin-right: 20px;
}
.tel p {
	font-size: 26px;
	font-style: normal;
	color: #fff;
	line-height: 1.2;
	padding-top: 10px;
}
.tel img {
	max-width: 60px;
	height: auto;
}
.tel .phoneNo {
	font-family: 'Jost', sans-serif;
	font-size: 40px;
	display: flex;
	align-items: center;
	color: #fff;
	text-decoration: none;
}
.tel .phoneNo a {
	color: #fff;
	text-decoration: none;
}
footer {
	background-color: #0d0015;
	height: 70px;
	text-align: center;
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
}

br.brake{
	display: none;
}

@media screen and (max-width: 480px) {
	br.brake{
		display: block;
	}
	br.inline{
		display: none;
	}
	header{
		height: 85vh;
	}
	header::before{
		height: 85vh;
	}
	h2{
		font-size: 2.5rem;
	}
	article#lead section{
		min-height: 1000px;
	}
	#lead .textbox {
		background: none;
	}
	
	.seminer01 img{
		width: 100%;
		height: auto;
	}
	.seminer02{
		position: absolute;
		bottom: -200px;
	}
	.seminer02 img{
		width: 60%;
		height: auto;
	}
	.seminer00{
		width:100%;
		display: block;
	}
	.seminer00 img{
		width: 50%;
		height: auto;
		position: absolute;
		right: 0;
		bottom: -150px;
	}
	#place{
		height: 800px;
		background: #e6e7e8 url("../images/map.png") no-repeat right bottom;
	}
	#place section{
		flex-direction: column;
	}
	#place section img{
		width: 100%;
		height: auto;
	}
	#place section .textbox{
		width: 100%;
		background:none;
	}
	#place section .textbox h4{
		font-size: 1.4rem;
	}
	
	#place section .textbox ul li {
		font-size: 1.3rem;
	}
	
	#urgent section .textbox h4{
		font-size: 1.4rem;
	}
	/*.swiper-slide{
		width: 100%;
	}*/
	.swiper-wrapper{
	padding: 40px 0;
	box-sizing: border-box;
	}

	#course{
		background-position: right top;
	}
	#course section h4 {
		font-size: 1.4rem;
	}
	#course th,#course td{
		display: block;
		width: 100%;
		border-bottom: none;
	}
	#course th{
		text-align: center;
		padding: 5px 0;
		font-size: 1.3rem;
	}
	#course td{
		font-size: 1rem;
	}
	#flow{
		min-height: 1000px;
	}
	#flow section h4{
		font-size: 1.4rem;
	}
	#flow section p{
		font-size: 1.1rem;
		text-indent: 0;
	}
	.flowChart{
		width: 100%;
		text-align: center;
		flex-direction: column;
	}
	.poly{
		width: 25px;
		height: 20px;
		clip-path: polygon(0 0, 100% 0%, 50% 100%);
		margin: 20px auto;
	}
	
	#entry section{
		width: 100%;
		flex-direction: column-reverse;
	}
	.entryBtn{
		width: 100%;
		height: auto;
	}
	.entry h5{
		font-size: 1.8rem;
	}
	
	#address section{
		width: 100%;
		flex-direction: column;
		justify-content: center;
	}
	.address{
		margin: 20px auto;
	}
	.tel{
		margin: 5px auto 20px;
	}
	.tel p{
		font-size: 1.3rem;
		margin: 0 auto;
	}
	.tel img{
		width: 30px;
		height: auto;
	}
	.tel .phoneNo {
		font-size: 2.5rem;
	}
}


