/****************************************/
/********** ArtLab-Tokyo [CSS] **********/
/****************************************/

/* ===== Google Fonts ===== */
/* Noto Sans JP is loaded via <link> in HTML */

/****************************** Common ******************************/

html {
	font-size: 14px;
}

@media (min-width: 48em) {
	html {
		font-size: 16px;
	}
}

body {
	display: block;
	position: relative;
	margin: auto;
	margin-top: 60px;
	background-color: #fff;
	color: #000064;
	font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "Helvetica Neue",
		HelveticaNeue, "Segoe UI", "游ゴシック体", YuGothic, "Yu Gothic M",
		"游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3",
		"Hiragino Kaku Gothic ProN W3", HiraKakuProN-W3, "ヒラギノ角ゴ ProN",
		"Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro",
		"メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	overflow-y: scroll;
}

/* PC: body shifts right to make room for the fixed left sidebar */
@media (min-width: 48em) {
	body {
		margin-top: 0;
		margin-left: 200px;
	}
}

main {
	display: block;
	min-height: calc(100vh - 380px);
}

@media (min-width: 48em) {
	main {
		min-height: 600px;
	}
}

a {
	color: #000064;
}

a:hover {
	color: #000064;
	text-decoration: none;
}

@media (any-hover: hover) {
	a:hover {
		color: #b7985b;
	}
}

a:focus {
	-webkit-transition-property: none !important;
	transition-property: none !important;
}

a[href^="tel:"] {
	pointer-events: none;
}

@media (max-width: 767px) {
	a[href^="tel:"] {
		pointer-events: auto;
	}
}

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

a,
img {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

section {
	padding: 2rem 0;
}

@media (min-width: 48em) {
	section {
		padding: 3rem 0;
	}
}

iframe {
	width: 100%;
	border: 0;
}

.h2, h2 {
	font-size: 1.7rem;
	letter-spacing: 0.05em;
}

.h4, h4 {
	font-size: 1.15rem;
}

.h5, h5 {
	font-size: 1.15rem;
}

/****************************** Common End ******************************/


/****************************** Bootstrap Override ******************************/

.container,
.container-fluid {
	position: relative;
}

.container-fluid {
	max-width: auto;
}

.d-flex:not(.flex-column) > *,
.d-sm-flex:not(.flex-column) > *,
.d-md-flex:not(.flex-column) > *,
.d-lg-flex:not(.flex-column) > *,
.d-xl-flex:not(.flex-column) > * {
	min-width: 0;
}

.d-flex.flex-column > *,
.d-sm-flex.flex-column > *,
.d-md-flex.flex-column > *,
.d-lg-flex.flex-column > *,
.d-xl-flex.flex-column > * {
	max-width: 100%;
}

.btn {
	padding-top: 0.25em;
	padding-bottom: 0.25em;
	border-radius: 0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: 180px;
}

.btn:disabled {
	cursor: auto;
}

.breadcrumb {
	margin: 0;
	background-color: transparent;
	border-radius: 0;
}

.breadcrumb-item {
	font-size: 0.875rem;
}

.breadcrumb-item a {
	-webkit-transition-property: none;
	transition-property: none;
}

@media (any-hover: hover) {
	.breadcrumb-item a:hover {
		text-decoration: underline;
	}
}

.breadcrumb-item + .breadcrumb-item::before {
	font-weight: 700;
	font-family: "fa-select";
	content: '\f0da' !important;
}

.card {
	margin-bottom: 1rem;
}

.card-img, .card-img-top {
	border-top-left-radius: calc(0rem - 0px);
	border-top-right-radius: calc(0rem - 0px);
}

/****************************** Bootstrap Override End ******************************/


/****************************** Global Navigation ******************************/

/* ---- SP (mobile): top horizontal bar with hamburger ---- */
nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 100;
	width: 100%;
	background-color: #000064;
	box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

nav .container-fluid {
	padding: 0 15px;
}

nav .nav-menu-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: space-between;
	min-height: 60px;
}

