@charset "utf-8";


/*
	伊達市観光WEBアプリ。spot用CSS
	index.html
	disp.html

	create	20260128-
*/

/* ---------------------------------------------------------
	約560px未満の画面向けスタイル mobile first
--------------------------------------------------------- */
body {
	background-image: url(../img/bgSpot.svg);
	background-attachment: fixed;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	background-color: rgba(255, 255, 255, 0.2);
	background-blend-mode: lighten;
}


/* main
---------------------------------------- */
main section:last-of-type {
	padding-bottom: 150px;
}
main section.bgGray {
	background-color: #ECECEC;
}

/* ----- スポット Block ----- */
main .spotBlock {
	padding: 50px 0;
}
main .spotBlock .titleSub {
	color: #A4923A;
	font-size: 1.2rem;
	font-weight: bold;
	text-align: center;
	margin: 0 auto;
}
main .spotBlock .titleSub span {
	width: 120px;
	margin: 10px auto 0;
	display: block;
}
main .spotBlock .titleSub span img {
	width: 100%;
}
main .spotBlock h2 {
	width: 282px;
	margin: 0 auto;
}
main .spotBlock h2 img {
	width: 100%;
}

/* ----- spotSearch ----- */
main .spotBlock .spotSearch {
	margin: 0 15px 50px;
}
main .spotBlock .spotSearch ul {
	margin-bottom: 5px;
	list-style: none;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 4px;
}
main .spotBlock .spotSearch ul li {
	width: 80px;
}
main .spotBlock .spotSearch ul li.now {
	width: 163px;
}
main .spotBlock .spotSearch ul li a {
/*	font-family: "ab-koki-maru", sans-serif;
	font-weight: bold;
*/
	color: #000;
	font-size: 1.6rem;
	text-decoration: none;
	width: 100%;
	margin: 0;
	padding: 10px; 0;
	background-color: #fff;
	border: 3px solid #000;
	display: block;
}
main .spotBlock .spotSearch ul li:nth-child(1).select a,
main .spotBlock .spotSearch ul li:nth-child(1) a:hover {
	color: #fff;
	background-color: var(--cat-miru);
	border-color: var(--cat-miru);
}
main .spotBlock .spotSearch ul li:nth-child(2).select a,
main .spotBlock .spotSearch ul li:nth-child(2) a:hover {
	color: #fff;
	background-color: var(--cat-taberu);
	border-color: var(--cat-taberu);
}
main .spotBlock .spotSearch ul li:nth-child(3).select a,
main .spotBlock .spotSearch ul li:nth-child(3) a:hover {
	color: #fff;
	background-color: var(--cat-asobu);
	border-color: var(--cat-asobu);
}
main .spotBlock .spotSearch ul li:nth-child(4).select a,
main .spotBlock .spotSearch ul li:nth-child(4) a:hover {
	color: #fff;
	background-color: var(--cat-kau);
	border-color: var(--cat-kau);
}
main .spotBlock .spotSearch ul li:nth-child(5).select a,
main .spotBlock .spotSearch ul li:nth-child(5) a:hover {
	color: #fff;
	background-color: var(--cat-tomaru);
	border-color: var(--cat-tomaru);
}
main .spotBlock .spotSearch ul li:nth-child(6).select a,
main .spotBlock .spotSearch ul li:nth-child(6) a:hover {
	color: #fff;
	background-color: var(--cat-kurasi);
	border-color: var(--cat-kurasi);
}
main .spotBlock .spotSearch ul li.now.select a,
main .spotBlock .spotSearch ul li.now a:hover {
	color: #fff;
	background-color: #000;
}
main .spotBlock .spotSearch .latlng {
	margin: 5px 0;
	padding: 5px;
}
main .spotBlock .spotSearch .latlng span {
	margin-top: 5px;
	display: block;
}
main .spotBlock .spotSearch form {
	color: #333;
	background-color: #fff;
	max-width: 333px;
	margin: 0 auto;
	padding: 0;
	border: 3px solid #000;
	display: flex;
	justify-content: space-between;
}
main .spotBlock .spotSearch form input {
	width: calc(100% - 50px);
	margin: 3px 0 3px 3px;
	padding: 5px;
	border: none;
	display: inline;
}
main .spotBlock .spotSearch form .searchBtn {
	color: #fff;
	width: 38px;
	margin: 0 0 0 12px;
	padding: 7px 0 0 0;
	background-color: #000;
	display: inline;
	cursor: pointer;
}


