@charset "utf-8";

/* ----------------------------------------------------------------------------------

	運行状況・払戻案内（SPとTablet用）
	/ticket_info/select/

	01.コンテンツ

---------------------------------------------------------------------------------- */


/* ----------------------------------------------------------------------------------
	01.コンテンツ
---------------------------------------------------------------------------------- */
/* for SP */
.container02 {display:flex;}
.container02 ul {
	box-sizing:border-box;
	padding:7.5% 4%;
	width:50%;
	text-align:center;
}
.container02 ul:nth-child(1) {background-color:#008803;}
.container02 ul:nth-child(2) {background-color:#333;}
.container02 ul li:nth-child(n+2) {margin-top:9px;}
.container02 ul li a {
	display:inline-flex;
	align-items:center;
	position:relative;
	border-radius:3px;
	padding:0 10% 0 8%;
	min-height:68px;
	width:100%;
	background-color:#fff;
	line-height: 1.2;
	text-align:left;
	font-size:2rem;
	color:#333;
}
.container02 ul li a::after {
	content:"";
	display:block;
	position:absolute;
	top:0;
	bottom:0;
	right:7px;
	margin:auto;
	width:6px;
	height:10px;
	background:url(/material/img/ico_link.svg) 0 0 no-repeat;
	background-size:contain;
}


/* for SP small */
@media screen and (max-width:320px) {
	.container02 ul li a {font-size:1.8rem;}
}


/* for Tablet */
@media screen and (min-width:768px) {
	.container02 {
		margin:0 auto 60px;
		width:90%;
		max-width:800px;
	}
	.container02 ul {padding:30px 20px;}
	.container02 ul li:nth-child(n+2) {margin-top:10px;}
	.container02 ul li a {padding:0 15px;}
}

