@charset "utf-8";
/*--------------------------------
 * 2022追加分
--------------------------------*/

/*--------------------------------
 * フォームボタンスタイルリセット
--------------------------------*/
button[name="reset"],
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
button[name="reset"]::-webkit-search-decoration,
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

/*--------------------------------
 * よくある質問
--------------------------------*/
@media screen and (max-width: 767px) {
	#faq {
		padding: 0 15px;
	}
}
#faq h1 {
	margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
	#faq h1 {
		font-size: 18px;
	}
}

/*------ キーワード検索 -------*/
.p-search-faq {
	padding: 30px;
	background-color: #aaaaaa;
	font-size: 16px;
}
@media screen and (max-width: 767px) {
	.p-search-faq {
		padding: 15px;
		font-size: 14px;
	}
}

#faq.is-result .p-search-faq {
	margin-top: 40px;
}

.p-search-faq form {
	margin: 30px auto;
	padding: 2px;
	width: 550px;
	max-width: 100%;
	background-color: #fff;
	border: solid 2px #ccc;
	display: flex;
	align-items: center;
	font-size: inherit;
	box-sizing: border-box;
}
@media screen and (max-width: 767px) {
	.p-search-faq form {
		margin: 15px auto;
	}
}

.p-search-faq form::before {
	padding: 3px;
	font-family: "Font Awesome 5 Free";
	content: '\f002';
	font-weight: 900;
	font-size: 16px;
	color: #ccc;
}

/*------ 入力エリア -------*/
.p-search-faq form input[type="text"] {
	padding: 3px 5px;
	flex: 1;
	appearance: none;
	border: none;
	font-size: inherit;
}

/*------ 送信ボタン -------*/
.p-search-faq form input[type="submit"] {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
	line-height: 1;
}
.p-search-faq form input[type="submit"]::-webkit-search-decoration {
	display: none;
}
.p-search-faq form input[type="submit"]:focus {
	outline-offset: -2px;
}

.p-search-faq form input[type="submit"] {
	margin-left: 4px;
	padding: 7px 10px;
	border-radius: 3px;
	font-size: inherit;
	color: #fff;
	background-color: #333333;
	transition: .3s;
}
.p-search-faq form input[type="submit"]:focus,
.p-search-faq form input[type="submit"]:hover {
	opacity: .8;
}
.p-search-faq__desc {
	font-size: 1.125em;
}

