@charset 'UTF-8';



/*==========================
　　　　　　Reset
==========================*/

body {
	background: url(img/main_bg.jpg) no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
	color: #0d3751;
	font-family: '游ゴシック体', YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', meiryo, 'メイリオ', 'ms pgothic', sans-serif;
	font-size: 14px;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

ul, ol {
	margin:0;
	padding:0;
}

li {
	list-style-type: none;
}

p {
	margin:0;
	padding:0;
}

a {
	text-decoration: none;
	color: #0d3751;
}

a, a:hover, img, article, input, textarea {
  text-decoration:none;
  -webkit-transition: .2s;
  -moz-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;  
  transition: .2s;
}

h1, h2, h3, h4, h5, h6 {
	font-size: 1em;
	margin:0;
	padding:0;
}

dl, dt, dd {
	margin:0;
	padding:0;
}

input:focus, textarea:focus {
  outline:none;
}
canvas {
	vertical-align: bottom;
}


/*==========================
　　　　　　Common
==========================*/
#wrapper {
	overflow: hidden;
	width: 100%;
}
.container {
	box-sizing: border-box;
	padding: 0 15px;
}
.inner {
	margin: 0 auto;
	max-width: 960px;
	width: 100%;
}
.float_wrap {
	overflow: hidden;
}
.left_clm {
	float: left;
}
.right_clm {
	float: right;
}
/* ▼ Size style ▼ */
.w10 { width: 10%; }
.w20 { width: 20%; }
.w30 { width: 30%; }
.w40 { width: 40%; }
.w50 { width: 50%; }
.w60 { width: 60%; }
.w70 { width: 70%; }
.w80 { width: 80%; }
.w90 { width: 90%; }
.w100 { width: 100%; }
/* ▲ Size style ▲ */

.txt { line-height: 2; }
.mincho { font-family: '游明朝体', YuMincho, 'Yu Mincho', serif; }
.eng { font-family: 'Lusitana', serif; }
.cinzel { font-family: 'Cinzel', serif; }
.attent { font-size: 12px; color: #f15a24; line-height: 1.7; }

.wave {
	background: rgba(255,255,255,.85);
	position: relative;
}

.sc {
	padding: 80px 0;
}


/*==========================
　　　　　　Header
==========================*/
#burger {
	background: #215068;
	display: block;
	width: 97px;
	height: 40px;
	text-align: center;
	position: fixed;
	top: 8px;
	right: 8px;
	z-index: 9999999;
	color: #fff;
	padding: 10px;
	box-sizing: border-box;
	border-radius: 3px;
	cursor: pointer;
}

#burger span {
	display: block;
	height: 2px;
	width: 20px;
	background-color: #fff;
	margin:4px auto;
	transition: .3s;
}

#burger.open span:first-child {
	transform: translateY(6px) rotate(45deg);
	transition: .3s;
}
#burger.open span:nth-child(2n) {
	opacity: 0;
	transition: .3s;
}
#burger.open span:last-child {
	transform: translateY(-6px) rotate(-45deg);
	transition: .3s;
}
#burger .menu {
	padding-top: 3px;
	letter-spacing: 1.3px;
}
#menu {
	background: rgba(255,255,255,.95);
	width: 300px;
	padding: 30px;
	padding-top: 80px;
	box-sizing: border-box;
	height: 100vh;
	position: fixed;
	top: 0;
	right: -300px;
	z-index: 999999;
	visibility: hidden;
	opacity: 0;
	transition: .2s;
}
#menu.open {
	right: 0;
	visibility: visible;
	opacity: 1;
	transition: .2s;
}
#menu li {
	border-bottom: 1px solid #e7ebee;
	position: relative;
}
#menu li:after {
	transition: .2s;
	content: "";
	width: 4px;
	height: 4px;
	border-top: 1px solid #0d3751;
	border-right: 1px solid #0d3751;
	position: absolute;
	top: 50%;
	right: 15px;
	-webkit-transform: translateY(-50%) rotate(45deg);
	   -moz-transform: translateY(-50%) rotate(45deg);
	    -ms-transform: translateY(-50%) rotate(45deg);
	     -o-transform: translateY(-50%) rotate(45deg);
	        transform: translateY(-50%) rotate(45deg);
}
#menu li:hover:after {
	right: 10px;
	transition: .2s;
}
#menu li:last-child {
	border-bottom: none;
}
#menu li a {
	display: block;
	padding: 15px 0;
	box-sizing: border-box
}



