@charset "UTF-8";
@import url(./reset.css);
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
@import url(https://fonts.googleapis.com/css?family=Roboto:900i);

* {
	box-sizing: border-box;
}

html {
	overflow: auto;
}
body {
	font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-weight: normal;
	font-size: 14px;
	-webkit-text-size-adjust: none;
	-webkit-font-smoothing: antialiased;
	line-height: 1;
	color: #000;
	background-color: #fff;
	overflow: hidden;
}

img {
	border: none;
	vertical-align: bottom;
	height: auto;
}

.clearfix:after {
	content: ""; 
	display: block; 
	height: 0; 
	font-size:0;	
	clear: both; 
	visibility:hidden;
}

.mb0 { margin-bottom: 0px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb30 { margin-bottom: 30px !important; }
.mb40 { margin-bottom: 40px !important; }
.mb50 { margin-bottom: 50px !important; }
.mb60 { margin-bottom: 60px !important; }
.mb1em { margin-bottom: 1em !important; }
.mb2em { margin-bottom: 2em !important; }
.mb3em { margin-bottom: 3em !important; }
.mb4em { margin-bottom: 4em !important; }
.mb5em { margin-bottom: 5em !important; }
.mb6em { margin-bottom: 6em !important; }
.pt0 { padding-top: 0px !important; }
.pb0 { padding-bottom: 0px !important; }
.pt60 { padding-top: 60px !important; }
.pb60 { padding-bottom: 60px !important; }
.center { text-align: center; }
.alignright { text-align: right; }
.aligncenter { text-align: center; }
.bold { font-weight: 900; }
.nowrap { white-space: nowrap; }


.en {
	font-family: 'Roboto', sans-serif;
	font-weight: 900;
	font-style: italic;
}

@media screen and (max-width: 767px){
	.pcOnly{
		display: none;
	}
}

@media screen and (min-width: 768px){
	.spOnly{
		display: none;
	}
}

#wrapper {
	width: 100%;
	max-width: 2000px;
	position: relative;
	margin: 0 auto;
}

@media screen and (max-width: 767px){
	
	#wrapper {
		min-width: 100%;
	}
	
}

#js-menuBk {
	display: none;
	position: fixed;
	z-index: 10;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
}

/*------ヘッダーメニュー-----*/


header {
	width: 100%;
	height: 90px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 0 0 20px;
	background-color: #fff;
}

header .logo img {
	width: 280px;
	transition: 0.3s opacity ease;
}

header .logo img:hover {
	opacity: 0.6;
}

.g_navi {
	position: fixed;
	z-index: -9999;
	top: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border: none;
	background: #005faa;
	transition: all .5s;
	flex-direction: column;
	display: block;
	opacity: 0;
	overflow: auto; /*追加*/
	-webkit-overflow-scrolling: touch; /*追加*/
}

.g_navi_inner {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 20px;
}
	
.g_navi.is-active {
	z-index: 9999;
	opacity: 1;
}

.g_navi a {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 18px;
	display: block;
	padding: 20px;
	position: relative;
	margin: 30px 0;
	transition: opacity 0.3s ease;
	text-align: center;
}

.g_navi a:hover {
	opacity: 0.6;
}

.menubtn {
	position: absolute;
	right: 0;
	top: 0;
	width: 90px;
	height: 90px;
	display: flex;
	z-index: 99;
	background-color: #005faa;
	transition: opacity 0.3s ease;
}

.menubtn:hover {
	opacity: 0.6;
}

.menubtn, .btn_close {
	position: relative;
	display: block;
	width: 90px;
	height: 90px;
	color: #d6d6d6;
	text-align: center;
	cursor: pointer;
	z-index: 999;
}
	
.btn_close {
	border: none;
	position: absolute;
	right: 0;
	top: 0;
}
	
.menubtn span,
.menubtn::before,
.menubtn::after {
	content: '';
	width: 36px;
	height: 2px;
	position: absolute;
	top: 44px;
	left: 50%;
	margin-left: -18px;
	background: #fff;
	transition: all 0.3s ease;
}


.btn_close span,
.btn_close::before,
.btn_close::after {
	content: '';
	width: 36px;
	height: 2px;
	position: absolute;
	top: 44px;
	left: 50%;
	margin-left: -18px;
	background: #fff;
	transition: all 0.3s ease;
}

.menubtn::before {
	transform: translateY(-16px);
}

.menubtn::after {
	transform: translateY(16px);
}

.btn_close span {
	opacity: 0;
}

