@charset "utf-8";

/* ========================================
共通
======================================== */

/* レイアウト */
.sponsored_stores_search #container {
	overflow-x: visible;
}
.sponsored_stores_search #top_search:after {
	width: calc(50vw - 550px);
	right: auto;
	left: 100%;
}

.content_header_wrap {
	width: 1080px;
	margin-left: auto;
	margin-right: auto;
}
#main_body {
	width: 1080px;
	margin-left: auto;
	margin-right: auto;
	text-align: left;
}

/* 印刷ページ */
.view_print_mode #main_header h1,
.view_print_mode .content_header_wrap,
.view_print_mode #main_body {
	width: auto;
}
.view_print_mode #main_header::before {
	display: none;
}
.view_print_mode #stores_search_note {
	position: static;
}

/* ========================================
検索
======================================== */

/* 注意文 */
#stores_search_note {
	position: sticky;
	top: 0px;
	z-index: 2;
	background: #fae5e5;
	border: 1px solid #cc0000;
	color: #cc0000;
	font-size: 1.6rem;
	padding: 14px 19px;
}
#stores_search_note p {
	margin: 0px 0px 1em;
}
#stores_search_note p:last-child {
	margin-bottom: 0px;
}

/* 検索結果 */
#stores_search_result {
	margin-bottom: 50px;
}

/* 検索結果（件数） */
.result_numbers_wrap {
	margin: 30px 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.result_numbers {
	font-size: 1.4rem;
}

/* 検索結果（表示件数選択） */
.result_limit {
	position: relative;
	margin-left: auto;
}

.result_limit button.result_limit_button {
	border: 1px solid transparent;
	border-radius: 10px;
	background: #eeeeee;
	color: #333333;
	font-size: 1.5rem;
	line-height: 1.8rem;
	padding: 10px 30px 10px 15px;
	position: relative;
}
.result_limit button.result_limit_button::before {
	content: '';
	width: 0px;
	height: 0px;
	border: 6px solid transparent;
	border-bottom-width: 0px;
	border-top-width: 8px;
	border-top-color: #333333;
	position: absolute;
	top: 50%;
	right: 10px;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}
.result_limit button.result_limit_button.open {
	border-radius: 10px 10px 0px 0px;
}
.result_limit button.result_limit_button.open::before {
	border-top-width: 0px;
	border-bottom-color: transparent;
	border-bottom-width: 8px;
	border-bottom-color: #333333;
}

.result_limit .result_limit_box {
	display: none;
	position: absolute;
	top: 100%;
	right: 0px;
	z-index: 1;
	width: 100%;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	background: #ffffff;
	border: 2px solid #eeeeee;
	border-radius: 0px 0px 10px 10px;
	padding: 10px;
	font-size: 1.5rem;
	line-height: 2rem;
	text-align: right;
}
.result_limit.open .result_limit_box {
	display: block;
}
.result_limit .result_limit_box span {
	display: block;
	margin-bottom: 10px;
	text-align: left;
}
.result_limit .result_limit_box button.result_select_box_close {
	border: none;
	font-size: 1.4rem;
	line-height: 2rem;
	margin: 0px;
	padding: 0px 0px 0px 25px;
	background: url("/img/site/couplepass/common/ico-close.png") no-repeat left center;
}
.result_limit .result_limit_box button.result_select_box_close span {
	margin-bottom: 0px;
}

/* 検索結果（一覧） */
.result_box_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	gap: 20px;
}

.result_box {
	width: 255px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	border: 1px solid #9ccee4;
	border-radius: 10px;
	background: #ffffff;
	padding: 19px;
	font-size: 1.5rem;
}

.result_box .box_img {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	margin-bottom: 10px;
	background: #edf6fb;
	border-radius: 10px;
	overflow: hidden;
}
.result_box .box_img a {
	display: block;
	width: 100%;
	height: 100%;
}
.result_box .box_img img {
	width: 100%;
	height: 100%;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: center;
	   object-position: center;
}

.result_box .box_icn {
	margin-bottom: 10px;
}
.result_box .box_icn,
.result_box .box_icn div[class*="icn_"] {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 5px;
}
.result_box .box_icn span[class*="icon_elm_"] {
	display: inline-block;
	font-size: 1.2rem;
	line-height: 1.4rem;
	padding: 2px 10px;
	border: 1px solid transparent;
	border-radius: 5px;
}
.result_box .box_icn .icn_industry span[class*="icon_elm_"] {
	background: #c2e9fb;
}
.result_box .box_icn .icn_benefits span[class*="icon_elm_"] {
	background: #fbcdf1;
}