/*------ タームリンクボタン -------*/
.c-term-btn__unit {
	padding: 15px 30px;
	background-color: #F5F5F5;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
@media screen and (max-width: 767px) {
	.c-term-btn__unit {
		padding: 15px;
		grid-template-columns: 100%;
	}
}

.c-term-btn {
	padding: 20px;
	background-color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: 14px;
	border-radius: 10px;
	box-shadow: 5px 5px 5px rgba(0,0,0,.1);
	transition: .3s;
}

.c-term-btn.c-term-btn--small {
	font-size: 12px;
}

.c-term-btn::after {
	font-family: "Font Awesome 5 Free";
	content: '\f105';
	font-weight: 900;
	font-size: 14px;
}

/*------ FAQブロック -------*/
.p-faq {
	margin-top: 40px;
	box-shadow: 5px 5px 5px rgba(0,0,0,.1);
	border: 1px solid;
	border-color: #F5F5F5;
	border-radius: 10px;
	overflow: hidden;
}

.c-faq-ttl {
	padding: 20px 30px;
	font-size: 16px;
	color: #fff;
	background-color: #aaaaaa;
	border: 1px solid;
	border-color: transparent;
}
@media screen and (max-width: 767px) {
	.c-faq-ttl {
		padding: 20px 10px;
		font-size: 14px;
	}
}

.c-faq-ttl__num {
	font-size: 1.3em;
	font-weight: bold;
}

.c-faq-post__ttl,
.c-faq-post__cont {
	padding: 20px 30px;
	font-size: 16px;
	border-bottom: 1px solid;
	border-color: #CFD8DC;
	line-height: 1.5;
}
@media screen and (max-width: 767px) {
	.c-faq-post__ttl,
	.c-faq-post__cont {
		padding: 20px 10px;
		font-size: 14px;
	}
}

.c-faq-post:last-child .c-faq-post__ttl {
	border-bottom: none;
}

.c-faq-post:last-child .c-faq-post__cont {
	border-top: 1px solid;
	border-color: #CFD8DC;
}

.c-faq-post__ttl {
	display: flex;
	align-items: center;
	justify-content: space-between;
	cursor: pointer;
}

.c-faq-post__ttl::after {
	margin-left: 1em;
	width: 1.5em;
	text-align: center;
	font-family: "Font Awesome 5 Free";
	content: '\f067';
	font-weight: 900;
	font-size: 1em;
	color: #E60012;
	transition: .3s;
	line-height: inherit;
}

.c-faq-post__ttl.is-open::after {
	transform: rotate(315deg);
}

.c-faq-post__cont {
	background-color: #F6DADC;
	display: none;
}

.c-faq-post__cont a {
	color: #FF6600;
	transition: .3s;
}

.c-faq-post__cont a:focus,
.c-faq-post__cont a:hover {
	opacity: .8;
}

.c-faq-post:last-child .c-faq-post__cont {
	border-bottom-width: 0;
}

/*--------------------------------
 * 販売店
--------------------------------*/
:root {
	--bg-color: #fff;
	--bg-sub-color: #ebe8e1;
	--border-color: #d4d2cd;
	--border-sub-color: #999;
	--bg-form-color: #eaebea;
	--hover-color: #FF6600;
}
/* フォーム */
.l-store-form {
	background: var(--bg-form-color);
	padding: 30px 50px;
	padding-top: 20px;
}
.store-form {
	/* padding-top: 20px; */
}

/* フォームボタンデフォルト */
.c-btn {
	display: inline-block;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.5);
    line-height: 1;
    box-sizing: border-box;
    font-weight: 300;
    transition: all 0.25s linear;
}
.c-btn:hover,
.c-btn:active {
	background: var(--hover-color);
    color: #fff;
    border: 1px solid rgba(0, 0, 0, 0);
    box-sizing: border-box;
    font-weight: 200;
}
.c-btn.c-btn--search {
	width: 160px;
	padding: 15px;
	border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.5);
	background: var(--hover-color);
	color: #FFF;
}
.c-btn.c-btn--search:hover {
	opacity: .7;
}
.c-btn.c-btn--clear {
	width: 120px;
	padding: 15px;
	border-radius: 50px;
	border: 1px solid rgba(0, 0, 0, 0.5);
	color: #333;
}
/* フォームセレクトボタン */
.l-selectbox {
	display: block;
	margin: 20px auto;
	position: relative;
	padding: 17px 40px;
	height: 52px;
	width: 240px;
	font-size: 16px;
	cursor: pointer;
	font-weight: 200;
}
select option:disabled {
	color: #afafaf;
}
.store-form select {
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
	border: none;
	outline: none;  
	position: absolute;
    top: -1px;
    left: -1px;
    padding-left: 50px;
    height: 52px;
    width: 240px;
    background: none;
    font-size: 16px;
    font-weight: 200;
    line-height: 1;
    cursor: pointer;
	transition: .25s;
	border-radius: 50px;
	color: #333;
}
.l-selectbox::after {
	content: "";
	position: absolute;
	right: 25px;
	top: 50%;
	transition: all 0.25s ease-in-out;
	display: block;
	width: 6px;
	height: 6px;
	border-top: solid 1px #333;
	border-right: solid 1px #333;
	transform: translateY(-50%) rotate(135deg);
}
/* .l-selectbox:hover::after {
	border-color: #fff;
}
.store-form select:hover,
.store-form select:active {
	color: #fff;
} */
.p-form-bottom {
	display: flex;
	justify-content: center;
	gap: 20px;
	margin-top: 30px;
}
/* チェックボックス */
.l-chechBox-wrapper {
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}
.p-chackBoxItem {
	/* background: #fff; */
	position: relative;
}
.p-chackBoxItem + .p-chackBoxItem {
	border-top: 1px solid var(--border-color);
}
.p-chackBoxItem .acc-head {
	display: flex;
	gap: 20px;
	align-items: center;
	font-weight: bold;
}
.p-chackBoxItem .acc-head a {
	/* pointer-events: none; */
}
.p-chackBoxItem .acc-foot {
	display: none;
	padding-top: 15px;
	line-height: 1.8;
}
.p-chackBoxItem .acc-foot img {
	display: inline-block;
	vertical-align: sub;
	height: 20px;
	line-height: 1.8;
	margin: 0 5px;
}
.p-chackBoxItem .acc-foot span a {
	/* pointer-events: none; */
}
.p-chackBoxItem input {
	position: absolute;
	top: 32px;
	left: 10px;
	/* transform: translateY(-50%); */
	z-index: 2;
	width: 20px;
	height: 20px;
}
.p-chackBoxItem .p-chackBoxItem__inner {
	padding: 30px 50px;
	cursor: pointer;
	position: relative;
	transition: .25s;
}
.p-chackBoxItem .p-chackBoxItem__inner:hover .acc-head,
.p-chackBoxItem .p-chackBoxItem__inner:active .acc-head {
	color: var(--hover-color);
}
.p-chackBoxItem .p-chackBoxItem__inner:after {
	content: "";
	position: absolute;
	right: 25px;
	top: 37px;
	transition: all 0.25s ease-in-out;
	display: block;
	width: 8px;
	height: 8px;
	border-top: solid 2px var(--border-sub-color);
	border-right: solid 2px var(--border-sub-color);
	transform: rotate(135deg);
}
.p-chackBoxItem .p-chackBoxItem__inner.is-open::after {
	transform: rotate(-45deg);
}


