@charset "utf-8";

/*=======================
一覧
=======================*/
#event_list {
	padding-bottom: 1.00rem;
	position: relative;
}

@media screen and (max-width: 640px) {
	#event_list {
		padding-bottom: 0;
	}
}

/* 表示タイプの切り替え */
.view_select_wrap {
	margin-bottom: 0.50rem;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 640px) {
	.view_select_wrap {
		margin-bottom: 0.40rem;
	}
}

.view_select_wrap .list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.view_select_wrap .list .detail {
	width: 100%;
	max-width: 3.10rem;
	padding: 0 0.20rem;
}

@media screen and (max-width: 640px) {
	.view_select_wrap .list .detail {
		padding: 0.10rem 0.20rem;
	}
}

.view_select_wrap .list .detail a {
	line-height: 0;
	padding: 0.17rem 0 0.26rem;
	text-align: center;
	display: block;
	background-color: #FFF;
	border: 1px solid #FA7D91;
	border-radius: 0.4rem;
	
	font-size: 0.18rem;
	color: #FA7D91;
	text-decoration: none;
	letter-spacing: 0.05em;
	font-weight: 700;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 640px) {
	.view_select_wrap .list .detail a {
		line-height: 0;
		padding: 0.10rem 0 0.20rem;
		font-size: 0.15rem;
		color: #111;
		text-decoration: none;
		letter-spacing: 0.05em;
		font-weight: 700;
	}
}

.view_select_wrap .list .detail a:hover {
	background-color: #F2F2F2;
	color: #FA7D91;
}

.view_select_wrap .list .detail.active a {
	background: #FA7D91;
	color: #FFF;
	text-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
	border: 1px solid #FA7D91;
	pointer-events: none;
}

/* アイコン */
.view_select_wrap .list .detail.list_view a span::before {
	content: "";
	width: 0.20rem;
	height: 0.20rem;
	background-image: url(../img/event/icon_list_view_off.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	position: relative;
	top: 0.04rem;
	margin-right: 0.06rem;
}

.view_select_wrap .list .detail.list_view.active a span::before {
	background-image: url(../img/event/icon_list_view_active.svg);
}

.view_select_wrap .list .detail.cal_view a span::before {
	content: "";
	width: 0.20rem;
	height: 0.20rem;
	background-image: url(../img/event/icon_cal_view_off.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	display: inline-block;
	position: relative;
	top: 0.04rem;
	padding-right: 0.06rem;
}

.view_select_wrap .list .detail.cal_view.active a span::before {
	background-image: url(../img/event/icon_cal_view_active.svg);
}

/* ボタン */
.other_btn {
	text-align: center;
}

.other_btn a {
	font-size: 0.2rem;
	font-weight: bold;
	color: #000;
	border-bottom: 1px solid #45B035;
	padding-bottom: 0.1rem;
	position: relative;
}

@media screen and (max-width: 640px) {
	.other_btn a {
		font-size: 0.15rem;
		padding-bottom: 0.05rem;
		margin-right: 0.20rem;
	}
}

.other_btn a:hover {
	opacity: 0.7;
}

.other_btn a::after {
	content: '';
	width: 0.36rem;
	height: 0.36rem;
	display: block;
	background: url(../img/event/othe_btn_arrow.svg) no-repeat center;
	background-size: cover;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: -0.5rem;
	transition: all .3s;
}

@media screen and (max-width: 640px) {
	.other_btn a::after {
		width: 0.30rem;
		height: 0.30rem;
		right: -0.4rem;
	}
}

.other_btn a:hover:after {
	right: -0.57rem;
}

@media screen and (max-width: 640px) {
	.other_btn a:hover:after {
		right: -0.40rem;
	}
}

/* カテゴリ切り替え */
.category_link_wrap .list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	border: 1px solid #CCC;
	padding: 0.23rem 0;
	border-radius: 0.50rem;
}
@media screen and (max-width: 640px) {
	.category_link_wrap .list {
		justify-content: space-between;
		padding: 0.20rem;
		border-radius: 0.06rem;
		margin-bottom: 0.40rem;
		gap: 0.10rem;
		position: relative;
		z-index: 2;
	}
}

.category_link_wrap .list .link {
	padding: 0 0.14rem;
	width: 21.5%;
}
@media screen and (max-width: 640px) {
	.category_link_wrap .list .link {
		padding: 0;
		width: 48%;
	}
	/* .category_link_wrap .list .link.all {
		width: 100%;
	} */
}

.category_link_wrap .list .link a {
	display: block;
	text-align: center;
	padding: 0.20rem 0;
	border-radius: 0.30rem;
	font-size: 0.16rem;
	font-weight: 700;
	color: #FFF;
	box-shadow: 0 2px 0 rgba(0,0,0,0.2);
}
@media screen and (max-width: 640px) {
	.category_link_wrap .list .link a {
		padding: 0.20rem 0 0.22rem;
		border-radius: 0.10rem;
		font-size: 0.14rem;
	}
}

.category_link_wrap .list .link.all a {
	background-color: #111;
}
.category_link_wrap .list .link.party a {
	background-color: #FA7D91;
}
.category_link_wrap .list .link.register a {
	background-color: #45B035;
}
.category_link_wrap .list .link.consul a {
	background-color: #FC9303;
}
.category_link_wrap .list .link.seminar a {
	background-color: #5652C3;
}

/* 一覧リスト */
#event_list {
	margin-top: 0.8rem;
}

