@charset "utf-8";
/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
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, font, 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, figcaption, figure, section, footer, header, main, hgroup, menu, nav, summary {
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	outline: 0;
	font-size: 1em;
	box-sizing: border-box;
}
html {
	font-size: 62.5%;
}
@media all and (max-width: 374px) {
	html {
		font-size: calc(1000vw / 375);
	}
}
body, table, input, textarea, select, option {
	font-family: "Noto Serif JP", serif;
}
article, aside, canvas, details, figcaption, figure, footer, header, main, hgroup, menu, nav, section, summary {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
chrome_annotation {
	border: none !important;
}
:focus {
	outline: 0;
}
ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}
img {
	vertical-align: top;
	max-width: 100%;
    height: auto;
}
address {
	font-style: normal;
}
a,
a:link {
	color: #FFF;
	text-decoration: none;
	transition: 0.3s;
}
a:visited {
	color: #FFF;
}
a:hover {
	color: #FFF;
}
a:active {
	color: #FFF;
}
/*------------------------------------------------------------
	レイアウト
------------------------------------------------------------*/
body {
	min-width: 1280px;
	color: #FFF;
	font-size: 2.3rem;
	font-weight: 400;
	line-height: 1.5;
	text-size-adjust: none;
	-webkit-text-size-adjust: none;
	background-color: #FFF;
}
.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
}
#container {
	position: relative;
	text-align: left;
}
#main {
	padding: 0.5rem 0 7.5rem;
	position: relative;
	z-index: 1;
	background: #000;
}
#main::before {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-position: center top;
	background-size: cover;
	content: '';
	z-index: -1;
}
a[href^="tel:"] {
	cursor: default;
	pointer-events: none;
}
@media all and (min-width: 897px) {
	.sp {
		display: none !important;
	}
	.sp_x {
		display: none !important;
	}
}
@media all and (max-width: 896px) {
	body {
		min-width: inherit;
		font-size: 1.4rem;
	}
	a:hover,
	a:hover img {
		opacity: 1 !important;
	}
	.pc {
		display: none !important;
	}
	a[href^="tel:"] {
		cursor: pointer;
		pointer-events: auto;
	}
	#main {
		padding: 0.5rem 0 5rem;
	}
}
@media all and (max-width: 410px) {
	.sp_x {
		display: block !important;
	}
}
/*------------------------------------------------------------
	ヘッダー
------------------------------------------------------------*/
#gHeader {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 999;
}
#gHeader .menuBox {
	align-items: flex-start;
}
#gHeader #gNavi {
	margin-top: -0.7rem;
	padding: 0 4.5rem;
	min-width: 56.3rem;
	position: relative;
	z-index: 1;
	box-sizing: border-box;
}
#gHeader #gNavi::before {
	position: absolute;
	top: 0.6rem;
	left: 0;
	width: 100%;
	bottom: 0;
	background : linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(3, 3, 3, 1) 18.84%, rgba(12, 12, 12, 1) 32.17%, rgba(28, 28, 28, 1) 43.81%, transparent);
	opacity: 0.79;
	content: '';
	z-index: -1;
}
#gHeader #gNavi li {
	display: inline-block;
}
#gHeader #gNavi li.gNavi__top,
#gHeader #gNavi li.gNavi__category {
	display: none;
}
#gHeader #gNavi li:first-child {
	margin-right: 5.1rem;
}
#gHeader #gNavi li:first-child a {
	font-size: 2.2rem;
}
#gHeader #gNavi li {
	margin-right: 1.7rem;
}
#gHeader #gNavi li:last-child {
	margin-right: 0;
}
#gHeader #gNavi li a {
	font-size: 2rem;
	letter-spacing: -0.05em;
}
#gHeader #gNavi li a:hover {
	opacity: 0.7;
}
#gHeader .hBox {
	padding: 2.0rem 3.3rem 0 0;
}
#gHeader .linkUl {
	gap: 2.4rem;
}
#gHeader .linkUl li {
	width: 8.1rem;
	position: relative;
}
#gHeader .linkUl li a:hover {
	opacity: 0.7;
}
/* 吹き出し PC */
.linkBalloon {
	display: block;
	text-align: center;
	font-size: 1.1rem;
	color: #fff;
	margin-top: 0.6rem;
	position: relative;
	letter-spacing: 0.05em;
	animation: balloonBounce 2s ease-in-out infinite;
}
.linkBalloon::before {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-bottom: 5px solid rgba(255,255,255,0.7);
	margin: 0 auto 0.3rem;
}
@keyframes balloonBounce {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(3px); }
}
@media all and (max-width: 896px) {
	#gHeader {
		position: fixed;
		background: rgba(0, 0, 0, 0.85);
	}
	#gHeader .hBox {
		padding: 1rem 1.4rem;
		display: block;
		min-height: 4rem;
		box-sizing: border-box;
	}
	#gHeader .hBox .logo {
		width: 7.4rem;
		position: absolute;
		top: 0;
		left: 0;
		z-index: 200;
	}
	#gHeader .menu {
		position: absolute;
		top: 1.4rem;
		right: 1.6rem;
		height: 2rem;
		width: 2.1rem;
		cursor: pointer;
		z-index: 300;
		-webkit-transition: all .3s ease;
		transition: all .3s ease;
	}	
	#gHeader .menu span {
		background: #FFF;
		border: none;
		height: 1px;
		width: 100%;
		position: absolute;
		top: 0;
		left: 0;
		-webkit-transition: all .35s ease;
		transition: all .35s ease;
		cursor: pointer;
	}	
	#gHeader .menu span:nth-of-type(2) {
		top: 0.6rem;
	}	
	#gHeader .menu span:nth-of-type(3) {
		top: 1.2rem;
	}
	#gHeader .menu.on {
		top: 2.7rem;
		width: 3.4rem;
	}
	#gHeader .menu.on .top {
		transform: translateY(0.6rem) translateX(0) rotate(45deg);
	}
	#gHeader .menu.on .middle {
		opacity: 0;
	}
	#gHeader .menu.on .bottom {
		transform: translateY(-0.6rem) translateX(0) rotate(-45deg);
	}
	#gHeader .menuBox {
		padding-bottom: 12rem;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		display: none;
		overflow: auto;
		background: rgba(0, 0, 0, 0.7);
		z-index: 100;
		box-sizing: border-box;
	}
	#gHeader #gNavi {
		margin-top: 0;
		padding: 11.6rem 2rem 4.1rem;
		min-width: inherit;
		text-align: center;
	}
	#gHeader #gNavi::before {
		display: none;
	}
	#gHeader #gNavi li {
		margin: 0 0 1.9rem !important;
		display: block;
	}
	#gHeader #gNavi li.gNavi__top,
	#gHeader #gNavi li.gNavi__category {
		display: block;
	}
	#gHeader #gNavi li.gNavi__top {
		margin-bottom: 1rem !important;
	}
	#gHeader #gNavi li.gNavi__top a {
		font-size: 2.4rem !important;
		display: block;
	}
	#gHeader #gNavi li.gNavi__category {
		margin-bottom: 2rem !important;
		padding: 1.5rem 0;
		font-size: 2.4rem;
		letter-spacing: 0.1em;
		color: rgba(255, 255, 255, 0.6);
		border-top: 1px solid rgba(255, 255, 255, 0.2);
		border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	}
	#gHeader #gNavi li:last-child {
		margin-bottom: 0 !important;
	}
	#gHeader #gNavi li a {
		font-size: 2.0rem !important;
		display: block;
	}
	#gHeader .linkUl {
		gap: 1.8rem;
		justify-content: center;
	}
	#gHeader .linkUl li {
		width: 6.6rem;
	}
	/* PC用吹き出しはSPヘッダー内では非表示 */
	#gHeader .linkBalloon {
		display: none;
	}
}
/* SP bannerList 吹き出し */
.bannerList li {
	position: relative;
}
.bannerList .linkBalloon {
	position: absolute;
	bottom: calc(100% + 8px);
	left: 0;
	right: 0;
	font-size: 1.1rem;
	color: #fff;
	text-align: center;
	letter-spacing: 0.05em;
	animation: balloonBounce 2s ease-in-out infinite;
	z-index: 51;
	padding-bottom: 0.8rem;
	text-shadow: 0 1px 4px rgba(0,0,0,0.7), 0 0 8px rgba(0,0,0,0.4);
	white-space: nowrap;
	background: none;
}
.bannerList .linkBalloon::before {
	display: none;
}
.bannerList .linkBalloon br {
	display: none;
}
.bannerList .balloon--shinkan,
.bannerList .balloon--honkan,
.bannerList .balloon--store {
	padding: 0;
	background: none;
	text-shadow: none;
}
.bannerList .balloon--shinkan .balloon__inner,
.bannerList .balloon--honkan .balloon__inner,
.bannerList .balloon--store .balloon__inner {
	display: inline-block;
	padding: 0.5rem 1rem;
	border-radius: 4px;
	white-space: nowrap;
}
.bannerList .balloon--shinkan .balloon__inner {
	background: rgba(0,0,0,0.8);
	color: #fff;
}
.bannerList .balloon--honkan {
	text-shadow: none;
}
.bannerList .balloon--honkan .balloon__inner {
	background: #c8161c;
	color: #fff;
}
.bannerList .balloon--store .balloon__inner {
	background: #fff;
	color: #333;
}
.bannerList .balloon--shinkan::after {
	border-top-color: rgba(0,0,0,0.8);
}
.bannerList .balloon--honkan::after {
	border-top-color: #c8161c;
}
.bannerList .balloon--store::after {
	border-top-color: #fff;
}
.bannerList .linkBalloon::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid rgba(255,255,255,0.7);
	margin: 0.4rem auto 0;
}
/*------------------------------------------------------------
	フッター
------------------------------------------------------------*/
#gFooter {
	padding: 4rem 0 5.8rem;
	position: relative;
	z-index: 5;
	background: #000 url(../img/common/f_bg.jpg) no-repeat center top / cover;
}
#gFooter .linkUl {
	gap: 4rem;
	margin-bottom: 1rem;
}
#gFooter .linkUl li a {
	font-size: 1.6rem;
	line-height: 1.66;
	letter-spacing: -0.1em;
}
#gFooter .linkUl li a:hover {
	opacity: 0.7;
}
#gFooter .fLogo {
	margin: 0 auto 2.3rem;
	width: 14.7rem;
	position: relative;
	z-index: 5;
}
#gFooter .fLogo a {
	display: block;
}
#gFooter .fLogo__building {
	text-align: center;
	font-size: 1.4rem;
	margin-top: 0.5rem;
	letter-spacing: 0.1em;
}
#gFooter address {
	font-size: 1.3rem;
	line-height: 1.66;
	text-align: center;
	letter-spacing: -0.02em;
}
#gFooter .snsList {
	position: absolute;
	top: 8rem;
	left: 50%;
	transform: translateX(-50%);
	width: 100%;
	max-width: 123.8rem;
	justify-content: flex-end;
	gap: 2.5rem;
}
#gFooter .snsList li {
	width: 5rem;
}
#gFooter .snsList li a:hover {
	opacity: 0.7;
}
#gFooter .pageTop {
	position: absolute;
	bottom: 4.7rem;
	right: 4.7rem;
	width: 3.5rem;
	z-index: 50;
}
#gFooter .pageTop a:hover {
	opacity: 0.7;
}
@media all and (max-width: 896px) {
	#gFooter {
		padding: 4rem 0 26.7vw;
		background: url(../img/common/f_bg.jpg) no-repeat center top / cover;
	}
	#gFooter .linkUl {
		margin-bottom: 2rem;
		display: block;
	}
	#gFooter .linkUl li a {
		margin: 0 auto;
		padding: 0.5rem 1rem;
		width: fit-content;
		display: block;
		font-size: 1.4rem;
	}
	#gFooter .fLogo {
		margin: 0 auto 3rem;
		width: 10rem;
	}
	#gFooter address {
		font-size: 1.2rem;
	}
	#gFooter .snsList {
		margin-bottom: 3rem;
		position: static;
		transform: none;
		max-width: inherit;
		gap: 1.5rem;
		justify-content: center;
	}
	#gFooter .snsList li {
		width: 4rem;
	}
	#gFooter .pageTop {
		position: fixed;
		bottom: 12vw;
		right: 0;
		width: 6.1rem;
		z-index: 50;
	}
}
/*------------------------------------------------------------
	pageTitle
------------------------------------------------------------*/
.pageTitle {
	margin-bottom: 5.3rem;
	padding: 11rem 0 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	min-height: 36rem;
	position: relative;
	background: url(../img/news/page_title_img.jpg) no-repeat center center / cover;
	box-sizing: border-box;
}
.pageTitle::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.55);
	content: '';
}
.pageTitle h1 {
	position: relative;
	z-index: 5;
	font-size: 5.2rem;
	font-weight: 400;
	text-align: center;
	letter-spacing: 0.04em;
}
@media all and (max-width: 896px) {
	.pageTitle {
		margin-bottom: 5.3rem;
		padding: 6rem 0 0;
		min-height: 24rem;
	}
	.pageTitle h1 {
		font-size: 3rem;
	}
}