@import url('https://fonts.googleapis.com/css?family=Noto+Sans:400,400i,700,700i');
@import url('https://fonts.googleapis.com/earlyaccess/notosanssc.css');

/* http://meyerweb.com/eric/tools/css/reset/
	v2.0 | 20110126
	License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
	display: block;
}
body {
	line-height: 1;
}
ol, ul, li {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	vertical-align: bottom;
	image-rendering: optimizeQuality;
}
input[type="text"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border: none;
}
button {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	box-shadow: none;
	border: none;
	cursor: pointer;
	background: none;
	padding: 0;
}


/* -----------------------------------------------------------------------------*/

html {
	overflow-y: scroll;
	font-size: 62.5%;
}

body {
	font-size: 1.5em;
	font-family: 'Noto Sans', sans-serif;
	line-height: 1;
	font-weight: 400;
	color: #333333;
	min-width: 1000px;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
	text-size-adjust: 100%;
	-moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
}

html[lang="zh-cn"] body {
	font-family: 'Noto Sans SC', sans-serif;
}


/*clearfix*/
.cf:before,
.cf:after {
	content: '';
	display: table;
}
.cf:after {
	clear: both;
}


.w100per {
	max-width:100%;
}


a {
	color: #2d2d2d;
	text-decoration: underline;
}
a:hover {
	color: #1769b4;
}

a img {
	-webkit-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
a:hover img {
	opacity: 0.5;
}
img.nofade {
	opacity: 1 !important;
}
path {
	fill-rule: evenodd;
}
path.nonzero {
	fill-rule: nonzero;
}

#wrap {
	overflow: hidden;
	position: relative;
	min-width: 1000px;
}


/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	body {
		min-width: 0;
	}
	#wrap {
		min-width: 0;
		font-size: 1.5rem;
	}
}


#svgSet {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	overflow: hidden;
}



#responseFlagTab {
	display: none !important;
}

/* PC
-------------------------------------*/
@media screen and (min-width: 769px) {
	#responseFlagPc {
		display: block !important;
	}
	#responseFlagSp {
		display: none !important;
	}
}

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	#responseFlagPc {
		display: none !important;
	}
	#responseFlagSp {
		display: block !important;
	}
}


/*===========================================================================
 #header
===========================================================================*/
#header {
	position: fixed;
	top: 0;
	left: 0;
	width: 240px;
	height: 100vh;

	background: #fff;
	z-index: 19;
}
#header .hdInr {
	padding-top: 58px;
	position: relative;
}
#header .hdLogo {
	text-align: center;
}
#header .hdLogo svg {
	width: 165px;
	height: 45px;
	fill: #3071B5;
}
#header .spNavBtn {
	display: none;
}
#header .hdNav {
	padding-top: 25px;
}
#header .hdNav li {
	font-size: 1.8rem;
	color: #2087D8;
	font-style: italic;
	letter-spacing: 1px;
}
#header .hdNav li a {
	position: relative;
	padding: 16px 0 16px 86px;
	display: block;
	color: #2087D8;
	text-decoration: none;
}
#header .hdNav li a::after {
	content: " ";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 282px;
	height: 50px;
	background: url(../../en_US/images/common/nav_select_arw.svg) no-repeat left top;
	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: -webkit-transform 0.3s ease-out;
	-ms-transition: -ms-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
}
#header .hdNav li a.js-select::after {
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}
#header .hdNav li a.js-select {
	color: #fff;
}
#header .hdNav li a.stay {
	background: #2188D9;
	color: #fff;
}
#header .hdNav li a.stay .icn svg,
#header .hdNav li a.js-select .icn svg {
	fill: #fff;
}
#header .hdNav li a .icn {
	display: block;
	position: absolute;
	top: 50%;
	left: 37px;
	width: 38px;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	z-index: 2;
}
#header .hdNav li a .icn svg {
	fill: #2087D8;
}
#header .hdNav li a .icn01 {
	width: 28px;
	height: 25px;
}
#header .hdNav li a .icn02 {
	width: 36px;
	height: 32px;
}
#header .hdNav li a .icn03 {
	width: 24px;
	height: 30px;
}
#header .hdNav li a .icn04 {
	width: 35px;
	height: 36px;
}
#header .hdNav li a .icn05 {
	width: 33px;
	height: 23px;
}
#header .hdNav li a .icn06 {
	width: 28px;
	height: 24px;
}
#header .hdNav li a .txt {
	position: relative;
	z-index: 2;
}
#header .hdIdt {
	width: 185px;
	margin: 35px auto 0;
	border-top: 1px solid #ddd;
}
#header .subNav {
	padding-top: 7px;
}
#header .subLine {
	display: table;
	width: 100%;
	margin-top: 23px;
}
#header .subLine li {
	display: table-cell;
	vertical-align: middle;
	text-align: left;
	width: 50%;
}
#header .subLine li a {
	display: table;
	color: #535353;
	text-decoration: none;
	position: relative;
}
#header .subLine li a .icn,
#header .subLine li a .txt {
	display: table-cell;
	vertical-align: middle;
	font-size: 1.1rem;
}
#header .subLine li a .icn {
	width: 34px;
	text-align: center;
}
#header .subLine li svg {
	fill: #a6a6a6;
}
#header .subLine li .icn01 {
	width: 14px;
	height: 23px;
}
#header .subLine li .icn02 {
	width: 10px;
	height: 23px;
}
#header .subLine li .icn03 {
	width: 21px;
	height: 21px;
}
#header .subLine li .icn04 {
	width: 26px;
	height: 20px;
}
#header .subLine li .bdr {
	font-size: 0.8rem;
	padding: 1px;
	margin-top: 3px;
	display: inline-block;
	border: 1px solid #949494;
}
#header .subLine li a.stay,
#header .subLine li a:hover {
	color: #2A8AD6;
}
#header .subLine li a.stay svg,
#header .subLine li a:hover svg {
	fill: #2A8AD6;
}
#header .subLine li a.stay .bdr,
#header .subLine li a:hover .bdr {
	border: 1px solid #2A8AD6;
}
#header .langNavWrap {
	position: relative;
	height: 90px;
	margin-top: 30px;
}
#header .langNav {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #ddd;
	-webkit-border-radius: 2px;
	-ms-border-radius: 2px;
	border-radius: 2px;
	background: #fff;

	z-index: 2;
}
#header .langNav .flexBtn {
	padding: 10px 0 10px 13px;
	cursor: pointer;
}
#header .langNav .flexBtn .txtLine {
	display: table;
	width: 100%;
}
#header .langNav .flexBtn .txtLine .txtCell {
	display: table-cell;
	width: 83px;
	font-size: 1.1rem;
	border-right: 1px solid #666;
}
#header .langNav .flexBtn .txtLine .txtCell .icn {
	width: 6px;
	height: 4px;
	fill: #666;
	vertical-align: middle;
	margin-right: 10px;
}
#header .langNav .flexBtn .txtLine .selectTxt {
	display: table-cell;
	text-align: center;
	font-size: 1rem;
	color: #2188D9;
}
#header .langNav .flexBox {
	height: 0;
	overflow: hidden;
	display: none;
}
.is_ios #header .langNav .flexBox,
.is_android #header .langNav .flexBox {
	display: none !important;
}
#header .langNav .flexBox ul li {
	border-top: 1px solid #ddd;
}
#header .langNav .flexBox ul li a {
	display: block;
	padding: 10px;
	font-size: 1.1rem;
	text-decoration: none;
}
#header .langNav .langSelect {
	display: none;
}
.is_ios #header .langNav .langSelect,
.is_android #header .langNav .langSelect {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	opacity: 0;
}