@media screen and (max-width: 640px) {
	#event_list {
		margin-top: 0.60rem;
	}
}

#event_list .sec_title {
	margin-top: -1.15rem;
}

@media screen and (max-width: 640px) {
	#event_list .sec_title {
		margin-top: -1.05rem;
	}
}

.event_list_title {
	font-size: 0.24rem;
	font-weight: 700;
	text-align: center;
	padding: 0.25rem 0 0.4rem;
	box-sizing: border-box;
}

@media screen and (max-width: 640px) {
	.event_list_title {
		font-size: 0.18rem;
		padding: 0.25rem 0 0.20rem;
	}
}

#event_list .tab {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 0.4rem;
	padding: 0.15rem 0.30rem;
	box-sizing: border-box;
}

@media screen and (max-width: 640px) {
	#event_list .tab {
		margin-top: 0.20rem;
		border-radius: 0.06rem;
		padding: 0.20rem 0.10rem;
	}
}

#event_list .tab h4 {
	width: 1.8rem;
	font-size: 0.19rem;
	font-family: 'Poppins', sans-serif;
	font-weight: bold;
}

@media screen and (max-width: 640px) {
	#event_list .tab  h4 {
		width: 100%;
		font-size: 0.15rem;
		text-align: center;
		padding-bottom: 0.10rem;
	}
}

#event_list .tab .list {
	width: calc(100% - 1.8rem);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

@media screen and (max-width: 640px) {
	#event_list .tab .list {
		width: 100%;
		justify-content: center;
	}
}

#event_list .tab .list .item {
	width: calc(100% / 6);
}

@media screen and (max-width: 640px) {
	#event_list .tab .list .item {
		width: 48%;
		padding: 0.10rem 0.05rem 0.05rem;
		box-sizing: border-box;
	}
	#event_list .tab .list .item:nth-child(1) {
		width: 100%;
		max-width: calc(100% - 0.10rem);
		padding: 0.10rem 0.05rem 0.05rem;
	}
}

#event_list .tab .list .item a {
	display: block;
	color: #fff;
	font-weight: bold;
	font-size: 0.15rem;
	max-width: 1.50rem;
	text-align: center;
	padding: 0.1rem 0;
	border-radius: 0.3rem;
}

@media screen and (max-width: 640px) {
	#event_list .tab .list .item a {
		font-size: 0.14rem;
		width: 100%;
		max-width: 100%;
	}
}

#event_list .tab .list .item a:hover {
	opacity: 0.7;
}

#event_list .tab .list .item.center a {
	background: #FC9303;
}

#event_list .tab .list .item.doou a {
	background: #E62F8B;
}

#event_list .tab .list .item.dohoku a {
	background: #2EA8E1;
}

#event_list .tab .list .item.dotou a {
	background: #45B035;
}

