@charset "UTF-8";
/* CSS Document */

body {
	background-image: none;
	
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.text_b{
	font-weight: bold;
	font-weight: 700;
}
.red{
	color: #CC0000;
}

/* ----------------------------------------------
	共通
------------------------------------------------- */
.stageBase {
	margin: 2em auto;
}
.wrapper {
	width: calc(100% - 25px);
	margin: auto;
}

.remarks{
	display: block;
	width: calc(100% - 30px);
	margin: 0 auto;
	font-size: 90%;
	color: #8A8A8A;
	padding-left: 1em;
	text-indent: -1em;
}
.remarks2{
	display: block;
	margin: 0 auto;
	font-size: 90%;
	color: #8A8A8A;
	padding-left: 1em;
	text-indent: -1em;
}


/* ----------------------------------------------
	ヘッダー
------------------------------------------------- */
#header {
	display: block;
	position: relative;
	z-index: 1000;
	background-image: 
		url("../images/head_ocean.png"),
		url("../images/head_cloud_left.png"),
		url("../images/head_cloud_right.png"),
		linear-gradient(to top, rgba(68, 203, 227, 0.0) 0%, rgba(68, 203, 227, 1.0) 55%, rgba(61, 160, 242, 1.0) 100%);
	background-repeat: no-repeat;
	background-size: contain, 55vw auto, 68vw auto, auto;
	background-position: bottom, left -20vw bottom 12vw, right -28vw bottom 14vw, center;
	padding: 28vw 0 23vw;
	margin-bottom: 32vw;
}
#header #sitetitle {
	filter: drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
	
	background-color: #E60000;
	width: 100%;
	padding: 10px 0;
	position: fixed;
	top: 0;
	z-index: 1000000;
}
#header #sitetitle a {
	display: block;
	width: 90vw;
	min-width: 300px;
	max-width: 450px;
	height: 7vw;
	max-height: 35px;
	margin: 0 auto;	
	background-image: url("../images/head_logo_s.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

#header h2 {
	display: block;
	position: absolute;
	top: 33vw;
	left: 50%;
	z-index: 100;
	transform: translateX(-50%);
	background-image: url("../images/head_nanyo-mikyan.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 72vw;
	height: 8vw;
}
#header #headerImg{
	display: block;
	position: relative;
	width: 85vw;
	height: 80vw;
	margin: 0 auto;
}
#header #headerImg::before {
	content: "";
	position: absolute;
	top: -14.5vw;
	left: -4vw;
	width: 45vw;
	height: 40vw;
	background-image: url("../images/head_nanyo_sp.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
#header #headerImg::after {
	content: "";
	position: absolute;
	top: -14.5vw;
	right: -3vw;
	width: 30vw;
	height: 26vw;
	background-image: url("../images/head_drive.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
#header #headerImg h1{
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 10;
	margin: 0 auto;
	background-image: url("../images/head_title_logo.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

#header #headerDay{
	display: block;
	position: relative;
	z-index: 100;
	width: 77vw;
	height: 10vw;
	margin: -18vw auto 0;
	background-image: url("../images/head_day.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}


#header #amenity {
	display: block;
	position: absolute;
	width: 87vw;
	height: 27vw;
	bottom: -27vw;
	left: 50%;
	transform: translateX(-50%);
}
#header #amenity > div{	
	display: block;
	position: relative;
	width: 100%;
	height: 100%;
	z-index: 10;
	background-image: url("../images/head_txt-banner_sp.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	overflow: hidden;
}
#header #amenity::before {
	content: "";
	position: absolute;
	top: -23vw;
	left: -1vw;
	width: 30vw;
	height: 30vw;
	background-image: url("../images/head_ushioni.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
#header #amenity::after {
	content: "";
	position: absolute;
	top: -23vw;
	right: -1vw;
	width: 26vw;
	height: 26vw;
	background-image: url("../images/head_fish.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

/* ----------------------------------------------
	アコーディオン
------------------------------------------------- */
.accordion {
	display: grid;
	gap: 1em;
}
.accordion details {
	font-size: 14px;
}
.accordion details summary {
	display: block;
	cursor:pointer;
	padding: 8px 35px 8px 10px;
	position: relative;
}

.accordion details summary::-webkit-details-marker {
	display: none;
}
.accordion details summary::before,
.accordion details summary::after {
	content: "";
	position: absolute;
	top: 50%;
	translate: 0 -50%;
}
.accordion details summary::before {
	width: 16px;
	height: 2px;
	right: 11px
}
.accordion details summary::after {
	width: 2px;
	height: 16px;
	right: 18px;
	transition: rotate 0.3s;
}
.accordion details[open] summary::after {
	rotate: 90deg;
}
.accordion details > div {
	overflow: hidden;
	padding: 10px;
	border: solid 1px var(--back-basic-color);
	border-top: none !important;
	
	display: grid; 
	grid-template-rows: 0fr;
	gap: 2em;
	transition: all 0.5s 0s ease;
}
.accordion details[open] > div {
	grid-template-rows: 1fr;
}
.accordion details > div dl dt {
	font-weight: bold;
}

/* ----------------------------------------------
	リスト（番号）
------------------------------------------------- */
ol {
	counter-reset: listnum;
}

ol.num_a,
ol.num_b {
	display: flex;
	flex-wrap: wrap;
	gap: 2em 1em;
}
ol.num_a > li,
ol.num_b > li {
	font-size: 14px;
	
	width: calc(50% - 10px);
	
	display: grid;
	gap: 0.5em;
	align-content: start;
}
ol.num_a > li::before,
ol.num_b > li::before {
	counter-increment: listnum;
	content: counter(listnum);
	
	text-align: center;
	font-weight: bold;
	
	width: 1.6em;
	height: 1.6em;
	border-radius: 50%;
	
	display: grid;
	place-items: center;

	color: #FFFFFF;
	background-color: #E60000;
}
ol.num_a > li img,
ol.num_b > li img {
	width: 100%;
}



/* ----------------------------------------------
	キャンペーン概要
------------------------------------------------- */
#detail {}
#detail .accordion {
	margin-bottom: 1em;
}
#detail .accordion details {}
#detail .accordion details summary {
	background-color: #E60000;
	color: #FFFFFF;
	font-size: 15px;
	font-weight: bold;
	display: flex;
	place-items: center;
}
#detail .accordion details summary::before,
#detail .accordion details summary::after {
	background-color: #FFFFFF;
}
#detail .accordion details summary span {
	font-size: 90%;
	color: #FFEE00;
}
#detail .accordion details > div {
	border: solid 2px #E60000;
	background-color: #FEFFD8;
}

