@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100..900&family=Noto+Sans+SC:wght@100..900&display=swap');

.noto-sans-jp {
	font-family: "Noto Sans JP", sans-serif;
}

.noto-sans-kr {
	font-family: "Noto Sans KR", sans-serif;
}

.noto-sans-sc {
	font-family: "Noto Sans SC", sans-serif;
}

/****************************************************/
/* access */

.l-map {
	display: block;
	width: 100%;
	height: 300px;
	margin-top: 15px;
}

.l-imglist li {
	text-align: center;
}

.l-imglist img {
	display: block;
	width: 100%;
	height: auto;
	margin: auto;
}

/****************************************************/
/* bet */

/*--------------------------------------------------*/
/* sub */
/*--------------------------------------------------*/

.l-sub {
	position: relative;
	margin: 15px 0 30px;
	padding: 15px 20px;
	border-radius: 8px;
	background-color: var(--c-lightyellow);
}

.l-sub::after {
	content: '';
	position: absolute;
	bottom: -20px;
	left: 50%;
	display: block;
	transform: translateX(-50%);
	border-left: 30px solid transparent;
	border-right: 30px solid transparent;
	border-top: 30px solid #C00;
	border-bottom: none;
}

.l-sub h3 {
	text-align: center;
	font-weight: 700;
	font-size: 20px;
	background-color: var(--c-darkyellow);
	margin: -15px -20px 0;
	padding: 10px 20px;
	border-radius: 8px 8px 0 0;
}

/*--------------------------------------------------*/
/* fill */
/*--------------------------------------------------*/

.l-fill {
	margin-top: 15px;
	display: flex;
	gap: 20px;
}

.l-fill_img img {
	display: block;
	border: #bbb solid 1px;
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 920px) {
	.l-fill_img {
		width: calc(380/803 * 100%);
	}

	.l-fill_img img {
		max-width: 100%;
		height: auto;
	}
}

@media (max-width: 670px) {
	.l-fill {
		display: block;
	}

	.l-fill_img {
		width: auto;
	}

	.l-fill_img img {
		margin: auto;
	}
}


/*--------------------------------------------------*/
/* process */
/*--------------------------------------------------*/

.l-process {
	padding-left: 1em;
	list-style-type: decimal;
}

.l-process li:not(:last-child) {
	margin-bottom: 10px;
}

@media (max-width: 670px) {
	.l-process {
		margin-top: 15px;
	}
}

/*--------------------------------------------------*/
/* note */
/*--------------------------------------------------*/

.l-note {
	display: block;
	text-align: center;
	font-weight: 700;
	font-size: 20px;
	color: var(--c-green);
}

.l-ticket img {
	display: block;
	border: #bbb solid 1px;
	box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.1);
	margin: 15px auto;
}

/*--------------------------------------------------*/
/* machine */
/*--------------------------------------------------*/

.l-machine > h3 {
	font-size: 18px;
	font-weight: 700;
	line-height: 1.3;
	margin-top: 0;
	background-color: var(--c-green);
	color: #FFF;
	text-align: center;
	padding: 5px 15px;
	border-radius: 8px;
}

.l-machine_howto {
	margin-top: 15px;
	display: flex;
	gap: 15px;
}

.l-machine_howto figure {
	width: calc(199/475 * 100%);
	max-width: 199px;
}

.l-machine_howto img {
	display: block;
	max-width: 100%;
	height: auto;
}

.l-machine_txt {
	flex: 1;
}

@media (max-width: 680px) {

}