@charset "UTF-8";
/*----------------------------------------------
 * * formatting styles
 * *----------------------------------------------*/
html {
  --bgc: #f3f3f3;
  --pink: #E16887;
  --red: #E53055;
  --pink_light: #FCE5EA;
  --gray01: #E8E8E8;
  --gray02: #8E8D8D;
  --gray03: #DCDDDD;
  --blue: #63B9E6;
  --green: #5B9F2E;
  --bdc: var(--gray01);
  --bdc02: #dfdfdf;
  --bdc03: #b3b3b3;
  --width: 88.75%;
  --LINEGreen: #06C755;
  --fz12: min(3.2vw, 1.2rem);
  --fz13: min(3.4666vw, 1.3rem);
  --fz14: min(3.7333vw, 1.4rem);
  --fz15: min(4vw, 1.5rem);
  --fz16: min(4.266vw, 1.6rem);
  --fz17: min(4.5333vw, 1.7rem);
  --fz18: min(4.8vw, 1.8rem);
  --fz19: min(5.0666vw, 1.9rem);
  --fz20: min(5.3333vw, 2rem);
  --fz21: min(5.6vw, 2.1rem);
  --fz26: min(2.6rem, 6.9333vw);
  scroll-behavior: smooth;
}
body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  min-height: 100svh;
  background-color: var(--bgc);
  font-feature-settings: "palt";
  font-family: Lato, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-optical-sizing: auto;
  font-size: 1.4em;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: #333;
}
@media screen and (max-width: 767px) {
  body {
    -webkit-text-size-adjust: 100%;
  }
}
body:has(> [id=__next], main.lineLink, main.mypage) {
  grid-template-rows: 1fr;
}

[id=__next] {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
}
[id=__next]:has(main.lineLink, main.mypage) {
  grid-template-rows: 1fr;
}

a {
  color: inherit;
  transition-duration: 0.3s;
}

_::-webkit-full-page-media, _:future, :root a {
  text-underline-offset: 2px;
}

img, svg {
  border-style: none;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

em {
  font-style: normal;
  font-weight: bold;
}

@media (any-hover: hover) {
  a:hover {
    text-decoration: none;
  }
}
@media (any-hover: none) {
  a:active {
    text-decoration: none;
  }
}

/*----------------------------------------------
 * * clearfix
 * *----------------------------------------------*/
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* ----------------------------------------------
 * * common
 * *----------------------------------------------*/
.hidden {
  display: none !important;
}

.caution {
  list-style: none;
  text-indent: -1em;
  padding-left: 1em;
}

.pageHeader {
  background-color: #fff;
  min-height: calc(21.9166vw + 20px);
  padding: 10vw 0;
  text-align: center;
  font-size: min(5.8667vw, 2.2rem);
  line-height: 1.3;
}
.pageHeader h2 {
  margin-top: 0.5em;
  font-size: var(--fz17);
}

:where([type=tel], [type=text], [type=password], [type=email], [type=search]) {
  display: block;
  outline: none;
  width: 100%;
  height: 2.7778em;
  background-color: #fff;
  border: 2px solid var(--bdc);
  border-radius: 0.4444em;
  padding: 0 10px;
  font-family: inherit;
  font-weight: inherit;
  font-size: var(--fz18);
  color: inherit;
}
:where([type=tel], [type=text], [type=password], [type=email], [type=search]):focus {
  border-color: var(--pink);
}

:where(textarea) {
  display: block;
  outline: none;
  width: 100%;
  height: 6.9445em;
  background-color: #fff;
  border: 2px solid var(--bdc);
  border-radius: 0.4444em;
  padding: 5px 10px;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}
:where(textarea):focus {
  border-color: var(--pink);
}

::placeholder {
  color: var(--gray02);
  font-weight: bold;
}

select {
  display: block;
  outline: 0;
  appearance: none;
  width: 100%;
  height: 2.8333em;
  margin: 0;
  padding: 0 2.9em 0 0.5em;
  background: #fff url(../img/arrow-down.svg) no-repeat right 0.8em center/1.3em auto;
  border: 1px solid var(--bdc03);
  border-radius: 0.2083em;
  font-family: inherit;
  font-size: inherit;
  font-weight: bold;
  color: inherit;
}

.radiobox {
  display: inline-flex;
  position: relative;
  cursor: pointer;
}
.radiobox [type=radio] {
  position: relative;
  appearance: none;
  padding: 0;
  margin: 0 0.5em 0 0;
  vertical-align: middle;
  border: 1px solid var(--bdc03);
  background-color: #fff;
  width: 1.6667em;
  height: 1.6667em;
  border-radius: 50%;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  transition-duration: 0.3s;
}
.radiobox [type=radio]::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 50%;
  translate: 50% 50%;
  width: 0.8333em;
  height: 0.8333em;
  border-radius: 50%;
  background-color: var(--pink);
  opacity: 0;
  visibility: hidden;
  transition-duration: 0.3s;
}
.radiobox [type=radio]:checked {
  border-color: var(--pink);
}
.radiobox [type=radio]:checked::before {
  opacity: 1;
  visibility: visible;
}
.radioboxList {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 1.6667em;
}

button {
  --btnBgc: var(--pink);
  padding: 0;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  cursor: pointer;
  transition-duration: 0.3s;
}