/* ----- spotList ----- */
main .spotBlock .spotList {
	margin: 0 10px 30px;
}
main .spotBlock .spotList ul {
	list-style: none;
	display: flex;
	justify-content: left;
	flex-wrap: wrap;
	gap: 10px;
}
main .spotBlock .spotList ul li {
	width: calc(50% - 5px);
}
main .spotBlock .spotList ul li a {
	color: #fff;
	text-decoration: none;
	width: 100%;
	position: relative;
	display: block;
}
main .spotBlock .spotList ul li a .photo {
	margin: 0;
	padding: 0 0 215px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-color: #ccc;
	border: 3px solid #000;
	display: block;
}
main .spotBlock .spotList ul li a .catBox {
	position: absolute;
	bottom: 16px;
	left: 10px;
}
main .spotBlock .spotList ul li a .catBox > span {
	font-size: 1.4rem;
	margin: 0 2px 0 0;
	padding: 3px 4px;
	background-color: #000;
	border-radius: 10px;
}
main .spotBlock .spotList ul li a .catBox > span.cat1 {
	background-color: var(--cat-miru);
}
main .spotBlock .spotList ul li a .catBox > span.cat2 {
	background-color: var(--cat-taberu);
}
main .spotBlock .spotList ul li a .catBox > span.cat3 {
	background-color: var(--cat-asobu);
}
main .spotBlock .spotList ul li a .catBox > span.cat4 {
	background-color: var(--cat-kau);
}
main .spotBlock .spotList ul li a .catBox > span.cat5 {
	background-color: var(--cat-tomaru);
}
main .spotBlock .spotList ul li a .catBox > span.cat6 {
	background-color: var(--cat-kurasi);
}
main .spotBlock .spotList ul li a .coupon {
	width: 44px;
	position: absolute;
	bottom: 10px;
	right: 10px;
}
main .spotBlock .spotList ul li a .coupon img {
	width: 100%;
}
main .spotBlock .spotList ul li h3 {
	font-size: 1.4rem;
	margin: 5px 0 15px;
}
main .spotBlock .spotList ul li h3 span {
	font-size: 1.2rem;
	font-weight: normal;
	margin: 5px 0 0 0;
	display: block;
}

/* ----- spotDetail ----- */
main .spotBlock .spotDetail {
	margin: 30px 0 0;
}
main .spotBlock .spotDetail .catBox {
	margin: 0 auto 10px;
	display: flex;
	justify-content: center;
	gap: 3px;
}
main .spotBlock .spotDetail .catBox span.cat {
/*	font-family: "ab-koki-maru", sans-serif;
*/
	color: #000;
	font-size: 1.4rem;
	font-weight: bold;
	margin: 0 2px 0 0;
	padding: 3px 5px;
	border: 2px solid #000;
	display: inline-block;
}
/*
main .spotBlock .spotDetail .catBox span.cat.cat1 {
	background-color: var(--cat-miru);
	border-color: var(--cat-miru);
}
main .spotBlock .spotDetail .catBox span.cat.cat2 {
	background-color: var(--cat-taberu);
	border-color: var(--cat-taberu);
}
main .spotBlock .spotDetail .catBox span.cat.cat3 {
	background-color: var(--cat-asobu);
	border-color: var(--cat-asobu);
}
main .spotBlock .spotDetail .catBox span.cat.cat4 {
	background-color: var(--cat-kau);
	border-color: var(--cat-kau);
}
main .spotBlock .spotDetail .catBox span.cat.cat5 {
	background-color: var(--cat-tomaru);
	border-color: var(--cat-tomaru);
}
main .spotBlock .spotDetail .catBox span.cat.cat6 {
	background-color: var(--cat-kurasi);
	border-color: var(--cat-kurasi);
}
*/
main .spotBlock .spotDetail .catBox span.coupon {
	font-size: 2.4rem;
	margin: 0;
	padding: 0;
	display: inline-block;
}
main .spotBlock .spotDetail .catBox span.coupon.cat1 {
	color: var(--cat-miru);
}
main .spotBlock .spotDetail .catBox span.coupon.cat2 {
	color: var(--cat-taberu);
}
main .spotBlock .spotDetail .catBox span.coupon.cat3 {
	color: var(--cat-asobu);
}
main .spotBlock .spotDetail .catBox span.coupon.cat4 {
	color: var(--cat-kau);
}
main .spotBlock .spotDetail .catBox span.coupon.cat5 {
	color: var(--cat-tomaru);
}
main .spotBlock .spotDetail .catBox span.coupon.cat6 {
	color: var(--cat-kurasi);
}

