@charset "utf-8";

/*==========================================
= ページ共通
===========================================*/
#bread {
	margin-bottom: 0;
}
.mainContainer img {
	max-width: 100%;
	height: auto;
}
.wrapper {
	position: relative;
	width: 1080px;
	margin: 0 auto;
	padding: 0 15px;
}
.wrapper-wide {
	position: relative;
	width: 1200px;
	margin: 0 auto;
	padding: 0 15px;
}
.button {
	box-sizing: border-box;
	display: block;
	position: relative;
	/* max-width: 570px; */
	width: 100%;
	height: 56px;
	padding: 16px;
	border-radius: 5px;
	border: 2px solid #000;
	color: #000;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: .1em;
	text-align: center;
	text-decoration: none;
	transition: all .2s;
}
.button.arrow::before {
	display: block;
	position: absolute;
	right: 20px;
	top: 50%;
	width: 50px;
	height: 0;
	margin-top: -1px;
	border-top: 2px solid;
	content: "";
}
.button.arrow::after {
	display: block;
	position: absolute;
	right: 13px;
	top: 50%;
	width: 0;
	height: 0;
	margin-top: -5px;
	border: 5px solid transparent;
	border-left: 7px solid currentColor;
	content: "";
}
.button.external::before,
.button.external::after {
	display: block;
	position: absolute;
	right: 30px;
	top: calc(50% - 3px);
	width: 7px;
	height: 7px;
	border: 2px solid #000;
	background: #fff;
	transition: all .2s;
	content :"";
}
.button.external::before {
	right: 30px;
	margin-top: -4px;
}
.button.external::after {
	right: 34px;
	box-shadow: 1px -1px 0 #fff;
}
.button.small {
	height: 52px;
	padding: 15px;
	font-size: 16px;
}
.button:hover {
	background: #000;
	color: #fff;
}
.button.external:hover::before,
.button.external:hover::after {
	border-color: #fff;
	background: #000;
}
.button.external:hover::after {
	box-shadow: 1px -1px 0 #000;
}

/* 関連リンク */
.relation-link dt {
	margin-bottom: 20px;
	font-weight: bold;
}
.relation-link li {
	display: inline-block;
	margin-right: 5px;
}
.relation-link a {
	display: block;
	position: relative;
	min-width: 85px;
	margin-bottom: 6px;
	padding: 8px 20px;
	border-radius: 5px;
	background: #8c8a88;
	color: #fff;
	font-size: 15px;
	text-align: center;
	text-decoration: none;
	transition: all .2s;
}
.relation-link a:before {
	display: block;
	position: absolute;
	top: 50%;
	right: 5px;
	width: 0;
	height: 0;
	margin-top: -5px;
	border: 5px solid transparent;
	border-left: 8px solid #fff;
	content: "";
}
.relation-link a:hover {
	background: #aaa;
}
.linkHome {
	margin-top: 50px;
	}
	.linkHome a{
		display: block;
		position: relative;
		width: 390px;
		margin: 2em auto;
		padding: 1.5em;
		background: #fff;
		border: 1px solid #b2b6bc;
		border-radius: 6px;
		color: inherit;
		font-weight: bold;
		text-align: center;
		text-decoration: none;
		}
		.linkHome a:hover{
			background: #e6f3f5;
			border-color: currentColor;
			color: #1696ac;
			}

/*==========================================
= ヒーロー
===========================================*/
.hero {
	position: relative;
	padding: 90px 60px 120px;
	background: #fbf8e0 url(../images/bg6.jpg) repeat center center;
}
.hero .wrapper {
	z-index: 1;
}
.hero__logo {
	position: absolute;
	right: 70px;
	top: 10px;
	z-index: 2;
	width: 220px;
}
.hero__text {
	width: 560px;
	font-size: 16px;
	line-height: 1.75;
}
.hero__map {
	position: absolute;
	top: 60px;
	right: -55px;
	z-index: -1;
	width: 560px;
}
.hero__title {
	width: 520px;
	margin: 0 auto 40px;
}
.hero__news {
	margin-top: 60px;
	padding: 40px;
	border-radius: 20px;
	border: 1px dashed #000;
	background: #fff;
}
.hero__news dt {
	font-size: 18px;
}
.news-list__row {
	display: table;
	position: relative;
	width: 100%;
	margin-top: 5px;
	padding-left: 15px;
	line-height: 1.5;
}
.news-list__row::before {
	display: block;
	position: absolute;
	left: 0;
	top: 6px;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #4dbbaa;
	content: "";
}
.news-list__date {
	display: table-cell;
	width: 5em;
	padding-right: 1em;
	color: #4dbbaa;
	white-space: nowrap;
}
.news-list__title {
	display: table-cell;
}

