@charset "utf-8";

/* ------------------------------
	map
------------------------------ */
.map_nav {
  display: flex;
  flex-wrap: wrap;
}

.map_nav li {
  margin-bottom: 10px;
}

.map_nav .button::after {
  transform: rotate(90deg);
}

@media (max-width: 499px) {
  .map_nav li {
    width: 48%;
  }

  .map_nav li:nth-child(even) {
    margin-left: 4%;
  }
}

@media (min-width: 500px) and (max-width: 640px) {
  .map_nav li {
    width: 31%;
  }

  .map_nav li:not(:nth-child(3n+1)) {
    margin-left: 3.5%;
  }

  .map_nav li .button {
    display: block;
  }
}

@media (min-width: 641px) {
  .map_nav {
    justify-content: space-between;
  }

  .map_nav li {
    font-size: 0.937rem;
    margin-bottom: 15px;
  }
}

.map_list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
	justify-content: space-between;
  background-position: left bottom;
  background-repeat: repeat-x;
  background-image: url(/assets/img/contents/line_dotx.png);
  background-size: 9px auto;
}

.map_list li h4 {
  width: 100%;
  color: #ef648e;
  font-size: 1.125rem;
  line-height: 1.5;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.map_list li h4::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 0.25em;
  background: url(../img/list_mark.png) no-repeat center top;
  background-size: contain;
}

.map_list li h4 span {
  display: inline-block;
  padding: 0.25em 0.5em;
  margin-left: 5px;
  border-radius: 3px;
  background-color: #ef648e;
  color: #fff;
  font-size: 0.75rem;
  white-space: nowrap;
}

.map_list li .button_wrap {
  margin-left: auto;
}

@media (max-width: 640px) {
  .map_list li {
    padding-bottom: 0.5em;
    margin-bottom: 0.5em;
  }

  .map_list li h4 {
    width: 100%;
  }
	
	.map_list li p {
    width: 100%;
	}

  .map_list li .button_wrap {
    margin: 0.5em auto;
  }
}

@media (min-width: 641px) {
  .map_list li {
    padding: 1em;
    background-size: 18px auto;
  }

  .map_list li h4 {
    width: 18em;
  }

  .map_list li h4::before {
    width: 30px;
    height: 30px;
  }
	
	.map_list li p {
    width: 25em;
	}
}

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

.tab_wrap input[name="search"] {
  display: none;
}

.tab_wrap label {
	position: relative;
	background-color: #fff;
	border: solid #ef648e;
	border-width: 2px 2px 0;
	box-sizing: border-box;
	font-weight: bold;
	font-size: 1.25rem;
	text-align: center;
	color: #ef648e;
  cursor: pointer;
  order: 0;
  z-index: 0;
}

.tab_wrap input[name="search"]:checked + label,
.tab_wrap label:hover {
	background-color: #ef648e;
	color: #fff;
}

.tab_wrap input[name="search"]:checked + label::after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	margin: auto;
	border-style: solid;
	border-width: 16px 16px 0 16px;
	border-color: #ef648e transparent transparent transparent;
	position: absolute;
	left: 0;
	right: 0;
	bottom: -16px;
}

.tab_wrap .tab_inner {
  display: none;
  order: 10;
	border-top: 4px solid #ef648e;
}

.tab_wrap input[name="search"]:checked + label + .tab_inner {
  display: block;
}

@media (min-width: 641px) {
	.tab_wrap {
		min-width: 1220px;
	}
	
	.tab_wrap label {
		width: 590px;
		margin: 0 10px;
		border-top-left-radius: 14px;
		border-top-right-radius: 14px;
		line-height: 68px;
	}
}

@media (max-width: 640px) {
	.tab_wrap label {
		width: calc( 50% - 20px );
		margin: 0 5px;
		border-top-left-radius: 7px;
		border-top-right-radius: 7px;
		line-height: 40px;
	}
}

/* ------------------------------
	modal
------------------------------ */

.remodal-overlay {
	z-index: 500000;
}

.remodal-wrapper {
	z-index: 999999;
}

.remodal-cancel {
	display: block;
	padding: 0;
	border-radius: 50%;
	background-color: #ef648e;
	position: absolute;
	text-align: center;
}