main .spotBlock .spotDetail h1 {
	font-size: 2.4rem;
	margin: 0 10px 10px;
}
main .spotBlock .spotDetail h1 span {
	font-size: 1.8rem;
	font-weight: normal;
	display: block;
}
main .spotBlock .spotDetail .mainPhoto {
	width: 100%;
	margin: 0 auto 30px;
}
main .spotBlock .spotDetail .mainPhoto figure {
	width: 100%;
}
main .spotBlock .spotDetail .mainPhoto figure img {
	width: 100%;
	border: 2px solid #000;
}
main .spotBlock .spotDetail .mainPhoto figure figcaption {
	font-size: 1.4rem;
	margin-top: 5px;
}
main .spotBlock .spotDetail h3 {
	font-size: 2rem;
	line-height: 1.3;
	text-align: left;
	margin: 0 0 15px;
}
main .spotBlock .spotDetail .setumei {
	font-size: 1.4rem;
	line-height: 1.8;
	text-align: left;
}
main .spotBlock .spotDetail .spotBox0 {
	font-size: 1.6rem;
	line-height: 1.5;
	text-align: left;
	margin: 0 10px 20px;
}
main .spotBlock .spotDetail .spotBox0 .spotBox0sub {
	margin: 0 0 10px;
}
main .spotBlock .spotDetail .spotBox0 .spotBox0sub .couponInfo {
	width: 100%;
	text-align: center;
	margin: 0 0 20px;
	padding: 10px;
	background-color: var(--cat-taberu);
}
main .spotBlock .spotDetail .spotBox0 .spotBox0sub .couponInfo.cat1 {
	background-color: var(--cat-miru);
}
main .spotBlock .spotDetail .spotBox0 .spotBox0sub .couponInfo.cat2 {
	background-color: var(--cat-taberu);
}
main .spotBlock .spotDetail .spotBox0 .spotBox0sub .couponInfo.cat3 {
	background-color: var(--cat-asobu);
}
main .spotBlock .spotDetail .spotBox0 .spotBox0sub .couponInfo.cat4 {
	background-color: var(--cat-kau);
}
main .spotBlock .spotDetail .spotBox0 .spotBox0sub .couponInfo.cat5 {
	background-color: var(--cat-tomaru);
}
main .spotBlock .spotDetail .spotBox0 .spotBox0sub .couponInfo.cat6 {
	background-color: var(--cat-kurasi);
}
main .spotBlock .spotDetail .spotBox0 .spotBox0sub .couponInfo h4 {
	color: #fff;
	font-size: 2rem;
	text-align: center;
	margin: 0 0 10px;
}
main .spotBlock .spotDetail .spotBox0 .spotBox0sub .couponInfo .couponInfoSub {
	margin: 0 0 10px;
	padding: 10px;
	background-color: #fff;
}
main .spotBlock .spotDetail .spotBox0 .spotBox0sub .couponInfo .couponInfoSub .shop {
	font-size: 1.8rem;
	margin: 0 0 10px;
}
main .spotBlock .spotDetail .spotBox0 .spotBox0sub .couponInfo .couponInfoSub .photo {
	font-size: 0;
	margin: 0 0 10px;
	background-color: #efefef;
}
main .spotBlock .spotDetail .spotBox0 .spotBox0sub .couponInfo .couponInfoSub .photo img {
	width: 100%;
}
main .spotBlock .spotDetail .spotBox0 .spotBox0sub .couponInfo .couponInfoSub h5 {
	font-size: 1.8rem;
	margin: 0 0 20px;
}
main .spotBlock .spotDetail .spotBox0 .spotBox0sub .couponInfo .couponInfoSub .setumei {
	font-size: 1.4rem;
	line-height: 1.5;
	text-align: left;
	margin: 0 10px 15px;
	word-break: break-all;
}
main .spotBlock .spotDetail .spotBox0 .spotBox0sub .couponInfo .couponInfoSub .comment {
	margin: 0;
}
main .spotBlock .spotDetail .spotBox0 .spotBox0sub .couponInfo .couponInfoSub .comment ul {
	margin: 0 0 0 30px;
}
main .spotBlock .spotDetail .spotBox0 .spotBox0sub .couponInfo .couponInfoSub .comment ul li {
	color: #f00;
	font-size: 1.4rem;
	line-height: 1.3;
	text-align: left;
	margin: 0 0 5px;
}
main .spotBlock .spotDetail .couponInfofoot {
	color: #fff;
	font-size: 2rem;
	font-weight: bold;
}
main .spotBlock .spotDetail .spotBox0 table {
	width: 100%;
	margin: 0 0 20px;
	border-top: 2px solid #000;
}
main .spotBlock .spotDetail .spotBox0 table tr th {
	font-size: 1.6rem;
	font-weight: normal;
	line-height: 1.3;
	text-align: center;
	padding: 15px;
	background-color: #F0F0F0;
	border-bottom: 1px solid #000;
	display: block;
}
main .spotBlock .spotDetail .spotBox0 table tr td {
	font-size: 1.6rem;
	line-height: 1.3;
	padding: 15px;
	background-color: #fff;
	border-bottom: 2px solid #000;
	word-break: break-all;
	display: block;
}
main .spotBlock .spotDetail .spotBox0 .map {
	font-size: 0;
	margin: 0 0 20px;
	border: 2px solid #000;
}
main .spotBlock .spotDetail .spotBox0 .map iframe {
	width: 100%;
	height: 300px;
}
main .spotBlock .spotDetail .spotBox1 {
	margin: 0 10px 20px;
}
main .spotBlock .spotDetail .spotBox2 {
}
main .spotBlock .spotDetail .spotBox2 .spotBox2sub {
	margin-bottom: 22px;
}
main .spotBlock .spotDetail .spotBox2 .spotBox2sub .setumei {
}
main .spotBlock .spotDetail .spotBox2 .spotBox2sub figure {
	margin: 0 0 10px;
}
main .spotBlock .spotDetail .spotBox2 .spotBox2sub figure img {
	font-size: 0;
	width: 100%;
	border: 2px solid #000;
}
main .spotBlock .spotDetail .spotBox2 .spotBox2sub figure figcaption {
	font-size: 1.4rem;
	margin-top: 5px;
}
main .spotBlock .spotDetail .spotBox3 {
	margin: 0 10px 20px;
}
main .spotBlock .spotDetail .spotBox3 figure {
	margin: 0 0 10px;
}
main .spotBlock .spotDetail .spotBox3 figure img {
	width: 100%;
	border: 2px solid #000;
}
main .spotBlock .spotDetail .spotBox3 figure figcaption {
	font-size: 1.4rem;
	margin-top: 5px;
}

