@charset "UTF-8";

* {
	box-sizing: border-box;

}

a:hover {
	opacity: 0.7;
}

/* ========================================
  contents
======================================== */
.mainVisual {
	text-align: center;
}

.mainVisual img {
	max-width: 100%;

}



@media screen and (max-width: 768px) {

	.mainVisual {
		background-size: cover;
		background-image: url(../images/bg_mv_sp.webp?20260615);
	}

	.contents img {
		max-width: 100%;
	}
}

@media screen and (min-width: 769px) {

	.mainVisual {
		background: url(../images/bg_mv_pc.webp?20260615) no-repeat center / cover;
		box-sizing: border-box;
		height: 604px;
	}

}

/* contentWidth
---------------------------------------*/
.contentWidth {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	margin: auto;
	padding: 0;
	width: 950px;

}

@media screen and (max-width: 768px) {
	.contentWidth {
		padding: 0 15px;
		width: 100%;

	}
}





/**/
.contents {
	padding: 0;
	font-size: 16px;
	background-color: #fff;
	line-height: 1.7;
	text-align: center;
	margin-bottom: 60px;
}

.leadArea {
	background: #fff;
	text-align: center;
	padding: 30px 15px 60px;
}

.leadTxt01 {
	font-size: 2.6rem;
	max-width: 950px;
	margin: 0 auto 30px;
	font-weight: bold;
	text-align: center;
}

.leadTxt01 .txtRed {
	color: #d12f2f;
}

.leadTxt01 span {
	font-weight: bold;
	background: linear-gradient(transparent 70%, pink 30%);
	font-size: 110%;
}


@media screen and (max-width: 768px) {
	.contents {
		padding: 0;
		margin-bottom: 40px;
		line-height: 1.6;
	}

	.leadArea {
		background: #fff;
		text-align: center;
		padding: 30px 10px;
	}

	.leadTxt01 {
		font-size: 1.6rem;
		line-height: 1.6;
		width: 100%;
	}


	.leadTxt01 .bigTxt {
		font-size: 2.0rem;
	}

	.contents img {
		max-width: 100%;
	}
}


/*====================================================
ナビゲーション
途中からハンバーガーメニューに変化するのためのCSS 
======================================================*/

/*========= ボタンのためのCSS ===============*/

/*ボタン全体の形状*/
.openbtn {
	/*はじめは非表示に*/
	display: none;
	/*ボタンの位置*/
	position: fixed;
	top: 16px;
	right: 16px;
	z-index: 999;
	/*ボタンの形状*/
	background: #087a77;
	cursor: pointer;
	width: 60px;
	height: 60px;
	border-radius: 50px;
}

/*ボタンのアイコン設定*/
.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: 124px;
	width: 100%;
	text-align: center;
	background: #fff;

}

/*.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: center;

}

.anchor02 {
	margin: 0 auto;
	display: none;
}

.anchor01 li {
	width: calc(100% / 3);
	margin: 0 0 10px;
	box-sizing: border-box;
	text-align: center;
	display: table;
	padding: 0 6px;
}

.anchor01 li span {
	font-size: 80%;
}

.anchor02 li {
	width: calc(100% / 1);
	height: 74px;
	margin: 0;
	box-sizing: border-box;
	text-align: center;
	display: table;
	padding: 10px;
}

.anchor01 li a {
	display: table-cell;
	vertical-align: middle;
	text-decoration: none;
	position: relative;
	color: #fff;
	background: #00833e;
	line-height: 1.2;
	font-weight: bold;
	font-size: 2.6rem;
	padding: 10px;
	border-radius: 10px;
}

.anchor02 li a {
	display: table-cell;
	vertical-align: middle;
	text-decoration: none;
	position: relative;
	color: #00833e;
	background: #fff;
	line-height: 1.2;
	font-weight: bold;
	font-size: 2.6rem;
	border-radius: 50px;
	padding: 20px 10px;
}


.anchor01 li a::after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 8px 0px 8px;
	border-color: #fff transparent transparent transparent;
	position: absolute;
	top: 0;
	right: 30px;
	bottom: 0;
	margin: auto;
}

.anchor02 li a::after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 8px 0px 8px;
	border-color: #fff transparent transparent transparent;
	position: absolute;
	top: 0;
	right: 30px;
	bottom: 0;
	margin: auto;
}


@media screen and (max-width: 768px) {
	#menu {
		width: 100%;
		height: 180px;
		text-align: center;
		background: #fff;

	}

	.anchor {
		width: 100%;
		height: auto;
		padding: 10px;



	}

	.anchor01,
	.anchor02 {
		justify-content: center;
		margin: 0;
	}

	.anchor01 li,
	.anchor02 li {
		width: calc(100% / 2);
		box-sizing: border-box;
		margin: 0;
		padding: 3px;
		height: 60px;
	}

	.anchor01 li a,
	.anchor02 li a {
		padding: 4px 10px 4px 0;
		font-size: 1.8rem;
	}

	.anchor01 li a::after,
	.anchor02 li a::after {
		content: '';
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 10px 6px 0px 6px;
		border-color: #fff transparent transparent transparent;
		position: absolute;
		top: 0;
		right: 6px;
		bottom: 0;
		margin: auto;
	}

}



/*.dnoneクラスがついたテキストナビゲーションの形状（バーガーオープン）*/
#menu.dnone .anchor {
	/*固定位置にして最背面に*/
	position: fixed;
	top: 0;
	right: -120%;
	z-index: -1;
	/*高さと幅*/
	width: 500px;
	height: 100vh;
	/*はじめは透過0に*/
	opacity: 1;
	transition: all 0.6s;
	padding: 80px 30px 30px;
	text-align: center;
	background: #f7eee3;
}