#detail .accordion details > div dl {
	display: grid;
	gap: 0.35em;
}
#detail .accordion details > div dl h4 {
	font-size: 18px;
	font-weight: bold;
}
#detail .accordion details > div dl h4::after {
	content: "";
	display: block;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #E60000 0%, #E60000 3em, #FF9578 3em, #FF9578 100%);
}

#detail #dl_here{
	font-size: 16px;
	font-weight: 700;
	color: #E60000;
	margin-bottom: 5px;
}
#detail .accordion details > div dl dd {}
#detail .accordion details > div dl dd ul#download {
	margin: 0;
	display: grid;
	gap: 1em;
}
#detail .accordion details > div dl dd ul#download li{
	background-color: #FFFFFF;
}
#detail .accordion details > div dl dd ul#download li a {
	background-repeat: no-repeat;
	background-size: 120px;
	background-position: right 10px center;
	
	font-size: 16px;
	font-weight: bold;
	
	width: 100%;
	height: 70px;
	border: solid 1px #000;
	border-radius: 10px;
	padding: 10px;
	padding-right: 130px;
	
	display: grid;
	align-items: center;
}
#detail .accordion details > div dl dd ul#download li:nth-of-type(1) a {
	background-image: url("../images/dl_app.png");
}
#detail .accordion details > div dl dd ul#download li:nth-of-type(2) a {
	background-image: url("../images/dl_google.png");
}

#detail .accordion details > div dl dd > p {
	margin-bottom: 1em;
}
#detail .more{
	display: block;
	margin: 15px 0 25px;
	font-weight: 700;
	color: #E60000;
	text-align: right;
}

.text{
	margin-bottom: 5px;
}

/* ----------------------------------------------
	スタンプラリーの遊び方
------------------------------------------------- */

