:root {
  --primary-color-900: #222222;
  --primary-color-700: #515151;
  --primary-color-600: #696969;
  --primary-color-500: #818181;
  --primary-color-300: #B0B0B0;
  --primary-color-200: #C8C8C8;
  --primary-color-100: #DFDFDF;
  --primary-color-50: #F7F7F7;
  --primary-color-20: #F7F7F7;
  --primary-color-0: #FFFFFF;
  --accent-color-blue: #18308b;
  --accent-color-navy: #0E1C51;
  --pale-color-blue: #F3F5FF;
  --text-color-main: #222222;
  --text-color-sub: #696969;
  --text-color-place-holder: #989898;
  --text-color-disabled: #C8C8C8;
  --text-color-white: #FFFFFF;
  --text-color-required: #DA4453;
  --text-link-color-blue: #18308b;
  --text-link-color-navy: #0E1C51;
  --background-color-white: #FFFFFF;
  --background-color-gray: #F7F7F7;
  --background-color-black: #515151;
  --background-color-danger: #FFF8F8;
  --background-color-light-blue: #E2E6F6;
  --background-color-pale-blue: #F3F5FF;
  --status-color-danger: #E02F41;
  --status-color-warning: #E1911A;
  --status-color-sucess: #1C943E;
  --font-family: "Outfit", "Noto Sans JP", sans-self;
  --font-weight-bold: 700;
  --font-weight-regular: 400;
  --button-border-default: 1px solid var(--primary-color-900);
  --select-background-color: #F4F4F4;
  --font-large-text: var(--font-weight-bold) 32px/1.5 var(--font-family);
  --font-body-h1: var(--font-weight-bold) 24px/1.5 var(--font-family);
  --font-body-h2: var(--font-weight-bold) 20px/1.5 var(--font-family);
  --font-body-h3: var(--font-weight-bold) 18px/1.5 var(--font-family);
  --font-body-large-bold: var(--font-weight-bold) 16px/1.5 var(--font-family);
  --font-body-medium: var(--font-weight-regular) 14px/1.5 var(--font-family);
  --font-body-medium-bold: var(--font-weight-bold) 14px/1.5 var(--font-family);
  --font-body-small: var(--font-weight-regular) 12px/1.5 var(--font-family);
  --font-body-small-bold: var(--font-weight-bold) 12px/1.5 var(--font-family);
  --card-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
  --card-hover-box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.24);
}
@media screen and (max-width: 769px) {
  :root {
    --font-large-text: var(--font-weight-bold) 24px/1.5 var(--font-family);
    --font-body-h1: var(--font-weight-bold) 20px/1.5 var(--font-family);
    --font-body-h2: var(--font-weight-bold) 18px/1.5 var(--font-family);
    --font-body-h3: var(--font-weight-bold) 16px/1.5 var(--font-family);
  }
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address
, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center
, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas
, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  word-break: break-all;
}
body {
  padding: 0;
  margin: 0;
  color: var(--text-color-main);
  background: var(--primary-color-50);
  font-family: var(--font-family);
  font: var(--font-body-medium);
}
body.no-scroll {
  overflow: hidden;
}
main {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}
@media screen and (max-width: 1340px) {
  main {
    padding: 0 40px;
  }
}
@media screen and (max-width: 769px) {
  main {
    padding: 16px 16px 0;
    gap: 48px;
  }
}
section {
  width: 100%;
  margin: 0 auto;
}
.section {
  width: 100%;
  margin: auto;
  /* padding-top: 32px; */
}

.indent {
  padding-left:24px;
}
ol, ul {
  list-style: none;
}
a {
  color: var(--text-color-main);
}

