html {
	font-size: 62.5%;
}
body {
	font-size: 1.6rem;
	font-family: 'Montserrat', source-han-sans-japanese, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	line-height: 1.8;
}
body * {
	box-sizing: border-box;
}
body.modal-open {
	overflow: hidden;
}
#wrap {
	overflow: hidden;
	position: relative;
}
button,
input,
select,
textarea {
	font-family: 'Montserrat', source-han-sans-japanese, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	font-size: 100%;
}
::-webkit-input-placeholder {
	/* WebKit, Blink, Edge */
	/*color: #ccc;*/
}
:-ms-input-placeholder {
	/* Internet Explorer 10-11 */
	/*color: #ccc;*/
}
::placeholder {
	/* Others */
	/*color: #ccc;*/
}
img {
	max-width: 100%;
	height: auto;
}
a {
	color: #4CBFDD;
	text-decoration: none;
	transition: all .3s ease;
}
a.border {
	position: relative;
	display: inline-block;
}
a.border::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 0;
	height: 1px;
	background-color: #4CBFDD;
	transition: all .3s ease;
}
a.border:hover::after {
	width: 100%;
}
button {
	background-color: transparent;
	border: none;
	cursor: pointer;
	outline: none;
	padding: 0;
	appearance: none;
	transition: all .3s ease;
}
.btn-wrap {
	margin-bottom: -20px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.btn-wrap.center{
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.btn-wrap.center .btn{
	margin-right: 20px;
	margin-left: 20px;
}
.btn {
	padding-right: 20px;
	padding-left: 20px;
	line-height: 1.3;
	min-width: 200px;
	min-height: 40px;
	border-radius: 30px;
	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;
}
.btn-wrap .btn{
	margin-bottom: 20px;
}
.btn.small {
	min-width: auto;
	min-height: auto;
}
.btn.large{
	min-width: 360px;
	min-height: 60px;
}
.fill-blue {
	background-color: #4DC0DD;
	color: #fff;
}
.fill-blue:hover {
	background-color: #83EFFA;
}
.fill-pink {
	background-color: #DA3A8A;
	color: #fff;
}
.fill-pink:hover {
	background-color: #FA67C9;
}
.fill-ig {
	background: linear-gradient(90deg,#FAB24B, #F15735, #D1047C, #6E1DCE);
	color: #fff;
}
.fill-ig:hover {
	opacity: .7;
}
.outline-blue {
	border: 1px solid #4DC0DD;
	color: #4DC0DD;
}
.outline-blue:hover {
	border: 1px solid #83EFFA;
	background-color: #83EFFA;
	color: #fff;
}
.outline-pink {
	border: 1px solid #DA3A8A;
	color: #DA3A8A;
}
.outline-pink:hover {
	border: 1px solid #FA67C9;
	background-color: #FA67C9;
	color: #fff;
}
.outline-white {
	border: 1px solid #fff;
	color: #fff;
}
.outline-white:hover {
	background-color: #fff;
	color: #000;
}
h1 {
	font-size: 4.8rem;
	line-height: 1.3;
}
h2 {
	font-size: 3.6rem;
	line-height: 1.4;
	margin-bottom: 80px;
}
h2.under-bar {
	position: relative;
	padding-bottom: 34px;
	margin-bottom: 60px;
}
h2.under-bar::after {
	content: "";
	position: absolute;
	display: block;
	width: 60px;
	height: 4px;
	left: 0;
	bottom: 0;
	background-color: #4DC0DD;
}
h2.small-en small {
	font-size: 1.4rem;
	display: block;
	color: #4CBFDD;
	margin-top: 10px;
}
.title-wrap {
	margin-bottom: 80px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.title-wrap>* {
	margin-bottom: 0 !important;
}
.title-wrap h2.under-bar {}
h3 {
	font-size: 2.8rem;
	line-height: 1.5;
}
h4 {
	font-size: 2rem;
	line-height: 1.6;
	margin-bottom: 20px;
}
small {
	display: block;
	font-size: 1.3rem;
	color: #777;
}
.gray {
	background-color: #F3F4F4;
}
@media screen and (max-width: 767px) {
	body {
		font-size: 1.5rem;
	}
	.title-wrap {
		margin-bottom: 60px;
		-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;
	}
	.title-wrap .btn-wrap {
		margin-top: 30px;
	}
	h2 {
		font-size: 3rem;
	}
	h2.small-en small {
		margin-top: 5px;
	}
	h2.under-bar {
		padding-bottom: 24px;
	}
	h3 {
		font-size: 2.4rem;
	}
	h4 {
		font-size: 1.8rem;
	}
	small {
		font-size: 1.1rem;
	}
	.btn{
		margin-right: 0 !important;
		margin-left: 0 !important;
		min-width: auto !important;
		width: 100%;
	}
}
/*****************************************************************************
*
* ヘッダ―
*
******************************************************************************/
header {
	position: relative;
	font-size: 1.5rem;
	z-index: 1;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	transition: all .3s ease;
}
.sp-logo {
	display: none;
	position: relative;
	background-color: #fff;
	height: 68px;
	padding-left: 10px;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.hamburger {
	display: none;
	position: fixed;
	right: 14px;
	top: 14px;
	z-index: 10;
}
.hamburger span {
	display: inline-block;
	transition: all .4s;
}
.hamburger {
	width: 40px;
	height: 40px;
}
.hamburger span {
	position: absolute;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: #4CBFDD;
	border-radius: 4px;
}
.hamburger span:nth-of-type(1) {
	top: 8px;
}
.hamburger span:nth-of-type(2) {
	top: 19px;
}
.hamburger span:nth-of-type(3) {
	bottom: 8px;
}
.hamburger.active span:nth-of-type(1) {
	-webkit-transform: translateY(11px) rotate(-45deg);
	transform: translateY(11px) rotate(-45deg);
}
.hamburger.active span:nth-of-type(2) {
	opacity: 0;
}
.hamburger.active span:nth-of-type(3) {
	-webkit-transform: translateY(-11px) rotate(45deg);
	transform: translateY(-11px) rotate(45deg);
}
@media screen and (max-width: 960px) {
	.sp-logo {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
	}
	.hamburger {
		display: block;
	}
	header {
		position: fixed;
		left: 0;
		top: 0;
		width: 100%;
		max-height: 100%;
		opacity: 0;
		transform: translateX(100vw);
		box-shadow: -1px 0 0 rgba(0, 0, 0, .2);
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
	}
	.scroll-content {
		height: 100%;
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.hamburger.active~header {
		transform: translateX(0);
		opacity: 1;
	}
}
/* 最上段 *******************************************************/
#head-bar {
	line-height: 1;
	height: 46px;
	background-color: #18292E;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#head-bar a {
	color: #fff;
}
#head-bar p {
	margin-left: 20px;
	margin-right: auto;
	font-size: 1.8rem;
}
#head-bar ul {
	height: 100%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#head-bar li {
	height: 100%;
	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;
}
#head-bar li:not(:last-child) span {
	display: inline-block;
	padding: 6px 8px 4px;
	background-color: rgba(255, 255, 255, .2);
	border-radius: 20px;
}
#head-bar li:not(:last-child) a {
	display: inline-block;
	padding: 6px 0 4px;
}
#head-bar li:not(:last-child) {
	border-left: 1px solid rgba(255, 255, 255, .2);
	padding: 0 20px;
}
#head-bar li em {
	font-style: normal;
	display: inline-block;
	margin-right: 10px;
}
#head-bar li i {
	font-style: normal;
	display: inline-block;
	padding: 6px 0 0;
	margin: 0 8px;
	font-size: 1.2rem;
}
#head-bar li:last-child a {
	width: 100%;
	height: 100%;
	padding: 0 30px;
	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;
}
#head-bar li:last-child a img {
	margin-right: 10px;
}
/* 中段 *******************************************************/
#head-nav {
	line-height: 1.3;
	height: 78px;
	background-color: #fff;
	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;
}
#head-nav ul {
	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;
}
#head-nav ul li:not(:last-child) {
	border-right: 1px solid #ddd;
}
#head-nav ul li a {
	padding: 0 33px;
	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;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