#stampRally{
	background-color: #06a7d8;
	padding: 40px 0 0;
	background-image: url("../images/play_bottom_bg.png");
	background-repeat: no-repeat;
	background-size: auto 700px;
	background-position: center bottom;
}
#stampRally h3{
	display: block;
	height: 40px;
	margin-bottom: 30px;
	background-image: url("../images/play_title.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
#stampRally .wrapper{
	padding-bottom: 10vw;
	margin-bottom: 20px;
	background-color: #FFFFFF;
	background-image: url("../images/bottom_wave.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center bottom;
}
#stampRally .wrapper h5{
	display: block;
	position: relative;
	background-color: #FFE700;
	width: 100%;
	margin-bottom: 10px;
}
#stampRally .wrapper h5::after{
	content: "";
	display: block;
	position: absolute;
	bottom: 50px;
	right: 0;
	width: 25vw;
	height: 25vw;
	max-width: 115px;
	max-height: 115px;
	background-image: url("../images/play_get_stamp.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
#stampRally .wrapper h5 p{
	display: block;
	width: 92%;
	max-width: 400px;
	height: 60px;
	margin: 0 auto;
	background-image: url("../images/play_text1.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
#stampRally .wrapper h5 + p{
	display: block;
	width: calc(100% - 35px);
	margin: 0 auto 20px;
}

#stampRally .wrapper ol.num_a{
	padding: 15px;
	background-color: #feffd8;
	margin-bottom: 10px;
	border-radius: 10px;
}

#stampSpot{
	display: block;
	width: 90%;
	max-width: 400px;
	margin: 20px auto 30px;
}
#stampSpot a{
	display: block;
	width: 100%;
	background-color: #FFE700;
	border-radius: 40px;
	padding: 25px;
}
#stampSpot a p{
	display: block;
	width: 80%;
	height: 18px;
	margin: 0 auto;
	background-image: url("../images/play_text2.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
#stampPrize{
	display: block;
	width: 90%;
	height: 125px;
	margin: 15px auto;
	background-image: url("../images/play_text3_sp.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
#stampMap{
	display: block;
	width: 85vw;
	height: 60vw;
	margin: 0 auto 20px;
	background-image: url("../images/play_map.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	overflow: hidden;
}
dl#stampDouble{
	display: flex;
	flex-direction: column;
	margin-bottom: 20px;
}
dl#stampDouble dt{
	order: 2;
}
dl#stampDouble dt ul{
	display: flex;
	justify-content: center;
	width: 80%;
	max-width: 370px;
	margin: 0 auto;
}
dl#stampDouble dt ul li{
	width: 45%;
	margin: 0 2.5vw;
}
dl#stampDouble dt ul li img{
	display: block;
	width: 100%;
	height: auto;
}

dl#stampDouble dd{
	order: 1;
	margin-bottom: 8px;
}
dl#stampDouble dd p{
	display: block;
	width: 94%;
	max-width: 480px;
	height: 65px;
	margin: 0 auto 5px;
	background-image: url("../images/play_double.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: left center;
}
dl#stampDouble dd div:first-of-type{
	display: block;
	width: 90%;
	height: 16vw;
	max-width: 450px;
	max-height: 85px;
	margin: 0 auto 2vw;
	background-image: url("../images/play_double_text.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
dl#stampDouble dd .remarks{
	width: 90%;
	max-width: 450px;
}

#stampRally dl.info{
	display: block;
	width: calc(100% - 25px);
	margin: 0 auto 20px;
}
#stampRally dl.info dt{
	margin-bottom: 5px;
}
#stampRally dl.info dt h4{
	font-size: 18px;
	font-weight: bold;
}
#stampRally dl.info dt h4::after {
	content: "";
	display: block;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #E60000 0%, #E60000 3em, #FF9578 3em, #FF9578 100%);
}
#stampRally dl.info dd ol{
	padding-left: 45px;
	margin: 15px 0;
}
#stampRally dl.info dd ol li{
	display: block;
	position: relative;
	margin: 8px 0;
}
#stampRally dl.info dd ol li::before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: -35px;
	width: 23px;
	height: 25px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
#stampRally dl.info dd ol li:nth-of-type(1)::before{ background-image: url("../images/no-1.png"); }
#stampRally dl.info dd ol li:nth-of-type(2)::before{ background-image: url("../images/no-2.png"); }


#stampBottom{
	display: block;
	height: calc(220px + 30vw);
	
	background-image:
		url("../images/play_bottom_wave.webp"),
		url("../images/play_bottom_photo2.webp"),
		url("../images/play_bottom_photo1.webp");
	background-repeat: no-repeat;
	background-size: 100% auto, calc(200px + 60vw) auto, calc(100px + 70vw) auto;
	background-position: center bottom, right -100px bottom, left top;
}
	
/* ----------------------------------------------
	おもてなしクーポン
------------------------------------------------- */