.result_box .box_txt .ttl {
	font-size: 1.6rem;
	font-weight: bold;
	font-family: 'UD新ゴ DB', 'UD Shin Go DemiBold', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Arial, 'BIZ UDPGothic', Meiryo, メイリオ, Osaka, sans-serif;
}
.result_box .box_txt .txt {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	   text-overflow: ellipsis;
	-webkit-line-clamp: 3; /* 行数 */
	border-top: 1px solid #cccccc;
	margin-top: 10px;
	padding-top: 10px;
}
.result_box .box_txt .txt:empty {
	display: none;
}

/* 検索結果（ページャ） */
.result_pager {
	margin-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
}
.result_pager div[class*="result_pager_"] {
	display: inline-block;
	vertical-align: middle;
	margin: 5px;
	font-size: 1.5rem;
	line-height: 2rem;
	text-align: center;
}
.result_pager div[class*="result_pager_"] a {
	display: block;
	padding: 4px 6px;
	border: 1px solid #a1a6a4;
	border-radius: 15px;
	background: #ffffff;
	color: #333333;
	text-decoration: none;
	width: 100%;
	height: 100%;
	min-width: 3rem;
	min-height: 3rem;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.result_pager div[class*="result_pager_"] a:hover,
.result_pager div[class*="result_pager_"] a:focus {
	text-decoration: underline;
}
.result_pager div.result_pager_prev a,
.result_pager div.result_pager_next a {
	width: 30px;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: center center;
}
.result_pager div.result_pager_prev a {
	background-image: url("/img/sponsored-stores/arrow_prev.png");
}
.result_pager div.result_pager_next a {
	background-image: url("/img/sponsored-stores/arrow_next.png");
}

.result_pager div.result_pager_list {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	margin: 0px;
}
.result_pager div.result_pager_list > span {
	display: inline-block;
	vertical-align: middle;
	margin: 5px;
}
.result_pager div.result_pager_list > span.active {
	border-radius: 15px;
	background: #dbf3f9;
	padding: 5px 7px;
	min-width: 3rem;
	min-height: 3rem;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

/* 検索（キーワード） */
.box_keyword input[type="text"] {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	width: 100%;
	height: 6rem;
	border: 1px solid #9ccee4;
	border-radius: 10px;
	font-size: 1.8rem;
}

/* 検索（マップ） */
.box_search .map_wrap {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
}
.box_search .map_wrap .img_map {
	width: 580px;
	border: 1px solid #cccccc;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	border-radius: 10px;
	overflow: hidden;
}
.box_search .map_wrap .img_map img {
	width: 100%;
	height: auto;
	vertical-align: top;
}
.box_search .map_wrap .box_check {
	width: calc(100% - 620px);
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}

/* 検索（選択肢） */
.box_check fieldset {
	border: none;
	margin: 0px;
	padding: 0px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: start;
	    -ms-flex-pack: start;
	        justify-content: flex-start;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 20px 40px;
}
.box_check fieldset legend {
	margin: 0px;
	padding: 0px;
}
.box_check fieldset > span {
	display: inline-block;
	vertical-align: top;
	min-width: calc(20% - 32px);
}

.map_wrap .box_check fieldset {
	gap: 20px;
}
.map_wrap .box_check fieldset > span {
	position: relative;
	min-width: auto;
	width: 100%;
}
.map_wrap .box_check fieldset > span input {
	position: absolute;
	top: 50%;
	left: 20px;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	z-index: 1;
	margin: 0px;
}
.map_wrap .box_check fieldset > span label {
	display: block;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	width: 100%;
	border: 1px solid transparent;
	border-radius: 10px;
	background: #ffffff;
	color: #333333;
	font-size: 1.8rem;
	line-height: 1.8rem;
	padding: 30px 10px 30px 40px;
	cursor: pointer;
	-webkit-transition: opacity 0.5s;
	-o-transition: opacity 0.5s;
	transition: opacity 0.5s;
}
.map_wrap .box_check fieldset > span label[for="area_1"] {
	background: #ffbebe;
}
.map_wrap .box_check fieldset > span label[for="area_2"] {
	background: #ffffbe;
}
.map_wrap .box_check fieldset > span label[for="area_3"] {
	background: #d3ffbe;
}
.map_wrap .box_check fieldset > span label[for="area_4"] {
	background: #bed2ff;
}
.map_wrap .box_check fieldset > span label[for="area_5"] {
	background: #cdb2f1;
}
.map_wrap .box_check fieldset > span label[for="area_6"] {
	background: #fdbff1;
}
.map_wrap .box_check fieldset > span label[for="area_all"] {
	border-color: #cccccc;
}
.map_wrap .box_check fieldset > span label:hover {
	opacity: 0.75;
}

/* 検索（ボタン） */
#stores_search_submit {
	margin-top: 50px;
	text-align: center;
}
button#button_stores_search_submit {
	display: inline-block;
	border: 1px solid transparent;
	background: #f7e1e9;
	background-image: -o-linear-gradient(28deg, #fbcdf1, #f7e1e9);
	background-image: linear-gradient(62deg, #fbcdf1, #f7e1e9);
	border-radius: 5px;
	color: #333333;
	font-size: 2rem;
	font-weight: bold;
	line-height: 2.8rem;
	padding: 20px 30px;
	min-width: 300px;
	text-align: center;
}
button#button_stores_search_submit:hover {
	text-decoration: underline;
}

/* ========================================
詳細
======================================== */

/* レイアウト */
#stores_search_detail {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 40px;
}