/* PC
-------------------------------------*/
@media screen and (min-width: 769px) {
	#header .navWrap {
		height: auto !important;
		display: block !important;
	}

	#header .hdNav li a:hover {
		background: #2188D9;
		color: #fff;
	}
	#header .hdNav li a:hover .icn svg {
		fill: #fff;
	}

	/* header navi stay
	-------------------------------------*/
	.cat-overview #header .hdNav .navList li:nth-child(1) a,
	.cat-play #header .hdNav .navList li:nth-child(2) a,
	.cat-facility #header .hdNav .navList li:nth-child(2) a,
	.cat-shop #header .hdNav .navList li:nth-child(3) a,
	.cat-restrant #header .hdNav .navList li:nth-child(4) a,
	.cat-hotel #header .hdNav .navList li:nth-child(5) a {
		background: #2188D9;
		color: #fff;
	}
	.cat-overview #header .hdNav .navList li:nth-child(1) a .icn svg,
	.cat-play #header .hdNav .navList li:nth-child(2) a .icn svg,
	.cat-facility #header .hdNav .navList li:nth-child(2) a .icn svg,
	.cat-shop #header .hdNav .navList li:nth-child(3) a .icn svg,
	.cat-restrant #header .hdNav .navList li:nth-child(4) a .icn svg,
	.cat-hotel #header .hdNav .navList li:nth-child(5) a .icn svg {
		fill: #fff;
	}

	.cat-access #header .subLine:nth-child(1) li:nth-child(1) a,
	.cat-hour #header .subLine:nth-child(2) li:nth-child(1) a,
	.cat-service #header .subLine:nth-child(1) li:nth-child(2) a {
		color: #2A8AD6;
	}
	.cat-access #header .subLine:nth-child(1) li:nth-child(1) a svg,
	.cat-hour #header .subLine:nth-child(2) li:nth-child(1) a svg,
	.cat-service #header .subLine:nth-child(1) li:nth-child(2) a svg {
		fill: #2A8AD6;
	}
}

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	#header {
		position: fixed;
		top: 0 !important;
		left: 0 !important;
		width: 100%;
		height: 58px;
		z-index: 21;
	}
	#header .iScrollVerticalScrollbar {
		display: none !important;
	}
	#header .hdScr {
		height: auto !important;
	}
	#header .hdInr {
		padding-top: 0;
		position: static;
	}
	#header .hdLogo {
		position: absolute;
		top: 17px;
		left: 15px;
	}
	#header .hdLogo svg {
		width: 106px;
		height: 29px;
	}
	#header .spNavBtn {
		position: absolute;
		top: 12px;
		right: 10px;
		display: block;
		cursor: pointer;
		width: 35px;
		height: 35px;
		background: url(../../en_US/images/common/sp_nav_btn.png) no-repeat left top;
		-webkit-background-size: 75px auto;
		background-size: 75px auto;
	}
	#header .spNavBtn.js-spNavOpen {
		background-position: -40px top;
	}
	#header .navWrap {
		position: absolute;
		top: 58px;
		left: 0;
		width: 100%;
		background: rgba(255,255,255,0.93);
		height: 0;
		overflow: hidden;
	}
	#header .navWrap .navWrapInr {
		padding: 0 20px 0;
		min-height: 100vh;
	}
	#header .hdNav {
		padding-top: 0;
	}
	#header .hdNav li {
		font-size: 1.7rem;
		letter-spacing: 1px;
		/*margin-top: 30px;*/
		margin-top: 25px;
	}
	#header .hdNav li a {
		position: relative;
		padding: 0 0 0 42px;
	}
	#header .hdNav li a::after {
		content: normal;
	}
	#header .hdNav li a.stay {
		background: none;
		color: #2087D8;
	}
	#header .hdNav li a.stay .icn svg,
	#header .hdNav li a.js-select .icn svg {
		fill: #fff;
	}
	#header .hdNav li a .icn {
		left: 5px;
		width: auto;
		text-align: left;
	}
	#header .hdNav li a .icn01 {
		width: 22px;
		height: 20px;
	}
	#header .hdNav li a .icn02 {
		width: 25px;
		height: 22px;
	}
	#header .hdNav li a .icn03 {
		width: 19px;
		height: 24px;
	}
	#header .hdNav li a .icn04 {
		width: 26px;
		height: 26px;
	}
	#header .hdNav li a .icn05 {
		width: 23px;
		height: 16px;
	}
	#header .hdNav li a .icn06 {
		width: 22px;
		height: 20px;
	}
	#header .hdIdt {
		width: auto;
		margin: 29px auto 0;
	}
	#header .subNav {
		padding-top: 7px;
	}
	#header .subLine {
		/*margin-top: 25px;*/
		margin-top: 20px;
	}
	#header .subLine li {
		text-align: left;
		width: 50%;
		box-sizing: border-box;
	}
	#header .subLine li a {
	}
	#header .subLine li a .txt {
		font-size: 1.3rem;
	}
	#header .subLine li a .icn {
		width: 34px;
		text-align: center;
		padding-right: 5px;
	}secRecomend
	#header .subLine li svg {
		fill: #a6a6a6;
	}
	#header .subLine li .icn01 {
		width: 15px;
		height: 24px;
	}
	#header .subLine li .icn02 {
		width: 8px;
		height: 19px;
	}
	#header .subLine li .icn03 {
		width: 19px;
		height: 19px;
	}
	#header .subLine li .icn04 {
		width: 24px;
		height: 18px;
	}
	#header .subLine li .bdr {
		font-size: 0.8rem;
		background: #fff;
	}
	#header .langNavWrap {
		position: relative;
		height: auto;
		/*margin-top: 30px;*/
		margin-top: 25px;
	}
	#header .langNav {
		position: static;

		z-index: 2;
	}
	#header .langNav .flexBtn {
		padding: 5px 0;
		cursor: pointer;
	}
	#header .langNav .flexBtn .txtLine {
		display: table;
		width: 100%;
	}
	#header .langNav .flexBtn .txtLine .txtCell {
		font-size: 1.3rem;
		text-align: center;
		padding: 5px 0;
		width: 50%;
		border-color: #B2B2B2;
	}
	#header .langNav .flexBtn .txtLine .txtCell .icn {
		margin-right: 7px;
	}
	#header .langNav .flexBtn .txtLine .selectTxt {
		font-size: 1.3rem;
		padding: 5px 0;
	}
	#header .langNav .flexBox {
		display: none !important;
	}
	#header .welcomeImg {
		display: none;
	}
	#header .langNav .langSelect {
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		opacity: 0;
	}
}



.subNavOl {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.7);
	z-index: 10;

	-webkit-transform: translateX(-100%);
	-ms-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: -webkit-transform 0.3s ease-out;
	-ms-transition: -ms-transform 0.3s ease-out;
	transition: transform 0.3s ease-out;
}
html.js-subShow .subNavOl {
	-webkit-transform: translateX(0%);
	-ms-transform: translateX(0%);
	transform: translateX(0%);
}
.subModal {
	position: fixed;
	/*display: table;*/
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	padding-left: 240px;
	z-index: 11;

	display: none;
	opacity: 0;
}
.subModal .modalClose {
	position: absolute;
	top: 40px;
	right: 44px;
	width: 50px;
	height: 50px;
	cursor: pointer;
}
.subModal .modalClose .closeIcn {
	width: 30px;
	height: 30px;
	margin: 0 auto;
	position: relative;
	background: url(../../en_US/images/common/icn_modal_close.png) no-repeat;
}
.subModal .modalClose .closeTxt {
	text-align: center;
	font-size: 1rem;
	color: #fff;
	margin-top: 5px;
}
.subModal .modalCell {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
.subModal .modalTtl {
	text-align: center;
	font-size: 3.8rem;
	font-style: italic;
	color: #fff;
	letter-spacing: 5px;
}
.subModal .thumList {
	padding-top: 30px;
}
.subModal .thumList .list {
	display: table;
	width: 100%;
	max-width: 951px;
	margin: 25px auto 0;
}
.subModal .thumList .list li {
	display: table-cell;
	width: 33.333%;
	box-sizing: border-box;
	padding: 0 5px;
}
.subModal .thumList .list li a {
	display: block;
	text-decoration: none;
	color: #fff;
}
.subModal .thumList .list li .thum {
	background: #fff;
}
.subModal .thumList .list li .thum img {
	width: 100%;
	height: auto;
}
.subModal .thumList .list li .txtCol {
	display: table;
	width: 100%;
	height: 55px;
	background: rgba(21,134,220,0.8);
}
.subModal .thumList .list li .txtCol .txtInr {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}
.subModal .thumList .list li .txtCol .txt {
	color: #fff;
}
.subModal .btnLine {
	margin-top: 65px;
}
.subModal .btnLine .ow-bdrBtn {
	border-color: #fff;
	background: none;
}
.subModal .btnLine .ow-bdrBtn .btnInr {
	color: #fff;
}
.subModal .btnLine .ow-bdrBtn .btnInr .arw {
	fill: #fff;
}


.subModalRestaurant .thumList .list {
	max-width: 674px;
}
.subModalRestaurant .thumList .list li {
	width: 50%;
	padding: 0 15px;
}
.subModalRestaurant .thumList .list li .sub {
	font-size: 1.3rem;
}
.subModalRestaurant .thumList .list li .icnPdf {
	vertical-align: middle;
}
.subModalRestaurant .thumList .list li .hasIcn {
	display: inline-block;
	margin-left: 5px;
	vertical-align: middle;
}


/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.subNavOl {
		display: none !important;
	}
	.subModal {
		display: none !important;
	}
}


/*===========================================================================
 #footer
===========================================================================*/
#footer {
	position: relative;
	z-index: 20;
}
#footer .pageTop {
	position: absolute;
	top: -35px;
	right: 0;
}
#footer .pageTop.jsFix {
	position: fixed;
	bottom: 0;
	right: 0;
}
#footer .pageTop a {
	display: block;
	width: 35px;
	height: 35px;
	background: #0362B1;
}
#footer .pageTop .arw {
	fill: #fff;
	width: 18px;
	height: 9px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