nav .nav-menu-row a.navbar-logo {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	color: #fff;
	line-height: normal;
}

@media (any-hover: hover) {
	nav .nav-menu-row a.navbar-logo:hover {
		color: #dce8fa;
	}
}

nav .nav-menu-row a.navbar-logo img {
	width: auto;
	height: 36px;
	padding-left: 0;
	filter: brightness(0) invert(1);
}

/* ---- PC (≥48em): left fixed sidebar ---- */
@media (min-width: 48em) {
	nav {
		top: 0;
		left: 0;
		width: 200px;
		height: 100vh;
		overflow-y: auto;
		overflow-x: hidden;
		box-shadow: 2px 0 8px rgba(0,0,0,0.08);
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 20px 0 40px;
	}

	nav .container-fluid {
		padding: 0;
		background-color: transparent;
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}

	nav .nav-menu-row {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
		-webkit-box-flex: 1;
		-ms-flex: 1;
		flex: 1;
		min-height: unset;
		padding: 0 12px;
		width: 100%;
	}

	nav .nav-menu-row a.navbar-logo {
		margin-bottom: 40px;
		padding-top: 5px;
	}

	nav .nav-menu-row a.navbar-logo img {
		height: 38px;
		width: auto;
	}
}

/* StellarNav — SP */
.stellarnav.mobile ul {
	background-color: #000064;
	z-index: 200;
}

.stellarnav.mobile ul li a:not(.dd-toggle) {
	padding: 12px 16px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 0.9rem;
	font-weight: 600;
	line-height: 20px;
	-webkit-transition-property: none;
	transition-property: none;
}

.stellarnav.mobile ul ul {
	background-color: #e7e7eb;
}

.stellarnav.mobile ul ul li a:not(.dd-toggle) {
	padding-left: 25px;
	font-size: 0.9375rem;
}

.stellarnav.mobile a.menu-toggle {
	color: #fff;
	font-size: 12px;
	line-height: 16px;
}

.stellarnav.mobile a.menu-toggle span.bars {
	top: 0px;
	margin: 0;
}

.stellarnav.mobile a.menu-toggle span.bars span {
	width: 22px;
	background-color: #fff;
}

.stellarnav.mobile.left,
.stellarnav.mobile.right {
	text-align: right;
}

.stellarnav.mobile.left > ul,
.stellarnav.mobile.right > ul {
	top: 60px !important;
}

.stellarnav.mobile.left.active > ul,
.stellarnav.mobile.right.active > ul {
	-webkit-animation: fadeInRight 0.3s;
	animation: fadeInRight 0.3s;
}

.stellarnav.mobile a.close-menu {
	display: none !important;
}

.stellarnav.mobile li a.dd-toggle {
	width: 50px;
	height: 50px;
}

.stellarnav.mobile li a.dd-toggle .icon-plus::before,
.stellarnav.mobile li a.dd-toggle .icon-plus::after {
	top: calc(50% - 1px);
	border-bottom: 2px solid #fff;
}

/* StellarNav — PC sidebar vertical list */
@media (min-width: 48em) {
	nav .nav-menu-row > div.container-fluid,
	.stellarnav,
	.stellarnav ul,
	.stellarnav ul li {
		position: static;
	}

	.stellarnav {
		width: 100%;
		overflow: visible;
	}

	.stellarnav ul {
		display: block;
		width: 100%;
		z-index: 1000;
	}

	.stellarnav.desktop ul li {
		display: block;
		width: 100%;
	}

	.stellarnav.desktop ul li a {
		display: block;
		padding: 9px 12px !important;
		color: #fff;
		font-size: 0.7rem;
		line-height: 1.4;
		font-weight: 600;
		text-align: left !important;
		letter-spacing: 0.01em;
		white-space: normal;
		word-break: break-all;
	}

	.stellarnav.desktop ul li a::before {
		content: '+ ';
		color: #dce8fa;
		font-weight: 700;
	}

	.stellarnav.desktop ul li a:hover {
		background-color: #f9ed00;
		text-decoration: underline;
		color: #333;
	}

	.stellarnav.desktop ul li a:hover::before {
		text-decoration: none;
	}

	/* hide sub-menu arrow on PC sidebar */
	.stellarnav.desktop li.has-sub > a::after {
		display: none !important;
	}

	.stellarnav ul ul {
		top: auto;
		left: 0;
		width: 100%;
		background-color: #e7e7eb;
	}
}