/* ボタン */
button {
  cursor: pointer;
}
button:disabled,
button.disabled {
  cursor: not-allowed;
}
.button {
  background: var(--primary-color-900);
  color: var(--primary-color-0);
  border: none;
  border-radius: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 320px;
  height: 44px;
  max-width: 100%;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  cursor: pointer;
  text-align: center;
  font: var(--font-body-medium-bold);
  margin: 0 auto;
}
.button.small {
  height: 36px;
}
.button.large {
  height: 56px;
}
.button-primary {
}
.button-primary:hover {
  background: var(--text-link-color-blue);
}
.button-primary:disabled,.button-primary:hover:disabled,
.button-primary.disabled,.button-primary.disabled:hover {
  background: var(--text-color-disabled);
}
.button-primary img {
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(159deg) brightness(100%) contrast(101%);
}
.button-secondary {
  background: transparent;
  color: var(--primary-color-900);
  border: 1px solid var(--primary-color-900);
}
.button-secondary:hover {
  color: var(--text-link-color-blue);
  border: 1px solid var(--text-link-color-blue);
}
.button-secondary:disabled, .button-secondary:hover:disabled,
.button-secondary.disabled, .button-secondary.disabled:hover {
  background: var(--primary-color-50);
  color: var(--text-color-disabled);
  border-color: var(--text-color-disabled);
}
.button.arrow::after,
.button.arrow-up::after,
.button.arrow-down::after {
  content: '';
  display: inline-block;
  position: absolute;
  height: 24px;
  width: 24px;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(/static_files/img/icon/arrow-white.svg);
  background-repeat: no-repeat;
  background-size: cover;
}
.button.arrow-up::after {
  top: 10px;
  transform: rotate(-90deg);
}
.button.arrow-down::after {
  top: 10px;
  transform: rotate(90deg);
}
.button.arrow.small::after {
  height: 20px;
  width: 20px;
  right: 8px;
}
.button.arrow.large::after {
  right: 24px;
}
.button.button-secondary.arrow::after,
.button.button-secondary.arrow-up::after,
.button.button-secondary.arrow-down::after {
  background-image: url(/static_files/img/icon/arrow-black.svg);
}
.button span {
  text-align: center;
}
.button-secondary:hover img,
.button-secondary.arrow:hover::after,
.button-secondary.arrow-up:hover::after,
.button-secondary.arrow-down:hover::after {
  filter: sepia(100%) hue-rotate(190deg) saturate(600%) brightness(calc(54.0/41));
}
.button-tertiary {
  height: 36px;
  font: var(--font-body-medium);;
  color: var(--text-color-sub);
  border: 1px solid var(--primary-color-700);
  background: transparent;
}
@media screen and (max-width: 769px) {
  .button {
    width: 100%;
    height: 56px;
  }
  .button-tertiary {
    height: 44px;
  }
}
.button.top-margin {
  margin-top: 48px;
}
@media screen and (max-width: 769px) {
  .button.top-margin {
    margin-top: 32px;
  }
}

/* テキストリンク */
.text-link {
  color: var(--text-color-main);
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.02em;
  text-align: left;
  text-decoration: underline;
  margin: 16px auto 0;
  display: block;
  width: fit-content;
  background: none;
  border: none;
}
input[type=submit].text-link {
  background: none;
  border: none;
}
input[type=submit].text-link:hover {
  color:var(--text-link-color-blue);
}
.text-link:visited {
  color: var(--text-link-color-main);
}
.text-link.small {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.02em;
  text-align: left;
}

/* 確認画面 */
.confirm-wrap {
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 48px;
  border: 0;
}
@media screen and (max-width: 769px) {
  .confirm-wrap {
    row-gap: 32px;
  }
}

.sub-title {
  width: 100%;
  font: var(--font-body-h2);
  background: var(--primary-color-100);
  border-radius: 3px;
  margin-bottom: 16px;
  padding: 4px 16px;
  text-align: left;
  display: grid;
  align-items: center;
  box-sizing: border-box;
}

.detail-area {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 0 12px;
}
@media screen and (max-width: 769px) {
  .detail-area {
    padding: 0 8px;
  }
}

.detail-area p {
  text-wrap: wrap;
  word-break: break-all;
  text-align: left;
}

.detail-area a,
.detail-area button {
  grid-column: 3;
  text-decoration: none;
  font: var(--font-body-medium);
  margin: 0;
  width: 61px;
}

.detail-area li {
  text-align: left;
  font: var(--font-body-medium);
  margin-top: 8px;
}

.detail-area li.name {
  font: var(--font-body-medium-bold);
  margin: 0;
}

