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

* {
	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: Arial, Helvetica, "sans-serif";
	font-weight: bold;
}

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

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

#wrapper {
	width: 100%;
	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);
}

/*	LOADING	*/

#loading {
	width: 100%;
	height: 100%;
	background-color: #00a1d8;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 9999;
}

#loading .ldgimg {
	position: absolute;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	display: none;
	text-align: center;
}
#loading .ldgimg img {
	width: 306px;
	height: auto;
	margin-bottom: 30px;
}
#loading .ldgimg p {
	font-size: 14px;
	font-weight: bold;
	color: #fff;
	animation: ldgtxt 1.5s infinite;
}

#loading span {
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	width: 0;
	height: 5px;
	background-color: #fff;
}

#loading span.loaded {
	width: 0;
	height: 0;
	animation: ldg 1.5s;
}

@keyframes ldg {
	0% {
		width: 0;
		height: 5px;
	}
	50% {
		width: 100%;
		height: 5px;
	}
	80% {
		width: 100%;
		height: 5px;
	}
	100% {
		width: 100%;
		height: 0;
	}
}

@keyframes ldgtxt {
	0% {
		opacity: 0;
	}
	40% {
		opacity: 100;
	}
	60% {
		opacity: 100;
	}
	100% {
		width: 100%;
		opacity: 0;
	}
}

@media screen and (max-width: 767px){
	
	#loading .ldgimg {
		width: 100%;
		max-width: 480px;
	}
	
}

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

.main_img {
	background-color: #e1e1e1;
	padding-bottom: 80px;
}

header {
	height: 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 40px;
}

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

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


.g_navi_inner {
	position: absolute;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 40px;
}
	
.g_navi {
	position: fixed;
	z-index: -9999;
	top: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border: none;
	background: #00a1d8;
	transition: all .5s;
	flex-direction: column;
	display: block;
	opacity: 0;
	overflow: auto; /*追加*/
	-webkit-overflow-scrolling: touch; /*追加*/
}

.g_navi.is-active {
	z-index: 9999;
	opacity: 1;
}
.g_navi a {
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	font-size: 24px;
	display: block;
	padding: 20px;
	position: relative;
	margin: 20px 0;
	transition: opacity 0.3s ease;
	text-align: center;
}
.g_navi a::before,
.g_navi a::after {
	position: absolute;
	z-index: 2;
	content: '';
	width: 0;
	height: 0;
	border: 1px solid transparent;
}
.g_navi a::before {
	top: -1px;
	left: -1px;
}
.g_navi a::after {
	bottom: -1px;
	right: -1px;
}

.g_navi a:hover::before,
.g_navi a:hover::after {
	width: 100%;
	height: 100%;
}
.g_navi a:hover::before {
	border-bottom-color: #fff;
	border-left-color: #fff;
	transition: height .3s, width .3s .3s;
}
.g_navi a:hover::after {
	border-top-color: #fff;
	border-right-color: #fff;
	transition: height .3s, width .3s .3s;
}

.g_navi ul {
}

.menubtn {
	position: fixed;
	right: 0;
	top: 0;
	width: 160px;
	height: 80px;
	display: flex;
	z-index: 99;
}

.btn_spmenu {
	background-color: #474747;
	transition: opacity 0.3s ease;
}
.btn_spmenu:hover {
	opacity: 0.6;
}
.btn_contct {
	background-color: #00a1d8;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 80px;
	height: 80px;
	transition: opacity 0.3s ease;
}
.btn_contct:hover {
	opacity: 0.6;
}
.btn_contct img {
	width: 43px;
}
.btn_spmenu, .btn_close {
	position: relative;
	display: block;
	width: 80px;
	height: 80px;
	color: #d6d6d6;
	text-align: center;
	cursor: pointer;
	z-index: 999;
}
	
.btn_close {
	border: none;
	position: absolute;
	right: 0;
	top: 0;
}
	
.btn_spmenu span,
.btn_spmenu::before,
.btn_spmenu::after {
	content: '';
	width: 34px;
	height: 2px;
	position: absolute;
	top: 38px;
	left: 50%;
	margin-left: -17px;
	background: #d6d6d6;
	transition: all 0.3s ease;
}


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

.btn_spmenu::before {
	transform: translateY(-12px);
}

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