/* MAP */
.map-area {
	cursor: pointer;
	stroke: #fff;
	stroke-miterlimit: 10;
	stroke-width: 2px;
	transition: all .2s;
}
#area1 .map-area { fill: #facea7; }
#area2 .map-area { fill: #e2eec5; }
#area3 .map-area { fill: #c6b7d9; }
#area4 .map-area { fill: #bedfc2; }
#area5 .map-area { fill: #c7d9f0; }
#area6 .map-area { fill: #efc2ac; }
#area7 .map-area { fill: #f3deb9; }
#area1 .map-area:hover { fill: #f4bf98; }
#area2 .map-area:hover { fill: #d5e29c; }
#area3 .map-area:hover { fill: #b7a6d1; }
#area4 .map-area:hover { fill: #a6d1aa; }
#area5 .map-area:hover { fill: #b0ccea; }
#area6 .map-area:hover { fill: #efb39c; }
#area7 .map-area:hover { fill: #f2d19c; }
.h {
	fill: #fff;
	pointer-events: none;
}

/*==========================================
= オススメ情報
===========================================*/
.osusume-block {
	position: relative;
	z-index: 0;
	padding-top: 120px;
}
.osusume-block::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 520px;
	height: 272px;
	background: url(../images/bg3.png) no-repeat left top;
	content: "";
}
.osusume-block__heading {
	width: 305px;
	margin-bottom: 60px;
}
.resource-block {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	position: relative;
	margin-top: 60px;
	margin-bottom: 120px;
}
.resource-block .wrapper {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	min-height: 500px;
}
.resource-block__content {
	width: 570px;
	font-size: 16px;
}
.resource-block__image {
	position: absolute;
	top: 0;
	width: 505px;
	height: 100%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
.resource-block:nth-of-type(odd) .resource-block__content {
	margin-left: auto;
}
.resource-block:nth-of-type(odd) .resource-block__image {
	left: 0;
	border-radius: 0 40px 40px 0;
}
.resource-block:nth-of-type(even) .resource-block__image {
	right: 0;
	border-radius: 40px 0 0 40px;
}
.resource-title {
	width: 256px;
	margin-bottom: 1em;
	background: url(../images/bg5.png) no-repeat center center/contain;
	font-size: 36px;
	font-weight: bold;
	letter-spacing: .1em;
	line-height: 60px;
	text-align: center;
}
.resource-desc {
	line-height: 2;
}
.resource-more {
	margin: 40px 0;
}
@media (min-width: 1201px) {
	.resource-block__image {
		width: calc((100vw - 1080px) / 2 + 440px);
	}
}

/*==========================================
= エリア別情報
===========================================*/
.area-block {
	position: relative;
	z-index: 0;
	padding-top: 120px;
	padding-bottom: 120px;
	background: #fbf8e0 url(../images/bg6.jpg) repeat center center;
}
.area-block::before {
	position: absolute;
	top: 0;
	right: 0;
	z-index: -1;
	width: 520px;
	height: 272px;
	background: url(../images/bg4.png) no-repeat left top;
	content: "";
}
.area-block__heading {
	width: 305px;
	margin-bottom: 60px;
	margin-left: auto;
}

/* スライダー */
.area-slider {
	position: relative;
	z-index: 1;
	width: 1140px;
	margin: 0 auto;
}
.area-slider .slick-list {
	overflow: visible!important;
}
.area-slider .slick-slide {
	width: 1080px;
	padding: 0 30px;
	outline: none;
}
.area-slider .slick-prev,
.area-slider .slick-next {
	top: 230px;
}
.area-slide__title {
	position: relative;
}
.area-slide__title span {
	display: block;
	overflow: hidden;
	position: absolute;
	top: -20px;
	left: 90px;
	width: 200px;
	height: 0;
	padding-top: 62px;
	background: url(../images/h_pref.png) no-repeat left top;
	background-size: 200px 462px;
}
.pref-tajimi { background-position: 0px 0px!important; }
.pref-nakatsugawa { background-position: 0px -66px!important; }
.pref-mizunami { background-position: 0px -132px!important; }
.pref-ena { background-position: 0px -198px!important; }
.pref-toki { background-position: 0px -264px!important; }
.pref-kani { background-position: 0px -330px!important; }
.pref-mitake { background-position: 0px -396px!important; }
.area-slide__image {
	overflow: hidden;
	position: relative;
	z-index: -1;
	border-radius: 40px;
}
.area-slide__image img {
	width: 100%;
}
.area-slide__image span {
	position: absolute;
	right: 30px;
	top: 20px;
	color: #fff;
	text-shadow: 0 0 10px rgba(0,0,0,.5),0 0 5px rgba(0,0,0,.5);
}
.area-slide__content {
	position: relative;
	z-index: 1;
	width: 400px;
	min-height: 340px;
	margin: -60px auto 20px;
	padding: 40px 500px 40px 60px;
	border-radius: 10px;
	background: #fff;
	font-size: 16px;
}
.area-desc {
	line-height: 2;
}
.area-more {
	margin: 40px 0 20px;
}
.area-movie {
	overflow: hidden;
	position: absolute;
	top: 40px;
	right: 60px;
	width: 370px;
	height: 0;
	padding-top: 340px;
}
.area-movie a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.2);
	transition: opacity .2s;
	content: "";
}
.area-movie a::after {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	width: 60px;
	height: 60px;
	background: url(../images/play.svg) no-repeat center center/contain;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	content: "";
}
.area-movie a:hover::before {
	opacity: 0;
}
.area-movie img {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	max-width: none;
	height: 100%;
}

