@charset "utf-8";

/*==================================================
layout.css
================================================== */

/* ----------------------------------------
 - common
---------------------------------------- */

body *,
body *:before,
body *:after {
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
}

img {
	max-width: 100%;
	width: auto;
}

a {
	text-decoration: underline;
}
a:hover {
	text-decoration: none;
}
a:hover > img {
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	opacity: 0.8;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	zoom: 1;
}

.only_pc {
	display: block;
}

.only_sp {
	display: none;
}

.notice {
	font-size: 12px!important;
}
.indent {
	display: block;
	text-indent: -1em;
	padding-left: 1em;
}

.bold_text {
	font-weight: bold!important;
}
.red_text {
	color: #ff0000!important;
}

.dot_list > li {
	padding-left: 1em;
	position: relative;
}
.dot_list > li:before {
	content: "・";
	position: absolute;
	left: 0;
	font-size: inherit;
}

.align_center {
	text-align: center;
}

@media screen and (max-width: 736px) {

	body {
		font-size: 28px;
		font-size: 3.804vw;
	}

	img {
		width: 100%;
	}

	.only_pc {
		display: none;
	}

	.only_sp {
		display: block;
	}

	.notice {
		font-size: 3.261vw!important;
	}

	.icon_recommend {
		font-size: 24px;
		font-size: 3.261vw;
		line-height: 4.891vw;
	}

}

/* ----------------------------------------
 - header
---------------------------------------- */
#header {
	position: relative;
	width: 100%;
	background-color: #ffffff;
	padding-bottom: 4px;
	margin-bottom: 30px;
}
#header:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 4px;
	bottom: 0;
	background: -webkit-linear-gradient(left,rgba(5,117,189,.99) 0,rgba(48,179,231,.99) 20%,rgba(62,177,100,.99) 40%,rgba(62,177,100,.99) 60%,rgba(48,179,231,.99) 80%,rgba(5,117,189,.99) 100%);
	background: linear-gradient(to right,rgba(5,117,189,.99) 0,rgba(48,179,231,.99) 20%,rgba(62,177,100,.99) 40%,rgba(62,177,100,.99) 60%,rgba(48,179,231,.99) 80%,rgba(5,117,189,.99) 100%);
}
#header > #header_inner {
	max-width: 1040px;
	margin: 0 auto;
	padding: 10px 0;
	overflow: hidden;
}
#header .logo_left {
	float: left;
	width: 180px;
}
#header .logo_right {
	float: right;
	width: 135px;
}

@media screen and (min-width: 737px) and (max-width: 1039px){
	#header {
	}
	#header > #header_inner {
		padding: 10px 20px;
	}
}

@media screen and (max-width: 736px){
	#header {
		margin-bottom: 0;
	}
	#header > #header_inner {
		padding: 10px 3.5%;
	}

	#header .logo_left {
		width: 26.5%;
	}

	#header .logo_right {
		width: 22%;
	}
}

/* ----------------------------------------
 - main
---------------------------------------- */
main {
	width: 100%;
}