#coupon{}
#coupon h3{
	display: block;
	width: 95%;
	height: 40px;
	margin: 0 auto 20px;
	background-image: url("../images/coupon_title.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
#coupon .wrapper{
	padding: 0 15px 10vw;
	margin-bottom: 20px;
	background-color: #FEFFD8;
	background-image: url("../images/bottom_wave.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center bottom;
}
#coupon .wrapper h5{
	display: block;
	position: relative;
	background-color: #FFE700;
	width: calc(100% + 30px);
	margin: 0 -15px 10px;
}
#coupon .wrapper h5 p{
	display: block;
	width: 80%;
	max-width: 320px;
	height: 60px;
	margin: 0 auto;
	background-image: url("../images/coupon_text1.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
#coupon .wrapper ol.num_a{
	margin: 15px 0 20px;
}

#coupon .wrapper .remarks2{
	margin-bottom: 25px;
}

#coupon dl.info{
	display: block;
	margin: 0 auto 20px;
}
#coupon dl.info dt{
	margin-bottom: 5px;
}
#coupon dl.info dt h4{
	font-size: 18px;
	font-weight: bold;
}
#coupon dl.info dt h4::after {
	content: "";
	display: block;
	width: 100%;
	height: 4px;
	background: linear-gradient(90deg, #E60000 0%, #E60000 3em, #FF9578 3em, #FF9578 100%);
}

#couponText{
	display: block;
	width: 98%;
	height: 4vw;
	max-height: 19px;
	margin: 50px auto 10px;
	background-image: url("../images/coupon_text2.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}


#model{
	background: repeating-linear-gradient(-45deg, #c8f7ee, #c8f7ee 2px, #e0ffea 2px, #e0ffea 8px);
	padding: 40px 0 35px;
	margin-bottom: 0;
}
#model > div{
	display: block;
	width: 92%;
	margin: 0 auto;
}
#model a{
	display: block;
	width: 100%;
	background-color: #06bcd3;
	padding: 14px 0 16px;
	margin-bottom: 12px;
	background-image: url("../images/model_arrow.png");
	background-repeat: no-repeat;
	background-size: 23px;
	background-position: right 11px center;
	border-radius: 5px;
}
#model a span{
	display: block;
	text-align: center;
	font-weight: 500;
	color: #FFFFFF;
	font-size: 14px;
	margin-bottom: 3px;
}
#model a p{
	display: block;
	height: 23px;
	background-image: url("../images/model.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
#model > div > p{
	font-size: 13px;
	text-align: center;
}


/* ----------------------------------------------
	フッター
------------------------------------------------- */
#footer {
	position: relative;
	padding-top: 30px;
	color: #FFFFFF;
	background-color: #06a7d8;
}
#footer #page-top a {
	height: 50px;
	width: 50px;
	
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 9999;
	
	border-radius: 25px 0 0 0;
	background-color: #ed7700;
	background-image: url("../images/top_arrow.png");
	background-repeat: no-repeat;
	background-size: 60% auto;
	background-position: center;
	
	box-shadow: 0 0 5px var(--base-color);
}

#footer #page-top a img {
	width: 100%;
}

#footer #inquiry {
	margin-bottom: 40px;
}
#footer #inquiry dl {
	display: grid;
	gap: 1em;
}
#footer #inquiry dl dt {
	color: #fffbab;
	font-size: 22px;
	font-weight: bold;
	text-align: center;
}
#footer #inquiry dl dd {
	text-align: center;
	display: grid;
	gap: 1em;
}
#footer #inquiry dl dd h5 {
	font-size: 14px;
}
#footer #inquiry dl dd h5 strong {
	font-size: 18px;
}

#footer #footermenu {
	border-top: solid 1px #FFFFFF;
	padding: 7px 0 15px;
}
#footer #footermenu #copy {
	font-size: 12px;
	text-align: center;
}



/*-
	PC版（768px以上）ここから
------------------------------------------------- */
@media screen and (min-width:768px), print{
	
	
	/* ----------------------------------------------
		共通
	------------------------------------------------- */
	.wrapper {
		width: 900px;
	}
	
	a{
		opacity: 1.0;
		transition: 0.15;
	}
	a:hover{
		opacity: 0.65;
	}
	
.remarks{
	width: 800px;
}
.remarks2{}

	
/* ----------------------------------------------
	ヘッダー
------------------------------------------------- */
#header {
	background-size: contain, 57vw auto, 68vw auto, auto;
	background-position: center bottom -3vw, left -20vw bottom 10vw, right -28vw bottom 14vw, center;
	padding: 85px 0 calc(80px + 14vw);
	min-height: 835px;
	margin-bottom: 0;
}
#header #sitetitle {
	padding: 8px 0;
}
#header #sitetitle a {
	max-width: none;
	max-height: none;
	width: 560px !important;
	height: 40px !important;
}