.btn_close::before {
	transform: translateY(0) rotate(45deg);
}

.btn_close::after {
	transform: translateY(0) rotate(-45deg);
}
	

@media screen and (max-width: 767px){
	
	header {
		height: 60px;
		padding: 0 0 0 10px;
		position: fixed;
		z-index: 999;
	}

	header .logo img {
		width: 200px;
	}
	.g_navi a {
		font-size: 16px;
		padding: 15px;
		margin: 20px 0;
	}
	
	.menubtn {
		width: 60px;
		height: 60px;
	}

	.menubtn, .btn_close {
		width: 60px;
		height: 60px;
	}

	.menubtn span,
	.menubtn::before,
	.menubtn::after,
	.btn_close span,
	.btn_close::before,
	.btn_close::after {
		width: 26px;
		top: 28px;
		margin-left: -13px;
	}
	
	.menubtn::before {
		transform: translateY(-12px);
	}

	.menubtn::after {
		transform: translateY(12px);
	}
	
}

/*------イメージ-----*/

.main {
	position: relative;
}

.swiper-container {
	width: 100%;
	height: 50vw;
	max-height: 800px;
	position: relative;
}

.swiper-wrapper, .swiper-slide {
	width: 100%;
	height: 100%;
}	

.slide01 {
	background: url("../img/slide01.jpg") no-repeat 50% 50%;
	background-size: cover;
}
.slide02 {
	background: url("../img/slide02.jpg") no-repeat 50% 50%;
	background-size: cover;
}

.main .txtt {
	position: absolute;
	z-index: 998;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
	text-align: center;
}

.main .lead {
	font-size: 66px;
	margin-bottom: 40px;
	letter-spacing: 0.1em;
	white-space: nowrap;
	line-height: 1.5;
}

.main .caption {
	font-size: 22px;
	font-weight: bold;
	letter-spacing: 0.2em;
}

@media screen and (max-width: 767px){

	main {
		padding-top: 60px;
	}
	
	.swiper-container {
		height: 350px;
	}

	.main .lead {
		font-size: 30px;
		margin-bottom: 25px;
	}

	.main .caption {
		font-size: 13px;
	}
	
}

/*------アバウト-----*/

.about .inner {
	max-width: 1040px;
	padding: 0 20px;
	margin: 0 auto;
}

.h2box {
	padding: 70px 0 65px 0;
	text-align: center;
}

.h2box .en {
	font-size: 36px;
	color: #005faa;
	letter-spacing: 0.1em;
}


.about .caption {
	font-size: 15px;
	line-height: 2;
	letter-spacing: 0.2em;
	margin-bottom: 80px;
}

@media screen and (max-width: 767px){
	
	.inner {
		padding: 0 10px;
	}

	.h2box {
		padding: 40px 0 30px 0;
	}

	.h2box .en {
		font-size: 24px;
	}



	.about .caption {
		font-size: 12px;
		line-height: 2;
		margin-bottom: 50px;
	}
	
}

/*-----ムービー-----*/

.movie {
	color: #fff;
	position: relative;
}

.movie::after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 70%;
	background-color: #005faa;
	z-index: -1;
}

.movie .inner {
	max-width: 900px;
	padding: 0 20px 70px;
	margin: 0 auto;
}

.movie .inner div {
	width: 100%;
	padding-bottom: 56.25%;  /*高さをpaddingで指定(16:9)*/
	height: 0px;              /*高さはpaddingで指定するためheightは0に*/
	position: relative;
	margin-bottom: 50px;
}

.movie iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.movie p {
	font-size: 15px;
	line-height: 2;
	letter-spacing: 0.1em;
}


@media screen and (max-width: 767px){

	.movie::after {
		height: 80%;
	}

	.movie .inner {
		padding: 0 20px 40px;
	}

	.movie .inner div {
		margin-bottom: 25px;
	}

	.movie p {
		font-size: 12px;
	}
	
}

/*------設備-----*/

.facility {
	background-color: #f5f5f5;
}

.facility .inner {
	max-width: 1040px;
	padding: 0 20px 100px;
	margin: 0 auto;
}

.facility ul {
	display: flex;
	justify-content: space-between;
}

.facility li {
	width: 30%;
}

.facility li img {
	width: 100%;
	margin-bottom: 45px;
}

.facility li h3 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 35px;
	letter-spacing: 0.1em;
	text-align: center;
}