.button-area {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
@media screen and (max-width: 769px) {
  .button-area {
    row-gap: 16px;
  }
}

/* ダイアログ */
dialog {
  border: none;
  background: transparent;
  width: 100%;
  max-width: 600px;
  max-height: calc(100vh - 80px);
  color: var(--text-color-main);
}
@media screen and (max-width: 769px) {
  dialog {
    max-width: max-content;
    padding: 16px;
    width: auto;
  }
}
dialog:-internal-dialog-in-top-layer::backdrop {
  background: #222222;
  opacity: 0.5;
}
.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  background: var(--primary-color-100);
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.dialog-close::after {
  content: '';
  position: absolute;
  height: 16px;
  width: 16px;
  left: 6px;
  top: 50%;
  transform: translateY(-50%);
  background-image: url(/static_files/img/icon/close.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px;
}
.dialog-close:hover {
  background: var(--primary-color-500);
}
.dialog-close:hover::after {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(102deg) brightness(103%) contrast(106%);
}
dialog .frame-message {
  text-align: center;
}

/* ローディング */
#loading-dialog {
  pointer-events: none;
  text-align: center;
  outline: none;
}
#loading-dialog::before, .spinner-animation::before {
  content: '';
  animation: rotation 1s linear infinite;
  display: inline-block;
  width: 50px;
  height: 50px;
  background-image: url(/static_files/img/spinner.svg);
  background-size: cover;
  background-repeat: no-repeat;
}
.spin-image {
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}

/* 入力 */
input[type=radio],
input[type=checkbox] {
  position: relative;
  width: 20px;
  min-width: 20px;
  height: 20px;
  margin: 0;
  border: 1px solid var(--primary-color-500);
  background: var(--background-color-white);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=radio] {
  border-radius: 50%;
}

input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--primary-color-900);
  content: '';
}

input[type=checkbox] {
  border-radius: 4px;
}

input[type="checkbox"]:checked:before {
  position: absolute;
  top: 3px;
  left: 6px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid var(--primary-color-900);
  border-bottom: 2px solid var(--primary-color-900);
  content: '';
}

input[type="text"], input[type="email"], input[type="password"], select {
  width: 100%;
  height: 44px;
  max-width: 100%;
  display: block;
  margin: auto;
  border-radius: 8px;
  border: 1px solid var(--primary-color-100);
  box-sizing: border-box;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.02em;
  text-align: left;
  padding: 11.5px 16px;
}

select {
  -webkit-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

select {
  -webkit-appearance: none;
  appearance: none;
  color: var(--text-color-main);
  background-color: var(--background-color-white);
  background-image: url("/static_files/img/icon/chevron-bottom.svg");
  background-repeat: no-repeat;
  background-size: 20px auto;
  background-position: right 12px center;
  padding: 11.5px 36px 11.5px 16px;
}

textarea {
  width: 100%;
  height: 120px;
  border: 1px solid var(--primary-color-100);
  padding: 12px 16px;
  border-radius: 8px;
  box-sizing: border-box;
}

.input-count {
  color: var(--text-color-sub);
  font: var(--font-body-small);
  text-align: right;
}

.input-textarea {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4px;
}

/* エラー */
.error {
  max-width: 640px;
}
.error_heading {
  font-size: 32px;
  font-weight: bold;
}
.error_heading span {
  display: block;
  font: var(--font-body-medium);
}

/* エラーメッセージ */
.error_message {
  color: var(--status-color-danger);
  margin-bottom: 16px;
}

/* 注釈 */
.description {
  color: var(--text-color-sub);
  font: var(--font-body-small);
  text-align: left;
}
ul.description {
  margin: 4px 0 0;
}
ul.description li {
  list-style: none;
  padding-left: 1.2em;
  position: relative;
}
ul.description li:before {
  content: "※";
  position: absolute;
  left: 0;
}
.price-detail-item ul.description {
  width: 100%;
}

/* エラーバルーン */
.error-balloon-container {
  position: absolute;
  bottom: calc(100% + 10px);
  padding-top: 100px;
}
.error-balloon {
  position: relative;
  background: var(--background-color-white);
  border: 1px solid var(--status-color-danger);
  border-radius: 8px;
  padding: 8px 16px;
  padding-left: 40px;
  font: var(--font-body-medium-bold);
  letter-spacing: 0.02em;
  text-align: left;
  color: var(--status-color-danger);
}
.error-balloon::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 20px;
  height: 20px;
  background-image: url(/static_files/img/icon/caution.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.error-balloon::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  position: absolute;
  left: 10px;
  bottom: -16px;
  background: var(--background-color-white);
  border-left: 1px solid var(--status-color-danger);
  border-bottom: 1px solid var(--status-color-danger);
  transform: rotate(-45deg) translate(12px, 0px);
}
/* トースト */
.toast {
  position: fixed;
  bottom: calc(50% - 36px);
  display: grid;
  grid-template-columns: 16px 1fr 16px;
  width: 100%;
  z-index: 999999;
}
.toast p {
  grid-column: 2;
  justify-self: center;
  width: 100%;
  max-width: 500px;
  display: grid;
  grid-template-columns: 1fr auto 12px auto 1fr;
  z-index: 100000;
  background: rgba(34, 34, 34, 0.7);
  color: var(--text-color-white);
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(2px);
  border-radius: 8px;
  font-family: var(--font-body-large-bold);
  align-items: center;
  height: 72px;
  animation: fade-in 0.2s linear, fade-in 0.2s linear 2s reverse forwards;
}
.toast img {
  grid-column: 2;
}
.toast span {
  grid-column: 4;
}
@keyframes fade-in {
  0% { opacity: 0;}
  100% { opacity: 1;}
}
/* ページヘッダー */
.page-header {
  margin: auto;
}
.page-header > section {
  width: 100%;
  margin-top: 0;
  padding: 0 40px;
  box-sizing: border-box;
}
.page-header .fixed-header.is-show {
  padding-top: 120px;
}
.page-header .fixed-header.is-show .vpoint-bar {
  position: fixed;
  bottom: 100%;
  left: 0;
}
.page-header .fixed-header.is-show .header-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 40px;
  box-sizing: border-box;
  background: var(--primary-color-50);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
  z-index: 9999;
}
@media screen and (max-width: 769px) {
  .page-header > section,
  .page-header .fixed-header.is-show .header-bar {
    padding: 0 16px;
  }
  .page-header .fixed-header.is-show {
    padding-top: 92px;
  }
}

