@charset "UTF-8";

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

/* 大枠 */
html,
body {
	height: 100%;
	-webkit-font-smoothing: antialiased;
	-webkit-text-size-adjust: none;
	-webkit-overflow-scrolling: touch !important;
}
body {
	font-size: 18px;
	line-height: 1.7;
}
#wrapper {
	width: 100%;
	margin: 0 auto;
	position: relative;
}
body > #wrapper {
	height: auto;
}
.clearfix:after {
	visibility: hidden;
	display: block;
	content: " ";
	clear: both;
	height: 0;
}

@media print {
	html,
	html body{overflow: visible !important;}
}
body.wrap {
	overflow: hidden;
}


/* アクセシビリティ */
.guidance {
	left:-999px;
	position:absolute;
	width:990px;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
} /* レスポンシブ対応 */
img {
	vertical-align: bottom;
	box-shadow: #000 0 0 0; /* ロールオーバー対応 */
}
img,
x:-moz-any-link,
x:default {
	box-shadow: #000 0 0 0; /* IE7対応 */
}

/* リンク */
a {text-decoration: none;}
a:hover {opacity: .7;}

/* フォント */
body:lang(ja){
	font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	position: relative;
	font-weight: normal;
}


/* CLEARFIX */
.container:after,
.row:after,
.col:after {
	content: "";
	display: table;
	clear: both;
}

.container {
	width: 100%;
	max-width: 1040px;
	padding: 0 20px;
	margin: 0 auto;
	position: relative;
}

.pc {display: block;}
.sp {display: none;}
.kome {font-size: 16px;}
/* ▼ タイトル
--------------------------------------- */
/* 画像タイトル */
.title_boder_img {
	font-size: 48px;
	font-size: 2.667em;
	color: #007BC7;
	font-weight: normal;
	text-align: center;
	line-height: 1;
}
	.title_boder_img::after {
		display: block;
		content: "";
		width: 100%;
		height: 64px;
		margin: 0 auto 15px;
		background: url(../img/title_boder.png) no-repeat top center/contain;
	}
/* ボーダータイトル */
.title_boder_b {
	border-bottom: 1px solid #007BC7;
	padding-bottom: 5px;
	margin-bottom: 20px;
	font-size: 28px;
	font-size: 1.556em;
	color: #007BC7;
	font-weight: normal;
}


/* ▼▼▼ ヘッダー
====================================================== */
header {
	width: 100%;
	height: 79px;
	background: #007BC7;
}
header .container{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
/* スクロール後 ヘッダー */
.site-header{	transition: .5s;}
.header-change{
	width: 100%;
	background: #007BC7;
	position: fixed;
	bottom: -80px;
	bottom: 0;
	z-index: 999;
	transition: .5s;
}


/* グローバルナビゲーション */
ul.nav {
	display: flex;
	align-items: center;
}
	ul.nav > li a {
		display: block;
		margin-right: 30px;
		color: #fff;
		font-size: 20px;
		text-align: center;
		position: relative;
	}
	ul.nav > li a::after {
		display: inline-block;
		content: "";
		width: 1px;
		height: 24px;
		background: #79C2EF;
		-webkit-transform: rotate(30deg);
		transform: rotate(30deg);
		position: absolute;
		top: 5px;
		right: -15px;
	}
	ul.nav > li:last-child a {margin-right: 15px;}
	ul.nav > li:last-child a::after {display: none;}

/* 多言語ボタン */
ul.lang:hover {
	cursor: pointer;
}
ul.lang li {
	width: 140px;
	background: #fff;
	position: relative;
}
	ul.lang li a{
		display: block;
		background: #fff;
		border-bottom: 1px solid #dbf1fc;
		padding: 4px 15px;
		color: #333;
		position: relative;
	}
	ul.lang li p.now a::after {
		display: block;
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 8px 5px 0 5px;
		border-color: #007BC7 transparent transparent transparent;
		position: absolute;
		top: 40%;;
		right: 13px;
	}
	ul.lang li p.now.close a::after {
		display: block;
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 0 5px 8px 5px;
		border-color: transparent transparent #007BC7 transparent;
		position: absolute;
		top: 40%;;
		right: 13px;
	}
	ul.lang li p.now a {
		pointer-events: none;
	}
	ul.lang li ul.sub{
		display: none;
		position: absolute;
		top: 34px;
		left: 0;
		z-index: 99;
	}
	/* スクロール後 lang */
	.header-change ul.lang li p.now a::after {
		border-width: 0 5px 8px 5px;
		border-color: transparent transparent #007BC7 transparent;
	}
	.header-change ul.lang li p.now.close a::after{
		border-width: 8px 5px 0 5px;
		border-color: #007BC7 transparent transparent transparent;
	}
	.header-change ul.lang li ul.sub{
		top: inherit;
		bottom: 32px;
	}
/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
====================================================== */
#main {
	margin: 0 auto;
	clear: both;
}