/* ----------------------------------------
 - section
---------------------------------------- */
section {
	padding: 40px 0 40px;
}
section .section_inner {
	max-width: 1040px;
	margin: 0 auto;
	padding: 0 20px;
}
section .section_inner > * {
	position: relative;
	z-index: 2;
}
section .section_inner > *:last-child {
	margin-bottom: 0!important;
}
section .section_title {
	color: #ffffff;
	background-color: #36bef0;
	font-size: 40px;
	font-weight: bold;
	line-height: 60px;
	text-align: center;
	max-width: 1040px;
	margin: 0 auto 20px;
}
section .section_sub_title {
	position: relative;
	font-size: 36px;
	font-weight: bold;
	line-height: 54px;
	margin-bottom: 20px;
}
section .section_sub_title:before {
	position: relative;
	display: inline-block;
	content: "";
	background-image: url(/railways/seibulineapp/images/ver2019/icon_conductor_racco.png);
	width: 68px;
	height: 54px;
	background-repeat: no-repeat;
	background-position: left top;
	background-size: 100% auto;
	vertical-align: middle;
	margin-right: 10px;
}
section .section_copy_text {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
}
section .info_box {
	margin: 30px auto 0;
	max-width: 1000px;
}
section .info_box:first-child {
	margin-top: 0;
	max-width: 1000px;
}
section .info_box > * {
	padding-left: 10px;
	padding-right: 10px;
}
section .info_box > *:first-child {
	padding-left: 0;
	padding-right: 0;
}
section .info_box .info_title {
	margin-bottom: 10px;
	color: #36bef0;
	font-size: 26px;
	font-weight: bold;
	line-height: 36px;
}
section .info_box .update_list {
	height: 200px;
	overflow-y: auto;
}
section .info_box .update_list > li {
	border-bottom: 1px dotted #d8d8d8;
	overflow: hidden;
}
section .info_box .update_list > li:first-child {
	padding-top: 0;
}
section .info_box .update_list > li:last-child {
	border-bottom: none;
}
section .info_box .update_list > li a {
	display: block;
}
section .info_box .update_list > li .date {
	display: block;
	float: left;
	width: 90px;
	margin-right: 10px;
	padding: 20px 0;
}
section .info_box .update_list > li .text {
	display: block;
	overflow: hidden;
	padding: 20px 0;
}
section .info_box .update_list > li img {
	margin-top: 10px;
}

section .desc_box {
	display: flex;
	display: -webkit-flex;
	display: -moz-flex;
}
section .desc_box > .desc_image {
	max-width: 360px;
	width: 35.5%;
	margin: 0 1%;
	text-align: center;
}
section .desc_box > .desc_text_area {
	text-align: left;
	max-width: 620px;
	width: 60.5%;
	margin: 0 1%;
}
section .image_text_box {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}
section .image_text_box.flex_reverse {
	flex-direction: row-reverse;
	justify-content: flex-end;
}
section .image_text_box > .image_area {
	margin-left: 20px;
}
section .image_text_box.flex_reverse > .image_area {
	margin-left: 0;
	margin-right: 20px;
}
section .image_text_box > .switch_bnr_area {
	margin-right: 20px;
	max-width: 300px;
	width: 30%;
}
section .image_text_box > .text_area {
	overflow: hidden;
	flex: 0 1 auto;
	width: 100%;
}
section .bnr_item {
	width: 530px;
	margin: 20px auto;
	background-color: #ffffff;
}
section .movie_area {
	max-width: 700px;
	width: 100%;
	margin: 30px auto;
	position: relative;
	padding-top: 394px;
}
section .movie_area video {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
}
@media screen and (min-width: 737px){
	section .desc_box > .desc_text_area p {
		font-size: 21px;
		line-height: 30px;
	}
	section .desc_box > .desc_text_area .notice {
		font-size: 16px!important;
	}
}
@media screen and (max-width: 736px){
	section {
		padding: 0;
	} 
	section .section_inner {
		background-position: right top;
		background-repeat: no-repeat;
		background-size: 50% auto;
		padding: 5.435vw 2.8% 8.152vw;
	} 
	section .section_title {
		margin-bottom: 0;
		font-size: 42px;
		font-size: 5.707vw;
		line-height: 9.783vw;
	}
	section .section_sub_title {
		font-size: 34px;
		font-size: 4.62vw;
		line-height: 7.337vw;
		margin-bottom: 2.717vw;
		padding-left: 10.598vw;
	}
	section .section_sub_title:before {
		position: absolute;
		left: 0;
		top: 0;
		width: 9.239vw;
		height: 7.337vw;
		margin-right: 0;
	}
	section .section_copy_text {
		font-size: 32px;
		font-size: 4.348vw;
		margin-bottom: 20px;
	}
	section .info_box {
		margin-top: 4.076vw;
	}
	section .info_box:first-child {
		margin-top: 0;
	}
	section .info_box > * {
		padding-left: 0;
		padding-right: 0;
	}
	section .info_box .info_title {
		margin:  0 0 2.717vw;
		font-size: 32px;
		font-size: 4.348vw;
		line-height: 5.707vw;
	}
	section .info_box .update_list {
		height: 27.174vw;
	}
	section .info_box .update_list::-webkit-scrollbar {
		width: 15px;
	}
	section .info_box .update_list::-webkit-scrollbar-track{
		background-color: #ffffff;
	}
	section .info_box .update_list::-webkit-scrollbar-thumb{
	  background-color: #cccccc;
	  border-radius: 8px;
	  box-shadow: inset 0 0 0 2px #ffffff;
	}
	section .info_box .update_list > li {
		border-bottom: 0.218vw dotted #d8d8d8;
		line-height: 6.521vw
	}
	section .info_box .update_list > li a {
		text-decoration: none;
	}
	section .info_box .update_list > li .date {
		display: block;
		float: none;
		width: 100%;
		margin-right: 0;
		padding: 4.076vw 0 0;
	}
	section .info_box .update_list > li .text {
		display: block;
		overflow: hidden;
		padding: 0 0 4.076vw;
	}
	section .desc_box {
		display: block;
	}
	section .desc_box p {
		font-size: 28px;
		font-size: 3.804vw;
	}
	section .desc_box > .desc_image {
		float: none;
		text-align: center;
		margin: 0 0 2.717vw;
		width: 100%;	
		max-width: none;
	}
	section .desc_box .desc_text_area {
		width: 100%;
		max-width: none;
		margin: 0 0 5.435vw;
	}
	section .desc_box .desc_text {
		font-size: 32px;
		font-size: 4.348vw;
		margin-bottom: 8.152vw;
	}
	section .image_text_box {
		display: block;
	}
	section .image_text_box > .switch_bnr_area {
		margin: 0 auto 2.717vw;
		max-width: 450px;
		width: 70%;
	}
	section .image_text_box .image_area {
		width: 100%;
		margin: 0 auto 2.717vw;
	}
	section .bnr_item {
		width: auto;
		margin: 4.076vw auto;
	}
	section .movie_area {
		padding-top: 51.5vw;
		margin: 4.076vw auto 3.397vw
	}
}