.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){

	.main_img {
		padding-bottom: 40px;
	}
	
	header {
		height: 80px;
		padding: 0 10px;
	}

	header .logo img {
		width: 200px;
	}
	.g_navi a {
		font-size: 18px;
		padding: 15px;
		margin: 10px 0;
	}
	
	.menubtn {
		width: 120px;
		height: 60px;
	}
	.btn_contct {
		width: 60px;
		height: 60px;
	}
	.btn_contct img {
		width: 30px;
	}
	.btn_spmenu, .btn_close {
		width: 60px;
		height: 60px;
	}

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

	.btn_spmenu::after {
		transform: translateY(10px);
	}
	
}

/*------アニメーション-----*/

.fadeIn {
	opacity: 0;
	visibility: hidden;
	transition: all 1.0s ease;
}
.fadeIn.show {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.fi_top {
	transform: translateY(30px);
}

.fi_right {
	opacity: 0;
	visibility: hidden;
	transform: translateX(60px);
	transition: all 1.0s ease;
	transition-delay: 0.5s;
}
.fi_left {
	opacity: 0;
	visibility: hidden;
	transform: translateX(-60px);
	transition: all 1.0s ease;
	transition-delay: 0.5s;
}

.fadeIn.show .fi_right, .fadeIn.show .fi_left {
	transform: translateX(0);
	opacity: 1;
	visibility: visible;
}

.delay {
	transition-delay: 1s;
}

.threecol .first {
	opacity: 0;
	visibility: hidden;
	transform: translateY(40px);
	transition: all 1.0s ease;
	transition-delay: 0.5s;
}

.threecol .second {
	opacity: 0;
	visibility: hidden;
	transform: translateY(80px);
	transition: all 1.0s ease;
	transition-delay: 1s;
}

.threecol .third {
	opacity: 0;
	visibility: hidden;
	transform: translateY(120px);
	transition: all 1.0s ease;
	transition-delay: 1.5s;
}

.threecol.show > div {
	opacity: 1;
	visibility: visible;
}
/*------イメージ-----*/





.intro {
	width: calc( 100% - 40px );
	height: calc( 100vh - 100px );
	min-height: 500px;
	position: relative;
	margin-bottom: 80px;
	margin-right: 40px;
}

.intro .txt {
	position: absolute;
	color: #000;
	font-size: 36px;
	background-color: rgba(255,255,255,0.9);
	padding: 0 10px;
	line-height: 56px;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: bold;
}

.intro.right {
	margin-left: 40px;
	margin-right: 0;
}

.img_main {
	margin-left: 40px;
	margin-right: 0;
	background: url("../img/main.jpg") no-repeat right center;
	background-size: cover;
}

.img_main img {
	position: absolute;
	right: 40px;
	bottom: 40px;
	max-width: 260px;
	width: 100%;
}

.img_01 {
	background: url("../img/01.jpg") no-repeat center center;
	background-size: cover;
}

.img_01 .en {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
	font-size: 40px;
}

.img_02 {
	background: url("../img/02.jpg") no-repeat center center;
	background-size: cover;
}

.txt_02 {
	top: 100px;
	right: 70px;
}

.img_03 {
	background: url("../img/03.jpg") no-repeat center center;
	background-size: cover;
}

.txt_03 {
	top: 100px;
	left: 70px;
	background-color: rgba(254,251,64,0.9) !important;
}
.txt_032 {
	top: 156px;
	left: 350px;
}

.img_04 {
	background: url("../img/04.jpg") no-repeat center center;
	background-size: cover;
}

.img_04 .en {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
	font-size: 60px;
}

.img_05 {
	background: url("../img/05.jpg") no-repeat center center;
	background-size: cover;
}

.txt_05 {
	bottom: 156px;
	left: 70px;
}
.txt_052 {
	bottom: 100px;
	left: 150px;
}

.img_06 {
	background: url("../img/06.jpg") no-repeat center center;
	background-size: cover;
}

.img_06 .en {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
	color: #fff;
	font-size: 60px;
}

.img_07 {
	background: url("../img/07.jpg") no-repeat center center;
	background-size: cover;
}

.txt_07 {
	bottom: 156px;
	left: 70px;
}
.txt_072 {
	bottom: 100px;
	left: 150px;
}


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


	.intro {
		width: calc( 100% - 10px );
		height: calc( ( 100vw - 10px ) * 0.6 );
		min-height: auto;
		margin-bottom: 40px;
		margin-right: 10px;
	}

	.intro .txt {
		font-size: 3.5vw;
		padding: 0 1vw;
		line-height: 5.5vw;
	}

	.intro.right {
		margin-left: 10px;
	}

	.img_main {
		margin-left: 10px;
		margin-right: 0;
	}

	.img_main img {
		right: 20px;
		bottom: 20px;
		max-width: 170px;
	}

	.img_01 .en {
		font-size: 5vw;
	}

	.txt_02 {
		top: 8vw;
		right: 5vw;
	}

	.txt_03 {
		top: 8vw;
		left: 5vw;
	}
	.txt_032 {
		top: 13.5vw;
		left: 30vw;
	}

	.img_04 .en {
		font-size: 6vw;
	}

	.txt_05 {
		bottom: 12.5vw;
		left: 5vw;
	}
	.txt_052 {
		bottom: 7vw;
		left: 10vw;
	}

	.img_06 .en {
		font-size: 6vw;
	}

	.txt_07 {
		bottom: 12.5vw;
		left: 5vw;
	}
	.txt_072 {
		bottom: 7vw;
		left: 10vw;
	}

	
}