/* Vポイントヘッダー */
.vpoint-bar {
  padding: 12px 0 0;
  margin-bottom: 4px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
.vpoint-bar .vpoint-bar-logo {
  height: 100%;
  margin-right: 12px;
}
.vpoint-bar .vpoint-bar-info {
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  letter-spacing: 0.02em;
}
.vpoint-bar .vpoint-bar-info a {
  text-decoration: none;
}
.vpoint-bar .vpoint-bar-info .label {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.02em;
  margin-right: 12px;
}
.vpoint-bar .vpoint-bar-info .point {
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  letter-spacing: 0.06em;
}
.vpoint-bar .vpoint-bar-info .unit {
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.06em;
  text-align: left;
}
.vpoint-bar .vpoint-bar-link {
  margin-left: auto;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0.02em;
}
.vpoint-bar .vpoint-bar-link a,
.vpoint-bar .vpoint-bar-link a:visited {
  color: var(--text-color-main);
  text-decoration: none;
}
.vpoint-bar .vpoint-bar-link img {
  vertical-align: middle;
  width: 20px;
  height: 20px;
  vertical-align: sub;
  margin-left: 24px;
  margin-right: 8px;
}
@media screen and (max-width: 769px) {
  .vpoint-bar .vpoint-bar-link {
    display: none;
  }
}
/* カード */
.card {
  background: var(--background-color-white);
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.08);
  border-radius: 16px;
}
/* メニュー */
.page-menu {
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 99999;
  display: grid;
}
.page-menu.hidden {
  display: none;
}
.page-menu .menu-area {
  justify-self: right;
  background: var(--primary-color-900);
  width: 390px;
  height: 100%;
  display: grid;
  grid-template-rows: repeat(3, auto) 1fr auto;
}
@media screen and (max-width: 769px) {
  .page-menu .menu-area {
    width: 100%;
  }
}
.page-menu .header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  margin-top: 10px;
}
@media screen and (max-width: 769px) {
  .page-menu .header {
    justify-content: space-between;
  }
}
.page-menu .header .logo {
  grid-column: 1;
  justify-self: left;
  margin-left: 16px;
  display: none;
}
.page-menu .logo img {
  width: 110px;
  filter: brightness(100);
}
.page-menu .close-button {
  grid-column: 3;
  background: var(--primary-color-500);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: unset;
  justify-self: right;
  margin-right: 16px;
  display: grid;
  align-items: center;
  justify-items: center;
  cursor: pointer;
}
.page-menu .close-button img {
  width: 24px;
  height: 24px;
  filter: brightness(4.0);
}
.page-menu .user {
  margin: 0;
  margin-top: 48px;
  width: 342px;
  justify-self: center;
  display: grid;
  grid-template-columns: 1fr auto auto 1fr auto;
  padding: 0px 24px;
  column-gap: 8px;
  background: var(--primary-color-0);
}
.page-menu .button img, .page-menu .button span {
  margin: unset;
  position: unset;
  justify-self: unset;
  text-align: unset;
}
.page-menu .user-title {
  margin: unset;
  position: unset;
  justify-self: unset;
  text-align: unset;
}
.page-menu .user img {
  width: 20px;
  height: 20px;
}
.page-menu .user span {
  grid-column: 3;
}
.page-menu .user-icon {
  grid-column: 2;
  filter: brightness(2.0);
}
.page-menu .arrow-icon {
  grid-column: 5;
}
.page-menu ul {
  list-style-type: none;
}
.page-menu a {
  text-decoration: none;
}
.page-menu .category {
  padding: 0;
  margin-top: 48px;
}
.page-menu .category a, .page-menu .category button {
  width: 100%;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: 1fr auto;
  text-align: left;
  font: var(--font-body-medium);
  color: var(--text-color-white);
  padding: 20px 16px;
}
.page-menu .category li {
  border-bottom: 1px solid var(--primary-color-600);
}
.page-menu .category li:first-child {
  border-top: 1px solid var(--primary-color-600);
}
.page-menu .category li:hover {
  background: var(--primary-color-700);
}
.page-menu .category a::after {
  grid-column: 2;
  content: "";
  background-image: url("/static_files/img/icon/chevron-right.svg");
  background-repeat: no-repeat;
  background-size: contain;
  filter: brightness(2.0);
  display: inline-block;
  width: 20px;
  height: 20px;
}
.page-menu .category button {
  background: unset;
  border: unset;
}
.page-menu .sns-menu {
  grid-row: 5;
  margin-bottom: 48px;
}
@media screen and (max-width: 769px) {
  .page-menu .header .logo {
    display: unset;
  }
}
/* パンくずリスト */
.breadcrumbs {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  margin: 8px 0 0;
  font: var(--font-body-small);
  flex-wrap: wrap;
  word-break: break-all;
  text-align: left;
}
@media screen and (max-width: 769px) {
  .breadcrumbs {
    order: 10;
    gap: 8px 0;
  }
}
.breadcrumbs li {
  list-style: none;
  position: relative;
  padding-left: 24px;
}
.breadcrumbs li:first-child {
  padding-left: 0;
}
.breadcrumbs li::before {
  content: "";
  position: absolute;
  display: block;
  background: url(/static_files/img/icon/chevron-right.svg) no-repeat;
  top: 2px;
  left: 8px;
  width: 12px;
  height: 12px;
}
.breadcrumbs li:first-child::before {
  content: none;
}
.breadcrumbs .image_item_text {
  display: none;
}
.breadcrumbs img {
  display: inline-block;
  max-width: 18px;
  max-height: 18px;
  vertical-align: text-bottom;
  border: 0;
}
.breadcrumbs .text-link {
  margin: unset;
  padding: unset;
  letter-spacing: unset;
  line-height: unset;
  font-size: unset;
  cursor: pointer;
}
.breadcrumbs input[type=submit].text-link:hover {
  color: var(--text-color-main);
}