/* ----------------------------------------
 - main visual
---------------------------------------- */
#main_visual {
	padding: 0;
	border-bottom: 2px solid #ffffff;
}
#main_visual #main_image {
	margin: 0 auto;
	max-width: 1040px;
	position: relative;
}
#main_visual .section_inner {
	padding-left: 20px;
	padding-right: 20px;
	min-height: 0;
}
#main_visual .section_inner:before {
	display: none;
}
#main_visual .download_box {
	margin: 0 auto;
	background-color: #ffffff;
	padding: 20px 0;
	display: flex;
	flex-direction: row-reverse;
}
#main_visual .download_box .download_btns {
	width: 406px;
	overflow: hidden;
}
#main_visual .download_box .download_btns > li {
	float: left;
	margin-left: 20px;
}
#main_visual .download_box .download_btns > li:nth-child(1) {
	width: 162px;
}
#main_visual .download_box .download_btns > li:nth-child(2) {
	width: 204px;
}
#main_visual .download_box .download_text {
	flex: 1;
	font-size: 12px;
}
@media screen and (max-width: 736px){
	#main_visual {
		margin-bottom: 0;
		padding-bottom: 8.152vw;
		border: none;
		width: 100%;
	}
	#main_visual .section_inner {
		padding: 0;
	}
	#main_visual .download_box {
		margin: 0 auto;
		background-color: #ffffff;
		padding: 5.434vw 2.8% 0;
		max-width: 736px;
		display: block;
	}
	#main_visual .download_box .download_btns {
		width: 75%;
		margin: 0 auto;
	}
	#main_visual .download_box .download_btns > li {
		float: left;
		margin: 0;
	}
	#main_visual .download_box .download_btns > li:nth-child(1) {
		width: 42.5%;
	}
	#main_visual .download_box .download_btns > li:nth-child(2) {
		margin-left: 4.5%;
		width: 53%;
	}
	#main_visual .download_box .download_text {
		margin-top: 2.717vw;
	}
}

/* ----------------------------------------
 - norutap
---------------------------------------- */
#norutap {
	color: #36bef0;
}
#norutap .section_title.new_icon {
	position: relative;
}
#norutap .section_title img {
	width: 143px;
	vertical-align: middle;
}

