@charset "UTF-8";

#contents {
	max-width: 950px;
	width: 100%;
	margin: 0 auto 80px;
}



/* -----------------------------------------
	section
----------------------------------------- */
#contents {
	margin-bottom: 80px;
}

.terms_contents + .terms_contents {
	margin-top: 60px;
}

@media only screen and (max-width: 750px) {
	.terms_contents + .terms_contents {
		margin-top: 50px;
	}
}

.terms_section {
	padding: 0 15px;
}

.terms_section + .terms_section {
	margin-top: 50px;
}


/* -----------------------------------------
	heading
----------------------------------------- */
.terms_title {
	margin: 0 auto 50px;
	padding: 40px 22px;
	color: #00796E;
	background: #DBF0EF;
	font-size: 4.6rem;
	font-weight: bold;
	text-align: center;
}

@media only screen and (max-width: 750px) {
	.terms_title {
		margin-bottom: 10%;
		padding: 22px;
		font-size: clamp(2.0rem, 9.6vw, 4.0rem);/* 36px */
		line-height: 1.25;
	}

	.terms_title h2 {
		width: 100%;
		padding: 12px 10px;
		text-align: left;
	}
}

.terms_title02 {
	position: relative;
	margin-bottom: 25px;
	padding-bottom: 8px;
	padding-left: 15px;
	font-size: 3.2rem;
	color: #00796e;
}

.terms_title02:after {
	content: '';
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	background: #00796e;
}

@media only screen and (max-width: 750px) {
	.terms_title02 {
		font-size: clamp(1.8rem, 6.4vw, 2.8rem);/* 24px */
	}
}


/* -----------------------------------------
	terms_list
----------------------------------------- */
li {
	padding-bottom: 0.5em;
}

.terms_list {
	counter-reset: number;
	font-size: 1.5rem;
	line-height: 1.7;
}

@media only screen and (max-width: 750px) {
	.terms_list {
		font-size: 1.4rem;
	}
}

.terms_list > li {
	position: relative;
	padding-left: 30px;
	padding-bottom: 15px;
}

.terms_list > li::before {
	position: absolute;
	counter-increment: number;
	content: counter(number);
	display: inline-block;
	color: #FFF;
	background: #00796E;
	left: 0;
	width: 20px;
	height: 20px;
	text-align: center;
}

.terms_list > li > ul {
	margin-top: 10px;
}

.terms_disc_list > li {
	position: relative;
	padding-left: 15px;
}

.terms_disc_list > li::before {
	content:"";
	position: absolute;
	top: 7px;
	left: 0;
	width: 4px;
	height: 4px;
	display: inline-block;
	background-color: #333;
	border-radius: 50%;
}


/* -----------------------------------------
	grayBox
----------------------------------------- */
.grayBox {
	margin: 0 15px;
	padding: 20px 15px;
	background: #F1F1F1;
	border-radius: 10px;
	font-size: 1.5rem;
}

@media only screen and (max-width: 750px) {
	.grayBox {
		font-size: 1.4rem;
	}
}


/* -----------------------------------------
	mapImage
----------------------------------------- */
.mapImage {
	text-align: center;
}

.mapImage img {
	max-width: 100%;
}


/* -----------------------------------------
	linkWrapper
----------------------------------------- */
.linkWrapper {
	display: flex;
	justify-content: space-between;
}
@media only screen and (max-width: 750px) {
	.linkWrapper {
		flex-direction: column;
		gap: 15px;
	}
}

.terms_btn {
	width: 32%;
}
@media only screen and (max-width: 750px) {
	.terms_btn {
		width: 100%;
	}
}

.terms_btn a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 50px;
	height: 100%;
	padding: 15px 35px 15px 20px;
	border: 1px solid #00796e;
	border-radius: 10px;
	background: #00796e;
	color: #fff;
	font-size: 1.7rem;
	text-align: center;
	text-decoration: none !important;
}
@media only screen and (max-width: 750px) {
	.terms_btn a {
		justify-content: flex-start;
		font-size: 1.6rem;
		text-align: left;
	}
}

/* arw */
.terms_btn a::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	width: 7px;
	height: 7px;
	border: none;
	border-top: 2px solid #FFF;
	border-right: 2px solid #FFF;
	transform: rotate(45deg);
	margin: auto;
}

/* blank */
.terms_btn a[target="_blank"]::before,
.terms_btn a[target="_blank"]::after {
	content: '';
	display: block;
	position: absolute;
	top: -2px;
	bottom: 0;
	right: 15px;
	width: 6px;
	height: 5px;
	border: none;
	margin: auto;
	transform: none;
}
.terms_btn a[target="_blank"]::after {
	background: #FFF;
}
.terms_btn a[target="_blank"]::before {
	top: 5px;
	right: 12px;
	border-bottom: 1px solid #FFF;
	border-right: 1px solid #FFF;
}


@media (hover: hover) and (pointer: fine) {
	.terms_btn a:hover {
		color: #00796E;
		background-color: #FFF;
	}

	.terms_btn a:hover::before,
	.terms_btn a:hover::after {
		border-color: #00796E;
		background-color: #FFF;
	}
	.terms_btn a[target="_blank"]:hover::after {
		background-color: #00796E;
	}
}



/* -----------------------------------------
	Automatic ticket gate
----------------------------------------- */
.ticketgate_Wrapper {
	padding: 25px;
	border: 2px #DDD solid;
	border-radius: 20px;
	font-size: 1.5rem;
	line-height: 1.7;
}

.ticketgate_inner {
	margin: 15px 0;
	display: flex;
	gap: 15px;
}
@media only screen and (max-width: 750px) {
	.ticketgate_inner {
		flex-direction: column;
	}
}

.ticketgate_inner li.left {
	flex-shrink: 0;
	padding: 15px;
	border: 1px #DDD solid;
}

.ticketgate_inner .inner_img {
	text-align: center;
}

p.img_title {
	font-weight: bold;
}

.ticketgate_inner li.left img {
	width: 60%;
	padding-top: 15px;
}
@media only screen and (max-width: 750px) {
	.ticketgate_inner li.left img {
		width: 50%;
	}
}

.ticketgate_inner li.right ul.caution {
	font-size: 1.3rem;
	line-height: 1.5;
}

