@charset "UTF-8";
/*----------------------------------------------
 reset styles
----------------------------------------------*/
body, iframe, p, blockquote, pre, dl, dd, ol, ul, fieldset, legend, figure, menu {
  margin: 0;
  padding: 0;
  border: 0;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-size: inherit;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
*, *::before, *::after {
  box-sizing: border-box;
}
nav ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
img, svg {
  vertical-align: bottom;
  max-width: 100%;
}
img {
  height: auto;
}
input, button, select, textarea {
  font: inherit;
  color: inherit;
}
button, select {
  cursor: pointer;
}
:disabled {
  cursor: not-allowed;
}
[hidden]:not([hidden="until-found"]) {
  display: none !important;
}
:focus-visible {
  outline-offset: 1px;
  outline: 2px solid var(--mainColor, currentColor);
}

/*----------------------------------------------
 formatting styles
----------------------------------------------*/
:root {
	--baseCol: #000000;
	--red: #C21230;
	--light-red: #FFF5F5;
	--yellow: #ffbd2f;
	--orange: #feb300;
	--gray: #908F8F;
	--borderGray: #DFDFDF;
	--normal: #F6F3F0;
	--grade-bronze: linear-gradient(90deg, rgba(66, 19, 20, 1) 0%, rgba(111, 75, 38, 1) 10%, rgba(177, 149, 79, 1) 40%, rgba(234, 220, 186, 1) 60%, rgba(163, 131, 88, 1) 80%, rgba(141, 84, 41, 1) 100%);
	--grade-gold: linear-gradient(90deg, rgba(250, 206, 0, 1) 0%, rgba(255, 251, 208, 1) 15%, rgba(202, 154, 12, 1) 60%, rgba(242, 224, 139, 1) 85%, rgba(255, 251, 208, 1) 100%);
	--grade-platinum: linear-gradient(90deg,rgba(215, 218, 227, 1) 0%, rgba(253, 244, 248, 1) 50%, rgba(190, 140, 117, 1) 100%);
	--grade-black: linear-gradient(90deg,rgba(50, 45, 57, 1) 0%, rgba(46, 41, 44, 1) 15%, rgba(56, 70, 63, 1) 50%, rgba(75, 77, 96, 1) 65%, rgba(26, 35, 27, 1) 80%, rgba(47, 40, 59, 1) 100%);
	--header-h: 60px;
	--adj-width: calc(100% - 40px);
}
html {
	font-size: 62.5%;
	box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  font-family: "Lato", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.5rem;
	color: var(--baseCol);
	overflow-y: auto;
	-webkit-text-size-adjust: 100%;
	text-size-adjust: 100%;
	display: flow-root;
}
a {
  color: inherit;
	text-decoration: none;
  transition-duration: 0.3s;
}
ul {
  list-style: none;
}
em {
  font-style: normal;
	font-weight: bold;
}
.mincho {
  font-family: 'Noto Serif JP', serif;
}
.hidden {
	display: none;
}
.colRed {
	color: var(--red);
}

/* ----------------------------------------------
common styles
----------------------------------------------*/
main {
	position: relative;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding-bottom: 70px;
}
/* フッターなし */
main.noFooter {
  padding-bottom: 0;
}
/* ヘッダーもフッターもなし */
main.fullScreen {
  padding-bottom: 0;
  justify-content: center;
  align-items: center;
}
main.bgAllRed {
	background-color: var(--red);
}

header {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: var(--header-h);
	position: relative;
	background-color: var(--red);
}
header .newsLink {
	width: 75px;
	height: var(--header-h);
	display: grid;
	place-items: center;
	position: absolute;
	top: 0;
	left: 0;
}
header .newsLink img {
	width: 55px;
	height: auto;
}
header .logo img {
	height: 54px;
	width: auto;
}

.menuBtn {
  position: fixed;
	top: 0;
	right: 0;
  width: 60px;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
	border: none;
	background-color: var(--red);
	z-index: 300;
}
/* ハンバーガーの線 */
.menuBtn span,
.menuBtn::before,
.menuBtn::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.menuBtn span {
  top: 50%;/* 中央の線 */
  transform: translate(-50%, -50%);
}
.menuBtn::before {
  top: calc(50% - 12px);
}
.menuBtn::after {
  top: calc(50% + 10px);
  bottom: auto;
}
.open .menuBtn {
	background-color: #fff;
}
.open .menuBtn span {
	background-color: transparent;
}
.open .menuBtn::before,
.open .menuBtn::after {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 24px;
	height: 2px;
	background-color: #000;
	transform: translate(-50%, -50%) rotate(45deg);
}
.open .menuBtn::after {
	transform: translate(-50%, -50%) rotate(-45deg);
}

nav {
	background-color: #fff;
	position: fixed;
	width: 100%;
	height: 100dvh;
  overflow-y: auto;
	top: 0;
	left: 0;
	z-index: 200;
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	padding-bottom: 50px;
}
header.open ~ nav {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}
nav .navHd {
	display: grid;
	place-items: center;
	height: 65px;
	font-size: 1.8rem;
	font-weight: bold;
	border-bottom: 5px solid #ccc;
}
nav .navBd {
	border-top: 1px solid var(--gray);
}
nav .navBd p a,
nav .navBd p button {
	display: flex;
	width: 100%;
	align-items: center;
	height: 50px;
	color: var(--gray);
	background-color: transparent;
	border: none;
	border-bottom: 1px solid var(--gray);
	position: relative;
	font-size: 1.6rem;
}
nav .navBd .noIcon a,
nav .navBd .noIcon button {
	padding-left: 60px;
}
nav .navBd p a span.icon {
	width: 60px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
nav .navBd p a span.icon img {
	width: auto;
	max-width: 30px;
	height: 24px;
}
nav .navBd p.midashi {
	width: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	background-color: #ccc;
	padding-left: 20px;
	border-bottom: 1px solid var(--gray);
}

footer {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 70px;
	background: #000;
	z-index: 100;
	box-shadow: 0 -5px 10px rgba(0, 0, 0, .6);
}
footer ul {
	display: flex;
	align-items: stretch;
	height: 100%;
	margin: 0;
	padding: 0;
	list-style: none;
}
footer ul li {
	flex: 1;
	position: relative;
}
footer ul li a {
	display: flex;
	justify-content: center;
	align-items: flex-end;
	width: 100%;
	height: 100%;
	padding-bottom: 10px;
	color: #fff;
	text-decoration: none;
	font-size: 1.1rem;
}
footer ul li.coupon {
	margin: 0 5px;
}
footer ul li.coupon a {
	position: absolute;
	left: 50%;
	top: 0;
	transform: translate(-50%, -40%);
	width: 100px;
	height: 100px;
	padding: 0;
}
footer ul li.coupon img {
	display: block;
	width: 100%;
	height: auto;
}
footer ul li.home a {
	background: url("../img/foot-icon-home.svg") no-repeat center 10px;
	background-size: 30px auto;
}
footer ul li.member a {
	background: url("../img/foot-icon-member.svg") no-repeat center 15px;
	background-size: 33px auto;
}
footer ul li.delivery a {
	background: url("../img/foot-icon-delivery.svg") no-repeat center 15px;
	background-size: 38px auto;
}
footer ul li.shop a {
	background: url("../img/foot-icon-shop.svg") no-repeat center 10px;
	background-size: 30px auto;
}

h1 {
	font-size: 2.0rem;
	line-height: 1.3;
	text-align: center;
	padding: 20px;
	background-color: #fff;
}
.text {
	line-height: 1.7;
}
.contentArea {
	background-color: #fff;
  padding: 0 20px 60px;
  flex: 1;
}
.formArea {
  background-color: #fff;
  padding-inline: 20px;
	padding-bottom: 20px;
  flex: 1;
}
.formArea .info {
	line-height: 1.6;
	margin-bottom: 20px;
}
.formItem {
	margin: auto auto 10px;
}
.formListArea .formItem {
	padding-inline: 20px;
}
.labelWr {
	display: flex;
	flex-wrap: wrap;
	gap: 20px; /* ラベル同士の間隔 */
	width: 100%;
  max-width: 100%;
	overflow-x: hidden;
}
.formListArea {
  background-color: #fff;
	padding-inline: 0;
	padding-bottom: 20px;
  flex: 1;
}
.noFooter .formListArea {
	padding-bottom: 0;
}
.formListArea .info {
	line-height: 1.6;
	padding-inline: 20px;
	margin-bottom: 20px;
}
.formListArea .btnWr {
	padding-inline: 20px;
}
.formList dt {
	font-weight: bold;
	background-color: #eee;
	padding: 10px 20px;
	position: relative;
}
.formList dt span.hissu {
	display: block;
	color: #fff;
	background-color: var(--red);
	width: 35px;
	padding: 3px;
	font-size: 1.1rem;
	text-align: center;
	border-radius: 2px;
	position: absolute;
	right: 20px;
	top: 8px;
}
.formList dd {
	padding: 10px 20px 20px;
}
.formArea .attention,
.formListArea .attention {
	font-size: 1.4rem;
	line-height: 1.5;
	border-radius: 4px;
	text-indent: -1em;
	padding: 10px 15px 10px calc(15px + 1em);
	border: 2px solid var(--red);
	color: var(--red);
	background: var(--light-red);
	margin: 30px auto;
}
.formListArea .attention {
	margin: 30px 20px;
}
.birthDate {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}
.birthDate select {
	width: auto;
}
.birthDate select:first-of-type {
	min-width: 6em;
}
.completeText {
	line-height: 1.8;
	text-align: center;
	margin: 1em auto 2em;
}
.completeText span {
	display: inline-block;
}
.infoText {
	font-weight: bold;
	line-height: 1.8;
	color: var(--red);
	margin: 1em auto 2em;
}
.addressBox {
	padding: 15px;
	border: 2px solid var(--red);
	border-radius: 10px;
	text-align: center;
	margin-top: 30px;
}
.addressBox .address {
	font-size: 1.7rem;
	font-weight: bold;
	overflow-wrap: anywhere;
	margin-top: 10px;
}
.completeMark {
	display: grid;
	place-items: center;
	margin: 30px auto;
}
.completeMark img {
	width: 80px;
}
.modalParts {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  inset: 0; /* top:0; right:0; bottom:0; left:0; の shorthand */
  z-index: 300;
}
.modalParts.hidden {
	display: none;
}
.copyModal {
	width: 160px;
	height: 60px;
	color: #fff;
	background-color: rgba(0, 0, 0, 0.8);
	display: grid;
	place-items: center;
	border-radius: 10px;
}
.modalContent {
  background: #fff;
  border-radius: 8px;
  padding: 30px 20px;
  width: 320px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 30px;
	position: relative;
}
.modalContent p {
	line-height: 1.8;
}
.modalContent .modalCloseButton {
	display: grid;
	place-items: center;
	height: 50px;
	width: 150px;
	margin: auto;
	border-radius: 5px;
	font-size: 1.6rem;
	font-weight: bold;
	cursor: pointer;
	color: #000;
	background-color: #ccc;
	border: none;
}

/* ----------------------------------------------
form styles
----------------------------------------------*/
::placeholder {
  color: #acacac;
}
input,
textarea,
select {
	font-family: "Lato", "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	font-size: 1.6rem;
	outline: none;
	appearance: none;
	color: inherit;
}
input {
	width: 100%;
	height: 50px;
	border-radius: 4px;
	padding-inline: 15px;
	border: 1px solid var(--gray);
}
textarea {
	width: 100%;
	height: 150px;
	border-radius: 4px;
	padding: 15px;
	border: 1px solid var(--gray);
}
select {
	background: #fff url("../img/select-arrow.svg") no-repeat calc(100% - 10px) center;
	background-size: 14px auto;
	padding: 0 32px 0 10px;
	border-radius: 4px;
	width: 100%;
	height: 50px;
	border: 1px solid var(--gray);
}
input:focus,
textarea:focus,
select:focus {
	border-color: #000;
	box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.15);
}

.passwordInput {
	position: relative;
}
.passwordInput > input {
	padding-right: 40px;
}
.passwordInput .togglePassword {
  position: absolute;
  top: 17px;
  right: 10px;
  width: 26px;
  height: 20px;
	background: url("../img/icon-eye.svg") no-repeat;
  cursor: pointer;
	z-index: 10;
	filter: brightness(0) saturate(100%) invert(98%) sepia(1%) saturate(462%) hue-rotate(336deg) brightness(82%) contrast(98%);
	border: none;
}
.passwordInput.on .togglePassword {
	background: url("../img/icon-eye-on.svg") no-repeat;
}

/* チェックボックス */
.checkbox {
  display: flex;
  align-items: flex-start; /* テキストの上端に揃える */
  line-height: 1.5;
  margin-bottom: 20px;
}
.checkbox input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  appearance: none;
  -webkit-appearance: none;
}
.checkbox .box {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #ccc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0; /* テキストに引っ張られない */
  margin-right: 8px;
	transition-duration: 0.3s;
}
.checkbox input + .box::after {
  content: "";
  width: 14px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.checkbox input:checked + .box {
  background-color: #000;
}
.checkbox input:checked + .box::after {
  content: "";
  width: 14px;
  height: 6px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}
.checkbox .txt {
	line-height: 1.5;
}
.checkbox .txt a {
	margin: 0 0.5em;
	text-decoration: underline;
	display: inline-block;
}

/* ラジオボタン */
.radiobox {
  display: flex;
  align-items: flex-start;
  line-height: 1.5;
  margin-bottom: 10px;
  cursor: pointer;
}
.radiobox input {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  appearance: none;
  -webkit-appearance: none;
}
.radiobox .box {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #b1b0b0;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  flex-shrink: 0;
  transition-duration: 0.3s;
  box-sizing: border-box;
}
.radiobox input:checked + .box {
  border-color: #000;
}
.radiobox input:checked + .box::after {
  content: "";
  width: 10px;
  height: 10px;
  background-color: #000;
  border-radius: 50%;
}
.radiobox .txt {
  line-height: 1.5;
}

/* button styles */
.btnWr {
	display: flex;
	flex-direction: column;
	gap: 20px;
	margin: 30px auto;
	width: 100%;
}
.btnWr2Col {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin: 30px auto;
	width: 100%;
}
.btnNormal {
	font-size: 1.6rem;
	line-height: 1.2;
	text-align: center;
	display: grid;
	place-items: center;
	width: 100%;
	height: 50px;
	padding: 3px 10px;
	border-radius: 5px;
	color: #fff;
	border: 2px solid #ffad00;
	background: linear-gradient(180deg,rgba(255, 207, 0, 1) 0%, rgba(255, 173, 0, 1) 100%);
	box-shadow: 0 5px 5px #9e3301;
	margin: auto;
	cursor: pointer;
}
.btnNormal span {
	display: inline-block;
}
.btnPrimary {
	font-size: 1.8rem;
	line-height: 1.2;
	display: grid;
	place-items: center;
	width: 100%;
	height: 50px;
	padding: 3px 10px;
	border-radius: 9999px;
	color: #fff;
	border: 2px solid var(--red);
	background: linear-gradient(90deg,rgba(214, 71, 48, 1) 0%, rgba(201, 6, 8, 1) 100%);
	box-shadow: 0 5px 5px #960406;
	margin: auto;
	cursor: pointer;
}
.btnWr button,
.btnWr .button {
	display: grid;
	place-items: center;
	height: 50px;
	width: 100%;
	margin: auto;
	border-radius: 9999px;
	font-size: 1.6rem;
	font-weight: bold;
	cursor: pointer;
	color: #000;
}
.btnWr button {
	background-color: #fff;
	border: 1px solid;
}
.btnWr .accentBtn {
	color: #fff;
	background-color: var(--red);
	border: none;
}
.btnWr .blackBtn {
	color: #fff;
	background-color: #000;
	border: none;
}
.btnWr .orangeBtn {
	color: #fff;
	background-color: var(--orange);
	border: none;
}
.btnWr .btnSubmit {
	font-size: 1.8rem;
	line-height: 1.2;
	border-radius: 5px;
	color: #fff;
	background: var(--red) url("../img/icon-submit.svg") no-repeat 10px 50%;
	background-size: 25px auto;
	padding: 0 45px;
}

/* error styles */
.errorBox {
	color: #D00;
	border: 1px solid #D00;
	background: var(--light-red) url("../img/icon-error.svg") no-repeat 10px center;
	background-size: 35px auto;
	padding: 15px 15px 15px 55px;
	border-radius: 8px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 20px;
}
.formListArea .errorBox {
	width: var(--adj-width);
	margin: auto auto 20px;
}
input.error,
textarea.error,
select.error {
	background-color: var(--light-red);
	border-color: #D00;
}
.checkbox.error .txt {
	color: #D00;
}
.radiobox.error .txt {
	color: #D00;
}
.errorText {
	font-size: 1.2rem;
	font-weight: bold;
	line-height: 1.5;
	color: #D00;
	margin-top: 5px;
}

/* ----------------------------------------------
login styles
----------------------------------------------*/
main#login {
	background-color: var(--red);
	padding: 30px 0 20px;
	display: flex;
	align-items: center;
	flex-direction: column;
	min-height: 100dvh;
	overflow-y: auto;
}
#login form {
  width: calc(100vw - 40px);
  max-width: 400px;
}
#login .logo img {
	width: 240px;
	margin-bottom: 30px;
}
#login input {
	border: none;
}
/* 通常 */
#login .checkbox .box {
  background-color: #fff;
}
#login .checkbox input + .box::after {
  border-left: 2px solid var(--gray);
  border-bottom: 2px solid var(--gray);
}
/* checked */
#login .checkbox input:checked + .box {
  background-color: #000;
}
#login .checkbox input:checked + .box::after {
  border-left-color: #fff;
  border-bottom-color: #fff;
}
#login .formItem .txt {
	color: #fff;
}
.forgotPasswordLink {
	display: block;
	text-align: center;
	color: #fff;
	margin-bottom: 30px;
}
.noodleImg {
	flex: 1;
	display: flex;
	align-items: center;     /* 余白部分の縦中央 */
	justify-content: center; /* 横中央 */
}
.noodleImg img {
	width: 180px;
}
#login .errorText {
	color: #fff;
}