/*#norutap .section_title.new_icon:before {
	position: relative;
	content: "NEW";
	display: inline-block;
	vertical-align: middle;
	color: #ff0000;
	background-color: #ffffff;
	border-radius: 5px;
	font-size: 16px;
	line-height: 30px;
	text-align: center;
	padding: 0 10px;
	margin-right: 5px;
}
@media screen and (max-width: 736px){
	#norutap .section_title img {
		width: 19.429vw;
	}
	#norutap .section_title.new_icon:before {
		font-size: 20px;
		font-size: 2.717vw;
		line-height: 5.435vw;
		padding: 0 1.359vw;
		margin-right: 1.359vw;
	}
}/*

/* ----------------------------------------
 - function
---------------------------------------- */
#function {
	padding: 0;
	color: #36bef0;
}
#function > .section_inner {
	min-height: 0;
}
#function > section:first-of-type {
	margin-top: 20px;
}
#function .red_frame {
	display: inline-block;
	width: 64px;
	height: 16px;
	margin: 0 3px;
	border: 3px solid #ff0000;
	border-radius: 5px;
	vertical-align: sub;
}
#function .green_frame {
	display: inline-block;
	width: 64px;
	height: 16px;
	margin: 0 3px;
	border: 3px solid #3bb149;
	border-radius: 5px;
	vertical-align: sub;
}
#function #app_point {
	width: 280px;
	position: relative;
	margin: 40px auto 65px;
}
#function #app_point .phone_body {
	position: relative;
	z-index: 1;
}
#function #app_point .phone_caption {
	color: #3bb149;
	margin: 10px auto 0;
	border: 2px solid #3bb149;
	height: 48px;
	font-size: 20px;
	font-weight: bold;
	line-height: 48px;
	text-align: center
}
#function #app_point .green_frame {
	position: absolute;
	display: block;
	width: 64px;
	height: 16px;
	margin: 0;
	text-indent: -9999px;
	z-index: 2;
}
#function #app_point .green_frame:nth-of-type(1) {
	width: 214px;
	height: 32px;
	margin: 0;
	top: 88px;
	right: 15px;
}
#function #app_point .green_frame:nth-of-type(2) {
	width: 150px;
	height: 33px;
	margin: 0 auto;
	top: 179px;
	left: 0;
	right: 0;
}
#function #app_point .green_frame:nth-of-type(3) {
	width: 156px;
	height: 61px;
	margin: 0 auto;
	top: 224px;
	left: 0;
	right: 0;
}
#function #app_point .green_frame:nth-of-type(4) {
	width: 230px;
	height: 142px;
	margin: 0 auto;
	top: 287px;
	left: 0;
	right: 0;
}
#function #app_point .green_frame:nth-of-type(5) {
	width: 47px;
	height: 45px;
	top: 427px;
	left: 38px;
}
#function #app_point .green_frame:nth-of-type(6) {
	width: 47px;
	height: 45px;
	top: 427px;
	left: 90px;
}
#function #app_point .green_frame:nth-of-type(7) {
	width: 47px;
	height: 45px;
	top: 427px;
	left: 144px;
}
#function #app_point .green_frame:nth-of-type(8) {
	width: 40px;
	height: 35px;
	top: 473px;
	left: 72px;
	right: 0;
}
#function #app_point .green_frame:nth-of-type(9) {
	width: 40px;
	height: 35px;
	margin: 0 auto;
	top: 473px;
	left: 99px;
	right: 0;
}
#function #app_point .green_frame:nth-of-type(10) {
	width: 40px;
	height: 35px;
	margin: 0 auto;
	top: 473px;
	left: 0px;
	right: 0;
}
#function .border_box {
	border: 2px solid #36bef0;
	padding: 20px;
}
#function .icon_list {
	font-size: 20px;
	line-height: 1.5em;
}
#function .icon_list > li {
	position: relative;
	padding-left: 50px;
	margin-bottom: 10px;
	min-height: 30px;
}
#function .icon_list > li:before {
	position: absolute;
	content: "";
	width: 45px;
	height: 30px;
	top: 0;
	left: 0;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: auto 100%;
}
#function .icon_list > li.notice_icon:before {
	background-image: url(/railways/seibulineapp/images/ver2019/icon_notice.png);
}
#function .icon_list > li.weather_icon:before {
	background-image: url(/railways/seibulineapp/images/ver2019/icon_weather.png);
	height: 50px;
}
#function .icon_list > li.update_icon:before {
	background-image: url(/railways/seibulineapp/images/ver2019/icon_update.png);
}
#function .icon_list > li.vicinityinfo_icon:before {
	background-image: url(/railways/seibulineapp/images/ver2019/icon_vicinityinfo.png);
}
#function .icon_list > li.close_icon:before {
	background-image: url(/railways/seibulineapp/images/ver2019/icon_close.png);
}
#function .icon_list > li.home_icon:before {
	background-image: url(/railways/seibulineapp/images/ver2022/icon_home.png);
}
#function .icon_list > li.mypage_icon:before {
	background-image: url(/railways/seibulineapp/images/ver2019/icon_mypage.png);
	height: 27px;
}
#function .icon_list > li.lions_icon:before {
	background-image: url(/railways/seibulineapp/images/ver2019/icon_lions.png);
	height: 34px;
}
@media screen and (max-width: 736px){
	#function {
		padding-bottom: 8.152vw;
	}
	#function .section_inner {
		padding-bottom: 0;
	}
	#function > section:first-of-type {
		margin-top: 4.076vw;
	}
	#function .red_frame {
		width: 12.23vw;
		height: 3.533vw;
		margin: 0 0.408vw;
		border: 0.543vw solid #ff0000;
		border-radius: 0.679vw;
	}
	#function .green_frame {
		width: 12.23vw;
		height: 3.533vw;
		margin: 0 0.408vw;
		border: 0.543vw solid #5ab653;
		border-radius: 0.679vw;
	}
	#function #app_point {
		width: 40%;
		min-width: 280px;
		margin: 6.793vw auto;
	}
	#function .border_box {
		padding: 2.038vw 4.076vw 2.717vw;
	}
	#function .icon_list {
		font-size: inherit;
		line-height: inherit;
	}
	#function .icon_list > li {
		padding-left: 9.511vw;
		margin-bottom: 1.359vw;
		min-height: 6.25vw;
	}
	#function .icon_list > li:before {
		width: 8.152vw;
		height: 6.25vw;
	}
	#function .icon_list > li.weather_icon:before {
		height: 10.054vw;
	}
	#function .icon_list > li.mypage_icon:before {
		height: 5.435vw;
	}
	#function .icon_list > li.lions_icon:before {
		height: 6.793vw;
	}
}


