@charset "UTF-8";

* {
	box-sizing: border-box;
}

a:hover {
	opacity: 0.7;
}

/* ========================================
  contents
======================================== */
.mainVisual {
	text-align: center;
}

.mainVisual img {
	/*max-width: 100%;*/
	width: 100%;
}

/*

@media screen and (max-width: 768px) {
	.mainVisual{
		background-size: cover;
		background-image: url(../images/bg_mv_sp.jpg);
	}
	.contents img{
		max-width: 100%;
	}
}
@media screen and (min-width: 769px) {
	.mainVisual {
		background: url(../images/bg_mv_pc.jpg) no-repeat center / cover;
		padding: 80px 0 140px;
		margin: 0 0 50px;
		height: 604px;
		box-sizing: border-box;
	}
}

*/

.leadArea {
	background: #fff;
	padding: 45px 0;

}


/**/
.contents {
	padding: 45px 0;
	font-size: 16px;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	background-color: #fff;
	line-height: 1.7;
	font-weight: normal;
}

.introTxt::after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.leadTxt01 {
	text-align: center;
	margin-bottom: 40px;
	padding: 0 15px;
	box-sizing: border-box;
	font-size: 3.2rem;
	font-weight: bold;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

.leadTxt02 {
	text-align: center;
	margin-bottom: 50px;
	padding: 0 15px;
	box-sizing: border-box;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 2.0rem;
	color: #fff;
}

.leadTxt03 {
	text-align: center;
	margin-bottom: 50px;
	padding: 0 15px;
	box-sizing: border-box;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
	font-size: 2.0rem;

}

@media screen and (max-width: 768px) {
	.contents {
		padding: 30px 0;
		line-height: 1.6;
	}

	.leadArea {
		padding: 20px 0;

	}


	.leadTxt01 {
		font-size: 2.2rem;
		margin-bottom: 20px;
	}

	.leadTxt02,
	.leadTxt03 {
		text-align: center;
		font-size: 1.8rem;
		margin-bottom: 40px;
	}

	.contents img {
		max-width: 100%;
	}
}



/*====================================================
ナビゲーション
途中からハンバーガーメニューに変化するのためのCSS 
======================================================*/

/*========= ボタンのためのCSS ===============*/

/*ボタン全体の形状*/
.openbtn {
	/*はじめは非表示に*/
	display: none;
	/*ボタンの位置*/
	position: fixed;
	top: 16px;
	right: 16px;
	z-index: 999;
	/*ボタンの形状*/
	background: #ca5338;
	cursor: pointer;
	width: 60px;
	height: 60px;
}

/*ボタンのアイコン設定*/
.openbtn span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
	left: 17px;
	height: 3px;
	border-radius: 2px;
	background-color: #fff;
	width: 45%;
}

.openbtn span:nth-of-type(1) {
	top: 20px;
}

.openbtn span:nth-of-type(2) {
	top: 30px;
}

.openbtn span:nth-of-type(3) {
	top: 40px;
}

/*activeクラスが付与された後のボタンのアイコン設定*/
.openbtn.active span:nth-of-type(1) {
	top: 22px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 40%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3) {
	top: 34px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 40%;
}

/*fadeDownクラスが付与された後のボタンの出現アニメーション設定*/
.fadeDown {
	animation-name: fadeDownAnime;
	animation-duration: 0.5s;
	animation-fill-mode: forwards;
	opacity: 0;
	display: block;
}

@keyframes fadeDownAnime {
	from {
		opacity: 0;
		transform: translateY(-100px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}


/*========= ナビのためのCSS ===============*/

/*==ナビの形状*/
#menu {
	height: 60px;
	text-align: center;
	padding: 0;


}

/*.doneクラスがついたナビ*/
#menu.dnone {
	opacity: 1;
	/*透過0にして非表示に*/
	transition: all 0.4s;
}

/*メニューボタンをクリックした際に付与されるpanelactiveクラスがついたら*/
#menu.dnone.panelactive {
	opacity: 1;
	/*不透明にして出現*/
	transition: all 0.6s;
}


/*==ナビゲーションの形状*/
nav {
	padding: 0;
	box-sizing: border-box;
}


