@charset "utf-8";

/* CSS Document */
/*-----------------------------------------
 common
-----------------------------------------*/
main img {
	width: 100%;
	max-width: 100%;
	height: auto;
	vertical-align: top;
}

h1.sec-headline {
	padding: 0;
	font-size: 38px;
	font-weight: bold;
	text-align: center;
	line-height: 1.0;
	color: #111;
	margin: 0 0 40px 0;
}

h2.sec-headline {
	width: 100%;
	margin: 12px 0 25px;
}

#open_shop_list {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

/*-----------------------------------------
 #open_shop_list（全カテゴリ共通）
-----------------------------------------*/
#open_shop_list {
	display: flex;
	flex-wrap: wrap;
	padding: 0;
	opacity: 0;
}

#open_shop_list.fadein {
	animation-name: fadein;
	animation-duration: 1s;
	animation-timing-function: ease-out;
	animation-fill-mode: forwards;
}

@keyframes fadein {
	0% {
		opacity: 0;
		transform: translateY(0);
	}

	100% {
		opacity: 1;
		transform: translateY(20px);
	}
}

#open_shop_list * {
	box-sizing: border-box;
}

#open_shop_list>div {
	padding: 26px 16px 32px;
	border: solid 1px #ccc;
	margin: 0 0 48px 0;
}

#open_shop_list .sch_tag,
#open_shop_list .sch_tag_free {
	display: inline-block;
	line-height: 40px;
	height: 40px;
}

@media screen and (max-width: 768px) {
	#open_shop_list {
		padding: 12px 24px 24px;
	}

	#open_shop_list .opened {
		padding: 24px;
	}

	#open_shop_list>div {
		padding: 16px 16px 32px;
	}
}

/*　ショップ紹介（全カテゴリ共通）
-----------------------------------------*/
#open_shop_list .shop_name {
	font-weight: bold;
	font-size: 120%;
}

#open_shop_list .shop_info .shop_link {
	margin: 25px 0 0 ;
	width: 100%;
	display: block;
}
#open_shop_list .shop_info>.shop_link {
	margin: 0 0 0 345px;
}

#open_shop_list .shop_link a {
	color: #ffffff;
	margin: 0 auto;
	display: inline-block;
	width: 100%;
	max-width: 400px;
}

#open_shop_list .shop_link a:hover {
	background: #cc3333;
}

@media screen and (max-width: 768px) {
	#open_shop_list .shop_name {
		line-height: 1.2;
	}

	#open_shop_list .shop_link {
		margin: 25px 0 0;
	}
}

/*　商品紹介（全カテゴリ共通）
-----------------------------------------*/
.shop_logo,
.shop_item img {
	/* border: solid 1px #ccc; */
}

#open_shop_list .shop_item {
	margin: 26px 0 0;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
}

#open_shop_list .shop_item a {
	text-decoration: none;
	color: #000000;
	width: calc((100% - 96px) / 4);
	margin-right: 32px;
	display: flex;
	flex-direction: column;
}

#open_shop_list .shop_item a:last-child {
	margin-right: 0;
}

#open_shop_list .shop_item a .item {
	flex-grow: 1;
}

#open_shop_list .shop_item a .item p {
	margin: 16px 0 0;
}

#open_shop_list .shop_item a .link {
	margin-top: auto;
	display: none;
}

@media screen and (max-width: 768px) {
	#open_shop_list .shop_item {
		justify-content: space-between;
	}

	#open_shop_list .shop_item>a {
		width: calc((100% - 24px) / 2);
		margin-right: 0;
	}

	#open_shop_list .shop_item>a:first-child,
	#open_shop_list .shop_item>a:nth-child(2) {
		margin-bottom: 40px;
	}
}


/*-----------------------------------------
 #open_shop_list （カテゴリ1/2共通）
-----------------------------------------*/
#open_shop_list .pre_opening,
#open_shop_list .newly_open {
	width: 100%;
}

/*　ショップ紹介（カテゴリ1/2共通）
-----------------------------------------*/
#open_shop_list .pre_opening .shop_info,
#open_shop_list .newly_open .shop_info {
	position: relative;
	display: grid;
	gap: 20px 25px;
	grid-template-rows: 40px 1fr;
	grid-template-columns: 320px 1fr;
	margin: 0;
}

#open_shop_list .pre_opening .shop_info .shop_logo,
#open_shop_list .newly_open .shop_info .shop_logo {
	grid-row: 1 / 3;
	grid-column: 1 / 2;
}