/* ----------------------------------------
 - function_box
---------------------------------------- */
.function_box {
	padding: 40px 0;
}
.function_box:nth-child(odd) {
	color: #ffffff;
	background-color: #036eb8;
}
.function_box .section_inner {
	min-height: 280px;
}
.function_box .function_title {
	position: relative;
	font-size: 28px;
	font-weight: bold;
	line-height: 40px;
	margin-bottom: 25px;
}
.function_box .function_title:before {
	position: relative;
	content: "";
	display: inline-block;
	width: 46px;
	height: 40px;
	background: url(/railways/seibulineapp/images/ver2019/icon_title_racco.png) no-repeat left top;
	background-size: 100% auto;
	vertical-align: middle;
	margin-right: 10px;
}
.function_box .desc_box {
	flex-direction: row;
}

.function_box:nth-child(even) .desc_box {
	flex-direction: row-reverse;
}
@media screen and (max-width: 736px){
	.function_box  {
		padding: 0;
	}
	.function_box .section_inner {
		padding: 0 2.717vw;
	}
	.function_box .function_title {
		font-size: 32px;
		font-size: 4.348vw;
		line-height: 5.435vw;
		margin-bottom: 2.717vw;
		text-align: center;
	}
	.function_box .function_title:before {
		width: 6.25vw;
		height: 5.435vw;
		margin-right: 1.5%;
	}
	.function_box .section_inner .function_title {
		display: none;
	} 
}