/* ----------------------------------------------
index styles
----------------------------------------------*/
.stampBox {
	padding: 10px;
	background-color: #fff;
	box-shadow: 0 5px 10px rgba(0, 0, 0, .6);
	margin-bottom: 15px;
	overflow: hidden;
}
.stampBox .hdText img {
	display: block;
	width: 80%;
	max-width: 400px;
	margin: auto auto 15px;
}
.stampList {
	display: grid;
	grid-template-columns: repeat(5, 55px);
	justify-content: center;
	gap: 10px 15px;
}
.stampList li {
	position: relative;
	width: 100%;
	margin: 0 auto;
}
.stampList li.get {
	width: 58px;
}
.stampList li img {
	display: block;
	max-width: 100%;
}
.stampList li.on img {
	filter: brightness(0) saturate(100%) invert(72%) sepia(91%) saturate(1134%) hue-rotate(359deg) brightness(101%) contrast(103%);
}
.stampList li:not(:last-child)::after {
	content: "";
	position: absolute;
	top: 50%;
	right: -16px;
	width: 18px;
	height: 24px;
	transform: translateY(-50%);
	background: url("../img/stamp-arrow.svg") no-repeat center / contain;
}
.stampInfoArea {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 10px;
	margin-top: 20px;
}
.stampInfoDate {
	display: flex;
	flex-direction: column;
	gap: 5px;
	margin-bottom: 5px;
}
.stampInfoDate > div {
	display: flex;
	gap: 5px;
}
.stampInfoDate em {
	width: 7em; /* 調整 */
	flex-shrink: 0;
	text-align: right;
}
.stampInfoDate span {
	letter-spacing: 0.1em;
}
.stampInfoTurn img {
	display: block;
	width: auto;
	height: 35px;
}
.barcodeBox {
	box-shadow: 0 5px 10px rgba(0, 0, 0, .6);
	margin-bottom: 20px;
}
.barcodeBox .boxHd {
	font-size: 1.3rem;
	text-align: center;
	padding: 7px 20px;
}
.barcodeBox .barcodeIn {
	background-color: #fff;
	text-align: center;
	padding: 20px 0 15px;
}
.barcodeBox .barcodeIn .barcode img {
	width: 100%;
	max-width: 300px;
	margin: auto;
}
.barcodeBox .barcodeIn .number {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	width: 300px;
	margin: 15px auto auto;
	font-size: 1.3rem;
	color: var(--baseCol);
}
.barcodeBox .barcodeIn .number span:last-of-type {
	font-size: 1.8rem;
	letter-spacing: 0.1em;
}
.barcodeBox .boxBm {
	font-family: "Anton", sans-serif;
	font-size: 1.8rem;
	padding: 5px 20px;
}
.barcodeBox .boxBm::after {
	content: "NORMAL CARD";
}
.barcodeBox {
	background-color: var(--normal);
}
.barcodeBox.bronze {
	background: var(--grade-bronze);
}
.barcodeBox.bronze .boxBm::after {
	content: "BRONZE CARD";
}
.barcodeBox.gold {
	background: var(--grade-gold);
}
.barcodeBox.gold .boxBm::after {
	content: "GOLD CARD";
}
.barcodeBox.platinum {
	background: var(--grade-platinum);
}
.barcodeBox.platinum .boxBm::after {
	content: "PLATINUM CARD";
}
.barcodeBox.black {
	color: #fff;
	background: var(--grade-black);
}
.barcodeBox.black .boxBm::after {
	content: "BLACK CARD";
}
.bannerArea {
	background: url("../img/mokume-bg.webp") repeat-y 0 0;
	background-size: 100% auto;
	padding: 0 30px 20px;
	display: flow-root;
}
.bannerArea .banner {
	max-width: 400px;
	margin: 30px auto;
}
.bannerArea .banner img {
	display: block;
	box-shadow: 5px 5px 10px rgba(0, 0, 0, .6);
}