/*==========================
　　　　　　Main
==========================*/
#top_mv {
	height: 100vh;
	position: relative;
}
.titleWrap {
	max-width: 490px;
	width: 90%;
	margin: 0 auto 220px;
	background: rgba(255,255,255,.8);
	box-sizing: border-box;
	border-radius: 5px;
	padding: 50px 50px 30px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	   -moz-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	     -o-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}
.aboutWrap {
	background: rgba(255,255,255,.8);
	box-sizing: border-box;
	max-width: 690px;
	width: 100%;
	margin: 0 auto;
	padding: 50px;
	border-radius: 5px;
}
.aboutWrap .attent {
	margin-top: 20px;
}
.aboutWrap .attent a {
	color: #f15a24;
	text-decoration: underline;
	font-weight: bold;
}
.aboutWrap .attent a:hover {
	text-decoration: none;
}
.scTitle {
	margin-bottom: 40px;
}
.scTitle .eng {
	font-size: 33px;
	font-weight: normal;
	display: block;
	text-align: center;
}
.scTitle .ja {
	font-size: 11px;
	color: #3888ba;
	display: block;
	text-align: center;
	padding-top: 5px;
}
.aboutWrap .txt {
	font-size: 13px;
}
.title .npo {
	text-align: center;
	padding-bottom: 15px;
	border-bottom: 1px solid #215068;
	margin-bottom: 15px;
	font-size: 18px;
}
.mainTitle {
	font-size: 45px;
	font-weight: normal;
	letter-spacing: 3px;
	text-align: center;
}
.subTitle {
	text-align: center;
	letter-spacing: 1.7px;
}
.snsWrap {
	display: -webkit-flex;
	-webkit-justify-content: center;
	display: flex;
	justify-content: center;
	margin-top:30px;
}
.snsWrap li {
	max-width: 30px;
	border-radius: 50%;
	background: #215068;
	margin-right: 10px;
}
.snsWrap li:last-child {
	margin-right: 0;
}
.snsWrap li {
	display: block;
	transition: .2s;
}
.snsWrap li:hover {
	transition: .2s;
	-webkit-transform: translateY(5px);
	   -moz-transform: translateY(5px);
	    -ms-transform: translateY(5px);
	     -o-transform: translateY(5px);
	        transform: translateY(5px);
}
.snsWrap .instagram {
	margin-right: 30px;
}
#sns.sc {
	padding-top: 0;
}
.courseWrap .catchTxt {
	font-weight: bold;
	margin-top: 60px;
	line-height: 2;
}
.courseMenu {
	display: -webkit-flex;
	-webkit-justify-content: center;
	-webkit-align-items: stretch;
	display: flex;
	justify-content: center;
	align-items: stretch;
	padding-bottom: 5px;
}
.courseMenu li:last-child {
	margin-right: 0;
}
.courseMenu li {
	float: left;
	margin-right: 30px;
	width: 100%;
	font-weight: bold;
	box-shadow: 0 3px 0 rgba(24,46,76,.15);
	border-radius: 5px;
	overflow: hidden;
	display: block;
	background: #fff;
	padding: 30px 20px;
	box-sizing: border-box;
	text-align: center;
	display: -webkit-flex;
	-webkit-justify-content: center;
	-webkit-align-items: center;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	min-height: 92px;
	position: relative;
	transition: .2s;
	cursor: pointer;
}
.courseMenu li:after {
	content: "";
	width: 5px;
	height: 5px;
	border-right: 1px solid #0d3751;
	border-bottom: 1px solid #0d3751;
	position: absolute;
	bottom: 10px;
	left: 50%;
	transition: .2s;
	-webkit-transform: translateX(-50%) rotate(45deg);
	   -moz-transform: translateX(-50%) rotate(45deg);
	    -ms-transform: translateX(-50%) rotate(45deg);
	     -o-transform: translateX(-50%) rotate(45deg);
	        transform: translateX(-50%) rotate(45deg);
}
.courseMenu li:hover:after {
	border-color: #fff;
	transition: .2s;
}
.courseMenu li small {
	display: block;
	width: 100%;
}
.courseMenu li:hover {
	background: #3888ba;
	color: #fff;
	transition: .2s;
}
.courseDtl {
	margin-top: 100px;
}
.courseContent {
	margin: 60px 0 0
}
.courseContent .subTl {
	font-size: 13px;
	font-weight: bold;
	letter-spacing: 1px;
	padding-top: 5px;
	padding-left: 20px;
	float: left;
	display: inline-block;
	opacity: .5;
}
.courseContent dt {
	font-size: 22px;
	padding-bottom: 10px;
	border-bottom: 1px solid #0d3751;
	padding-left: 50px;
	padding-right: 30px;
	box-sizing: border-box;
	position: relative;
	margin-bottom: 20px;
	cursor: pointer;
	overflow: hidden;
}
.courseContent dt:before {
	width: 37px;
	height: 34px;
	content: "";
	background: url(img/kira.png) no-repeat center center;
	background-size: 37px;
	position: absolute;
	bottom: 4px;
	left: 0;
}
.courseContent dt:after {
	content: "";
	width: 4px;
	height: 4px;
	border-bottom: 1px solid #0d3751;
	border-right: 1px solid #0d3751;
	position: absolute;
	top: 50%;
	right: 15px;
	transition: .2s;
	-webkit-transform: translateY(-50%) rotate(45deg);
	   -moz-transform: translateY(-50%) rotate(45deg);
	    -ms-transform: translateY(-50%) rotate(45deg);
	     -o-transform: translateY(-50%) rotate(45deg);
	        transform: translateY(-50%) rotate(45deg);
}
.courseContent dt.open:after {
	transition: .2s;
	-webkit-transform: translateY(-50%) rotate(-135deg);
	   -moz-transform: translateY(-50%) rotate(-135deg);
	    -ms-transform: translateY(-50%) rotate(-135deg);
	     -o-transform: translateY(-50%) rotate(-135deg);
	        transform: translateY(-50%) rotate(-135deg);
}
.courseContent .title {
	float: left;
}
.courseContent .price {
	font-size: 18px;
	font-weight: bold;
	color: #f15a24;
	float: right;
	padding-top: 5px;
}
#course02 .courseContent .price {
	font-size: 15px;
}
.courseContent dd {
	overflow: hidden;
	margin-bottom: 40px;
}
.courseContent dd:last-child {
	margin-bottom: 0;
}
.courseDtl {
	background: #fffdee;
	padding: 20px 40px;
	box-sizing: border-box;
	border-radius: 10px;
}
.tb {
	width: 100%;
	border-collapse: collapse;
}
.tb th,
.tb td {
	border-bottom: 1px solid #e7ebee;
	padding: 15px 0;
}
.tb th {
	text-align: left;
	vertical-align: middle;
}
.tb td {
	line-height: 1.7;
}
.tb tr:last-child th,
.tb tr:last-child td {
	border-bottom: none;
}
.canvas-container {
	width: 100%;
}
canvas {
	width: 100%;
}
.courseContent .imageWrap {
	max-width: 300px;
	width: 31.25%;
}
.courseContent .courseTxt {
	width: 68.75%;
	padding-left: 40px;
	box-sizing: border-box;
}
.bx-wrapper .bx-viewport {
	background: none;
	border: none;
	left: 0;
	box-shadow: none;
	height: 182px!important;
}
.bxslider li {
	overflow: hidden;
	border-radius: 5px;
	width: 300px!important;
	position: relative;
}
.bxslider .caption {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: block;
	background: rgba(0,0,0,.55);
	color: #fff;
	font-size: 11px;
	padding: 5px 10px;
	box-sizing: border-box;
}
.pointWrap {
	overflow: hidden;
	margin-bottom: 15px;
}
.pointWrap li {
	float: left;
	margin-right: 30px;
	font-weight: bold;
}
.pointWrap li:last-child {
	margin-right: 0;
}
.pointWrap span {
	background: #3888ba;
	font-size: 11px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	padding: 5px 10px;
	box-sizing: border-box;
	border-radius: 3px;
	display: inline-block;
	margin-right: 5px;
}
.faqWrap dt {
	width: 100%;
	padding-left: 50px;
	padding-right: 30px;
	box-sizing: border-box;
	font-size: 18px;
	font-weight: bold;
	padding-bottom: 20px;
	border-bottom: 1px solid #0d3751;
	margin-bottom: 20px;
	position: relative;
	cursor: pointer;
}
.faqWrap dt:before {
	content: "Q.";
	font-family: 'Times New Roman', TimesNewRoman, serif;
	font-size: 40px;
	color: #3888ba;
	position: absolute;
	top: -15px;
	left: 0;
	font-weight: normal;
}
.faqWrap dt:after {
	transition: .2s;
	content: "";
	width: 5px;
	height: 5px;
	border-bottom: 1px solid #0d3751;
	border-right: 1px solid #0d3751;
	position: absolute;
	top: 50%;
	right: 15px;
	-webkit-transform: translateY(-50%) rotate(45deg);
	   -moz-transform: translateY(-50%) rotate(45deg);
	    -ms-transform: translateY(-50%) rotate(45deg);
	     -o-transform: translateY(-50%) rotate(45deg);
	        transform: translateY(-50%) rotate(45deg);
}
.faqWrap dt.open:after {
	transition: .2s;
	-webkit-transform: translateY(-50%) rotate(-135deg);
	   -moz-transform: translateY(-50%) rotate(-135deg);
	    -ms-transform: translateY(-50%) rotate(-135deg);
	     -o-transform: translateY(-50%) rotate(-135deg);
	        transform: translateY(-50%) rotate(-135deg);
}
.faqWrap dd {
	padding-left: 50px;
	padding-bottom: 60px;
	box-sizing: border-box;
	position: relative;
	line-height: 1.6;
	display: none;
}
.faqWrap dd:before {
	content: "A.";
	font-family: 'Times New Roman', TimesNewRoman, serif;
	font-size: 40px;
	color: #3888ba;
	position: absolute;
	top: -8px;
	left: 0;
	font-weight: normal;
}
#information .tb {
	max-width: 550px;
	margin: 0 auto;
}
#gmap {
	margin-top: 50px;
	border-radius: 10px;
	overflow: hidden;
}
.form .req {
	font-size: 11px;
	color: #fff;
	background: #e2645b;
	padding: 5px 10px;
	box-sizing: border-box;
	text-align: center;
	border-radius: 3px;
	display: inline-block;
	margin-right: 10px;
}
.form th {
	width: 30%;
}
.form input,
.form textarea {
	padding: 10px 15px;
	box-sizing: border-box;
	border: 1px solid #e6e6e6;
	border-radius: 5px;
	background: #fff;
}
.engAttent {
	background: #fffdee;
	padding: 20px 30px;
	box-sizing: border-box;
	border-radius: 10px;
	text-align: center;
	line-height: 2;
	max-width: 550px;
	margin: 0 auto 40px;
	width: 100%;
}
.btmWave {
	margin-bottom: 100px;
	-webkit-transform: rotate(180deg);
	   -moz-transform: rotate(180deg);
	    -ms-transform: rotate(180deg);
	     -o-transform: rotate(180deg);
	        transform: rotate(180deg);
}
#contact .btn {
	background: #3888ba;
	color: #fff;
	padding: 20px;
	box-sizing: border-box;
	border-radius: 5px;
	max-width: 240px;
	width: 100%;
	margin: 30px auto 0;
	text-align: center;
	font-weight: bold;
	border: none;
	display: block;
	box-shadow: 0 3px 0 rgba(24,46,76,.15);
	cursor: pointer;
	transition: .2s;
}
#contact .btn:hover {
	transition: .2s;
	box-shadow: none;
	-webkit-transform: translateY(3px);
	   -moz-transform: translateY(3px);
	    -ms-transform: translateY(3px);
	     -o-transform: translateY(3px);
	        transform: translateY(3px);
}
#hitode01,
#sango,
#shell01,
#shell02 {
	position: absolute;
	width: 20%;
}
#hitode01 {
	left: 7%;
	bottom: 16%;
}
#sango {
	left: 22%;
	bottom: 7%;
}
#shell01 {
	right: 35%;
	bottom: 2%;
}
#shell02 {
	right: 10%;
	bottom: 10%;
}

#information .engAttent {
	font-size: 12px;
}
.bold {
	font-weight: bold;
}
#honbu a {
	text-decoration: underline;
}
#honbu a:hover {
	text-decoration: none;
}

/*==========================
　　　　　　Footer
==========================*/
.copy small {
	font-size: 11px;
	letter-spacing: 1px;
	text-align: center;
	width: 100%;
	font-weight: bold;
	display: block;
	padding: 10px 15px;
	box-sizing: border-box;
}