/*------ポイント-----*/

#about {
	position: relative;
	background: #fff url("../img/bg_logo.png") no-repeat left top;
	background-attachment: fixed;
	background-size: contain;
	padding-bottom: 80px;
}

#about::before{
	/*content: '';
	display: block;
	position: fixed;
	transform: translate(-50%,0);
	left: 50%;
	top: 0;
	width: 100%;
	height: 100%;
	background: url("../img/bg_logo.png") no-repeat left top;
	background-size: contain;
	z-index: -1;*/
}

#about h2 {
	padding-top: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-bottom: 40px;
}
#about h2 span {
	color: #fff;
	font-size: 36px;
	background-color: #00a1d8;
	padding: 0 10px;
	line-height: 56px;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: bold;
}
#about h2 span.ttl_a {
	margin-left: -200px;
}
#about h2 span.ttl_b {
	color: #000;
	background-color: #e1e1e1;
	margin-left: 350px;
}
#about h2 span.ttl_c {
	color: #000;
	background-color: #e1e1e1;
	margin-left: 0px;
}

#about .box {
	display: flex;
	justify-content: space-between;
	width: 100%;
	padding: 0 40px;
	margin: 0 auto;
	max-width: 1366px;
}

#about .box > div {
	width: 31%;
	border: 4px solid #00a1d8;
	background-color: rgba(255, 255, 255, 0.7);
	padding: 30px;
	margin-bottom: 100px;
}

#about .box > div img {
	max-width: 100%;
}

#about .box > div .en {
	font-size: 28px;
	margin-bottom: 10px;
	line-height: 1.3;
	color: #00a1d8;
	text-align: center;
}

#about .box > div h3 {
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 40px;
	color: #00a1d8;
}

#about .box > div .txt {
	font-size: 15px;
	line-height: 1.8;
}

#about .box > div .txt span {
	font-size: 16px;
	font-weight: bold;
}

.threecol.show .first {
	transform: translateY(0);
}

.threecol.show .second {
	transform: translateY(40px);
}

.threecol.show .third {
	transform: translateY(80px);
}

@media screen and (max-width: 999px){
	
	#about .box > div {
		width: 32%;
		padding: 15px;
	}
	
	#about .box > div .en {
		font-size: 22px;
	}
	
	#about .box > div h3 {
		font-size: 14px;
		margin-bottom: 20px;
	}
	
}

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

	#about {
		background: #fff url("../img/bg_logo.png") no-repeat left top;
		background-attachment: scroll;
		background-size: contain;
		padding: 0 20px 20px;
	}

	#about h2 {
		padding-top: 12vw;
		margin-bottom: 40px;
	}
	
	#about h2 span {
		font-size: 20px;
		padding: 0 5px;
		line-height: 30px;
	}
	
	#about h2 span.ttl_a {
		margin-left: -50px;
	}
	
	#about h2 span.ttl_b {
		margin-left: 100px;
	}

	#about .box {
		display: block;
		padding: 0;
		width: 100%;
		max-width: 400px;
	}

	#about .box > div {
		width: 100%;
		padding: 20px;
		margin-bottom: 40px;
	}

	#about .box > div .en {
		font-size: 20px;
		margin-bottom: 5px;
	}

	#about .box > div h3 {
		font-size: 14px;
		margin-bottom: 20px;
	}

	#about .box > div .txt {
		font-size: 14px;
		line-height: 1.8;
	}

	#about .box > div .txt span {
		font-size: 15px;
	}

	#about .second {
		transform: translateY(0);
	}

	#about .third {
		transform: translateY(0);
	}	
	
	
}