.anchor {
	width: 950px;
	height: auto;
	margin: 0 auto;
}

.anchor01,
.anchor02 {
	margin: 0 auto;
	display: flex;
	flex-flow: row wrap;
	justify-content: space-between;

}

.anchor02 {
	margin: 0 auto;
}

.anchor01 li {
	width: calc(96% / 3);
	margin: 0;
	box-sizing: border-box;
	text-align: center;
	display: table;


}


.anchor02 li {
	width: calc(100% / 1);
	height: 74px;
	margin: 0;
	box-sizing: border-box;
	text-align: center;
	display: table;
	padding: 2px;

}

.anchor01 li a {
	display: table-cell;
	vertical-align: middle;
	text-decoration: none;
	position: relative;
	color: #ca5338;
	border: 3px solid #ca5338;
	line-height: 1.2;
	font-weight: bold;
	font-size: 2.2rem;
	padding: 14px 0;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;


}

.anchor02 li a {
	display: table-cell;
	vertical-align: middle;
	text-decoration: none;
	position: relative;
	color: #fff;
	background: #000060;
	line-height: 1.2;
	font-weight: bold;
	font-size: 2.2rem;
	padding: 14px 0;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}


.anchor01 li a::before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 16px 10px 0px 10px;
	border-color: #ca5338 transparent transparent transparent;
	position: absolute;
	top: 0;
	left: 20px;
	bottom: 0;
	margin: auto;
}


.anchor02 li a::before {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 16px 10px 0px 10px;
	border-color: #ca5338 transparent transparent transparent;
	position: absolute;
	top: 0;
	left: 20px;
	bottom: 0;
	margin: auto;
}


.menuAppear {
	display: none;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}



@media screen and (max-width: 768px) {
	#menu {
		height: 100px;

	}

	.anchor {
		width: 100%;
		height: auto;
		padding: 0 15px;

	}

	.anchor01,
	.anchor02 {
		margin: 0 0 0px;
		flex-flow: wrap;
		justify-content: center;
	}

	.anchor01 li,
	.anchor02 li {
		width: calc(96% / 2);
		box-sizing: border-box;
		margin: 0 0 10px;
	}

	.anchor01 li:first-child {
		margin-right: 10px;

	}

	.anchor01 li a,
	.anchor02 li a {
		font-size: 1.6rem;
	}
}



/*.dnoneクラスがついたテキストナビゲーションの形状（バーガーオープン）*/
#menu.dnone .anchor {
	/*固定位置にして最背面に*/
	position: fixed;
	top: 0;
	right: -120%;
	z-index: 4;
	/*高さと幅*/
	width: 500px;
	height: 100vh;
	/*はじめは透過0に*/
	opacity: 1;
	transition: all 0.6s;
	padding: 80px 30px 30px;
	text-align: center;
	background: #f7cdc3;
}

#menu.dnone .anchor01,
#menu.dnone .anchor02 {
	flex-flow: column;
	border: none;

}

#menu.dnone .anchor01 li,
#menu.dnone .anchor02 li {
	height: auto;
	width: 100%;
}


#menu.dnone .anchor01 li a,
#menu.dnone .anchor02 li a {
	background: #f7cdc3;
	border: none;
	height: auto;
	padding: 4px;
}


@media screen and (max-width: 768px) {
	#menu.dnone .anchor {
		width: 100%;

	}
}




/*メニューボタンをクリックした際に付与される
panelactiveクラスがついたナビゲーションの形状（バーガーオープン）*/
#menu.dnone.panelactive .anchor {
	opacity: 1;
	/*不透明に*/
	z-index: 5;
	/*最前面に*/
	right: 0;


}

#menu.dnone.panelactive .anchor ul {
	display: block;
	/*flexの横並びをblockにして縦並びに*/

}

#menu.dnone.panelactive .anchor li {
	background-color: transparent;
	border: none;
	width: 100%;
	display: inline-block;
	height: auto;
}


/*リストの形状*/

