@charset "utf-8";
/* *************************************
// スタイル
************************************* */
/* PRIVACY POLCY */
.sevenmax_headline {
	margin-bottom: 2em;
	padding: 30px 15px;
	line-height: 1.4em;
	font-size: 1.75em;
	background: #1D2732;
	color: #fff;
	text-align: center;
	font-weight: bold;
	letter-spacing: 0.2em;
	position: relative;
}
.sevenmax_headline::after {
	content: "";
	position: absolute;
	top: 100%;
	left: calc(50% - 10px);
	display: block;
	border: 10px solid transparent;
	border-top-color: #1D2732;
}
section#privacy h2 {
	font-weight: bold;
	margin: 3em auto 2em;
	border-bottom: 1px solid;
	display: table;
	padding: 0.2em 1em;
}
section#privacy h3 {
	font-weight: bold;
	font-size: 18px;
	margin: 2.5em 0 1em;
}
section#privacy b {
	font-size: 15px;
	letter-spacing: 0.01em;
}
section#privacy p {
	font-size: 14px;
	letter-spacing: 0.01em;
}
section#privacy a {
	color: inherit;
}
section#privacy ol li,
section#privacy ul li {
	font-size: 14px;
	letter-spacing: 0.01em;
	padding-left: 2em;
	position: relative;
	margin-bottom: 0.3em;
}
section#privacy ul li:before {
	content: "●";
	width: 1em;
	display: block;
	position: absolute;
	left: .5em;
	top: 0;
}
section#privacy ol {
	counter-reset: item;
}
section#privacy ol li {
}
section#privacy ol > li:before {
	counter-increment: item;
	content: counter(item)'.';
	width: 1.5em;
	display: block;
	position: absolute;
	left: .5em;
	top: 0;
}
section#privacy .privacy_contact {
	border: 1px solid #ccc;
	padding: 20px;
	margin: 40px 0;
	max-width: 600px;
}
section#privacy .privacy_contact h4 {
	margin: 0 0 1em;
}
section#privacy .privacy_contact p {
	font-size: 18px;
	margin: 0;
}
.privacy_link {
	text-align: center;
	display: block;
	font-size: 80%;
	margin: 0 auto 1em;
	color: inherit;
	font-weight: normal;
}
section#privacy table {
	width: 100%;
	border-top: 1px solid #ddd;
	border-left: 1px solid #ddd;
	margin: 1em 0;
}
section#privacy table th,
section#privacy table td {
	border-bottom: 1px solid #ddd;
	border-right: 1px solid #ddd;
	font-size: 14px;
	padding: 15px;
}
section#privacy table thead th {
	background: #f1f1f1;
	text-align: center;
}
section#privacy table th {
	white-space: nowrap;
}
section#privacy table td dl {
	display: flex;
	flex-wrap: wrap;
}
section#privacy table td dl dt {
	width: 90px;
	position: relative;
	padding-right: 1em;
}
section#privacy table td dl dt:after {
	content: " : ";
	position: absolute;
	right: 0;
	margin: 0 0.5em;
}
section#privacy table td dl dd {
	width: calc(100% - 90px);
}

span.tbd {
	background: #ffbdbd;
}
span.chg {
	background: #fdf7a0;
}
span.add {
	/* color: #00f; */
}
span.dell {
	text-decoration: line-through;
	color: #888;
}
.third_party_btn {
	cursor: pointer;
}
#third_party_wrap {
	position: fixed;
	z-index: 99;
	top: 0;
	left: 0;
	/* display: none; */
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0, 0.8);
	visibility: hidden;
	opacity: 0;
	transition: all .3s ease-out;
}
#third_party_wrap.show {
	visibility: visible;
	opacity: 1;
}
#third_party_wrap .third_party_inner {
	width: fit-content;
	height: fit-content;
	padding: 2em 3em;
	border: double;
	background: #fff;
	position: relative;
}
#third_party_wrap .third_party_inner:before,
#third_party_wrap .third_party_inner:after {
	content: "";
	position: absolute;
	top: 10px;
	right: 5px;
	display: block;
	width: 15px;
	height: 2px;
	background: #000;
}
#third_party_wrap .third_party_inner:before {
	transform: rotate(45deg);
}
#third_party_wrap .third_party_inner:after {
	transform: rotate(-45deg);
}
section#privacy #third_party_wrap h2 {
	margin: 0;
}
section#privacy #third_party_wrap h3 {
	margin-top: 1.5em;
}
/* フッター */
footer {
	text-align: center;
	background-color: #1D2732;
	color: #FFF;
	padding: 0.75em 0 2em;
	font-size: min(12px,3vw);
	padding-bottom: 100px;
}
footer a {
	color: #FFF;
}
/* recaptcha */
.grecaptcha-badge {
	visibility: hidden;
}
/* トップページ店舗一覧 */
#sevenmax_top_shoplist .all_shop_list ul {
	display:flex;
	flex-wrap:wrap;
}
#sevenmax_top_shoplist .all_shop_list ul li {
	width: calc(50% - 20px);
	border: 3px solid #2e9e5d;
	border-radius: 12px;
	margin: 10px;
	overflow:hidden;
}
#sevenmax_top_shoplist .all_shop_list ul li a {
	color: #000;
	text-decoration: none;
	position: relative;
	display: block;
	transition: all 0.3s;
	padding: 20px;
}
#sevenmax_top_shoplist .all_shop_list ul li a:hover {
	transition: all 0.3s;
	background:#d6ead6;
}
#sevenmax_top_shoplist .all_shop_list ul li a:after {
	content: "\f591";
	font-family: 'Material Symbols Outlined';
	position: absolute;
	right: 1em;
	color: #2e9e5d;
	top: 50%;
	transform: translateY(-50%);
}
#sevenmax_top_shoplist .all_shop_list ul li a .shop_name {
	font-size:20px;
	font-weight:bold;
}
#sevenmax_top_shoplist .all_shop_list ul li a .company_name {
	color:#999;
	display: inline-block;
}
#sevenmax_top_shoplist .all_shop_list ul li a .shop_address {
	color:#999;
	display: inline-block;
}
@media (max-width: 767px) {
	#sevenmax_top_shoplist .all_shop_list ul li {
		width: calc(100% - 20px);
	}
}