.btn {
  display: block;
  border: none;
  background-color: var(--btnBgc);
  line-height: 1.2;
  width: 100%;
  padding: 15px 0;
  border-radius: calc(1.2em + 30px);
  font-weight: bold;
  font-size: var(--fz16);
  color: #fff;
}
.btn:active {
  opacity: 0.6;
}

a.btn {
  --btnBgc: var(--pink);
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.formLabel {
  padding: 0.8em calc((100% - var(--width)) / 2);
  background-color: var(--bgc);
  border-bottom: 1px solid var(--bdc02);
  color: #808080;
  font-weight: bold;
  font-size: var(--fz14);
  line-height: 1.3;
}
.formLabel .iconRequired {
  display: inline-flex;
  background-color: var(--red);
  border-radius: 3px;
  padding: 2px 5px 1px;
  margin-left: 5px;
  color: #fff;
  font-size: var(--fz12);
}
.formLabel + .formBody {
  background-color: #fff;
  border-bottom: 1px solid var(--bdc02);
  padding: 1em calc((100% - var(--width)) / 2) 1.8em;
  font-size: var(--fz16);
}
.formbox:first-child .formLabel {
  border-top: 1px solid var(--bdc02);
}
.formBtn:not(:where(.lineLink .formBtn)) {
  margin: min(10.6667vw, 40px) auto;
  width: 81.875%;
}
ul.formBtn {
  list-style: none;
}
ul.formBtn li:nth-child(n+2) {
  margin-top: min(4.6875vw, 20px);
}
ul.formBtn .back {
  background-color: #a5a5a5;
}

.errorbox {
  width: var(--width);
  margin: 1em auto;
  border: 1px solid;
  padding: 0.5em;
  border-radius: 0.45em;
  background-color: var(--pink_light);
  color: var(--red);
  font-size: var(--fz15);
  font-weight: bold;
}
.error :where([type=tel], [type=text], [type=password], [type=email], [type=search]), .error select, .error textarea {
  background-color: var(--pink_light);
  border-color: var(--red);
}
.errorText {
  display: none;
  line-height: 1.3;
  color: var(--red);
  font-weight: normal;
}
.errorText:has(+ *) {
  margin-bottom: 8px;
}
.error .errorText {
  display: block;
}

.check .formLabel {
  background-color: inherit;
  border: none;
  padding-block: 1em 0;
  color: #333;
}
.check .formBody {
  padding-block: 8px 1em;
}
.check .formbox:first-child .formLabel {
  padding-top: 0;
  border-top: none;
}
.check .formBtn .back {
  margin-top: 20px;
  background-color: var(--gray02);
}

body:has(main.complete:not(main.lineLink)) {
  background-color: #fff;
}

.completeText {
  width: var(--width);
  margin-inline: auto;
  text-align: center;
  font-size: var(--fz16);
}
.completeText p + p {
  margin-top: 1em;
}
.completeText a {
  color: var(--pink);
}
.complete .contactbox {
  width: var(--width);
  margin: 2.34em auto 0;
  border: 1px solid var(--gray03);
  padding: 0em 0.8em;
  font-size: var(--fz16);
  border-radius: 0.5em;
}
.complete .contactbox > div {
  padding: 0.8em 0;
}
.complete .contactbox > div:nth-of-type(n+2) {
  border-top: 1px solid var(--gray03);
}
.complete .contactbox dt {
  font-weight: bold;
  font-size: var(--fz17);
}
.complete .contactbox dd .telNum {
  display: inline-block;
  background: url(../img/icon-freedial.svg) no-repeat 0 0.4em/1.7em auto;
  padding-left: calc(1.7em + 5px);
  font-size: var(--fz18);
  font-weight: bold;
}
.complete .contactbox dd .telNum + p {
  font-size: var(--fz15);
}
.complete .contactbox dd a[href^="tel:"] {
  text-decoration: none;
}
.complete .contactbox dd a[href^="tel:"]:active {
  text-decoration: underline;
}
.complete .btnMypage {
  width: var(--width);
  margin: min(8vw, 30px) auto;
}

/* ======== popover ======== */
[popover] {
  width: 100%;
  height: 100%;
  overscroll-behavior: none;
  scrollbar-width: none;
}
[popover]::-webkit-scrollbar {
  display: none;
}
[popover]::backdrop {
  background-color: rgba(0, 0, 0, 0.7);
}
[popover] > .inner {
  overflow: auto;
  height: calc(100% + 1px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
[popover] > .inner > [popovertargetaction=hide] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: transparent;
  border: none;
  cursor: auto;
}
[popover] .content {
  max-width: 90%;
  max-height: 90%;
  width: 88.75%;
  position: relative;
}
[popover] .content [popovertargetaction=hide] {
  position: absolute;
  right: 0;
  top: 0;
  border: none;
  background-color: transparent;
  width: min(15.625vw, 60px);
  height: min(15.625vw, 60px);
}
[popover] .content [popovertargetaction=hide]::before, [popover] .content [popovertargetaction=hide]::after {
  content: "";
  position: absolute;
  left: 30%;
  top: calc(50% - 1px);
  width: 40%;
  height: 2px;
  background-color: #fff;
  rotate: 45deg;
}
[popover] .content [popovertargetaction=hide]::after {
  rotate: -45deg;
}
[popover] .contentInner {
  background-color: #fff;
  height: 100%;
  width: 100%;
  overflow: auto;
  border-radius: min(2.6563vw, 8px);
}
[popover] .popupHeader {
  background-color: var(--pink);
  color: #fff;
  border-radius: min(2.6563vw, 8px) min(2.6563vw, 8px) 0 0;
  min-height: min(15.625vw, 60px);
}

[id^=popup]:where(:not([popover])) {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  overscroll-behavior: none;
  scrollbar-width: none;
  scale: 0 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-duration: 0.3s;
  transition-property: transform, opacity, visibility;
}
[id^=popup]:where(:not([popover]))::-webkit-scrollbar {
  display: none;
}
[id^=popup]:where(:not([popover])) > .inner {
  overflow: auto;
  height: calc(100% + 1px);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
[id^=popup]:where(:not([popover])) .content {
  width: var(--width);
  max-width: 90%;
  max-height: 90%;
}
[id^=popup]:where(:not([popover])) .contentInner {
  background-color: #fff;
  border-radius: min(2.6563vw, 8px);
  width: 100%;
  height: 100%;
  overflow: auto;
}
[id^=popup].show {
  scale: 1 1;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
body:has([id^=popup].show) {
  overflow: hidden;
}

/* ----------------------------------------------
 * * header
 * *----------------------------------------------*/
header:has(+ main.lineLink, + main.mypage) {
  display: none;
}
header .btnHome {
  position: fixed;
  z-index: 100;
  right: 0;
  top: 5.625vw;
  width: 16.875%;
  max-width: 87px;
}
header .btnHome a {
  display: block;
  background-color: var(--blue);
  padding: 10px min(2.1333vw, 8px) 10px min(4.8vw, 18px);
  border-radius: calc(10.6666vw + 20px) 0 0 calc(10.6666vw + 20px);
}
header .btnHome a:active {
  opacity: 0.6;
}
header .btnHome a img {
  display: block;
}

/* ----------------------------------------------
 * * lineLink
 * *----------------------------------------------*/
.lineLink {
  --width: 81.875%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: min(9.375vw, 60px) 0;
  text-align: center;
}
.lineLink.linked {
  justify-content: flex-end;
}
.lineLink h1 {
  width: 34.2188%;
  max-width: 219px;
  margin: 0 auto;
}
.lineLink .lead {
  width: var(--width);
  margin: min(10.625vw, 34px) auto 0;
  border-radius: 8px;
  background-color: #fff;
  padding: 10px 12px;
  text-align: left;
}
.lineLink form {
  width: var(--width);
  margin: 0 auto;
  text-align: left;
}
.lineLink .formbox {
  margin-top: min(5.4688vw, 18px);
  font-weight: bold;
  font-size: var(--fz15);
}
.lineLink .formBtn {
  margin-top: min(8.75vw, 28px);
}
.lineLink .userTelNum {
  position: relative;
}
.lineLink .userTelNum input {
  padding-right: calc(30px + 1.45em);
}
.lineLink .userTelNum button {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  border: none;
  padding: 0 15px;
  background-color: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lineLink .userTelNum button img {
  width: 1.45em;
}
.lineLinkBox {
  display: flex;
  justify-content: center;
  align-items: center;
}
.lineLinkBox::before {
  content: "";
  width: min(14.6875vw, 55px);
  height: 8px;
  background-color: var(--LINEGreen);
}
.lineLinkBox > * {
  width: 17.6563vw;
  height: 17.6563vw;
  max-width: 100px;
  max-height: 100px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
}
.lineLinkBox .logo {
  order: -1;
  justify-content: center;
}
.lineLinkBox .logo > img {
  width: 100%;
  border-radius: 50%;
}
.lineLinkBox .line {
  background-color: var(--LINEGreen);
}
.lineLinkBox .line img {
  width: 49.5575%;
}
.lineLinkBox + p {
  margin-top: 1.7308em;
  font-weight: bold;
  font-size: var(--fz17);
}
.unlink .lineLinkBox {
  position: relative;
}
.unlink .lineLinkBox::before {
  background-color: var(--gray02);
}
.unlink .lineLinkBox .logo {
  position: relative;
}
.unlink .lineLinkBox .logo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border: 4px solid var(--gray02);
  border-radius: 50%;
  pointer-events: none;
}
.unlink .lineLinkBox .line {
  background-color: var(--gray02);
}
.unlink .lineLinkBox::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 50%;
  translate: 50% 50%;
  width: min(8.75vw, 33px);
  height: min(8.75vw, 33px);
  background: var(--bgc) url(../img/icon-cross.svg) no-repeat center;
  background-size: calc(100% - 10px) auto;
}
.lineLink .message {
  width: var(--width);
  margin: 1.9em auto 0;
  border-radius: 8px;
  background-color: #fff;
  padding: 20px 12px;
}
.lineLink .btnUnlink {
  width: var(--width);
  margin: 3.5em auto 0;
}
.lineLink .btnUnlink .btn {
  background-color: var(--red);
}

/* ----------------------------------------------
 * * mypage
 * *----------------------------------------------*/
.myPoint {
  width: var(--width);
  margin: 7.0313vw auto 0;
  background-color: #fff;
  border-radius: 6px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: repeat(2, auto);
  padding-top: 4vw;
  position: relative;
  font-weight: bold;
  font-size: var(--fz14);
}
.myPoint .btnID {
  position: absolute;
  right: 15px;
  top: 8px;
  width: 8.4806%;
}
.myPoint .btnID button {
  width: 100%;
  border: none;
  line-height: 1;
  background-color: transparent;
}
.myPoint .btnID button img {
  width: 100%;
}
.myPoint .logo {
  width: 15.625vw;
  height: 15.625vw;
  border: 1px solid #BFBFBF;
  border-radius: 50%;
  margin-inline: min(4.6875vw, 18px);
  display: flex;
  justify-content: center;
  align-items: center;
}
.myPoint .logo img {
  width: 100%;
  border-radius: 50%;
}
.myPoint .pointInfo {
  align-self: center;
  font-size: var(--fz16);
  line-height: 1.1;
  min-width: 0;
}
.myPoint .pointInfo em {
  font-size: 230.8%;
  overflow-wrap: break-word;
}
.myPoint .pointInfo span {
  display: inline-block;
}
.myPoint .pointInfo .caution {
  margin-top: 0.75em;
  color: #777;
  font-size: var(--fz12);
}
.myPoint .exchangeInfo {
  grid-column: 1/-1;
  border-radius: 0 0 6px 6px;
  background-color: var(--pink);
  margin-top: 4vw;
  padding-block: 4vw;
  text-align: center;
  color: #fff;
  font-size: var(--fz17);
  line-height: 1.3;
}
.myPoint .exchangeInfo dl {
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 1em;
}
.myPoint .exchangeInfo dd {
  display: inline-flex;
  align-items: baseline;
  font-size: var(--fz15);
}
.myPoint .exchangeInfo dd em {
  font-size: 147.9%;
  margin-right: 5px;
}
.myPoint .exchangeInfo ul {
  margin-top: 0.5em;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2em;
  font-size: var(--fz15);
}

[id=popupID] .popupHeader {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: var(--fz17);
}
[id=popupID] .popupBody {
  font-weight: bold;
  padding: 12px 20px 20px;
  font-size: var(--fz17);
}
[id=popupID] .popupBody dl > div {
  margin-top: 8px;
}
[id=popupID] .popupBody dl > div:not(.name) dt {
  display: inline-block;
  background-color: var(--pink);
  padding: 2px 1em 0;
  color: #fff;
  font-size: var(--fz12);
  border-radius: 2em;
}
[id=popupID] .popupBody dl > div:last-child dt {
  letter-spacing: 1em;
  padding-right: 0;
}
[id=popupID] .popupBody .name {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
}
[id=popupID] .popupBody .name dt {
  line-height: 1;
}
[id=popupID] .popupBody .name dt img {
  width: 22px;
}

.nextVisit {
  width: var(--width);
  margin: 3.2vw auto 0;
  border-radius: 6px;
  background-color: #fff;
  text-align: center;
  font-weight: bold;
  color: #58595B;
}
.nextVisit .ttl {
  background-color: var(--blue);
  border-radius: 6px 6px 0 0;
  padding: 0.5em 0;
  color: #fff;
  font-size: var(--fz16);
}
.nextVisit .date {
  font-size: min(5.3333vw, 2rem);
  padding: 0.4em 0;
}
.nextVisit .txtSml {
  padding: 0 1.28em;
  text-align: left;
  font-size: var(--fz12);
  font-weight: normal;
}
.nextVisit dl {
  display: flex;
  gap: 1em;
  border-top: 1px solid var(--bdc);
  padding: 0.5em 1em;
  font-size: var(--fz18);
  line-height: 1.2;
}
.nextVisit dl dt {
  flex: 0 0 auto;
}
.nextVisit dl dd {
  min-width: 0;
  overflow-wrap: break-word;
  margin-left: auto;
  text-align: right;
}

.mypageMenu {
  width: var(--width);
  margin: 5.625vw auto;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr auto;
  gap: 0.75em;
  text-align: center;
  font-size: var(--fz12);
  font-weight: bold;
}
.mypageMenu li {
  grid-row: span 2;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: subgrid;
}
.mypageMenu li:first-child a {
  background-color: var(--pink);
}
.mypageMenu li:first-child .icon {
  width: 50.838%;
}
.mypageMenu li:last-child a {
  background-color: var(--green);
}
.mypageMenu li:last-child .icon {
  width: 34.6369%;
}
.mypageMenu a {
  grid-row: span 2;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: subgrid;
  background-color: var(--blue);
  border-radius: 2.3438vw;
  padding: 1em 0;
  color: #fff;
  text-decoration: none;
}
.mypageMenu a:active {
  opacity: 0.6;
}
.mypageMenu .icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35.1955%;
  margin-inline: auto;
}
.mypageMenu02 {
  font-size: var(--fz16);
  line-height: 1.2;
}
.mypageMenu02 a {
  padding: 0.5em 0;
  gap: 0.3em;
}

.ftMenu {
  width: var(--width);
  margin: 0 auto 10.6666vw;
  border-radius: 6px;
  background-color: #fff;
  border: 1px solid var(--bdc);
  font-size: var(--fz15);
  list-style: none;
}
.ftMenu li:nth-child(n+2) {
  border-top: 1px solid var(--bdc);
}
.ftMenu a {
  display: block;
  padding: 0.75em 1em;
  text-decoration: none;
}
.ftMenu a:active {
  opacity: 0.6;
}

/* ----------------------------------------------
 * * support
 * *----------------------------------------------*/
details summary {
  display: block;
  cursor: pointer;
}
details summary::-webkit-details-marker {
  display: none;
}

.faqCate dt {
  border-top: 1px solid var(--bdc02);
  background-color: var(--bgc);
  padding: 0.8em calc((100% - var(--width)) / 2);
  color: #808080;
  font-weight: bold;
  font-size: var(--fz14);
  line-height: 1.2;
}
.faqCate dd {
  border-top: 1px solid var(--bdc02);
  font-size: var(--fz15);
}
.faqCate > *:last-child {
  border-bottom: 1px solid var(--bdc02);
}
.faqCate summary {
  background: #fff url(../img/icon-question.svg) no-repeat calc((100% - var(--width)) / 2) 1.1em/1.25em auto;
  padding: 0.8em calc((100% - var(--width)) / 2) 0.8em calc((100% - var(--width)) / 2 + 1.75em);
  font-size: var(--fz16);
}
.faqCate .answer {
  border-top: 1px solid var(--bdc02);
  overflow: hidden;
}
.faqCate .answer > .inner {
  background: url(../img/icon-answer.svg) no-repeat calc((100% - var(--width)) / 2) 1.4em/1.3em auto;
  padding: 1.2em calc((100% - var(--width)) / 2) 1.2em calc((100% - var(--width)) / 2 + 1.8em);
  line-height: 1.75;
  transform-origin: left top;
}
.faqCate [open] .answer > .inner {
  animation: slideDown 0.8s ease 0s 1;
}

@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.aboutContact {
  list-style: none;
  background-color: #fff;
  padding: 20px 0;
  text-align: center;
  font-weight: bold;
}
.aboutContact > li {
  width: var(--width);
  margin: 0 auto;
  border: 1px solid var(--bdc);
  border-radius: 5px;
  padding: 15px 0;
  font-size: var(--fz14);
}
.aboutContact > li:nth-child(n+2) {
  margin-top: 15px;
}
.aboutContact h3 {
  margin-bottom: 10px;
  font-size: var(--fz16);
}
.aboutContact .tel a {
  display: inline-flex;
  align-items: center;
  gap: 0 5px;
  text-decoration: none;
  font-size: var(--fz26);
  line-height: 1;
}
.aboutContact .tel .icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.aboutContact .tel .icon img {
  aspect-ratio: 49/28;
  width: auto;
  height: 1em;
}
.aboutContact .btn {
  display: inline-flex;
  width: auto;
  padding: 8px 2.5em;
  background-color: var(--blue);
  font-size: var(--fz16);
}

/* ----------------------------------------------
 * * exchange
 * *----------------------------------------------*/
body:has(main.exchange) {
  background-color: #fff;
}

.exchange .pageHeader + .lead {
  width: var(--width);
  margin: 0 auto 1em;
  text-align: left;
  font-size: var(--fz16);
  line-height: 1.75;
}

.selectYear {
  background-color: var(--bgc);
  border-top: 1px solid var(--bdc02);
  border-bottom: 1px solid var(--bdc02);
  padding: 1.25em calc((100% - var(--width)) / 2);
  font-size: var(--fz16);
}
.selectYear .label {
  margin-bottom: 0.4em;
  color: #808080;
  font-weight: bold;
  font-size: var(--fz17);
}

.historybox .num {
  width: var(--width);
  margin: 0 auto;
  padding: 1.3636em 0;
  font-size: var(--fz15);
  font-weight: bold;
  color: #4d4d4d;
}
.historybox ul {
  list-style: none;
  border-top: 1px solid var(--bdc02);
  width: var(--width);
  margin: 0 auto;
  font-size: var(--fz17);
}
.historybox ul > li {
  border-bottom: 1px solid var(--bdc02);
  padding: 1.1em 0 1.5em;
}
.historybox dl > div {
  display: flex;
}
.historybox dl > div:first-child {
  color: var(--pink);
  font-weight: bold;
}
.historybox dl > div:nth-child(n+2) {
  margin-top: 0.25em;
}
.historybox dd a {
  text-decoration: none;
}
.historybox dd a:active {
  text-decoration: underline;
}
.historybox .tagCancel {
  display: none;
  vertical-align: top;
  background-color: var(--red);
  padding: 2px 1em 0;
  margin-top: 2px;
  margin-left: 1em;
  border-radius: 2em;
  color: #fff;
  font-size: var(--fz13);
  line-height: 1.5;
}
.historybox .used {
  margin-top: 0.25em;
  overflow-wrap: break-word;
  text-align: right;
  font-weight: bold;
  font-size: 107.7%;
}
.historybox .used > p {
  display: flex;
  justify-content: flex-end;
}
.historybox .used > p > span {
  min-width: 0;
}
.historybox .used > p .icon {
  width: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 5px;
}
.historybox .used > p .icon img {
  display: block;
}
.historybox .used > p .iconGray {
  display: none;
}
.historybox .cancelled {
  color: #717171;
}
.historybox .cancelled dl > div {
  display: flex;
}
.historybox .cancelled dl > div:first-child {
  color: inherit;
}
.historybox .cancelled .tagCancel {
  display: inline-block;
}
.historybox .cancelled .used > p .icon {
  display: none;
}
.historybox .cancelled .used > p .iconGray {
  display: flex;
}

.historyDetail {
  width: var(--width);
  margin: 0 auto;
  font-size: var(--fz16);
}
.historyDetail section:nth-child(n+2) {
  margin-top: 1.75em;
  padding-top: 1.5em;
  border-top: 1px solid var(--gray03);
}
.historyDetail h2 {
  font-size: var(--fz18);
}
.historyDetail ul {
  list-style: none;
}
.historyDetail li {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: min(4.6875vw, 3em);
  padding: 1.1667em 0;
  border-bottom: 1px solid var(--gray03);
}
.historyDetail .thumb {
  width: 23.4375vw;
  height: 23.4375vw;
  max-width: 120px;
  max-height: 120px;
  background-color: #fff;
  border: 1px solid var(--gray03);
  border-radius: 0.5em;
  padding: 0.75em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.historyDetail .itemName {
  margin-bottom: 0.5em;
  font-weight: bold;
  font-size: var(--fz17);
  line-height: 1.3846;
}
.historyDetail .itemPrice {
  text-align: right;
}
.historyDetail .itemNum {
  text-align: right;
}
.historyDetail .subtotal {
  text-align: right;
  font-weight: bold;
}
.historyDetail .subtotal em {
  color: var(--green);
}
.historyDetail .total {
  margin-top: 0.75em;
  display: flex;
  justify-content: flex-end;
  text-align: right;
  font-weight: bold;
  font-size: var(--fz18);
  color: var(--green);
  line-height: 1.3;
}
.historyDetail .total dt {
  flex: 0 0 auto;
}
.historyDetail .used {
  margin-top: 1em;
  border: 1px solid var(--green);
  border-radius: 0.6667em;
  font-size: var(--fz18);
  font-weight: bold;
}
.historyDetail .used > div {
  display: flex;
}
.historyDetail .used dt {
  flex: 0 0 auto;
  width: 39.8936%;
  background-color: var(--green);
  padding: 0.5em;
  text-align: center;
  color: #fff;
}
.historyDetail .used dd {
  flex: 1 1 auto;
  padding: 0.5em;
  text-align: right;
}
.historyDetail .used dd span {
  font-size: var(--fz16);
}
.historyDetail .used > div:first-child dt {
  border-top-left-radius: calc(0.6667em - 1px);
}
.historyDetail .used > div:nth-child(n+2) dd {
  border-top: 1px solid var(--green);
}
.historyDetail .used > div:last-child dt {
  border-bottom-left-radius: calc(0.6667em - 1px);
}
.historyDetail .userInfo > div {
  border-bottom: 1px solid var(--gray03);
  padding: 0.8em 0;
}
.historyDetail .userInfo dt {
  margin-bottom: 0.5em;
  font-weight: bold;
}
.historyDetail .userInfo dd {
  text-align: right;
  font-size: var(--fz17);
}

.btnBack {
  margin: min(11.7188vw, 45px) auto;
  width: 81.875%;
}

.exchangeTab {
  list-style: none;
  display: flex;
  text-align: center;
  font-weight: bold;
  color: #828282;
  border-bottom: 1px solid var(--bdc02);
}
header:has(+ main.exchange > .exchangeTab) .btnHome {
  top: 17.5vw;
}
.exchangeTab > li {
  flex: 0 0 50%;
}
.exchangeTab button {
  position: relative;
  border: none;
  background-color: #fff;
  padding: 1em 5px 0.8em;
  width: 100%;
  font-size: var(--fz16);
}
.exchangeTab button::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: var(--bdc02);
  pointer-events: none;
}
.exchangeTab .active button {
  color: var(--green);
}
.exchangeTab .active button::before {
  height: 0.1667em;
  background-color: var(--green);
}

[id=exchangeItems] {
  background-color: #f0f0f0;
  padding-bottom: 3.5833em;
}
[id=exchangeItems] .lead {
  width: var(--width);
  margin: 0 auto 1.9em;
  padding-top: 2.3636em;
  font-size: var(--fz15);
}
[id=exchangeItems] .myPoint {
  padding-bottom: 4vw;
}
[id=exchangeItems] .myPoint .pointInfo {
  padding-right: min(4.6875vw, 18px);
  text-align: center;
}
[id=exchangeItems] .myPoint .txtSml {
  grid-column: 1/-1;
  grid-row: 2/3;
  padding: 8px min(4.6875vw, 18px) 0;
  font-weight: normal;
  font-size: var(--fz12);
}
[id=exchangeItems] .items {
  list-style: none;
  width: var(--width);
  margin: min(6.25vw, 24px) auto 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9.375vw 4.6875vw;
  font-size: var(--fz15);
}
[id=exchangeItems] .items > li {
  flex: 1 0 auto;
  max-width: 47.1223%;
}
[id=exchangeItems] .items .thumb {
  position: relative;
  z-index: 0;
  background-color: #fff;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: min(2.5vw, 10px);
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.9em;
  padding: 0.75em;
}
[id=exchangeItems] .items .thumb .tag {
  position: absolute;
  left: -0.2692em;
  top: -0.3846em;
  display: block;
  background-color: #DD007F;
  padding: 0.25em 0.5em;
  border-radius: 0 0 0.3462em 0.3462em;
  color: #fff;
  font-weight: bold;
  font-size: var(--fz17);
}
[id=exchangeItems] .items .thumb .tag::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 0;
  transform: skewX(30deg);
  transform-origin: left top;
  width: 100%;
  height: 0.3846em;
  background-color: #D00051;
}
[id=exchangeItems] .itemName {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  line-height: 1.6;
  font-weight: bold;
}
[id=exchangeItems] .itemPrice {
  margin-top: 0.5em;
  display: flex;
  font-size: var(--fz14);
}
[id=exchangeItems] .itemPrice dt {
  flex: 0 0 auto;
}
[id=exchangeItems] .itemPrice em {
  color: var(--pink);
}
[id=exchangeItems] .itemPoint {
  color: var(--green);
  font-weight: bold;
  font-size: var(--fz14);
}
[id=exchangeItems] .itemPoint .icon {
  display: inline-block;
  margin-right: 5px;
  width: 1.136em;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff;
  vertical-align: middle;
}
[id=exchangeItems] .itemPoint .icon img {
  display: block;
}
[id=exchangeItems] .itemNum {
  display: flex;
  align-items: center;
  font-size: var(--fz17);
  gap: 0.5em 1em;
  margin-top: 0.5em;
}
[id=exchangeItems] .itemNum label {
  display: block;
  flex: 0 0 auto;
  font-size: var(--fz16);
}
[id=exchangeItems] .itemBtn {
  margin-top: 1em;
}
[id=exchangeItems] .itemBtn .btn {
  background-color: var(--blue);
  padding: 0.6667em 0;
  font-size: inherit;
}

[id=popupItemAdded] {
  color: var(--green);
  font-weight: bold;
  text-align: center;
  font-size: var(--fz17);
}
[id=popupItemAdded] .content {
  width: 62.8125%;
}
[id=popupItemAdded] .contentInner {
  padding: 1.8462em 0em 1.6154em;
}
[id=popupItemAdded] .icon {
  width: 5.3077em;
  height: 5.3077em;
  border-radius: 50%;
  background-color: var(--green);
  margin: 1.23em auto 0;
  position: relative;
}
[id=popupItemAdded] .icon::before {
  content: "";
  position: absolute;
  right: 50%;
  bottom: calc(50% + 0.25em);
  translate: 50% 50%;
  width: 2em;
  height: 1.25em;
  border-left: 0.346em solid #fff;
  border-bottom: 0.346em solid #fff;
  rotate: -45deg;
}

[id=exchangeForm] {
  padding: 3em 0 1.9167em;
}
[id=exchangeForm] h2 {
  text-align: center;
  font-size: var(--fz21);
}
[id=exchangeForm] .cautionText {
  margin: 2.3333em auto 1.9em;
  border: 1px solid;
  border-radius: 0.5833em;
  padding: 1em;
  color: var(--red);
  font-weight: bold;
}
[id=exchangeForm] .cautionText .caution li {
  display: list-item;
  padding: 0;
  border-bottom: none;
}
[id=exchangeForm] h3 {
  font-size: var(--fz18);
}
[id=exchangeForm] .itemPrice {
  color: var(--green);
  font-weight: bold;
}
[id=exchangeForm] .itemPrice .icon {
  display: inline-block;
  width: 1.0833em;
  margin-right: 5px;
  vertical-align: middle;
}
[id=exchangeForm] .itemPrice .icon img {
  display: block;
}
[id=exchangeForm] .itemNum {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0.5em 0;
  gap: 0.5em 1em;
}
[id=exchangeForm] .btnDelete {
  margin-top: 0.5em;
}
[id=exchangeForm] .btnDelete button {
  border: none;
  background-color: inherit;
  color: var(--red);
  font-size: var(--fz15);
}
[id=exchangeForm] .canUse {
  border: 1px solid;
  position: relative;
  width: fit-content;
  margin: 2em auto 0;
  padding: 0.25em 2em 0;
  border-radius: 2em;
  font-size: var(--fz14);
  font-weight: bold;
  color: #4d4d4d;
}
[id=exchangeForm] .canUse::before, [id=exchangeForm] .canUse::after {
  content: "";
  position: absolute;
  width: 0.85em;
  height: 0.7em;
  background-color: #4d4d4d;
  right: 50%;
  top: 100%;
  translate: 50% 0;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
[id=exchangeForm] .canUse::after {
  background-color: #fff;
  scale: 0.8;
  transform-origin: center top;
}
[id=exchangeForm] .canUse dl {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
[id=exchangeForm] .canUse dt {
  flex: 0 0 auto;
}
[id=exchangeForm] .canUse dd {
  flex: 1 1 auto;
  overflow-wrap: break-word;
}
[id=exchangeForm] .used dt {
  display: flex;
  justify-content: center;
  align-items: center;
}
[id=exchangeForm] .used .point dd {
  display: flex;
}
[id=exchangeForm] .used .point dd input {
  flex: 1 0 0%;
  text-align: right;
  font-size: var(--fz18);
}
[id=exchangeForm] .used .point dd span {
  display: inline-block;
  padding-top: 1em;
  padding-left: 0.5em;
  flex: 0 0 auto;
}
[id=exchangeForm] .btnSelectItems {
  margin-top: 1.25em;
  padding-bottom: 1.5em;
}
[id=exchangeForm] .btnSelectItems .btn {
  width: fit-content;
  margin-left: auto;
  background-color: var(--blue);
  padding: 0.4545em 2em;
  font-size: var(--fz15);
}
[id=exchangeForm] .btnSubmit {
  border-top: 1px solid var(--bdc);
  padding-top: 1.9167em;
}

[id=popupConfirm] .content {
  width: 89.6875%;
}
[id=popupConfirm] .contentInner {
  border-radius: 0;
}
[id=popupConfirm] .popupHeader {
  border-bottom: 2px solid #CED2D6;
  display: flex;
}
[id=popupConfirm] .popupHeader .ttl {
  flex: 1 1 auto;
  padding: 0.6em 0 0.6em 0.75em;
  font-weight: normal;
  font-size: var(--fz17);
  line-height: 1.3;
}
[id=popupConfirm] .popupHeader .btnClose {
  display: flex;
}
[id=popupConfirm] .popupHeader .btnClose button {
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  background-color: inherit;
  font-size: min(6.4vw, 2.4rem);
  width: 1.75em;
}
[id=popupConfirm] .popupBody {
  padding: 2.72em 5.2% 2.27em;
  font-size: var(--fz16);
}
[id=popupConfirm] .popupBtns {
  list-style: none;
  display: flex;
}
[id=popupConfirm] .popupBtns li {
  flex: 1 0 0%;
}
[id=popupConfirm] .popupBtns button {
  border: none;
  border-radius: 0;
  width: 100%;
  padding: 15px 0;
  font-size: var(--fz18);
}
[id=popupConfirm] .popupBtns button:not(.btn) {
  background-color: #BFC4CA;
  line-height: 1.2;
}
[id=popupConfirm] .popupBtns button:not(.btn):active {
  opacity: 0.6;
}
[id=popupConfirm] .lead {
  margin-bottom: 1.9em;
  text-align: center;
  font-weight: bold;
  font-size: var(--fz18);
}
[id=popupConfirm] .cautionText {
  text-align: center;
  color: var(--red);
}
[id=popupConfirm] .cautionText p + p {
  margin-top: 0.4em;
}
[id=popupConfirm] .caution {
  margin-top: 1.2em;
  font-size: var(--fz13);
  line-height: 1.6;
}

.exchange .completeText {
  font-size: min(4vw, 1.6rem);
}

/* ----------------------------------------------
 * * credit
 * *----------------------------------------------*/
body:has(.credit) {
  background-color: #fff;
}
.credit .pageHeader + .lead {
  width: var(--width);
  margin: 0 auto 1em;
  font-size: var(--fz16);
}
.credit .btnRegist {
  width: var(--width);
  margin: min(14.0625vw, 52px) auto;
}
.credit .formBody .row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.credit .formBody .row > span {
  margin-left: 0.5em;
}
.credit .formBody .row > span:not(:last-child) {
  margin-right: 0.5em;
}
.credit .formBody .short {
  width: 50%;
}
.credit .formBtn {
  background-color: var(--bgc);
  margin: 0;
  padding: min(10.6667vw, 40px) 0;
  width: 100%;
  text-align: center;
}
.credit .formBtn button {
  width: 81.875%;
  margin-inline: auto;
}
.credit .imgCreditCards {
  margin-bottom: 1em;
  width: 76.5734%;
  padding: 0 0.5em;
}
.credit :where([type=tel], [type=text], [type=password], [type=email], [type=search]) {
  border: 1px solid var(--bdc03);
  font-size: var(--fz15);
}
.credit :where([type=tel], [type=text], [type=password], [type=email], [type=search]):focus {
  border-color: var(--pink);
}
.credit select {
  font-size: var(--fz15);
  background-size: 1em auto;
  background-position: right 0.45em center;
}
.credit .error :where([type=tel], [type=text], [type=password], [type=email], [type=search]) {
  border-color: var(--red);
}
.credit.info .formLabel {
  border-top: 1px solid var(--bdc02);
}
.credit.info .formBody {
  border-bottom: none;
  padding: 0;
}
.credit.info .formBody dl > div {
  display: flex;
  border-bottom: 1px solid #f5f5f5;
  padding: 1em calc((100% - var(--width)) / 2);
  color: #808080;
  font-size: var(--fz15);
}
.credit.info .formBody dt {
  font-weight: bold;
  flex: 0 0 auto;
  width: 6em;
  font-size: var(--fz14);
}
.credit.info .formBody dd {
  flex: 1 0 0%;
  min-width: 0;
  text-align: right;
}
.credit.info .formBtn {
  background-color: #fff;
  padding: 0;
  margin: 9.0625vw auto;
  width: 81.875%;
}

/* ----------------------------------------------
 * * contact
 * *----------------------------------------------*/
body:has(.contact) {
  background-color: #fff;
}
.contact .pageHeader + .lead {
  width: var(--width);
  margin: 0 auto 1em;
  font-size: var(--fz16);
}
.contact select {
  overflow: hidden;
  font-weight: inherit;
}
.contact :where(textarea) {
  border-width: 1px;
  border-color: var(--bdc03);
  border-radius: 0.2083em;
}
.contact .errorbox {
  font-weight: normal;
  border-radius: 0.2083em;
}
.contact .errorText {
  margin-top: 8px;
}
/* ======== 完了画面 ======== */
.contact .completeText {
  text-align: left;
}