@charset "utf-8";

/*-------------------------------------------------------------------
基本設定
-------------------------------------------------------------------*/

body {
	font-size: 100%;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-style: normal;
	line-height: 2.0em;
	color: #fff;
	background-color: #14142E;
	text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	-o-text-size-adjust: 100%;
}


/*テキスト選択カラー*/

::selection {
	background: #A60C51; /*Safari*/
}

::-moz-selection {
	background: #A60C51; /*Firefox*/
}

/*========================================
SmartPhone Display width:834px under
========================================*/

@media screen and (max-width: 834px) {

body {
	font-size: 90%;
	line-height: 1.8em;
}

} /*--SmartPhone Display width:834px under--*/


/*-------------------------------------------------------------------
デバイス別表示設定
-------------------------------------------------------------------*/

.pcNone {
	display: none !important;
}

.tbOnly {
	display: none !important;
}

.spOnly {
	display: none !important;
}

/*========================================
Tablet Display width:1060px under
========================================*/

@media screen and (max-width: 1060px) {

.pcNone {
	display: block !important;
}

.tbNone {
	display: none !important;
}

.tbOnly {
	display: block !important;
}

} /*--Tablet Display width:1060px under--*/

/*========================================
SmartPhone Display width:834px under
========================================*/

@media screen and (max-width: 834px) {

.pcNone {
	display: block !important;
}

.spNone {
	display: none !important;
}

.tbOnly {
	display: none !important;
}

.spOnly {
	display: block !important;
}

} /*--SmartPhone Display width:834px under--*/


/*-------------------------------------------------------------------
リンク設定
-------------------------------------------------------------------*/

/*コンテンツ*/

a:link,a:visited {
	color: #0B9F8F;
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}


/*-------------------------------------------------------------------
枠
-------------------------------------------------------------------*/

#wrapper {
	margin: auto;
}

#ContentsWrapper {
	margin: auto;
	position: relative; /*「NEXT」のz-indexを有効にするため*/
	z-index: 400;
	font-size: 110%;
	background: #14142E;
}


/*-------------------------------------------------------------------
ヘッダー
-------------------------------------------------------------------*/

/*「scrHeader.js」で使用する*/

#headerFrame {
	height: 70px;
	width: 100%;
	position: fixed;
	top:0;
	z-index: 1000;
}

#headerFrame.visible {
	background: rgba(255,255,255,0.6);
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	opacity: 1;
	top: 0px;
	box-shadow: 0 1px 1px #bbb;
	-moz-box-shadow: 0 1px 1px #bbb;
	-webkit-box-shadow: 0 1px 1px #bbb;
}

/*ヘッダーの幅固定*/

#headerFrameInner {
	max-width: 1200px;
	margin: auto;
}

.headerFrameInnerLine {
	float: left;
}

/*ロゴ*/

#logo {
	margin-right: 5px;
	padding-left: 5px;
	background: none;
}

#logo img {
	width:290px;
	height: 70px;
	background: url(../images/logo_white.png) no-repeat;
	background-size: contain;
	background-position: center center;
}

#headerFrame.visible #logo img {
	background: url(../images/logo_color.png) no-repeat;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

/*CTAボタン*/

#inquiryBtn {
	margin-right: 10px;
	padding-top: 5px;
}

#inquiryBtn a {
	/* Shutter Out Vertical */
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px transparent;
	position: relative;
	-webkit-transition-property: color;
	transition-property: color;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	float: right;
	background: rgba(255,255,255,0.3);
	color: #fff;
	padding: 0 50px;
	height: 41px;
	margin: 10px 0;
	display: block;
	text-align: center;
	line-height: 41px;
	border-radius: 20px;
	margin-right:10px ;
}

#inquiryBtn a:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #14142e;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	border-radius: 20px;
}

#inquiryBtn a:hover,
#inquiryBtn a:focus,
#inquiryBtn a:active {
	color: #fff;
	text-decoration: none;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
	border-radius: 20px;
}

#inquiryBtn a:hover:before,
#inquiryBtn a:focus:before,
#inquiryBtn a:active:before {
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}

/* スクロール時に色変更 */
#headerFrame.visible #inquiryBtn a {
	/* Shutter Out Vertical */
	color: #fff;
	background: #14142e;
}

#headerFrame.visible #inquiryBtn a:before {
	content: "";
	position: absolute;
	z-index: -1;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #14142e;
	-webkit-transform: scaleY(0);
	transform: scaleY(0);
	-webkit-transform-origin: 50%;
	transform-origin: 50%;
	-webkit-transition-property: transform;
	transition-property: transform;
	-webkit-transition-duration: 0.3s;
	transition-duration: 0.3s;
	-webkit-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