/* 販売店レイアウト */
#stores h1 {
	width: unset;
	margin-bottom: unset;
}
#stores .first-txt {
	border-bottom: 1px solid var(--border-color);
	padding-bottom: 20px;
}
.l-stores {
	background: var(--bg-color);
}
.l-stores > .__inner {
	max-width: 1000px;
	width: 100%;
	margin: 0px auto;
	padding: 100px 0;
}
.c-pre-icon {
	/* padding: 0px 20px; */
    /* align-items: center; */
	/* gap: 5px; */
	display: flex;
    border-top: 1px solid var(--border-color);
    background: #fff;
	cursor: default;
	font-size: 0.75rem;
}
.c-pre-icon-pre {
	display: flex;
	gap: 5px;
	align-items: stretch;
}

.toggleImg {
	width: 28px;
	max-height: 28px;
	max-width: 28px;
	object-fit: contain;
}

.c-pre-icon > div {
	border-right: 1px solid var(--border-color);
	padding: 18px 15px;
}
.c-pre-icon > div:last-of-type {
	border-right: unset;
}
.c-pre-icon__item img {
	width: 28px;
	max-width: 28px;
	max-height: 28px;
	object-fit: contain;
}
.c-pre-icon__item.is-inactive img {
	filter: grayscale(100%);
	opacity: .6;
}
.c-pre-icon .c-store-name {
	flex: 25%;
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
}
.c-pre-icon .c-store-name p {
	line-height: 1.4;
}

.c-pre-icon .c-store-name a {
	display: inline-block;
    background-color: #555555;
    color: #fff;
    font-size: 10px;
    width: 35px;
    height: 15px;
    text-align: center;
    border-radius: 20px;
    margin-left: 5px;
    padding-top: 2px;
	transition: .25s;
}
.c-pre-icon .c-store-name a:hover,
.c-pre-icon .c-store-name a:active {
	background-color: var(--hover-color);
}
.c-pre-icon .c-icon {
	/* width: 12.5%; */
	display: flex;
	flex: 1;
	gap: 3px;
	align-items: center;
}
.c-pre-icon .c-icon a {
	/* pointer-events: none; */
	width: 28px;
}
.c-pre-icon .c-icon a img {
	/* pointer-events: none; */
	width: 28px;
}
.c-pre-icon .c-address {
	width: 52.5%;
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
}
.c-pre-icon .c-address p {
	line-height: 1.4;
}
.c-pre-icon .c-address a {
	display: inline-block;
    background-color: #555555;
    color: #fff;
    font-size: 10px;
    width: 35px;
    height: 15px;
    text-align: center;
    border-radius: 20px;
    margin-left: 5px;
	padding-top: 2px;
	transition: .25s;
}
.c-pre-icon .c-address a:hover,
.c-pre-icon .c-address a:active {
	background-color: var(--hover-color);
}
.c-pre-icon .c-tel {
	/* width: 10%; */
	width: 100px;
	white-space: nowrap;
	display: flex;
	align-items: center;
	justify-content: center;
}