#footer .ftBnrs {
	background: #f5f5f5;
	padding: 30px 0 35px;
}
#footer .ftBnrs .ftInr {
	width: 100%;
	max-width: 1095px;
	min-width: 1000px;
	margin: 0 auto;
}
#footer .ftBnrs .ftInr .bnrWrap {
	display: table;
	margin: 20px auto 0;
	text-align: center;
	width: 100%;
}
#footer .ftBnrs .ftInr .bnrWrap .bnrSet {
	display: inline;
}
#footer .ftBnrs .ftInr .bnrWrap .bnrSet li {
	display: inline-block;
	vertical-align: middle;
	padding: 0 10px;
}
#footer .ftBnrs .ftInr .bnrWrap .bnrSet:first-child li:first-child {
	padding-left: 0;
}
#footer .ftBnrs .ftInr .bnrWrap .bnrSet:last-child li:last-child {
	padding-right: 0;
}
#footer .ftBnrs .ftInr .bnrWrap img {
	height: auto;
}
#footer .ftBnrs .ftInr .bnrWrap .bnr01 {
	width: 116px;
}
#footer .ftBnrs .ftInr .bnrWrap .bnr02 {
	width: 109px;
}
#footer .ftBnrs .ftInr .bnrWrap .bnr03 {
	width: 116px;
}
#footer .ftBnrs .ftInr .bnrWrap .bnr04 {
	width: 101px;
}
#footer .ftBnrs .ftInr .bnrWrap .bnr05 {
	width: 83px;
}
#footer .ftBnrs .ftInr .bnrWrap .bnr06 {
	width: 50px;
}
#footer .ftBnrs .ftInr .bnrWrap .bnr07 {
	width: 59px;
}
#footer .ftBnrs .ftInr .bnrWrap .bnr08 {
	width: 139px;
}
#footer .ftBnrs .ftInr .bnrWrap .bnr09 {
	width: 130px;
}
#footer .ftBnrs .colTtl {
	width: 425px;
	margin: 0 auto;
	position: relative;
	text-align: center;
	font-size: 1.8rem;
}
#footer .ftBnrs .colTtl::after {
	content: " ";
	display: block;
	position: absolute;
	width: 100%;
	left: 0;
	top: 50%;
	height: 1px;
	background: #E5E5E5;
}
#footer .ftBnrs .colTtl span {
	display: inline-block;
	background: #f5f5f5;
	position: relative;
	z-index: 2;
	padding: 0 20px;
}
#footer .ftLinks {
	padding-top: 50px;
	background: #1064af;
	color: #fff;
}
#footer .ftLinks a {
	color: #fff;
	text-decoration: none;
}
#footer .ftLinks a:hover {
	color: #fff;
	text-decoration: underline;
}
#footer .ftLinks .ftInr {
	width: 100%;
	max-width: 1095px;
	min-width: 1000px;
	display: table;
	margin: 0 auto;
	padding-bottom: 55px;
	position: relative;
}
#footer .ftLinks .ftInr .logoCell {
	display: table-cell;
}
#footer .ftLinks .ftInr .linkCell {
	display: table-cell;
	font-size: 1.5rem;
}
#footer .ftLinks .ftInr .cell02 {
	width: 18%;
}
#footer .ftLinks .ftInr .cell03 {
	width: 14.5%;
}
#footer .ftLinks .ftInr .cell04 {
	width: 16%;
}
#footer .ftLinks .ftInr .cell05 {
	width: 16%;
}
#footer .ftLinks .ftInr .cell06 {
	width: 15%;
}

#footer .ftLinks .ftInr .linkCell .listTtl {
	font-weight: bold;
	font-size: 1.8rem;
}
#footer .ftLinks .ftInr .linkCell .nextCol {
	margin-top: 25px;
}
#footer .ftLinks .ftInr .linkCell .listTtl .icnPlus {
	display: none;
}
#footer .ftLinks .ftInr .linkCell .listWrap {
	margin-left: 4px;
}
#footer .ftLinks .ftInr .linkCell .listWrap li {
	margin-top: 14px;
}
#footer .ftLinks .ftInr .linkCell .listWrap li .arw {
	fill: #fff;
	margin-right: 6px;
	position: relative;
	top: -1px;
}
#footer .ftLinks .ftInr .linkCell .listWrap li .icnBlank {
	fill: #D1E1EF;
	margin-left: 8px;
	position: relative;
	top: -1px;
}
#footer .ftLinks .ftInr .ftLogo {
	position: absolute;
	top: 0;
	left: 0;
}
#footer .ftLinks .ftInr .ftLogo svg {
	fill: #fff;
	width: 189px;
	height: 52px;
}

#footer .ftLinks .copyrightLine {
	border-top: 1px solid #4e89bd;
	text-align: center;
	padding: 20px 0;
}
#footer .ftLinks .copyrightLine .copyright {
	font-size: 1.2rem;
}


@media screen and (max-width: 1130px) {
	#footer .ftBnrs .ftInr .bnrWrap .bnrSet li {
		padding: 0 2px;
	}
}

/* PC
-------------------------------------*/
@media screen and (min-width: 769px) {
	#footer .ftLinks .ftInr .linkCell .listWrap {
		height: auto !important;
		display: block !important;
	}
}


/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	#footer {
		-webkit-transition: -webkit-filter 0.3s ease-in-out;
		-ms-transition: -ms-filter 0.3s ease-in-out;
		transition: filter 0.3s ease-in-out;
	}
	html.js-spNavOpen #footer {
		-webkit-filter: blur(5px);
		-ms-filter: blur(5px);
		filter: blur(5px);
	}
	#footer .pageTop {
		position: static;
		/*display: none;*/
	}
	#footer .pageTop.jsFix {
		position: static;
	}
	#footer .pageTop a {
		display: block;
		width: auto;
		height: auto;
		background: #0362B1;
		padding: 10px 0;
		text-align: center;
	}
	#footer .pageTop .arw {
		fill: #fff;
		width: 18px;
		height: 9px;
		position: static;
		-webkit-transform: none;
		-ms-transform: none;
		transform: none;
	}
	#footer .ftBnrs {
		padding: 25px 20px 25px;
	}
	#footer .ftBnrs .ftInr {
		min-width: 0;
		margin: 0 auto;
	}
	#footer .ftBnrs .ftInr .bnrWrap {
		display: block;
		margin: 0 auto 0;
		width: auto;
		padding: 5px 0 0;
	}
	#footer .ftBnrs .ftInr .bnrWrap .bnrSet {
		display: table;
		width: 100%;
		padding-top: 15px;
	}
	#footer .ftBnrs .ftInr .bnrWrap .bnrSet li {
		display: table-cell;
		vertical-align: middle;
		padding: 0;
		text-align: center;
		width: 33.333%;
	}
	/*#footer .ftBnrs .ftInr .bnrWrap .bnrSet li:first-child {
		text-align: left;
	}
	#footer .ftBnrs .ftInr .bnrWrap .bnrSet li:last-child {
		text-align: right;
	}*/
	#footer .ftBnrs .ftInr .bnrWrap img {
		height: auto;
	}
	#footer .ftBnrs .ftInr .bnrWrap .bnr01 {
		width: 81.7%;
	}
	#footer .ftBnrs .ftInr .bnrWrap .bnr02 {
		width: 75.8%;
	}
	#footer .ftBnrs .ftInr .bnrWrap .bnr03 {
		width: 80%;
	}
	#footer .ftBnrs .ftInr .bnrWrap .bnr04 {
		width: 69.8%;
	}
	#footer .ftBnrs .ftInr .bnrWrap .bnr05 {
		width: 53.7%;
	}
	#footer .ftBnrs .ftInr .bnrWrap .bnr06 {
		width: 41.3%;
	}
	#footer .ftBnrs .ftInr .bnrWrap .bnr07 {
		width: 55.9%;
	}
	#footer .ftBnrs .ftInr .bnrWrap .bnr08 {
		width: 93.5%;
	}
	#footer .ftBnrs .ftInr .bnrWrap .bnr09 {
		width: 81.1%;
	}
	#footer .ftBnrs .colTtl {
		width: auto;
		position: relative;
		text-align: center;
		font-size: 1.7rem;
	}
	#footer .ftBnrs .colTtl::after {
		content: " ";
		display: block;
		position: absolute;
		width: 100%;
		left: 0;
		top: 50%;
		height: 1px;
		background: #E5E5E5;
	}
	#footer .ftBnrs .colTtl span {
		display: inline-block;
		background: #f5f5f5;
		position: relative;
		z-index: 2;
		padding: 0 10px;
	}
	#footer .ftLinks {
		padding-top: 7px;
	}
	#footer .ftLinks .ftInr {
		width: auto;
		min-width: 0;
		display: block;
		padding: 0 20px 10px;
	}
	#footer .ftLinks .ftInr .logoCell {
		display: none;
	}
	#footer .ftLinks .ftInr .linkCell {
		display: block;
		font-size: 1.5rem;
		width: auto;
		border-top: 1px solid #4083BF;
		border-bottom: 1px solid #0E5AA4;
	}
	#footer .ftLinks .ftInr .cell02 {
		border-top: none;
	}
	#footer .ftLinks .ftInr .linkCell .listTtl {
		font-weight: bold;
		font-size: 1.5rem;
		padding: 10px 0 10px 0;
		cursor: pointer;
	}
	#footer .ftLinks .ftInr .linkCell .nextCol {
		margin-top: 0;
		border-top: 1px solid #4083BF;
	}
	#footer .ftLinks .ftInr .linkCell .listTtl .icnPlus {
		display: inline-block;
		width: 9px;
		height: 9px;
		margin-right: 8px;
		vertical-align: middle;
		position: relative;
		top: -1px;
	}
	#footer .ftLinks .ftInr .linkCell .listTtl .icnPlus::after,
	#footer .ftLinks .ftInr .linkCell .listTtl .icnPlus::before {
		content: " ";
		display: block;
		overflow: hidden;
		position: absolute;
		top: 50%;
		left: 0;
		width: 100%;
		height: 1px;
		background: #fff;
	}
	#footer .ftLinks .ftInr .linkCell .listTtl .icnPlus::after {
		-webkit-transform: rotate(-90deg);
		-ms-transform: rotate(-90deg);
		transform: rotate(-90deg);
		-webkit-transition: -webkit-transform 0.3s ease-in-out;
		-ms-transition: -ms-transform 0.3s ease-in-out;
		transition: transform 0.3s ease-in-out;
	}
	#footer .ftLinks .ftInr .linkCell.js-open .listTtl .icnPlus::after {
		-webkit-transform: rotate(0deg);
		-ms-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	#footer .ftLinks .ftInr .linkCell .listTtl a,
	#footer .ftLinks .ftInr .linkCell .listTtl a:hover {
		text-decoration: none;
	}
	#footer .ftLinks .ftInr .linkCell .listWrap {
		margin-left: 5px;
		height: 0;
		overflow: hidden;
	}
	#footer .ftLinks .ftInr .linkCell .linkList {
		padding-bottom: 20px;
	}
	#footer .ftLinks .ftInr .linkCell .listWrap li {
		margin-top: 0;
	}
	#footer .ftLinks .ftInr .linkCell .listWrap li a {
		display: inline-block;
		padding: 6px 0;
	}
	#footer .ftLinks .ftInr .linkCell .listWrap li .arw {
		width: 4px;
		height: 6px;
		fill: #fff;
		margin-right: 7px;
		position: relative;
		top: -1px;
	}
	#footer .ftLinks .ftInr .linkCell .listWrap li .icnBlank {
		width: 7px;
		height: 7px;
		fill: #D1E1EF;
		margin-left: 8px;
		position: relative;
		top: -1px;
	}
	#footer .ftLinks .ftInr .ftLogo {
		position: static;
		text-align: center;
		border-top: 1px solid #4083BF;
		padding-top: 13px;
	}
	#footer .ftLinks .ftInr .ftLogo svg {
		width: 130px;
		height: 36px;
	}

	#footer .ftLinks .copyrightLine {
		border-top: none;
		padding: 0 0 22px;
	}
	#footer .ftLinks .copyrightLine .copyright {
		font-size: 1rem;
	}
}