/* ----------------------------------------------
coupon styles
----------------------------------------------*/
.couponUseInfo {
	font-size: 1.8rem;
	font-weight: bold;
	line-height: 1.4;
	margin: 0 auto 15px;
}
.contentArea > a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.couponBox {
  background-color: #fff;
  border: 2px solid var(--red);
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 400px;
  min-height: min(100vw - 40px, 400px);
  margin: 0 auto 20px;
  padding-bottom: 10px;
}
/* 画像エリア：横1059に対して高さ650 */
.couponImg {
  width: 100%;
  aspect-ratio: 1059 / 650;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.couponImg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.couponInfo {
	padding-inline: 10px;
	text-align: center;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
	gap: 10px;
}
.couponTtl {
  font-weight: bold;
  font-size: 2.0rem;
	line-height: 1.3;
}
.expiration {
  font-size: 1.6rem;
	white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.couponBox button {
	margin-bottom: 10px;
}
/* 注意事項 */
.couponBox .notice {
  width: calc(100% - 20px);
  margin: 0 auto;
  font-size: 1.4rem;
	flex-shrink: 0;
}
.couponBox .notice dt {
  display: inline-flex;
  padding: 7px 10px;
  margin-bottom: 5px;
  font-weight: bold;
  color: #fff;
  background-color: #000;
}
.couponBox .notice dd {
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.couponBarcodeInfo {
	font-size: 1.6rem;
	line-height: 1.4;
	text-align: center;
	color: #fff;
	background-color: var(--red);
	margin: 0 auto;
	max-width: 400px;
	border-radius: 10px 10px 0 0;
	padding: 10px;
}
.couponBarcodeInfo span {
	display: inline-block;
}
.couponBarcodeUse {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-items: center;
	padding-inline: 15px;
}
.couponBarcodeUse .expiration {
	font-weight: bold;
	text-align: center;
	color: var(--red);
	border: 2px solid;
	background-color: var(--light-red);
	border-radius: 5px;
	width: 100%;
	padding: 7px;
}
.couponBarcodeUse .number {
	letter-spacing: 0.05em;
}

.modalSet {
  display: none;
}
.modalSet.isOpen {
	position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  display: grid;
  place-items: center;
	z-index: 300;
}
body:has(.modalSet.isOpen) {
  overflow: hidden;
}
.getCoupon {
  width: calc(100% - 40px);
  max-width: 400px;
  margin: 0 auto;
	position: relative;
}
.couponClose {
  position: absolute;
  top: -15px;
  right: -5px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  z-index: 400;
}
.couponClose::before,
.couponClose::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: #000;
  transform-origin: center;
}
.couponClose::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.couponClose::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.getCouponHd {
	font-size: 1.7rem;
  line-height: 1.3;
	text-align: center;
  padding: 10px;
  border-radius: 16px 16px 0 0;
	background: var(--orange);
}
.getCoupon .couponBox {
  margin-bottom: 0;
	border-color: var(--orange);
  border-top: none;
  border-bottom: none;
}
.getCouponBm {
	font-size: 1.7rem;
	text-align: center;
	text-decoration: underline;
  padding: 15px 10px;
  border-radius: 0 0 16px 16px;
	background: var(--orange);
}

/* ----------------------------------------------
card styles
----------------------------------------------*/
.memberMenu {
	display: flex;
	gap: 10px;
	padding-inline: 20px;
	margin: 10px auto 30px;
	width: 100%;
}
.stampNotice {
	background-color: #fff;
	padding: 20px;
	box-shadow: 0 5px 10px rgba(0, 0, 0, .6);
	position: relative;
}
.stampNotice::before {
	content: "";
	position: absolute;
	inset: 10px;
	border: 1px solid #000;
	pointer-events: none;
}
.stampNotice ul li {
	font-size: 1.4rem;
	line-height: 1.4;
	text-indent: -1em;
	padding-left: 1em;
}
.stampNotice a {
	display: block;
	text-align: center;
	text-decoration: underline;
	margin: 10px auto 5px;
}

.visitHistory {
	padding-block: 30px;
}
.visitHistory .boxHd {
	font-size: 2.0rem;
	text-align: center;
	color: #fff;
	padding-inline: 20px;
	margin-bottom: 15px;
}
.visitHistory .boxBd {
	background-color: #fff;
	padding-inline: 10px;
}
.visitHistory .detailBox {
	padding: 10px;
	display: grid;
	align-items: center;
	grid-template-columns: 1fr 140px;
	gap: 10px;
}
.visitHistory .detailBox:not(:last-of-type) {
	border-bottom: 1px solid #ccc;
}
.visitHistory .visitInfo {
	display: flex;
	flex-direction: column;
	gap: 5px;
	line-height: 1.4;
	min-width: 0;
}
.visitHistory .visitInfo .date {
	font-size: 1.6rem;
}
.visitHistory .visitInfo .shopName {
	font-size: 1.8rem;
	overflow-wrap: anywhere;
}
.rewardArea {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.visitHistory .rewardWr {
	display: grid;
	grid-template-columns: 80px 60px;
	align-items: center;
	gap: 5px;
}
.visitHistory .rewardWr .icon {
	text-align: center;
}
.visitHistory .rewardWr .icon img {
	height: 50px;
	width: auto;
	max-width: 80px;
}
.visitHistory .rewardWr .info {
	font-weight: bold;
	line-height: 1.1;
	text-align: center;
	white-space: nowrap;
}
.visitHistory .rewardWr .info em {
	font-size: 2.2rem;
}

/* ----------------------------------------------
delivery styles
----------------------------------------------*/
.deliveryArea {
	background-color: #fff;
	flex: 1;
	padding-bottom: 50px;
}
.deliverHd {
	background-color: var(--yellow);
	height: 60px;
	width: 100%;
	display: grid;
	place-items: center;
	font-size: 2.0rem;
	font-weight: bold;
}
.deliveryLogo {
	height: 80px;
	width: 100%;
	max-width: 360px;
	margin: auto;
}
.deliveryLogo img {
	display: block;
	object-fit: cover;
	width: 100%;
	height: 100%;
}
.searchBox .notice {
	text-align: center;
	padding: 20px 20px 15px;
}
.searchBox .searchHd {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	font-size: 2.0rem;
	font-weight: bold;
	margin-bottom: 10px;
}
.searchBox .searchHd img {
	height: 30px;
	width: auto;
}
.searchBox .searchBd {
	max-width: 600px;
	padding: 0 20px 30px;
	margin: auto;
}
.prefList {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	border-top: 1px solid #ccc;
	border-left: 1px solid #ccc;
}
.prefList li button {
	appearance: none;
	-webkit-appearance: none;
	border: none;
	background: none;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	cursor: pointer;
	font-size: 1.6rem;
	font-weight: bold;
	color: #000;
}
.areaList .listHd {
	color: #fff;
	background-color: #000;
	height: 60px;
	width: 100%;
	display: grid;
	place-items: center;
	font-size: 2.0rem;
	font-weight: bold;
}
.areaList .listBd li {
	display: flex;
	flex-direction: column;
	gap: 5px;
	padding: 10px 0;
	margin-inline: 20px;
	line-height: 1.4;
}
.areaList .listBd li:not(:last-of-type) {
	border-bottom: 1px solid #ccc;
}
.areaList .listBd li .shopName {
	font-size: 2.2rem;
}
.areaList .listBd li a {
	margin: 10px auto 20px;
}

/* ----------------------------------------------
tearms styles
----------------------------------------------*/
.terms,
.privacyPolicy {
	line-height: 1.5;
}
.terms h2,
.privacyPolicy h2 {
	font-size: 1.7rem;
	line-height: 1.3;
	margin-bottom: 5px;
}
.terms h2:not(:first-of-type) {
	margin-top: 1em;
}
.terms ol {
	padding-left: 1.5em;
}
.privacyPolicy li {
	list-style: disc;
	margin-left: 1em;
}
.privacyPolicy h2 {
	margin-top: 1em;
	text-indent: -1em;
	padding-left: 1em;
}

/* ----------------------------------------------
faq styles
----------------------------------------------*/
.faqCategory {
	margin: 20px auto;
}
.faqCategory summary {
	list-style: none;
  position: relative;
  padding: 15px 40px 15px 15px;
  cursor: pointer;
	background-color: #ffae99;
	border-radius: 10px;
	font-size: 1.6rem;
	font-weight: bold;
}
.faqCategory summary::-webkit-details-marker {
  display: none;
}
.faqCategory summary::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 32px;
  height: 32px;
  background: #fff;
  border-radius: 50%;
  transform: translateY(-50%);
}
.faqCategory summary::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: translateY(-50%) rotate(135deg);
  transition: transform .3s;
  z-index: 1;
	transform-origin: center;
}
.faqCategory[open] summary::before {
  transform: translateY(-50%) rotate(45deg);
}
.faqList {
	line-height: 1.6;
}
.faqList dt,
.faqList dd {
	padding-left: 1.3em;
	position: relative;
	text-indent: -1.3em;
}
.faqList dt::before {
	content: "Q.";
	margin-right: .3em;
}
.faqList dd::before {
	content: "A.";
	font-weight: bold;
	margin-right: .3em;
}
.faqList dt {
	font-weight: bold;
	color: var(--red);
	margin: 15px auto 10px;
}
.faqList dd {
	padding-bottom: 15px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 15px;
}
.faqList ul {
	margin-top: 15px;
}
.faqList ul li {
	text-indent: -1em;
	padding-left: 1em;
	margin-top: 5px;
}
.faqNotice {
	margin-top: 10px;
	text-indent: 0;
}

/* ----------------------------------------------
password change styles
----------------------------------------------*/
.authCodeInfo {
	font-weight: bold;
	text-align: center;
	line-height: 1.8;
	margin-bottom: 20px;
	padding-inline: 20px;
}
.authCodeMail {
	font-weight: bold;
	text-align: center;
	background-color: #eee;
	border-radius: 10px;
	padding: 15px;
	margin: 20px 20px 30px;
	color: var(--gray);
}
.authCodeMail .address {
	font-size: 1.7rem;
	color: #000;
	overflow-wrap: anywhere;
	margin-top: 10px;
}
.authCodeResend {
	text-align: center;
	color: var(--red);
	margin-bottom: 30px;
	text-decoration: underline;
}
.authCodeNotice {
	font-size: 1.4rem;
	line-height: 1.5;
	margin-top: 10px;
}

.copyArea {
	background-color: #eee;
	padding: 15px 20px;
}
.copyArea .text {
	font-size: 1.3rem;
	margin-bottom: 10px;
}
.copyArea .copyControl {
	position: relative;
}
.copyArea .copyControl input {
	width: 100%;
	padding: 8px 90px 8px 10px;
}
.copyArea .copyControl button {
	font-size: 1.3rem;
	font-weight: bold;
	color: #fff;
	background-color: #00993e;
	border: none;
	border-radius: 9999px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 10px;
	z-index: 10;
	display: grid;
	place-items: center;
	height: 30px;
	width: 70px;
}

/* ----------------------------------------------
password change styles
----------------------------------------------*/
.errorPage {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	padding: 30px 20px;
}
.errorPage .logo {
	width: 180px;
	height: auto;
}
.errorPage h1 {
	font-size: 8.0rem;
}
.errorPage .text {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 20px;
}
.errorPage .text strong {
	font-size: 2.0rem;
}
