@charset "UTF-8";

/*@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap');*/

/* =======================================
	Reset CSS
========================================== */
* {
border:0;
margin:0;
outline:0;
padding:0;
box-sizing:border-box;
font:inherit;
font-family:inherit;
font-size:100%;
font-style:inherit;
font-weight:inherit;
text-decoration:none;
vertical-align:baseline;
}
html {width:100%; height:100%;}
body {
	background: #fff;
	color: #222;
	font-family: "メイリオ","Meiryo",arial,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
	/*font-family: 'Noto Serif JP', serif;*/	
	line-height: 1.6;
	position:relative;
}
article, aside, dialog, figure, footer, header, main, menu, nav, section {display:block;}
audio, canvas, video {display:inline-block;}
hr {display:block;}
ol,ul {list-style:none;}
blockquote, q {quotes:none;}
blockquote:before, blockquote:after, q:before, q:after {content:''; content:none;}
input,select {vertical-align:middle;}
table {border-collapse:collapse; border-spacing:0; empty-cells:show;}
strong,b {font-weight: 700;}
iframe {vertical-align: bottom;}

img { height: auto;	max-width: 100%; vertical-align: middle;}

a { text-decoration: none; color: #222;}
a:hover { opacity: 0.6; text-decoration: none; transition: .3s;}

/* フォントサイズ */
html { font-size: 62.5%;} /*10px*/ 
body { font-size: 1.5em;}

.t_left		{text-align: left;}
.t_center	{text-align: center;}
.t_right	{text-align: right;}

.red {color: #c7161d;}

.pc {
	display: none;
}
.sp {
	display: block;
}
.br_pc {
	display: none;
}
.br_sp {
	display: inline;
}
@media all and (min-width: 800px) {
	.pc {
		display: block;
	}
	.sp {
		display: none;
	}
	.br_pc {
		display: inline;
	}
	.br_sp {
		display: none;
	}
}

/* =======================================
	Page
========================================== */

body {
	font-size: 1.8em;
}
#wrapper {
	overflow: hidden;
  position: relative;
  
  background: url("../img/bg.png"), linear-gradient(90deg, #c94462 0%, #c94462 7%, #fff 7%, #fff 93%, #c94462 93%, #c94462 100%);
  background-size: contain, auto;
  background-repeat: no-repeat, no-repeat;
  max-width: 1200px;
  margin: 0 auto;
}
.mainTitle {
	text-align: center;
	margin: 0 auto;
	width: 100%;
	max-width: 1200px;
  background: linear-gradient(90deg, transparent 0%, transparent 7%, #fff 7%, #fff 93%, transparent 93%, transparent 100%);
}
.mainTitle h1 {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
}
#contents {
	margin: 0 auto;
	width: 1200px;
	max-width: 100%;
	padding: 50px 0 10px;
	overflow: hidden;
  background: linear-gradient(90deg, transparent 0%, transparent 7%, #fff 7%, #fff 93%, transparent 93%, transparent 100%);
}
.section {
	margin: 0 auto 60px;
	max-width: 720px;
}
.section h2 {
  border: 1px solid #ca4562;
	border-radius: 16px;
	color: #ca4562;
	font-size: 1.8rem;
	line-height: 32px;
	margin: 0 0 24px;
	text-align: center;
}
@media all and (max-width: 900px){
	body {
		font-size: 1.5rem;
	}
	.section {
		margin: 0 auto 40px;
		padding: 0 7%;
	}
  #wrapper {
    background: url("../img/bg.png"), linear-gradient(90deg, #c94462 0%, #c94462 3%, #fff 3%, #fff 97%, #c94462 97%, #c94462 100%);
    background-size: contain, auto;
    background-repeat: no-repeat, no-repeat;
  }
  #contents {
		margin: -10px auto 0;
		width: 100%;
		max-width: 100%;
    background: linear-gradient(90deg, transparent 0%, transparent 3%, #fff 3%, #fff 97%, transparent 97%, transparent 100%);
		padding: 30px 0;
	}
	.mainTitle {
		margin-bottom: 0;
		width: 100%;
    max-width: auto;
    background: linear-gradient(90deg, transparent 0%, transparent 3%, #fff 3%, #fff 97%, transparent 97%, transparent 100%);
  	}
}

/* ポイント・運行期間 */
.point_list {
	display: flex;
	justify-content: space-around;
	text-align: center;
  column-gap: 2%;
}
.operation_period {
	font-size: 3.2rem;
	font-weight: bold;
	text-align: center;
}
.sat {
	color: #004da0;
}
.sun {
	color: #c7161d;
}
@media all and (max-width: 900px){
	.point_list {
		flex-wrap: wrap;
	}
	.point_list li {
		margin: 0 0 10px;
		width: 48%;
    /*max-width: 224px;*/
	}
	.operation_period {
		font-size: 2.6rem;
	}
}
/* 乗降場所 */
.spot_list_wrap {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.list01 {
	width: 60%;
}
.list02 {
	width: 40%;
}
.spot_list li {
	margin: 10px 0 30px;
}
.spot_list .main {
	font-size: 3rem;
	position: relative;
}
.spot_list .main::before {
	content: "";
	display: inline-block;
	width: 10px;
	height: 10px;
	background-color: #222;
	border-radius: 50%;
	margin-right: 10px;
	position: relative;
	top: -5px;	
}
.spot_list .sub {
	color: #ca4562;
	font-size: 1.5rem;
	margin-top: -4px;
}
@media all and (max-width: 900px){
	.spot_list_wrap {
		display: block;
		margin-bottom: 20px;
	}
	.list01, .list02 {
		width: 100%;
	}
	.spot_list li {
		margin: 10px 0;
	}
	.spot_list .main {
		font-size: 2rem;
	}
	.spot_list .main::before {
		width: 6px;
		height: 6px;
		margin-right: 6px;
	}
	.spot_list .sub {
		font-size: 1.4rem;
		margin-left: 12px;
	}
}
/* 注意書き */
.caution_list {}
.caution_list li {
	margin-bottom: 6px;
	text-indent: -1em;
	padding-left: 1em;
}
@media all and (max-width: 900px){
	.caution_list li {
		font-size: 1.4rem;
	}
}
/* 運賃 */
.price_wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 10px 0;
  column-gap: 20px;
}
.price_ex {
	margin: 0 0 30px;
}
.price_ex li {
	margin-bottom: 5px;
}
.kukan {
  background: #000;
	border: 1px solid #000;
	border-radius: 16px;
	color: #fff;
	height: 32px;
	line-height: 32px;
	text-align: center;
	width: 260px;
}
.price {
	font-size: 3rem;
	padding-left: 20px;
}
@media all and (max-width: 900px){
	.price_wrap {
		display: block;
	}
	.kukan {
		width: 180px;
	}
	.price {
		font-size: 2.6rem;
		padding-left: 6px;
	}
}
/* のりば案内 */
.map_list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.map_list li {
	/*border: 1px solid #ddd;*/
	margin: 0 0 30px;
	width: calc(50% - 10px);
}
@media all and (max-width: 900px){
	.map_list {
		display: block;
	}
	.map_list li {
		margin: 0 auto 15px;
		width: 90%;
	}
}
/* ご予約の流れ */
.yoyaku_flow .caution_list li {
	font-size: 1.6rem;
}
.yoyaku_time {
	color: #3e6c5a;
	font-size: 3.2rem;
	font-weight: bold;
	margin-bottom: 15px;
	text-align: center;
}
.yoyaku_box {
	margin: 30px 0;
}
.yoyaku_box h3 {
	background: #f4d9df;
	border-radius: 16px;
	color: #ca4562;
	font-size: 1.8rem;
	line-height: 32px;
	margin: 0 0 24px;
	text-align: center;
}
.yoyaku_box ol li {
	margin: .5em 0;
}
.form_btn a {
	background: #c94462;
	border-radius: 4px;
	color: #fff;
	display: block;
	font-size: 1.8rem;
	line-height: 60px;
	height: 60px;
	max-width: 540px;
	margin: 20px auto 0;
	text-align: center;
}
.form_btn a:hover {
	opacity: 0.6;
}
@media all and (max-width: 900px){
	.yoyaku_flow .caution_list li {
		font-size: 1.4rem;
	}
	.yoyaku_time {
		font-size: 2.6rem;
		line-height: 1.4;
	}
}
/* 窓口 */
.counter {
	text-align: center;
}
.counter .office {
	font-size: 2.4rem;
}
.counter .tel {
	font-size: 5rem;
	font-weight: bold;
	padding-left: 20px;
}
.business_hours {
	font-size: 2.2rem;
	font-weight: bold;
	margin: 10px 0 30px;
	text-align: center;
}
a[href^="tel:"]{
	pointer-events: none;
}
@media all and (max-width: 900px){
	.counter .office {
		font-size: 1.8rem;
	}
	.counter .tel {
		font-size: 3rem;
		padding-left: 0;
	}
	.business_hours {
		font-size: 1.8rem;
	}
	a[href^="tel:"]{
		pointer-events: auto;
	}
}
/* PDFリンク */
.pdf_link {
	border: 1px solid #adb5ad;
	border-radius: 4px;
	font-size: 1.8rem;
	height: 60px;
	line-height: 60px;
	text-align: center;
	position: relative;
	margin: 0 auto 60px;
	max-width: 540px;
}
.pdf_link a {
	color: #222;
	display: block;
}
.pdf_link a:hover {
	opacity: 0.6;
}
.pdf_link a:before {
	content: url(../img/pdf_icon.png);
	padding: 0 10px 0 0;
	vertical-align: middle;
}
/* お申し込みの前に */
.caution_box .caution_list {
	font-size: 1.6rem;
}
.cancel_table {
	margin: 5px 0 1em;
	width: 100%;
}
.cancel_table th {
	background: #ddd;
}
.cancel_table th, .cancel_table td {
	border: 1px solid #444;
	padding: 10px 8px;
	text-align: center;
	vertical-align: middle;
}
/* 旅行企画・実施 */
.planning p {
	font-size: 1.6rem;
	margin: 0 0 1em;
}
@media all and (max-width: 900px){
	.planning p {
		font-size: 1.4rem;
	}
}

.yoyaku_end {
  text-align: center;
  font-size: 3.2rem;
  font-weight: bold;
  color: #FF0000;
  margin-bottom: 60px;
}
@media all and (max-width: 900px){
	.yoyaku_end {
		font-size: 2rem;
	}
}