/*------スペック-----*/

#spec {
	position: relative;
	background: #e1e1e1 url("../img/bg_logo_gr.png") no-repeat left top;
	background-attachment: fixed;
	background-size: contain;
}

#spec .box {
	display: flex;
	justify-content: space-between;
	width: 100%;
	max-width: 1366px;
	padding: 100px 40px;
	margin: 0 auto;
}

#spec .box > div {
	width: 48%;
}

#spec h2 {
	border: 4px solid #00a1d8;
	background-color: rgba(225,225,225,0.7);
	width: 180px;
	height: 180px;
	display: flex;
	justify-content: center;
	flex-direction: column;
	text-align: center;
	align-items: center;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: bold;
	margin: 0 auto 40px;
	line-height: 1.3;
}

#spec h2 .txt_a {
	font-size: 14px;
	margin-bottom: 10px;
}

#spec h2 .txt_b {
	font-size: 28px;
}

#spec .txt p {
	font-size: 16px;
	line-height: 2;
	margin-bottom: 1.5em;
}

#spec .img {
	position: relative;
}

#spec .img img {
	max-width: 100%;
}

#spec .swiper-container, #spec .swiper-wrapper, #spec .swiper-slide {
	width: 100%;
}		

#spec .swiper-container {
	padding-bottom: 50px !important;
}

#spec .swiper-pagination-bullet {
	background: #bfbfbf !important;
	opacity: 1 !important;
	width: 12px !important;
	height: 12px !important;
	margin: 0 16px !important;
}

#spec .swiper-pagination-bullet-active {
	background: #00a1d8 !important;
}

#spec .swiper-button-prev,
#spec .swiper-button-next {
	display: block;
	width: 50px !important;
	height: 50px !important;
}

#spec .swiper-button-prev {
	background: #00a1d8 url("../img/prev.png") no-repeat 50% 50% !important;
	background-size: 14px !important;
	left: -25px !important;
}

#spec .swiper-button-next {
	background: #00a1d8 url("../img/next.png") no-repeat 50% 50% !important;
	background-size: 14px !important;
	right: -25px !important;
}
	

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

	#spec {
		background: #e1e1e1 url("../img/bg_logo_gr.png") no-repeat left top;
		background-attachment: scroll;
		background-size: contain;
	}

	#spec .box {
		display: block;
		padding: 15vw 20px 40px;
		max-width: 640px;
	}

	#spec .box > div {
		width: 100%;
	}

	#spec h2 {
		width: 140px;
		height: 140px;
		display: flex;
		margin: 0 auto 30px;
	}

	#spec h2 .txt_a {
		font-size: 11px;
	}

	#spec h2 .txt_b {
		font-size: 20px;
	}

	#spec .txt {
		margin-bottom: 30px;
	}
	
	#spec .txt p {
		font-size: 14px;
		line-height: 1.8;
		margin-bottom: 1em;
	}

	#spec .swiper-pagination-bullet {
		background: #bfbfbf !important;
		opacity: 1 !important;
		width: 10px !important;
		height: 10px !important;
		margin: 0 12px !important;
	}

	#spec .swiper-button-prev,
	#spec .swiper-button-next {
		display: block;
		width: 36px !important;
		height: 36px !important;
	}

	#spec .swiper-button-prev {
		background: #00a1d8 url("../img/prev.png") no-repeat 50% 50% !important;
		background-size: 10px !important;
		left: -18px !important;
	}

	#spec .swiper-button-next {
		background: #00a1d8 url("../img/next.png") no-repeat 50% 50% !important;
		background-size: 10px !important;
		right: -18px !important;
	}
	
	#spec .swiper-container {
		padding-bottom: 40px !important;
	}
	
}

/*------データ----*/

#data {
	background: #fff;
}

#data .box {
	width: 100%;
	max-width: 1000px;
	padding: 100px 40px;
	margin: 0 auto;
}