#menu.dnone.panelactive .anchor li a {
	color: #ca5338;
	text-decoration: none;
	padding: 4px;
	display: inline-block;
	text-transform: none;
	letter-spacing: 0.1em;
	font-weight: bold;
	transition: all 0.3s;
	border: none;
}


/*バーガーオープン時
menuNoneクラスがついた<br>を非表示*/
.dnone .menuNone {
	display: none;
}

.dnone .menuAppear {
	display: inline;
}

/*バーガーオープン時
リンクボタンの三角形を非表示*/
.dnone .anchor01 li a::before {
	display: none;

}

.dnone .anchor02 li a::before {
	display: none;
}

.dnone .anchor02 {
	display: block;

}


/*　バーガーオープン時の区切り線

.dnone .anchor01{
border-bottom: 2px dotted #000060;
margin-bottom: 25px;
padding-bottom: 25px;
}*/

/* 共通 */

.intro h2,
.column h2,
.tour h2 {
	margin: 0 50px 50px;
	padding: 0;
	text-align: center;

}

.intro h2 img,
.column h2 img,
.tour h2 img {
	max-width: 100%;
}


@media screen and (max-width: 768px) {

	.intro h2,
	.column h2,
	.tour h2 {
		margin: 0 auto 30px;
		padding: 0;
		text-align: center;
		width: 240px;
	}
}




/* .intro */

.intro {
	background: url(../images/bg_ichimatsu.png) repeat #ca5338;
	background-size: 40px 40px;
	padding: 75px 0;
	text-align: center;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;

}

.introWrapper {
	display: inline-flex;
	flex-flow: row nowrap;
	position: relative;
	margin: 0 auto;
}

.introTxtBox {
	width: 45vw;
	max-width: 736px;
	height: 450px;
	background-color: #fff;
	padding: 58px;
	box-sizing: border-box;
}

.introTxt {
	width: 360px;
	display: inline-block;
	float: right;
	text-align: left;
}

.introTxtBox::before {
	position: absolute;
	content: "";
	width: 200px;
	height: 450px;
	background-color: #fff;
	top: 0;
	left: 42vw;
}

.photoBox {
	width: 54vw;
	max-width: 900px;
	margin-top: 85px;
	z-index: 2;
}

.photoBox img {
	width: 100%;
	min-width: 500px;
}

@media screen and (min-width: 1600px) {
	.introTxtBox::before {
		left: 700px;
	}

}

@media screen and (max-width: 768px) {
	.intro {
		padding: 50px 0;
	}

	.introWrapper {
		flex-flow: column;
	}

	.introTxtBox {
		width: 90vw;
		height: auto;
		padding: 30px;
		box-sizing: border-box;
	}

	.introTxtBox::before {
		content: none;
	}

	.introTxt {
		width: auto;
		margin-bottom: 40px;
	}

	.photoBox {
		width: 90vw;
		margin-top: -40px;
		margin-left: 10vw;
		z-index: 2;
	}

	.photoBox img {
		width: 100%;
		min-width: 330px;
	}

}


/* facility 車内設備等のご案内*/

.facility {
	padding: 75px 0;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;

}

.facility h3 {
	text-align: center;
	font-size: 3.2rem;
	margin-bottom: 40px;
}