#event_list .tab .list .item.donan a {
	background: #965BC1;
}

#event_list .tab .list .item.all a {
	background: #000;
}

#event_list .tab .list .item.deactive a {
	background: #CCCCCC;
	color: #fff;
}

@media screen and (max-width: 640px) {
	#event_list .tab .list .item.deactive a {
		width: 100%;
	}
}

#event_list .list_wrap {
	background: linear-gradient(0deg, #FFFCF7 0%, #FFFCF7 95%, #fff 5%, #fff 100%);
	position: relative;
	padding-bottom: 1.00rem;
}
#event_list .list_wrap::after {
	content: '';
	display: block;
	width: 100%;
	height: 3.90rem;
	background: url(../img/event/event_list_bg.svg) no-repeat;
	background-position: center top;
	background-size: cover;
	position: absolute;
	bottom: 0;
	z-index: 0;
}
@media screen and (max-width: 640px) {
	#event_list .list_wrap::after {
		background-position: center bottom;
		background-size: 100% auto;
	}
}

/* コンテンツ */
#event_list .cont .list {
	display: flex;
	flex-wrap: wrap;
	margin-top: 0.75rem;
	gap: 0 0.6rem;
}

@media screen and (max-width: 640px) {
	#event_list .cont .list {
		margin-top: 0.15rem;
	}
}

#event_list .cont .item {
	width: 30%;
	margin-bottom: 0.8rem;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 640px) {
	#event_list .cont .item {
		width: 100%;
		margin-bottom: 0.3rem;
	}
}

/* #event_list .cont .item:nth-child(2),
#event_list .cont .item:nth-child(5),
#event_list .cont .item:nth-child(8) {
	margin: 0 5% 0.80rem;
} */

/* @media screen and (max-width: 640px) {
	#event_list .cont .item:nth-child(2),
	#event_list .cont .item:nth-child(5),
	#event_list .cont .item:nth-child(8) {
		margin: 0 0 0.30rem 0;
	}
} */

#event_list .cont .item a {
	display: block;
	height: 100%;
	color: #000;
	position: relative;
	background-color: #FFF;
	border-radius: 0.10rem;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 640px) {
	#event_list .cont .item a {
		display: flex;
		position: relative;
	}
}


#event_list .cont .item a:hover {
	opacity: 0.7;
}

/* カテゴリー */
#event_list .cont .item a .category {
	display: inline-block;
	color: #fff;
	font-size: 0.15rem;
	font-weight: bold;
	text-align: center;
	width: 1.10rem;
	padding: 0.05rem 0 0.07rem;
	box-sizing: border-box;
	border-radius: 0.2rem;
	position: absolute;
	top: -0.13rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

@media screen and (max-width: 640px) {
	#event_list .cont .item a .category {
		font-size: 0.11rem;
		min-width: 1.05rem;
		width: auto;
		padding: 0.06rem;
		top: -0.1rem;
		left: 0.14rem;
		transform: translateX(0);
	}
	#event_list .cont .item a .category span {
		display: none;
	}
}


#event_list .cont .item a .category.party {
	background: #FA7D91;
}

#event_list .cont .item a .category.register {
	background: #45B035;
}

#event_list .cont .item a .category.consul {
	background: #FC9303;
}

#event_list .cont .item a .category.seminar {
	background: #5652C3;
}

#event_list .cont .item a .category.all {
	background: #000;
}

#event_list .cont .item a .text_wrap {
	background-color: #fff;
	padding: 0.2rem;
	border-radius: 0 0 0.1rem 0.1rem;
}

@media screen and (max-width: 640px) {
	#event_list .cont .item a .text_wrap {
		width: calc(100% - 1.30rem);
		box-sizing: border-box;
		padding: 0.15rem;
	}
}

/* 日付 */
#event_list .cont .item a .date {
	font-size: 0.15rem;
	font-family: 'Poppins', sans-serif;
}
@media screen and (max-width: 640px) {
	#event_list .cont .item a .date {
		font-size: 0.12rem;
	}
}