#data .box .table {
	width: 100%;
	display: table;
	border-top: 1px solid #bfbfbf;
	border-left: 1px solid #bfbfbf;
	margin-bottom: 70px;
}
#data .box .tr {
	display: table-row;
}
#data .box .th, #data .box .td {
	display: table-cell;
	font-size: 16px;
	padding: 25px;
	border-bottom: 1px solid #bfbfbf;
	border-right: 1px solid #bfbfbf;
	line-height: 1.3;
	vertical-align: middle;
}

#data .box .th {
	width: 180px;
	text-align: center;
	background: #eeeeee;
}

.btn_form {
	font-size: 24px;
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	text-decoration: none;
	width: 100%;
	max-width: 440px;
	height: 80px;
	background-color: #00a1d8;
	margin: 0 auto;
	transition: opacity 0.3s ease;
}

.btn_form::before {
	content: '';
	display: inline-block;
	width: 43px;
	height: 27px;
	background: url("../img/icon_mail.png") no-repeat left top;
	background-size: cover;
	margin-right: 20px;
}

.btn_form:hover {
	opacity: 0.6;
}

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

	#data .box {
		padding: 40px 20px;
		max-width: 640px;
	}

	#data .box .table {
		margin-bottom: 40px;
	}

	#data .box .th, #data .box .td {
		font-size: 13px;
		padding: 15px 8px;
	}

	#data .box .th {
		width: 80px;
	}

	.btn_form {
		font-size: 18px;
		height: 60px;
	max-width: 320px;
	}

	.btn_form::before {
		width: 30px;
		height: 19px;
		margin-right: 15px;
	}
	
	
}



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

#images {
	position: relative;
	background: #e1e1e1 url("../img/bg_logo_gr.png") no-repeat left top;
	background-attachment: fixed;
	background-size: contain;
	padding-bottom: 80px;
}

#images h2 {
	padding-top: 180px;
	margin: 0 60px 20px 0;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-end;
}

#images h2 span {
	color: #fff;
	font-size: 36px;
	background-color: #00a1d8;
	padding: 0 10px;
	line-height: 56px;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: bold;
}
#images h2 span.ttl_a {
	margin-right: 100px;
}
#images h2 span.ttl_b {
	color: #000;
	background-color: #fff;
}


.h3box {
	margin-bottom: 45px;
}

.h3box h3 {
	color: #00a1d8;
	font-size: 60px;
	margin-bottom: 20px;
}

.h3box .jp {
	color: #000;
	font-size: 24px;
	background-color: #fff;
	padding: 0 10px;
	line-height: 44px;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: bold;
	display: inline-block;
}

#images .h3box {
	margin-left: 80px;
}

#images .box {
	margin-right: 80px;
	display: flex;
	margin-bottom: 60px;
}

#images .box.right {
	margin-left: 80px;
	margin-right: 0;
	padding-bottom: 100px;
	margin-bottom: 0;
}

#images .box > div {
	width: 50%;
}
#images .box div img {
	width: 100%;
	max-width: 100%;
}

.h3box.other {
	text-align: center;
	margin-left: 0 !important;
}

#slideshow {
	margin-bottom: 70px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
#slideshow > div {
	width: 16.6666%;
	padding: 5px;
}

#slideshow img {
	max-width: 100%;
}
	

.swiper-slide img {
	transition: opacity 0.3s ease;
}
.swiper-slide img:hover {
	opacity: 0.6 !important;
}




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

	#images {
		background: #e1e1e1 url("../img/bg_logo_gr.png") no-repeat left top;
		background-attachment: scroll;
		background-size: contain;
		padding-bottom: 40px;
	}

	#images h2 {
		padding-top: 15vw;
		margin: 0 0 40px 0;
		align-items: center;
	}
	
	#images h2 span {
		font-size: 20px;
		padding: 0 5px;
		line-height: 30px;
	}
	
	#images h2 span.ttl_a {
		margin: 0 0 0 -50px;
	}
	
	#images h2 span.ttl_b {
		margin-left: 150px;
	}

	.h3box {
		margin-bottom: 20px;
		text-align: center;
		margin-left: 0 !important;
	}

	.h3box h3 {
		font-size: 26px;
		margin-bottom: 10px;
	}

	.h3box .jp {
		font-size: 14px;
		padding: 0 5px;
		line-height: 24px;
	}

	#images .box {
		margin-right: 10px;
		margin-bottom: 30px;
	}

	#images .box.right {
		margin-left: 10px;
		margin-right: 0;
		padding-bottom: 50px;
		margin-bottom: 0;
	}

	#slideshow {
		margin-bottom: 40px;
	}

	#slideshow > div {
		width: 25%;
		padding: 5px;
	}
	
	

}