/* 来場予約 button in sidebar */
.stellarnav .nav-button-area {
	text-align: center;
	width: 100%;
}

.stellarnav .nav-button-area a.contact-btn {
	display: block;
	margin: 0 12px 16px;
	padding: 0.6em 0.8em;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 20px;
	color: #000064;
	font-size: 1.2rem;
	font-weight: 700;
	width: calc(100% - 24px);
	text-align: center;
	box-sizing: border-box;
	letter-spacing: 0.1em;
}

@media (min-width: 48em) {
	.stellarnav .nav-button-area a.contact-btn {
		margin: 0 0 16px;
		width: 100%;
	}
}

@media (any-hover: hover) {
	.stellarnav .nav-button-area a.contact-btn:hover {
		background-color: #4a6fa8;
		border-color: #fff;
		color: #fff;
	}
}

@media (max-width: 767px) {
	.stellarnav {
		overflow: visible;
	}
}

/****************************** Global Navigation End ******************************/


/****************************** Heading ******************************/

.subtitle {
	margin-bottom: 0rem;
	text-align: left;
}

@media (min-width: 48em) {
	.subtitle {
		margin-bottom: 2rem;
	}
}

.subtitle h2 {
	margin-bottom: 1.25rem;
	margin-left: 0rem;
	font-size: 1.8rem;
	letter-spacing: 0.125em;
}

@media (min-width: 48em) {
	.subtitle h2 {
		margin-bottom: 1.2rem;
		font-size: 2.8rem;
		letter-spacing: 0.05em;
		margin-left: 0rem;
	}
}

.subtitle p {
	margin-bottom: 0.75rem;
	color: #b7985b;
	font-size: 1rem;
	letter-spacing: 0.125em;
}

.underline {
	width: 80px;
	height: 3px;
	margin: auto;
	border-radius: 2px;
	background-color: #333;
	margin-bottom: 2rem;
}

/****************************** Heading End ******************************/


/****************************** Balloon ******************************/

.balloon-left {
	position: relative;
	display: inline-block;
	margin: 0em 0 1.5em 15px;
	padding: 10px 10px;
	min-width: 120px;
	max-width: 100%;
	color: #000064;
	font-size: 16px;
	background: #f8f4e6;
	border-radius: 15px;
	width: 100%;
}

.balloon-left:before {
	content: "";
	position: absolute;
	top: 50%;
	left: -30px;
	margin-top: -15px;
	border: 15px solid transparent;
	border-right: 15px solid #f8f4e6;
}

.balloon-left p {
	margin: 0;
	padding: 10px;
}

@media (max-width: 767px) {
	.balloon-left {
		font-size: 13px;
	}
	.balloon-left p {
		padding: 8px;
	}
}

.balloon-right {
	position: relative;
	display: inline-block;
	margin: 0em 15px 1.5em 0;
	padding: 10px 10px;
	min-width: 120px;
	max-width: 100%;
	color: #000064;
	font-size: 16px;
	background: #eaf4fc;
	border-radius: 15px;
}

.balloon-right:before {
	content: "";
	position: absolute;
	top: 50%;
	left: 100%;
	margin-top: -15px;
	border: 15px solid transparent;
	border-left: 15px solid #eaf4fc;
}

.balloon-right p {
	margin: 0;
	padding: 15px;
}

