@charset "utf-8";

/*============================
左右の帯
============================*/
body::before {
	content: '';
	width: 0.62rem;
	height: 100vh;
	position: fixed;
	left: 0;
	top: 0;
	background-image: url(../img/obi_left.png);
	background-position: 0 0;
	background-repeat: repeat-y;
	background-size: 100% auto;
	z-index: 10;
}

@media screen and (max-width: 640px) {
	body::before {
		width: 0.20rem;
	}
}

body::after {
	content: '';
	width: 0.62rem;
	height: 100vh;
	position: fixed;
	right: 0;
	top: 0;
	background-image: url(../img/obi_right.png);
	background-position: 0 0;
	background-repeat: repeat-y;
	background-size: 100% auto;
	z-index: 10;
}

@media screen and (max-width: 640px) {
	body::after {
		width: 0.20rem;
	}
}

/*============================
ヘッダー
============================*/
header {
	transition: transform 0.5s 0.3s;
}

@media screen and (max-width: 640px) {
	header {
		/* スマホ用の記述 */
	}
}

header .logo {
	width: 4.54rem;
	margin: auto;
	padding: 0.30rem 0;
}

@media screen and (max-width: 640px) {
	header .logo {
		width: 2.80rem;
		padding: 0.20rem 0 0.15rem;
	}
}

header .logo a:hover {
	opacity: 0.7;
}