section {padding: 60px 0;}

/* 2column の場合！！各自修正して使用してください */
.flex_box{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}


/* ▼▼▼ フッター
===================================== */
footer {
	width: 100%;
	background: #007BC7;
}
footer .container{
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}
#footer_inner {
	background: #1185CC;
	padding: 10px 0;
	position: relative;
}
 #footer_inner .container {
	 justify-content: space-around;
 }
	#footer_inner p,
	#footer_inner a{
		color: #fff;
	}
	#footer_inner > p {
		flex: 1;
	}
	#footer_inner .right_box {
		flex: 2;
	}
	#footer_inner .bnr_list{
		display: flex;
		justify-content: flex-end;
	}
	#footer_inner .bnr_list li{
		margin:0 15px 15px 0;
	}
	#footer_inner .bnr_list li:last-child{
		margin-right: 0;
	}
	#footer_inner .bnr_list img{
		width: auto;
		max-height: 77px;
	}
	#footer_inner .bnr_list img[src*="bnr_img02"]{
		max-height: 76px;
	}
	#footer_inner p.link a::before {
		display: inline-block;
		content: "";
		width: 15px;
		height: 15px;
		margin-right: 5px;
		background: url(../img/price_list_icon02.png)no-repeat top center/contain;
	}


/* ▼ ページ上部へ戻る
--------------------------------------- */
.pagetop {
	width: 50px;
	height: 50px;
	background: rgba(51, 51, 51,.8);
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 2000;
	cursor: pointer;
	-webkit-transform: rotate(-90deg);
	transform: rotate(-90deg);
}
.pagetop::after {
	display: block;
	content: "";
	width: 15px;
	height: 15px;
	background: url(../img/price_list_icon02.png)no-repeat top center/contain;
	position: absolute;
	bottom: 17px;
	right: 17px;
	}
/* ▼ コピーライト
--------------------------------------- */
#copyright {
	font-size: 10px;
	text-align: right;
}

/* ▼▼▼ 多言語
====================================================== */
/* 英語
--------------------------------------- */
body:lang(en){
	font: 15px/1.7 'roboto-condensed', sans-serif, Helvetica, Arial;
}
ul.nav > li a:lang(en){
	font-size: 95%;
}
ul.nav > li a:lang(en)::after {
	top:2px;
}
/* 簡体語
--------------------------------------- */
body:lang(zh-Hans){
	font-family: 'Noto Serif SC', serif;
}
/* 繁体語
--------------------------------------- */
body:lang(zh-Hant){
	font-family: 'Noto Serif TC', serif;
}
/* 韓国
--------------------------------------- */
body:lang(ko){
	font-family: 'Noto Serif KR', serif;
}

