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


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

body {
	position: relative;
	margin: auto;
	margin-top: 0px;
	/*- 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 screen and (min-width: 48em) {
	body {
		margin-top: 0px;
		/*- nav .nav-text-row > div の高さ分のみを設定してスライダー上部をnavに潜り込ませる -*/
	}
}

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

@media screen and (min-width: 48em) {
	main {
		min-height: calc(100vh - 850px);
		margin-bottom: 0rem;
	}
}

a {
	color: #333;
}

a:hover {
	text-decoration: none;
}

@media screen and (min-width: 48em) {
	a:hover {
		color: red;
	}
}

@media screen and (min-width: 48em) {
	a {
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
}

/*- aタグのエフェクト無効化 -*/
/*
a {
	-webkit-transition-property: none;
	transition-property: none;
}
*/

img {
	max-width: 100%;
	/*- 解除はmax-width:initial; -*/
	height: auto;
}

@media screen and (min-width: 48em) {
	img {
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}
}

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


p {
	color: #333;
	margin-top: 0;
	margin-bottom: 0.3rem;
}

small {
	color: #333;
	margin-top: 0;
	margin-bottom: 0.0rem;
	font-size: 0.9rem;
}


h1,
h2,
h3,
h4,
h5,
h6 {
	color: #333;
}


h1 {
	letter-spacing: 0rem;
	font-size: 1.2rem;
	font-weight: 600;
	/*	font-family: HGS明朝E, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", メイリオ, Meiryo, serif;*/
	-webkit-text-shadow: 0.7px 0.7px 10px rgba(0, 0, 0, 0.8);
	text-shadow: 0.7px 0.7px 10px rgba(0, 0, 0, 0.8);

}


@media screen and (min-width: 48em) {
	h1 {
		letter-spacing: 0rem;
		font-size: 1.6rem;
		font-weight: 600;
		/*		font-family: HGS明朝E, 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", メイリオ, Meiryo, serif;*/

	}
}

h2 {

	font-size: 1.8rem;
	letter-spacing: 0.1rem;



}

h3 {
	font-size: 1.4rem;
	letter-spacing: 0.1rem;
}

h4 {
	font-size: 1.1rem;
	letter-spacing: 0.05rem;
}

h5 {
	letter-spacing: 0.05rem;
}




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


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

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

/*- 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 {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

/*- ボタンhover時のテキスト色を変更しない -*/
.btn:hover {
	color: inherit;
}

/*- パンくずリストのスタイル -*/
.breadcrumb {
	margin: 0;
	background-color: transparent;
	border-radius: 0;
}

/*- パンくずリストのフォントサイズとエフェクト -*/
.breadcrumb-item {
	font-size: 0.875rem;
}

/*- パンくずリストの矢印スタイル -*/
.breadcrumb-item + .breadcrumb-item::before {
	font-weight: 600;
	font-family: "Font Awesome 5 Free";
	content: "\f0da" !important;
}

/*- カードのスタイル -*/
.card {
	margin-bottom: 1rem;
}

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


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

nav {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	min-height: 60px;
	background-color: #fff;
	-webkit-box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.2);
	box-shadow: 0 0.125rem 0.625rem rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 48em) {
	nav {
		background-color: rgba(255, 255, 255, 1.0);
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;


	}

	nav.nav-initial,
	nav.nav-onmouse {
		background-color: #fff;
	}
}

nav .container-fluid {
	max-width: 1140px;
	padding: 0;
}

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

nav .nav-text-row {
	background-color: #1e50a2;
}

nav .nav-text-row > div {
	height: 25px;
}

nav .nav-text-row a {
	padding: 0.35em 0.8em 0.35em 1em;
	color: #fff;
	font-size: 0.75rem;
	-webkit-transition-property: none;
	transition-property: none;
}

@media screen and (min-width: 48em) {
	nav .nav-text-row a:hover {
		color: #59b9c6;
	}
}

/*- ロゴのスタイル -*/
.navbar-logo {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
}

@media screen and (min-width: 48em) {
	.navbar-logo:hover {
		color: inherit;
	}
}

.navbar-logo img {
	width: auto;
	height: 33px;
	padding-left: 15px;
	margin-top: 0.3rem;
}

@media screen and (min-width: 48em) {
	.navbar-logo img {

		height: 45px;
		padding-left: 0;
	}
}

.navbar-logo span {
	padding-left: 15px;
	font-size: 24px;
}

@media screen and (min-width: 48em) {
	.navbar-logo span {
		padding-left: 0;
		font-size: 28px;
	}
}