/* ----------------------------------------
 - pagetop
---------------------------------------- */
#pagetop {
	position: fixed;
	right: 30px;
	bottom: 30px;
	width: 50px;
	height: 50px;
	overflow: hidden;
	background: #4ccaf2 url(/railways/seibulineapp/images/ver2019/icon_arrow_white.png) no-repeat left top;
	background-size: cover;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	text-indent: -9999px;
	display: none;
	z-index: 9999;
	border: 1px solid #ffffff;
}
#pagetop:hover {
	transition: all 0.3s;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	opacity: 0.8;
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
	zoom: 1;
}
#pagetop > a {
	display: block;
	width: 100%;
	height: 100%;
}
@media screen and (max-width: 736px){
	#pagetop {
		right: 3.5%;
		bottom: 7.813vw;
		width: 10.87vw;
		height: 10.87vw;	
		border: 2px solid #ffffff;
	}
}

/* ----------------------------------------
 - footer
---------------------------------------- */
footer {
	background-color: #ffffff;
	position: relative;
}
footer:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 4px;
	top: 0;
	background: -webkit-linear-gradient(left,rgba(5,117,189,.99) 0,rgba(48,179,231,.99) 20%,rgba(62,177,100,.99) 40%,rgba(62,177,100,.99) 60%,rgba(48,179,231,.99) 80%,rgba(5,117,189,.99) 100%);
	background: linear-gradient(to right,rgba(5,117,189,.99) 0,rgba(48,179,231,.99) 20%,rgba(62,177,100,.99) 40%,rgba(62,177,100,.99) 60%,rgba(48,179,231,.99) 80%,rgba(5,117,189,.99) 100%);
}
footer .footer_inner {
	max-width: 1040px;
	margin: 0 auto;
	overflow: hidden;
	padding: 14px 0 10px;
}
footer #copyright {
	float: right;
	font-size: 12px;
	line-height: 42px;
}
footer .footer_logo {
	float: left;
	width: 150px;
}

@media screen and (min-width: 737px) and (max-width: 1039px){
	footer .footer_inner {
		padding: 14px 20px 10px;
	}
}

@media screen and (max-width: 736px){
	footer .footer_inner {
		max-width: 1040px;
		margin: 0 auto;
		overflow: hidden;
		padding: 2.717vw 0 1.369vw;
	}
	footer #copyright {
		float: none;
		text-align: center;
		font-size: 20px;
		font-size: 2.717vw;
		line-height: 6.793vw;
	}
	footer .footer_logo {
		float: none;
		padding: 0;
		width: 36%;
		margin: 0 auto 1.369vw;
	}
}


/* category */
#gourmet .desc_box > .desc_image img,
#multilingual .desc_box > .desc_image img,
#decoration .desc_box > .desc_image img{
	width: 44.5%;
}

#gourmet .function_title:before {
	width: 48px;
	height: 40px;
	background: url(/railways/seibulineapp/images/ver2019/icon_title_gourmet_racco.png) no-repeat left top;
	background-size: 100% auto;
}
#decoration .decoration_phone {
	width: 44.5%;
	position: relative;
	margin: 0 auto;
}
#decoration .decoration_phone img {
	width: 100%!important;
}
#decoration .decoration_phone .phone_body {
	position: absolute;
	top: 0;
	z-index: 2;
}
#decoration .bx-wrapper {
	position: relative;
	z-index: 1;
}
#decoration .bx-wrapper .bx-viewport {
	-moz-box-shadow: none;
	-webkit-box-shadow: none;
	box-shadow: none;
	border:  none;
	left: 0;
	background: none;
}
#download {
	color: #ffffff;
	background-color: #5ab653;
	padding-top: 40px;
}
#download .section_title {
	text-align: center;
	background: none;
}
#download .section_title:before {
	position: relative;
	content: "";
	display: inline-block;
	width: 68px;
	height: 45px;
	background-image: url(/railways/seibulineapp/images/ver2019/icon_racco.png);
	background-size: 100% auto;
	vertical-align: middle;
	margin-right: 10px;
}
#download .section_inner {
	width: 680px;
	min-height: 0;
	padding: 0 10px;
}
#download .downloads {
	overflow: hidden;
	margin: 20px 0 20px -20px;
}
#download .downloads > li {
	float: left;
	width: 320px;
	padding: 20px 0 30px;
	color: #333333;
	background-color: #ffffff;
	text-align: center;
	margin-left: 20px;
}
#download .downloads img {
	width: 100%;
}
#download .downloads .appstore {
	width: 160px;
	margin: 20px auto;
}
#download .downloads .googleplay {
	width: 200px;
	margin: 20px auto;
}
#download .downloads .qr {
	width: 120px;
	margin: 20px auto 0;
}