/*==========================================
= 東美濃Walkerバナー
===========================================*/
.banner-walker {
	display: -webkit-flex;
	display: -ms-flex;
	display: flex;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	height: 360px;
	padding-left: 200px;
	background: url(../images/bg7.jpg) no-repeat center center/cover;
	color: #fff;
}
.banner-walker .button {
	max-width: 570px;
	border-color: #fff;
	color: #fff;
}
.banner-walker .button.arrow::before {
	border-top: 2px solid;
}
.banner-walker .button.arrow::after {
	border-left: 7px solid currentColor;
}
.banner-walker__image {
	width: 170px;
	margin-left: 40px;
}

/*==========================================
= 山城
===========================================*/
.yamajiro {
	position: relative;
	z-index: 0;
}
.yamajiro:before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 50%;
	z-index: -1;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 100vw;
	background: url("../images/bg-breadlist.png");
	content: "";
}
.h3 {
	position: relative;
	z-index: 0;
	margin-top: 50px;
	margin-bottom: 30px;
	color: #1d1d1d;
	text-align: center;
}
.h3:before {
	display: block;
	position: absolute;
	left: 0;
	top: 49%;
	z-index: -1;
	width: 100%;
	height: 2px;
	background: #333;
	content: "";
}
.h3 span {
	display: inline-block;
	padding: 0 .75em;
	font-family: "游明朝", YuMincho, 'Yu Mincho', "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "ＭＳ 明朝", serif;
	font-size: 32px;
}
#iwamura .h3 span,
#kaneyama .h3 span {
	background: #dad7c6;
}
#naegi .h3 span {
	background: #ecece1;
}
.linkbtn {
	display: block;
	width: 450px;
	margin: 10px auto 0;
	padding: 0;
	border-radius: 30px;
	background: #1d4131;
	color: #fff !important;
	font-size: 20px;
	font-weight: bold;
	line-height: 60px;
	text-align: center;
	text-decoration: none;
}
.linkbtn:hover {
	background: #29674b;
}
.linkbtn2 {
	display: block;
	position: relative;
	min-width: 300px;
	max-width: 480px;
	margin: 40px auto 0;
	padding: 0 0 0 10px;
	border-radius: 22px;
	border: 2px solid #222;
	color: #222 !important;
	line-height: 40px;
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
}
.linkbtn2:before {
	display: block;
	position: absolute;
	left: 16px;
	top: 16px;
	width: 7px;
	height: 7px;
	border-style: solid;
	border-width: 1px 1px 0 0;
	border-color: #222 #222 transparent transparent;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	content: "";
}
.linkbtn2 small {
	font-size: 13px;
	font-weight: normal;
}
.linkbtn2:hover {
	background: #222;
	color: #fff!important;
}
.linkbtn2:hover:before {
	border-color: #fff #fff transparent transparent;
}
.linkbtn3 {
	display: inline-block;
	position: relative;
	margin: 20px auto;
	padding: 0 25px 0 40px;
	border-radius: 22px;
	background: #837133;
	color: #fff !important;
	line-height: 40px;
	font-size: 16px;
	text-align: center;
	text-decoration: none;
}
.linkbtn3:before {
	display: block;
	position: absolute;
	left: 16px;
	top: 18px;
	width: 7px;
	height: 7px;
	border-style: solid;
	border-width: 1px 1px 0 0;
	border-color: #fff #fff transparent transparent;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	content: "";
}
.linkbtn3:hover {
	opacity: .75;
}
.linkbtn4 {
	background: #b68d19;
}
.linkbtn4:hover {
	background: #edaf1b;
}