main .spotBlock .spotDetail .spotBox4 {
	margin: 0 10px 20px;
}
main .spotBlock .spotDetail .spotBox4 ul {
	margin: 0 0 0 30px;
}
main .spotBlock .spotDetail .spotBox4 ul li {
	font-size: 1.6rem;
	text-align: left;
}
main .spotBlock .spotDetail .spotBox5 {
	margin: 0 10px 20px;
}
main .spotBlock .spotDetail .spotBox5 p {
	font-size: 0;
	margin: 0 0 20px;
	border: 2px solid #000;
}
main .spotBlock .spotDetail .spotBox5 iframe {
	width: 100%;
}
main .spotBlock .spotDetail .spotBox6 {
	margin: 0 10px 20px;
}
main .spotBlock .spotDetail .spotBox6 .spotBox6sub {
}
main .spotBlock .spotDetail .spotBox6 .spotBox6sub figure {
	margin: 0 0 10px;
}
main .spotBlock .spotDetail .spotBox6 .spotBox6sub figure img {
	width: 100%;
	border: 2px solid #000;
}
main .spotBlock .spotDetail .spotBox6 .spotBox6sub figure figcaption {
	font-size: 1.4rem;
	margin-top: 5px;
}

/* ----- pagerBlock ----- */
main .spotBlock .pagerBlock {
	font-size: 1.4rem;
	text-align: left;
	margin: 0 10PX 10px;
}
main .spotBlock .pagerBlock .pager {
	display: -webkit-box;
	display: -webkit-flex;
	display: -moz-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-moz-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 0 15px;
}
main .spotBlock .pagerBlock .pager ul {
	margin: 0 2px;
	list-style: none;
	display: flex;
	justify-content: center;
	gap: 3px;
}
main .spotBlock .pagerBlock .pager ul form {
	display: none;
}
main .spotBlock .pagerBlock .pager ul li {
	display: inline-block;
}
main .spotBlock .pagerBlock .pager .pageStart a,
main .spotBlock .pagerBlock .pager .pageEnd a,
main .spotBlock .pagerBlock .pager ul li a {
	color: #000;
	font-size: 1.6rem;
	text-align: center;
	text-decoration: none;
	width: 38px;
	margin: 0;
	padding: 10px 0;
	background-color: #fff;
	border: 3px solid #000;
	border-radius: 3px;
	display: block;
}
main .spotBlock .pagerBlock .pager .pageStart a:hover,
main .spotBlock .pagerBlock .pager .pageEnd a:hover,
main .spotBlock .pagerBlock .pager ul li a:hover {
	color: #fff;
	background-color: #000;
}
main .spotBlock .pagerBlock .pager ul li span {
	color: #fff;
	font-size: 1.6rem;
	text-align: center;
	width: 38px;
	margin: 0;
	padding: 10px 0;
	background-color: #000;
	border: 3px solid #000;
	border-radius: 3px;
	display: block;
}