.remodal-cancel::before,
.remodal-cancel::after {
	content: "";
	display: block;
	background: #fff;
	transform: rotate(45deg);
	position: absolute;
}

.remodal-cancel::after {
	transform: rotate(-45deg);
	left: auto;
}

.remodal h4 {
	padding: 0.5rem;
	border-radius: 1.4375rem;
	background-color: #3886c7;
	font-size: 1.25rem;
	line-height: 1.5;
	color: #fff;
}
.remodal h5 {
	color: #3886c7;
}

.remodal p {
	text-align: left;
}

@media (min-width: 641px) {
	.remodal {
		padding: 40px 80px;
		border-radius: 14px;
	}
	
	.remodal-cancel {
		width: 48px;
		height: 48px;
		min-width: 48px;
		right: 20px;
		top: 20px;
	}

	.remodal-cancel::before,
	.remodal-cancel::after {
		width: 24px;
		height: 4px;
		top: 22px;
		left: 12px;
	}

	.remodal-cancel::after {
		right: 12px;
	}
	
	.remodal div img {
		max-width: 360px;
	}
}

@media (max-width: 640px) {
	.remodal {
		padding: 20px 40px;
		border-radius: 7px;
	}
	
	.remodal-cancel {
		width: 36px;
		height: 36px;
		min-width: 36px;
		right: 10px;
		top: 10px;
	}

	.remodal-cancel::before,
	.remodal-cancel::after {
		width: 18px;
		height: 3px;
		top: 17px;
		left: 9px;
	}

	.remodal-cancel::after {
		right: 9px;
	}
}

/* ------------------------------
	search
------------------------------ */

.search_wrap {
	display: flex;
	align-items: center;
}

.search_wrap input[type="text"] {
	display: block;
	padding: 0;
	margin: 0;
	border: none;
	outline: 0;
	box-sizing: border-box;
	background-color: #ffe5e5;
	font-size: 1.125rem;
}

.search_wrap input::placeholder {
	color: #919191;
}

.search_wrap button {
	padding: 0;
	margin: 0;
	border: none;
	outline: 0;
	background-color: #ffe5e5;
	cursor: pointer;
}

.search_wrap button svg {
	fill: #e7517e;
}

@media (min-width: 641px) {
	.search_wrap input[type="text"] {
		width: 1012px;
		height: 68px;
		padding: 0 20px;
		border-top-left-radius: 14px;
		border-bottom-left-radius: 14px;
		line-height: 68px;
	}
	
	.search_wrap button {
		width: 68px;
		height: 68px;
		border-top-right-radius: 14px;
		border-bottom-right-radius: 14px;
	}
}

@media (max-width: 640px) {
	.search_wrap input[type="text"] {
		width: calc( 100% - 48px );
		padding: 0 10px;
		height: 48px;
		border-top-left-radius: 7px;
		border-bottom-left-radius: 7px;
		font-size: 16px !important;
		line-height: 48px;
	}
	
	.search_wrap button {
		width: 48px;
		height: 48px;
		border-top-right-radius: 7px;
		border-bottom-right-radius: 7px;
	}
	
	.search_wrap button svg {
		width: 20px;
		height: 20px;
	}
}

/* ------------------------------
	round-detail
------------------------------ */
#round-detail dl dd strong {
	color: #f89043;
}