/*- ナビゲーションバー内ボタンのスタイル -*/
.navbar-btn {
	-webkit-box-flex: 0;
	-ms-flex: none;
	flex: none;
	margin-left: 15px;
	padding: 6px 30px;
	background-color: #fff;
	border: 1px solid rgba(52, 113, 140, 0.3);
	border-radius: 6px;
	-webkit-box-shadow: 0.5px 0.5px 10px rgba(0, 0, 0, 0.3);
	box-shadow: 0.5px 0.5px 10px rgba(0, 0, 0, 0.3);
	color: #192f60;
	font-size: 16px;
	font-weight: 600;
}

@media all and (any-hover: hover) {
	.navbar-btn:hover {
		background-color: #34718c;
		-webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
		box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
		color: #fff;
	}

	.navbar-btn:active {
		background-color: #34718c;
		-webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.5), inset -1px -1px 3px rgba(255, 255, 255, 0.5);
		box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.5), inset -1px -1px 3px rgba(255, 255, 255, 0.5);
		color: #fff;
	}
}

/*===== StellarNav.js(Dropdown/image) =====*/

@media screen and (min-width: 48em) {

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

/*- ナビゲーションメニューの横方向ポジショニング -*/
.stellarnav ul {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	z-index: 1000;

}

/*- ナビゲーションメニュー(1階層目)のスタイル -*/
.stellarnav ul li a {
	padding: 42px 12px;
	color: #555;
	font-size: 15px;
	font-weight: 600;
	line-height: 21px;
	-webkit-transition: background 0.5s ease-out;
	transition: background 0.5s ease-out;
}

.stellarnav:not(.mobile) ul li a:hover {
	background-color: #fff;
	color: #192f60;
}

/*- .nav-initial .nav-onmouse使用時の文字色およびhover効果 -*/
/*
nav.nav-initial .stellarnav:not(.mobile) ul li a,
nav.nav-onmouse .stellarnav:not(.mobile) ul li a {
	color: orange;
}

nav.nav-initial .stellarnav:not(.mobile) ul li a:hover,
nav.nav-onmouse .stellarnav:not(.mobile) ul li a:hover {
	color: orangered;
}
*/

/*- ナビゲーションメニュー(1階層目)ドロップダウン矢印のスタイル -*/
.stellarnav li.has-sub > a:after {
	border-top-color: #777;
}

/*- サブメニュー(2階層目以降)のスタイル -*/
.stellarnav ul ul {
	top: auto;
	left: 0;
	width: 100%;
	background-color: #efefef;
}

/*
.stellarnav .container-fluid {
	margin-bottom: 2rem;
}
*/

.stellarnav .nav-card {
	margin: 2rem 1rem 0;
	background-color: transparent;
	border: 0;
	border-radius: 0;
}

.stellarnav .nav-card .card-img-wrapper {
	/*- サブメニュー画像サイズの高さ指定 -*/
	height: 100px;
}

.stellarnav .nav-card .card-img-wrapper img {
	width: 100%;
	height: 100%;
	-o-object-fit: cover;
	object-fit: cover;
}

.stellarnav .nav-card.card_menu-title {
	-ms-flex-negative: 0;
	flex-shrink: 0;
	width: 25%;
	margin-right: 3rem;
}

.stellarnav .nav-card.card_menu-title .card-body {
	background-color: transparent;
}

.stellarnav .nav-card.card_menu-title .card-body h4 {
	color: #192f60;
}

.stellarnav .nav-card.card_menu-title .card-body p {
	color: #192f60;
	font-size: 13px;
}

.stellarnav .nav-card .card-body {
	padding: 10px;
	background-color: ;
}

.stellarnav .nav-card .card-body a {
	padding: 0;
	padding-bottom: 5px;
	color: #555;
	font-size: 13px;
	font-weight: normal;
}

.stellarnav .nav-card .card-body a:hover {
	background-color: transparent;
	color: #192f60;
}

.stellarnav .nav-card .card-body p {
	font-size: 12px;
	color: #555;
}

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

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

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

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

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

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

.stellarnav.mobile ul ul ul li a:not(.dd-toggle) {
	padding: 15px 35px;
	font-size: 12px;
}

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

.stellarnav.mobile ul ul ul ul li a:not(.dd-toggle) {
	padding: 15px 45px;
	font-size: 10px;
}

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

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

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

/*- StellarNav.js position:'static'or'top'時のボタンエリアスタイル -*/
.stellarnav.mobile .call-btn-mobile,
.stellarnav.mobile .location-btn-mobile,
.stellarnav.mobile.top .call-btn-mobile,
.stellarnav.mobile.top .location-btn-mobile {
	color: #333;
	font-size: 14px;
	font-weight: normal;
	line-height: 20px;
}

.stellarnav.mobile svg,
.stellarnav.mobile.top svg {
	top: -2px;
}

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

.stellarnav.mobile.left .call-btn-mobile,
.stellarnav.mobile.left .location-btn-mobile,
.stellarnav.mobile.right .call-btn-mobile,
.stellarnav.mobile.right .location-btn-mobile {
	border-right: 1px solid rgba(255, 255, 255, 0.15);
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 20px;
}

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

/*- CLOSEボタンのスタイル -*/
.stellarnav.mobile .close-menu {
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	font-size: 14px;
	font-weight: normal;
	line-height: 20px;
}

.stellarnav.mobile .icon-close::before,
.stellarnav.mobile .icon-close::after {
	border-bottom: 2px solid #fff;
}

/*- ドロップダウンボタンのスタイル -*/
.stellarnav.mobile .dd-toggle {
	width: 50px;
	height: 50px;
}

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

/*- SNSリンクのスタイル -*/
.stellarnav.mobile .nav-sns-link {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 1rem;
}

.stellarnav.mobile .nav-sns-link a {
	padding: 0.5em;
	color: #777;
	font-size: 2rem;
}

.stellarnav.mobile .nav-sns-link .fb-link:active {
	color: #3C5A99;
}

.stellarnav.mobile .nav-sns-link .tw-link:active {
	color: #1DA1F2;
}

.stellarnav.mobile .nav-sns-link .ig-link:active {
	color: #D93177;
}

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


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

.section {
	margin-bottom: 2.5rem;
	padding: 0.5em 0.5em 0.25em;
	text-align: center;
}

.section h2 {
	font-size: 2rem;
}

.section[data-emergence=hidden] {
	opacity: 0;
}

.section[data-emergence=visible] {
	-webkit-animation: slideFadeIn-bottom-fast 0.5s;
	animation: slideFadeIn-bottom-fast 0.5s;
}

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


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

.bg-base {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: relative;
	min-height: 15vh;
	/*- モバイル時の背景の高さ -*/
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

@media screen and (min-width: 48em) {
	.bg-base {
		height: 18vh;
		/*- PC時の背景の高さ -*/
	}
}

.bg-inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.bg-inner .page-banner-title {
	margin: 0;
	color: #fff;
	font-size: 1.1rem;
	font-weight: 600;
}

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

.bg-inner .page-banner-title[data-emergence=hidden] {
	opacity: 0;
}

.bg-inner .page-banner-title[data-emergence=visible] {
	-webkit-animation: slideFadeIn-bottom-fast 1s;
	animation: slideFadeIn-bottom-fast 1s;
}

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


/****************************** Utility ******************************/

/*- オーバーレイ -*/
.overlay {
	position: relative;
}

.overlay::before {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: rgba(0, 0, 0, 0.3);
	content: "";
}

/*- テキスト等を挿入する場合の::after -*/
/*
.overlay::after {
	position: absolute;
	content: "";
}
*/

/*- オーバーレイのhoverエフェクト -*/
/*
.overlay:hover::before,
.overlay:hover::after {
}
*/

/*- Card hoverエフェクト用ラッパー -*/
.card-img-wrapper {
	position: relative;
	overflow: hidden;
}

.card-img-wrapper img {
	display: block;
	margin: auto;
}

/*- Card内画像のオーバーレイ(オーバーレイとテキストの非表示) -*/
.card-img-wrapper.overlay::before {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 0;
}

.card-img-wrapper.overlay span {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 1;
	padding: 0.5em 1em;
	border: 2px solid #fff;
	color: #fff;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 0;
}

/*- Card hoverエフェクト -*/
@media screen and (min-width: 48em) {

	/*- Card内画像のオーバーレイ(表示) -*/
	.card:hover .card-img-wrapper.overlay::before,
	.card:hover .card-img-wrapper.overlay span {
		opacity: 1;
	}

	/*- Card内画像をズーム -*/
	.card:hover .card-img-wrapper.scale-up img {
		-webkit-transform: scale(1.1);
		transform: scale(1.1);
	}

	/*- Card内画像をぼかす -*/
	.card:hover .card-img-wrapper.blur img {
		-webkit-filter: blur(3px);
		filter: blur(3px);
	}

	/*- Card内画像をグレースケールに -*/
	.card:hover .card-img-wrapper.grayscale img {
		-webkit-filter: grayscale(100%);
		filter: grayscale(100%);
	}

	/*- Cardを浮き上がらせる -*/
	.card.float-up {
		-webkit-box-shadow: 6px 6px 12px rgba(52, 113, 140, 0.4);
		box-shadow: 6px 6px 12px rgba(52, 113, 140, 0.4);
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}

	.card.float-up:hover {
		-webkit-box-shadow: 10px 10px 20px rgba(52, 113, 140, 0.3);
		box-shadow: 10px 10px 20px rgba(52, 113, 140, 0.3);
		-webkit-transform: translateY(-2px);
		transform: translateY(-2px);
	}
}

/****************************** Utility End ******************************/


/****************************** Content ******************************/

.googlemaps {
	margin-bottom: 1rem;
}

/*- YouTubeリンクの画像代替およびポップアップ -*/
.youtube {
	margin-bottom: 1rem;
}

.youtube-popup {
	color: rgba(255, 255, 255, 0.5);
}

.youtube-thumbnail {
	position: relative;
}

.youtube-thumbnail img {
	width: 100%;
}

.youtube-thumbnail.overlay::before {
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
	opacity: 0;
}

.youtube-thumbnail::after {
	position: absolute;
	top: 50%;
	left: 50%;
	font-size: 4rem;
	font-weight: 400;
	font-family: "Font Awesome 5 Brands";
	content: "\f167";
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.youtube-popup:hover {
	color: rgba(255, 255, 255, 0.5);
	-webkit-transition-property: none;
	transition-property: none;
}

@media screen and (min-width: 48em) {
	.youtube-popup:hover {
		color: #fff;
		-webkit-transition: all 0.3s ease;
		transition: all 0.3s ease;
	}

	.youtube-popup:hover .youtube-thumbnail.overlay::before {
		opacity: 1;
	}
}

/****************************** Content End ******************************/


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

footer {
	/*	margin-top: 1rem;*/
	background-color: #f5f5f5;
}

@media screen and (min-width: 48em) {
	footer {
		margin-top: 3rem;
	}
}

.footer-btn {
	padding: 12px 32px;
	background-color: #fff;
	border-radius: 6px;
	-webkit-box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.75);
	box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.75);
	color: #192f60;
	font-size: 18px;
	font-weight: 600;
}

@media all and (any-hover: hover) {
	.footer-btn:hover {
		background-color: #34718c;
		border: 1px solid rgba(255, 255, 255, 0.3);
		-webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
		box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
		color: #fff;
	}

	.footer-btn:active {
		background-color: #34718c;
		-webkit-box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.5), inset -1px -1px 3px rgba(255, 255, 255, 0.5);
		box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.5), inset -1px -1px 3px rgba(255, 255, 255, 0.5);
		color: #fff;
	}
}