#head-nav ul li a span {
	font-weight: 700;
	font-size: 1.5rem;
	color: #000;
	transition: all .3s ease;
}
#head-nav ul li a small {
	font-size: 1.1rem;
	margin-top: 4px;
	color: #4DC0DD;
}
#head-nav ul li a:hover span {
	color: #4DC0DD;
}
/* 下段 *******************************************************/
#head-sub {
	line-height: 1.3;
	font-size: 1.3rem;
	height: 46px;
	background: linear-gradient(90deg, rgba(247, 247, 247, 0), rgba(247, 247, 247, 1) 80%);
	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;
}
#head-sub li {
	margin-right: 40px;
}
#head-sub li:not(:last-child) a {
	color: #000;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
#head-sub li:not(:last-child) a::before {
	content: "";
	width: 0;
	height: 0;
	display: block;
	border-left: 6px solid #000;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	margin-right: 10px;
}
#head-sub li:last-child a {
	padding: 7px 30px;
}
#head-sub li a:hover {
	opacity: .5;
}
@media screen and (max-width: 960px) {
	/* 上中下段 *******************************************************/
	#head-bar {
		flex-shrink: 0;
		padding: 30px 30px 0;
		height: auto;
		order: 2;
		-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;
	}
	#head-bar p {
		margin: 0 0 20px;
		font-size: 1.4rem;
	}
	#head-bar ul {
		width: 100%;
		-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;
	}
	#head-bar li {
		border: none !important;
		padding: 0;
		margin-bottom: 15px;
	}
	#head-bar li:not(:last-child) {
		padding: 0;
	}
	#head-bar li:last-child {
		width: -webkit-calc(100% + 60px);
		width: calc(100% + 60px);
		height: 44px;
		margin: 10px -30px 0;
	}
	#head-nav {
		flex-shrink: 0;
		padding: 30px;
		height: auto;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	#head-nav ul {
		-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;
	}
	#head-nav ul li:not(:last-child) {
		border: none;
	}
	#head-nav ul li a {
		margin: 0 0 15px;
		padding: 0;
		-webkit-box-align: start;
		-ms-flex-align: start;
		align-items: flex-start;
	}
	#head-nav ul li:last-child a {
		margin-bottom: 0;
	}
	#head-sub {
		flex-shrink: 0;
		background-color: rgba(247, 247, 247, 1);
		padding: 30px;
		order: 1;
		height: auto;
		-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;
	}
	#head-sub li {
		margin-bottom: 15px;
	}
	#head-sub li:last-child {
		margin: 0;
	}
}
/*****************************************************************************
*
* フッター
*
******************************************************************************/
footer {
	font-size: 1.5rem;
	background-color: #18292E;
	color: #fff;
}
footer .inner {
	width: 1100px;
	padding: 80px 0;
	margin: 0 auto;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
footer .about {
	margin-right: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
footer .about figure {
	margin-right: 40px;
}
footer .about h6 {
	margin-bottom: 5px;
}
footer .about p {
	margin-bottom: 20px;
}
footer nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 1.4rem;
}
footer nav ul:not(:last-child) {
	margin-right: 40px;
}
footer nav li {
	margin-bottom: 10px;
}
footer nav li a {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
footer nav li a::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-left: 6px solid #fff;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	margin-right: 10px;
}
footer nav li a:hover {
	opacity: .5;
}
footer>p {
	padding: 15px 30px;
	text-align: right;
	background: linear-gradient(to right, rgba(31, 51, 57, 0) 50%, rgba(31, 51, 57, 1));
}
footer a {
	color: #fff;
	line-height: 1.3;
}
@media screen and (max-width: 1140px) {
	footer .inner {
		width: -webkit-calc(100% - 40px);
		width: calc(100% - 40px);
		margin-left: 20px;
		margin-right: 20px;
	}
}
@media screen and (max-width: 767px) {
	footer .inner {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	footer .about {
		margin-right: 0;
		order: 1;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	footer .about figure {
		margin-right: 0;
		margin-bottom: 30px;
	}
	footer .about * {
		text-align: center;
	}
	footer nav {
		margin-bottom: 30px;
	}
	footer nav ul:not(:last-child) {
		margin-right: 20px;
	}
}
/*****************************************************************************
*
* キービジュアル
*
******************************************************************************/
#kv-index {
	margin-top: -46px;
}
#kv-contents {
	position: relative;
	height: 360px;
	overflow: hidden;
	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;
}
.kv-item.slick-slide {
	position: relative;
	height: 700px;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.kv-item figure {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
}
.event .kv-item figure {
	opacity: .85;
	width: 105%;
	height: 105%;
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);
}
.kv-item>div {
	position: relative;
	width: 1100px;
	margin: 0 auto;
	color: #fff;
}
#kv-index .kv-item div h1 {
	font-size: 6.4rem;
}
#kv-index .kv-item div h1 .gradient {
	font-size: 4.4rem;
}
.kv-item div h1 .gradient {
	font-size: 3.2rem;
}
.kv-item div h1 .gradient span {
	display: inline-block;
	background: linear-gradient(to right, #4DC0DD 5%, #B68FEF, #DA3A8A 95%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
.kv-item div h3 {
	margin-top: 30px;
	font-size: 2rem;
}
.slick-dots {
	position: absolute;
	bottom: 30px;
	display: block;
	width: 100%;
	padding: 0;
	margin: 0;
	list-style: none;
	text-align: center;
}
.slick-dots li {
	position: relative;
	display: inline-block;
	width: 20px;
	height: 20px;
	margin: 0 5px;
	padding: 0;
	cursor: pointer;
}
.slick-dots li button {
	font-size: 0;
	line-height: 0;
	display: block;
	width: 20px;
	height: 20px;
	padding: 5px;
	cursor: pointer;
	color: transparent;
	border: 0;
	outline: none;
	background: transparent;
}
.slick-dots li button:before {
	content: "";
	position: absolute;
	display: block;
	width: 10px;
	height: 10px;
	top: 0;
	left: 0;
	text-align: center;
	opacity: .25;
	background-color: #eee;
	border-radius: 10px;
}
.slick-dots li.slick-active button:before {
	opacity: .75;
	color: black;
}
@media screen and (max-width: 1140px) {
	.kv-item{
		width: 100%;
	}
	.kv-item>div {
		width: 100%;
		padding: 0 20px;
	}
}
@media screen and (max-width: 960px) {
	#kv-index {
		margin-top: 0;
	}
}
@media screen and (max-width: 767px) {
	.kv-item.slick-slide {
		height: -webkit-calc(100vh - 68px);
		height: calc(100vh - 68px);
		min-height: 500px;
	}
	#kv-index .kv-item div h1 {
		font-size: 4.8rem;
	}
	#kv-index .kv-item div h1 .gradient {
		font-size: 3.2rem;
		margin-top: 5px;
	}
	.kv-item {
		width: 100%;
	}
	.kv-item div h1 {
		font-size: 3.6rem;
	}
	.kv-item div h3 {
		font-size: 1.8rem;
	}
	.kv-item div h1 .gradient {
		font-size: 2.4rem;
	}
}
/*****************************************************************************
*
* コンテンツ
*
******************************************************************************/

