@charset "UTF-8";

/**
 * all css
 * #reset
 * #base
 * #style
 */

/* ==========================================================================
   #reset
========================================================================== */
/* 
  http://meyerweb.com/eric/tools/css/reset/
  v2.0 | 20110126
  License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul, li {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ==========================================================================
   #base
========================================================================== */
*, *:before, *:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	font-size: 12px;
	color: #333333;
}
body {
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, Meiryo, sans-serif;
	animation: fadeIn 3s ease 0s 1 normal;
	-webkit-animation: fadeIn 3s ease 0s 1 normal;
}
img {
	width: 100%;
	display: block;
}
a:link {
	display: block;
	opacity: 1;
	transition: all .5s ease;
}
a:hover {
	opacity: .6;
}
@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.fade {
  transform: translateY(20px);
  transition: all .75s ease .25s;
  opacity: 0;
}
.fade.active {
  transform: translateY(0);
  opacity: 1;
}

/* ==========================================================================
   #style
========================================================================== */
.l_header, .l_content, .l_footer {
	max-width: 580px;
	margin: 0 auto;
}

.p_index_coupon .c-coupon__item {
	position: relative;
}
.p_index_coupon .c-coupon__item ul {
	padding-left: 6.6666vw;
	padding-right: 6.6666vw;
	position: absolute;
	left: 0;
	bottom: 0;
}
.p_index_coupon .c-coupon__item li {
	width: 100%;
}
.p_index_coupon .c-coupon__item li:nth-child(2),
.p_index_coupon .c-coupon__item li:nth-child(3) {
	margin-top: 1.75vw;
}
.p_index_info .map {
	padding-left: 6.6666vw;
	padding-right: 6.6666vw;
}
.p_index_info .map iframe {
	width: 100%;
	height: 42.5vh;
}

@media screen and (min-width: 580px) {
	.p_index_coupon .c-coupon__item ul {
		padding-left: 40px;
		padding-right: 40px;
	}
	.p_index_coupon .c-coupon__item li:nth-child(2),
	.p_index_coupon .c-coupon__item li:nth-child(3) {
		margin-top: 8px;
	}
	.p_index_info .map {
		padding-left: 40px;
		padding-right: 40px;
	}
	.p_index_info .map iframe {
		height: 450px;
	}
}



