#event_list .cont .item a .date span {
	display: inline-block;
	font-size: 0.13rem;
	color: #fff;
	background-color: #000;
	padding: 0.03rem 0.04rem 0.04rem;
	margin-right: 0.1rem;
	font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 640px) {
	#event_list .cont .item a .date span {
		font-size: 0.10rem;
	}
}

/* 写真 */
#event_list .cont .item a .ph_wrap {
	width: 3.6rem;
	height: 2.3rem;
}

@media screen and (max-width: 640px) {
	#event_list .cont .item a .ph_wrap {
		width: 1.3rem;
		height: 1.3rem;
	}
}


#event_list .cont .item a .ph_wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	overflow: hidden;
	border-radius: 0.1rem 0.1rem 0 0;
}
@media screen and (max-width: 640px) {
	#event_list .cont .item a .ph_wrap img {
		border-radius: 0.1rem 0 0 0.1rem;
	}
}


/* タイトル */
#event_list .cont .item a .cont_title {
	font-size: 0.18rem;
	font-weight: bold;
	margin-top: 0.1rem;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
}

@media screen and (max-width: 640px) {
	#event_list .cont .item a .cont_title {
		font-size: 0.15rem;
		margin-top: 0.05rem;
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
	}
}


/* テキスト */
#event_list .cont .item a .text {
	font-size: 0.15rem;
	line-height: 1.66;
	margin-top: 0.15rem;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	margin-bottom: 0.10rem;
}

@media screen and (max-width: 640px) {
	#event_list .cont .item a .text {
		font-size: 0.13rem;
		margin: 0.03rem 0 0;
		-webkit-line-clamp: 1;
	}
}



/* カレンダーボックス */
.cal_wrap {
	background: #fff;
	border-radius: 0.1rem;
	padding: 0.4rem;
	box-sizing: border-box;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}


/*=======================
詳細
=======================*/
#event_detail {
	padding-bottom: 1.00rem;
	padding-top: 0.80rem;
}

@media screen and (max-width: 640px) {
	#event_detail {
		padding-bottom: 0;
		padding-top: 0.60rem;
	}
}

#event_detail .cont_wrap {
	background: linear-gradient(0deg, #FFFCF7 0%, #FFFCF7 90%, #fff 10%, #fff 100%);
	position: relative;
	padding-bottom: 1.00rem;
}
#event_detail .cont_wrap::after {
	content: '';
	display: block;
	width: 100%;
	height: 3.90rem;
	background: url(../img/event/event_list_bg.svg) no-repeat;
	background-position: center top;
	background-size: cover;
	position: absolute;
	bottom: 0;
	z-index: 0;
}
@media screen and (max-width: 640px) {
	#event_detail .cont_wrap::after {
		background-position: center bottom;
		background-size: 100% auto;
	}
}


#event_detail .event_detail_wrap {
	border: 3px solid #FA7D91;
	background-color: rgba(255, 255, 255, 0.85);
	-webkit-backdrop-filter: blur(10px);
	backdrop-filter: blur(10px);
	margin-bottom: 0.50rem;
	position: relative;
	z-index: 1;
}

/* タイトル */
#event_detail .event_detail_wrap .event_detail_header {
	border-bottom: 3px solid #FA7D91;
	padding: 0.30rem;
	/* display: flex;
	flex-wrap: wrap;
	justify-content: space-between; */
}

@media screen and (max-width: 640px) {
	#event_detail .event_detail_wrap .event_detail_header {
		border-bottom: 2px solid #FA7D91;
		padding: 0.20rem;
		display: block;
	}
}

/* カテゴリ */
#event_detail .event_detail_wrap .event_detail_header .cat_box {
	width: 1.60rem;
	padding: 0.20rem 0 0.22rem;
	text-align: center;
	font-size: 0.18rem;
	letter-spacing: 0.075em;
	font-weight: 700;
	border-radius: 0.20rem;
	color: #FFF;
	line-height: 0;
}

@media screen and (max-width: 640px) {
	#event_detail .event_detail_wrap .event_detail_header .cat_box {
		box-sizing: border-box;
		width: auto;
		display: inline-block;
		padding: 0.05rem 0.20rem;
		line-height: 1.5;
		font-size: 0.13rem;
		margin-bottom: 0.15rem;
	}
}