.facility li p {
	font-size: 14px;
	line-height: 1.8;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 767px){
	
	.facility .inner {
		padding: 0 20px;
	}

	.facility ul {
		display: block;
	}

	.facility li {
		width: 100%;
		padding-bottom: 50px;
	}

	.facility li img {
		max-width: 480px;
		margin: 0 auto 25px;
		display: block;
	}

	.facility li h3 {
		font-size: 13px;
		margin-bottom: 25px;
	}

	.facility li p {
		max-width: 480px;
		font-size: 12px;
		margin: 0 auto;
	}
	
}

/*------その他-----*/

.other .inner {
	max-width: 1040px;
	padding: 90px 20px 0;
	margin: 0 auto;
}

.other .box {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin-bottom: 90px;
}

.other img {
	width: 50%;	
}

.other .right > div {
	width: 50%;
	padding: 0;
	margin-left: 50px;
}

.other .left > div {
	width: 50%;
	padding: 0;
	margin-right: 50px;
	order: -1;
}

.other .h2box {
	padding: 0 0 45px;
	text-align: left;
}

.other .caption {
	font-size: 14px;
	line-height: 1.8;
	letter-spacing: 0.1em;
}

@media screen and (max-width: 767px){
	
	.other .inner {
		padding: 50px 20px 0;
	}

	.other .box {
		display: block;
		margin-bottom: 50px;
	}

	.other img {
		width: 100%;
		max-width: 480px;
		margin: 0 auto 25px;
		display: block;
	}

	.other .right > div {
		margin-left: 0;
		width: 100%;
	}

	.other .left > div {
		margin-right: 0;
		width: 100%;
	}

	.other .h2box {
		padding: 0 0 30px;
		text-align: center;
	}

	.other .caption {
		font-size: 12px;
	}
	
}

/*------会社概要-----*/

.company {
	background-color: #f5f5f5;
}

.company .inner {
	max-width: 1040px;
	padding: 0 20px 90px;
	margin: 0 auto;
}

.company .ul_toggle li {
	background-color: #fff;
	box-shadow: 0 0 10px rgba(0,0,0,0.03);
	margin-bottom: 40px;
}

.company .ul_toggle li:last-child {
	margin-bottom: 0;
}

.company .ul_toggle h3 {
	background: #fff url("../img/icon_open.png") no-repeat right 25px top 50%;
	background-size: 20px;
	height: 80px;
	font-size: 18px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.1em;
	cursor: pointer;
	color: #005faa;
}

.company .ul_toggle h3.open {
	background: #005faa url("../img/icon_close.png") no-repeat right 25px top 50%;
	background-size: 20px;
	color: #fff;
}

.company .txt {
	width: 100%;
	padding: 60px 50px;
}

.company .lead {
	font-size: 22px;
	line-height: 1.5;
	margin-bottom: 40px;
	letter-spacing: 0.1em;
	text-align: center;
	font-weight: bold;
}

.company .caption {
	font-size: 14px;
	line-height: 1.8;
	letter-spacing: 0.1em;
}

.company iframe {
	width: 100%;
	height: 500px;
	margin-top: 50px;
}

.table {
	margin: -30px;
}
.table .tr {
	width: 100%;
	display: flex;
	border-bottom: 1px solid #e5e5e5;
	font-size: 14px;
	letter-spacing: 0.1em;
}
.table .tr:last-of-type {
	border: none;
}
.table .th {
	width: 150px;
	padding: 30px;
	line-height: 1.8;
}
.table .td {
	width: calc( 100% - 150px );
	padding: 30px;
	line-height: 1.8;
}

@media screen and (max-width: 767px){
	
	.company .inner {
		padding: 0 20px 50px;
	}

	.company .ul_toggle li {
		box-shadow: 0 0 10px rgba(0,0,0,0.03);
		margin-bottom: 30px;
	}

	.company .ul_toggle h3 {
		background: #fff url("../img/icon_open.png") no-repeat right 12px top 50%;
		background-size: 12px;
		height: 60px;
		font-size: 14px;
	}

	.company .ul_toggle h3.open {
		background: #005faa url("../img/icon_close.png") no-repeat right 12px top 50%;
		background-size: 12px;
	}

	.company .txt {
		padding: 30px 20px;
	}

	.company .lead {
		font-size: 13px;
		margin-bottom: 30px;
	}

	.company .caption {
		font-size: 12px;
	}
	
	.company iframe {
		height: 250px;
		margin-top: 30px;
	}
	
	.table {
		margin: -25px 0;
	}
	.table .tr {
		font-size: 10px;
	}
	.table .th {
		width: 85px;
		padding: 20px 0;
	}
	.table .td {
		width: calc( 100% - 85px );
		padding: 20px 0;
	}
	
}