#open_shop_list .pre_opening .shop_info .shop_name,
#open_shop_list .newly_open .shop_info .shop_name {
	grid-row: 1 / 2;
	grid-column: 2 / 3;
	padding-right: 210px;
	line-height: 30px;
	padding-top: 10px;
}

#open_shop_list .pre_opening .shop_info .shop_description,
#open_shop_list .newly_open .shop_info .shop_description {
	grid-row: 2 / 3;
	grid-column: 2 / 3;
}

#open_shop_list .pre_opening .sch_tag,
#open_shop_list .newly_open .sch_tag,
#open_shop_list .pre_opening .sch_tag_free,
#open_shop_list .newly_open .sch_tag_free {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0 20px;
	border-radius: 20px;
	color: #ffffff;
	font-weight: bold;
	text-align: center;
}

#open_shop_list .pre_opening .sch_tag,
#open_shop_list .pre_opening .sch_tag_free {
	background: #e2a233;
}

#open_shop_list .newly_open .sch_tag,
#open_shop_list .newly_open .sch_tag_free {
	background: #cc0000;
}


@media screen and (max-width: 768px) {

	#open_shop_list .pre_opening .shop_info,
	#open_shop_list .newly_open .shop_info {
		position: relative;
		display: block;
		margin: 0;
		text-align: right;
	}

	#open_shop_list .pre_opening .shop_info .shop_logo,
	#open_shop_list .newly_open .shop_info .shop_logo {
		margin-bottom: 15px;
		text-align: left;
	}

	#open_shop_list .pre_opening .shop_info .shop_name,
	#open_shop_list .newly_open .shop_info .shop_name {
		padding-right: 0;
		height: auto;
		margin-bottom: 15px;
		text-align: left;
		line-height: 1.2;
	}

	#open_shop_list .pre_opening .shop_info .shop_description,
	#open_shop_list .newly_open .shop_info .shop_description {
		text-align: left;
	}

	#open_shop_list .pre_opening .sch_tag,
	#open_shop_list .newly_open .sch_tag,
	#open_shop_list .pre_opening .sch_tag_free,
	#open_shop_list .newly_open .sch_tag_free {
		position: relative;
		padding: 0 20px;
		border-radius: 20px;
		display: inline-block;
		margin-bottom: 15px;
	}
}

/*-----------------------------------------
 #open_shop_list （カテゴリ1）
-----------------------------------------*/
#open_shop_list .pre_opening a {
	pointer-events: none;
}

#open_shop_list .pre_opening .shop_link {
	display: none;
}

/*-----------------------------------------
 #open_shop_list （カテゴリ2）
-----------------------------------------*/
#open_shop_list .newly_open .shop_item .link {
	display: inline-block;
	border: solid 1px #000000;
	border-radius: 5px;
	background: #fff;
	width: 100%;
	line-height: 48px;
	text-decoration: none;
	color: #000;
	position: relative;
	text-align: center;
	margin-top: 20px;
}

#open_shop_list .newly_open .shop_item a:hover .link {
	background: #fbf9f4;
}

#open_shop_list .newly_open .shop_item .link::after {
	content: "";
	width: 8px;
	height: 8px;
	border-right: 2px solid #CC0000;
	border-top: 2px solid #CC0000;
	display: inline-block;
	transform: rotate(45deg);
	margin-top: 10px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	vertical-align: middle;
	right: 13px;
}

/*-----------------------------------------
 #open_shop_list （カテゴリ3）
-----------------------------------------*/
#open_shop_list .opened {
	width: 32%;
	margin: 0 2% 48px 0;
}

#open_shop_list .opened_third {
	margin: 0 0 48px 0;
}

@media screen and (max-width: 768px) {
	#open_shop_list .opened {
		width: 100%;
		margin: 0 0 48px 0;
	}
}

@media screen and (min-width: 769px) {
#open_shop_list .opened .shop_description {
	display: flex;
	flex-direction: column;
}
	
#open_shop_list .opened .shop_description>p {
	flex-grow: 1;
}
}

/*　商品紹介（カテゴリ3）
-----------------------------------------*/
#open_shop_list .opened,
#open_shop_list .opened .shop_info {
	display: flex;
	flex-direction: column;
}

#open_shop_list .opened .shop_info {
	flex-grow: 1;
}

#open_shop_list .opened .shop_info .shop_logo {
	order: 1;
}

#open_shop_list .opened .shop_name {
	margin: 20px 0 5px;
	order: 2;
}