/* 画像 */
#stores_detail_gazou {
	width: 520px;
}
#gazou_box {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: start;
	    -ms-flex-align: start;
	        align-items: flex-start;
	gap: 20px;
}
#main_body #gazou_box div[class^="detail_"] {
	width: calc(50% - 10px);
	height: auto;
	aspect-ratio: 1 / 1;
	margin: 0px;
	padding: 0px;
	background: #f6f6f6;
	border-radius: 10px;
	overflow: hidden;
}
#main_body #gazou_box div[class^="detail_"]:first-child {
	width: 100%;
}
#main_body #gazou_box div[class^="detail_"] img {
	width: 100% !important;
	height: 100% !important;
	vertical-align: top;
	-o-object-fit: contain;
	   object-fit: contain;
	-o-object-position: center;
	   object-position: center;
}

#gazou_box:empty {
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	background: url("/img/sponsored-stores/dummy.png") no-repeat center center #edf6fb;
	border-radius: 10px;
}

/* 画像（拡大表示） */
#main_body #gazou_box div[class^="detail_"] img {
	cursor: pointer;
}
#main_body #gazou_box div[class^="detail_"] img:hover {
	opacity: 0.75;
}

#stores_overlay {
	display: none;
	background: rgba(0,0,0,0.8);
	color: #ffffff;
	cursor: pointer;
	position: fixed;
	left: 0;
	top: 0;
	bottom: 0;
	right: 0;
	z-index: 1000;
}
.zoom #stores_overlay {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	gap: 15px;
	padding: 15px;
}

img#stores_gazou_zoom {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	max-height: 80%;
	max-width: 100%;
}

.btn_stores_arrow {
	display: inline-block;
	vertical-align: middle;
	margin: 0px 5px;
	padding: 0px;
	width: calc(3em + 2px);
	aspect-ratio: 1 / 1;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	border: 1px solid #ccc;
	border-radius: 100%;
	background: #111111;
	color: #ffffff;
	font-size: 1.4rem;
	text-align: left;
	text-indent: -9999em;
	position: relative;
	top: -1px;
}
.btn_stores_arrow:not(:disabled):hover {
	background: #1b1b1b;
}
.btn_stores_arrow:disabled {
	opacity: 0.4;
	border-color: transparent;
	cursor: default;
}

#btn_overlay_prev {
	background-image: url("/img/sponsored-stores/arrow_r_white.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 0.5em auto;
	transform: rotate(180deg);
}
#btn_overlay_next {
	background-image: url("/img/sponsored-stores/arrow_r_white.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 0.5em auto;
}