/*- footer リンクエリアのスタイル -*/
.footer-link .row {
	padding-top: 2rem;
	padding-bottom: 2rem;
	text-align: center;
}

@media screen and (min-width: 48em) {
	.footer-link .row {
		text-align: left;
	}
}

.footer-link .footer-logo-cell {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: 100%;
}

.footer-logo-cell img {
	width: 100%;
	margin: auto;
	padding: 0rem;
}

.footer-logo-cell span {
	margin: auto;
	font-size: 2rem;
	line-height: 2;
}

.footer-logo-cell .sns-link {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding-left: 0;
	text-align: center;
}

.footer-logo-cell .sns-link li {
	display: inline-block;
	padding: 0 0.75em;
}

.footer-logo-cell .sns-link li a {
	color: #777;
	font-size: 2rem;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}

@media screen and (min-width: 48em) {
	.footer-logo-cell .sns-link .fb-link:hover {
		color: #3C5A99;
	}

	.footer-logo-cell .sns-link .tw-link:hover {
		color: #1DA1F2;
	}

	.footer-logo-cell .sns-link .ig-link:hover {
		color: #D93177;
	}
}

.footer-link a {
	font-size: 0.75rem;
	font-weight: 500;
	-webkit-transition-property: none;
	transition-property: none;
}