/*============================
MV
============================*/
.mv {
	background-image: url(../img/mv_pc.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
}

@media screen and (max-width: 640px) {
	.mv {
		background-image: url(../img/mv_sp.jpg);
	}
}

.mv .catch {
	width: 100%;
	max-width: 6.17rem;
	margin: auto;
	position: relative;
	padding: 0.90rem 0;
}

@media screen and (max-width: 640px) {
	.mv .catch {
		width: calc(100% - 0.80rem);
		padding: 1.00rem 0;
	}
}

.mv::before {
	content: "";
	width: 3.78rem;
	height: 2.90rem;
	background-image:url(../img/mv_wave_left.svg);
	background-position: left bottom;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 210;
}

@media screen and (max-width: 640px) {
	.mv::before {
		width: 1.05rem;
		height: 0.80rem;
	}
}

.mv::after {
	content: "";
	width: 4.44rem;
	height: 2.82rem;
	background-image:url(../img/mv_wave_right.svg);
	background-position: left bottom;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 0;
	bottom: 0;
	z-index: 20;
}

@media screen and (max-width: 640px) {
	.mv::after {
		width: 1.20rem;
		height: 0.80rem;
	}
}

/*============================
共通パーツ
============================*/
.sec_title_wrap {
	position: relative;
	margin-bottom: 0.40rem;
}

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

.sec_title_wrap::before {
	content: "";
	width: 0.89rem;
	height: 0.60rem;
	background-image: url(../img/title_deco_left.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: -0.20rem;
	bottom: -0.20rem;
	z-index: 2;
}

@media screen and (max-width: 640px) {
	.sec_title_wrap::before {
		width: 0.37rem;
		height: 0.25rem;
		left: -0.10rem;
		bottom: -0.10rem;
	}
}

.sec_title_wrap::after {
	content: "";
	width: 1.21rem;
	height: 1.25rem;
	background-image: url(../img/title_deco_right.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 0;
	top: -0.50rem;
	z-index: 2;
}

@media screen and (max-width: 640px) {
	.sec_title_wrap::after {
		width: 0.40rem;
		height: 0.41rem;
		right: -0.06rem;
		top: -0.10rem;
	}
}

/*============================
イントロ
============================*/
.intro {
	padding: 0.90rem 0;
}

@media screen and (max-width: 640px) {
	.intro {
		padding: 0.40rem 0;
	}
}

.intro .text {
	font-size: 0.24rem;
	font-weight: 700;
	line-height: 1.91;
	text-align: center;
	color: #004989;
	letter-spacing: 0.075em;
}

@media screen and (max-width: 640px) {
	.intro .text {
		font-size: 0.15rem;
		font-weight: 500;
		text-align: justify;
		line-height: 1.91;
		color: #004989;
		letter-spacing: 0.05em;
	}
}

/*============================
会場
============================*/
.place {
	background-color: #00213E;
	background-image: url(../img/place_bg_pc.jpg);
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

@media screen and (max-width: 640px) {
	.place {
		background-image: url(../img/place_bg_sp.jpg);
	}
}

.place .title {
	padding-top: 0.90rem;
	margin:0 auto 0.40rem;
	text-align: center;
	max-width: 4.77rem;
}

@media screen and (max-width: 640px) {
	.place .title {
		padding-top: 0.50rem;
		margin:0 auto 0.20rem;
		max-width: 2.50rem;
	}
}

.place .lead_text {
	font-size: 0.18rem;
	font-weight: 700;
	line-height: 2;
	text-align: center;
	color: #FFF;
	letter-spacing: 0.075em;
	padding-bottom: 41.42vw;
}

@media screen and (max-width: 640px) {
	.place .lead_text {
		font-size: 0.15rem;
		font-weight: 500;
		text-align: justify;
		color: #FFF;
		letter-spacing: 0.05em;
		padding-bottom: 1.70rem;
	}
}

.place .textbox {
	width: 100%;
	max-width: 5.69rem;
}

.place .textbox .text {
	font-size: 0.18rem;
	font-weight: 700;
	line-height: 2;
	color: #FFF;
	padding: 0.20rem 0 0.30rem;
}

@media screen and (max-width: 640px) {
	.place .textbox .text {
		font-size: 0.14rem;
		font-weight: 500;
		line-height: 1.85;
		padding: 0 0 0.20rem;
	}
}

.place .uchiwa_box {
	position: relative;
	padding-bottom: 0.60rem;
}

@media screen and (max-width: 640px) {
	.place .uchiwa_box {
		padding-bottom: 0.40rem;
	}
}

.place .uchiwa_box::before {
	content: "";
	width: 4.70rem;
	height: 4.92rem;
	background-image: url(../img/place_uchiwa_image.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: -0.40rem;
	top: -0.40rem;
	z-index: 1;
}

@media screen and (max-width: 640px) {
	.place .uchiwa_box::before {
		content: none;
	}
}

.place .uchiwa_box .textbox .tokuten_box {
	border: 1px solid #FFF;
	border-radius: 0.10rem;
	padding: 0.15rem;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	width: fit-content;
}

@media screen and (max-width: 640px) {
	.place .uchiwa_box .textbox .tokuten_box {
		border-radius: 0.06rem;
		width: 100%;
		box-sizing: border-box;
	}
}

.place .uchiwa_box .textbox .tokuten_box .tokuten_title {
	font-size: 0.18rem;
	font-weight: 700;
	color: #FFF;
	width: 1.40rem;
	text-align: center;
}

@media screen and (max-width: 640px) {
	.place .uchiwa_box .textbox .tokuten_box .tokuten_title {
		font-size: 0.16rem;
		width: 100%;
		padding-bottom: 0.10rem;
	}
}

.place .uchiwa_box .textbox .tokuten_box .list {
	width: calc(100% - 1.40rem);
	padding-left: 0.20rem;
	border-left: 1px dotted #FFF;
	box-sizing: border-box;
}

@media screen and (max-width: 640px) {
	.place .uchiwa_box .textbox .tokuten_box .list {
		width: 100%;
		padding-left: 0;
		border-top: 1px dotted #FFF;
		border-left: 0;
		padding-top: 0.10rem;
	}
}

.place .uchiwa_box .textbox .tokuten_box .list .text {
	font-size: 0.14rem;
	font-weight: 500;
	line-height: 1.75;
	padding: 0;
	letter-spacing: 0.075em;
}

@media screen and (max-width: 640px) {
	.place .uchiwa_box .textbox .tokuten_box .list .text {
		font-size: 0.13rem;
		letter-spacing: 0.05em;
	}
}

.place .uchiwa_box .textbox .small_caption {
	padding-top: 0.10rem;
	font-size: 0.12rem;
	color: #FFF;
	line-height: 1.75;
}

/*============================
お得に過ごそう
============================*/
.offer {
	padding: 0.90rem 0;
}

@media screen and (max-width: 640px) {
	.offer {
		padding: 0.40rem 0;
	}
}

.offer .anc_link_wrap {
	padding: 0.60rem 0 1.10rem;
}

@media screen and (max-width: 640px) {
	.offer .anc_link_wrap {
		padding: 0.30rem 0 0.90rem;
	}
}

.offer .anc_link_wrap .list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.offer .anc_link_wrap .list .link {
	width: 100%;
	max-width: 3.16rem;
	position: relative;
}

@media screen and (max-width: 640px) {
	.offer .anc_link_wrap .list .link {
		max-width: 100%;
		padding-bottom: 0.20rem;
	}
}

.offer .anc_link_wrap .list .link a {
	background-color: #004989;
	border-radius: 0.10rem;
	box-shadow: 0 0.03rem 0 rgba(0,0,0,0.2);
	padding: 0.55rem 0 0.40rem;
	display: block;
	text-align: center;
	position: relative;
	color: #FFF;
}

@media screen and (max-width: 640px) {
	.offer .anc_link_wrap .list .link a {
		border-radius: 0.06rem;
		box-shadow: 0 0.03rem 0 rgba(0,0,0,0.2);
		padding: 0.22rem 0 0.24rem 0.70rem;
		text-align: left;
	}
}

/* アンカーリンクしたの矢印 */
.offer .anc_link_wrap .list .link a::after {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0.10rem 0.11rem 0 0.11rem;
	border-color: #AE9347 transparent transparent transparent;
	position: absolute;
	left: 50%;
	bottom: 0.15rem;
	transform: translateX(-50%);
	transition: all 0.3s;
}

@media screen and (max-width: 640px) {
	.offer .anc_link_wrap .list .link a::after {
		border-width: 0.06rem 0.06rem 0 0.06rem;
		border-color: #AE9347 transparent transparent transparent;
		position: absolute;
		left: auto;
		right: 0.10rem;
		bottom: auto;
		top: calc(50% - 0.03rem);
		transform: none;
		transition: all 0.3s;
	}
}

.offer .anc_link_wrap .list .link a:hover::after {
	bottom: 0.10rem;
}

.offer .anc_link_wrap .list .link a::before {
	content: "";
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: -0.34rem;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.3s;
}

.offer .anc_link_wrap .list .link a:hover::before {
	top: -0.40rem;
}

/* 各リンクのアイコン */
.offer .anc_link_wrap .list .link.type01 a::before {
	width: 0.38rem;
	height: 0.80rem;
	background-image: url(../img/offer_anc_icon01.svg);
}

@media screen and (max-width: 640px) {
	.offer .anc_link_wrap .list .link.type01 a::before {
		width: 0.25rem;
		height: 0.53rem;
		transform: rotate(10deg);
		left: 0.25rem;
		top: -0.10rem;
	}
}

.offer .anc_link_wrap .list .link.type02 a::before {
	width: 0.84rem;
	height: 0.84rem;
	background-image: url(../img/offer_anc_icon02.svg);
}

@media screen and (max-width: 640px) {
	.offer .anc_link_wrap .list .link.type02 a::before {
		width: 0.50rem;
		height: 0.50rem;
		left: 0.10rem;
		top: -0.06rem;
		transform: none;
	}
}

.offer .anc_link_wrap .list .link.type03 a::before {
	width: 1.01rem;
	height: 0.75rem;
	background-image: url(../img/offer_anc_icon03.svg);
}

@media screen and (max-width: 640px) {
	.offer .anc_link_wrap .list .link.type03 a::before {
		width: 0.50rem;
		height: 0.37rem;
		left: 0.10rem;
		top: 0.06rem;
		transform: none;
	}
}

.offer .anc_link_wrap .list .link a span {
	font-size: 0.20rem;
	font-weight: 700;
	letter-spacing: 0.075em;
}

@media screen and (max-width: 640px) {
	.offer .anc_link_wrap .list .link a span {
		font-size: 0.155rem;
		font-weight: 700;
		letter-spacing: 0;
	}
}

/* 各特典ボックス */
.offer_cont_wrap {
	margin: 0 -0.40rem;
	padding: 0.40rem;
	border-radius: 0.20rem;
	background-color: rgba(174, 147, 71, 0.2);
}

@media screen and (max-width: 640px) {
	.offer_cont_wrap {
		margin: 0 -0.25rem;
		padding: 1.30rem 0.15rem 0.20rem;
		border-radius: 0;
	}
	.offer_cont_wrap.type03 {
		margin: 0 -0.20rem 0;
		padding: 1.70rem 0.15rem 0.20rem;
		border-radius: 0;
	}
}

.offer_cont_wrap:nth-child(even) {
	margin: 0.90rem -0.40rem;
	background-color: rgba(0, 73, 137, 0.06);
}

@media screen and (max-width: 640px) {
	.offer_cont_wrap:nth-child(even) {
		margin: 1.00rem -0.20rem;
		padding: 1.30rem 0.15rem 0.20rem;
		border-radius: 0;
	}
}

.offer_cont_wrap .offer_header {
	position: relative;
}

.offer_cont_wrap .offer_header .textbox .title {
	padding-bottom: 0.20rem;
	position: relative;
}

@media screen and (max-width: 640px) {
	.offer_cont_wrap .offer_header .textbox .title {
		padding-bottom: 0.10rem;
	}
}

.offer_cont_wrap .offer_header .textbox .title::before {
	content: "";
	width: 1.81rem;
	height: 0.14rem;
	display: block;
	background-image: url(../img/offer_sub_title.svg);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: contain;
	padding-bottom: 0.20rem;
}

@media screen and (max-width: 640px) {
	.offer_cont_wrap .offer_header .textbox .title::before {
		width: 1.19rem;
		height: 0.10rem;
		margin: auto;
		padding-bottom: 0.10rem;
	}
}

.offer_cont_wrap .offer_header .textbox .text {
	font-size: 0.18rem;
	font-weight: 700;
	line-height: 2;
	letter-spacing: 0.075em;
	color: #004989;
}

@media screen and (max-width: 640px) {
	.offer_cont_wrap .offer_header .textbox .text {
		font-size: 0.14rem;
		font-weight: 500;
		text-align: justify;
		letter-spacing: 0.05em;
		line-height: 1.87;
	}
}

/* 特典ごとの設定 */
.offer_cont_wrap.type01 .offer_header .ph_wrap {
	width: 3.14rem;
	height: 3.14rem;
	border-radius: 3.14rem;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: -0.60rem;
	z-index: 10;
}

@media screen and (max-width: 640px) {
	.offer_cont_wrap.type01 .offer_header .ph_wrap {
		width: 1.60rem;
		height: 1.60rem;
		right: auto;
		left: calc(50% - 0.80rem);
		top: -1.90rem;
	}
}

.offer_cont_wrap.type01 .offer_header .textbox .text {
	max-width: 6.50rem;
}

.offer_cont_wrap.type02 .offer_header .ph_wrap {
	width: 3.14rem;
	height: 3.14rem;
	border-radius: 3.14rem;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: -0.60rem;
	z-index: 10;
}

@media screen and (max-width: 640px) {
	.offer_cont_wrap.type02 .offer_header .ph_wrap {
		width: 1.60rem;
		height: 1.60rem;
		right: auto;
		left: calc(50% - 0.80rem);
		top: -1.90rem;
	}
}

.offer_cont_wrap.type02 .offer_header .textbox .text {
	max-width: 6.50rem;
}

.offer_cont_wrap.type03 .offer_header .ph_wrap {
	width: 4.68rem;
	height: 2.78rem;
	border-radius: 0.10rem;
	overflow: hidden;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 10;
}

@media screen and (max-width: 640px) {
	.offer_cont_wrap.type03 .offer_header .ph_wrap {
		width: 100%;
		height: 2.60rem;
		right: auto;
		left: 50%;
		transform: translateX(-50%);
		top: -2.10rem;
	}
}

.offer_cont_wrap.type03 .offer_header .textbox .text {
	max-width: 5.00rem;
	font-size: 0.18rem;
	line-height: 1.67;
}

@media screen and (max-width: 640px) {
	.offer_cont_wrap.type03 .offer_header .textbox .text {
		max-width: 100%;
		font-size: 0.16rem;
		text-align: center;
	}
}

.offer_cont_wrap.type03 .offer_header .textbox .text strong {
	font-size: 0.26rem;
}

@media screen and (max-width: 640px) {
	.offer_cont_wrap.type03 .offer_header .textbox .text strong {
		font-size: 0.20rem;
	}
}

.offer_cont_wrap.type03 .offer_header .textbox .coupon_box {
	display: flex;
	align-items: center;
	padding: 0.14rem 0.20rem;
	background-color: #FFF;
	border: 0.04rem solid #AE9347;
	border-radius: 0.10rem;
	max-width: 3.70rem;
	box-sizing: border-box;
	margin-top: 0.15rem;
}

@media screen and (max-width: 640px) {
	.offer_cont_wrap.type03 .offer_header .textbox .coupon_box {
		display: block;
		text-align: center;
		padding: 0.14rem 0;
		border: 0.03rem solid #AE9347;
		border-radius: 0.06rem;
		max-width:100%;
	}
}

.offer_cont_wrap.type03 .offer_header .textbox .coupon_box .coupon_title {
	font-size: 0.18rem;
	font-weight: 700;
	color: #004989;
	padding-right: 0.30rem;
}

@media screen and (max-width: 640px) {
	.offer_cont_wrap.type03 .offer_header .textbox .coupon_box .coupon_title {
		font-size: 0.16rem;
		padding-right: 0;
		padding-bottom: 0.10rem;
	}
}


.offer_cont_wrap.type03 .offer_header .textbox .coupon_box .coupon_code {
	font-size: 0.28rem;
	font-weight: 700;
	font-family: 'Roboto', sans-serif;
	color: #AE9347;
}

/* 店舗ボックス */
.offer_box {
	margin-top: 0.40rem;
	background-color: #FFF;
	border-radius: 0.10rem;
	box-shadow: 0 0.03rem 0.08rem rgba(0,0,0,0.2);
	position: relative;
}

@media screen and (max-width: 640px) {
	.offer_box {
		margin-top: 0.30rem;
		border-radius: 0.06rem;
	}
}

.offer_box .shop_header {
	height: 3.50rem;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	z-index: 0;
	border-radius: 0.10rem 0.10rem 0 0;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_header {
		height: 53.33vw;
		border-radius: 0.06rem 0.06rem 0 0;
	}
}

.offer_box .shop_name {
	position: relative;
	z-index: 1;
	margin-top: -0.30rem;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_name {
		margin-top: -0.20rem;
	}
}

.offer_box .shop_name span {
	display: inline-block;
	background-color: #004989;
	color: #FFF;
	font-size: 0.28rem;
	font-weight: 900;
	padding: 0.10rem 0.14rem 0.14rem;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_name span {
		font-size: 0.18rem;
		line-height: 1.35;
		padding: 0.07rem 0.10rem 0.09rem;
	}
}

.offer_box .shop_name span::before {
	content: "";
	width: 0.08rem;
	height: 100%;
	background-color: #AE9347;
	position: absolute;
	left: -0.08rem;
	top: 0;
	z-index: 1;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_name span::before {
		width: 0.05rem;
		left: -0.05rem;
	}
}

/* 空港店舗のみ */
.offer_box .shop_name.airport span {
	background-color: #69541B;
}

.offer_box .shop_name.airport span::before {
	background-color: #AE9347;
}

/* F Village店舗のみ */
.offer_box .shop_name.fvillage span {
	background-color: #000;
}

.offer_box .shop_name.fvillage span::before {
	background-color: #008DD5;
}

/* ES CON店舗のみ */
.offer_box .shop_name.escon span {
	background-color: #008DD5;
}

.offer_box .shop_name.escon span::before {
	background-color: #000;
}

/* アクセスマップのリンク */
.offer_box .shop_map_link {
	position: absolute;
	right: 0.40rem;
	top: 2.80rem;
	z-index: 1;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_map_link {
		position: relative;
		right: auto;
		top: auto;
		padding-top: 0.15rem;
		width: 100%;
	}
}

.offer_box .shop_map_link a {
	background-color: #FFF;
	display: block;
	width: 2.70rem;
	height: 0.40rem;
	position: relative;
	border-radius: 0.40rem;
	box-shadow: 0 0.03rem 0 rgba(0,0,0,0.3);
	text-align: center;
	color: #004989;
	cursor: pointer;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_map_link a {
		background-color: #E7FAFD;
		width: 100%;
		height: 0.46rem;
	}
}

.offer_box .shop_map_link.wide01 a {
	width: 3.00rem;
}

.offer_box .shop_map_link.wide02 a {
	width: 3.40rem;
}

.offer_box .shop_map_link.wide03 a {
	width: 4.40rem;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_map_link.wide01 a,
	.offer_box .shop_map_link.wide02 a,
	.offer_box .shop_map_link.wide03 a {
		width: 100%;
	}
}

.offer_box .shop_map_link a:hover {
	background-color: #004989;
	color: #FFF;
}

.offer_box .shop_map_link a::before {
	content: "";
	width: 0.10rem;
	height: 0.15rem;
	background-image: url(../img/offer_map_icon.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0.20rem;
	top: 50%;
	transform: translateY(-50%);
}

.offer_box .shop_map_link a:hover::before {
	background-image: url(../img/offer_map_icon_white.svg);
}

.offer_box .shop_map_link a::after {
	content: "";
	width: 0.10rem;
	height: 0.08rem;
	background-image: url(../img/offer_link_arrow.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 0.10rem;
	top: 50%;
	transform: translateY(-50%);
}

.offer_box .shop_map_link a:hover::after {
	background-image: url(../img/offer_link_arrow_white.svg);
}

.offer_box .shop_map_link a span {
	display: block;
	width: 100%;
	text-align: center;
	line-height: 1.23;
	font-size: 0.13rem;
	font-weight: 700;
	position: absolute;
	box-sizing: border-box;
	top: 47%;
	left: 0;
	transform: translateY(-50%);
}

/* 店舗のコンテンツ */
.offer_box .shop_info_wrap {
	padding: 0.40rem;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_info_wrap {
		padding: 0.10rem 0.15rem 0.15rem;
	}
}

.offer_box .shop_info_wrap .shop_lead_wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	color: #004989;
	padding-bottom: 0.20rem;
}

.offer_box .shop_info_wrap .shop_lead_wrap .text {
	font-size: 0.15rem;
	line-height: 1.85;
	width: 100%;
	max-width: 6.75rem;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_info_wrap .shop_lead_wrap .text {
		font-size: 0.14rem;
		padding-bottom: 0.10rem;
	}
}

.offer_box .shop_info_wrap .shop_lead_wrap .text .small_text {
	font-size: 0.13rem;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_info_wrap .shop_lead_wrap .text .small_text {
		font-size: 0.12rem;
	}
}

.offer_box .shop_info_wrap .shop_lead_wrap .info_box {
	width: 100%;
	max-width: 2.25rem;
	border-left: 1px solid #004989;
	padding-left: 0.20rem;
	box-sizing: border-box;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_info_wrap .shop_lead_wrap .info_box {
		max-width: 100%;
		border-top: 1px solid #CCC;
		border-left: 0;
		padding-left: 0;
		padding-top: 0.10rem;
	}
}

.offer_box .shop_info_wrap .shop_lead_wrap .info_box .info_text_list {
	display: flex;
	flex-wrap: wrap;
	font-size: 0.16rem;
	font-weight: 700;
	line-height: 1.55;
	padding-bottom: 0.10rem;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_info_wrap .shop_lead_wrap .info_box .info_text_list {
		font-size: 0.14rem;
		padding-bottom: 0.06rem;
	}
}

.offer_box .shop_info_wrap .shop_lead_wrap .info_box .info_text_list .info_title {
	width: 0.60rem;
}

.offer_box .shop_info_wrap .shop_lead_wrap .info_box .info_text_list .info_text {
	width: calc(100% - 0.65rem);
}

.offer_box .shop_info_wrap .shop_lead_wrap .info_box .info_text_list .info_text span {
	font-size: 0.14rem;
}

.offer_box .shop_info_wrap .shop_lead_wrap .info_box .info_text_list.schedule .info_title {
	width: 0.80rem;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_info_wrap .shop_lead_wrap .info_box .info_text_list.schedule .info_title {
		width: 0.65rem;
	}
}

.offer_box .shop_info_wrap .shop_lead_wrap .info_box .info_text_list.schedule .info_text {
	width: calc(100% - 0.85rem);
}

/* タイプ02 */
.offer_box .shop_info_wrap .shop_lead_wrap .info_box .info_text_list.escon .info_title {
	width: 100%;
}

.offer_box .shop_info_wrap .shop_lead_wrap .info_box .info_text_list.escon .info_text {
	width: 100%;
	font-size: 0.14rem;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_info_wrap .shop_lead_wrap .info_box .info_text_list.escon .info_text {
		font-size: 0.13rem;
	}
}

.offer_box .shop_info_wrap .shop_lead_wrap .info_box .small_text {
	font-size: 0.12rem;
	line-height: 1.75;
}

.offer_box .shop_info_wrap .shop_lead_wrap .info_box a {
	text-decoration: underline;
	color: #004989;
}

.offer_box .shop_info_wrap .shop_lead_wrap .info_box a:hover {
	text-decoration: none;
}

/* 特典商品 */
.offer_box .shop_info_wrap .offer_item_wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.offer_box .shop_info_wrap .offer_item_wrap .main_item {
	width: 5.20rem;
	overflow: hidden;
	position: relative;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_info_wrap .offer_item_wrap .main_item {
		width: 100%;
	}
}

.offer_box .shop_info_wrap  .offer_item_wrap .main_item .ph {
	width: 100%;
	height: 3.90rem;
	overflow: hidden;
	position: relative;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_info_wrap  .offer_item_wrap .main_item .ph {
		height: 54.80vw;
	}
	.offer_box .shop_info_wrap  .offer_item_wrap .main_item .ph .sp_only {
		height: 100%;
	}
}

.offer_box .shop_info_wrap  .offer_item_wrap .main_item .ph::before {
	content: "";
	width: 1.01rem;
	height: 1.02rem;
	background-image: url(../img/offer_main_ph_deco.svg);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_info_wrap  .offer_item_wrap .main_item .ph::before {
		width: 0.49rem;
		height: 0.50rem;
	}
}

.offer_box .shop_info_wrap  .offer_item_wrap .main_item .ph::after {
	content: "";
	width: 100%;
	height: 1.50rem;
	background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); 
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 1;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_info_wrap  .offer_item_wrap .main_item .ph::after {
		content: none;
	}
}

.offer_box .shop_info_wrap  .offer_item_wrap .main_item .ph.no_text::after {
	content: none;
}

.offer_box .shop_info_wrap  .offer_item_wrap .main_item .ph img {
	display: block;
	height: 100%;
	width: 100%;
	object-fit: cover;
}

.offer_box .shop_info_wrap  .offer_item_wrap .main_item .item_text {
	position: absolute;
	width: max-content;
	bottom: 0.20rem;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
	font-size: 0.15rem;
	font-weight: 700;
	color: #FFF;
	z-index: 2;
	text-shadow: 0 1px 0.06rem rgba(0,0,0,0.6);
}

@media screen and (max-width: 640px) {
	.offer_box .shop_info_wrap  .offer_item_wrap .main_item .item_text {
		position: relative;
		width: 100%;
		bottom: auto;
		left: auto;
		transform: translateX(0);
		z-index: 1.75;
		font-size: 0.14rem;
		font-weight: 600;
		color: #004989;
		text-shadow: none;
		padding-top: 0.15rem;
		text-align: center;
		padding-bottom: 0.20rem;
	}
	.offer_box .shop_info_wrap  .offer_item_wrap .main_item .item_text.sp_text {
		line-height: 1.15;
	}
	.offer_box .shop_info_wrap  .offer_item_wrap .main_item .item_text.sp_text .text {
		padding-top: 0.15rem;
	}
	.offer_box .shop_info_wrap  .offer_item_wrap .main_item .item_text.sp_text .text:first-child {
		padding-top: 0.05rem;
	}
	.offer_box .shop_info_wrap  .offer_item_wrap .main_item .item_text.sp_text .small_caption {
		padding-top: 0.10rem;
		font-size: 0.11rem;
		font-weight: 400;
		line-height: 1.35;
	}
}

.offer_box .shop_info_wrap  .offer_item_wrap .main_item .item_text span {
	display: inline-block;
	padding-left: 1.20rem;
	position: relative;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_info_wrap  .offer_item_wrap .main_item .item_text span {
		display: block;
		padding-left: 0;
		margin: auto;
		width: 100%;
	}
}

.offer_box .shop_info_wrap  .offer_item_wrap .main_item .item_text span::before {
	content: "";
	width: 1.10rem;
	height: 0.23rem;
	background-image: url(../img/offer_main_ph_item_icon.svg);
	background-repeat: 0 0;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0;
	top: 0.04rem;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_info_wrap  .offer_item_wrap .main_item .item_text span::before {
		content: "";
		width: 1.20rem;
		height: 0.22rem;
		background-image: url(../img/offer_main_ph_item_icon.svg);
		background-repeat: 0 0;
		background-repeat: no-repeat;
		background-size: contain;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		top: -0.25rem;
	}
}

.offer_box .shop_info_wrap  .offer_item_wrap .main_item .item_text strong {
	font-size: 0.22rem;
	font-weight: 700;
}

.offer_box .shop_info_wrap .offer_item_wrap .sub_ph_wrap {
	width: 100%;
	max-width: 3.85rem;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_info_wrap .offer_item_wrap .sub_ph_wrap {
		max-width: 100%;
	}
}

.offer_box .shop_info_wrap .offer_item_wrap .sub_ph_wrap .sub_ph_box {
	padding-bottom: 0.15rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}

.offer_box .shop_info_wrap .offer_item_wrap .sub_ph_wrap .sub_ph_box:last-child {
	padding-bottom: 0;
}

.offer_box .shop_info_wrap .offer_item_wrap .sub_ph_wrap .sub_ph_box .ph {
	width: 1.60rem;
	height: 1.20rem;
	overflow: hidden;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_info_wrap .offer_item_wrap .sub_ph_wrap .sub_ph_box .ph {
		width: 1.20rem;
		height: 0.90rem;
	}
}

.offer_box .shop_info_wrap .offer_item_wrap .sub_ph_wrap .sub_ph_box .ph img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.offer_box .shop_info_wrap .offer_item_wrap .sub_ph_wrap .sub_ph_box .textbox {
	width: 100%;
	max-width: 2.05rem;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_info_wrap .offer_item_wrap .sub_ph_wrap .sub_ph_box .textbox {
		max-width: calc(100% - 1.30rem);
	}
}

.offer_box .shop_info_wrap .offer_item_wrap .sub_ph_wrap .sub_ph_box .textbox .text {
	font-size: 0.15rem;
	font-weight: 700;
	line-height: 1.45;
	color: #004989;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_info_wrap .offer_item_wrap .sub_ph_wrap .sub_ph_box .textbox .text {
		font-size: 0.13rem;
		font-weight: 600;
	}
}

.offer_box .shop_info_wrap .offer_item_wrap .sub_ph_wrap .sub_ph_box .textbox .text::before {
	content: "";
	width: 1.08rem;
	height: 0.17rem;
	display: block;
	padding-bottom: 0.05rem;
	background-image: url(../img/offer_recommend_icon.svg);
	background-position: 0 0;
	background-repeat: no-repeat;
	background-size: contain;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_info_wrap .offer_item_wrap .sub_ph_wrap .sub_ph_box .textbox .text::before {
		width: 0.86rem;
		height: 0.14rem;
		padding-bottom: 0.03rem;
		position: relative;
		left: -0.02rem;
	}
}

/* 外部リンク */
.offer_box .shop_info_wrap .ex_link {
	padding-top: 0.30rem;
	width: 100%;
	max-width: 3.20rem;
	margin: auto;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_info_wrap .ex_link {
		padding-top: 0.20rem;
		padding-bottom: 0.15rem;
		max-width: calc(100% - 0.20rem);
	}
}

.offer_box .shop_info_wrap .ex_link a {
	display: block;
	background-color: #009ECB;
	line-height: 0;
	padding: 0.24rem 0 0.26rem;
	text-align: center;
	font-size: 0.16rem;
	font-weight: 700;
	color: #FFF;
	border-radius: 0.50rem;
	box-shadow: 0 0.03rem 0 rgba(0,0,0,0.2);
	position: relative;
}

@media screen and (max-width: 640px) {
	.offer_box .shop_info_wrap .ex_link a {
		font-size: 0.15rem;
	}
}

.offer_box .shop_info_wrap .ex_link a::after {
	content: "";
	width: 0.16rem;
	height: 0.10rem;
	background-image: url(../img/offer_link_arrow_white.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 0.15rem;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}

.offer_box .shop_info_wrap .ex_link a:hover {
	opacity: 0.7;
}

.offer_box .shop_info_wrap .ex_link a:hover::after {
	right: 0.10rem;
}

/*==============================
店舗写真
==============================*/
/* FIGHTERS DINING ROSTER */
.offer_box.shop01 .shop_header {
	background-image: url(../img/shop01/shop_ph.jpg);
}

@media screen and (max-width: 640px) {
	.offer_box.shop01 .shop_header {
		background-image: url(../img/shop01/shop_ph_sp.jpg);
	}
}

/* ICHIBIKO 北海道ボールパークFビレッジ */
.offer_box.shop02 .shop_header {
	background-image: url(../img/shop02/shop_ph.jpg);
}

@media screen and (max-width: 640px) {
	.offer_box.shop02 .shop_header {
		background-image: url(../img/shop02/shop_ph_sp.jpg);
	}
}

/* KUBOTA AGRI FRONT CAFE */
.offer_box.shop03 .shop_header {
	background-image: url(../img/shop03/shop_ph.jpg);
}

@media screen and (max-width: 640px) {
	.offer_box.shop03 .shop_header {
		background-image: url(../img/shop03/shop_ph_sp.jpg);
	}
}

/* そらとしば by よなよなエール */
.offer_box.shop04 .shop_header {
	background-image: url(../img/shop04/shop_ph.jpg);
}

@media screen and (max-width: 640px) {
	.offer_box.shop04 .shop_header {
		background-image: url(../img/shop04/shop_ph_sp.jpg);
	}
}

/* たべるスープ */
.offer_box.shop05 .shop_header {
	background-image: url(../img/shop05/shop_ph.jpg);
}

@media screen and (max-width: 640px) {
	.offer_box.shop05 .shop_header {
		background-image: url(../img/shop05/shop_ph_sp.jpg);
	}
}

.offer_box.shop05 .shop_info_wrap .shop_lead_wrap .text {
	max-width: 5.80rem;
}

.offer_box.shop05 .shop_info_wrap .shop_lead_wrap .text {
	max-width: 5.80rem;
}

.offer_box.shop05 .shop_info_wrap .shop_lead_wrap .info_box {
	max-width: 3.15rem;
}

/* tower eleven onsen & sauna */
.offer_box.shop06 .shop_header {
	background-image: url(../img/shop06/shop_ph.jpg);
}

@media screen and (max-width: 640px) {
	.offer_box.shop06 .shop_header {
		background-image: url(../img/shop06/shop_ph_sp.jpg);
	}
}

.offer_box.shop06 .shop_info_wrap .shop_lead_wrap .text {
	max-width: 5.50rem;
}

.offer_box.shop06 .shop_info_wrap .shop_lead_wrap .info_box {
	max-width: 3.45rem;
}

/* クーポンの利用方法 */
.coupon_flow_wrap {
	background-color: #FFF;
	padding: 0.40rem;
	border: 0.03rem solid rgba(0, 73, 137, 0.3);
	border-radius: 0.10rem;
	margin: 0.40rem 0 0.20rem;
}

@media screen and (max-width: 640px) {
	.coupon_flow_wrap {
		padding: 0.20rem 0.15rem;
		border-radius: 0.06rem;
		margin: 0.30rem 0 0.20rem;
	}
}

.coupon_flow_wrap .flow_title {
	text-align: center;
	font-size: 0.25rem;
	color: #004989;
	font-weight: 700;
}

@media screen and (max-width: 640px) {
	.coupon_flow_wrap .flow_title {
		font-size: 0.18rem;
	}
}

.coupon_flow_wrap .flow_title span {
	border-bottom: 0.04rem solid #AE9347;
}

.coupon_flow_wrap .flow_list {
	padding: 0.40rem 0 0.20rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

@media screen and (max-width: 640px) {
	.coupon_flow_wrap .flow_list {
		padding: 0.25rem 0 0;
		display: block;
	}
}

.coupon_flow_wrap .flow_list .flow_box {
	width: 100%;
	max-width: 4.40rem;
}

@media screen and (max-width: 640px) {
	.coupon_flow_wrap .flow_list .flow_box {
		max-width: 100%;
		padding-bottom: 0.20rem;
	}
}

.coupon_flow_wrap .flow_list .flow_box .flow_list_title {
	background-color: #004989;
	text-align: center;
	font-size: 0.20rem;
	font-weight: 700;
	color: #FFF;
	padding: 0.10rem 0 0.13rem;
	margin-bottom: 0.10rem;
}

@media screen and (max-width: 640px) {
	.coupon_flow_wrap .flow_list .flow_box .flow_list_title {
		font-size: 0.16rem;
	}
}

.coupon_flow_wrap .flow_list .flow_box .text {
	font-size: 0.15rem;
	line-height: 2;
	color: #004989;
}

@media screen and (max-width: 640px) {
	.coupon_flow_wrap .flow_list .flow_box .text {
		font-size: 0.14rem;
		line-height: 1.875;
	}
}

.coupon_flow_wrap .flow_list .flow_box .text strong {
	color: #AE9347;
}

.coupon_flow_wrap .ex_link {
	max-width: 3.60rem;
	margin: auto;
}

@media screen and (max-width: 640px) {
	.coupon_flow_wrap .ex_link {
		max-width: 100%;
		padding-bottom: 0.10rem;
	}
}

.coupon_flow_wrap .ex_link a {
	display: block;
	background-color: #AE9347;
	color: #FFF;
	font-size: 0.20rem;
	font-weight: 700;
	text-align: center;
	padding: 0.24rem 0 0.26rem;
	line-height: 0;
	position: relative;
	border-radius: 0.50rem;
	box-shadow: 0 0.03rem 0 rgba(0,0,0,0.2);
}

@media screen and (max-width: 640px) {
	.coupon_flow_wrap .ex_link a {
		font-size: 0.16rem;
	}
}

.coupon_flow_wrap .ex_link a:hover {
	opacity: 0.7;
}

.coupon_flow_wrap .ex_link a::after {
	content: "";
	width: 0.16rem;
	height: 0.10rem;
	background-image: url(../img/offer_link_arrow_white.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 0.15rem;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}

.flow_caption_list {
	display: flex;
	flex-wrap: wrap;
}

@media screen and (max-width: 640px) {
	.flow_caption_list {
		display: block;
	}
}

.flow_caption_list .text {
	font-size: 0.13rem;
	line-height: 1.65;
	color: #004989;
	padding-right: 1em;
}

@media screen and (max-width: 640px) {
	.flow_caption_list .text {
		font-size: 0.12rem;
		line-height: 1.55;
		padding-right: 0;
		text-indent: -0.16rem;
		margin-left: 0.16rem;
		padding-bottom: 0.06rem;
	}
}

.flow_caption_list .text.big_text {
	width: 100%;
	font-size: 0.18rem;
	font-weight: 700;
	color: #D60000;
}

@media screen and (max-width: 640px) {
	.flow_caption_list .text.big_text {
		font-size: 0.18rem;
		text-align: center;
		text-indent: 0;
		margin-left: 0;
		padding-bottom: 0.15rem;
	}
	.flow_caption_list .text.big_text span {
		display: none;
	}
}

/*============================
ご来場された感想をぜひご回答ください
============================*/
.enq {
	padding: 1.90rem 0;
	background-image: url(../img/enq_bg_pc.jpg);
	background-position: center;
	background-size: cover;
}

@media screen and (max-width: 640px) {
	.enq {
		padding: 0.80rem 0;
	}
}

.enq .textbox {
	text-align: center;
}

.enq .textbox .text {
	font-size: 0.26rem;
	font-weight: 700;
	color: #FFF;
	letter-spacing: 0.075em;
}

@media screen and (max-width: 640px) {
	.enq .textbox .text {
		font-size: 0.18rem;
		letter-spacing: 0.05em;
	}
}

.enq .textbox .text span::before {
	content: "";
	width: 0.33rem;
	height: 0.33rem;
	display: inline-block;
	background-image: url(../img/enq_text_deco_left.svg);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: contain;
	position: relative;
	top: 0.03rem;
}

@media screen and (max-width: 640px) {
	.enq .textbox .text span::before {
		width: 0.20rem;
		height: 0.20rem;
	}
}

.enq .textbox .text span::after {
	content: "";
	width: 0.33rem;
	height: 0.33rem;
	display: inline-block;
	background-image: url(../img/enq_text_deco_right.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	position: relative;
	top: 0.03rem;
}

@media screen and (max-width: 640px) {
	.enq .textbox .text span::after {
		width: 0.20rem;
		height: 0.20rem;
	}
}

.enq .textbox .enq_btn {
	padding-top: 0.20rem;
	max-width: 5.00rem;
	margin: auto;
}

@media screen and (max-width: 640px) {
	.enq .textbox .enq_btn {
		width: calc(100% - 0.80rem);
	}
}

.enq .textbox .enq_btn a {
	display: block;
	line-height: 0;
	background-color: #AE9347;
	padding: 0.39rem 0 0.41rem;
	border-radius: 0.80rem;
	text-align: center;
	font-size: 0.26rem;
	font-weight: 700;
	color: #FFF;
	letter-spacing: 0.075em;
	position: relative;
}

@media screen and (max-width: 640px) {
	.enq .textbox .enq_btn a {
		padding: 0.29rem 0 0.31rem;
		font-size: 0.18rem;
		letter-spacing: 0.05em;
	}
}

.enq .textbox .enq_btn a:hover {
	background-color: #FFF;
	color: #AE9347;
}

.enq .textbox .enq_btn a::after {
	content: "";
	width: 0.20rem;
	height: 0.14rem;
	background-image: url(../img/offer_link_arrow_white.svg);
	background-position: right center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	right: 0.20rem;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s;
}

.enq .textbox .enq_btn a:hover::after {
	right: 0.15rem;
	background-image: url(../img/offer_link_arrow_brown.svg);
}

/*============================
footer
============================*/
footer {
	padding: 0.50rem 0;
}

@media screen and (max-width: 640px) {
	footer {
		padding: 0.30rem 0;
	}
}

footer .bnr_wrap .list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

footer .bnr_wrap .list .link {
	max-width: 4.80rem;
}

@media screen and (max-width: 640px) {
	footer .bnr_wrap .list .link {
		max-width: 100%;
		padding-bottom: 0.20rem;
	}
}

footer .bnr_wrap .list .link a:hover {
	opacity: 0.7;
}

footer .copyright {
	font-size: 0.13rem;
	text-align: center;
	padding-top: 0.30rem;
	color: #004989;
	font-family: 'Roboto', sans-serif;
}

@media screen and (max-width: 640px) {
	footer .copyright {
		font-size: 0.10rem;
		padding-top: 0.10rem;
		line-height: 1.65;
	}
}

/*============================
モーダル
============================*/
/* モーダルオープン時 */
body.no_scr {
	overflow: hidden;
}

/* モーダル全体 */
.modal_wrap {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 100;
	display: none;
}

.modal_wrap .modal_close {
	width: 0.50rem;
	height: 0.50rem;
	position: absolute;
	top: 0.40rem;
	right: 0.40rem;
	z-index: 2;
	background-image: url(../img/modal_close.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	cursor: pointer;
}

@media screen and (max-width: 640px) {
	.modal_wrap .modal_close {
		width: 0.40rem;
		height: 0.40rem;
		top: 0.20rem;
		right: 0.20rem;
		background-image: url(../img/modal_close_sp.svg);
	}
}

.modal_wrap .modal_bg {
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.9);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 0;
}

@media screen and (max-width: 640px) {
	.modal_wrap .modal_bg {
		background-color: rgba(255, 255, 255, 0.75);
		-webkit-backdrop-filter: blur(10px);
		backdrop-filter: blur(10px);
	}
}

.modal_wrap .modal_box {
	width: 100%;
	max-width: 10.00rem;
	box-sizing: border-box;
	padding: 0.20rem 0.40rem 0.30rem;
	text-align: center;
	border-radius: 0.10rem;
	box-shadow: 0 0.03rem 0.08rem rgba(0,0,0,0,8);
	background-color: #FFF;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	display: none;
}

@media screen and (max-width: 640px) {
	.modal_wrap .modal_box {
		padding: 0;
		border-radius: 0;
		box-shadow: none;
		background-color: transparent;
	}
}

.modal_wrap .modal_box .place_title {
	font-size: 0.24rem;
	font-weight: 700;
	color: #004989;
	padding-bottom: 0.20rem;
}

@media screen and (max-width: 640px) {
	.modal_wrap .modal_box .place_title {
		font-size: 0.18rem;
		line-height: 1.65;
	}
}

.modal_wrap .modal_box .close_btn {
	padding-top: 0.20rem;
	width: 2.30rem;
	margin: auto;
}

.modal_wrap .modal_box .close_btn span {
	display: block;
	line-height: 0;
	background-color: #AE9347;
	padding: 0.24rem 0 0.26rem 0.20rem;
	font-size: 0.15rem;
	color: #FFF;
	font-weight: 700;
	border-radius: 0.50rem;
	box-shadow: 0 2px 0 rgba(0,0,0,0.2);
	position: relative;
	cursor: pointer;
	transition: all 0.3s;
}

.modal_wrap .modal_box .close_btn span:hover {
	opacity: 0.7;
}

.modal_wrap .modal_box .close_btn span::before {
	content: "";
	width: 0.11rem;
	height: 0.11rem;
	background-image: url(../img/modal_close.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	position: absolute;
	left: 0.60rem;
	top: 50%;
	transform: translateY(-50%);
}