/*===========================================================================
 #main
===========================================================================*/
#main {
	padding-left: 240px;
}

.breadcrumb {
	padding: 12px 40px;
	line-height: 1.3;
	background: url(../../en_US/images/common/bg_breadcrumb.png) repeat;
}
.breadcrumb .list li {
	float: left;
	font-size: 1.1rem;
}
.breadcrumb .list li a {
	color: #2087D8;
	text-decoration: none;
}
.breadcrumb .list li a:hover {
	text-decoration: underline;
}
.breadcrumb .list li .sep {
	margin: 0 6px;
}


/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	#main {
		padding-left: 0;
		padding-top: 58px;
		-webkit-transition: -webkit-filter 0.3s ease-in-out;
		-ms-transition: -ms-filter 0.3s ease-in-out;
		transition: filter 0.3s ease-in-out;
	}
	html.js-spNavOpen #main {
		-webkit-filter: blur(5px);
		-ms-filter: blur(5px);
		filter: blur(5px);
	}

	.breadcrumb {
		padding: 7px 10px;
	}
	.breadcrumb .list li {
		float: left;
		font-size: 1rem;
	}
	.breadcrumb .list li a {
		color: #2087D8;
		text-decoration: none;
	}
	.breadcrumb .list li a:hover {
		text-decoration: underline;
	}
	.breadcrumb .list li .sep {
		margin: 0 4px;
	}
}




/*-------------------------------------
secRecomend
-------------------------------------*/
.secRecomend {
	background: url(../../en_US/images/top/recomend_bg.png) no-repeat center center;
	-webkit-background-size: cover;
	background-size: cover;
	padding: 85px 0 100px;
}
.secRecomend.secNoBg {
	background: none;
}
.secRecomend .itemList {
	display: table;
	width: 100%;
	margin-top: 48px;
}
.secRecomend .itemList .item {
	display: table-cell;
	width: 33.3333%;
	text-align: center;
}
.secRecomend .itemList .item img {
	width: 100%;
	height: auto;
}
.secRecomend .itemList .item .itemTtl {
	font-size: 2.6rem;
}
.secRecomend .itemList .item .img {
	margin-top: 20px;
}
.secRecomend .itemList .item .txt {
	font-size: 1.5rem;
	line-height: 1.5;
	padding: 18px 10% 0;
}


/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.secRecomend {
		padding: 35px 0 60px;
	}
	.secRecomend .itemList {
		display: block;
		width: auto;
		margin-top: 0;
		padding: 0 20px;
	}
	.secRecomend .itemList .item {
		display: block;
		width: auto;
		text-align: center;
		margin-top: 29px;
	}
	.secRecomend .itemList .item .itemTtl {
		font-size: 2.2rem;
	}
	.secRecomend .itemList .item .img {
		margin-top: 12px;
	}
	.secRecomend .itemList .item .txt {
		font-size: 1.5rem;
		line-height: 1.4;
		padding: 10px 0 0;
	}
}



/*-------------------------------------
secEvent
-------------------------------------*/
.secEvent {
	background: #F2F3EE;
	padding: 62px 10px 77px;
}
.secEvent .secInr {
	width: 100%;
	max-width: 986px;
	margin: 0 auto;
}
.secEvent .secInr img {
	width: 100%;
	height: auto;
}
.secEvent .pickList {
	padding-top: 67px;
}
.secEvent .pickList .listLine {
	display: table;
	width: 100%;
}
.secEvent .pickList .listLine .item {
	display: table-cell;
	width: 50%;
	box-sizing: border-box;
}
.secEvent .pickList .listLine .item:first-child {
	padding-right: 1.5%;
}
.secEvent .pickList .listLine .item:last-child {
	padding-left: 1.5%;
}
.secEvent .pickList .listLine .item .itemInr {
	position: relative;
}
.secEvent .pickList .listLine .item .balloon {
	position: absolute;
	top: -18px;
	left: -13px;
	width: 71px;
	height: 71px;
	z-index: 2;
}
.secEvent .pickList .listLine .item .balloon .bgNum {
	width: 71px;
	height: 71px;
	fill: #49A4ED;
}
.secEvent .pickList .listLine .item .balloon .numTxt {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	text-align: center;
	font-weight: bold;
	color: #FFFF26;
}
.secEvent .pickList .listLine .item .balloon .numTxt .txt {
	font-size: 1.3rem;
}
.secEvent .pickList .listLine .item .balloon .numTxt .num {
	font-size: 2.2rem;
}
.secEvent .pickList .listLine .item .place {
	font-size: 1.1rem;
	color: #1385DC;
	margin-top: 15px;
}
.secEvent .pickList .listLine .item .ttlLine {
	margin-top: 8px;
	padding-left: 3px;
}
.secEvent .pickList .listLine .item .ttlLine .date {
	/* 公開前調整のためコメントアウト */
	/* float: left; */
	padding: 3px 16px 3px 0;
	margin-right: 16px;
	font-size: 1.4rem;
	color: #1485DC;
	/* border-right: 1px solid #1485DC; */
	margin-top: 6px;
}
.secEvent .pickList .listLine .item .ttlLine .ttl {
	overflow: hidden;
	font-size: 2.2rem;
	line-height: 1.3;
}
.secEvent .pickList .listLine .item .ttlLine .ttl a {
	text-decoration: none;
}
.secEvent .pickList .listLine .item .txt {
	line-height: 1.3;
	margin-top: 5px;
	padding: 0 3px;
}
.secEvent .eventList {
	margin-top: 50px;
}
.secEvent .eventList .eventSlide {
	position: relative;
}
.secEvent .eventList .eventSlide .slideWrapInr {
	margin-right: -28px;
}
.secEvent .eventList .eventSlide .mask {
	overflow: hidden;
	position: relative;
}
.secEvent .eventList .eventSlide .slider {
	width: 99999px;
	position: relative;
}
.secEvent .eventList .eventSlide .slider .item {
	float: left;
}
.secEvent .eventList .eventSlide .slider .item .itemInr {
	padding-right: 28px;
}
.secEvent .eventList .eventSlide .next,
.secEvent .eventList .eventSlide .prev {
	position: absolute;
	moz-transform: translate(x,y);
	cursor: pointer;
	width: 50px;
	height: 50px;
	box-sizing: border-box;
	padding-top: 13px;
	-webkit-border-radius: 50px;
	-ms-border-radius: 50px;
	border-radius: 50px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	text-align: center;
	background: rgba(255,255,255, 0.95);
}
.secEvent .eventList .eventSlide .next {
	right: -30px;
}
.secEvent .eventList .eventSlide .prev {
	left: -30px;
}
.secEvent .eventList .eventSlide .next .arw,
.secEvent .eventList .eventSlide .prev .arw {
	width: 12px;
	height: 25px;
	fill: #43A2F0;
}
.secEvent .eventList .eventSlide .prev .arw {
	-webkit-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	transform: rotate(-180deg);
}
.secEvent .eventList .eventSlide .pager {
	text-align: center;
	margin-top: 25px;
}
.secEvent .eventList .eventSlide .pager .pagerItem {
	display: inline-block;
	margin: 0 7px;
	width: 8px;
	height: 8px;
	background: #999;
	-webkit-border-radius: 8px;
	-ms-border-radius: 8px;
	border-radius: 8px;
}
.secEvent .eventList .eventSlide .pager .pagerItem.stay {
	background: #43A2F0;
}
.secEvent .eventList .eventSlide .item .place {
	font-size: 1.1rem;
	color: #1385DC;
	margin-top: 15px;
}
.secEvent .eventList .eventSlide .item .ttlLine {
	margin-top: 8px;
}
.secEvent .eventList .eventSlide .item .ttlLine .date {
	/* 公開前調整のためコメントアウト */
	/* float: left; */
	padding: 1px 12px 1px 0;
	margin-right: 12px;
	font-size: 1.4rem;
	color: #1485DC;
	/* border-right: 1px solid #1485DC; */
	margin-top: 4px;
}
.secEvent .eventList .eventSlide .item .ttlLine .ttl {
	overflow: hidden;
	font-size: 1.6rem;
	line-height: 1.3;
}
.secEvent .eventList .eventSlide .item .ttlLine .ttl a {
	text-decoration: none;
}
.secEvent .eventList .eventSlide .item .txt {
	line-height: 1.3;
	margin-top: 10px;
}