#header h2 {
	top: 125px;
	width: 550px;
	height: 60px;
}
#header #headerImg{
	width: 660px;
	height: 600px;
}
#header #headerImg::before {
	top: -25px;
	left: -190px;
	width: 400px;
	height: 350px;
	background-image: url("../images/head_nanyo_pc.png");
}
#header #headerImg::after {
	top: 5px;
	right: -180px;
	width: 230px;
	height: 200px;
}

#header #headerDay{
	width: 520px;
	height: 55px;
	margin: -120px auto 0;
}

#header #amenity {
	width: 620px;
	height: 110px;
	bottom: 50px;
	left: 50%;
	transform: translateX(-50%);
}
#header #amenity > div{	
	background-image: url("../images/head_txt-banner_pc.png");
}
#header #amenity::before {
	top: -225px;
	left: -130px;
	width: 270px;
	height: 275px;
}
#header #amenity::after {
	top: -185px;
	right: -100px;
	width: 210px;
	height: 210px;
	background-image: url("../images/head_fish.png");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}

	
	/* ----------------------------------------------
		アコーディオン
	------------------------------------------------- */
	.accordion {}
	.accordion details {
		font-size: 16px;
	}
	.accordion details summary {
		padding: 10px 30px;
	}
	.accordion details > div {
		padding: 20px;
	}
	
	
	/* ----------------------------------------------
		リスト（番号）
	------------------------------------------------- */
	ol.num_a,
	ol.num_b {
		gap : 20px;
	}
	ol.num_a > li,
	ol.num_b > li {
		width: calc((100% / 4) - (20px * (4 - 1) / 4));
		
		display: grid;
		gap: 0.5em;
		align-content: start;
	}
	
	/* ----------------------------------------------
		キャンペーン概要
	------------------------------------------------- */
	#detail {
		margin-top: 0;
	}
	#detail .accordion details > div {
		padding: 30px 50px;
	}
	#detail .accordion details > div dl dd {
		width: 750px;
		margin: auto;
	}
	#detail .accordion details > div dl dd ul#download {
		grid-template-columns: repeat(2,auto);
	}
	#detail .accordion details > div dl dd ul#download li a {
		background-size: 150px;
		font-size: 18px;
		height: 100px;
	}
	
	#campaign ol.list > li > dl > dt,
	#campaign ol.list > li > dl > dd {
		padding: 30px 50px;
	}
	
	#campaign ol.list > li > dl > dt h4 {
		font-size: 24px;
	}
	
	#campaign ol.list > li > dl > dd > .more_arrow a {
		width: 600px;
	}
	
	#campaign ol.list > li > dl > dd > .accordion details > div .play > dt,
	#campaign ol.list > li > dl > dd > .accordion details > div .play > dd {
		padding: 20px;
	}
	
	#campaign ol.list > li > dl > dd > .accordion details > div .period dl dt {
		padding: 20px;
		width: 9em;
	}
	#campaign ol.list > li > dl > dd > .accordion details > div .period dl dd {
		padding: 20px;
		width: calc(100% - 9em);
		align-items: center;
	}
	
	#campaign ol.list > li:nth-of-type(1) > dl > dd h5 {
		font-size: 30px;
	}
	#campaign ol.list > li:nth-of-type(1) > dl > dd h5 strong .numbers {
		font-size: 40px;
	}
	#campaign ol.list > li:nth-of-type(1) > dl > dd > ul#gift > li {
		width: 200px;
		height: 150px;
	}
	
	#campaign ol.list > li:nth-of-type(1) > dl > dd > #card-gift strong {
		font-size: 18px;
	}
	#campaign ol.list > li:nth-of-type(1) > dl > dd > #prizes {
		grid-template-columns: 415px auto;
		place-items: center;
		place-content: center;
	}
	#campaign ol.list > li:nth-of-type(1) > dl > dd > #prizes > div:nth-of-type(1) img {
		width: 100%;
		margin-left: 0;
	}
	#campaign ol.list > li:nth-of-type(1) > dl > dd > #prizes > div:nth-of-type(2) dl {
		margin-right: 20px;
	}
	

/* ----------------------------------------------
	スタンプラリーの遊び方
------------------------------------------------- */