.footer-link ul {
	margin-bottom: 0;
	padding-left: 0.0em;
}

.footer-link li {
	display: none;
	list-style: none;
}

@media screen and (min-width: 48em) {
	.footer-link li {
		display: block;
	}
}

.footer-link li a {
	font-size: 0.7rem;
	font-weight: normal;
}

/*- footer コピーライト表示 -*/
footer .copyright {
	margin-bottom: 0;
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #192f60;
	color: #fff;
	font-size: 10px;
	letter-spacing: 0.1em;
	text-align: center;
}

/*- ページトップボタン -*/
#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: 50px;
	height: 50px;
	background-color: rgba(52, 113, 140, 0.7);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 50%;
	-webkit-box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3);
	box-shadow: 6px 6px 12px rgba(0, 0, 0, 0.3);
	color: #fff;
	font-size: 24px;
}

@media screen and (min-width: 48em) {
	#pagetop a:hover {
		background-color: #34718c;
		-webkit-box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
		box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
	}
}

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


/****************************** Animation ******************************/

@-webkit-keyframes fadeIn {

	0%,
	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes fadeIn {

	0%,
	50% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@-webkit-keyframes slideFadeIn-left {

	0%,
	25% {
		-webkit-transform: translateX(-50px);
		transform: translateX(-50px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
		opacity: 1;
	}
}

@keyframes slideFadeIn-left {

	0%,
	25% {
		-webkit-transform: translateX(-50px);
		transform: translateX(-50px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
		opacity: 1;
	}
}

@-webkit-keyframes slideFadeIn-right {

	0%,
	25% {
		-webkit-transform: translateX(50px);
		transform: translateX(50px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
		opacity: 1;
	}
}

@keyframes slideFadeIn-right {

	0%,
	25% {
		-webkit-transform: translateX(50px);
		transform: translateX(50px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateX(0px);
		transform: translateX(0px);
		opacity: 1;
	}
}

@-webkit-keyframes slideFadeIn-top {

	0%,
	50% {
		-webkit-transform: translateY(-50px);
		transform: translateY(-50px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
		opacity: 1;
	}
}

@keyframes slideFadeIn-top {

	0%,
	50% {
		-webkit-transform: translateY(-50px);
		transform: translateY(-50px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
		opacity: 1;
	}
}

@-webkit-keyframes slideFadeIn-bottom {

	0%,
	50% {
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
		opacity: 1;
	}
}

@keyframes slideFadeIn-bottom {

	0%,
	50% {
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
		opacity: 1;
	}
}

@-webkit-keyframes slideFadeIn-bottom-fast {

	0% {
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
		opacity: 1;
	}
}

@keyframes slideFadeIn-bottom-fast {

	0% {
		-webkit-transform: translateY(50px);
		transform: translateY(50px);
		opacity: 0;
	}

	100% {
		-webkit-transform: translateY(0px);
		transform: translateY(0px);
		opacity: 1;
	}
}

@-webkit-keyframes bounceInRight {

	0%,
	60%,
	75%,
	90%,
	100% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0);
	}

	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}

	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0);
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@keyframes bounceInRight {

	0%,
	60%,
	75%,
	90%,
	100% {
		-webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
		animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
	}

	0% {
		opacity: 0;
		-webkit-transform: translate3d(3000px, 0, 0);
		transform: translate3d(3000px, 0, 0);
	}

	60% {
		opacity: 1;
		-webkit-transform: translate3d(-25px, 0, 0);
		transform: translate3d(-25px, 0, 0);
	}

	75% {
		-webkit-transform: translate3d(10px, 0, 0);
		transform: translate3d(10px, 0, 0);
	}

	90% {
		-webkit-transform: translate3d(-5px, 0, 0);
		transform: translate3d(-5px, 0, 0);
	}

	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
	}
}

@-webkit-keyframes flipInX {

	0% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}

	100% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

@keyframes flipInX {

	0% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
		opacity: 0;
	}

	40% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
		-webkit-animation-timing-function: ease-in;
		animation-timing-function: ease-in;
	}

	60% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
		opacity: 1;
	}

	80% {
		-webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
		transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
	}

	100% {
		-webkit-transform: perspective(400px);
		transform: perspective(400px);
	}
}

/****************************** Animation End ******************************/


/****************************** banner ******************************/

.banner {
	background-color: #192f60;
}

.banner .container {
	margin-top: 0rem;
	margin-bottom: 0rem;
	padding-top: 3%;
	padding-bottom: 3%;
}

@media screen and (min-width: 48em) {
	.banner a:hover {
		opacity: 0.7;
	}
}

.banner img {
	width: 100%;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

@media screen and (min-width: 48em) {
	.banner img {
		padding: 0;
	}
}

.banner a.gmap_link {
	display: block;
	color: #fff;
	font-size: 0.875em;
}

@media screen and (min-width: 48em) {
	.banner a.gmap_link {
		margin-top: 1rem;
	}

	.banner a.gmap_link:hover {
		color: #fff;
		text-decoration: underline;
		opacity: 1;
	}
}

.banner1 {
	background-color: #4753a2;
}

.banner1 .container {
	margin-top: 0rem;
	margin-bottom: 0rem;
	padding-top: 2%;
	padding-bottom: 2%;
}

@media screen and (min-width: 48em) {
	.banner1 a:hover {
		opacity: 0.7;
	}
}

.banner1 img {
	width: 100%;
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
}

@media screen and (min-width: 48em) {
	.banner1 img {
		padding: 0;
	}
}

/* GoogleMap サイズ */
.g-map {
	max-width: 400px;
	margin: auto;
}

#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
	}
}