/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.secEvent {
		background: #F2F3EE;
		padding: 0;
	}
	.secEvent .secInr {
		width: auto;
		margin: 0 auto;
		padding: 35px 20px 33px;
	}
	.secEvent .secInr img {
		width: 100%;
		height: auto;
	}
	.secEvent .pickList {
		padding-top: 0;
	}
	.secEvent .pickList .listLine {
		display: block;
		width: auto;
	}
	.secEvent .pickList .listLine .item {
		display: block;
		width: auto;
		margin-top: 35px;
	}
	.secEvent .pickList .listLine .item:first-child {
		padding-right: 0;
	}
	.secEvent .pickList .listLine .item:last-child {
		padding-left: 0;
	}
	.secEvent .pickList .listLine .item .itemInr {
		position: relative;
	}
	.secEvent .pickList .listLine .item .balloon {
		position: absolute;
		top: -11px;
		left: -6px;
		width: 41px;
		height: 41px;
		z-index: 2;
	}
	.secEvent .pickList .listLine .item .balloon .bgNum {
		width: 41px;
		height: 41px;
		fill: #49A4ED;
	}
	.secEvent .pickList .listLine .item .balloon .numTxt {
	}
	.secEvent .pickList .listLine .item .balloon .numTxt .txt {
		font-size: 0.8rem;
	}
	.secEvent .pickList .listLine .item .balloon .numTxt .num {
		font-size: 1.3rem;
	}
	.secEvent .pickList .listLine .item .place {
		font-size: 1rem;
	}
	.secEvent .pickList .listLine .item .ttlLine {
		margin-top: 8px;
		padding-left: 3px;
	}
	.secEvent .pickList .listLine .item .ttlLine .date {
		padding: 3px 16px 3px 0;
		margin-right: 16px;
		font-size: 1.2rem;
		color: #1485DC;
		margin-top: 5px;
	}
	.secEvent .pickList .listLine .item .ttlLine .ttl {
		font-size: 2rem;
		line-height: 1.3;
	}
	.secEvent .pickList .listLine .item .ttlLine .ttl a {
		text-decoration: none;
	}
	.secEvent .pickList .listLine .item .txt {
		font-size: 1.5rem;
		line-height: 1.4;
		margin-top: 5px;
		padding: 0;
	}
	.secEvent .eventList {
		margin-top: 37px;
	}
	.secEvent .eventList .eventSlide {
		position: relative;
	}
	.secEvent .eventList .eventSlide .slideWrapInr {
		margin-right: -10px;
		margin-left: -10px;
		position: relative;
	}
	.secEvent .eventList .eventSlide .mask {
		overflow: hidden;
		position: relative;
	}
	.secEvent .eventList .eventSlide .slider {
		width: 99999px;
		position: relative;
	}
	.secEvent .eventList .eventSlide .slider .item {
		float: left;
	}
	.secEvent .eventList .eventSlide .slider .item .itemInr {
		padding-right: 10px;
		padding-left: 10px;
	}
	.secEvent .eventList .eventSlide .next,
	.secEvent .eventList .eventSlide .prev {
		width: 25px;
		height: 25px;
		padding-top: 4px;
	}
	.secEvent .eventList .eventSlide .next {
		right: -20px;
	}
	.secEvent .eventList .eventSlide .prev {
		left: -20px;
	}
	.secEvent .eventList .eventSlide .next .arw,
	.secEvent .eventList .eventSlide .prev .arw {
		width: 6px;
		height: 13px;
	}
	.secEvent .eventList .eventSlide .pager {
		text-align: center;
		margin-top: 30px;
	}
	.secEvent .eventList .eventSlide .pager .pagerItem {
		margin: 0 8px;
		width: 11px;
		height: 11px;
		-webkit-border-radius: 11px;
		-ms-border-radius: 11px;
		border-radius: 11px;
	}
	.secEvent .eventList .eventSlide .pager .pagerItem.stay {
		background: #43A2F0;
	}
	.secEvent .eventList .eventSlide .item .place {
		font-size: 1rem;
	}
	.secEvent .eventList .eventSlide .item .ttlLine {
		margin-top: 11px;
	}
	.secEvent .eventList .eventSlide .item .ttlLine .date {
		float: none;
		padding: 0;
		margin-right: 0;
		font-size: 1.3rem;
		color: #1485DC;
		border-right: none;
		margin-top: 0;
	}
	.secEvent .eventList .eventSlide .item .ttlLine .ttl {
		font-size: 1.7rem;
	}
	.secEvent .eventList .eventSlide .item .ttlLine .ttl a {
		text-decoration: none;
	}
	.secEvent .eventList .eventSlide .item .txt {
		font-size: 1.5rem;
		line-height: 1.4;
		margin-top: 8px;
	}
}



/*-------------------------------------
secOverview
-------------------------------------*/
.secOverview {
	background: #F4FAFA;
	padding: 90px 10px;
}
.secOverview .secInr {
	width: 100%;
	max-width: 1016px;
	margin: 0 auto;
}
.secOverview .lead {
	text-align: center;
	padding: 25px 5px 0;
	line-height: 1.7;
	letter-spacing: 1px;
}
.secOverview .dtlWrap {
	margin-top: 75px;
	padding-right: 3%;
}
.secOverview .dtlWrap .cellTtl {
	font-size: 2rem;
}
.secOverview .dtlWrap .btnCell {
	float: left;
	width: 24.3%;
}
.secOverview .dtlWrap .btnCell img {
	width: 100%;
	height: auto;
}
.secOverview .dtlWrap .btnCell .cellTtl {
	color: #0687E5;
	padding-left: 58px;
	position: relative;
}
.secOverview .dtlWrap .btnCell .cellTtl .icnFloorChoice {
	width: 45px;
	height: 37px;
	fill: #43A2F0;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.secOverview .dtlWrap .btnCell .btnCts {
	position: relative;
}
.secOverview .dtlWrap .btnCell .btnCts::after {
	content: " ";
	display: block;
	position: absolute;
	top: 10%;
	left: 50%;
	overflow: hidden;
	width: 7px;
	background: #EEEDF2;
	height: 80%;
}
.secOverview .dtlWrap .btnCell .btnCts .list li {
	position: relative;
	margin-top: 20%;
	z-index: 2;
	background: no-repeat center top;
	-webkit-background-size: cover;
	background-size: cover;
	cursor: pointer;
}
.secOverview .dtlWrap .btnCell .btnCts .list li .num {
	font-size: 1.5rem;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-55%);
	-ms-transform: translate(-50%,-55%);
	transform: translate(-50%,-55%);
}
.secOverview .dtlWrap .btnCell .btnCts .list li.js-stay {
	background-image: url(../../en_US/images/top/pc_floor_panel_o.png);
	cursor: default;
}
.secOverview .dtlWrap .btnCell .btnCts .list li.js-stay img {
	opacity: 0;
}
.secOverview .dtlWrap .btnCell .btnCts .list li.js-stay .num {
	font-size: 2.2rem;
	color: #FFFF4C;
	font-weight: bold;
}
.secOverview .dtlWrap .mapCell {
	float: right;
	width: 73.1%;
}
.secOverview .dtlWrap .mapCell img {
	width: 100%;
	height: auto;
}
.secOverview .dtlWrap .mapCell .cellTtl {
	color: #0687E5;
	padding-left: 65px;
	position: relative;
}
.secOverview .dtlWrap .mapCell .cellTtl .icnNum {
	width: 47px;
	height: 47px;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.secOverview .dtlWrap .mapCell .cellTtl .icnNum .bgNum {
	width: 47px;
	height: 47px;
	fill: #49A4ED;
}
.secOverview .dtlWrap .mapCell .cellTtl .icnNum .num {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	font-size: 2.1rem;
	font-weight: bold;
	color: #FFFF26;
}
.secOverview .dtlWrap .mapCell .floormap {
	margin-top: -2px;
}
.secOverview .floormap .js-map {
	display: none;
}
.secOverview .floormap .js-map.js-stay {
	display: block;
}
.secOverview .btnLine {
	margin-top: 45px;
}

@media screen and (max-width: 1150px) {
	.secOverview .dtlWrap .cellTtl {
		font-size: 1.6rem;
	}
}


/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.secOverview {
		background: #F4FAFA;
		padding: 35px 20px 43px;
	}
	.secOverview .secInr {
	}
	.secOverview .lead {
		font-size: 1.5rem;
		padding: 12px 0 0;
		line-height: 1.7;
		letter-spacing: 1px;
	}
	.secOverview .dtlWrap {
		margin-top: 20px;
		padding-right: 0;
	}
	.secOverview .dtlWrap .cellTtl {
		font-size: 1.6rem;
		text-align: center;
		color: #0687E5;
	}
	.secOverview .dtlWrap .cellTtl .icnFloorChoice {
		vertical-align: middle;
		width: 23px;
		height: 19px;
		fill: #43A2F0;
		position: relative;
		top: -2px;
		margin-right: 7px;
	}
	.secOverview .dtlWrap .btnList {
		display: table;
		margin: 14px auto 0;
	}
	.secOverview .dtlWrap .btnList li {
		display: table-cell;
		padding: 0 8px;
		vertical-align: top;
	}
	.secOverview .dtlWrap .btnList li .btn {
		display: table;
		width: 38px;
		height: 38px;
		background: #999;
		-webkit-border-radius: 38px;
		-ms-border-radius: 38px;
		border-radius: 38px;
		cursor: pointer;

	}
	.secOverview .dtlWrap .btnList li .btn .num {
		display: table-cell;
		vertical-align: middle;
		text-align: center;
		font-size: 1.7rem;
		font-weight: bold;
		color: #fff;
	}
	.secOverview .dtlWrap .btnList li .btn.js-stay {
		background: #49A4ED;
		position: relative;
	}
	.secOverview .dtlWrap .btnList li .btn.js-stay::after {
		content: " ";
		position: absolute;
		bottom: -6px;
		left: 50%;
		margin-left: -6px;
		width: 13px;
		height: 12px;
		background: url(../../en_US/images/top/sp_floormap_baloon_arw.png) no-repeat left top;
		-webkit-background-size: 100% auto;
		background-size: 100% auto;
	}
	.secOverview .dtlWrap .btnList li .btn.js-stay .num {
		color: #FFFF26;
	}
	.secOverview .dtlWrap .floormap {
		margin: 28px -10px 0;
	}
	.secOverview .dtlWrap .floormap img {
		width: 100%;
		height: auto;
	}
	.secOverview .dtlWrap .loupeLine {
		margin-top: 18px;
	}
	.secOverview .dtlWrap .icns {
		margin: 32px -10px 0;
	}
	.secOverview .dtlWrap .icns img {
		width: 100%;
		height: auto;
	}
}


