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


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

html {
	font-size: 14px;
}

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

body {
	position: relative;
	margin: auto;
	margin-top: 50px;
	/*- navを[position :fixed;]にした場合には[margin-top :(navの高さ)px;]を設定 -*/
	background-color: #fff;
	color: #333;
	font-family: -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;
	/*- 高さが足りないページでも常時スクロールバーを表示(デザイン崩れ防止) -*/
}

@media (min-width: 48em) {
	body {
		margin-top: 100px;
	}
}
body:not(.iframe_item) {
   display: none;
}

main {
	display: block;
	/*- IE対策(display: block;を全ブラウザで共通化) -*/
	min-height: calc(105vh - 380px);
	/*- コンテンツの高さがないページでもフッターを最下部に配置 -*/
	/*- マイナス値 = bodyのmargin-top値 + ヘッダーheight値 + フッターheight値 -*/
}

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

a {
	color: #333;
}

a:hover {
	color: #333;
	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;
}

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: 1.5rem 0;
}

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

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

p {
    margin-top: 0;
	line-height: 28px;
}
.h2, h2 {
    font-size: 1.3rem;
	letter-spacing: 0.05em;
	font-weight: 600;
}
.h4, h4 {
    font-size: 1.15rem;
}
.h5, h5 {
    font-size: 1.15rem;
}

.table td, .table th {
	line-height: 28px;
    /* padding: 0.75rem; */
    /* vertical-align: top; */
    /* border-top: 1px solid #dee2e6; */
}
/****************************** Common End ******************************/


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

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

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

/*- flex-item(特にSwiper)突き抜け対策 -*/
.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.35em;
	padding-bottom: 0.35em;
	border-radius: 0;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	width: 160px;
	
}

.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 {
	position: relative;
	margin-bottom: 1rem;
	background-color: transparent;
	border: 0;
	border-radius: 2;
}

.card-img-top {
	border-radius: 0;
}

.card-body {
	padding-right: 0;
	padding-left: 0;
	text-align: center;
}

.card-title {
	margin: 0;
	font-size: 1.375rem;
	line-height: 30px;
}

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


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

nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	background-color: #fff;
}

nav .container-fluid {
	padding: 0;
}

@media (min-width: 48em) {
	nav .container-fluid {
		padding-right: 15px;
		padding-left: 15px;
	}
}

/*- ロゴのスタイル -*/
nav .nav-menu-row a.navbar-logo {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	color: #333;
	line-height: normal;
}

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

nav .nav-menu-row a.navbar-logo img {
	width: auto;
	height: 40px;
	padding-left: 15px;

}

@media (min-width: 48em) {
	nav .nav-menu-row a.navbar-logo img {
		height: 110px;
		padding-left: 32px;

	}
}



/* @media (min-width: 48em) {
	nav:not(.clone-nav) .nav-menu-row a.navbar-logo img {
		display: none;
	}

	nav .nav-menu-row a.navbar-logo img,
	nav.clone-nav .nav-menu-row a.navbar-logo img {
		height: 55px;
		padding-left: 20px;
	}
} */

/*===== StellarNav.js(PC) StellarNav.jsを使用する場合は[:hover]のメディアクエリ必要なし =====*/

@media (min-width: 48em) {

	nav .nav-menu-row > div.container-fluid,
	.stellarnav,
	.stellarnav ul,
	.stellarnav ul li {
		position: static;
	}
}

/*- メニューの横方向ポジショニング(position:relative; の指定は要削除) -*/
.stellarnav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	z-index: 1000;
}

/*- メニュー(1階層目)のスタイル -*/
.stellarnav.desktop ul li a {
	padding: 50px 15px !important;
	color: #333;
	font-size: 1rem;
	line-height: 20px;
	font-weight: bold;
}

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

/*
.stellarnav.desktop li.has-sub a {
	padding-right: 12px;
}
*/

/*- メニュー(1階層目)ドロップダウン矢印のスタイル -*/
.stellarnav.desktop li.has-sub > a::after {
	display: inline-block;
	position: static;
	margin-right: -10px;
	margin-left: 6px;
	border: 0 !important;
	color: #333;
	font-size: 0.875rem;
	font-weight: 600;
	font-family: "fa-select";
	content: '\f078' !important;
}

@media (any-hover: hover) {
	.stellarnav.desktop li.has-sub > a:hover::after {
		color: #777;
	}
}

/*- ドロップダウンメニュー(2階層目)のスタイル -*/
.stellarnav ul ul {
	top: auto;
	left: 0;
	width: 100%;
	background-color: #e7e7eb;
}

.stellarnav.desktop .drop-menu {
	max-width: 540px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 2rem;
}

.stellarnav.desktop .drop-menu p {
	padding-top: 1rem;
	border-bottom: 1px solid #333;
}

.stellarnav.desktop .drop-menu a {
	padding: 10px !important;
}

/*===== StellarNav.js(モバイル ~768px) =====*/

/*- メニュー(1階層目)のスタイル -*/
.stellarnav.mobile ul {
	background-color: #bee0ce;
}

.stellarnav.mobile ul li a:not(.dd-toggle) {
	padding: 12px;

	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
	color: #333;
	font-size: 0.9rem;
	font-weight: normal;
	line-height: 20px;
	-webkit-transition-property: none;
	transition-property: none;

}