/* ----- btnMore ----- */
main .spotBlock .btnMore {
	width: 222px;
	margin: 0 auto;
}
main .spotBlock .btnMore a {
	width: 100%;
	margin: 0;
	padding: 15px 20px;
	background-color: #fff;
	border: 3px solid #000;
	display: block;
	box-shadow: 0px 2px 3px rgba(0,0,0,0.3);
}
main .spotBlock .btnMore a img {
	width: 100%;
}



/* footer
---------------------------------------- */



@media screen and (min-width: 375px){
	/*	約375px以上の画面向けスタイル second tablet */

}



@media screen and (min-width: 560px){
	/*	約560px以上の画面向けスタイル second tablet */

	/* header
	---------------------------------------- */



	/* main
	---------------------------------------- */
	/* ----- .spotSearch ----- */
	main .spotBlock .spotSearch {
		margin: 0 auto 50px;
		max-width: 333px;
	}

	/* ----- .spotDetail ----- */
	main .spotBlock .spotDetail .spotBox0 .spotBox0sub .couponInfo {
		width: calc(50% - 20px);
		max-width: 390px;
		margin-left: 20px;
		float: right;
	}


	/* footer
	---------------------------------------- */

}



@media screen and (min-width: 740px){
	/*	約740px以上の画面向けスタイル second tablet */

	/* header
	---------------------------------------- */



	/* main
	---------------------------------------- */
	/* ----- スポット Block ----- */
	main .spotBlock {
		padding: 80px 0;
	}
	main .spotBlock .titleSub {
		font-size: 1.4rem;
	}
	main .spotBlock .titleSub span {
		width: 130px;
		margin: 10px auto 0;
	}
	main .spotBlock h2 {
		width: 312px;
		margin: 0 auto 15px;
	}

	/* ----- .spotSearch ----- */
	main .spotBlock .spotSearch {
		max-width: none;
	}
	main .spotBlock .spotSearch .latlng span {
		margin-top: 0;
		display: inline;
	}

	/* ----- spotList ----- */
	main .spotBlock .spotList ul li {
		width: calc(25% - 8px);
	}
	main .spotBlock .spotList ul li a .photo {
		padding: 0 0 265px;
	}
	main .spotBlock .spotList ul li a .coupon {
		width: 55px;
	}
	main .spotBlock .spotList ul li a .catBox {
		bottom: 16px;
		left: 10px;
	}
	main .spotBlock .spotList ul li a .catBox > span {
		font-size: 1.4rem;
		padding: 4px 6px;
		border-radius: 13px;
	}
	main .spotBlock .spotList ul li h3 {
		font-size: 1.6rem;
		margin: 8px 0 18px;
	}
	main .spotBlock .spotList ul li h3 span {
		font-size: 1.4rem;
		margin-top: 8px;
	}

	/* ----- .spotDetail ----- */
	main .spotBlock .spotDetail {
		margin: 50px 0 0px;
	}
	main .spotBlock .spotDetail h3 {
		font-size: 2.2rem;
	}
	main .spotBlock .spotDetail .setumei {
		font-size: 1.6rem;
	}
	main .spotBlock .spotDetail .mainPhoto figure img {
		border: 3px solid #000;
	}
	main .spotBlock .spotDetail .catBox {
		margin: 0 auto 15px;
	}
	main .spotBlock .spotDetail .catBox span.cat {
		font-size: 1.6rem;
		padding: 6px 8px;
		border: 3px solid #000;
	}
	main .spotBlock .spotDetail .catBox span.coupon {
		font-size: 3.3rem;
	}
	main .spotBlock .spotDetail h1 {
		font-size: 2.8rem;
		margin: 0 10px 30px;
	}
	main .spotBlock .spotDetail .spotBox0 .spotBox0sub {
		margin: 0 0 30px;
	}
	main .spotBlock .spotDetail .spotBox0 table tr th {
		font-size: 1.6rem;
		width: 150px;
		border-bottom: 2px solid #000;
		display: table-cell;
	}
	main .spotBlock .spotDetail .spotBox0 table tr td {
		font-size: 1.6rem;
		display: table-cell;
	}
	main .spotBlock .spotDetail .spotBox0 .map iframe {
		height: 350px;
	}
	main .spotBlock .spotDetail .spotBox2 .spotBox2sub {
		display: flex;
		justify-content: space-between;
		gap: 20px;
	}
	main .spotBlock .spotDetail .spotBox2 .spotBox2sub figure {
		width: calc(50% - 20px);
	}
	main .spotBlock .spotDetail .spotBox2 .spotBox2sub .setumei {
		width: 50%;
	}
	main .spotBlock .spotDetail .spotBox2 .spotBox2sub.photoRight figure {
		order: 2;
	}
	main .spotBlock .spotDetail .spotBox2 .spotBox2sub figure img {
		border: 3px solid #000;
	}
	main .spotBlock .spotDetail .spotBox3 figure img {
		border: 3px solid #000;
	}
	main .spotBlock .spotDetail .spotBox6 .spotBox6sub {
		display: flex;
		justify-content: space-between;
		gap: 20px;
	}
	main .spotBlock .spotDetail .spotBox6 .spotBox6sub figure {
		width: calc(50% - 10px);
	}
	main .spotBlock .spotDetail .spotBox6 .spotBox6sub figure img {
		border: 3px solid #000;
	}

}