#event_detail .event_detail_wrap .event_detail_header .cat_box.party {
	background: #FA7D91;
}

#event_detail .event_detail_wrap .event_detail_header .cat_box.register {
	background: #45B035;
}

#event_detail .event_detail_wrap .event_detail_header .cat_box.consul {
	background: #FC9303;
}

#event_detail .event_detail_wrap .event_detail_header .cat_box.seminar {
	background: #5652C3;
}

#event_detail .event_detail_wrap .event_detail_header .title_wrap {
	width: calc(100% - 1.80rem);
}

@media screen and (max-width: 640px) {
	#event_detail .event_detail_wrap .event_detail_header .title_wrap {
		width: 100%;
	}
}

#event_detail .event_detail_wrap .event_detail_header .title_wrap .title {
	font-size: 0.26rem;
	letter-spacing: 0.05em;
	font-weight: 700;
	line-height: 1.65;
}

@media screen and (max-width: 640px) {
	#event_detail .event_detail_wrap .event_detail_header .title_wrap .title {
		font-size: 0.18rem;
		line-height: 1.40;
		padding-bottom: 0.15rem;
	}
}

#event_detail .event_detail_wrap .event_detail_header .title_wrap .event_date {
	font-size: 0.22rem;
}

@media screen and (max-width: 640px) {
	#event_detail .event_detail_wrap .event_detail_header .title_wrap .event_date {
		font-size: 0.15rem;
		line-height: 1.5;
	}
}

/* 情報 */
#event_detail .event_detail_wrap .event_info_wrap {
	padding: 0.30rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	flex-direction: row-reverse;
}

@media screen and (max-width: 640px) {
	#event_detail .event_detail_wrap .event_info_wrap {
		padding: 0.20rem 0;
	}
}

/* 画像 */
#event_detail .event_detail_wrap .event_info_wrap .ph_wrap {
	width: 100%;
	max-width: 4.50rem;
}

#event_detail .event_detail_wrap .event_info_wrap .ph_wrap .ph {
	padding-bottom: 0.20rem;
}

@media screen and (max-width: 640px) {
	#event_detail .event_detail_wrap .event_info_wrap .ph_wrap .slide {
		padding-bottom: 0;
		width: 80vw !important;
		padding: 0 0.05rem;
		box-sizing: border-box;
	}
}

#event_detail .event_detail_wrap .event_info_wrap .ph_wrap .ph img {
	width: 100%;
}

/* テキスト */
#event_detail .event_detail_wrap .event_info_wrap .text_wrap {
	width: 100%;
	max-width: 6.50rem;
}

@media screen and (max-width: 640px) {
	#event_detail .event_detail_wrap .event_info_wrap .text_wrap {
		padding: 0.20rem 0.20rem 0;
		box-sizing: border-box;
	}
}

#event_detail .event_detail_wrap .event_info_wrap .text_wrap .textbox {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	font-size: 0.18rem;
	line-height: 1.75;
	letter-spacing: 0.05em;
	padding-bottom: 0.20rem;
}

@media screen and (max-width: 640px) {
	#event_detail .event_detail_wrap .event_info_wrap .text_wrap .textbox {
		font-size: 0.15rem;
		line-height: 1.65;
	}
}

#event_detail .event_detail_wrap .event_info_wrap .text_wrap .textbox .title {
	width: 1.30rem;
	font-weight: 700;
	color: #FA7D91;
}

@media screen and (max-width: 640px) {
	#event_detail .event_detail_wrap .event_info_wrap .text_wrap .textbox .title {
		width: 100%;
		padding-bottom: 0.05rem;
		border-bottom: 1px solid #FA7D91;
		margin-bottom: 0.10rem;
	}
}

#event_detail .event_detail_wrap .event_info_wrap .text_wrap .textbox .text {
	width: calc(100% - 1.50rem);
}

/* テキストリンク */
#event_detail .event_detail_wrap .event_info_wrap .text_wrap .textbox .text a {
	font-weight: 600;
	color: #111;
	text-decoration: underline;
}