.mb-0 {
	margin-bottom: 0 !important;
}
.block {
	padding: 100px 0 150px;
}
.block.lead{
	padding: 100px 0;
}
.block>.inner {
	width: 1100px;
	margin: 0 auto;
}
.block h3{
	margin-bottom: 40px;
}
.block p {
	margin-bottom: 40px;
}
.block.lead .inner > *:last-child{
	margin-bottom: 0;
}
.block .pink-border {
	border-left: 4px solid #DA3A8A;
	padding-left: 20px;
}
.block strong {
	color: #D8398A;
}
.block strong.black{
	color: #000;
}
.block .txt dl {
	margin-bottom: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.block .txt dl dt {
	font-weight: bold;
	width: 20%;
}
.block .txt dl dd {
	width: 75%;
}
.column-2 {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.column-2>*:first-child {
	width: 29%;
}
.column-2>*:last-child {
	width: 65%;
}
.column-2 h2 {
	margin-bottom: 60px;
}
.column-single figure{
	margin-bottom: 40px;
}
.column-single p{
}
[class^="column-h"] {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
[class^="column-h"].reverse {
	-webkit-box-orient: horizontal;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
}
[class^="column-h"] .txt>*:last-child {
	margin-bottom: 0;
}
.column-h-1 {
	margin-bottom: 100px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.column-h-1 figure {
	width: 50%;
}
.column-h-1 .txt {
	width: 42%;
}
.column-h-1 .txt h2 {
	margin-bottom: 40px;
}



.column-h-2 {
	margin-bottom: -40px;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.column-h-2>div {
	width: 47%;
	margin-bottom: 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.column-h-2 figure {
	width: 38%;
}
.column-h-2 .txt {
	width: 56%;
}
.column-h-2 .txt h4 {
	font-size: 1.8rem;
}
.column-h-2 .txt p {
	font-size: 1.4rem;
}
[class^="column-v"] {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
[class^="column-v"] figure,
[class^="column-h"] figure{
	text-align: center;
}
[class^="column-v"]+[class^="column-v"] {
	margin-top: 50px;
}
.inner .column-v-2:last-child {
	margin-bottom: -60px;
}
.inner .column-v-3:last-child {
	margin-bottom: -50px;
}
.inner .column-v-4:last-child {
	margin-bottom: -50px;
}
.inner .column-v-2+h3,
.inner .column-v-3+h3,
.inner .column-v-4+h3{
	margin-top: 50px;
}
.column-v-2 div {
	width: 47%;
	margin-bottom: 60px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.column-v-3 div {
	width: 30%;
	margin-bottom: 50px;
}
.column-v-4 div {
	width: 22%;
	margin-bottom: 40px;
}
[class^="column-v"] div figure + h4{
	margin-top: 30px !important;
}
.column-v-4 div h4 {
	margin: 24px 0 16px;
	font-size: 1.8rem;
}
.column-v-4 div p {
	font-size: 1.4rem;
}
[class^="column-v"] div>*:last-child {
	margin-top: auto;
	margin-bottom: 0;
}
.layered div {
	position: relative;
}
.layered div figure {
	overflow: hidden;
}
.layered div figure img {
	transition: all .3s ease;
}
.layered div.hover figure img {
	transform: scale(1.1);
}
.layered div a {
	color: #fff;
	font-weight: 700;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, .5));
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
.layered div a::after {
	content: "";
	display: block;
	width: 36px;
	height: 6px;
	background: url(../images/common/arw_1.png) center center/cover no-repeat;
	flex-shrink: 0;
	margin-bottom: 13px;
}
.column-v-2.layered div a {
	padding: 30px;
	font-size: 1.8rem;
}
.column-v-3.layered div a {
	padding: 20px;
}
#simple-reserve {
	margin-top: 60px;
	padding: 40px;
	background-color: #fff;
	border-top: 2px solid #DA3A8A;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
#simple-reserve h2 {
	margin-bottom: 0;
	font-size: 2.4rem;
}
#simple-reserve h2.small-en small {
	color: #DA3A8A;
}
#simple-reserve .search-plan{
	width:80%;
}

#simple-reserve .search-plan,
#simple-reserve .search-plan form,
#simple-reserve .search-plan form #searchBox{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}
#simple-reserve .search-plan form{
	width:100%;
}

#simple-reserve .search-plan form #searchBox {
	width:100%;
}

#simple-reserve .search-plan label {
	margin-right: 20px;
}
#simple-reserve .search-plan label.size-s {
	width: 90px;
}
#simple-reserve .search-plan label.size-m {
	width: 230px;
}
#simple-reserve .search-plan label span {
	font-size: 1.4rem;
	margin-bottom: 5px;
	display: block;
}
#simple-reserve .search-plan input {
	width: 100%;
	font-size: 1.6rem;
	border: 1px solid #ddd;
	border-radius: 4px;
	outline: none;
	background: #fff;
	height: 40px;
	padding-left: 10px;
	padding-right: 10px;
}
#simple-reserve .search-plan fieldset select{
width: 100%;
font-size: 1.6rem;
border: 1px solid #ddd;
border-radius: 4px;
outline: none;
background: #fff;
height: 40px;
padding-left: 10px;
padding-right: 10px;
}