#stampRally{
	margin-bottom: 0;
	background-size: 100% auto;
}
#stampRally h3{
	margin-bottom: 20px;
}
#stampRally .wrapper{
	padding-bottom: 90px;
}
#stampRally .wrapper h5{
	margin-bottom: 20px;
}
#stampRally .wrapper h5::after{
	bottom: -30px;
	right: 15px;
	width: 170px;
	height: 170px;
	max-width: none;
	max-height: none;
}
#stampRally .wrapper h5 p{
	width: 470px;
	max-width: none;
}
#stampRally .wrapper h5 + p{
	width: 800px;
}

#stampRally .wrapper ol.num_a{
	width: 830px;
	padding: 15px 30px;
	margin: 0 auto 10px;
}

#stampSpot{
	width: 480px;
	max-width: none;
}
#stampSpot a{
	width: 100%;
	border-radius: 40px;
	padding: 27px;
}
#stampSpot a p{
	width: 250px;
	height: 24px;
}
#stampPrize{
	width: 800px;
	height: 75px;
	background-image: url("../images/play_text3_pc.png");
}
#stampMap{
	width: 680px;
	height: 481px;
}
dl#stampDouble{
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	width: 810px;
	margin: 0 auto;
}
dl#stampDouble dt{
	order: 1;
	width: 43%;
	}
dl#stampDouble dt ul{
	display: flex;
	justify-content: flex-end;
	width: 330px;
	max-width: none;
	margin: 0 0 0 auto ;
}
dl#stampDouble dt ul li{
	width: 48%;
	margin: 0 9px;
}

dl#stampDouble dd{
	order: 2;
	width: 55%;
	margin-bottom: 8px;
	padding-top: 10px;
}
dl#stampDouble dd p{
	width: 100%;
	max-width: none;
	height: 90px;
	margin: 0 auto 10px;
}
dl#stampDouble dd div:first-of-type{
	display: block;
	width: 100%;
	height: 79px;
	max-width: none;
	max-height: none;
	margin: 0 auto 10px;
	background-position: center right;
}
dl#stampDouble dd .remarks{
	width: 435px;
	max-width: none;
	margin: 0 0 0 auto;
}

#stampRally dl.info{
	width: 800px;
	margin: 0 auto 40px;
}
#stampRally dl.info dt{
	margin-bottom: 7px;
}
#stampRally dl.info dd{
	padding-left: 22px;
}
#stampRally dl.info dd ol{
	padding-left: 35px;
	margin: 20px 0;
}
#stampRally dl.info dd ol li{
	display: block;
	position: relative;
	margin: 12px 0;
}
#stampRally dl.info dd ol li::before{
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: -35px;
	width: 23px;
	height: 25px;
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
}
#stampRally dl.info dd ol li:nth-of-type(1)::before{ background-image: url("../images/no-1.png"); }
#stampRally dl.info dd ol li:nth-of-type(2)::before{ background-image: url("../images/no-2.png"); }


#stampBottom{
	height: 44vw;
	background-size: 100% auto, 74vw auto, 56vw auto;
	background-position: center bottom -2px, right -18vw bottom, left bottom;
	margin-top: calc(-4vw - 80px);
}
	
	
/* ----------------------------------------------
	おもてなしクーポン
------------------------------------------------- */

#coupon{
	margin-top: 0;
	}
#coupon .wrapper{
	padding: 0 50px 90px;
	margin-bottom: 80px;
}
#coupon .wrapper h5{
	display: block;
	position: relative;
	background-color: #FFE700;
	width: calc(100% + 100px);
	margin: 0 -50px 20px;
}
#coupon .wrapper h5 p{
	width: 350px;
	max-width: none;
	height: 60px;
}
#coupon .wrapper ol.num_a{
	margin: 20px 0;
}

#coupon .wrapper .remarks2{
	margin-bottom: 25px;
}

#coupon dl.info{
	width: 800px;
	margin: 0 auto 40px;
}
#coupon dl.info dt{
	margin-bottom: 7px;
}
#coupon dl.info dd{
	padding-left: 22px;
}

#couponText{
	height: 21px;
	max-height: none;
}


#model{
	padding: 60px 0 35px;
}
#model > div{
	width: 650px;
}
#model a{
	background-size: 28px !important;
	background-position: right 18px center !important;
}

	
}



/*-
	SP版（767px以下）ここから
------------------------------------------------- */
@media screen and (max-width: 767px) {
}
















