@charset "utf-8";

/*========*/
/* フッタ */
/*========*/

/* ページの先頭へ戻る
-----------------------------------*/
.ptop {
	display: none;
	position: fixed;
	bottom: 40px;
	right: 16px;
	width: 50px;
	height: 50px;
	border-radius: 25px;
	background: #DC5927;
	cursor: pointer;
	z-index: 10;
}

.ptop::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	margin: 10px auto;
	border-style: solid;
	border-width: 0 12.5px 25px 12.5px;
	border-color: transparent transparent #FFF transparent;
}

.ptop:hover {
	opacity: .7;
}

@media screen and (max-width: 767px) {
	.ptop {
		right: 12px;
		bottom: 56px;
	}
}

/* フッタ
-----------------------------------*/
footer {
	padding-top: 40px;
	padding-bottom: 32px;
	background: #333;
	color: #FFF;
	text-align: center;
}

footer a {
	font-size: 18px;
	color: #FFF;
}

footer h2 {
	width: 13.3333%; /*256/1920*/
	margin: 0 auto;
}

footer .list-menu {
	max-width: 1632px;
	width: 80%;
	margin: 6.25% auto;/*120/1920*/
	padding: 0 16px;
	font-size: 0;
}

footer .list-menu > li {
	display: inline-block;
	width: 32.5%;/*520/1600*/
	margin-right: 1.25%;
	font-size: 14px;
	vertical-align: top;
}

footer .list-menu > li .ac-menu:hover {
	opacity: 0.7;
	cursor: pointer;
}

footer .list-menu li:nth-child(3) {
	margin-right: 0;
}

footer .list-menu .list-spa {
	display: none;
	margin-top: 16px;
}

footer .list-menu .list-spa li {
	margin-bottom: 8px;
	text-align: left;
}

footer .list-menu .list-spa li::before {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	margin-right: 8px;
	border-style: solid;
	border-width: 4px 0 4px 8px;
	border-color: transparent transparent transparent #FFF;
}

footer .txt-note {
	margin-top: 16px;
}

footer .list-sitemap li {
	display: inline-block;
	margin-bottom: 16px;
	vertical-align: top;
}

footer .list-sitemap li:not(:last-child)::after {
	content: '|';
	display: inline-block;
	margin: 0 16px;
	vertical-align: top;
}

footer .copyright {
	margin-top: 32px;
}

@media screen and (max-width: 767px) {
	footer {
		padding-bottom: 64px;
		font-size: 12px;
	}

	footer a {
		font-size: 12px;
	}

	footer h2 {
		width: 80px;
	}

	footer .list-menu li {
		display: block;
		width: 100%;
		margin-right: 0;
		margin-bottom: 16px;
	}

	footer .txt-note {
		margin-top: 8px;
	}

	footer .list-sitemap {
		margin-top: 32px;
	}

	footer .list-sitemap li {
		display: block;
		margin-bottom: 16px;
		line-height: 1;
	}

	footer .list-sitemap li:not(:last-child)::after {
		content: none;
	}
}

/*============*/
/* コンテンツ */
/*===========*/
.heading01 {
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-style: normal;
	font-size: 48px;	
	line-height: 1.3;
	text-align: center;
}

.heading01 span {
	font-size: 36px;
}

.heading02 {
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	font-size: 64px;
	color: #DC5927;
	text-align: center;
	line-height: 1.4;
}

.heading02 span {
	display: block;
	font-size: 38px;
}

.heading03 {
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 900;
	font-size: 40px;
	color: #BC3B1D;
	line-height: 1.3;
	text-align: center;
}

.heading04 {
	font-size: 48px;
	font-weight: bold;
	color: #EDBC32;
	text-align: center;
	line-height: 1.3;
}

.heading04 span {
	font-size: 36px;
	color: #333;
}

.head-icon {
    text-align: center;
	margin: 0 auto 56px;
}