/*--------------------------------------------------------------
# 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;
	}
}

--------------------------------------------------------------*/

/*テーブル全体の設定*/
table.table {
	width: 100%;
	border: 1px solid #006983;
	border-collapse: collapse;
	border-spacing: 0;
	background-color: #ffffff;
	empty-cells: show;
	vertical-align: top;
	margin-bottom: 10px;
	margin-top: 6px;
}

.table th {
	color: #fff;
	font-size: 13px;
	/* 11px相当 */
	font-style: normal;
	background-position: left top;
	padding: 0.5em;
	text-align: justify;
}

.table td {
	font-size: 13px;
	line-height: 19px;
	padding: 0.6em;
}


/*------------------------------
caption
------------------------------*/
.lp_cap_bg {
	background: #ff9914;
}

.lp_cap_bg h2 {
	color: #fff;
	text-align: center;
	font-size: 1.6rem;
	padding: 60px 20px;
}

.subCap {
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
	position: relative;
	display: block;
	margin-bottom: 35px;
}

.subCap::before {
	content: '';
	position: absolute;
	bottom: -10px;
	display: inline-block;
	width: 80px;
	height: 3px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	background-color: #c1413c;
}

@media (max-width: 768px) {
	.lp_cap_bg h2 {
		font-size: 1.4rem;
		padding: 20px 15px;
	}

	.subCap,
	.subCap02 {
		font-size: 2.4rem;
		margin-bottom: 40px;
	}

	.subCap::before,
	.subCap02::before {
		content: '';
		position: absolute;
		bottom: -15px;
		width: 50px;
		height: 3px;
	}
}