#simple-reserve .search-plan form #searchBox p {
	margin-bottom:0;
}

#simple-reserve .search-plan input.fill-pink{
	background-color: #DA3A8A;
	color: #fff;
	padding-right: 20px;
padding-left: 20px;
line-height: 1.3;
min-width: 200px;
min-height: 40px;
border-radius: 30px;
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;
}

#simple-reserve .search-plan button,
#simple-reserve .search-plan input[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	padding: 0;
	border: none;
	outline: none;
}
.block.event {
	color: #fff;
	background: url(../images/event/bg.png) center center/cover no-repeat;
}
.block.timeline .inner {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.block.timeline .inner>div {
	width: 47%;
}
.block.timeline .btn-wrap {
	padding-top: 20px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.block.timeline .btn-wrap a{
	min-width: auto;
	width:100%;
}
.timeline-instagram{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}
.timeline-instagram .btn-wrap{
	margin-top: auto;
}
.timeline-instagram ul{
	max-height: 800px;
	overflow: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.timeline-instagram ul li{
	margin-bottom: 20px;
	width: -webkit-calc((100% - 20px) / 2);
	width: calc((100% - 20px) / 2);
	word-wrap: break-word;
}
.timeline-instagram ul li a:hover{
	opacity: .7;
}
.timeline-instagram ul li .instagram-text{
	margin-top: 10px;
	font-size: 1.3rem;
	line-height: 1.5;
}
.spnsr-logo {
	margin-bottom: -40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.spnsr-logo li {
	width: 30%;
	margin: 0 1.6% 40px;
}
.spnsr-logo.all li {
	width: 22%;
	margin: 0 1.5% 40px;
}
.gmap {
	height: 0;
	margin-bottom: 40px;
	overflow: hidden;
	padding-bottom: 48.75%;
	position: relative;
}
.inner .gmap:last-child{
	margin-bottom: 0;
}
.gmap iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
[class*="anchor-"] {
	margin: 0 auto;
	border-radius: 40px;
	font-size: 1.5rem;
	font-weight: bold;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.anchor-3col li {
	flex-basis: 33%;
	padding-right: 20px;
	flex-grow: 0;
}
.anchor-4col li {
	flex-basis: 25%;
	padding-right: 20px;
	flex-grow: 1;
}
.anchor-5col li {
	flex-basis: 20%;
	padding-right: 20px;
	flex-grow: 1;
}
[class*="anchor-"] li:last-child {
	border: none;
}
[class*="anchor-"] li a {
	color: #000;
	padding: 10px 0;
	line-height: 1.3;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
[class*="anchor-"] li a::before {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-top: 8px solid #4DC0DD;
	border-right: 4px solid transparent;
	border-left: 4px solid transparent;
	flex-shrink: 0;
	margin-right: 10px;
}
[class*="anchor-"] li a:hover {
	color: #4DC0DD;
}
dl.layout-x {
	margin-bottom: -40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
dl.layout-x dt {
	width: 220px;
	font-size: 1.8rem;
	margin-bottom: 40px;
	line-height: 1.6;
	font-weight: bold;
}
dl.layout-x dd {
	width: calc(100% - 270px);
	margin-bottom: 40px;
}
dl.layout-x dd > *:last-child{
	margin-bottom: 0;
}
dl.layout-x dd small {
	margin-top: 20px;
}
dl.layout-x dd h4{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
dl.layout-x dd h4 .btn{
	font-weight: normal;
	font-size: 1.6rem;
}
dl.layout-x dd h4 .btn img{
	margin-right: 10px;
}
dl.layout-x dd .table {
	width: 520px;
	max-width: 100%;
}
dl.layout-x dd table {
	width: 100%;
}
dl.layout-x dd table tr:nth-of-type(2n) {
	background-color: #fff;
}
dl.layout-x dd table tr:nth-of-type(2n-1) {
	background-color: #F3F4F4;
}
.gray dl.layout-x dd table tr:nth-of-type(2n) {
	background-color: #F3F4F4;
}
.gray dl.layout-x dd table tr:nth-of-type(2n-1) {
	background-color: #fff;
}
dl.layout-x dd table th {
	padding: 10px 20px;
	text-align: left;
}
dl.layout-x dd table td {
	padding: 10px 20px;
	text-align: right;
}
dl.faq {
	margin-bottom: 40px;
}
dl.faq dt{
	padding: 12px 10px 10px;
	cursor: pointer;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
dl.faq dt:nth-of-type(2n-1){
	background: #fff;
}
dl.faq dd{
	padding: 0 10px 10px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}
dl.faq dd:nth-of-type(2n-1){
	background: #fff;
}
dl.faq dt::before{
	content: "Q";
	font-size: 2.4rem;
	color: #4DC0DD;
	margin-right: 10px;
	width: 30px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	transform: translateY(1px);
}
dl.faq dt button{
	width: 20px;
	height: 20px;
	margin:2px 4px 0 auto;
	position: relative;
}
dl.faq dt button::before,
dl.faq dt button::after{
	content: "";
	position: absolute;
	display: block;
	width: 20px;
	height: 2px;
	background: #4DC0DD;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	transition: all .3s ease;
}
dl.faq dt button::after{
	transform:translateY(-50%) rotate(90deg) ;
}
dl.faq dt button.active::after{
	transform:translateY(-50%) rotate(0deg) ;
}
dl.faq dd::before{
	content: "A";
	font-size: 2.4rem;
	color: #D8398A;
	margin-right: 10px;
	width: 30px;
	font-weight: bold;
	line-height: 1;
	text-align: center;
	transform: translateY(2px);
}
.pager {
	border-top: 1px solid #000;
	padding-top: 40px;
	margin: 60px auto 0;
	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;
}
.pager li{
	margin: 0 5px;
}
.pager li a,.pager li span{
	width: 32px;
	height: 32px;
	padding-top: 2px;
	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;
	border-radius: 16px;
	border: 1px solid #4CBFDD;
}
.pager li span{
	border: 1px solid #ccc;
	color: #ccc;
}
.pager li a:hover{
	background-color: #4CBFDD;
	color: #fff;
}
article.block {
	position: relative;
	width: 1100px;
	margin: 0 auto 0;
	padding: 100px 60px 60px;
	background-color: #fff;
}
article.block.event-detail{
	margin-top: -240px;
	padding: 60px;
}
article.block>.inner {
	width: 100%;
}
article.block .main {
	margin-bottom: 60px;
	text-align: center;
}
article.block h1 {
	font-size: 3.6rem;
	line-height: 1.4;
	margin-bottom: 60px;
	position: relative;
	padding-bottom: 34px;
	text-align: center;
}
article.block h1 time {
	display: block;
	color: #D9398A;
	margin-top: 15px;
	font-size: 2rem;
	text-align: center;
}
article.block h1 span{
	display: block;
	font-style: normal;
	font-size: 1.6rem;
	font-weight: normal;
	margin-top: 15px;
	color: #D9398A;
}
article.block h1 em{
	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;
	margin-bottom: 15px;
	height: 30px;
}
article.block h1 em i{
	display: inline-block;
	font-style: normal;
	font-weight: normal;
	background-color: #000;
	padding: 6px 6px 5px;
	color: #fff;
	font-size: 1.4rem;
}
article.block h1::after {
	content: "";
	position: absolute;
	display: block;
	width: 60px;
	height: 4px;
	left: -webkit-calc(50% - 30px);
	left: calc(50% - 30px);
	bottom: 0;
	background-color: #4DC0DD;
}
article.block h2 {
	font-size: 2.8rem;
	line-height: 1.5;
	position: relative;
	padding-top: 20px;
	padding-bottom: 34px;
	margin-bottom: 60px;
	text-align: center;
}
article.block h2::after {
	content: "";
	position: absolute;
	display: block;
	width: 40px;
	height: 2px;
	left: -webkit-calc(50% - 20px);
	left: calc(50% - 20px);
	bottom: 0;
	background-color: #000;
}
article.block h3 {
	font-size: 2rem;
	line-height: 1.6;
	margin-bottom: 40px;
	text-align: center;
}
article.block h4 {
	font-size: 1.8rem;
	margin-bottom: 20px;
}
article.block .inner ul {
	line-height: 1.5;
	margin-left: 30px;
	margin-bottom: 40px;
	list-style: disc;
}
article.block .inner ol {
	line-height: 1.5;
	margin-left: 25px;
	margin-bottom: 40px;
	list-style: decimal;
}
article.block .inner li {
	margin-bottom: 5px;
}
article.block .inner ol li {
	padding-left: 5px;
}
article.block .inner dl dt{
	font-weight: bold;
}
article.block .inner dl dd{
	margin-bottom: 30px;
}
article.block .inner .text-right{
	text-align: right;
}
article.block .inner a {
	text-decoration: underline;
}
article.block .inner a:hover {
	text-decoration: none;
}
article.block [class*="column-h"] {
	margin-bottom: 0;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
}
article.block [class*="column-h"] figure,
article.block [class*="column-h"] .txt {
	margin-bottom: 40px;
}
article.block [class*="column-h"] h3 {
	text-align: left;
}
article.block table {
	width: 100%;
	margin-bottom: 40px;
	border-left: 1px solid #ddd;
	border-top: 1px solid #ddd;
	border-collapse: collapse;
}
article.block table th {
	background-color: #f3f4f4;
	text-align: left;
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 10px;
	line-height: 1.4;
}
article.block table td {
	border-right: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 10px;
	line-height: 1.4;
}
article .pagenation {
	border-top: 1px solid #000;
	padding-top: 40px;
	margin: 40px -60px 60px;
	font-size: 1.4rem;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
article .pagenation .prev {
	margin-right: 20px;
}
article .pagenation .next {
	margin-left: 20px;
}
article .pagenation a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
article .pagenation a::before {
	content: "";
	display: block;
	width: 36px;
	height: 6px;
	background: url(../images/common/arw_1.png) center center/36px 6px no-repeat;
	flex-shrink: 0;
}
article .pagenation .prev a::before {
	margin-right: 15px;
	transform: scale(-1, 1) translateY(-3px);
}
article .pagenation .next a::before {
	margin-left: 15px;
	transform: translateY(-3px);
	order: 2;
}
@media screen and (max-width: 1140px) {
	.block>.inner {
		width: -webkit-calc(100% - 40px);
		width: calc(100% - 40px);
		margin-left: 20px;
		margin-right: 20px;
	}
	.column-2,
	#simple-reserve {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	#simple-reserve .search-plan,
	#simple-reserve .search-plan form {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	#simple-reserve .search-plan {
		width:100%;
	}
	#simple-reserve .search-plan form #searchBox{
		flex-wrap:wrap;
		justify-content:space-evenly;
	}
	#simple-reserve .search-plan form #searchBox p {
		width:100%;
		margin-top:20px;
	}
	
	.column-2>* {
		width: 100% !important;
	}
	.gmap {
		padding-bottom: 75%;
	}
	article.block {
		padding: 40px;
		width: -webkit-calc(100% - 40px);
		width: calc(100% - 40px);
		margin-left: 20px;
		margin-right: 20px;
	}
	article.block>.inner {
		margin: 0 auto;
	}
	article .pagenation {
		margin: 40px -40px 60px;
	}
}
@media screen and (max-width: 767px) {
	.block {
		padding: 80px 0 120px;
	}
	.block.lead{
		padding: 80px 0;
	}
	[class^="column-h"],
	[class^="column-v"],
	.block.timeline .inner {
		-webkit-box-orient: vertical !important;
		-webkit-box-direction: normal !important;
		-ms-flex-direction: column !important;
		flex-direction: column !important;
	}
	.column-single p{
	}
	.column-h-1 figure,
	.column-h-1 .txt,
	.column-h-2>div,
	.column-v-2 div,
	.column-v-3 div,
	.column-v-4 div,
	.block.timeline .inner>div {
		width: 100% !important;
	}
	.block p {
		margin-bottom: 30px;
	}
	.block .txt dl {
		margin-bottom: 30px;
	}
	.column-h-1 {
		margin-bottom: 60px;
	}
	.column-h-1 figure {
		margin-bottom: 30px;
	}
	.column-h-1 .txt h2 {
		margin-bottom: 30px;
	}
	.column-h-2 {
		margin-bottom: -30px;
	}
	.column-h-2>div {
		margin-bottom: 30px;
	}
	.column-h-2 .txt h4 {
		font-size: 1.6rem;
		margin-bottom: 10px;
	}
	[class*="column-v"].layered {
		margin-bottom: -30px;
	}
	[class*="column-v"].layered div {
		margin-bottom: 30px;
	}
	[class*="column-v"].layered div a {
		padding: 20px;
		font-size: 1.6rem;
	}
	#simple-reserve {
		margin-top: 30px;
		padding: 30px 20px;
	}
	#simple-reserve h2 {
		margin-bottom: 20px;
	}
	#simple-reserve .search-plan form {
		margin-right: -10px;
		margin-left: -10px;
		-webkit-box-pack: start;
		-ms-flex-pack: start;
		justify-content: flex-start;
	}
	#simple-reserve .search-plan label {
		margin: 0 0 10px;
		padding-right: 10px;
		padding-left: 10px;
	}
	#simple-reserve .search-plan label.size-m {
		width: calc(100% / 3 *2);
	}
	#simple-reserve .search-plan label.size-s {
		width: calc(100% / 3 *1);
	}
	#simple-reserve .search-plan button {
		margin: 20px 10px 0;
		width: 100%;
	}
	.spnsr-logo li {
		width: 45%;
	}
	.gmap {
		padding-bottom: 100%
	}
	[class*="anchor-"] {
		border-radius: 10px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	[class*="anchor-"] li {
		width: 100%;
		border-right: none;
	}
	dl.layout-x {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	dl.layout-x dt {
		margin-bottom: 15px;
		width: 100%;
		text-align: center;
	}
	dl.layout-x dd {
		margin-bottom: 30px;
		width: 100%;
	}
	dl.layout-x dd h4{
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	dl.layout-x dd h4 .btn{
		min-width: 200px !important;
		width: auto;
		margin-top: 15px;
	}
	article.block {
		width: 100%;
		margin: 0;
		padding: 80px 20px 20px;
	}
	article.block.event-detail{
		margin-top: -240px;
		padding: 20px;
	}
	article.block .main {
		margin: -20px -20px 60px;
	}
	article.block h1 {
		font-size: 3rem;
	}
	article.block h1 time {
		font-size: 1.8rem;
	}
	article.block h2 {
		font-size: 2.4rem;
		margin-bottom: 30px;
		padding-bottom: 24px;
	}
	article.block h3 {
		font-size: 1.8rem;
		margin-bottom: 30px;
	}
	article .pagenation {
		margin: 40px 0 60px;
		font-size: 1.2rem;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	article .pagenation li {
		margin-bottom: 10px;
	}
	article .pagenation li a {
		width: 100%;
	}
	article .pagenation li.next a {
		-webkit-box-pack: end;
		-ms-flex-pack: end;
		justify-content: flex-end;
	}
	.block.timeline .inner{
		margin-bottom: -40px;
	}
	.block.timeline .btn-wrap{
		margin-bottom: 30px;
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
	}
	.block.timeline .btn-wrap a{
		width: 100%;
		margin-bottom: 10px;
	}
}
/*****************************************************************************
*
*
*
******************************************************************************/
#loading {
	display: none;
	position: absolute;
	top: 10px;
	right: 10px;
}
.fc-toolbar h2 {
	font-weight: 400;
	letter-spacing: 0.2rem;
	font-size: 24px;
}
.fc-button {
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 14px;
}
.fc-button-primary {
	background-color: #fff;
	color: #4DC0DD;
	border-color: #4DC0DD;
}
.fc-button-primary:hover {
	background-color: #4DC0DD;
	border-color: #4DC0DD;
}
.fc-button-primary:not(:disabled):active,
.fc-button-primary:not(:disabled).fc-button-active {
	background-color: #4DC0DD;
	border-color: #4DC0DD;
}
.fc-view>table {
	border-right: 1px solid #ddd;
	border-left: 1px solid #ddd;
}
.fc-view-container * {
	font-size: 12px;
}
.fc th,
.fc td,
.fc-unthemed td.fc-today {
	border-right: none;
	border-left: none;
}
.fc-head {
	background-color: #F3F4F4;
}
.fc-event,
.fc-event-dot {
	background-color: #D9398A;
}
.fc-event {
	border-color: #D9398A;
	border-radius: 10px;
}
.fc-event.special-event {
	background-color: #66CC00;
	border-color: #66CC00;
}
.fc-day-grid-event .fc-time {
	font-weight: 400;
}
.fc-day-grid-event {
	padding: 0 4px;
}
@media screen and (max-width: 767px) {
	.fc-toolbar {
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	}
	.fc-center {
		margin-bottom: 1em;
	}
	.fc-left {
		order: 1;
		margin-bottom: 1em;
	}
	.fc-right {
		order: 2;
		width: 100%;
	}
	.fc-right .fc-button-group {
		width: 100%;
	}
}
/*****************************************************************************
* アクセス
******************************************************************************/
/* 川平　追加 */
[class^="column-h"].reverse .btn-wrap {display:none;}
#ui-datepicker-div {display:none !important;}