@media screen and (min-width: 980px){
	/*	約980px以上の画面向けスタイル pc style */

	/* main
	---------------------------------------- */
	/* ----- .spotDetail ----- */
	main .spotBlock .spotDetail h3 {
		font-size: 2.4rem;
	}
	main .spotBlock .spotDetail .setumei {
		font-size: 1.8rem;
	}
	main .spotBlock .spotDetail .spotBox0 {
		margin: 0 auto 30px;
		max-width: 900px;
	}
	main .spotBlock .spotDetail .catBox {
		margin: 0 auto 20px;
	}
	main .spotBlock .spotDetail .catBox span.coupon {
		font-size: 3rem;
	}
	main .spotBlock .spotDetail h1 {
		font-size: 3.2rem;
	}
	main .spotBlock .spotDetail .mainPhoto figure img {
		width: auto;
		max-height: 888px;
		border: 3px solid #000;
	}
	main .spotBlock .spotDetail .spotBox0 table tr th {
		font-size: 1.8rem;
		width: 200px;
	}
	main .spotBlock .spotDetail .spotBox0 table tr td {
		font-size: 1.8rem;
	}
	main .spotBlock .spotDetail .spotBox0 .map iframe {
		height: 400px;
	}
	main .spotBlock .spotDetail .spotBox1 {
		margin: 0 auto 30px;
		max-width: 900px;
	}
	main .spotBlock .spotDetail .spotBox2 {
		margin: 0 auto 30px;
		max-width: 900px;
	}
	main .spotBlock .spotDetail .spotBox2 .spotBox2sub figure img {
		border: 3px solid #000;
	}
	main .spotBlock .spotDetail .spotBox3 {
		margin: 0 auto 30px;
		max-width: 960px;
	}
	main .spotBlock .spotDetail .spotBox3 h3 {
		margin: 0 auto 10px;
		max-width: 900px;
	}
	main .spotBlock .spotDetail .spotBox3 figure img {
		border: 3px solid #000;
	}
	main .spotBlock .spotDetail .spotBox4 {
		margin: 0 auto 30px;
		max-width: 900px;
	}
	main .spotBlock .spotDetail .spotBox5 {
		margin: 0 auto 30px;
		max-width: 900px;
	}
	main .spotBlock .spotDetail .spotBox6 {
		margin: 0 auto 30px;
		max-width: 900px;
	}
	main .spotBlock .spotDetail .spotBox6 .spotBox6sub figure img {
		border: 3px solid #000;
	}
}



