@charset "UTF-8";
/*--------------------------------------------------
カラー設定
ブルー　　　　　　　　　　　#0900BC
グリーン　　　　　　　　　　#75BC00
背景あいじろ　　　　　　　　#ebf6f7
オレンジ　　　　　　　　　　#F4A43B
ピンク　　　　　　　　　　　#F43BD2

@media screen and (max-width: 795px) {

}
@media screen and (max-width: 420px) {
	
}

--------------------------------------------------*/
/*------------------------------
会場へのご案内
--------------------------------*/
/*会場名*/
.place_name {
	display: block;
	position: relative;
	margin: 40px 0;
	width: 100%;
	background-color: white;
	border-radius: 8px;
	padding: 10px 10px 10px 60px;
	box-shadow: 0 0 5px 1px rgba(0,0,0,0.1);
}
.place_name::before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 40px;
	height: 100%;
	border-radius: 8px 0 0 8px;
	background-color: #75BC00;
}
.place_name::after {
	position: absolute;
	content: "";
	top: 5px;
	left: 5px;
	width: 30px;
	height: 30px;
	-webkit-mask-image: url(../access/images/location_3_fill.svg);
    -webkit-mask-size: contain;
    mask-image: url(../access/images/location_3_fill.svg);
    mask-size: contain;
	background-color: #376138;
}
.place_name p {
	margin: 0;
	padding: 0;
	font-size: 20px;
	font-weight: 600;
}
@media screen and (max-width: 420px) {
	.place_name p {
		font-size: 18px;
	}
}
/*会場情報*/
.place_address_wrapper {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0 20px 20px;
}
.place_address_box {
	display: block;
	padding: 2px 10px;
	background-color: rgba(255, 255, 255, 0.5);
	border-radius: 8px;
	box-shadow: 0 0 10px rgba(230, 230, 230, 0.5); /* 薄い影 */
}
.place_address {
	display: block;
	width: 100%;
	margin: 20px 0 20px 10px;
	padding: 10px;
	border-left: 5px solid #C4EFBC;
	
}
.place_address p {
	margin: 0;
	padding: 0;
}
/*----------------
マップ表示
------------------*/
.map_block {
  margin-top: 20px;
  text-align: center;
}
.map_block .gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 50%;
  position: relative;
}
.map_block .gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}