@media (max-width: 414px) {
	.lp_cap_bg h2 {
		font-size: 1.5rem;
		padding: 15px;
	}

	.subCap,
	.subCap02 {
		font-size: 1.5rem;
		margin-bottom: 40px;
	}
}


/* ------------------------------------------------------------
balloon
------------------------------------------------------------ */
.balloon {
	position: relative;
	background: #00a1e9;
}

.balloon::after {
	content: "";
	position: absolute;
	right: 0;
	bottom: -36px;
	left: 0;
	width: 0px;
	height: 0px;
	margin: auto;
	border-style: solid;
	border-color: #00a1e9 transparent transparent transparent;
	border-width: 36px 46px 0 46px;
}

@media (max-width: 768px) {
	.balloon::after {
		content: "";
		position: absolute;
		right: 0;
		bottom: -25px;
		border-width: 25px 30px 0 30px;
	}
}

@media (max-width: 414px) {
	.balloon::after {
		bottom: -20px;
		border-width: 20px 25px 0 25px;
	}
}

/* パソコンで見たときは"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;
	}
}


/****************************** Content ******************************/

/*- カードイメージのラウンド化(class="rounded-circle")スタイル -*/
.card-img-wrapper {
	position: relative;
	overflow: hidden;
}

.card-img-wrapper img {
	display: block;
	max-width: 100%;
	margin: auto;
}

.round-card .card {
	border: 0;
	border-radius: 0;
}

.round-card .card .card-img-wrapper {
	width: 50%;
	margin: auto;
	margin-top: -15%;
	border: 3px solid #fff;
}

/*- カードの背景はみ出し -*/
.round-card .stick_out {
	margin-top: -5rem;
	/*- 上部はみ出し量 -*/
	margin-bottom: calc(5rem + 25%);
}

@media screen and (min-width: 48em) {
	.round-card .stick_out {
		margin-bottom: 3rem;
	}
}

/*- カードの重ねと背景はみ出し -*/
.stack-card .image-card {
	margin-top: -10rem;
	/*- 上部はみ出し量 -*/
	margin-bottom: 0;
	/*- SP表示時のカード間隔詰め -*/
}

@media screen and (min-width: 48em) {
	.stack-card .image-card {
		margin-top: -5rem;
		/*- 上部はみ出し量 -*/
		margin-right: -3rem;
		/*- 右部はみ出し量 -*/
		margin-bottom: 3rem;
	}

	.stack-card .text-card {
		margin-top: -2rem;
		/*- 上部はみ出し量 -*/
		margin-bottom: 3rem;
	}
}

.stack-card .text-card .card-body {
	padding: 3rem;
}

.stack-card .image-card,
.stack-card .image-card .card-img,
.stack-card .text-card {
	border: 0;
	border-radius: 0;
}

/****************************** Content End ******************************/


/*--------------------------------------------------------------
# Venue Section
--------------------------------------------------------------*/
#venue {
	padding: 60px 0;
}

#venue .container-fluid {
	margin-bottom: 3px;
}

#venue .venue-map iframe {
	width: 100%;
	height: 100%;
	min-height: 300px;
}

#venue .venue-info {
	background: url("../img/venue-info-bg.jpg") top center no-repeat;
	background-size: cover;
	position: relative;
	padding-top: 60px;
	padding-bottom: 60px;
}