.ftr_img {
	width: 100%;
	max-height: 500px;
	min-height: 250px;
	height: 35vw;
	background: url("../img/ftr_img.jpg") no-repeat 50% 50%;
	background-size: cover;
}



/*------お問い合わせ-----*/

.contact {
	background-color: #f5f5f5;
}

.contact .inner {
	max-width: 1040px;
	padding: 0 20px 100px;
	margin: 0 auto;
}

.contact .caption {
	font-size: 14px;
	line-height: 1.8;
	letter-spacing: 0.1em;
	text-align: center;
	margin-bottom: 50px;
}

.contact_box {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	padding: 15px 0;
	display: flex;
}

.contact_box > div {
	width: 50%;
	text-align: center;
	padding: 15px 0;
}

.contact_box > div:first-of-type {
	border-right: 1px solid #ccc;
}

.contact_box h3 {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 30px;
}

.contact_box .tel {
	font-size: 36px;
	font-weight: bold;
	color: #005faa;
	margin-bottom: 20px;
}

.contact_box .tel::before {
	content: '';
	display: inline-block;
	width: 18px;
	height: 28px;
	background: url("../img/icon_tel.png") no-repeat left top;
	background-size: cover;
	margin-right: 15px;
}

.contact_box a {
	width: 100%;
	max-width: 300px;
	height: 60px;
	line-height: 60px;
	background-color: #005faa;
	color: #fff;
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	border-radius: 5px;
	display: inline-block;
	transition: opacity 0.3s ease;
}

.contact_box a::before {
	content: '';
	display: inline-block;
	width: 19px;
	height: 14px;
	background: url("../img/icon_mail.png") no-repeat left top;
	background-size: cover;
	margin-right: 15px;
}

.contact_box a:hover {
	opacity: 0.6;
}

.contact_box .att {
	font-size: 14px;
}

@media screen and (max-width: 767px){
	
	.contact .inner {
		padding: 0 20px 50px;
	}
	
	.contact .caption {
		font-size: 12px;
		margin-bottom: 30px;
	}
	
	.contact_box {
		padding: 0;
		display: block;
	}

	.contact_box > div {
		width: 100%;
		padding: 25px 20px;
	}

	.contact_box > div:first-of-type {
		border-right: none;
		border-bottom: 1px solid #ccc;
	}

	.contact_box h3 {
		font-size: 14px;
		margin-bottom: 20px;
	}

	.contact_box .tel {
		font-size: 30px;
		margin-bottom: 15px;
	}

	.contact_box a {
		max-width: 240px;
		height: 50px;
		line-height: 50px;
		font-size: 14px;
	}

	.contact_box .att {
		font-size: 12px;
	}

}

/*------フッター-----*/

footer {
	background-color: #005faa;
	padding: 35px 40px;
	color: #fff;
	display: flex;
	justify-content: space-between;
}

footer small {
	font-size: 11px;
	letter-spacing: 0.1em;
}

footer a {
	color: #fff;
	font-size: 12px;
	text-decoration: none;
}

footer a:hover {
	text-decoration: underline;
}

@media screen and (max-width: 767px){
	
	footer {
		padding: 30px 20px;
		flex-direction: column;
		align-items: center;
	}

	footer small {
		font-size: 10px;
		margin-bottom: 30px;
	}

	footer a {
		font-size: 12px;
	}
	
}



/*--------------pageTop--------------*/

#pageTop{
	position: fixed;
	right: -60px;
	bottom: 20px;
	width: 40px;
	height: 40px;
	background: rgba(0, 0, 0, 0.5) url(../img/pagetop.png) no-repeat 50% 50%;
	background-size: 14px;
	z-index: 9998;
	transition: all 0.3s ease;
	text-indent: -9999px;
}

#pageTop.showIn{
	right: 0;
}

@media screen and (min-width: 768px), print{
	#pageTop{
		right: 35px;
		bottom: -60px;
		width: 60px;
		height: 60px;
		background: rgba(0, 0, 0, 0.5) url(../img/pagetop.png) no-repeat 50% 50%;
		background-size: 27px;
	}
	
	#pageTop.showIn{
		right: 35px;
		bottom: 30px;
	}
}


/*------下層-----*/