/*- メニュー(2階層目)のスタイル -*/
.stellarnav.mobile ul ul {
	background-color: #bee0ce;
}

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

/*- MENUトグルボタンのスタイル -*/
.stellarnav.mobile a.menu-toggle {
	color: #333;
	font-size: 12px;
	line-height: 20px;
}

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

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

/*- StellarNav.js position:'left'or'right'時のボタンエリアスタイル -*/
.stellarnav.mobile.left,
.stellarnav.mobile.right {
	text-align: right;
}

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

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

.stellarnav.mobile.left a.call-btn-mobile,
.stellarnav.mobile.right a.call-btn-mobile,
.stellarnav.mobile.left a.location-btn-mobile,
.stellarnav.mobile.right a.location-btn-mobile {
	border-right: 1px solid rgba(0, 0, 0, 0.15);
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
	color: #000;
	font-size: 1.0rem;
	line-height: 20px;
}

.stellarnav.mobile.left svg,
.stellarnav.mobile.right svg {
	top: 0;
}

.stellarnav.mobile.left a.close-menu,
.stellarnav.mobile.right a.close-menu {
	border-bottom: 1px solid rgba(0, 0, 0, 0.15);
	color: #000;
	font-size: 0.875rem;
	font-weight: normal;
	line-height: 20px;
	vertical-align: bottom;

}

/*- CLOSEトグルボタンのスタイル -*/
.stellarnav.mobile a.close-menu .icon-close::before,
.stellarnav.mobile a.close-menu .icon-close::after {
	border-bottom: 2px solid #000;
}

/*- CLOSEボタン非表示 -*/
.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 #333;
}

/*===== StellarNav.js(カスタムボタン等) =====*/

/*- メニュー内ボタンのスタイル -*/
.stellarnav .nav-button-area {
	text-align: center;
}

.stellarnav .nav-button-area a.contact-btn {
	margin-top: 2rem;
	padding: 0.4em 0.4em;
	background-color: #e17b34;
	border-radius: 30px;
	color: #fff;
	font-size: 1.0rem;
	font-weight: bold;
}

@media (min-width: 48em) {
	.stellarnav .nav-button-area a.contact-btn {
		margin-top: 0;
		margin-left: 2rem;
		background-color: #e17b34;
	color: #fff;
		margin-left: 2rem;


	}
}

@media (any-hover: hover) {
	.stellarnav .nav-button-area a.contact-btn:hover {
		background-color: #d66a35;

		color: #fff;
	}
}

/*- iOS Safari[position:fixed;] バグフィックス -*/
@media (max-width : 768px) {
	.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;
	font-size: 1.5rem;
	letter-spacing: 0.08em;
}

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

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

/*- 見出しのアイコン表示 -*/
/*
.subtitle h2::before {
	padding-right: 0.25em;
	color: #99cc00;
	font-weight: 900;
	font-family: "fa-select";
	content: '\f0c6';
}
*/

/*- アンダーラインのスタイル -*/
.underline {
	width: 80px;
	height: 3px;
	margin: auto;
	border-radius: 2px;
	background-color: #e17b34;
	margin-bottom: 3rem;

}

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


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

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

.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;
		/*- PC時の背景の高さ -*/
	}
}

.bg-inner .page-banner-title {
	margin: 0;
	padding-left: 1em;
	color: #000;
	font-size: 1.35rem;
}

@media (min-width: 48em) {
	.bg-inner .page-banner-title {
		/*		margin-top: 60px;*/
		/*- navの透過部分の高さをプラスして表示位置調整 -*/
	}
}

/*- パララックス効果 -*/
.fixed-background {
	position: relative;
	background-attachment: scroll;
}

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

/*--------------------------------------------------------------
# link
--------------------------------------------------------------*/
a.anchor {
	display: block;
	padding-top: 120px;
	margin-top: -120px;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
	display: block !important;
}

.sp {
	display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
	.pc {
		display: none !important;
	}

	.sp {
		display: block !important;
	}
}


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

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


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

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

footer .footer-button-area .btn-transparent {
	width: 220px;
	background-color: transparent;
	border-color: #aaa;
	color: #333;
	font-size: 1.15rem;
}

@media (any-hover: hover) {
	footer .footer-button-area .btn-transparent:hover {
		background-color: #000;
		border-color: #000;
		color: #fff;
	}
}

footer .footer-button-area .btn-transparent i {
	margin-right: 0.25em;
	font-size: 1.4rem;
	vertical-align: middle;
}

footer .footer-slide {
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #b4f0dc;
}

footer .footer-slide .swiper-container {
	height: 150px;
}

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

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

@media (min-width: 48em) {
	footer .footer-link .row {
		padding-top: 1rem;
		padding-bottom: 1rem;
		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 #fff;
	color: #fff;
	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 .footer-link .underline {
	width: 90%;
	height: 1px;
	margin: auto;
	border-radius: 2px;
	background-color: #fff;
}

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

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

/*- ページトップボタン -*/
#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;
	}
}

/****************************** Footer End ******************************/
hr {
  border: none;
  background-color: #e17b34;
  height: 4px;
  width: 10%;
 text-align: left;
}

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

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

/****************************** Print End ******************************/