#event_detail .event_detail_wrap .event_info_wrap .text_wrap .textbox .text a:hover {
	text-decoration: none;
}

/* 申し込みフォームのボタン */
#event_detail .event_detail_wrap .event_info_wrap .text_wrap .textbox .text .form_btn {
	width: 100%;
	max-width: 3.60rem;
}

#event_detail .event_detail_wrap .event_info_wrap .text_wrap .textbox .text .form_btn a {
	text-align: center;
	line-height: 0;
	text-decoration: underline;
}

#event_detail .event_detail_wrap .event_info_wrap .text_wrap .textbox .text .form_btn a:hover {
	opacity: 0.7;
	text-decoration: none;
}


@media screen and (max-width: 640px) {
	#event_detail .event_detail_wrap .event_info_wrap .text_wrap .textbox .text {
		width: 100%;
		font-size: 0.14rem;
	}
}

/* 申込方法 */
#event_detail .event_detail_wrap .event_info_wrap .text_wrap .entry_wrap {
	background-color: #FEF1F3;
	padding: 0.20rem;
	margin-bottom: 0.20rem;
}

@media screen and (max-width: 640px) {
	#event_detail .event_detail_wrap .event_info_wrap .text_wrap .entry_wrap {
		padding: 0.15rem;
	}
}

#event_detail .event_detail_wrap .event_info_wrap .text_wrap .entry_wrap .title {
	font-size: 0.20rem;
	font-weight: 700;
	color: #FA7D91;
	position: relative;
	margin-bottom: 0.20rem;
}

@media screen and (max-width: 640px) {
	#event_detail .event_detail_wrap .event_info_wrap .text_wrap .entry_wrap .title {
		font-size: 0.16rem;
	}
}

#event_detail .event_detail_wrap .event_info_wrap .text_wrap .entry_wrap .title::after {
	content: "";
	width: 100%;
	height: 1px;
	background-color: #FA7D91;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 0;
}

#event_detail .event_detail_wrap .event_info_wrap .text_wrap .entry_wrap .title span {
	display: inline-block;
	position: relative;
	z-index: 1;
	background-color: #FEF1F3;
	padding-right: 0.10rem;
}

#event_detail .event_detail_wrap .event_info_wrap .text_wrap .entry_wrap p {
	font-size: 0.16rem;
	line-height: 1.85;
}

@media screen and (max-width: 640px) {
	#event_detail .event_detail_wrap .event_info_wrap .text_wrap .entry_wrap p {
		font-size: 0.14rem;
		line-height: 1.65;
	}
}

#event_detail .event_detail_wrap .event_info_wrap .text_wrap .entry_wrap p a {
	color: #111;
	font-weight: 500;
	text-decoration: underline;
}

#event_detail .event_detail_wrap .event_info_wrap .text_wrap .entry_wrap p a:hover {
	text-decoration: none;
}

/* MAP 2021.9.16追加 */
#event_detail .event_detail_wrap .event_info_wrap .event_gmap_wrap {
	width: 100%;
	height: 4.00rem;
	padding-top: 0.40rem;
}

@media screen and (max-width: 640px) {
	#event_detail .event_detail_wrap .event_info_wrap .event_gmap_wrap {
		height: 2.50rem;
		padding: 0 0.15rem;
	}
}

#event_detail .event_detail_wrap .event_info_wrap .event_gmap_wrap iframe {
	width: 100%;
	height: 100%;
}

/* 戻るボタン */
#event_detail .back_btn {
	width: 100%;
	max-width: 4.80rem;
	margin: auto;
}

#event_detail .back_btn a {
	display: block;
	text-decoration: none;
	line-height: 0;
	padding: 0.34rem 0 0.36rem;
	color: #FFF;
	
	font-size: 0.24rem;
	font-weight: 700;
	letter-spacing: 0.025em;
	text-shadow: 0 2px 0 rgba(0, 0, 0, 0.1);
	position: relative;
	border-radius: 0.35rem;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
	text-align: center;
}