@media (max-width: 640px) {
	.round_overview {
		width: 100%;
		border-radius: 20px;
		background: #006cb7;
		overflow: hidden;
	}
	
	#round-detail .lawson_lead {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 20px;
		font-size: 1.125rem;
		font-weight: bold;
		line-height: 1.6;
	}

	#round-detail .lawson_lead:before {
		content: "";
		display: block;
		width: 73px;
		height: 42px;
		margin-right: 14px;
		background: url(../img/select_icon_lawson.png) no-repeat;
		background-size: contain;
	}

	#round-detail ol > li {
		padding: 18px 10px 0;
		margin-bottom: 40px;
		font-size: 1.125rem;
		font-weight: bold;
		line-height: 1.4;
		text-align: center;
		border-radius: 10px;
		background: #fff;
		position: relative;
		box-sizing: border-box;
	}
	
	#round-detail ol > li:last-child {
		margin-bottom: 0;
	}

	#round-detail ol > li img {
		max-width: 172px;
		height: auto;
	}
	
	#round-detail ol > li p + p {
		padding-top: 10px;
	}
	
	#round-detail ol > li + li:before {
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 15px 15px 0 15px;
		border-color: #ef648e transparent transparent transparent;
		position: absolute;
		top: -28px;
		right: 0;
		left: 0;
		margin: auto;
	}

	#round-detail dl {
		margin-top: 30px;
		border: 3px solid #f89043;
		border-radius: 10px;
		background: #fff;
	}

	#round-detail dl dt {
		padding: 0 0 5px;
		background: #f89043;
		overflow: hidden;
	}
	
	#round-detail dl dt h5 {
		width: 207px;
		height: 35.7px;
		margin: 0 auto;
		text-indent: -9999px;
		background: url(../img/lawson_privilege.png) no-repeat center;
		background-size: 174px 30px;
	}

	#round-detail dl dd {
		padding: 15px 10px 14px;
		font-weight: bold;
		position: relative;
		box-sizing: border-box;
	}
	
	#round-detail dl dd strong {
		font-size: 1.125rem;
		line-height: 1.45;
	}
	
	#round-detail dl dd:after {
		content: "";
		display: block;
		width: 96px;
		height: 117px;
		margin: 10px auto 0;
		background: url(../img/lawson_present.png) no-repeat center;
		background-size: contain;
	}
}

@media (min-width: 641px) {
	.round_overview {
		width: 100%;
		border-radius: 50px;
		background: #006cb7;
	}
	
	#round-detail .lawson_lead {
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 20px;
		text-align: center;
		font-size: 1.25rem;
		font-weight: bold;
		line-height: 1.6;
	}

	#round-detail .lawson_lead:before {
		content: "";
		display: block;
		width: 105px;
		height: 60px;
		margin-right: 21px;
		background: url(../img/select_icon_lawson.png) no-repeat;
	}

	#round-detail ol {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 850px;
		margin: 0 auto;
		margin-bottom: 30px;
	}
	
	#round-detail ol > li {
		width: 390px;
		height: 100%;
		padding: 23px 20px 0;
		font-size: 1.25rem;
		font-weight: bold;
		line-height: 1.4;
		text-align: center;
		border-radius: 20px;
		background: #fff;
		position: relative;
		box-sizing: border-box;
	}
	
	
	#round-detail ol > li p + p {
		padding-top: 10px;
	}
	
	#round-detail ol > li img {
		width: 246px;
		height: 128px;
	}
	
	#round-detail ol > li + li:before {
		content: "";
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 30px 0 30px 30px;
		border-color: transparent transparent transparent #ef648e;
		position: absolute;
		top: 0;
		bottom: 0;
		left: -45px;
		margin: auto;
	}

	#round-detail dl {
  	margin-top: 30px;
		display: flex;
		border: 6px solid #f89043;
		border-radius: 20px;
		background: #fff;
	}

	#round-detail dl dt {
		margin-right: 32px;
		background: #f89043;
		overflow: hidden;
	}
	
	#round-detail dl dt h5 {
		width: 234px;
		height: 100%;
		text-indent: -9999px;
		background: url(../img/lawson_privilege.png) no-repeat center;
		background-size: 174px 30px;
	}

	#round-detail dl dd {
		width: calc(100% - 266px);
		padding: 22px 0 21px;
		font-size: 1.125rem;
		font-weight: bold;
		line-height: 1.78;
		position: relative;
		box-sizing: border-box;
	}
	
	#round-detail dl dd strong {
		font-size: 1.375rem;
		line-height: 1.45;
	}
	
	#round-detail dl dd:after {
		content: "";
		display: block;
		width: 138px;
		height: 167px;
		background: url(../img/lawson_present.png) no-repeat center;
		background-size: contain;
		position: absolute;
		top: -31px;
		right: 40px;
	}
}	

/* ------------------------------
	schedule_wrap
------------------------------ */
@media (max-width: 640px) {
	.schedule_wrap > p {
		margin-bottom: 0.75em;
	}
}

@media (min-width: 641px) {
	.schedule_wrap {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
	}
}