#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 {
	color: #00833e;
	background: #f7eee3;
	height: auto;
	padding: 4px;
}

@media screen and (max-width: 768px) {
	#menu.dnone .anchor {
		width: 100%;

	}
}




/*メニューボタンをクリックした際に付与される
panelactiveクラスがついたナビゲーションの形状（バーガーオープン）*/
#menu.dnone.panelactive .anchor {
	opacity: 1;
	/*不透明に*/
	z-index: 3;
	/*最前面に*/
	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: #00833e;
	text-decoration: none;
	padding: 4px;
	display: inline-block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
	transition: all 0.3s;
	background: #f7eee3;
}


/*バーガーオープン時
menuNoneクラスがついた<br>を非表示*/
.dnone .menuNone {
	display: none;
}

/*バーガーオープン時
リンクボタンの三角形を非表示*/
.dnone .anchor01 li a::after {
	display: none;

}

.dnone .anchor02 li a::after {
	display: none;
}

.dnone .anchor02 {
	display: block;
}

/*
.dnone .anchor01{
border-bottom: 2px dotted #fff;
margin-bottom: 25px;
padding-bottom: 25px;
}
*/


.carousel {
	margin: 0 auto 40px;
	padding-bottom: 30px;
	background: #fff;
}

.swiper {
	max-width: 950px;

}

.notice {
	margin-top: 6px;
	text-align: right;
	font-size: 1.2rem;
}






.moreBtn {
	display: block;
	position: relative;
	margin: 0 auto;
	width: 600px;
}

.moreBtn a {
	display: block;
	padding: 10px 40px 10px;
	background-color: #e80061;
	color: #fff;
	font-size: 3.4rem;
	font-weight: bold;
	border-radius: 80px;
	line-height: 1.4;
	text-align: center;
}

.moreBtn a::after {
	content: '';
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 12px 0px 12px 16px;
	border-color: transparent transparent transparent #fff;
	transform: rotate(90deg);
	position: absolute;
	top: 0;
	right: 30px;
	bottom: 0;
	margin: auto;
}



@media screen and (max-width: 768px) {
	.moreBtn {
		display: inline-block;
		position: relative;
		margin-bottom: 20px;
		width: 100%;
	}

	.moreBtn a {
		display: block;
		padding: 10px 40px 10px 10px;
		font-size: 2.2rem;
	}

	.moreBtn a::after {
		content: '';
		width: 0;
		height: 0;
		border-style: solid;
		border-width: 8px 0px 8px 12px;
		border-color: transparent transparent transparent #fff;
		transform: rotate(90deg);
		position: absolute;
		top: 0;
		right: 20px;
		bottom: 0;
		margin: auto;
	}


}



.about h2,
.tour h2,
.information h2 {
	position: relative;
	text-align: center;
	display: inline-block;
	margin-top: 10px;
	margin-bottom: 50px;
	font-size: 4.2rem;
	font-weight: bold;
	color: #00833e;

}

.about h2::before {
	position: absolute;
	content: "";
	width: 90px;
	height: 90px;
	background:
		url(../images/hatena.png) no-repeat center center;
	background-size: contain;
	top: 0;
	left: -120px;
}

.tour h2::before {
	position: absolute;
	content: "";
	width: 90px;
	height: 90px;
	background:
		url(../images/flag.png) no-repeat center center;
	background-size: contain;
	top: 0;
	left: -120px;
}

.information h2::before {
	position: absolute;
	content: "";
	width: 90px;
	height: 90px;
	background:
		url(../images/info.png) no-repeat center center;
	background-size: contain;
	top: 0;
	left: -120px;
}