.p-anythingpopup {
	position: absolute;
	top: -99999px;
}

/*--------------------------------
 * 販売店アコーディオン
--------------------------------*/
.p-area h3.__ttl,
.c-prefecture {
	cursor: pointer;
}
.c-prefecture {
	display: none;
}
.c-prefecture > .__inner {
	display: none;
	cursor: unset;
}
.c-prefecture {
	border: 1px solid var(--border-color);
	margin-bottom: -1px;
}
.c-prefecture:last-of-type {
	margin-bottom: 32px;
}
.c-prefecture .__ttl {
	padding: 15px 0;
	font-size: 1rem;
	background: var(--bg-sub-color);
	text-align: center;
	display: flex;
	align-items: center;
	gap: 15px;
	justify-content: center;
	position: relative;
}
.c-prefecture .__ttl .c-prefecture__ttl {
	width: 70px;
	text-align: right;
}
.c-prefecture .__ttl::after{
	content: "";
	position: absolute;
	right: 25px;
	top: 50%;
	transition: all 0.25s ease-in-out;
	display: block;
	width: 8px;
	height: 8px;
	border-top: solid 2px var(--border-sub-color);
	border-right: solid 2px var(--border-sub-color);
	transform: translateY(-50%) rotate(135deg);
}
.c-prefecture .__ttl.is-open::after {
	transform: translateY(-50%) rotate(-45deg);
}

.p-area {
	/* border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color); */
	margin-top: -1px;
}

.p-area h3.__ttl {
	padding: 20px 0;
	font-size: 1.25rem;
	background: var(--bg-color);
	position: relative;
	line-height: 1.6;
	transition: .25s;
	border-top: 1px solid var(--border-color);
	border-bottom: 1px solid var(--border-color);
}
.p-area h3.__ttl:hover,
.p-area h3.__ttl:active {
	color: var(--hover-color);
}
.p-area .__ttl::after{
	content: "";
	position: absolute;
	right: 25px;
	top: 50%;
	transition: all 0.25s ease-in-out;
	display: block;
	width: 8px;
	height: 8px;
	border-top: solid 2px var(--border-sub-color);
	border-right: solid 2px var(--border-sub-color);
	transform: translateY(-50%) rotate(135deg);
}
.p-area .__ttl.is-open::after {
	transform: translateY(-50%) rotate(-45deg);
}
.p-area .c-prefecture:first-of-type {
	border-top: unset;
}

.c-store-none {
	background: var(--bg-sub-color);
	font-size: 1.25rem;
	padding: 30px 0;
	text-align: center;
	opacity: .7;
}
.sm-blank {
	display: none;
}
/*▼スマホ用CSS▼*/
@media screen and (max-width: 767px) {
	#stores {
		padding: 0 15px;
	}
	.l-stores > .__inner {
		padding: 30px 0;
	}
	.l-store-form {
		padding: 20px 10px;
		padding-bottom: 30px;
	}
	.c-pre-icon {
		display: block;
		border: 1px solid var(--border-color);
		background: #fff;
		cursor: default;
		font-size: 0.75rem;
		padding: unset;
		margin-bottom: 20px;
	}
	.c-pre-icon:first-of-type {
		border-top: unset;
	}
	.c-pre-icon > div {
		border-right: unset;
		padding: 10px;
		border-top: 1px solid var(--border-color);
	}
	.c-pre-icon > div:first-of-type {
		border-top: none;
	}
	.c-pre-icon > div:last-of-type {
		/* border-right: unset; */
	}
	.c-pre-icon .c-store-name {
		flex: unset;
		display: block;
		align-items: center;
		flex-wrap: wrap;
	}
	.c-pre-icon .c-store-name a {
		height: 15px;
		padding-top: 2px;
	}
	.c-pre-icon .c-icon {
		width: unset;
		display: flex;
		flex: 1;
		gap: 3px;
		align-items: center;
		padding: 5px 10px;
	}
	.c-pre-icon .c-address {
		width: unset;
		display: block;
		align-items: center;
		flex-wrap: wrap;
	}
	.c-pre-icon .c-address a {
		height: 15px;
		padding-top: 2px;
	}
	.c-pre-icon .c-tel {
		width: unset;
		white-space: nowrap;
		display: flex;
		align-items: unset;
		justify-content: unset;
	}

	.c-prefecture {
		border: unset;
		margin-top: -1px;
	}
	.c-prefecture .__ttl {
		border: 1px solid var(--border-color);
	}

	.p-chackBoxItem .acc-foot {
		line-height: 1.2;
	}
	
}