#btn_overlay_close {
	border: 1px solid #cccccc;
	border-radius: 9999px;
	background: #111111;
	color: #ffffff;
	font-size: 1.4rem;
	line-height: 1;
	padding: 1em 2em;
	cursor: pointer;
}
#btn_overlay_close::before {
	content: '';
	display: inline-block;
	background: url("/img/sponsored-stores/btn_close_white.png") center/contain no-repeat;
	aspect-ratio: 1 / 1;
	width: 1rem;
	margin-right: 0.5em;
}
#btn_overlay_close:hover {
	background: #1b1b1b;
}

/* 店舗情報 */
#stores_detail_information {
	width: calc(100% - 560px);
}
#main_body #stores_detail_information h2 {
	margin: 0px 0px 10px;
	padding: 0px;
	background: none;
	border: none;
	font-size: 1.8rem;
}
#main_body #stores_detail_information h2::before,
#main_body #stores_detail_information h2::after {
	display: none !important;
}

#stores_detail_information dl {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	    flex-wrap: nowrap;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: stretch;
	    -ms-flex-align: stretch;
	        align-items: stretch;
	margin: 10px 0px 0px;
	padding: 0px;
}
#stores_detail_information dl dt {
	width: 150px;
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	font-size: 1.6rem;
	font-weight: bold;
	background: #ebf7fa;
	padding: 15px 10px;
	line-height: 1.5;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}
#stores_detail_information dl dd {
	width: calc(100% - 160px);
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
	padding: 15px 10px;
	background: #ebf7fa;
}

#stores_detail_information span[class*="icon_elm_"] {
	display: inline-block;
	vertical-align: top;
}
#stores_detail_information span[class*="icon_elm_"]::after {
	content: '/';
	margin-left: 5px;
	margin-right: 5px;
}
#stores_detail_information span[class*="icon_elm_"]:last-child::after {
	display: none;
}

/* 特典 */
#stores_detail_benefits {
	width: 100%;
}
#stores_detail_benefits div[class*="stores_benefits"] {
	border: 1px solid #9ccee4;
	border-radius: 10px;
	padding: 20px;
}
#stores_detail_benefits div[class*="stores_benefits"] + div[class*="stores_benefits"] {
	margin-top: 20px;
}
#main_body #stores_detail_benefits div[class^="detail_"] {
	width: auto;
	margin: 0px;
	padding: 0px;
}
#main_body #stores_detail_benefits div[class^="detail_"] + div[class^="detail_"] {
	margin-top: 10px;
}
#main_body #stores_detail_benefits h2 {
	margin: 0px 0px 20px;
	padding: 10px 20px;
	background: #dbf3f9;
	border: none;
	border-radius: 10px;
	font-size: 1.8rem;
}
#main_body #stores_detail_benefits h2::before,
#main_body #stores_detail_benefits h2::after {
	display: none !important;
}
#main_body #stores_detail_benefits h3 {
	margin: 1em 0px;
	padding: 5px 20px;
	background: #eeeeee;
	border: none;
	border-radius: 10px;
	font-size: 1.6rem;
}
#main_body #stores_detail_benefits h3::before,
#main_body #stores_detail_benefits h3::after {
	display: none !important;
}

#stores_detail_benefits div[class*="stores_benefits"] .ttl {
	display: inline-block;
	vertical-align: middle;
	margin: 0px 40px 20px 0px;
	font-size: 2rem;
	font-weight: bold;
}
#stores_detail_benefits div[class*="stores_benefits"] .knd {
	display: inline-block;
	vertical-align: middle;
	margin: 0px 0px 20px;
}
#stores_detail_benefits div[class*="stores_benefits"] .knd span[class*="icon_elm_"] {
	display: inline-block;
	background: #fbcdf1;
	font-size: 1.6rem;
	line-height: 2rem;
	padding: 5px 20px;
	border-radius: 15px;
}

/* 特典（入力のない項目は非表示にする） → プログラム側で制御 20251204 */
#stores_detail_benefits div[class*="stores_benefits"]:has(div.ttl:empty) {
	display: none;
}

/* 特典（特典が1つの場合、「特典1」の「1」を表示しない） */
#stores_detail_benefits div[class*="stores_benefits"]:only-child span.nmb {
	display: none;
}

/* 概要 */
.stores_introduction {
	width: 100%;
}
#main_body .stores_introduction h2 {
	margin-top: 0px;
}