.column {
	display: flex;
	justify-content: space-between;
}

.column.reverse {
    flex-direction: row-reverse;
}

.txt .info-dl  {
	font-size: 18px;
	margin-bottom: 40px;
}

.txt .info-dl dl {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 0 16px;
}

.txt .info-dl dt {
	width: 128px;
	background-color: #F2CC81;
	text-align: center;
	padding: 12px 8px;
	margin-bottom: 8px;	
}

.txt .info-dl dd {
	width: calc(100% - 128px);
}

.txt p {
	line-height: 2;
}

.notes {
	font-size: 14px;
}

@media screen and (max-width: 1023px) {
	.heading02 {
		font-size: 56px;
	}

	.heading02 span {
		font-size: 32px;
	}
}

@media screen and (max-width: 767px) {

	.heading01 {
		font-size: 32px;
	}

	.heading01 span {
		font-size: 18px;
	}

	.heading02 {
		font-size: 32px;
	}

	.heading02 span {
		font-size: 20px;
	}

	.heading03 {
		font-size: 24px;
	}

	.heading04 {
		font-size: 32px;
        margin: 24px auto 20px;
        line-height: 1.6;
	}

	.heading04 span {
		font-size: 20px;
	}

	.head-icon {
		max-width: 52px;
	}

	.column {
		display: block;
		margin-top: 32px;
	}

	 .column .img {
		text-align: center;
	 }

	.txt .info-dl dl {
		gap: 0 8px;
	}

	.txt .info-dl dt {
		width: 112px;
		padding: 24px 4px;
	}
	
	.txt .info-dl dd {
		width: calc(100% - 112px);
	}

	.notes {
		font-size: 12px;
	}

	.box {
		background: url(/lp/iifuro2025/images/com_bg01_sp.png) no-repeat center;
		background-size: 100% 100%;
		margin: 0 auto;
	}
}

/* main
------------------------------------*/
.main {
	position: relative;
	height: 0;
	padding-bottom: 45.833%; /*880/1920*/
	margin: 0 auto;
	background: url(/lp/iifuro2025/images/main_bg01.png) no-repeat bottom center;
	background-size: 100% auto;
	text-align: center;
}

.main h2 {
	text-align: center;
}


@media screen and (min-width: 768px) {
	.h-logo {
		position: absolute;
		top: 30%;
		left: 0;
        right: 0;
		width: 20.067%; /* 397/1920 */
		max-width: 398px;
        z-index: 10;
        margin: 0 auto;
	}


	.main h2 {
		position: absolute;
        top: 18.181%; /* 160/880 */
        left: 0;
		right: 0;
		width: 34.895%;
		max-width: 670px;
		margin: 0 auto;
        z-index: 1;
	}
	
}

@media screen and (max-width: 767px) {

	.h-logo {
		position: absolute;
		width: 50.4%;
        max-width: 378px;
		top: 35%;
        left: 50%;
        transform: translateX(-50%);
	}


	.main {
		background: none;
		height: auto;
		padding: 0;
		background-color: #FFEFB5;
		z-index: -60;
	}
}


@media screen and (min-width: 1921px) {
	.h-logo {
		top: 28.5%;
		max-width: 320px;
	}
}

/* menu-bt
------------------------------------*/
.menu-bt {
    margin: 120px auto;
}

.menu-bt ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
    gap: 40px 4%;
	margin-bottom: 0;
}

.menu-bt li {
	width: 48%;
}

.menu-bt li img {
	box-shadow: 0 8px 12px 0 rgba(0, 0, 0, 0.35);
}

@media screen and (max-width: 767px) {
	.menu-bt {
		padding: 0;
		margin: 40px auto;
	}
	
	.menu-bt ul {
		justify-content: center;
		gap: 20px 0;
	}

	.menu-bt li {
		width: 100%;
		text-align: center;
	}

	.menu-bt li img {
		box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.35);
	}
}