/*==========================================
= MV
===========================================*/
.pageImage {
	width: 1200px;
	margin: 0 auto;
	background: #fff;
	text-align: center;
}
.pageImageBox {
	width: 800px;
	margin: 0 auto 40px;
	padding: 30px 40px;
	background: #f3f1ea;
	border-radius: 10px;
	font-size: 16px;
	line-height: 1.6;
	text-align: left;
}
.pageImageCol {
	width: 1200px;
	margin: 0 auto;
}
.pageImageCol:after {
	display: table;
	clear: both;
	content: "";
}
.pageImageCol a {
	display: block;
	float: left;
}

/*==========================================
= スタンプラリー導入
===========================================*/
.stamp1-bg {
	max-width: 1140px;
	margin: 0 auto;
	padding: 40px 30px;
	/*background: url(../images/takara2020-bg.jpg) no-repeat center center/cover;*/
	text-align: center;
}

/*==========================================
= YouTube
===========================================*/
.yamajiro-youtube {
	padding-bottom: 15px;
	background: #272727;
	text-align: center;
}
.yamajiro-youtube__heading {
	margin-bottom: 15px;
	padding: 1em .75em;
	background: #111;
	color: #fff;
	font-family: "游明朝", YuMincho, 'Yu Mincho', "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "ＭＳ 明朝", serif;
	font-size: 21px;
}
.yamajiro-youtube-frame {
	position: relative;
	z-index: 0;
	background: #272727;
	text-align: center;
}
.yamajiro-youtube-frame iframe {
	position: relative;
	z-index: 1;
	vertical-align: top;
}


/*==========================================
= ナビ
===========================================*/
.yamajiro-nav {
	width: 1000px;
	margin: 0 auto;
	padding: 100px 0;
}
.yamajiro-nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
.yamajiro-nav li {
	float: left;
	width: 33.33%;
}
.yamajiro-nav a {
	display: block;
	position: relative;
}
.yamajiro-nav a::after {
	display: block;
	position: absolute;
	left: 0;
	bottom: 20px;
	width: 100%;
	height: 25px;
	background: url(../images/nav-arrow.png) no-repeat center top;
	content: "";
	-webkit-transition: bottom .2s ease-out;
	transition: bottom .2s ease-out;
}
.yamajiro-nav a:hover {
	opacity: .8;
}
.yamajiro-nav a:hover::after {
	bottom: 14px;
}


/*==========================================
= スポット別
===========================================*/
.mainContainer .spot {
	padding-bottom: 80px;
}
.spotInner {
	width: 1000px;
	margin: 0 auto;
	padding: 0 15px;
}
.spotHeader {
	position: relative;
	width: 1000px;
	margin: 0 auto;
	border-top: 4px solid;
}
.spotImage img {
	width: 100%;
}
.spotTitle {
	position: absolute;
	left: 0;
	top: -10px;
	z-index: 1;
}