/* ▼▼▼ 480px〜768px
====================================================== */
@media screen and (max-width: 768px) {

	body{
		font-size: 16px;
	}


	#wrapper {width: 100%;}
	#screen {
		display: none;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-color:rgba(0,0,0,0.8);
		z-index: 200;
	}

	.container {padding: 0 15px;}

	.pc {display: none;}
	.sp {display: block;}
	.kome {font-size: 14px;}
	/* ▼ タイトル
	--------------------------------------- */
	/* 画像タイトル */
	.title_boder_img {
		font-size: 27px;
	}
	.title_boder_img::after {
		height: 20px;
	}
	/* ボーダータイトル */
	.title_boder_b {
		font-size: 21px;
	}

	/* ▼▼▼ ヘッダー
	====================================================== */
	header {
		height: auto;
	}
	header .container {
		padding: 10px 0;
	}

	/* ▼ グローバルナビゲーション
	--------------------------------------- */
	nav {
		width: 100%;
	}
	ul.nav > li {
		flex: 1;
	}
	ul.nav > li a {
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 44px;
		padding-right: 5px;
		margin-right: 5px;
		font-size: 14px;
		border-right: 1px solid #79C2EF;
	}
	ul.nav > li a::after {
		display: none;
	}
	ul.nav > li.timetable {
		flex: 1.2;
	}
	ul.nav > li.info {
		flex: 1.5;
	}

	ul.nav > li:last-child a {
		margin: 0;
		padding: 0;
		border-right:none;
	}
	/* 多言語ボタン */
	#lang {
		/* display: none; */
	}
	.lang_btn {
		width: 70px;
		height: 70px;
		background: #fff;
		padding-top: 43px;
		color: #007BC7;
		font-size: 12px;
		background: #FFF url(../img/globe_icon.png)no-repeat center 15px/25px 25px;
		text-align: center;
		position: absolute;
		top: 0;
		right: 0;
	}
	ul.lang {
		display: none;
		position: absolute;
		top: 70px;
		right: 0;
	}
	.container ul.lang,
	ul.lang li {
		width: 70px;
	}
	ul.lang li a {
		padding: 7px 0;
		font-size: 11px;
		text-align: center;
	}

	ul.lang li p.now a::after {
		display: none;
	}
	ul.lang li ul.sub {
		display: block;
		margin-top: -2px;
		}




	/* ▼▼▼ メイン 「コンテンツとサイドを囲む要素」
	====================================================== */
	#header_inner,
	#main,#contents,#side,
	footer,#footer_inner {
		float: none;
		width: 100%;
		}
	#main {
	}
	.menu_fixed {
		position: fixed;
		width: 100%;
		height: 100%;
	}
	.read{
		margin: 0 0 15px;
	}
	section {padding: 40px 0;}

	/* ▼▼▼ フッター
	====================================================== */
	footer .container{
		padding: 10px 0;
	}
	#footer_inner {
		padding: 10px 10px 50px;
	}
	#footer_inner .container {
		display: block;
	}
	#footer_inner .bnr_list{
		display: block;
	}
	#footer_inner .bnr_list li,
	#footer_inner .bnr_list li:last-child{
		margin: 0 auto 10px;
	}
	#footer_inner .bnr_list li {
		text-align: right;
	}
	#footer_inner .bnr_list img,
	#footer_inner .bnr_list img[src*="bnr_img02"]{
		width: 100%;
		max-height: unset;
	}
	#footer_inner p.link {
		margin-bottom: 5px;
	}
	#footer_inner p.link a::before {
		width: 12px;
		height: 12px;
		margin-right: 5px;
	}
	/* ▼ ページ上部へ戻る
	--------------------------------------- */
	.pagetop {
		width: 40px;
		height: 40px;
		right: 15px;
    bottom: 70px;
	}
	.pagetop::after {
		right: 12px;
		bottom: 12px;
	}
	.pagetop.pagetop_footer {
		bottom: 15px;
	}

	/* ▼▼▼ 多言語
	====================================================== */
	/* 英語
	--------------------------------------- */
	body:lang(en){
		font-size: 15px;
	}
	ul.nav > li a:lang(en){
		min-height: 64px;
		line-height: 1.3;
		font-size: 85%;
	}
	ul.nav > li.info:lang(en) {
		flex: 1.3;
	}
	ul.nav > li.price:lang(en) {
		flex: 0.9;
	}
	.pagetop:lang(en) {
		bottom: 90px;
	}
	/* 簡体語
	--------------------------------------- */

	/* 繁体語
	--------------------------------------- */

	/* 韓国
	--------------------------------------- */

}