@media screen and (max-width: 736px){
	#gourmet .desc_box > .desc_image img,
	#multilingual .desc_box > .desc_image img,
	#decoration .desc_box > .desc_image img {
		width: 44.5%;
	}
	#gourmet .function_title:before {
		width: 6.522vw;
		height: 5.435vw;
		margin-right: 1.359vw;
	}
	#download {
		padding: 5.435vw 0;
	}
	#download .section_title {
		display: block;
		margin-bottom: 4.076vw;
	}
	#download .section_title:before {
		width: 10%;
		height: 6.114vw;
		margin-right: 1.5%;
	}
	#download .section_inner {
		width: 100%;
	}
	#download .downloads {
		margin: 20px auto 20px;
		width: 76%;
		display: flex;
		display: -webkit-flex;
		display: -moz-flex;
	}
	#download .downloads > li {
		float: none;
		width: auto;
		padding: 0;
		background: none;
		margin: 0 2%;
	}
	#download .downloads img {
		width: 100%;
	}
	#download .downloads .appstore {
		width: 100%;
		margin: 0;
	}
	#download .downloads .googleplay {
		width: 100%;
		margin: 0;
	}
}

/* ----------------------------------------
 - accordion
---------------------------------------- */
@media screen and (min-width: 737px) {
	.accordion_box > .accordion_triger {
		display: none;
	}
}
@media screen and (max-width: 736px) {
	.accordion_box > .accordion_triger {
		padding: 2.717vw 9.511vw;
		position: relative;
	}
	.accordion_box > .accordion_triger > * {
		margin: 0;
	}
	.accordion_box > .accordion_triger:after {
		position: absolute;
		content: "";
		top: 50%;
		right: 4.086vw;
		transform: translateY(-80%) rotate(45deg);
		margin: auto 0;
		border-bottom: 4px solid #ffffff;
		border-right: 4px solid #ffffff;
		width: 3.397vw;
		height: 3.397vw;
		display: block;
	}
	.accordion_box > .accordion_triger.active:after {
		transform: translateY(-30%) rotate(45deg);
		border: none;
		border-top: 4px solid #ffffff;
		border-left: 4px solid #ffffff;
	}
	.accordion_box > .accordion_contents {
		display: none;
		padding-bottom: 2.717vw;
	}
}
.function_box.accordion_box:nth-child(even) > .accordion_triger:after {
	border-color: #36bef0;
}