.about h2 span,
.tour h2 span,
.information h2 span {
	margin-top: 10px;
	display: block;
	font-size: 1.4rem;
}



.contents .tour h3 {
	margin: 0 0 40px;
	padding: 15px 0;
	text-align: center;
	background: #00833e;
	color: #fff;
	font-size: 2.4rem;
	font-weight: bold;
	border-radius: 10px;
}


@media screen and (max-width: 768px) {

	.about h2,
	.tour h2,
	.information h2 {
		position: relative;
		text-align: center;
		display: inline-block;
		margin-top: 60px;
		margin-bottom: 20px;
		font-size: 2.6rem;
		font-weight: bold;
		color: #00833e;
	}


	.about h2::before {
		position: absolute;
		content: "";
		width: 60px;
		height: 60px;
		background:
			url(../images/hatena.png) no-repeat center center;
		background-size: contain;
		top: -70px;
		left: calc(50% - 30px);
	}

	.tour h2::before {
		position: absolute;
		content: "";
		width: 60px;
		height: 60px;
		background:
			url(../images/flag.png) no-repeat center center;
		background-size: contain;
		top: -70px;
		left: calc(50% - 30px);
	}

	.information h2::before {
		position: absolute;
		content: "";
		width: 60px;
		height: 60px;
		background:
			url(../images/info.png) no-repeat center center;
		background-size: contain;
		top: -70px;
		left: calc(50% - 30px);
	}


	.contents .tour h3 {
		padding: 10px 0;

	}

}

/*  about  */

.about {
	padding: 80px 0;
	background-color: #fef4c8;
}

.text01 {
	text-align: center;
	padding: 0;
	box-sizing: border-box;
	font-size: 2.2rem;
}

.text02 {
	padding: 0;
	box-sizing: border-box;
	margin-bottom: 50px;
	font-size: 2.2rem;
}

.about .detail {
	background-color: #fff;
	padding: 30px;
	font-size: 2.4rem;
}

.about .detail .txtRed {
	color: #d12f2f;
}

.about .detail span {
	font-weight: bold;
	background: linear-gradient(transparent 70%, pink 30%);
}


.example {
	margin-top: 10px;
	padding: 20px 0;
	text-align: left;
}

.example ul {
	margin-top: 10px;
	display: flex;
	flex-flow: row;
	align-items: stretch;
	justify-content: space-between;
	text-align: center;

}

.example li {
	background-color: #f0f3fa;
	position: relative;
	font-size: 4.0rem;
	font-weight: bold;
	padding: 20px 0;
}

.example li:first-child,
.example li:nth-child(2) {
	width: 24%;
}

.example li:last-child {
	width: 40%;
}

.example li p {
	line-height: 1.4;

}

.example li:first-child p:first-of-type {
	color: #e80061;
	font-size: 2.4rem;
}

.example li:first-child p:last-of-type {
	color: #333;
	font-size: 1.8rem;
	font-weight: normal;
}

.example li:nth-child(2) p:first-of-type {
	color: #423dcc;
	font-size: 2.4rem;

}


.example li:nth-child(2) p:last-of-type {
	color: #333;
	font-size: 1.8rem;
	font-weight: normal;
}


.example li:first-child::after {
	position: absolute;
	display: block;
	content: "＋";
	width: 60px;
	height: 60px;
	margin: auto;
	top: 70px;
	right: -82px;
	transform: translateY(-50%) translateX(-50%);
	color: #333;
	font-size: 4.0rem;
}

.example li:last-child::before {
	position: absolute;
	display: block;
	content: "＝";
	width: 60px;
	height: 60px;
	margin: auto;
	top: -20px;
	bottom: 0;
	left: -52px;
	color: #333;
	font-size: 4.0rem;
}

.example li:last-child {
	font-weight: bold;
	font-size: 2.4rem;
	color: #e80061;

}

.example li:last-child span {
	font-size: 7.0rem;
	vertical-align: -2px;
	margin-right: 4px;
	background: transparent;
}