/* 地図 */
.stores_map {
	width: 100%;
}
.stores_map iframe {
	width: 100%;
	height: 400px;
}
.stores_map:empty {
	display: none !important;
}

/* 戻りリンク */
.link_stores_search_back {
	margin: 40px 0px;
	text-align: center;
}
.link_stores_search_back a {
	display: inline-block;
	border:solid 1px #9ccee4;
	border-radius: 10px;
	background: #ffffff;
	color: #333333;
	font-size: 1.6rem;
	line-height: 1.8rem;
	text-decoration: none;
	padding:15px 60px 15px 40px;
	position:relative;
	overflow: hidden;
}
.link_stores_search_back a:after {
	content: '';
	width: 34px;
	height: 30px;
	display: block;
	background-image: url(/img/site/couplepass/common/ico-arrow.png),linear-gradient(62deg, #00a0e9, #00b0ec);
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	right: 0;
	bottom: 0;
	border-radius: 10px 0 0 0;
}


/* ==================================================
スマートフォン
================================================== */
@media screen and (max-width: 1079px) {

	/* レイアウト */
	#main_body {
		width: auto;
	}

	/* 検索注意文 */
	#stores_search_note {
		position: fixed;
		top: auto;
		bottom: 80px;
		left: 10px;
		width: calc(100% - 20px);
		-webkit-box-sizing: border-box;
		        box-sizing: border-box;
		padding: 10px;
		font-size: 1.2rem;
	}
	#stores_search_note br {
		display: none;
	}
	.sponsored_stores_search #footer {
		padding-bottom: 12rem;
	}

	/* 検索 */
	.box_check fieldset {
		gap: 15px 20px;
	}
	.box_check fieldset > span {
		min-width: calc(33% - 13px);
		font-size: 1.4rem;
	}
	@media screen and (max-width: 520px) {
		.box_check fieldset > span {
			min-width: calc(50% - 10px);
		}
	}

	.box_search .map_wrap {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
		gap: 20px;
	}
	.box_search .map_wrap .box_check {
		width: 100%;
	}
	.box_search .map_wrap .img_map {
		width: 100%;
	}
	.map_wrap .box_check fieldset {
		gap: 10px;
	}
	.map_wrap .box_check fieldset > span label {
		font-size: 1.4rem;
		padding: 15px 5px 15px 25px;
		border-radius: 5px;
	}
	.map_wrap .box_check fieldset > span input {
		left: 8px;
	}

	/* 検索ボタン */
	button#button_stores_search_submit {
		font-size: 1.6rem;
		line-height: 1.8rem;
		padding: 20px;
		min-width: 240px;
	}

	/* 検索結果 */
	.result_box {
		width: calc(50% - 10px);
	}
	@media screen and (max-width: 520px) {
		.result_box_wrap {
			-webkit-box-pack: center;
			    -ms-flex-pack: center;
			        justify-content: center;
		}
		.result_box {
			width: 100%;
			max-width: 255px;
		}
	}

	/* 詳細 */
	.content_header_wrap {
		width: auto;
	}

	#stores_search_detail {
		gap: 20px;
	}
	#stores_detail_gazou {
		width: 100%;
		max-width: 520px;
		margin-left: auto;
		margin-right: auto;
	}
	#gazou_box {
		gap: 10px;
	}
	#main_body #gazou_box div[class^="detail_"] {
		width: calc(50% - 5px);
		border-radius: 5px;
	}

	#stores_detail_information {
		width: 100%;
	}
	#main_body #stores_detail_information h2 {
		font-size: 1.6rem;
	}
	#stores_detail_information dl {
		-ms-flex-wrap: wrap;
		    flex-wrap: wrap;
	}
	#stores_detail_information dl dt {
		width: 100%;
		display: block;
		font-size: 1.4rem;
		text-align: left;
		padding: 10px 20px;
		margin-bottom: 2px;
	}
	#stores_detail_information dl dd {
		width: 100%;
		padding: 10px 20px;
	}

	/* 戻るリンク */
	.link_stores_search_back a {
		padding: 15px 40px 15px 20px;
		font-size: 1.4rem;
		-webkit-box-sizing: border-box;
		        box-sizing: border-box;
		min-width: 260px;
		text-align: center;
	}

}
/* ==================================================
スマートフォン ここまで
================================================== */