#headerFrame.visible #inquiryBtn a:hover,
#headerFrame.visible #inquiryBtn a:focus,
#headerFrame.visible #inquiryBtn a:active {
	color: #fff;
	text-decoration: none;
	-moz-transition: 0.5s;
	-o-transition: 0.5s;
	-ms-transition: 0.5s;
	transition: 0.5s;
}

#headerFrame.visible #inquiryBtn a:hover:before,
#headerFrame.visible #inquiryBtn a:focus:before,
#headerFrame.visible #inquiryBtn a:active:before {
	-webkit-transform: scaleY(1);
	transform: scaleY(1);
}

/*SNSボタン*/

#snsBtn {
	margin-right: 10px;
	padding-left: 10px;
}

#snsBtn a {
	margin-top: 14px;
	float: right;
}

/*========================================
Tablet Display width:1060px under
========================================*/

@media screen and (max-width: 1060px) {

/*ヘッダーの幅可変*/

#headerFrameInner {
	width: 100%;
}

} /*--Tablet Display width:1060px under--*/

/*========================================
SmartPhone Display width:834px under
========================================*/

@media screen and (max-width: 834px) {

#headerFrame {
	height: 55px;
}

/*ロゴ*/

#logo img {
	width: 200px;
	height: 50px;
	background: url(../images/logo_white.png) no-repeat;
	background-size: contain;
	background-position: center center;
}

#headerFrame.visible #logo img {
	height: 50px;
	background: url(../images/logo_color.png) no-repeat;
	background-size: contain;
	background-position: center center;
}

#inquiryBtn a {
	padding: 0 10px;
	font-size: 90%;
	height: 42px;
	margin-top: 3px;
	display: block;
	text-align: center;
	line-height: 41px;
}

/*SNSボタン*/

#snsBtn a {
	margin-top: 8px;
}

} /*--SmartPhone Display width:834px under--*/


/*-------------------------------------------------------------------
キービジュアル
-------------------------------------------------------------------*/

#HeadArea {
	position: relative;
	display: block;
}

#kvWrapper {
	margin: 0 auto;
	max-height: 850px; /*kvが高くなりすぎないように*/
}

#kvWrapper img {
	width: 100%;
}

.imgFix {
	width: 100%;
	position: fixed;
	z-index: -1000;
	text-align: center;
}

/*========================================
SmartPhone Display width:834px under
========================================*/

@media screen and (max-width: 834px) {

/*KV高さ100％表示設定*/

html,
body,
#wrapper,
#HeadArea,
#kvWrapper {
	height: 100%;
}

#kvWrapper {
	max-height: none; /*KVの上限高さ解除*/
}

.imgFix {
	position: relative; /*KV固定解除*/
	height: 100%;
	background: url(../images/kv_sp.png) no-repeat center center;
	background-size: cover;
}

body > .imgFix {
	height: auto;
}

} /*--SmartPhone Display width:834px under--*/


/*-------------------------------------------------------------------
NEXT
-------------------------------------------------------------------*/

#next {
	width: 100%;
	text-align: center;
	margin-top: -55px; /*上にあるボックス（KV）からマイナスで高さを上げてKVにかぶせる*/
	position: fixed;
}

#next img {
	width: 130px;
}

/*リンク設定*/

#next a:link {
	background: none;
}

/*========================================
SmartPhone Display width:834px under
========================================*/

@media screen and (max-width: 834px) {

#next {
	margin-top: -80px; /*上にあるボックス（KV）からマイナスで高さを上げてKVにかぶせる*/
}

} /*--SmartPhone Display width:834px under--*/


/*-------------------------------------------------------------------
タイトル見出し
-------------------------------------------------------------------*/

#hBox {
	width: 100%;
	margin: auto;
	position: fixed;
	z-index: 1;
}

#hBox0 { /*PCの最大幅を設定*/
	max-width: 1200px;
	margin: auto;
	position: relative;
}

#hBox #hBox0 #h1Box {
	width: 100%;
	position: absolute; /*こいつのせいでhBox0が必要*/
	top: 250px; /*pBoxのTOPからの距離*/
	text-align: center;
}

#hBox #hBox0 #h1Box h1 {
	color: #fff;
	font-size: 400%;
	line-height: 1.3em;
}

/*========================================
Tablet Display width:1060px under
========================================*/