/*------サウンド----*/

#sound {
	position: relative;
	background: #fff url("../img/bg_logo.png") no-repeat left top;
	background-attachment: fixed;
	background-size: contain;
	padding: 100px 0;
}

#sound h2 {
	color: #00a1d8;
	font-size: 60px;
	margin-bottom: 70px;
	text-align: center;
}

#sound h3 {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: 60px;
}

#sound h3 span {
	color: #fff;
	font-size: 36px;
	background-color: #00a1d8;
	padding: 0 10px;
	line-height: 56px;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: bold;
}
#sound h3 span.ttl_a {
	margin-left: -100px;
}
#sound h3 span.ttl_b {
	color: #000;
	background-color: #e1e1e1;
	margin-left: 240px;
}


#sound .inner {
	width: 100%;
	max-width: 1366px;
	padding: 0 40px;
	margin: 0 auto;
}

#sound .box {
	display: flex;
	justify-content: space-between;
	flex-shrink: 1;
	border: 4px solid #00a1d8;
	padding: 40px;
	background-color: rgba(255,255,255,0.7);
	align-items: flex-start;
}

#sound .box > div {
	width: 48%;
}

#sound .img {
	display: flex;
	justify-content: space-between;
}

#sound .img > div {
	width: 48%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

#sound .img img {
	max-width: 100%;
	width: 100%;
	height: auto;
}

.sound_main {
	width: 48%;
}

#sound h4 {
	font-size: 36px;
	margin-bottom: 30px;
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: bold;
	line-height: 1.5;
}

#sound .txt p {
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 1.5em;
}

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


#sound {
	background: #fff url("../img/bg_logo.png") no-repeat left top;
	background-attachment: scroll;
	background-size: contain;
	padding: 15vw 0 40px;
}

	#sound h2 {
		font-size: 26px;
		margin-bottom: 30px;
	}

	#sound h3 {
		margin: 0 0 40px 0;
		align-items: center;
	}
	
	#sound h3 span {
		font-size: 20px;
		padding: 0 5px;
		line-height: 30px;
	}
	
	#sound h3 span.ttl_a {
		margin: 0 0 0 -50px;
	}
	
	#sound h3 span.ttl_b {
		margin-left: 150px;
	}
	
	
	#sound .inner {
		padding: 0 20px;
	}

	#sound .box {
		display: block;
		padding: 20px;
		max-width: 480px;
		margin: 0 auto;
	}

	#sound .box > div {
		width: 100%;
	}

	#sound .img > div {
		margin-bottom: 20px;
	}
	
	#sound h4 {
		font-size: 18px;
		margin-bottom: 20px;
		text-align: center;
	}

	#sound .txt p {
		font-size: 15px;
		line-height: 1.8;
		margin-bottom: 1em;
	}
	
}



/*------コンタクト----*/

#contact {
	background: #00a1d8 url("../img/bg_logo_bl.png") no-repeat left top;
	position: relative;
	background-attachment: fixed;
	background-size: contain;
	padding: 100px 0;
}

#contact .h3box h3 {
	color: #fff;
}

#contact .h3box .jp {
	color: #00a1d8;
}

#contact .inner {
	width: 100%;
	max-width: 1366px;
	padding: 0 40px;
	margin: 0 auto;
}

#contact .box {
	border: 4px solid #fff;
	padding: 60px 40px;
	color: #fff;
	font-size: 18px;
	background-color: rgba(0,161,216,0.7);
}
#contact .box h4 {
	text-align: center;
	margin-bottom: 1.5em;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.5;
}
#contact .form {
	max-width: 900px;
	margin: 0 auto;
	display: table;
}

#contact .form .tr {
	display: table-row;
}
#contact .form .th, #contact .form .td {
	padding: 20px 10px;
	display: table-cell;
	vertical-align: middle;
	font-weight: bold;
}
#contact .form .th {
	width: 200px;
}
#contact .form .att {
	margin-bottom: 50px;
}
#contact .require {
	color: #ffff00;
}
#contact input[type='text'] {
	width: 100%;
	height: 46px;
	border: none;
	padding: 5px;
	-webkit-appearance : none;
	border-radius: 0;
	transition: all 0.3s ease;
}
#contact textarea {
	width: 100%;
	height: 300px;
	border: none;
	padding: 5px;
	-webkit-appearance : none;
	border-radius: 0;
	transition: all 0.3s ease;
}