#venue .venue-info:before {
	content: "";
	background: rgba(13, 20, 41, 0.8);
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

#venue .venue-info h3 {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
}

#venue .venue-info p {
	color: #fff;
	margin-bottom: 0;
}

#venue .venue-gallery-container {
	padding-right: 12px;
}

#venue .venue-gallery {
	overflow: hidden;
	border-right: 3px solid #fff;
	border-bottom: 3px solid #fff;
}

#venue .venue-gallery img {
	-webkit-transition: all ease-in-out 0.4s;
	transition: all ease-in-out 0.4s;
}

#venue .venue-gallery:hover img {
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/
#gallery {
	padding: 60px;
	overflow: hidden;
}

#gallery .owl-nav,
#gallery .owl-dots {
	margin-top: 25px;
	text-align: center;
}

#gallery .owl-item {
	border-left: 2px solid #fff;
	border-right: 2px solid #fff;
}

#gallery .owl-dot {
	display: inline-block;
	margin: 0 5px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ddd;
}

#gallery .owl-dot.active {
	background-color: #f82249;
}

#gallery .gallery-carousel .owl-stage-outer {
	overflow: visible;
}

#gallery .gallery-carousel .center {
	border: 6px solid #17184b;
	margin: -10px;
	-webkit-box-sizing: content-box;
	box-sizing: content-box;
	padding: 4px;
	background: #fff;
	z-index: 1;
}


/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/
#speakers {
	padding: 60px 0 30px 0;
}

#speakers .speaker {
	position: relative;
	overflow: hidden;
	margin-bottom: 30px;
}

#speakers .speaker .details {
	background: rgba(6, 12, 34, 0.76);
	position: absolute;
	left: 0;
	bottom: -30px;
	right: 0;
	text-align: center;
	padding-top: 10px;
	-webkit-transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
	transition: all 300ms cubic-bezier(0.645, 0.045, 0.355, 1);
}

#speakers .speaker .details h3 {
	color: #fff;
	font-size: 20px;
	font-weight: 500;
	margin-bottom: 5px;
}

#speakers .speaker .details p {
	color: #fff;
	font-size: 15px;
	margin-bottom: 10px;
	font-style: italic;
}

#speakers .speaker .details .social {
	height: 30px;
}

#speakers .speaker .details a {
	color: #fff;
}

#speakers .speaker .details a:hover {
	color: #f82249;
}

#speakers .speaker:hover .details {
	bottom: 0;
}

#speakers-details {
	padding: 60px 0;
}

#speakers-details .details h2 {
	color: #112363;
	font-size: 25px;
	font-weight: 500;
	margin-bottom: 10px;
}

#speakers-details .details .social {
	margin-bottom: 15px;
}

#speakers-details .details .social a {
	background: #e9edfb;
	color: #112363;
	line-height: 1;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	width: 36px;
	height: 36px;
	padding-top: 9px;
}

#speakers-details .details .social a:hover {
	background: #f82249;
	color: #fff;
}

#speakers-details .details .social a i {
	font-size: 18px;
}

#speakers-details .details p {
	color: #112363;
	font-size: 15px;
	margin-bottom: 10px;
}

.background-holder {
	position: relative !important;
}

/*--------------------------------------------------------------
# hr
--------------------------------------------------------------*/
hr.short {
	width: 6rem;
}

hr {
	background-color: #C4CEDE;
	border-width: 0;
	margin-top: 1rem;
	opacity: .8;
	height: 2px;
	border-radius: 1.0px;
}

hr {
	border-color: currentColor;
}

.zopacity,
*[data-zanim] {
	opacity: 0;
}


/* ==================================================
流れ
================================================== */
/* アイコン（外部リンク） */
.icon-el {
	position: relative;
	margin-left: 5px;
	padding: 0 10px;
	vertical-align: middle;
}