@media screen and (max-width: 640px) {
	#event_detail .back_btn a {
		padding: 0.25rem 0 0.27rem;
		font-size: 0.15rem;
	}
}

#event_detail .back_btn a:hover {
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

#event_detail .back_btn a::before {
	content: "";
	width: 0.25rem;
	height: 0.18rem;
	background-image: url(../common/img/link_arrow_rev.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0.25rem;
	top: 50%;
	transform: translateY(-50%);
}

@media screen and (max-width: 640px) {
	#event_detail .back_btn a::before {
		width: 0.18rem;
		height: 0.18rem;
		left: 0.15rem;
	}
}

/* ボタン */
#event_detail .btn_common a{
	max-width: 3.00rem;
	margin: auto;
}

/*カレンダープラグイン*/
@media screen and (max-width: 499px) {
	.fc-view-container {
		overflow-x: scroll;
	}

	.fc-view-container .fc-view {
		width: 100%;
		display: block;
	}

	.fc table {
		box-sizing: border-box;
	}
}

/* 曜日 */
.fc-widget-header .fc-day-header {
	height: 0.25rem;
	vertical-align: middle;
}

/* 年月 */
.fc-toolbar h2 {
	font-size: 0.20rem !important;
	font-weight: 700 !important;
}

@media screen and (max-width: 499px) {
	.fc-toolbar {
		text-align: left !important;
	}

	.fc-toolbar h2 {
		margin-bottom: 0.15rem !important;
	}
}

.fc-basic-view tbody .fc-row {
	min-height: 1rem !important;
}

@media screen and (max-width: 499px) {
	.fc-basic-view tbody .fc-row {
		min-height: 0.70rem !important;
	}

	.fc-event-container {
		padding: 0.06rem !important;
	}
}

/* カレンダー上部の曜日 */
.fc-day-header {
	font-size: 0.14rem !important;
	padding: 0.06rem !important;
	font-weight: 400 !important;
}

.fc-widget-header {
	/*	padding: 0.04rem !important;*/
}

/* カレンダー内の日付 */
.fc-day-number {
	font-size: 0.14rem !important;
}

.fc-day-number::before {
	content: "";
	display: block;
	padding: 0.04rem;
}

@media screen and (max-width: 499px) {
	.fc-day-number::before {
		padding: 0;
	}
}

.fc-day-number::after {
	content: "";
	display: block;
	padding: 0.04rem;
}

.fc-ltr .fc-basic-view .fc-day-number {
	padding-right: 0.04rem !important;
}

@media screen and (max-width: 499px) {
	.fc-ltr .fc-basic-view .fc-day-number {
		background-color: #F2F2F2;
	}

	.fc-list-header-right::after {
		content: "日";
	}
}

/* リンクオフ */
.fc-event.fc-draggable,
.fc-event[href] {
	padding: 0.04rem;
	font-size: 0.12rem !important;
	border-radius: 3px;
	margin-top: 0.02rem;
}

/* 本日 */
.eo-fullcalendar-reset.fc-unthemed .fc-today {
	font-weight: 700;
	background: none !important;
}

@media screen and (max-width: 499px) {
	.eo-fullcalendar-reset.fc-unthemed thead .fc-today {
		background-color: rgba(217, 239, 226, 0.7) !important;
	}
}

/* スマホ時のカレンダー送りボタン郡 */
@media screen and (max-width: 640px) {
	.fc-toolbar .fc-left {
		float: left !important;
	}

	.fc-toolbar .fc-right {
		float: right !important;
		position: relative;
		top: -0.04rem;
		display: flex;
	}
}

/* リンクオフ */
.fc-event-container a {
	/*	pointer-events: none;*/
}


/*カレンダーの時間を消す*/
.fc-day-grid-event .fc-time {
	display: none;
}


/*=============================
フォーム
=============================*/
#event_detail .event_detail_wrap.form .event_info_wrap .text_wrap {
	max-width: 100%;
}

#event_detail .event_detail_wrap.form .event_info_wrap .text_wrap .textbox .title {
	width: 2rem;
	position: relative;
}