/****************************** Balloon End ******************************/


/****************************** Background ******************************/

.background-light {
	background-color: #f5f5f5 !important;
}

.background {
	background-color: #f9f9f9;
}

.background-1 {
	background-color: #ffffff;
}

.background-white {
	background-color: #ffffff;
}

.bg-base {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	height: 13vh;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media (min-width: 48em) {
	.bg-base {
		height: 15vh;
	}
}

.fixed-background {
	position: relative;
	background-attachment: scroll;
}

@media (min-width: 48em) {
	.fixed-background {
		background-attachment: fixed;
	}
}

/* アンカーリンク offset */
a.anchor {
	display: block;
	padding-top: 80px;
	margin-top: -80px;
}

/* PC/SP画像切り替え */
.pc {
	display: block !important;
}

.sp {
	display: none !important;
}

@media only screen and (max-width: 750px) {
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
}

/* SPのみ改行 */
@media screen and (min-width: 768px) {
	.sp_br {
		display: none;
	}
}

/****************************** Background End ******************************/


/****************************** Floating Menu (SP) ******************************/

#floatingmenu {
	display: none;
}

@media screen and (max-width: 767px) {
	#floatingmenu {
		display: block;
		width: 100%;
		position: fixed;
		left: 0px;
		bottom: 0px;
		z-index: 9999;
		text-align: center;
		padding: 0 auto;
	}

	#floatingmenu > a {
		display: block;
		width: 50%;
		height: auto;
		float: left;
	}

	#floatingmenu > a > img {
		vertical-align: bottom;
		width: 100%;
	}
}

/****************************** Floating Menu End ******************************/


/****************************** Footer ******************************/

footer {
	background-color: #d9d9e8 !important;
	color: #000064 !important;
}

footer .footer-button-area p {
	margin-bottom: 0.5rem;
	font-size: 1.4rem;
	letter-spacing: 0.125em;
}

footer .footer-link {
	background-color: #d9d9e8;
}

footer .footer-link .row {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 1rem;
	padding-bottom: 0.5rem;
	text-align: left;
}

@media (min-width: 48em) {
	footer .footer-link .row {
		padding-top: 1rem;
		padding-bottom: 0.5rem;
		text-align: left;
	}
}

footer .footer-link ul {
	font-size: 0;
	text-align: center;
}

footer .footer-link ul li {
	display: inline-block;
	line-height: 2;
}

footer .footer-link ul li a {
	padding: 0 1em;
	border-right: 1px solid #000064;
	color: #000064;
	font-size: 0.875rem;
	-webkit-transition-property: none;
	transition-property: none;
}

@media (any-hover: hover) {
	footer .footer-link ul li a:hover {
		text-decoration: underline;
	}
}

footer .footer-link ul li:last-child a {
	border-right: 0;
}

footer .copyright {
	padding: 0 1rem;
	color: #000064;
	font-size: 0.75rem;
	letter-spacing: 0.1em;
	text-align: center;
}

@media (min-width: 48em) {
	footer .copyright {
		font-size: 0.875rem;
	}
}

.color-white {
	color: #ffffff !important;
}

/****************************** Footer End ******************************/


/****************************** Page Top Button ******************************/

#pagetop {
	position: fixed;
	right: 5%;
	bottom: 5%;
	z-index: 1000;
}

#pagetop a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 35px;
	height: 35px;
	background-color: #000;
	border: 1px solid #fff;
	border-radius: 50%;
	color: #fff;
	font-size: 1.3rem;
}

@media (any-hover: hover) {
	#pagetop a:hover {
		background-color: #333;
	}
}

/****************************** Page Top Button End ******************************/


/****************************** HR ******************************/

hr {
	border: none;
	background-color: #2ca9e1;
	height: 4px;
	width: 13%;
	text-align: left;
	margin-left: 0;
}

/****************************** Print ******************************/

@media print {
	nav {
		position: relative !important;
	}
}