#contact input[type='text']:focus, #contact textarea:focus {
	background-color: #eee;
}

.submit {
	width: 100%;
	max-width: 440px;
	height: 70px;
	margin: 30px auto 0;
	background-color: #00a1d8;
	color: #fff;
	font-size: 22px;
	display: block;
	border: 3px solid #fff;
	font-weight: bold;
	cursor: pointer;
	transition: opacity 0.3s ease;
	-webkit-appearance : none;
	border-radius: 0;
	font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}

.submit:hover {
	opacity: 0.65;
}

.tel {
	text-align: center;
	color: #fff;
	margin-bottom: 40px;
}

.tel h4 {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}
.tel .no a {
	font-size: 36px;
	font-weight: bold;
	color: #fff;
	text-decoration: none;
	padding: 12px 30px;
	border: 1px solid #fff;
	display: inline-block;
	margin-bottom: 20px;
	transition: all 0.3s ease;
}
.tel .no a:hover {
	background: rgba(255,255,255,0.4);
}
.tel .no a::before {
	content: '';
	display: inline-block;
	width: 18px;
	height: 28px;
	background: url("../img/tel.png") no-repeat left top;
	background-size: cover;
	margin-right: 10px;
}
.tel .cp {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 1em;
}
.tel .att {
	font-size: 14px;
}
@media screen and (max-width: 767px){
	
	#contact {
		background: #00a1d8 url("../img/bg_logo_gr.png") no-repeat left top;
		background-attachment: scroll;
		background-size: contain;
		padding: 15vw 0 0;
	}

	#contact .inner {
		padding: 0 20px 40px;
	}

	#contact .h3box {
		margin-bottom: 30px;
	}
	
	#contact .box {
		max-width: 480px;
		padding: 20px;
		font-size: 15px;
		margin: 0 auto;
	}
	#contact .box h4 {
		margin-bottom: 2em;
		font-size: 15px;
	}
	#contact .form {
		display: block;
	}
	#contact .form .tr {
		display: block;
		margin-bottom: 20px;
	}
	#contact .form .th, #contact .form .td {
		padding: 0;
		margin-bottom: 10px;
		display: block;
	}
	#contact .form .th {
		width: 100%;
	}
	#contact .form .att {
		margin-bottom: 2em;
	}
	#contact input[type='text'] {
		height: 40px;
		border: none;
	}
	#contact textarea {
		height: 300px;
	}

	.submit {
		max-width: 320px;
		height: 60px;
		margin: 30px auto 0;
		font-size: 18px;
	}
	
	.tel {
		margin-bottom: 30px;
	}

	.tel h4 {
		font-size: 15px;
		margin-bottom: 15px;
	}
	.tel .no a {
		font-size: 24px;
		padding: 12px 30px;
		margin-bottom: 15px;
	}

	.tel .no a::before {
		width: 13px;
		height: 19px;
		margin-right: 10px;
	}
	.tel .cp {
		font-size: 13px;
	}
	.tel .att {
		font-size: 13px;
	}
	
}


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

footer {
	background-color: #474747;
	color: #c6c6c6;
	text-align: center;
	padding: 50px 40px;
}

footer .txt {
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
	font-weight: bold;
	font-size: 22px;
	margin-bottom: 20px;
	color: #c6c6c6;
}

footer img {
	width: 400px;
	margin-bottom: 30px;
	opacity: 0.7;
}

footer .zoom {
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 1em;
}

footer .add {
	line-height: 1.8;
	font-size: 14px;
	margin-bottom: 2em;
}

small {
	font-size: 12px;
}


@media screen and (max-width: 767px){
	
	footer {
		padding: 40px 10px;
	}

	footer .txt {
		font-size: 18px;
		margin-bottom: 15px;
	}

	footer img {
		width: 280px;
		margin-bottom: 25px;
	}

	footer .zoom {
		font-size: 13px;
	}

	footer .add {
		font-size: 13px;
	}

	small {
		font-size: 10px;
	}
	
}