.facility_bg {
	background: linear-gradient(transparent 40%, #f4ddd7 40%);
	margin-bottom: 75px;
}

.facility img {
	width: 100%;
}

.facility ul {
	display: flex;
	flex-flow: row nowrap;
	width: 950px;
	margin: 0 auto;
}

.facility li {
	width: calc(100% / 2);
	box-sizing: border-box;
}

.facility li:first-child {
	padding-right: 15px;
	padding-bottom: 25px;
}

.facility li:last-child {
	padding-left: 15px;
	padding-bottom: 25px;
}

.facility dl {
	margin-top: 15px;
}

.facility dt {
	font-weight: bold;
	font-size: 1.8rem;
	color: #ca5338;
}

.coment {
	text-align: right;
	text-indent: -1em;
	margin-left: 1em;
	font-size: 1.4rem;
	font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;


}



@media screen and (max-width: 768px) {
	.intro {
		padding: 50px 0;
	}

	.facility {
		padding: 50px 0;
	}

	.facility h3 {
		font-size: 2.2rem;
		margin-bottom: 30px;
	}

	.facility_bg {
		background: transparent;
		margin-bottom: 0;
	}

	.facility ul {
		display: flex;
		flex-flow: column;
		width: 100%;
	}

	.facility li {
		width: 100%;
		box-sizing: border-box;
		background: linear-gradient(transparent 40%, #f4ddd7 40%);
		margin-bottom: 60px;
	}

	.facility li:first-child {
		padding: 0 30px 30px 30px;

	}

	.facility li:last-child {
		padding: 0 30px 30px 30px;
	}

	.coment {
		text-align: left;
		padding: 0 30px 30px 30px;
	}

}


/* column*/


.column {
	background: url(../images/bg_ichimatsu.png) repeat #ca5338;
	background-size: 40px 40px;
	padding: 75px 0;
	font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

@media screen and (max-width: 768px) {
	.column {
		padding: 50px 15px;
	}
}

.columnLabel {
	padding: 4px 10px;
	color: #fff;
	background-color: #d7004a;
	position: absolute;
	top: 20px;
	z-index: 2;
}

.columnTxt {
	padding: 20px;
	text-align: left;
}

.columnTxt time {
	color: #999;
}

.columnTxt p {
	color: #333;
	font-weight: bold;
}




/* Swiper */
.swiper {
	width: 600px;
	height: auto;
	box-sizing: border-box;
	padding: 0 0 40px;
}

.swiper-slide {
	text-align: center;
	font-size: 18px;
	background: #fff;
	/*
	display: flex;
	justify-content: center;
	align-items: center;
	*/

}

.swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}


.swiper-slide {
	width: 100%;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	background-color: #cea613;
	padding: 12px 14px;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
	font-size: 24px;
	font-weight: bold;
	color: #fff;
	background-color: #cea613;
	padding: 12px 14px;
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
	left: var(--swiper-navigation-sides-offset, 6px);
	right: auto
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
	right: var(--swiper-navigation-sides-offset, 6px);
	left: auto;
}


/*ページドネイションのドットの色*/
.swiper-pagination-bullet {
	background: #fff;
	opacity: 0.5;
}

.swiper-pagination-bullet-active {
	background: #fff;
	opacity: 1;
}


@media screen and (max-width: 768px) {
	.swiper {
		width: 100%;
		padding: 0 0 46px;
	}


}



/* tour */


.bnrArea {
	margin: 0 auto 80px;
	text-align: center;
	padding: 0 30px;
}

.bnrArea img {
	max-width: 100%;
}

@media screen and (max-width: 768px) {
	.bnrArea img {
		width: 100%;
		max-width: 600px;
	}
}


.contents .mailmagazin {
	text-align: center;
	position: relative;
}

.contents .mailmagazin div {
	display: inline-block;
	vertical-align: middle;
	margin: 0 30px 0 0;
}

.contents .mailmagazin div>img {
	display: block;
}

.contents .mailmagazin div a {
	margin: 0 10px;
}

.contents .mailmagazin a.btn_mailmaga {
	display: inline-block;
	vertical-align: middle;
}

.contents .mailmagazin:before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 21px;
	height: 21px;
	background: url(../images/pic_top_left.gif) no-repeat;
}

.contents .mailmagazin:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 21px;
	height: 21px;
	background: url(../images/pic_top_right.gif) no-repeat;
}

.contents .mailmagazin div:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	width: 21px;
	height: 21px;
	background: url(../images/pic_btm_left.gif) no-repeat;
}

.contents .mailmagazin div:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	width: 21px;
	height: 21px;
	background: url(../images/pic_btm_right.gif) no-repeat;
}



.contents .col2 li {
	float: left;
	width: 49%;
	margin-bottom: 10px;
}

.contents .col2 li:nth-child(even) {
	float: right;
	text-align: right;
}

.contents .col2:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}


/* contentWidth
---------------------------------------*/
.contentWidth {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: auto;
}