#open_shop_list .opened .shop_name,
#open_shop_list .opened .sch_tag,
#open_shop_list .opened .sch_tag_free {
	line-height: 1.3;
	height: auto;
	text-align: center;
	display: block;
	font-weight: bold;
}

#open_shop_list .opened .sch_tag,
#open_shop_list .opened .sch_tag_free {
	margin: 0 0 20px;
	order: 3;
}

#open_shop_list .opened .shop_description {
	order: 4;
	flex-grow: 1;
}

#open_shop_list .opened .shop_link {
	margin: 20px 0 0;
}

#open_shop_list .opened .shop_item {
	display: none;
}

@media screen and (max-width: 768px) {}

/*-----------------------------------------
 #open_shop_list （カテゴリ4）
-----------------------------------------*/
#open_shop_list .delete {
	display: none;
}

/*-----------------------------------------
 #open_shop_list （該当なし）
-----------------------------------------*/
#open_shop_list.shop0 {
	text-align: center;
	font-size: 1.2em;
	padding: 100px 0;
	border: solid 1px #ccc;
}

.more-button {
	margin-top: 100px;
}

.more-button a:hover {
	background: #fbf9f4;
}

/*-----------------------------------------
 #freepage-anchor-list　アンカーリンク
-----------------------------------------*/
html[data-browse-mode="P"] .freepage-anchor-list {
    display: flex;
    flex-wrap: wrap;
  justify-content: center;
}
html[data-browse-mode="P"] .freepage-anchor-list li {
    width: calc((100% - 60px) / 5);
    margin: 0 30px 30px 0;
}
@media screen and (max-width: 768px) {
	.freepage-anchor-list {
		padding: 12px 24px 24px;
	}
}

/*-----------------------------------------
 .wmile　マイル2倍
-----------------------------------------*/
.wm {
    display:none;
}
.wmile {
    border-top:solid 5px #b69633 !important;
    position:relative;
}
.wmile .wm {
    display:block;
    position:absolute;
    top:0;
    left:0;
    background:#b69633;
    font-weight:bold;
    padding: 12px 30px 12px 10px;
    color: #ffffff;
    box-sizing: border-box;
}
.wmile .wm .wm_tag {
    display:inline-block;
    background:#000000;
    font-size:14px;
    padding: 0 10px;
    line-height:30px;
    box-sizing: border-box;
    vertical-align: top;
}
.wmile .wm .wm_txt {
    display:inline-block;
    padding: 0 0 0 10px;
    width:136px;
    height:30px;
    white-space: nowrap;
    text-indent:110%;
    overflow:hidden;
    box-sizing: border-box;
    background:url("/img/usr/freepage/newshop/img/wmile.jpg") no-repeat top right;
    background-size:contain;
}
html[data-browse-mode="P"] .wmile .shop_logo {
    padding-top: 40px !important;
}
html[data-browse-mode="P"] .wmile .wm::after{
content:"";
    display:inline-block;
    width: 20px;
    height: 100%;
    position:absolute;
    top:0;
    right:0;
    background:linear-gradient(to bottom right, #b69633 50% , #ffffff 50%);
    box-sizing: border-box;
}
html[data-browse-mode="S"] .wmile {
    padding-top:70px !important;
}
html[data-browse-mode="S"] .wmile .wm {
    width:100%;
    padding: 8px 10px;
}
html[data-browse-mode="S"] .wmile .wm .wm_tag {
    font-size:14px;
    width:50%;
    max-width:150px;
    text-align:center;
}
html[data-browse-mode="S"] .wmile .wm .wm_txt {
    font-size:18px;
    width:50%;
    max-width:150px;
}
@media screen and (max-width: 389px) {
/* スクリーンサイズが389px以下の場合に適用 */
html[data-browse-mode="S"] .wmile .wm .wm_tag {
    font-size:13px;
}
} 
.pre_opening.wmile .wm {
    display:none;
}
.pre_opening.wmile {
    border-top:solid 1px #ccc !important;
}
html[data-browse-mode="P"] .pre_opening.wmile .shop_logo {
    padding-top: 0 !important;
}
html[data-browse-mode="S"] .pre_opening.wmile {
    padding-top:16px !important;
}

.top1{
    margin: 0 0 10px 0;
    font-size: 20px;
}
.top2{
    margin: 0 0 20px 0;
    padding: 1em;
    text-indent:-1em;
}
@media screen and (min-width: 769px) {

.top1{
    text-align:center;
}
.top2{
    padding: 0;
    text-indent:0;
    text-align:center;
    margin: 0 0 40px 0;
}
} 