/* 必須アイコン */
#event_detail .event_detail_wrap.form .event_info_wrap .text_wrap .textbox .title.required::after {
	content: "必須";
	font-size: 0.12rem;
	font-weight: 600;
	color: #FFF;
	background-color: #C1272D;
	line-height: 1;
	padding: 0.04rem 0.04rem 0.05rem;
	position: absolute;
	right: 0;
	top: 0.06rem;
	border-radius: 0.04rem;
}

#event_detail .event_detail_wrap.form .event_info_wrap .text_wrap .textbox .text {
	width: calc(100% - 2.2rem);
}

#event_detail .event_detail_wrap.form .event_info_wrap .text_wrap .textbox .text .before_text {
	font-size: 0.18rem;
	font-weight: 700;
}

#event_detail .event_detail_wrap.form .event_info_wrap .text_wrap .textbox .text input[type="text"] {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #CCC;
	padding: 0.10rem;
	font-size: 0.16rem;
	border-radius: 0.04rem;
	display: block;
}

#event_detail .event_detail_wrap.form .event_info_wrap .text_wrap .textbox .text .small_text {
	font-size: 0.14rem;
	line-height: 1.65;
	padding-top: 0.08rem;
}

#event_detail .event_detail_wrap.form .event_info_wrap .text_wrap .textbox .text .radio_list {
	display: flex;
	flex-wrap: wrap;
}

#event_detail .event_detail_wrap.form .event_info_wrap .text_wrap .textbox .text .radio_list.col3 .radio {
	width: 33.3%;
}

#event_detail .event_detail_wrap.form .event_info_wrap .text_wrap .textbox .text .radio_list.col4 .radio {
	width: 25%;
}

#event_detail .event_detail_wrap.form .event_info_wrap .text_wrap .textbox .text .radio_list.col5 .radio {
	width: 20%;
}

/* アンケートテキスト */
#event_detail .event_detail_wrap.form .event_info_wrap .text_wrap .textbox .text .enq_text {
	font-size: 0.16rem;
	line-height: 1.85;
	padding-bottom: 0.15rem;
}

#event_detail .event_detail_wrap.form .event_info_wrap .text_wrap .textbox .text .enq_text_wrap .answer_title {
	font-weight: 700;
	font-size: 0.16rem;
	color: #FA7D91;
	line-height: 1.85;
}

#event_detail .event_detail_wrap.form .event_info_wrap .text_wrap .textbox .text .enq_text_wrap .answer_title span {
	opacity: 0.5;
	display: inline-block;
	padding-right: 0.04rem;
}

#event_detail .event_detail_wrap.form .event_info_wrap .text_wrap .textbox .text textarea {
	width: 100%;
	box-sizing: border-box;
	border: 1px solid #CCC;
	padding: 0.10rem;
	font-size: 0.16rem;
	border-radius: 0.04rem;
	display: block;
	min-height: 3.00rem;
}


#event_detail .event_detail_wrap.form .event_info_wrap .text_wrap .textbox .text .enq_text_wrap textarea {
	margin-bottom: 0.40rem;
}

/* 送信ボタン */
#event_detail .event_detail_wrap.form .submit_btn_box {
	padding-bottom: 0.50rem;
}

#event_detail .event_detail_wrap.form .submit_btn_box .text {
	font-size: 0.16rem;
	line-height: 1.85;
	padding-bottom: 0.10rem;
	text-align: center;
}

#event_detail .event_detail_wrap.form .submit_btn_box .btn_wrap {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

#event_detail .event_detail_wrap.form .submit_btn_box .btn_wrap .btn {
	width: 100%;
	max-width: 3.00rem;
	margin: 0.10rem;
}

#event_detail .event_detail_wrap.form .submit_btn_box .btn_wrap .btn input {
	display: block;
	border: 0;
	padding: 0.25rem 0 0.27rem;
	text-align: center;
	width: 100%;
	font-size: 0.20rem;
	font-weight: 700;
	color: #FFF;
	border-radius: 0.30rem;
	line-height: 0;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	cursor: pointer;
	transition: all 0.3s;
}

#event_detail .event_detail_wrap.form .submit_btn_box .btn_wrap .btn input:hover {
	opacity: 0.7;
}