@media screen and (min-width: 769px) {
	.contentWidth {
		width: 950px;
	}

	section.contentWidth.secBanner {
		padding: 40px 0 0;
	}

	.contents .col2 li {
		float: left;
		width: 49%;
		margin-bottom: 10px;
	}

	.contents .col2 li:nth-child(even) {
		float: right;
		text-align: right;
	}

	.contents .col2:after {
		content: ".";
		display: block;
		height: 0;
		clear: both;
		visibility: hidden;
	}
}

/* secSearch
---------------------------------------*/
.secTheme h2 {
	background: #ca5338;
	text-align: left;
	margin-bottom: 20px;
}

.secTheme .tab li {
	float: left;
	background: #f6f4e8;
	padding: 10px 1em;
	cursor: pointer;
}

.secTheme .tab li:first-child {
	background: #dfd5a7;
}

.secTheme .tab_content {
	background: #dfd5a7;
	padding: 1em;
}

.secTheme .tab_content.tabMember {
	background: #f6f4e8;
}

.secTheme .tab_content li {
	display: inline-block;
}

.secTheme .tab_content li:after {
	content: '｜';
	color: #8d7e36;
}

.secTheme .tab_content li a {
	color: #333;
}

section.contentWidth.secBanner {
	padding: 40px 0;
}


.contents .tour {
	padding: 75px 0 0;
}

@media screen and (max-width: 768px) {
	.contents .tour {
		padding: 50px 10px 0;
	}

	.contents .tour h3 {
		font-size: 15px;
		padding: 10px 10px 10px 20px;
		margin: 0 0 15px;
	}

	.contents .tour h3:before {
		border: 17px solid transparent;
		border-left: 12px solid #f4fded;
	}

	.contents .tour h3:after {
		border: 17px solid transparent;
		border-right: 12px solid #f4fded;
	}

	.contents .tour .pic {
		margin: 0 0 20px;
		float: none;
	}

	.contents .tour .detail {
		float: none;
		width: auto;
	}

	.contents .tour .detail p {
		font-size: 14px;
	}

	.contents .tour .detail p span {
		font-size: 18px;
	}

	.contents .tour .bnr li:last-child,
	.contents .tour .bnr li {
		float: none;
		margin: 10px 0 0;
	}

	.contents .tour .bnr:last-child {
		padding: 0 0 30px;
		margin: -50px 0 0;
	}

	.contents .intro div.table p {
		text-align: left;
		font-size: 12px;
	}

	.contents .intro div.table p span {
		float: none;
		display: block;
	}

	.contents .mailmagazin {
		padding: 20px 30px;
		margin: 0 10px;
	}

	.contents .mailmagazin div {
		display: block;
		margin: 0 0 20px;
	}

	.contents .mailmagazin div>img {
		display: block;
		margin: auto;
	}


	.secTheme .tab {
		font-size: 14px;
	}

	.secTheme .tab_content {
		font-size: 14px;
	}

	.secTheme .tab_content li a {
		padding: 3px 0;
		display: inline-block;
	}

	section.contentWidth {
		padding: 30px 0 20px;
	}

	.sp_inner {
		padding: 0 12px;
	}

	section.contentWidth.secBanner {
		padding: 40px 12px 20px;
	}

	.contents .col2 li,
	.contents .col2 li:nth-child(even) {
		float: none;
		width: auto;
		text-align: center;
	}
}


.infoTxt {
	text-align: center;
	margin: 0 0 60px;
}



.tour_search {
	text-align: center;
}

.tour_search li {
	display: inline-block;
	margin: 0 auto;
}




/* 商品 START*/

.tour_box {
	margin: 0 auto 70px;
	width: 100%;
	max-width: 950px;
}

.tour_box a {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	color: #333;
	font-size: 16px;
}

.tour_box figcaption {
	margin: 6px 0 10px;
	text-align: left;
	font-size: 14px;
}

.tour_box .eyeCatching {
	width: 475px;
	text-align: center;
}

.tour_box .eyeCatching img {
	width: 100%;
}

.tour_box .point {
	border: dotted 2px #4ec4d3;
	margin: 20px 0;
	padding: 10px;
	border-radius: 10px;
}