/*-------------------------------------
404
-------------------------------------*/
.sec404 {
	background: #F4FAFA;
	padding: 250px 10px 500px;

}
.sec404 .secInr {
	width: 100%;
	max-width: 1016px;
	margin: 0 auto;
}
.sec404 .lead {
	text-align: center;
	padding: 25px 5px 0;
	line-height: 1.7;
	letter-spacing: 1px;
}
.sec404 .dtlWrap {
	margin-top: 75px;
	padding-right: 3%;
}
.sec404 .dtlWrap .cellTtl {
	font-size: 2rem;
}
.sec404 .dtlWrap .btnCell {
	float: left;
	width: 24.3%;
}
.sec404 .dtlWrap .btnCell img {
	width: 100%;
	height: auto;
}
.sec404 .dtlWrap .btnCell .cellTtl {
	color: #0687E5;
	padding-left: 58px;
	position: relative;
}
.sec404 .dtlWrap .btnCell .cellTtl .icnFloorChoice {
	width: 45px;
	height: 37px;
	fill: #43A2F0;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.sec404 .dtlWrap .btnCell .btnCts {
	position: relative;
}
.sec404 .dtlWrap .btnCell .btnCts::after {
	content: " ";
	display: block;
	position: absolute;
	top: 10%;
	left: 50%;
	overflow: hidden;
	width: 7px;
	background: #EEEDF2;
	height: 80%;
}
.sec404 .dtlWrap .btnCell .btnCts .list li {
	position: relative;
	margin-top: 20%;
	z-index: 2;
	background: no-repeat center top;
	-webkit-background-size: cover;
	background-size: cover;
	cursor: pointer;
}
.sec404 .dtlWrap .btnCell .btnCts .list li .num {
	font-size: 1.5rem;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-55%);
	-ms-transform: translate(-50%,-55%);
	transform: translate(-50%,-55%);
}
.sec404 .dtlWrap .btnCell .btnCts .list li.js-stay {
	background-image: url(../../en_US/images/top/pc_floor_panel_o.png);
	cursor: default;
}
.sec404 .dtlWrap .btnCell .btnCts .list li.js-stay img {
	opacity: 0;
}
.sec404 .dtlWrap .btnCell .btnCts .list li.js-stay .num {
	font-size: 2.2rem;
	color: #FFFF4C;
	font-weight: bold;
}
.sec404 .dtlWrap .mapCell {
	float: right;
	width: 73.1%;
}
.sec404 .dtlWrap .mapCell img {
	width: 100%;
	height: auto;
}
.sec404 .dtlWrap .mapCell .cellTtl {
	color: #0687E5;
	padding-left: 65px;
	position: relative;
}
.sec404 .dtlWrap .mapCell .cellTtl .icnNum {
	width: 47px;
	height: 47px;
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.sec404 .dtlWrap .mapCell .cellTtl .icnNum .bgNum {
	width: 47px;
	height: 47px;
	fill: #49A4ED;
}
.sec404 .dtlWrap .mapCell .cellTtl .icnNum .num {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	font-size: 2.1rem;
	font-weight: bold;
	color: #FFFF26;
}
.sec404 .dtlWrap .mapCell .floormap {
	margin-top: -2px;
}
.sec404 .floormap .js-map {
	display: none;
}
.sec404 .floormap .js-map.js-stay {
	display: block;
}
.sec404 .btnLine {
	margin-top: 45px;
}

@media screen and (max-width: 1150px) {
	.sec404 .dtlWrap .cellTtl {
		font-size: 1.6rem;
	}
}


/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.sec404 {
		background: #F4FAFA;
		padding: 35px 20px 43px;
	}
	.sec404 .secInr {
	}
	.sec404 .lead {
		font-size: 1.5rem;
		padding: 12px 0 0;
		line-height: 1.7;
		letter-spacing: 1px;
	}
	.sec404 .dtlWrap {
		margin-top: 20px;
		padding-right: 0;
	}
	.sec404 .dtlWrap .cellTtl {
		font-size: 1.6rem;
		text-align: center;
		color: #0687E5;
	}
	.sec404 .dtlWrap .cellTtl .icnFloorChoice {
		vertical-align: middle;
		width: 23px;
		height: 19px;
		fill: #43A2F0;
		position: relative;
		top: -2px;
		margin-right: 7px;
	}
	.sec404 .dtlWrap .btnList {
		display: table;
		margin: 14px auto 0;
	}
	.sec404 .dtlWrap .btnList li {
		display: table-cell;
		padding: 0 8px;
		vertical-align: top;
	}
	.sec404 .dtlWrap .btnList li .btn {
		display: table;
		width: 38px;
		height: 38px;
		background: #999;
		-webkit-border-radius: 38px;
		-ms-border-radius: 38px;
		border-radius: 38px;
		cursor: pointer;

	}
	.sec404 .dtlWrap .btnList li .btn .num {
		display: table-cell;
		vertical-align: middle;
		text-align: center;
		font-size: 1.7rem;
		font-weight: bold;
		color: #fff;
	}
	.sec404 .dtlWrap .btnList li .btn.js-stay {
		background: #49A4ED;
		position: relative;
	}
	.sec404 .dtlWrap .btnList li .btn.js-stay::after {
		content: " ";
		position: absolute;
		bottom: -6px;
		left: 50%;
		margin-left: -6px;
		width: 13px;
		height: 12px;
		background: url(../../en_US/images/top/sp_floormap_baloon_arw.png) no-repeat left top;
		-webkit-background-size: 100% auto;
		background-size: 100% auto;
	}
	.sec404 .dtlWrap .btnList li .btn.js-stay .num {
		color: #FFFF26;
	}
	.sec404 .dtlWrap .floormap {
		margin: 28px -10px 0;
	}
	.sec404 .dtlWrap .floormap img {
		width: 100%;
		height: auto;
	}
	.sec404 .dtlWrap .loupeLine {
		margin-top: 18px;
	}
	.sec404 .dtlWrap .icns {
		margin: 32px -10px 0;
	}
	.sec404 .dtlWrap .icns img {
		width: 100%;
		height: auto;
	}
}


/*-------------------------------------
secAccess
-------------------------------------*/
.secAccess {
	background: url(../../en_US/images/common/sec_left_sdw.png) no-repeat left center;
	padding: 110px 10px 95px;
}
.secAccess .secInr {
	width: 100%;
	max-width: 986px;
	margin: 0 auto;
}
.secAccess .icnPlane {
	width: 38px;
	height: 15px;
}
.secAccess .icnTrain {
	width: 18px;
	height: 24px;
}
.secAccess .icnBus {
	width: 33px;
	height: 17px;
}
.secAccess .btnSetWrap {
	margin: 73px -5px 0;
}
.secAccess .btnSet {
	display: table;
	width: 100%;
}
.secAccess .btnSet .btn {
	display: table-cell;
	width: 25%;
	box-sizing: border-box;
	padding: 0 5px;
	vertical-align: top;
}
.secAccess .btnSet .btn a {
	display: block;
	border: 1px solid #9ECAF1;
	-webkit-border-radius: 1px;
	-ms-border-radius: 1px;
	border-radius: 1px;
	color: #0086E7;
	text-decoration: none;
}
.secAccess .btnSet .btn a:hover {
	text-decoration: underline;
}
.secAccess .btnSet .btn .btnInr {
	display: table;
	margin: 0 auto;
	height: 53px;
	padding: 0 5px;
}
.secAccess .btnSet .btn .btnInr .icnCell {
	display: table-cell;
	vertical-align: middle;
	padding-right: 10px;
}
.secAccess .btnSet .btn .btnInr .icnCell svg {
	fill: #1685EA;
}
.secAccess .btnSet .btn .btnInr .txtCell {
	display: table-cell;
	vertical-align: middle;
	padding-bottom: 3px;
}
.secAccess .map {
	margin-top: 73px;
	padding-left: 4%;
	text-align: center;
}
.secAccess .map img {
	width: auto;
	max-width: 100%;
	height: auto;
}
.secAccess .infoListWrap {
	margin-top: 84px;
	border: 1px solid #E4E4E4;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	border-radius: 4px;
	padding: 18px 20px 32px 57px;
}
.secAccess .infoListWrap .infoList li {
	float: left;
	margin-top: 14px;
	margin-right: 25px;
	white-space: nowrap;
	color: #888888;
	font-size: 1.2rem;
	font-weight: bold;
}
.secAccess .infoListWrap .infoList li .line,
.secAccess .infoListWrap .infoList li .txt {
	vertical-align: middle;
}
.secAccess .infoListWrap .infoList li .line {
	position: relative;
	top: -2px;
	margin-right: 5px;
}

.secAccess .btnLine {
	margin-top: 72px;
}