@media screen and (max-width: 1060px) {

#hBox #hBox0 #h1Box {
	top: 170px; /*pBoxのTOPからの距離*/
}

#hBox #hBox0 #h1Box h1 {
	font-size: 300%;
}

#hBox #hBox0 #h1Box p {
	margin-top: 20px;
	font-size: 120%;
}

} /*--Tablet Display width:1060px under--*/

/*========================================
SmartPhone Display width:834px under
========================================*/

@media screen and (max-width: 834px) {

#hBox #hBox0 #h1Box {
	top: 300px; /*pBoxのTOPからの距離*/
}

#hBox #hBox0 #h1Box h1 {
	font-size: 300%;
}

#hBox #hBox0 #h1Box p {
	font-size: 110%;
}

} /*--SmartPhone Display width:834px under--*/


/*-------------------------------------------------------------------
コンテンツボックス
-------------------------------------------------------------------*/

.cBox {
	overflow: hidden; /*パララックス用*/
	padding: 0; /*ContentsWrapperの内側*/
	width: 100%;
	margin: auto;
	z-index: 100;
	margin-bottom: 50px;
	padding-top: 50px;
}

.cBoxInner {
	max-width: 900px; /*cBoxの内側のコンテンツの最大幅*/
	padding: 0 20px;
	margin: auto;
	text-align: center;
}

.cBoxInner p {
	margin-bottom: 20px;
}

.cBoxInner img {
	/* width: 100%; */
}


/*-------------------------------------------------------------------
コンテンツ見出し
-------------------------------------------------------------------*/

h2 {
	text-align: center;
	font-size: 300%;
	line-height: 1.7em;
	margin-top: 70px;
	margin-bottom: 60px;
}


/*========================================
Tablet Display width:1060px under
========================================*/

@media screen and (max-width: 1060px) {

h2 {
	font-size: 250%;
	margin-bottom: 40px;
}

} /*--Tablet Display width:1060px under--*/

/*========================================
SmartPhone Display width:834px under
========================================*/

@media screen and (max-width: 834px) {

h2 {
	font-size: 200%;
	margin-bottom: 40px;
}

} /*--SmartPhone Display width:834px under--*/


/*-------------------------------------------------------------------
パララックス
-------------------------------------------------------------------*/

.parallax {
	height: 500px;
	padding: 50px 20px;
	margin: auto;
	max-width: 980px;
	background: url(../images/parallax.png) no-repeat center 0 fixed;
	background-size: cover;
}

.parallax h2 {
	position: relative; /*scrEvent-slideUpを発生させるために必要*/
}

.parallax p {
	position: relative; /*scrEvent-slideUpを発生させるために必要*/
	max-width: 580px; /*cBoxの内側のコンテンツの最大幅*/
	padding: 0 20px;
	margin: auto;
	margin-bottom: 20px;
}

/*========================================
SmartPhone Display width:834px under
========================================*/

@media screen and (max-width: 834px) {

.parallax {
	height: 400px;
	background: url(../images/parallax.png) no-repeat center top; /*PCとの違いに注意*/
	background-size: cover;
}

} /*--SmartPhone Display width:834px under--*/


/*-------------------------------------------------------------------
マップ
-------------------------------------------------------------------*/
.map-container {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 のアスペクト比 */
	height: 0;
	overflow: hidden;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/*-------------------------------------------------------------------
スライドショー
-------------------------------------------------------------------*/

.slide-container {
    width: 100%;
    margin: 50px auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.slide-wrapper {
  display: flex;
  animation: slide-flow 20s infinite linear 1s both;
}

.slide{
  width: 300px;
  object-fit:cover;
  border: 1px solid #ddd;
}

@keyframes slide-flow {
     0% {transform: translateX(0);}
 100% {transform: translateX(-100%);}
}


/*-------------------------------------------------------------------
フッター
-------------------------------------------------------------------*/

footer {
	font-size: 85%;
	width: 100%;
	height: 100%; /*KVがはみ出ないように下まで伸ばす*/
	background-color: #011931;
	text-align: center;
}

/*フッターロゴ*/

#ftLogo {
	height: 100px; /*ロゴの高さと揃える ※*/
	padding-top: 30px;
}

#ftLogo img {
	height: 100px; /*※*/
}

/*コピーライト*/

#copyRight {
	font-size: 90%;
	padding-top: 15px;
	padding-bottom: 30px;
}


/*-------------------------------------------------------------------
PAGE TOP
-------------------------------------------------------------------*/

#pageTop {
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 500;
}

#pageTop a {
	text-decoration: none;
}