/* stamp
------------------------------------*/
.stamp {
	position: relative;
	background-image: url(/lp/iifuro2025/images/stamp_bg01.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% 100%;
}

.stamp .wrap {
	max-width: 1408px;
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	padding: 48px 24px;
	margin: 0 auto;
}

.stamp .wrap .column {
	align-items: center;
	gap: 16px 8px;
}

.stamp >.img {
	width: 63.23%;
	max-width: 860px;
}

.stamp .txt {
	width: 40%;
	max-width: 500px;
	background-image: url(/lp/iifuro2025/images/stamp_bg02.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% 100%;
}

.stamp .txt .inner {
	max-width: 400px;
    padding: 40px 0 0;
	margin: 0 auto;
}

.stamp h2 + p {
	font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 700;
	margin: 4px auto 0;
}

.stamp .info dt {
	display: inline-block;
	background-color: #000;
	color: #FFF;
	font-weight: bold;
	font-size: 18px;
	padding: 2px 4px 4px;
    border-radius: 2px;
    line-height: 1;
	margin-top: 8px;
}

.stamp .info dd {
	margin-top: -2px;
}

.stamp .inner .img {
	margin: 20px auto 12px;
}

.stamp .notes {
	font-weight: 500;
	line-height: 1.6;
	margin-bottom: 16px;
}

.stamp .btn{
	text-align: center;
}

@media screen and (max-width: 1440px) {

	.stamp .wrap .column {
		max-width: 680px;
		flex-wrap: wrap;
		margin: 0 auto;
	}

	.stamp >.img {
		width: 100%;
		margin-bottom: 24px;
	}

	.stamp .txt {
		width: 100%;
		max-width: 480px;
		text-align: center;
		margin: 0 auto 24px;
	}

	.stamp .txt .inner {
		padding: 8px 0;
		max-width: 360px;
	}

	.stamp .info dl {
		text-align: left;
	}

}


@media screen and (max-width: 767px) {
.stamp {
	background-image: url(/lp/iifuro2025/images/stamp_bg01_sp.jpg);
	background-repeat: no-repeat;
	background-position: center top;
	max-width: 60px auto 80px;
}

.stamp .wrap {
	padding: 72px 24px 56px;
}

.stamp h2 {
	max-width: 264px;
	margin: 0 auto;
}

.stamp h2 + p {
	font-size: 12px;
}

.stamp .txt .inner {
	max-width: 280px;
}

.stamp .info {
	max-width: 240px;
}

.stamp .info dt {
	font-size: 14px;
}

.stamp .info dd {
	margin-top: 0;
}

.stamp .notes {
	/* font-size: 12px; */
	margin-bottom: 16px;
}

.stamp .btn{
	margin-top: 32px;
}

}

/* campaign
------------------------------------*/
.campaign {
	position: relative;
	background-image: url(/lp/iifuro2025/images/campaign_bg01.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% 100%;
	padding: 120px 0;
}

.campaign  .title {
	text-align: center;
}

.campaign  h2 {
	margin-top: 32px;
}

.campaign .wrap {
	margin: 112px auto;
}

.campaign .num {
	position: relative;
	text-align: center;
	margin-bottom: 40px;
}

.campaign .num::before {
	position: absolute;
	content: '';
	bottom: 0;
	left: 0;
    width: calc(50% - 60px);
    height: 10px;
	background: url(/lp/iifuro2025/images/campaign_num_bg01.svg) no-repeat bottom left;
	background-size: 100% auto;
}

.campaign .num::after {
	position: absolute;
	content: '';
	bottom: 0;
	right: 0;
	width: calc(50% - 60px);
    height: 10px;
	background: url(/lp/iifuro2025/images/campaign_num_bg01.svg) no-repeat bottom right;
	background-size: 100% auto;
}

.campaign .wrap .sub-ttl {
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 24px;
	font-weight: bold;
	color: #BC3B1D;
	text-align: center;
	margin-bottom: 0;
}

.campaign .wrap .sub-ttl span {
	font-size: 30px;
}

.campaign .column {
	align-items: center;
	gap: 0 4%;
	margin-top: 40px;
}

.campaign .column .img {
	width: 50%; /*538/1200*/
}

.campaign .column .img figcaption {
	color: #DB3E59;
	font-size: 14px;
	font-weight: bold;
    margin-left: 8%;
}

.campaign .column .img .notes {
	text-align: right;
	margin: 8px auto 0;
}

.campaign .column .txt {
	width: 46%;
}

.campaign .column .txt .info-dl {
	margin-bottom: 40px;
}

.campaign .column .txt p {
	font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.campaign .column .list-dot02 li:not(:last-child){
	margin-bottom: 4px;
} 

.campaign .column .list-dot02 li::before {
	width: 6px;
    height: 6px;
    top: 12px;
}

.campaign .bt-list {
	text-align: center;
	margin: 0 auto;
}

.campaign .bt-list li:not(:last-child) {
	margin-bottom: 32px;
}

.campaign .wrap.num01 {
	font-size: 18px;
}

@media screen and (max-width: 767px) {
	.campaign {
		background-size: auto 100%;
		padding: 64px 0 80px;
	}

	.campaign .title p {
		max-width: 400px;
        margin: 0 auto 1em;
	}

	.campaign  h2 {
		max-width: 280px;
		margin: 0 auto 24px;
	}

	.campaign .wrap {
		margin: 80px auto 64px;
	}

	.campaign .num img {
		width: 48px;
	}

	.campaign .num::before {
		width: calc(50% - 60px);
		height: 24px;
		background: url(/lp/iifuro2025/images/campaign_num_bg01_sp.png) no-repeat bottom left;
		background-size: 100% auto;
	}
	
	.campaign .num::after {
		width: calc(50% - 60px);
		height: 24px;
		background: url(/lp/iifuro2025/images/campaign_num_bg01_sp.png) no-repeat bottom right;
		background-size: 100% auto;
	}

	.campaign .wrap .sub-ttl {
		font-size: 18px;
		margin-bottom: 1em;
	}

	.campaign .wrap .sub-ttl span {
		font-size: 20px;
	}

	.campaign .heading03 {
		margin: 16px auto 32px;
	}

	.campaign .column .img {
		width: 100%;
		text-align: center;
		font-size: 12px;
	}

	.campaign .column .img figcaption {
		font-size: 12px;
		text-align: left;
		margin-bottom: 16px;
	}

	.campaign .column .txt {
		width: 100%;
	}

	.campaign .txt .info-dl {
		font-size: 16px;
		margin-bottom: 16px;
	}

	.campaign .bt-list li:not(:last-child) {
		margin-bottom: 24px;
	}

	.campaign .wrap.num01 {
		font-size: 14px;
	}
}


/* ticket
------------------------------------*/

.ticket {
	background-image: url(/lp/iifuro2025/images/ticket_bg01.png);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
	padding: 128px 0;
}

.ticket .heading02 {
	font-size: 48px;
}

.ticket .box {
	max-width: 715px;
	background: url(/lp/iifuro2025/images/ticket_bg03.png) no-repeat center;
	background-size: 100% 100%;
	padding: 32px;
    margin: 40px auto 0;
}

.ticket .box .inner {
	border: solid 1px #BC3B1D;
    padding: 16px 8px;
}

.ticket .box .inner:not(:last-child) {
	margin-bottom: 32px;
}

.ticket .box .inner dt {
	font-size: 18px;
    font-weight: bold;
	margin-bottom: 8px;
}

.ticket .box .inner dd {
	line-height: 2;
}

.ticket .notes {
    max-width: 715px;
    margin: 1em auto 0;	
}

@media screen and (max-width: 767px) {

	.ticket {
		background-image: url(/lp/iifuro2025/images/ticket_bg01_sp.png),url(/lp/iifuro2025/images/ticket_bg02_sp.png);
		background-repeat: no-repeat;
		background-position: left center,right center;
		background-size: 50% auto;
		padding: 64px 0 80px;
	}

	.ticket .heading02 {
		font-size: 32px;
	}

	.ticket .box {
		background: url(/lp/iifuro2025/images/ticket_bg03_sp.png) no-repeat center;
		background-size: 100% 100%;
		margin-top: 20px;
		padding: 16px;
	}

	.ticket .box .inner:not(:last-child) {
		margin-bottom: 16px;
	}
		
	.ticket .box .inner dt {
		margin-bottom: 0;
	}

	.ticket .box .inner dd {
		line-height: 1.6;
	}

	.ticket .notes {
		max-width: 715px;
		margin: 1em 0 0 1em;
	}
}

/* goods
------------------------------------*/
.goods {
	background-color: #F7C4AA;
	padding: 120px 0;
}

.goods .head-icon {
	margin-bottom: 32px;
}

.goods .column {
    align-items: center;
    margin-top: 80px;
	gap: 0 4%;
}

.goods .column .img {
	width: 48%; /*578/1200*/
}

.goods .column .txt {
	width: 46%; /*556/1200*/
}

.goods .txt .bt {
	max-width: 330px;
	margin: 40px 0 0;
}

@media screen and (max-width: 767px) {
	.goods {
		padding: 64px 0 80px;
	}

	.goods .column {
		margin-top: 40px;
	}

	.goods .column .img,
	.goods .column .txt {
		width: 100%;
	}

	.goods .txt .bt {
		max-width: 240px;
		margin: 28px auto 0;
	}
}



/* salon
------------------------------------*/
.salon {
	background: url(/lp/iifuro2025/images/salon_bg01.png) no-repeat top center;
	background-size: 100% 100%;
	padding: 120px 0 80px;
}

.salon .head-icon {
    padding-top: 0;
	margin-bottom: 40px;
}

.salon .h-salon01 {
	font-family: "Zen Old Mincho", serif;
	font-weight: 900;
	font-size: 48px;
	line-height: 1.2;
	text-align: center;
}

.salon .h-salon01 span {
	font-size: 32px;
}

.salon .column {
    align-items: center;
	margin-top: 32px;
}

.salon .column .img {
	width: 40%;
}

.salon .column .txt {
	width: 52%;
	color: #002544;
	text-align: left;
}

.salon .column .txt .col01 {
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 500;
	font-size: 18px;
	color: #DB0E00;
}

.salon .column .txt .bt {
	margin: 56px 0 0;
}

@media screen and (max-width: 767px) {

	.salon {
		background-size: auto 100%;
		padding: 64px 0 80px;
	}
	
	.salon .head-icon {
		max-width: 148px;
		margin-bottom: 20px;
	}
	
	.salon .h-salon01 {
		font-size: 32px;
	}

	.salon .h-salon01 span {
		display: block;
		font-size: 18px;
        margin-top: 8px;
	}

	.salon .column {
		margin-top: 56px;
	}

	.salon .column .img {
		width: 100%;
	}
	
	.salon .column .txt {
		width: 100%;
		margin-top: 40px;
	}

	.salon .column .txt .col01 {
		font-size: 16px;
		margin-bottom: 24px;
	}

	.salon .column .txt .bt {
		max-width: 295px;
		margin: 0 auto;
	}
}

/* photo-con
------------------------------------*/
.photo-con {
	position: relative;
	background-image: url(/lp/iifuro2025/images/photo-con_bg01.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% 100%;
	padding: 104px 0 112px;
}

.photo-con .head-icon {
	margin-bottom: 32px;
}

.photo-con .column {
    align-items: center;
    margin-top: 80px;
	gap: 0 2%;
}

.photo-con .column .img {
	width: 50%;
}

.photo-con .column .txt {
	width: 47%;
}

.photo-con .txt .bt {
	margin: 40px auto 0;
    text-align: center;
}

@media screen and (max-width: 767px) {
.photo-con {
	background-image: url(/lp/iifuro2025/images/photo-con_bg01_sp.png), url(/lp/iifuro2025/images/photo-con_bg02_sp.png,);
	background-repeat: no-repeat;
	background-position: center top,center bottom;
	background-size: 100% auto;
	padding: 64px 0 80px;
}

.photo-con .column {
	margin-top: 40px;
}

.photo-con .column .img {
	width: 100%;
}

.photo-con .column .txt {
	width: 100%;
}
}

/* app
------------------------------------*/
.app {
	background-color: #F7C4AA;
	padding: 80px 0 120px;
}

.app .heading02 span {
	font-size: 38px;
}

.app .column {
    align-items: center;
	margin-top: 48px;
}

.app .column .img {
	width: 50%;
}

.app .column .txt {
	width: 45%;
	font-size: 18px;
}

.app .column .bt {
	margin-top: 40px;
}

@media screen and (max-width: 767px) {
	.app {
		padding: 64px 0;
	}

	.app .heading02 {
		font-size: 24px;
	}

	.app .heading02 span {
		font-size: 18px;
	}
	
	.app .column {
		margin-top: 40px;
	}

	.app .column .txt {
		width: 100%;
		font-size: 16px;
	}

	.app .column .img {
		width: 100%;
		margin-bottom: 40px;
	}

	.app .column .bt {
		max-width: 210px;
		margin: 40px auto 0;
	}
}

/* niftyonsen
------------------------------------*/
.niftyonsen {
	background-color: #F7C4AA;
	padding: 0 0 80px;
}

.niftyonsen .heading01 + p {
	font-size: 18px;
	text-align: center;
	margin: 40px auto;
}

.niftyonsen .bt {
	text-align: center;
	margin-bottom: 0;
}

@media screen and (max-width: 767px) {
	.niftyonsen {
		padding-top: 0;
		padding-bottom: 15%;
	}

	.niftyonsen .contents,
	.niftyonsen h3 + p {
		margin-bottom: 24px;
	}

	.niftyonsen .heading01 + p {
		font-size: 16px;
	}

	.niftyonsen .bt {
		max-width: 245px;
		margin: 0 auto;
	}
}

/* event
------------------------------------*/
.event {
	padding-bottom: 32px;
	overflow: hidden;
}

.event .manner_bn {
	max-width: 640px;
	margin: 80px auto 24px;
}

.event .heading01 {
	margin: 64px 0 40px;
	text-align: center;
}

.event .heading01 + p {
	text-align: center;
	margin-bottom: 48px;
}

.event .store-list {
	overflow: hidden;
}

.event .sns-title {
	font-size: 20px;
	font-weight: bold;
	text-align: center;
	margin: 48px auto;
}

.event .store-list > li {
	width: 11.25%;
	position: relative;
	float: left;
	margin-top: 16px;
	padding: 24px 1.25% 0 0;
	font-size: 14px;
	text-align: center;
}

.event .store-list .last-store {
	width: 10%;
	margin-right: 1.25%;
	padding-right: 0;
}

.event .store-list li a {
	display: block;
}

.event .store-list li .sns-link {
	margin-top: 8px;
	padding-bottom: 8px;
	font-size: 0;
	text-align: center;
}

.event .store-list li .sns-link li {
	display: inline-block;
	width: 50%;
	padding: 0 10%;
	font-size: 14px;
}

.event .kirari {
	width: 60%;
	float: left;
	margin-bottom: 0;
}

.event .kirari li {
	width: 19%;
	padding: 24px 2% 0 0;
}

.event .kirari .last-store {
	width: 17%;
	margin-right: 2%;
	padding-right: 0;
}

.event .store-list .saitama::before,
.event .store-list .gunma::before,
.event .store-list .tochigi::before,
.event .store-list .ibaragi::before,
.event .store-list .kanagawa::before,
.event .store-list .tokyo::before,
.event .store-list .chiba::before {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	padding: 0 4px 0 2px;
	background-color: #FFDD93;
	font-size: 14px;
	z-index: 1;
}

.event .store-list .saitama::before {
	content: '埼玉';
}

.event .store-list .gunma::before {
	content: '群馬';
}

.event .store-list .tochigi::before {
	content: '栃木';
}

.event .store-list .ibaragi::before {
	content: '茨城';
}

.event .store-list .kanagawa::before {
	content: '神奈川';
}

.event .store-list .tokyo::before {
	content: '東京';
}

.event .store-list .chiba::before {
	content: '千葉';
}

.event .store-list li::after {
	content: '';
	display: block;
	width: 100%;
	position: absolute;
	top: 9px;
	left: 0;
	border-top: 2px solid #666;
	z-index: 0;
}

.event .store-list li p {
	margin-bottom: 0;
}

.event .kirari-note {
	width: 35%;
	float: right;
	margin-top: 16px;
}

.event .kirari-note h5 {
	font-weight: bold;
}

.event .nifty {
	text-align: center;
}

.event .f-small {
	font-size: 12px;
	margin-top: 2px;
}

@media screen and (max-width: 1024px) {
	.event .store-list li .sns-link li {
		padding: 0 5%;
	}
}

@media screen and (min-width: 768px) {
	.event .store-list li:nth-child(9n) {
		width: 10%;
		margin-right: 0;
		padding-right: 0;
	}
}

@media screen and (max-width: 767px) {
	.event .manner_bn {
		max-width: 640px;
		margin: 40px auto 0;
	}

	.event h3 {
		margin: 40px auto 16px;
	}

	.event h3 + p {
		margin-bottom: 32px;
	}

	.event h3 p {
		font-size: 14px;
	}

	.event .sns-title {
		font-size: 16px;
	}

	.event h4 img {
		margin-bottom: 8px;
	}

	.event .store-list li .sns-link li {
		padding: 0 10%;
	}

	.event .store-list li .sns-link li a {
		max-width: 40px;
	}

	.event .kirari {
		width: 100%;
		float: none;
	}

	.event .store-list > li,
	.event .kirari > li {
		width: 25.4437%;
		padding: 18px 1.7751% 0 0;
		font-size: 12px;
	}

	.event .yura .ibaragi,
	.event .yura .kanagawa,
	.event .yura > li:last-child {
		clear: both
	}

	.event .store-list .last-store,
	.event .kirari .last-store {
		width: 23.6686%;
		margin-right: 1.7751%;
		padding-right: 0;
	}

	.event .store-list .sp-last-col {
		width: 23.6686%;
		margin-right: 0;
		padding-right: 0;
	}

	.event .store-list .saitama::before,
	.event .store-list .gunma::before,
	.event .store-list .tochigi::before,
	.event .store-list .ibaragi::before,
	.event .store-list .kanagawa::before,
	.event .store-list .tokyo::before,
	.event .store-list .chiba::before {
		font-size: 12px;
	}

	.event .store-list li::after {
		top: 8px;
	}

	.event .kirari-note {
		width: 100%;
		float: none;
	}

	.event .f-small {
		font-size: 12px;
        margin-top: 0;
    }

}


@media screen and (max-width: 374px) {
	.event .f-small {
		font-size: 9px;
        margin-top: 4.5px;
	}
}



.attention {
	font-weight: bold;
	text-align: center;
    margin-top: 16px;
}

.attention a {
	text-decoration: underline;
	color: #0096E7;
}

.attention a:hover {
	text-decoration: none;
	opacity: .7;
}