@media screen and (max-width: 768px) {
	.about {
		padding: 50px 0;
	}

	.text01 {
		font-size: 1.6rem;
		text-align: left;
	}

	.text02 {
		margin-bottom: 30px;
		font-size: 1.8rem;
	}

	.about .detail {
		background-color: #fff;
		padding: 20px 10px;
		font-size: 1.8rem;

	}

	.example {
		margin-top: 30px;
		padding: 20px 0 0;
		text-align: center;
	}

	.example ul {
		display: flex;
		flex-flow: row wrap;
		align-items: stretch;
		justify-content: space-between;
		text-align: center;
		width: 325px;
		margin: 10px auto 0;

	}

	.example li {
		position: relative;
		font-size: 2.8rem;
		font-weight: bold;
		padding: 20px 0;
	}

	.example li:first-child,
	.example li:nth-child(2) {
		width: 144px;
		margin-bottom: 20px;
	}

	.example li:last-child {
		width: 255px;
		margin-left: 70px;
		text-align: center;
	}

	.example li p {
		line-height: 1.4;

	}

	.example li:last-child p {
		line-height: 1.0;

	}



	.example li:first-child p:first-of-type {
		color: #e80061;
		font-size: 1.6rem;
	}

	.example li:first-child p:last-of-type {
		color: #333;
		font-size: 1.4rem;
		font-weight: normal;
	}

	.example li:nth-child(2) p:first-of-type {
		color: #423dcc;
		font-size: 1.6rem;

	}

	.example li:nth-child(2) p:last-of-type {
		color: #333;
		font-size: 1.4rem;
		font-weight: normal;
	}


	.example li:first-child::after {
		position: absolute;
		display: block;
		content: "＋";
		width: 54px;
		height: 54px;
		margin: auto;
		top: 50%;
		right: -50%;
		color: #333;
		font-size: 3.0rem;
	}

	.example li:last-child::before {
		position: absolute;
		display: block;
		content: "＝";
		width: 60px;
		height: 60px;
		margin: auto;
		top: 6px;
		bottom: 0;
		left: -60px;
		color: #333;
		font-size: 3.0rem;
	}

	.example li:last-child {
		font-weight: bold;
		font-size: 2.4rem;
		color: #e80061;

	}

	.example li:last-child span {
		font-size: 4.0rem;
		vertical-align: -2px;
		margin-right: 4px;

	}

}

/* information */


.cpDetail {
	text-align: left;
	background-color: #fff;
	margin: 30px auto;
	padding: 50px 50px 50px 94px;
	box-sizing: border-box;
	font-size: 1.6rem;
}

.cpDetail h4 {
	font-size: 1.8rem;
	font-weight: bold;
	text-indent: -3em;
}

.cpDetail ul {
	margin-bottom: 20px;
}

.cpDetail li {
	text-indent: -1em;
	margin: 0 0 0 1em;
}

.cpDetail p {
	margin-bottom: 20px;
}

.cpDetail p.case {
	font-weight: bold;
	margin-bottom: 0;
}

.cpDetail li p.cpDetailIndent {
	text-indent: -1em;
	margin: 0 0 0 1em;
}




@media screen and (max-width: 768px) {
	.cpDetail {
		padding: 20px 15px 20px 60px;
	}
}




/* tour */


.contents .tour {
	padding: 60px 0 30px;
	background-color: #fff;
}

.tour_box {
	margin: 0 auto 70px;
	width: 100%;
	max-width: 950px;
	text-align: left;
}

.tour_box a {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-between;
	color: #333;
	font-size: 16px;
}

.tour_box figcaption {
	margin: 6px 0 16px;
	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 .area {
	border: 1px solid #3e9d06;
	color: #fff;
	font-weight: bold;
	background: #3e9d06;
	display: inline-block;
	padding: 2px 8px;
	margin: 0 5px 10px 0;
}

.tour_box .sale {
	border: 1px solid #d12f2f;
	color: #fff;
	font-weight: bold;
	background: #d12f2f;
	display: inline-block;
	padding: 2px 8px;
	margin: 0 5px 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) {
	.contents .tour {
		padding: 50px 0 10px;
	}

	.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*/



.information {
	padding: 80px 0;
	background-color: #fdf8e0;
}

.bnrArea {
	margin: 30px auto 80px;
	padding: 0;
}

.bnrArea img {
	width: 460px;
	border: 2px solid#bb840f;

}

.bnrText {
	font-size: 2.4rem;
	margin: 10px 0 0;
	font-weight: bold;
}

.bnrArea02 li {
	margin-bottom: 30px;
	color: #00833e;
}

@media screen and (max-width: 768px) {
	.information {
		padding: 50px 0 10px;
	}

	.bnrArea {
		padding: 0;
		margin: 20px auto 60px;
	}

	.bnrArea img {
		width: 100%;
	}

	.bnrText {
		font-size: 2.0rem;
		margin: 10px 0 0;
	}

}



.comingsoon span {
	font-size: 180%;
}

.comingsoon {
	margin-bottom: 60px;
	font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
	.comingsoon {
		margin-bottom: 60px;
		font-size: 1.6rem;
	}

}