.page_hdr {
	background-color: #f5f5f5;
	padding: 60px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #005faa;
	margin-bottom: 50px;
	font-size: 24px;
}

article .inner {
	max-width: 1040px;
	padding: 0 20px 50px;
	margin: 0 auto;
	letter-spacing: 0.1em;
}

.pankuzu {
	margin-bottom: 50px;
	font-size: 11px;
}

article a {
	color: #005faa;
	text-decoration: underline;
}
article a:hover {
	text-decoration: none;
}

article .hdg_a {
	font-size: 16px;
	font-weight: bold;
	padding: 0 10px 15px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 25px;
}

article .honbun {
	font-size: 14px;
	line-height: 2;
	margin-bottom: 70px;
}

@media screen and (max-width: 767px){
	
	.page_hdr {
		padding: 30px 20px;
		margin-bottom: 30px;
		font-size: 18px;
	}
	
	article .inner {
		padding: 0 20px 50px;
	}
	
	.pankuzu {
		margin-bottom: 30px;
		font-size: 10px;
	}

	article .hdg_a {
		font-size: 13px;
		padding: 0 0 10px;
		margin-bottom: 20px;
	}

	article .honbun {
		font-size: 12px;
		margin-bottom: 40px;
	}
	
}

/*------フォーム-----*/

.form > p {
	text-align: center;
	font-size: 14px;
	line-height: 2;
	margin-bottom: 3em;
}

.f_table {
	border-bottom: 1px solid #e5e5e5;
	font-size: 14px;
	margin-bottom: 50px;
}

.f_table .tr {
	width: 100%;
	display: flex;
	border-top: 1px solid #e5e5e5;
}

.f_table .th {
	width: 250px;
	padding: 30px 25px;
	background-color: #f5f5f5;
	line-height: 1.5;
	display: flex;
	align-items: center;
}

.f_table span {
	background-color: #005faa;
	font-size: 11px;
	padding: 2px 5px;
	color: #fff;
	white-space: nowrap;
	margin-left: 15px;
	line-height: 14px;
}

.f_table .td {
	width: calc( 100% - 250px );
	padding: 30px 25px;
	line-height: 1.5;
	text-align: left;
}

.f_table input[type='text'], .f_table textarea {
	border: 1px solid #ccc;
	width: 100%;
	height: 46px;
	padding: 5px;
	transition: all 0.3s ease;
	-webkit-appearance : none;
	border-radius: none !important;
	line-height: 1.5;
}

.f_table input[type='text']:focus, .f_table textarea:focus {
	background-color: #f5f5f5;
	border: 1px solid #999;
}

.f_table textarea {
	height: 200px;
}

.privacy {
	background-color: #f5f5f5;
	padding: 30px;
	font-size: 14px;
	line-height: 1.5;
	text-align: center;
	margin: 0 auto 50px;
	max-width: 640px;
}

.privacy div {
	font-weight: bold;
}

.form input[type='submit'] {
	font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	width: 100%;
	max-width: 320px;
	height: 60px;
	color: #fff;
	background-color: #005faa;
	font-size: 16px;
	border: none;
	margin: 0 auto 60px;
	font-weight: bold;
	cursor: pointer;
	transition: opacity 0.3s ease;
	-webkit-appearance : none;
	border-radius: none !important;
	display: block;
}

.form input[type='submit']:hover {
	opacity: 0.6;
}

@media screen and (max-width: 767px){
	
	.form > p {
		text-align: left;
		font-size: 12px;
		margin-bottom: 3em;
	}
	
	.f_table {
		font-size: 13px;
		margin-bottom: 0;
		border: none;
	}

	.f_table .tr {
		display: block;
		border: none;
	}
	
	.f_table .th {
		width: 100%;
		background-color: transparent;
		padding: 0;
		display: block;
	}

	.f_table span {
		font-size: 10px;
		padding: 2px 5px;
		margin-left: 10px;
		line-height: 12px;
	}

	.f_table .td {
		width: 100%;
		padding: 15px 0 30px;
	}
	
	.f_table input[type='text'], .f_table textarea {
		height: 36px;
		padding: 5px;
	}

	.f_table textarea {
		height: 200px;
	}

	.privacy {
		max-width: 480px;
		padding: 20px 10px;
		font-size: 13px;
		margin: 0 auto 30px;
	}

	.form input[type='submit'] {
		width: 100%;
		max-width: 240px;
		height: 50px;
		font-size: 14px;
		margin-bottom: 10px;
		border-radius: 5px;
	}
	
}