.tour_box .point p {
	text-align: center;
	color: #4ec4d3;
	font-weight: bold;
	position: relative;
	display: inline-block;
	margin: 0 auto 10px;
}

.tour_box .point p::before {
	content: "◆◆◆";
	display: block;
	width: 1em;
	height: 1em;
	position: absolute;
	top: 0;
	left: -3.6em;
}

.tour_box .point p::after {
	content: "◆◆◆";
	display: block;
	width: 1em;
	height: 1em;
	position: absolute;
	top: 0;
	right: -1.6em;
}

.tour_box .pointList li {
	text-indent: -1em;
	margin-left: 1em;
	margin-bottom: 8px;
	text-align: left;
}

.tour_box .pointList li:last-child {
	margin-bottom: 0;
}

.tour_box .detail {
	width: 460px;
}

.tour_box .tag1 {
	font-size: 12px;
}

.tour_box .tag2 {
	font-size: 12px;
}

.tour_box .course {
	border: 1px solid #c9c9c9;
	background: #fffbfa;
	display: inline-block;
	padding: 2px 8px;
	margin: 0 10px 10px 0;
}

.tour_box .day {
	border: 1px solid #93812f;
	color: #93812f;
	background: #fff;
	display: inline-block;
	padding: 2px 8px;
	margin: 0 10px 10px 0;
}

.tour_box .room {
	border: 1px solid #001c58;
	color: #fff;
	background: #001c58;
	display: inline-block;
	padding: 2px 8px;
	margin: 0 10px 10px 0;
}

.tour_box .food {
	border: 1px solid #001c58;
	color: #001c58;
	background: #fff;
	display: inline-block;
	padding: 2px 8px;
	margin: 0 10px 10px 0;
}

.tour_box .subTtl {
	font-size: 16px;
	margin-bottom: 10px;
}

.tour_box .tourTtl {
	font-size: 24px;
	border-bottom: 1px solid #b09f62;
	padding-bottom: 16px;
	margin-bottom: 20px;
}

.tour_box .conductor {
	background: #660066;
	color: #fff;
	display: inline-block;
	padding: 2px 8px;
	margin: 0 10px 10px 0;
}

.tour_box .participants {
	background: #104196;
	color: #fff;
	display: inline-block;
	padding: 2px 8px;
	margin: 0 10px 10px 0;
}

.tour_box .children {
	background: #0087cb;
	color: #fff;
	display: inline-block;
	padding: 2px 8px;
	margin: 0 10px 10px 0;



}

.tour_box .departure {
	position: relative;
	margin-left: 1.2em;
}

.tour_box .station {
	position: relative;
	margin-left: 1.2em;
}

.tour_box .fee {
	position: relative;
	margin-left: 1.2em;
}

.tour_box .fee span {
	color: #e60012;
	font-size: 20px;
	font-weight: bold;
}

.tour_box .departure::before,
.tour_box .station::before {
	display: block;
	content: "";
	width: 0.8em;
	height: 0.8em;
	background-color: #93812f;
	position: absolute;
	top: 5px;
	left: -1.2em;
}

.tour_box .fee::before {
	display: block;
	content: "";
	width: 0.8em;
	height: 0.8em;
	background-color: #93812f;
	position: absolute;
	top: 9px;
	left: -1.2em;
}

.tour_box .detailBtn {
	width: 460px;
	margin-top: 20px;
}

@media screen and (max-width: 768px) {
	.tour_box a {
		flex-flow: column;
	}

	.tour_box .eyeCatching {
		width: 100%;
		text-align: center;
	}

	.tour_box .detail {
		width: 100%;
	}

	.tour_box .subTtl {
		font-size: 14px;
		margin-bottom: 10px;
	}

	.tour_box .tourTtl {
		font-size: 18px;
		border-bottom: 1px solid #b09f62;
		padding-bottom: 16px;
		margin-bottom: 20px;
	}

	.tour_box .detailBtn {
		text-align: center;
		width: 100%;
		max-width: 400px;
	}

	.tour_box .detailBtn img {
		width: 90%;
		margin: 0 auto;

	}
}

/* 商品 END*/



.update {
	margin-top: 60px;
}