/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.secAccess {
		background: none;
		padding: 40px 20px 45px;
	}
	.secAccess .secInr {
		width: auto;
		max-width: none;
		margin: 0 auto;
	}
	.secAccess .icnPlane {
		width: 25px;
		height: 10px;
	}
	.secAccess .icnTrain {
		width: 12px;
		height: 15px;
	}
	.secAccess .icnBus {
		width: 23px;
		height: 11px;
	}
	.secAccess .btnSetWrap {
		margin: 15px 0 0;
	}
	.secAccess .btnSet {
		display: block;
		width: auto;
	}
	.secAccess .btnSet .btn {
		display: block;
		float: left;
		margin-top: 10px;
		width: 50%;
		box-sizing: border-box;
		padding: 0;
	}
	.secAccess .btnSet .btn:nth-child(odd) {
		padding-right: 4px;
	}
	.secAccess .btnSet .btn:nth-child(even) {
		padding-left: 4px;
	}
	.secAccess .btnSet .btn a {
		display: table;
		box-sizing: border-box;
		width: 100%;
		height: 46px;
	}
	.secAccess .btnSet .btn a:hover {
		text-decoration: underline;
	}
	.secAccess .btnSet .btn .btnInr {
		display: table-cell;
		vertical-align: middle;
		text-align: center;
		margin: 0 auto;
		height: auto;
		padding: 0;
	}
	.secAccess .btnSet .btn .btnInr .icnCell {
		display: block;
		vertical-align: middle;
		padding-right: 0;
	}
	.secAccess .btnSet .btn .btnInr .icnCell svg {
		fill: #1685EA;
	}
	.secAccess .btnSet .btn .btnInr .txtCell {
		display: block;
		vertical-align: middle;
		padding-bottom: 0;
		font-size: 1.1rem;
		padding-top: 3px;
	}
	.secAccess .map {
		margin-top: 33px;
		text-align: center;
		padding-left: 0;
	}
	.secAccess .map img {
	}
	.secAccess .loupeLine {
		margin-top: 26px;
	}
	.secAccess .infoListWrap {
		margin-top: 25px;
		border: 1px solid #E4E4E4;
		-webkit-border-radius: 2px;
		-ms-border-radius: 2px;
		border-radius: 2px;
		padding: 2px 10px 20px 10px;
	}
	.secAccess .infoListWrap .infoList li {
		float: left;
		margin-top: 12px;
		margin-right: 15px;
		white-space: nowrap;
		color: #888888;
		font-size: 1rem;
	}
	.secAccess .infoListWrap .infoList li .line,
	.secAccess .infoListWrap .infoList li .txt {
		vertical-align: middle;
	}
	.secAccess .infoListWrap .infoList li .line {
		position: relative;
		top: -2px;
		margin-right: 5px;
	}

	.secAccess .btnLine {
		margin-top: 35px;
	}
}




/*===========================================================================
 Common use （cm-）　parts （pt-） 　パターン別（st-）　個別での上書き（ow-）
===========================================================================*/
/*フォント*/
.cm-fontEn {

}

/* PC
-------------------------------------*/
.cm-spOnly {}
.cm-pcOnly {}

@media screen and (min-width: 769px) {
	.cm-spOnly {
		display: none;
	}
}

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.cm-pcOnly {
		display: none;
	}

	.cm-ancOffset {
		margin-top: -58px;
		padding-top: 58px;
	}
	.cm-imgW100,
	.cm-imgW100 img {
		width: 100%;
		height: auto;
	}
}




/*-------------------------------------
アイコン
-------------------------------------*/
/*リンクアロー*/
.pt-icnLinkArw {
	width: 4px;
	height: 7px;
	vertical-align: middle;
	fill: #333;
}
/*ボタンアロー*/
.pt-btnArw {
	width: 7px;
	height: 11px;
	vertical-align: middle;
	fill: #0B89E5;
}

/*ブランクアイコン*/
.pt-icnBlank {
	width: 9px;
	height: 9px;
	vertical-align: middle;
	fill: #333;
}


/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	/*ボタンアロー*/
	.pt-btnArw {
		width: 6px;
		height: 13px;
	}
}



/*-------------------------------------
ボタン
-------------------------------------*/
.pt-bdrBtn {
	margin: 0 auto;
	display: table;
	width: 310px;
	height: 50px;
	box-sizing: border-box;
	background: #EEF5FB;
	border: 1px solid #9ECAF1;
}
.pt-bdrBtn .btnInr {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	font-size: 1.8rem;
	padding-left: 20px;
	color: #0086E7;
	text-decoration: none;
	cursor: pointer;
}
.pt-bdrBtn .btnInr .arw {
	margin-left: 13px;
	position: relative;
	top: -1px;
}



.pt-btnHasPdf {
	display: table;
	width: 100%;
	height: 50px;
	box-sizing: border-box;
	-webkit-border-radius: 2px;
	-ms-border-radius: 2px;
	border-radius: 2px;
	border: 1px solid #9ECAF1;
	background: #EEF5FB;
	text-decoration: none;
	font-size: 1.5rem;
	color: #0085E5;
	margin-left: auto;
	margin-right: auto;
}
.pt-btnHasPdf:hover {
	color: #0085E5;
}
.pt-btnHasPdf:hover img {
	opacity: 1;
}
.pt-btnHasPdf .btnInr {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}
.pt-btnHasPdf .inrTbl {
	display: table;
	margin: 0 auto;
	position: relative;
}
.pt-btnHasPdf .inrTbl .icnCell {
	display: table-cell;
	vertical-align: middle;
	padding-right: 14px;
}
.pt-btnHasPdf .inrTbl .txtCell {
	display: table-cell;
	vertical-align: middle;
	text-align: left;
}


.pt-btnHasIcn {
	display: table;
	width: 100%;
	height: 55px;
	box-sizing: border-box;
	-webkit-border-radius: 2px;
	-ms-border-radius: 2px;
	border-radius: 2px;
	border: 1px solid #9ECAF1;
	background: #EEF5FB;
	text-decoration: none;
	color: #0085E5;
	margin-left: auto;
	margin-right: auto;
	font-size: 1.6rem;
}
.pt-btnHasIcn:hover {
	color: #0085E5;
}
.pt-btnHasIcn:hover img {
	opacity: 1;
}
.pt-btnHasIcn .btnInr {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
}
.pt-btnHasIcn .inrTbl {
	display: table;
	margin: 0 auto;
	position: relative;
}
.pt-btnHasIcn .inrTbl .icnCell {
	display: table-cell;
	vertical-align: middle;
	padding-right: 14px;
}
.pt-btnHasIcn .inrTbl .txtCell {
	display: table-cell;
	vertical-align: middle;
	text-align: left;
}
.pt-btnHasIcn .inrTbl .arwCell {
	display: table-cell;
	vertical-align: middle;
}
.pt-btnHasIcn .inrTbl .icnBlank {
	fill: #4CA1EE;
	width: 9px;
	height: 9px;
}


/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.pt-bdrBtn {
		margin: 0 auto;
		display: table;
		width: 100%;
		height: 45px;
		box-sizing: border-box;
		background: #EEF5FB;
		border: 1px solid #9ECAF1;
	}
	.pt-bdrBtn .btnInr {
		display: table-cell;
		text-align: center;
		vertical-align: middle;
		font-size: 1.7rem;
		padding-left: 0;
		color: #0086E7;
		text-decoration: none;
		cursor: pointer;
	}
	.pt-bdrBtn .btnInr .arw {
		margin-left: 7px;
		position: relative;
		top: -2px;
	}

	.pt-bdrBtnRnd {
		margin: 0 auto;
		display: table;
		width: 100px;
		height: 22px;
		box-sizing: border-box;
		border: 1px solid #9ECAF1;
		-webkit-border-radius: 10px;
		-ms-border-radius: 10px;
		border-radius: 10px;
	}
	.pt-bdrBtnRnd .btnInr {
		display: table-cell;
		text-align: center;
		vertical-align: middle;
		font-size: 1.2rem;
		color: #0685E5;
		text-decoration: none;
		cursor: pointer;
	}
	.pt-bdrBtnRnd .btnInr .icnLoupe {
		width: 10px;
		height: 10px;
		fill: #43A2F0;
		vertical-align: middle;
		position: relative;
		margin-right: 5px;
		top: -1px;
	}

	.pt-btnHasPdf {
		display: table;
		width: 100%;
		height: 43px;
		font-size: 1.5rem;
	}
	.pt-btnHasPdf img {
		height: 30px;
		width: auto;
	}
	.pt-btnHasPdf .btnInr {
		display: table-cell;
		text-align: center;
		vertical-align: middle;
	}
	.pt-btnHasPdf .inrTbl {
		display: table;
		margin: 0 auto;
		position: relative;
	}
	.pt-btnHasPdf .inrTbl .icnCell {
		display: table-cell;
		vertical-align: middle;
		padding-right: 10px;
	}
	.pt-btnHasPdf .inrTbl .txtCell {
		display: table-cell;
		vertical-align: middle;
		text-align: left;
	}


	.pt-btnHasIcn {
		display: table;
		width: 100%;
		height: 43px;
		font-size: 1.5rem;
	}
	.pt-btnHasIcn .btnInr {
		display: table-cell;
		text-align: center;
		vertical-align: middle;
	}
	.pt-btnHasIcn .inrTbl {
		display: table;
		margin: 0 auto;
		position: relative;
	}
	.pt-btnHasIcn .inrTbl .icnCell {
		display: table-cell;
		vertical-align: middle;
		padding-right: 10px;
	}
	.pt-btnHasIcn .inrTbl .txtCell {
		display: table-cell;
		vertical-align: middle;
		text-align: left;
	}
	.pt-btnHasIcn .inrTbl .arwCell {
		display: table-cell;
		vertical-align: middle;
	}
	.pt-btnHasIcn .inrTbl .icnBlank {
		fill: #4CA1EE;
		width: 7px;
		height: 7px;
		position: relative;
		top: -2px;
		right: 0;
	}
}