.icon-el::before {
	content: "";
	position: absolute;
	display: inline-block;
	top: 0;
	bottom: 0;
	left: 0;
	width: 9px;
	height: 9px;
	margin: auto 0;
	border: 1px solid #019875;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.icon-el::after {
	content: "";
	position: absolute;
	display: inline-block;
	top: 0;
	bottom: 6px;
	left: 3px;
	width: 9px;
	height: 9px;
	margin: auto 0;
	background: #fff;
	border: 1px solid #019875;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* ボタン */
.button {
	display: block;
	width: 100%;
	max-width: 255px;
	margin: 0 auto 10px auto;
	padding: 0;
	background: transparent;
	border: 1px solid #333;
	border-radius: 2px;
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 38px;
	text-align: center;
	text-decoration: none;
	color: #333;
}

.button:hover {
	background: #ccc;
	border: 1px solid #ccc !important;
	color: #fff;
}

.button.btn01 {
	margin-bottom: 11px;
	background: #333;
	-webkit-box-shadow: 0 1px 0 0 #000;
	box-shadow: 0 1px 0 0 #000;
	line-height: 37px;
	color: #fff;
}

.button.btn01:hover {
	margin-bottom: 10px;
	background: #ccc;
	border: 1px solid #ccc;
	-webkit-box-shadow: 0 0 0 0;
	box-shadow: 0 0 0 0;
	line-height: 38px;
	color: #fff;
}

.button.btn02 {
	border: #019875 2px solid;
	line-height: 36px;
}

.button.btn02:hover {
	background: #ccc;
	border: 2px solid #ccc;
	color: #fff;
}

.button.btn03 {
	background: #fff;
	border: 1px solid #d9d9d9;
	color: #019875;
}

.button.btn03:hover {
	background: #ccc;
	border: 1px solid #ccc;
	color: #fff;
}

@media print,
screen and (min-width: 768px) {
	.button {
		display: block;
		max-width: 320px;
		line-height: 58px;
	}

	.button.btn01 {
		margin-bottom: 12px;
		-webkit-box-shadow: 0 2px 0 0 #000;
		box-shadow: 0 2px 0 0 #000;
		line-height: 56px;
	}

	.button.btn01:hover {
		margin-bottom: 10px;
		line-height: 58px;
	}

	.button.btn02 {
		line-height: 56px;
	}

	.button-box01 {
		font-size: 0;
		text-align: center;
	}

	.button-box01 .button {
		display: inline-block;
		margin: 0 10px;
	}
}


/* ==================================================
基本パーツ
================================================== */
.beginner_flow dl {
	margin: 0;
}

.beginner_flow dt {
	width: 100%;
	height: 40px;
	line-height: 40px;
	background: #018062;
	color: #fff;
	text-align: center;
	margin-bottom: 10px;
}

.beginner_flow dd {
	width: 100%;
	margin: 0 0 20px 0;
}

.beginner_flow dl:nth-last-of-type(1) dt {
	background: #f1b100;
}

@media print,
screen and (min-width: 768px) {
	.beginner_flow dt {
		width: 200px;
		height: 70px;
		line-height: 70px;
		background: #018062;
		color: #fff;
		text-align: center;
		margin-right: 20px;
		float: left;
		position: relative;
		margin-bottom: 30px;
	}

	.beginner_flow dt::after {
		color: #018062;
		content: "▼";
		font-size: 24px !important;
		left: 88px;
		top: 40px;
		position: absolute;
	}

	.beginner_flow dl:nth-last-of-type(1) dt::after {
		content: none;
	}

	.beginner_flow dd {
		width: 280px;
		float: right;
		margin: 0;
	}
}


/*--------------------------------------------------------------
# F.A.Q Section
--------------------------------------------------------------*/

#faq {
	padding: 50px 0;
}

#faq #faq-list {
	padding: 0;
	list-style: none;
}

#faq #faq-list li {
	margin-bottom: 1.5rem;
	padding: 1.5em;
	border: 1px solid rgba(52, 113, 140, 0.02);
	border-radius: 6px;
	-webkit-box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.3);
}

#faq #faq-list a {
	display: block;
	position: relative;
	color: #555;
	font-size: 16px;
	line-height: 24px;
	font-weight: 600;
	padding-right: 20px;
}

#faq #faq-list a::after,
#faq #faq-list a.collapsed::after {
	position: absolute;
	bottom: -8px;
	left: -4px;
	content: '';
	width: 95%;
	height: 2px;
	background: #95bbc7;
	-webkit-transform: scale(0, 1);
	transform: scale(0, 1);
	-webkit-transform-origin: left top;
	transform-origin: left top;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}

#faq #faq-list a::after {
	-webkit-transform: scale(1, 1);
	transform: scale(1, 1);
}

#faq #faq-list i {
	font-size: 20px;
	position: absolute;
	right: 0;
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
}

@media screen and (min-width: 48em) {
	#faq #faq-list i {
		font-size: 24px;
	}
}

#faq #faq-list p {
	margin: 1.5rem 0 0.5rem 0;
	padding: 1em;
	background-color: #f5f5f5;
	border-radius: 6px;
	color: #192f60;
}

@media screen and (min-width: 48em) {
	#faq #faq-list p {
		margin: 2.25rem 2rem 0.5rem 2rem;
	}
}

#faq #faq-list a.collapsed {
	color: #555;
	font-size: 16px;
}

#faq #faq-list a.collapsed i::before {
	content: "\f055" !important;
}

/*
@media all and (any-hover: hover) {
}
*/