@media screen and (min-width: 1200px){
	/*	約1200px以上の画面向けスタイル pc style */

	/* header
	---------------------------------------- */



	/* main
	---------------------------------------- */
	/* ----- スポット Block ----- */
	main .spotBlock {
		padding: 100px calc(50% - 600px);
	}
	main .spotBlock .titleSub {
		font-size: 1.6rem;
	}
	main .spotBlock .titleSub span {
		width: 144px;
		margin: 10px auto 0;
	}
	main .spotBlock h2 {
		width: 368px;
		margin: 0 auto 20px;
	}

	/* ----- spotList ----- */
	main .spotBlock .spotList {
		margin: 0 0 30px;
	}
	main .spotBlock .spotList ul li a .photo {
		padding: 0 0 325px;
		border: 4px solid #000;
	}
	main .spotBlock .spotList ul li a .coupon {
		width: 60px;
	}
	main .spotBlock .spotList ul li a .catBox > span {
		font-size: 1.6rem;
		padding: 4px 6px;
		border-radius: 14px;
	}
	main .spotBlock .spotList ul li h3 {
		font-size: 1.8rem;
		margin: 10px 0 20px;
	}
	main .spotBlock .spotList ul li h3 span {
		font-size: 1.6rem;
		margin-top: 10px;
	}

	/* ----- pagerBlock ----- */
	main .spotBlock .pagerBlock {
		margin: 0 0 10px;
	}



	/* footer
	---------------------------------------- */

}