/*-------------------------------------
タイトル
-------------------------------------*/
.pt-catPageTtl {
	height: 350px;
	position: relative;
	background: no-repeat center top;
	z-index: 2;
}
.pt-catPageTtl::after {
	content: " ";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url(../../en_US/images/common/bg_cover02.png) repeat;
}
.pt-catPageTtl .ttlInr {
	display: table;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	z-index: 2;
	width: 100%;
}
.pt-catPageTtl .ttlInr .ttlCell {
	display: table-cell;
	vertical-align: middle;
	text-align: center;
}
.pt-catPageTtl .ttlInr .ttlCell .catTtl {
	font-size: 5rem;
	color: #fff;
	letter-spacing: 5px;
	font-style: italic;
}
.pt-catPageTtl .ttlInr .icnCell {
	display: table-cell;
	vertical-align: middle;
	padding-left: 28px;
}
.pt-catPageTtl .ttlInr .icnCell svg {
	fill: #fff;
	width: 113px;
	height: 113px;
}
.pt-catPageTtl .bgSep4 {
	display: table;
	width: 100%;
	height: 350px;
}
.pt-catPageTtl .bgSep4 .bg {
	display: table-cell;
	width: 25%;
	background: no-repeat center center;
	-webkit-background-size: cover;
	background-size: cover;
}


.pt-secTtl {
	font-size: 3.7rem;
	font-style: italic;
	letter-spacing: 2px;
	color: #1F86D8;
	text-align: center;
}

.pt-secTtl.sizeL {
	font-size: 5rem;
}

.pt-secTtlBdr {
	font-size: 3.9rem;
	font-style: italic;
	letter-spacing: 2px;
	color: #1F86D8;
	text-align: center;
	line-height: 1.2;
}
.pt-secTtlBdr .ttlBdr{
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 463px;
	border-bottom: 1px solid #1F86D8;
	padding-bottom: 28px;
}
.pt-secTtlBdr.st-wfree .ttlBdr {
	max-width: none;
	width: auto;
	padding-left: 35px;
	padding-right: 35px;
	display: inline-block;
}

.pt-secTtlBdr .ttlBdr2{
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 463px;
	border-bottom: 1px solid #1F86D8;
	padding-bottom: 28px;
}
.pt-secTtlBdr.st-wfree .ttlBdr2 {
	max-width: none;
	width: auto;
	padding-top: 55px;
	padding-left: 35px;
	padding-right: 35px;
	padding-bottom: 20px;
	display: inline-block;
}


.pt-catPageTtlAnc {
	height: 560px;
	position: relative;
	background: no-repeat center top;
}
.pt-catPageTtlAnc::after {
	content: " ";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url(../../en_US/images/common/bg_cover02.png) repeat;
}
.pt-catPageTtlAnc .ttlInr {
	display: table;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	z-index: 2;
}
.pt-catPageTtlAnc .ttlInr .ttlCell {
	display: table-cell;
	vertical-align: middle;
}
.pt-catPageTtlAnc .ttlInr .ttlCell .catTtl {
	font-size: 6rem;
	color: #fff;
	letter-spacing: 5px;
	font-style: italic;
}
.pt-catPageTtlAnc .ttlInr .ttlCell .sub {
	font-size: 2.5rem;
	text-align: center;
	color: #fff;
	margin-top: 10px;
	font-style: italic;
}
.pt-catPageTtlAnc .ttlInr .icnCell {
	display: table-cell;
	vertical-align: middle;
	padding-left: 23px;
}
.pt-catPageTtlAnc .ttlInr .icnCell svg {
	fill: #fff;
	width: 113px;
	height: 113px;
}
.pt-catPageTtlAnc .bgSep {
	display: table;
	width: 100%;
	height: 560px;
}
.pt-catPageTtlAnc .bgSep .bg {
	display: table-cell;
	width: 50%;
	background: no-repeat center center;
	-webkit-background-size: cover;
	background-size: cover;
}
.pt-catPageTtlAnc .ancBtn {
	position: absolute;
	width: 50%;
	bottom: 15px;
	box-sizing: border-box;
	padding: 0 3.5%;
	z-index: 3;
}
.pt-catPageTtlAnc .ancBtn.ancBtn02 {
	left: 50%;
}
.pt-catPageTtlAnc .ancBtn .btn {
	display: table;
	width: 100%;
	height: 50px;
	box-sizing: border-box;
	-webkit-border-radius: 2px;
	-ms-border-radius: 2px;
	border-radius: 2px;
	border: 1px solid #fff;
	background: rgba(238,245,251,0.9);
	color: #0085E5;
	text-decoration: none;
}
.pt-catPageTtlAnc .ancBtn .btn .btnInr {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	font-size: 1.8rem;
}
.pt-catPageTtlAnc .ancBtn .btn .btnInr .arw {
	width: 6px;
	height: 11px;
	fill: #0085E5;
	margin-left: 12px;
	position: relative;
	top: -1px;
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}



.pt-catPageTtlLarge {
	height: 560px;
	position: relative;
	background: no-repeat center top;
	-webkit-background-size: cover;
	background-size: cover;
}
.pt-catPageTtlLarge::after {
	content: " ";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: url(../../en_US/images/common/bg_cover02.png) repeat;
}
.pt-catPageTtlLarge .ttlInr {
	display: table;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	z-index: 2;
}
.pt-catPageTtlLarge .ttlInr .ttlCell {
	display: table-cell;
	vertical-align: middle;
	padding-right: 23px;
}
.pt-catPageTtlLarge .ttlInr .ttlCell .catTtl {
	font-size: 6rem;
	color: #fff;
	letter-spacing: 5px;
	font-style: italic;
}
.pt-catPageTtlLarge .ttlInr .icnCell {
	display: table-cell;
	vertical-align: middle;
}
.pt-catPageTtlLarge .ttlInr .icnCell svg {
	fill: #fff;
	width: 113px;
	height: 113px;
}


/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {
	.pt-catPageTtl {
		height: 150px;
	}
	.pt-catPageTtl::after {
		background: url(../../en_US/images/common/bg_cover02.png) repeat;
	}
	.pt-catPageTtl .ttlInr {
	}
	.pt-catPageTtl .ttlInr .ttlCell {
	}
	.pt-catPageTtl .ttlInr .ttlCell .catTtl {
		font-size: 3rem;
		letter-spacing: 2px;
		/*white-space: normal;*/
	}
	.pt-catPageTtl .ttlInr .icnCell {
		padding-left: 12px;
	}
	.pt-catPageTtl .ttlInr .icnCell svg {
		width: 57px;
		height: 57px;
	}
	.pt-catPageTtl .bgSep4 {
		height: 150px;
	}
	.pt-catPageTtl .bgSep4 .bg {
	}


	.pt-secTtl {
		font-size: 2.7rem;
	}

	.pt-secTtl.sizeL {
		font-size: 2.7rem;
	}

	.pt-secTtlBdr {
		font-size: 2.5rem;
		letter-spacing: 2px;
		line-height: 1.2;
	}
	.pt-secTtlBdr .ttlBdr {
		display: inline-block;
		width: auto;
		max-width: none;
		padding-bottom: 15px;
	}


	.pt-catPageTtlAnc {
		height: 185px;
	}
	.pt-catPageTtlAnc::after {
		background: url(../../en_US/images/common/bg_cover02.png) repeat;
	}
	.pt-catPageTtlAnc .ttlInr {
	}
	.pt-catPageTtlAnc .ttlInr .ttlCell {
		padding-right: 12px;
	}
	.pt-catPageTtlAnc .ttlInr .ttlCell .catTtl {
		font-size: 3rem;
		letter-spacing: 2px;
	}
	.pt-catPageTtlAnc .ttlInr .ttlCell .sub {
		font-size: 1.4rem;
	}
	.pt-catPageTtlAnc .ttlInr .icnCell {
	}
	.pt-catPageTtlAnc .ttlInr .icnCell svg {
		width: 57px;
		height: 57px;
	}
	.pt-catPageTtlAnc .bgSep {
		height: 185px;
	}
	.pt-catPageTtlAnc .bgSep .bg {
	}
	.pt-catPageTtlAnc .ancBtn {
		bottom: 5px;
		padding: 0 5px;
	}
	.pt-catPageTtlAnc .ancBtn.ancBtn02 {
	}
	.pt-catPageTtlAnc .ancBtn .btn {
		height: 25px;
	}
	.pt-catPageTtlAnc .ancBtn .btn .btnInr {
		font-size: 1.3rem;
	}
	.pt-catPageTtlAnc .ancBtn .btn .btnInr .arw {
		margin-left: 5px;
		top: 2px;
	}


	.pt-catPageTtlLarge {
		height: 185px;
	}
	.pt-catPageTtlLarge::after {
		background: url(../../en_US/images/common/bg_cover02.png) repeat;
	}
	.pt-catPageTtlLarge .ttlInr {
	}
	.pt-catPageTtlLarge .ttlInr .ttlCell {
		padding-right: 12px;
	}
	.pt-catPageTtlLarge .ttlInr .ttlCell .catTtl {
		font-size: 3rem;
		letter-spacing: 2px;
	}
	.pt-catPageTtlLarge .ttlInr .icnCell {
	}
	.pt-catPageTtlLarge .ttlInr .icnCell svg {
		width: 57px;
		height: 57px;
	}

}


/*-------------------------------------
パーツ
-------------------------------------*/

/* SP
-------------------------------------*/
@media screen and (max-width: 768px) {

}