/* 白枠  */
.frame {
  background: #FFFFFF;
  width: 100%;
  border-radius: 12px;
  padding: 48px 32px;
  display: inline-block;
  box-sizing: border-box;
  box-shadow: var(--card-box-shadow);
  position: relative;
}
@media screen and (max-width: 769px) {
  .frame {
    padding: 32px 24px;
  }
}
dialog .frame {
  /* max-height: 90vh; */
  overflow-y: auto;
  animation: fade-in 0.2s linear;
  padding: 40px 32px 32px;
}
dialog .frame-title {
  font: var(--font-body-large-bold);
  margin-bottom: 16px;
}
dialog .frame-msg {
  text-align: center;
}
dialog .dialog-button {
  display: flex;
  flex-direction: row-reverse;
  column-gap: 16px;
  margin-top: 32px;
}
@media screen and (max-width: 769px) {
  dialog .frame {
    width: 100%;
    padding: 40px 24px 32px;
  }
  dialog .dialog-button {
    flex-direction: column;
    row-gap: 16px;
    margin-top: 24px;
  }
}
.inner-frame {
  margin-top: 32px;
  padding: 16px;
  border-radius: 12px;
  background: var(--background-color-gray);
  box-sizing: border-box;
}
@media screen and (max-width: 769px) {
  .inner-frame {
    margin-top: 24px;
  }
}
.frame-logo {
  width: 68px;
  height: 68px;
}
@media screen and (max-width: 769px) {
  .frame-logo {
    width: 48px;
    height: 48px;
  }
}
.frame-text {
  font: var(--font-body-medium);
  margin-top: 20px;
}
@media screen and (max-width: 769px) {
  .frame-text {
    margin-top: 12px;
  }
}
.frame-title {
  font: var(--font-body-medium-bold);
  letter-spacing: 0.02em;
  text-align: center;
  margin-bottom: 8px;
}
.frame-title img {
  height: 1em;
  margin-right: 0.5em;
  vertical-align: text-bottom;
}
.frame-message {
  margin: 20px 0 32px;
}
@media screen and (max-width: 769px) {
  .frame-message {
    margin: 12px 0 32px;
  }
}
.frame-body {
  text-align: left;
  font: var(--font-body-small);
  list-style-type: disc;
  margin-left: 20px;
}
/* .frame-body li {
  margin-left: 1em;
  line-height: 150%;
} */
/* ヘッダー */
.header-bar {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.header-title {
  grid-column: 2;
  display: grid;
  align-items: center;
}
.header-title img {
  height: 82px;
}
@media screen and (max-width: 769px) {
  .header-title img {
    height: 58px;
  }
}
.header-bar-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header-bar-menu-list {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-bar-menu-list .button {
  width: 140px;
  margin-top: 0;
}
.header-bar-menu-list .button img {
  width: 20px;
  height: 20px;
}
.header-bar-menu-list .header-cart {
  position: relative;
}
.header-bar-menu-list .header-cart .cart-count {
  background: var(--primary-color-0);
  color: var(--text-link-color-blue);
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0.1em;
  text-align: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border-radius: 50%;
}
.header-bar-menu-list .header-cart .cart-count:empty {
  display: none;
}
@media screen and (max-width: 769px) {
  .header-bar-menu {
    gap: 24px;
  }
  .header-bar-menu-list .button {
    width: 28px;
    height: 28px;
    border: none;
    background: none;
  }
  .header-bar-menu-list .button span {
    display: none;
  }
  .header-bar-menu-list .button img {
    filter: none;
  }
  .header-bar-menu-list .button img {
    width: 28px;
    height: 28px;
  }
  .header-bar-menu-list .header-cart .cart-count {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--text-link-color-blue);
    color: var(--primary-color-0);
  }
}
.header-menu {
  grid-column: 8;
  background: var(--primary-color-500);
  border-radius: 50%;
  display: grid;
  align-content: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: unset;
  cursor: pointer;
}
/* ヘッダー */
.section_header {
  text-align: center;
  margin-bottom: 32px;
  color: var(--primary-color-900);
  font: var(--font-body-h1);
}
@media screen and (max-width: 769px) {
  .section_header {
    margin: 0 0 24px;
  }
}
.section_header > span {
  display: block;
  font: var(--font-body-medium);
  margin-top: 16px;
}
@media screen and (max-width: 769px) {
  .section_header > span {
    margin-top: 12px;
  }
}
.section_header .sub_header {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  font-weight: normal;
  font-size: 14px;
}
.header-description {
  text-align: center;
}
/* フッター */
.guide .section_header {
  margin-top: 96px;
}
.guide ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 48px;
  font: var(--font-body-medium);
}
.guide a {
  text-decoration: none;
  word-break: break-all;
  display: grid;
  align-items: center;
  justify-items: center;
  color: var(--text-color-main);
}
.guide li:nth-child(1) {
  grid-column: 2;
}
.guide li:nth-child(2) {
  grid-column: 3;
}
.guide li:nth-child(3) {
  grid-column: 4;
}
.guide a {
  display: grid;
  grid-template-rows: repeat(2, auto);
  gap: 16px;
}
.guide .guide-button {
  background: var(--background-color-white);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--card-box-shadow);
}
.guide .guide-button:hover {
  box-shadow: var(--card-hover-box-shadow);
  border-radius: 50%;
}
.guide .guide-button img {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 769px) {
  .guide ul {
    column-gap: 32px;
  }
  .guide .guide-button {
    background: var(--background-color-white);
    width: 80px;
    height: 80px;
  }
  .guide .guide-button img {
    width: 32px;
    height: 32px;
  }
}
.footer-bar {
  background: var(--primary-color-900);
  text-align: center;
  font-size: 10px;
}
.footer-decoration {
  border-radius: 0 0 32px 32px;
  background: var(--primary-color-50);
  height: 120px;
}
@media screen and (max-width: 769px) {
  .footer-decoration {
    height: auto;
    min-height: 96px;
  }
}
.footer-image {
  margin-top: 72px;
  height: 63px;
  filter: grayscale(100%) brightness(100000%);
}
@media screen and (max-width: 769px) {
  .footer-image {
    margin-top: 64px;
  }
}
.footer-bar a {
  text-decoration: none;
  word-break: break-all;
}
.footer-bar ul {
  list-style: none;
  padding: 0;
}
.sns-menu {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1fr repeat(4, auto) 1fr;
  column-gap: 24px;
}
@media screen and (max-width: 769px) {
  .sns-menu {
    margin-top: 12px;
  }
}
.sns-menu li {
  width: 24px;
  height: 24px;
}
.sns-menu li:hover {
  opacity: 0.8;
}
.sns-menu img {
  width: 100%;
}
.menu-x {
  grid-column: 2;
}
.menu-instagram {
  grid-column: 3;
}
.menu-facebook {
  grid-column: 4;
}
.terms-menu {
  margin: 48px 24px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 32px;
  font: var(--font-body-small);
}
@media screen and (max-width: 769px) {
  .terms-menu {
    margin: 32px 24px 0;
    gap: 12px 32px;
  }
}
.terms-menu li {
  position: relative;
}
.terms-menu li:nth-of-type(n+2)::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 0;
  width: 1px;
  height: 16px;
  background-color: var(--background-color-white);
}
.terms-menu li:nth-child(1) {
  grid-column: 2;
}
.terms-menu li:nth-child(2) {
  grid-column: 3;
}
.terms-menu li:nth-child(3) {
  grid-column: 4;
}
.terms-menu a {
  color: var(--text-color-white);
}
.terms-menu a:hover {
  text-decoration: underline;
}
.license {
  margin: 48px 24px 0;
  color: var(--primary-color-200);
  font-size: 10px;
}
@media screen and (max-width: 769px) {
  .license {
    margin: 32px 24px 0;
  }
}
.copyright {
  color: var(--primary-color-200);
  font-size: 10px;
  line-height: 1.5;
  margin-top: 12px;
  padding-bottom: 32px;
}
/* 共有コンポーネント */
/* ステップ */
.step__list {
  display: flex;
  gap: 32px;
  width: 100%;
}
@media screen and (max-width: 769px) {
  .step__list {
    flex-direction: column;
  }
}
.step__list__item {
  border-radius: 8px;
  background: var(--background-color-white, #FFF);
  display: flex;
  flex: 1;
  padding: 24px 16px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  align-self: stretch;
  font: var(--font-body-medium-bold);
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 769px) {
  .step__list__item {
    display: grid;
    grid-template-columns: 60px 1fr 32px;
    align-items: center;
    justify-items: flex-start;
    padding: 8px 16px 8px 0;
  }
}
.step__list__item:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: -23px;
  transform: translateY(-50%);
  width: 10px;
  height: 16px;
  background: url(/static_files/img/arrow_right.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
@media screen and (max-width: 769px) {
  .step__list__item:after {
    top: auto;
    right: auto;
    left: 50%;
    bottom: -25px;
    transform: translate(-50%, -50%);
    transform: rotate(90deg);
  }
}
.step__list__item:last-child:after {
  content: none;
}
.step__list__item img {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 769px) {
  .step__list__item img {
    width: 32px;
    height: 32px;
  }
}
.step__list-step {
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.96px;
  color: var(--accent-color-blue);
  width: 48px;
  padding-bottom: 24px;
  position: relative;
  border-bottom: 2px solid var(--primary-color-200);
}
@media screen and (max-width: 769px) {
  .step__list-step {
    border-bottom: 0;
    border-right: 2px solid var(--primary-color-200);
    padding: 0;
    width: 100%;
  }
}
.step__list-step span {
  display: block;
  font-size: 24px;
}
/* キャンセル不可/代金引換不可*/
.impossible-info {
  text-align: left;
}
.impossible-info .impossible-tag {
  display: inline-block;
  border: 1px solid var(--primary-color-200);
  color: var(--text-color-sub);
  padding: 2px 8px;
  font: var(--font-body-small);
  margin-right: 4px;
  margin-bottom: 4px;
  border-radius: 4px;
}