/* スポット情報 */
.spotInfo {
	position: relative;
	margin-bottom: 40px;
	padding: 30px 40px 30px 190px;
	background: #fff;
	font-size: 16px;
}
.spotDataMon {
	position: absolute;
	left: 30px;
	top: 50%;
	width: 110px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
.spotData {
	display: inline-block;
	width: 32%;
	font-size: 14px;
	vertical-align: middle;
}
.spotDesc {
	display: inline-block;
	width: 65%;
	line-height: 1.71;
	vertical-align: middle;
}


/* スポット遺構図 */
.spotMap {
	width: 700px;
	margin: 30px auto;
}

/* みどころ */
.poiList {
	counter-reset: poi;
}
.poiList > .poi {
	float: left;
	width: 48%;
	margin-bottom: 30px;
	counter-increment: poi;
}
.poiList > .poi:nth-of-type(odd) {
	clear: both;
}
.poiList > .poi:nth-of-type(even) {
	float: right;
}
.poiImage {
	border: 8px solid #fff;
	box-shadow: 0 6px 4px -3px rgba(0,0,0,.1);
}
.poi h5,
.poi p {
	padding-right: 10px;
	padding-left: 10px;
}
.poi h5 {
	position: relative;
	margin: 15px 0 5px;
	color: #1d1d1d;
	font-size: 20px;
	font-weight: bold;
}
.poi h5:before {
	display: inline-block;
	position: relative;
	top: -2px;
	width: 30px;
	height: 30px;
	margin-right: 6px;
	border-radius: 50%;
	background: #666;
	vertical-align: middle;
	content: "";
}
.poi h5:after {
	display: block;
	position: absolute;
	left: 10px;
	top: 0;
	width: 29px;
	color: #fff;
	font-family: "游明朝", YuMincho, 'Yu Mincho', "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "ＭＳ 明朝", serif;
	font-size: 20px;
	font-weight: 100;
	line-height: 27px;
	text-align: center;
	content: counter(poi);
}
.poi h5.nocount:before,
.poi h5.nocount:after {
	display: none;
}
.poi h5 small {
	font-size: .687em!important;
	font-weight: bold;
}
.poi p {
	font-size: 15px;
	line-height: 1.6;
}

/* アクセスマップ */
.spotAccessBody {
	margin-bottom: 30px;
	font-size: 16px;
	line-height: 1.6;
	text-align: center;
}
.spot .googleMap {
	width: 100%;
	height: 460px;
	margin-bottom: 20px;
}
.spot .googleMap iframe {
	width: 100%;
	height: 460px;
}

/* カラーテーマ */
#iwamura { background: #dad7c6; }
#naegi { background: #ecece1; }
#kaneyama { background: #dad7c7; }
#iwamura .spotHeader { border-color: #004f64; }
#naegi .spotHeader { border-color: #b4382a; }
#kaneyama .spotHeader { border-color: #006939; }
#iwamura .poi h5:before { background: #004f64; }
#naegi .poi h5:before { background: #b4382a; }
#kaneyama .poi h5:before { background: #006939; }


/*==========================================
= パンフレット
===========================================*/
.pamphlet {
	width: 1000px;
	margin: 50px auto;
}

/*==========================================
= スタンプラリー
===========================================*/
.stamp2 {
	margin-top: 50px;
	padding: 0 0 100px 0;
	text-align: center;
}
.stamp2Prize {
	margin: 30px -60px;
}
.stamp2-btn {
	position: relative;
	width: 560px;
	margin-top: 70px;
	padding-right: 40px;
}
.stamp2 .stamp2-btn {
	padding: 10px 80px 10px 10px;
	background: #ed4b6a;
	line-height: 1.4;
}
.stamp2-btn strong {
	display: inline-block;
	font-size: 19px;
}
.stamp2-btn span {
	font-size: 16px;
	font-weight: normal;
}
.stamp2-btn img {
	position: absolute;
	right: -40px;
	top: -60px;
}


/*==========================================
= パスポート
===========================================*/
.passport {
	box-sizing: border-box;
	width: 1000px;
	margin: 0 auto 50px;
	padding: 60px 60px 40px;
	background: #f1dacc;
	font-size: 18px;
	line-height: 1.8;
}
.passport-1 {
	float: left;
	width: 60%;
}
.passport-1 h2 {
	margin-bottom: 20px;
}
.passport-2 {
	width: 38%;
	margin: 0 0 20px auto;
}


#pagetop {
	display: block;
	position: fixed;
	bottom: 20px;
	right: 20px;
	width: 50px;
	height: 30px;
	padding-top: 20px;
	border-radius: 50%;
	border: 4px solid #666;
	color: #666;
	font-weight: bold!important;
	text-align: center;
	text-decoration: none;
}
#pagetop:before {
	display: block;
	position: absolute;
	left: 50%;
	top: 8px;
	width: 8px;
	height: 8px;
	margin-left: -5px;
	border-top: 2px solid #666;
	border-right: 2px solid #666;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
	-webkit-transition: all .3s;
	transition: all .3s;
	content: "";
}
#pagetop:hover {
	background: rgba(0,0,0,.8);
	border-color: transparent;
	color: #fff;
}
#pagetop:hover:before {
	border-top-color: #fff;
	border-right-color: #fff;
}