@media screen and (max-width: 425px) {
	.sm-blank {
		display: block;
	}

}
/*▲スマホ用CSS▲*/

/* オンラインショップ */
.c-prefecture.--online {
	border-width: 0!important;
}

.p-list-online__unit {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	column-gap: 6%;
	row-gap: 40px;
	padding: 40px 2%;
	background-color: var(--bg-sub-color);
}

.p-list-online {
	position: relative;
	display: block;
}

.p-list-online__logo {
	display: block;
	width: 100%;
	height: auto;
}

.p-list-online__logo > img {
	margin-left: auto;
	margin-right: auto;
	width: auto;
	max-width: 100%;
	height: auto;
	display: block;
}

.p-list-online__logo:hover {
	opacity: .8;
}

.p-list-online__logo:hover + .p-list-online__title {
	color: var(--hover-color)!important;
}

.p-list-online__title {
	display: block;
	margin-top: 0.5em;
	margin-left: auto;
	margin-right: auto;
	width: fit-content;
}

@media screen and (max-width: 767px) {
	.p-list-online__unit {
		grid-template-columns: repeat(2, 1fr);
		column-gap: 10px;
		row-gap: 20px;
		padding: 20px 10px;
	}
}

/*--------------------------------
 * 2022.06 イージーメイト > 検索ボックス
--------------------------------*/
/* #feas-searchform-0{
	display:none;
} */

.friend-search-box {
	padding: 2.5%;
}

.friend-search-box__row:not(:first-child) {
	margin-top: 1.5em;
}

.friend-search-box__row.--center {
	text-align: center;
}

.friend-search-box__heading {
	margin-bottom: .5em;
	display: block;
	font-weight: bold;
	color: #777;
}

.friend-search-box__attention {
	padding-left: 1em;
	font-size: 10px;
	color: red;
	font-weight: 500;
}

.friend-search-box__row > label {
	margin-right: .25em;
	margin-top: .25em;
	display: inline-flex;
	align-items: center;
}

.friend-search-box input[type="submit"] {
	margin: 0;
	width: 300px;
	max-width: 100%;
	transition: .3s;
}

.friend-search-box input[type="submit"]:hover {
	opacity: .6;
}

.friend-txt-small {
	margin-top: .25em;
}

#feas-searchform-0 .friend-search-box__col > select {
	margin-left: 0;
	margin-right: 0;
	width: 100%!important;
}

.friend-search-box__col.--item {
	display: none;
}

/*▼デスクトップ用CSS▼*/
@media screen and (min-width: 768px) {
	.friend-search-box__row.--horiz,
	.friend-search-box__row.--horiz {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		column-gap: 3%;
		row-gap: 1em;
	}
	.friend-search-box__col {
		width: 30%;
	}
	.friend-txt-small {
		text-align: center;
	}
}
/*▲デスクトップ用CSS▲*/
/*▼モバイル用CSS▼*/
@media screen and (max-width: 767px) {
	.friend-search-box {
		padding: 10px 15px;
	}
	#feas-searchform-0 span.friend-search-box__heading {
		display: block;
		margin: 0 0 .25em;
	}
	.friend-search-box__col:not(:first-child) {
		margin-top: 1.5em;
	}
}
/*▲モバイル用CSS▲*/