/* ----------------------------------------
 - modal
---------------------------------------- */
.modal_box {
	color: #36bef0;
	width: 640px;
	padding: 45px 20px 30px;
	font-family: "游ゴシック体","游ゴシック Medium","Yu Gothic","Yu Gothic Medium",YuGothic,"Hiragino Sans","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	font-size: 20px;
	line-height: 1.5em;
}
.modal_box > * {
	margin-bottom: 20px;
}
.modal_box > *:last-child {
	margin-bottom: 0!important;
}
.modal_box > .fancybox-close-small {
	color: #36bef0;
	width: 48px;
	height: 48px;
	padding: 0;
	margin-bottom: 0;
}
.modal_box .function_copy {
	color: #ffffff;
	background-color: #36bef0;
	font-size: 28px;
	font-weight: bold;
	line-height: 48px;
	border-radius: 5px;
	text-align: center;
	margin-bottom: 20px;
}
.modal_box .function_sub_copy {
	color: #ffffff;
	background-color: #5187c6;
	font-size: 18px;
	font-weight: bold;
	line-height: 30px;
	padding: 0 10px;
	margin-bottom: 10px;
}
.modal_box .function_sub_copy .firsttime {
	display: inline-block;
	color: #ffffff;
	background-color: #f39800;
	font-size: 12px;
	font-weight: bold;
	line-height: 20px;
	text-align: center;
	border-radius: 10px;
	padding: 0 5px;
	margin-right: 5px;
	vertical-align: middle;
}
.modal_box .function_icon {
	width: 60px;
	margin: 0 auto 15px;
}
.modal_box .function_image {
	width: 70%;
	margin: 20px auto;
	text-align: center;
}
.modal_box .function_image .caption {
	margin-top: 5px;
	font-size: 12px;
	font-weight: bold;
}
.modal_box .border_box {
	color: #000000;
	border: 2px solid #36bef0;
	font-size: 16px;
	padding: 15px;
	border-radius: 10px;
}
.modal_box .border_box > *:first-child {
	margin-top: 0!important;
}
.modal_box .border_box > *:last-child {
	margin-bottom: 0!important;
}
@media screen and (max-width: 736px) {
	.modal_box {
		max-width: 656px;
		width: 90%;
		padding: 6.793vw 4.076vw 4.076vw;
		font-size: 28px;
		font-size: 3.261vw;
    }
    .modal_box .fancybox-close-small {
		width: 8.152vw;
		height: 8.152vw;
    }
	.modal_box .function_copy {
		font-size: 32px;
		font-size: 4.347vw;
		line-height: 6.522vw;
		border-radius: 0.679vw;
		margin-bottom: 2.717vw;
	}
	.modal_box .function_sub_copy {
		font-size: 28px;
		font-size: 3.804vw;
		line-height: 4.891vw;
		padding: 1.359vw;
		margin-bottom: 2.717vw;
	}
	.modal_box .function_sub_copy .firsttime {
		font-size: 20px;
		font-size: 2.717vw;
		line-height: 4.348vw;
		border-radius: 2.174vw;
		padding: 0 1.359vw;
		margin-right: 1.359vw;
	}
	.modal_box .function_icon {
		width: 15%;
		min-width: 60px;
		margin-bottom: 2.038vw;
	}
	.modal_box .function_image {
		width: 98%;
		margin: 2.717vw auto;
	}
	.modal_box .function_image .caption {
		font-size: 24px;
		font-size: 3.261vw;
		text-align: left;
	}
	.modal_box .border_box {
		font-size: 24px;
		font-size: 3.261vw;
		padding: 2.038vw;
	}
}

#schedule .border_box {
	background-color: #feeabe;
}
#stationmap .border_box {
	background-color: #ebf3d9;
}
#currentpos .border_box {
	background-color: #d3ddf1;
}
#currentpos .image_train_icon {
	width: 60%!important;
}
#currentpos .icon_running {
	display: inline-block;
	color: #ffffff;
	background-color: #2c61ad;
	text-align: center;
	vertical-align: middle;
	padding: 0 5px;
	margin: 0 3px;
}
#bus .border_box {
	background-color: #d3ddf1;
}
#smooz .border_box {
	background-color: #d3ddf1;
}
#direction .function_image {
	width: 41.5%;
}
#currentpos .function_image,
#bus .function_image {
	width: 34%;
}
#smooz .function_image {
	width: 34%;
}
#events .function_image {
	width: 50%;
}
@media screen and (max-width: 736px) {
	#direction .function_image {
		width: 42%;
	}
	#currentpos .function_image,
	#bus .function_image {
		width: 46%;
	}
	#smooz .function_image {
		width: 46%;
	}
	#events .function_image {
		width: 70%;
	}
}


/*2020/03/17/追記*/
.pl_30 {
    padding-left: 30px;
}
.pt_20 {
    padding-top: 20px;
}
/*2020/03/24/追記*/
.new_btn {
    font-weight: bold;
    color: #fff;
    background: #E50012;
    padding: 3px;
    border-radius: 5px;
}
/*2020/03/27/追記*/
.desc_image_2 {
	width: 60%;
	margin: 0 1%;
	text-align: center;
} 
@media screen and (max-width: 736px){
.desc_image_2{
	width: 100%;
	margin: 0;
    }	
}

/*2021/03/08/追記*/
#attention {
padding-top: 0;
}
.mb20{
	margin-bottom:20px; 
}
.textred{
	color: #ff0000;
	text-decoration: underline;
}


