@charset "UTF-8";
/* ========================================
root
======================================== */
:root {
  interpolate-size: allow-keywords;
  /* ========================================
      ScrollBar
  ======================================== */
  --scrollBehavior: auto;
  --common_scrollbarWidth: 7.5px;
  --common_scrollbarHeight: 7.5px;
  --common_scrollbarBorderRadius: 0;
  --common_scrollbarTrackBg: #333;
  --common_scrollbarThumbBg: #555;
  /* ========================================
  // selection
  ======================================== */
  --selectionBgColor: rgba(0, 179, 237, 0.9);
  --selectionFontColor: #fff;
  /* ========================================
  // Main Color
  ======================================== */
  --MainBgColor: #fff;
  --MainFontColor: #2c2c2c;
  --LinkColor: #2c2c2c;
  --LinkHoverColor: #2c2c2c;
  /* ========================================
  // font
  ======================================== */
  --fontFamily:
      "Noto Sans JP", "Hiragino Sans W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo,
      "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --fontFeatureSettings: "pkna" on;
  --fontSize: 16px;
  --lineHeight: 1.5;
  --fontWeight: 400;
  --wordBreak: break-all;
  /* ========================================
  Focus
  ======================================== */
  --focusColor: #0066cc;
  --focusRing: rgba(0, 102, 204, 0.25);
}

:root {
  --roboto: "roboto", sans-serif;
  --noto-sans-jp: "Noto Sans JP", sans-serif;
}

/* ========================================
defaults
======================================== */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* ========================================
html, body
======================================== */
::-moz-selection {
  background-color: var(--selectionBgColor);
  color: var(--selectionFontColor);
}
::selection {
  background-color: var(--selectionBgColor);
  color: var(--selectionFontColor);
}

html {
  scroll-behavior: var(--common_scrollBehavior);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
}
html, html * {
  scrollbar-color: var(--common_scrollbarThumbBg) var(--common_scrollbarTrackBg);
  scrollbar-width: thin;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

body {
  position: relative;
  display: block;
  width: 100%;
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  vertical-align: baseline;
  word-break: var(--wordBreak);
  font-family: var(--fontFamily);
  -webkit-font-feature-settings: var(--fontFeatureSettings);
          font-feature-settings: var(--fontFeatureSettings);
  font-size: var(--fontSize);
  line-height: var(--lineHeight);
  font-weight: var(--fontWeight);
  font-variant-numeric: tabular-nums;
  font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-optical-sizing: auto;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  background: var(--MainBgColor);
  color: var(--MainFontColor);
}

/* ========================================
Inline elements
======================================== */
strong,
b {
  font-weight: bold;
}

em {
  font-style: italic;
}

i {
  font-style: italic;
}

small {
  font-size: 0.875em;
}

mark {
  background-color: transparent;
  color: inherit;
  padding-inline: 0.125em;
}

sub,
sup {
  font-size: 0.75em;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

code,
kbd,
samp {
  font-family: var(--fontFamily-mono);
  font-size: 0.875em;
}

code {
  background-color: transparent;
  padding: 0.125em 0.25em;
  border-radius: 3px;
}

kbd {
  background-color: transparent;
  border: 1px solid #ccc;
  border-radius: 3px;
  padding: 0.125em 0.375em;
  font-size: 0.8125em;
}

abbr[title] {
  cursor: help;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  text-underline-offset: 0.125em;
}

del {
  text-decoration: line-through;
}

ins {
  text-decoration: underline;
}

q::before {
  content: open-quote;
}
q::after {
  content: close-quote;
}

cite {
  font-style: italic;
}

dfn {
  font-style: italic;
}

var {
  font-style: italic;
}

/* ========================================
Links
======================================== */
a {
  position: relative;
  display: inline;
  color: var(--LinkColor);
  text-decoration: none;
  -webkit-transition: color var(--transitionDuration) ease;
  transition: color var(--transitionDuration) ease;
}
@media (any-hover: hover) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media (any-hover: hover) {
  a:hover {
    color: var(--LinkHoverColor);
    text-decoration: none;
  }
}
a:active, a:hover {
  outline: 0;
}
a:focus-visible {
  outline: 2px solid var(--focusColor);
  outline-offset: 2px;
}

/* ========================================
Lists - ul, ol, li, dl, dt, dd
======================================== */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-position: inside;
}

ul ul,
ol ol,
ul ol,
ol ul {
  margin-left: 1em;
}

li {
  margin: 0;
  padding: 0;
}

/* ========================================
Media - img, picture, video, audio, iframe, svg
======================================== */
img {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
img.lazy {
  will-change: mask-image;
  opacity: 0;
  -webkit-mask-size: 100% 300%;
          mask-size: 100% 300%;
  -webkit-mask-position: 0 100%;
          mask-position: 0 100%;
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(33%, #000), color-stop(66%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
  -webkit-mask-image: -webkit-linear-gradient(top, #000, #000 33%, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0) 100%);
          mask-image: -webkit-gradient(linear, left top, left bottom, from(#000), color-stop(33%, #000), color-stop(66%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0)));
          mask-image: linear-gradient(to bottom, #000, #000 33%, rgba(0, 0, 0, 0) 66%, rgba(0, 0, 0, 0) 100%);
}
img.lazy.loaded {
  -webkit-transition: all 1.5s ease;
  transition: all 1.5s ease;
  opacity: 1;
  -webkit-mask-position: 0% 0%;
          mask-position: 0% 0%;
}

picture {
  position: relative;
  display: block;
}

figure {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
}

figcaption {
  position: relative;
  display: block;
  -webkit-margin-before: 0.5em;
          margin-block-start: 0.5em;
  font-size: 0.875em;
  color: #666;
}

video {
  display: inline-block;
  vertical-align: baseline;
  max-width: 100%;
}

audio {
  display: inline-block;
  vertical-align: baseline;
}
audio:not([controls]) {
  display: none;
  height: 0;
}

canvas {
  display: inline-block;
  vertical-align: baseline;
}

iframe {
  max-width: 100%;
  border: 0;
}

svg {
  vertical-align: middle;
  max-width: 100%;
}
svg:not(:root) {
  overflow: hidden;
}
svg.symbols {
  display: none;
}

.media-container {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}
.media-container > iframe,
.media-container > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ========================================
Forms
======================================== */
:where(button, [type=button], [type=reset], [type=submit]) {
  -ms-touch-action: manipulation;
      touch-action: manipulation;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
  color: inherit;
  font: inherit;
  margin: 0;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  cursor: pointer;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=search],
input[type=number],
input[type=date],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=time] {
  display: block;
  width: 100%;
  padding: 0.5em 0.75em;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-transition: border-color var(--transitionDuration) ease, -webkit-box-shadow var(--transitionDuration) ease;
  transition: border-color var(--transitionDuration) ease, -webkit-box-shadow var(--transitionDuration) ease;
  transition: border-color var(--transitionDuration) ease, box-shadow var(--transitionDuration) ease;
  transition: border-color var(--transitionDuration) ease, box-shadow var(--transitionDuration) ease, -webkit-box-shadow var(--transitionDuration) ease;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=date]:focus,
input[type=datetime-local]:focus,
input[type=month]:focus,
input[type=week]:focus,
input[type=time]:focus {
  outline: none;
  border-color: var(--focusColor);
  -webkit-box-shadow: 0 0 0 3px var(--focusRing);
          box-shadow: 0 0 0 3px var(--focusRing);
}
input[type=text]:disabled,
input[type=email]:disabled,
input[type=tel]:disabled,
input[type=url]:disabled,
input[type=password]:disabled,
input[type=search]:disabled,
input[type=number]:disabled,
input[type=date]:disabled,
input[type=datetime-local]:disabled,
input[type=month]:disabled,
input[type=week]:disabled,
input[type=time]:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
input[type=text]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=url]::-webkit-input-placeholder, input[type=password]::-webkit-input-placeholder, input[type=search]::-webkit-input-placeholder, input[type=number]::-webkit-input-placeholder, input[type=date]::-webkit-input-placeholder, input[type=datetime-local]::-webkit-input-placeholder, input[type=month]::-webkit-input-placeholder, input[type=week]::-webkit-input-placeholder, input[type=time]::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=password]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=date]::-moz-placeholder, input[type=datetime-local]::-moz-placeholder, input[type=month]::-moz-placeholder, input[type=week]::-moz-placeholder, input[type=time]::-moz-placeholder {
  color: #999;
  opacity: 1;
}
input[type=text]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=url]:-ms-input-placeholder, input[type=password]:-ms-input-placeholder, input[type=search]:-ms-input-placeholder, input[type=number]:-ms-input-placeholder, input[type=date]:-ms-input-placeholder, input[type=datetime-local]:-ms-input-placeholder, input[type=month]:-ms-input-placeholder, input[type=week]:-ms-input-placeholder, input[type=time]:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
input[type=text]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=url]::-ms-input-placeholder, input[type=password]::-ms-input-placeholder, input[type=search]::-ms-input-placeholder, input[type=number]::-ms-input-placeholder, input[type=date]::-ms-input-placeholder, input[type=datetime-local]::-ms-input-placeholder, input[type=month]::-ms-input-placeholder, input[type=week]::-ms-input-placeholder, input[type=time]::-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder,
input[type=password]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder,
input[type=date]::placeholder,
input[type=datetime-local]::placeholder,
input[type=month]::placeholder,
input[type=week]::placeholder,
input[type=time]::placeholder {
  color: #999;
  opacity: 1;
}

textarea {
  display: block;
  width: 100%;
  min-height: 8em;
  padding: 0.5em 0.75em;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  resize: vertical;
  line-height: inherit;
  -webkit-transition: border-color var(--transitionDuration) ease, -webkit-box-shadow var(--transitionDuration) ease;
  transition: border-color var(--transitionDuration) ease, -webkit-box-shadow var(--transitionDuration) ease;
  transition: border-color var(--transitionDuration) ease, box-shadow var(--transitionDuration) ease;
  transition: border-color var(--transitionDuration) ease, box-shadow var(--transitionDuration) ease, -webkit-box-shadow var(--transitionDuration) ease;
}
textarea:focus {
  outline: none;
  border-color: var(--focusColor);
  -webkit-box-shadow: 0 0 0 3px var(--focusRing);
          box-shadow: 0 0 0 3px var(--focusRing);
}
textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
textarea::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}
textarea::-moz-placeholder {
  color: #999;
  opacity: 1;
}
textarea:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
textarea::-ms-input-placeholder {
  color: #999;
  opacity: 1;
}
textarea::placeholder {
  color: #999;
  opacity: 1;
}

select {
  display: block;
  width: 100%;
  padding: 0.5em 2.5em 0.5em 0.75em;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75em center;
  cursor: pointer;
  -webkit-transition: border-color var(--transitionDuration) ease, -webkit-box-shadow var(--transitionDuration) ease;
  transition: border-color var(--transitionDuration) ease, -webkit-box-shadow var(--transitionDuration) ease;
  transition: border-color var(--transitionDuration) ease, box-shadow var(--transitionDuration) ease;
  transition: border-color var(--transitionDuration) ease, box-shadow var(--transitionDuration) ease, -webkit-box-shadow var(--transitionDuration) ease;
}
select::-ms-expand {
  display: none;
}
select:focus {
  outline: none;
  border-color: var(--focusColor);
  -webkit-box-shadow: 0 0 0 3px var(--focusRing);
          box-shadow: 0 0 0 3px var(--focusRing);
}
select[multiple] {
  background-image: none;
  -webkit-padding-end: 0.75em;
          padding-inline-end: 0.75em;
  height: auto;
}
select:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

button {
  border: none;
  background-color: transparent;
  cursor: pointer;
}
button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

input[type=checkbox],
input[type=radio] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 1.25em;
  height: 1.25em;
  margin: 0;
  padding: 0;
  vertical-align: middle;
  border: 2px solid #333;
  background-color: #fff;
  cursor: pointer;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-transition: border-color 0.2s ease, background-color 0.2s ease;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}
input[type=checkbox]:focus-visible,
input[type=radio]:focus-visible {
  outline: 2px solid var(--focusColor);
  outline-offset: 2px;
}

input[type=checkbox] {
  border-radius: 4px;
}
input[type=checkbox]:checked {
  background-color: #333;
  border-color: #333;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' d='M3.5 8.5L6.5 11.5L12.5 4.5'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

input[type=radio] {
  border-radius: 50%;
}
input[type=radio]:checked {
  border-color: #333;
  background-color: #fff;
  -webkit-box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 1.25em #333;
          box-shadow: inset 0 0 0 3px #fff, inset 0 0 0 1.25em #333;
}

label {
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
label:has(input[type=checkbox]), label:has(input[type=radio]) {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 1em 1.5em;
}

legend {
  font-weight: 700;
  padding-inline: 0.5em;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
          box-shadow: 0 0 0px 1000px #fff inset;
  -webkit-text-fill-color: #333 !important;
}

input:-webkit-autofill, input:autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
          box-shadow: 0 0 0px 1000px #fff inset;
  -webkit-text-fill-color: #333 !important;
}
input:-webkit-autofill:focus {
  caret-color: #333 !important;
}
input:-webkit-autofill:focus, input:autofill:focus {
  caret-color: #333 !important;
}

input[type=number] {
  -moz-appearance: textfield;
}
input[type=number]::-webkit-outer-spin-button, input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* ========================================
Sections - Semantic HTML5 elements
======================================== */
header,
aside,
footer,
main,
menu,
nav,
div,
hgroup,
section,
article {
  position: relative;
  display: block;
}

main {
  display: block;
}

details {
  position: relative;
  display: block;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 1em;
}
details[open] > summary {
  -webkit-margin-after: 0.75em;
          margin-block-end: 0.75em;
}

summary {
  position: relative;
  display: block;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
summary::-webkit-details-marker {
  display: none;
}
summary::before {
  content: "▶";
  display: inline-block;
  -webkit-margin-end: 0.5em;
          margin-inline-end: 0.5em;
  font-size: 0.75em;
  -webkit-transition: -webkit-transform var(--transitionDuration) ease;
  transition: -webkit-transform var(--transitionDuration) ease;
  transition: transform var(--transitionDuration) ease;
  transition: transform var(--transitionDuration) ease, -webkit-transform var(--transitionDuration) ease;
}
details[open] > summary::before {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
summary:focus-visible {
  outline: 2px solid var(--focusColor);
  outline-offset: 2px;
}

dialog {
  position: fixed;
  inset: 0;
  margin: auto;
  padding: 1.5em;
  background-color: transparent;
  border: none;
  border-radius: 8px;
  -webkit-box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 24px rgba(0, 0, 0, 0.2);
  max-width: 90vw;
  max-height: 85vh;
  overflow: auto;
}
dialog::-webkit-backdrop {
  background-color: transparent;
}
dialog::-ms-backdrop {
  background-color: transparent;
}
dialog::backdrop {
  background-color: transparent;
}
dialog:not([open]) {
  display: none;
}

[hidden],
template {
  display: none;
}

address {
  position: relative;
  display: block;
  font-style: normal;
  line-height: inherit;
}

time {
  position: relative;
  display: inline;
}

/* ========================================
Misc - hr, progress, meter, etc.
======================================== */
hr {
  display: block;
  height: 0;
  border: 0;
  -webkit-border-before: 1px solid #ddd;
          border-block-start: 1px solid #ddd;
  margin-block: 2em;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

progress {
  display: inline-block;
  vertical-align: baseline;
  width: 100%;
  max-width: 300px;
  height: 8px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  border-radius: 4px;
  overflow: hidden;
}
progress::-webkit-progress-bar {
  background-color: transparent;
  border-radius: 4px;
}
progress::-webkit-progress-value {
  background-color: var(--focusColor);
  border-radius: 4px;
}
progress::-moz-progress-bar {
  background-color: var(--focusColor);
  border-radius: 4px;
}

meter {
  display: inline-block;
  vertical-align: baseline;
  width: 100%;
  max-width: 300px;
  height: 8px;
}

output {
  display: inline-block;
}

[hidden] {
  display: none !important;
}

.visually-hidden,
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.visually-hidden-focusable:focus, .visually-hidden-focusable:focus-within,
.sr-only-focusable:focus,
.sr-only-focusable:focus-within {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
  -webkit-clip-path: none;
          clip-path: none;
  white-space: normal;
}

.print-only {
  display: none;
}
@media print {
  .print-only {
    display: block;
  }
}

@media print {
  .no-print {
    display: none !important;
  }
}

/* ========================================
Utilities - ユーティリティクラス
======================================== */
@media (min-width: 1025px) {
  .pc_none {
    display: none !important;
  }
}

@media (max-width: 767px) {
  .sp_none {
    display: none !important;
  }
}

.fw-light {
  font-weight: 300;
}
.fw-normal {
  font-weight: 400;
}
.fw-bold {
  font-weight: 700;
}
.fw-100 {
  font-weight: 100;
}
.fw-200 {
  font-weight: 200;
}
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.fw-900 {
  font-weight: 900;
}

/* ========================================
styles
======================================== */
.header {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: min(70px, (100vw * (70 / 1440)));
  padding: 0 min(30px, (100vw * (30 / 1440)));
  background-color: #fff;
  border-bottom: solid min(3px, (100vw * (3 / 1440))) #fff;
  -webkit-border-image: -webkit-gradient(linear, left top, right bottom, from(#33c4c9), to(#eedc63)) 1;
  -webkit-border-image: -webkit-linear-gradient(left top, #33c4c9, #eedc63) 1;
       -o-border-image: linear-gradient(to right bottom, #33c4c9, #eedc63) 1;
          border-image: -webkit-gradient(linear, left top, right bottom, from(#33c4c9), to(#eedc63)) 1;
          border-image: linear-gradient(to right bottom, #33c4c9, #eedc63) 1;
}
@media (max-width: 767px) {
  .header {
    height: calc(100vw * (60 / 375));
    padding: 0 calc(100vw * (20 / 375));
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.header__logo {
  position: relative;
  display: block;
  width: min(180px, (100vw * (180 / 1440)));
}
@media (max-width: 767px) {
  .header__logo {
    width: calc(100vw * (150 / 375));
  }
}
.header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

body.purchase-form .fv {
  position: relative;
  display: block;
  width: 100%;
}
body.purchase-form .fv img {
  display: block;
  width: 100%;
  height: auto;
}

.products__container {
  position: relative;
  display: block;
  width: 100%;
  padding: min(60px, (100vw * (60 / 1440))) 0;
  background-color: rgba(70, 199, 191, 0.1);
}
@media (max-width: 767px) {
  .products__container {
    padding: calc(100vw * (50 / 375)) 0;
  }
}
.products__container {
  --width: min(1280px, (100vw * (1280 / 1440)));
}
@media (max-width: 767px) {
  .products__container {
    --width: calc(100vw * (350 / 375));
  }
}
.products__search {
  --gap: min(32px, (100vw * (32 / 1440)));
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: var(--gap);
  width: var(--width);
  margin: 0 auto;
  font-size: min(20px, (100vw * (20 / 1440)));
  font-weight: 400;
}
@media (max-width: 767px) {
  .products__search {
    --gap: 0.5em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: calc(100vw * (14 / 375));
  }
}
.products__search-select {
  min-width: calc(50% - var(--gap) / 2);
}
@media (max-width: 767px) {
  .products__search-select {
    width: 100%;
  }
}
.products__search-select select {
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2213%22%20height%3D%228%22%20viewBox%3D%220%200%2013%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M0.662964%200.662964L6.28796%206.28796L11.913%200.662964%22%20stroke%3D%22%232C2C2C%22%20stroke-width%3D%221.875%22%2F%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 0.75em;
  background-position: right 0.75em center;
  border: none;
}
.products__search-input {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (max-width: 767px) {
  .products__search-input {
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}
.products__search-input input {
  width: 100%;
  padding: 0.5em 2.5em 0.5em 0.75em;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2221%22%20height%3D%2221%22%20viewBox%3D%220%200%2021%2021%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M9.45023%202.10005C5.39084%202.10005%202.10005%205.39084%202.10005%209.45023C2.10005%2013.5096%205.39084%2016.8004%209.45023%2016.8004C13.5096%2016.8004%2016.8004%2013.5096%2016.8004%209.45023C16.8004%205.39084%2013.5096%202.10005%209.45023%202.10005ZM0%209.45023C0%204.23101%204.23101%200%209.45023%200C14.6694%200%2018.9005%204.23101%2018.9005%209.45023C18.9005%2014.6694%2014.6694%2018.9005%209.45023%2018.9005C4.23101%2018.9005%200%2014.6694%200%209.45023Z%22%20fill%3D%22%232C2C2C%22%2F%3E%0A%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M14.6396%2014.6406C15.0496%2014.2305%2015.7145%2014.2305%2016.1245%2014.6406L20.6921%2019.2082C21.1022%2019.6182%2021.1022%2020.2831%2020.6921%2020.6931C20.2821%2021.1032%2019.6172%2021.1032%2019.2072%2020.6931L14.6396%2016.1255C14.2295%2015.7155%2014.2295%2015.0506%2014.6396%2014.6406Z%22%20fill%3D%22%232C2C2C%22%2F%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: 1em;
  background-position: right 0.75em center;
  border: none;
}
.products__title {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: var(--width);
  margin: min(60px, (100vw * (60 / 1440))) auto calc(min(60px, (100vw * (60 / 1440))) - 0.5em);
  font-size: min(40px, (100vw * (40 / 1440)));
  font-weight: 700;
}
@media (max-width: 767px) {
  .products__title {
    margin: calc(100vw * (50 / 375)) auto;
    font-size: calc(100vw * (28 / 375));
  }
}
.products__title:after {
  content: "";
  position: relative;
  display: block;
  width: min(70px, (100vw * (70 / 1440)));
  height: auto;
  aspect-ratio: 7/1;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2270%22%20height%3D%2210%22%20viewBox%3D%220%200%2070%2010%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Ccircle%20cx%3D%225%22%20cy%3D%225%22%20r%3D%225%22%20fill%3D%22%2346C7BF%22%2F%3E%0A%3Ccircle%20cx%3D%2235%22%20cy%3D%225%22%20r%3D%225%22%20fill%3D%22%2346C7BF%22%2F%3E%0A%3Ccircle%20cx%3D%2265%22%20cy%3D%225%22%20r%3D%225%22%20fill%3D%22%2346C7BF%22%2F%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 0.5em;
}
@media (max-width: 767px) {
  .products__title:after {
    width: calc(100vw * (49 / 375));
  }
}
.products__lists {
  --products__lists_gap: min(22px, (100vw * (22 / 1440)));
}
@media (max-width: 767px) {
  .products__lists {
    --products__lists_gap: calc(100vw * (16 / 375));
  }
}
.products__lists {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: var(--products__lists_gap);
  width: var(--width);
  margin: 0 auto;
}
.products__list {
  --border_radius: min(10px, (100vw * (10 / 1440)));
}
@media (max-width: 767px) {
  .products__list {
    --border_radius: calc(100vw * (5 / 375));
  }
}
.products__list {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: calc(25% - var(--products__lists_gap) / 4 * 3);
  -webkit-box-shadow: 0px 0px min(15px, (100vw * (15 / 1440))) #ecf9f9;
          box-shadow: 0px 0px min(15px, (100vw * (15 / 1440))) #ecf9f9;
  border-radius: var(--border_radius);
  cursor: pointer;
}
@media (max-width: 1024px) {
  .products__list {
    width: calc(33.3333333333% - var(--products__lists_gap) / 3 * 2);
  }
}
@media (max-width: 767px) {
  .products__list {
    width: calc(50% - var(--products__lists_gap) / 2);
    -webkit-box-shadow: 0px 0px calc(100vw * (10 / 375)) #ecf9f9;
            box-shadow: 0px 0px calc(100vw * (10 / 375)) #ecf9f9;
  }
}
.products__list__inner {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 0;
  background-color: #fff;
  border-radius: var(--border_radius);
  overflow: hidden;
}
.products__list-img {
  z-index: 1;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  overflow: hidden;
  font-size: min(16px, (100vw * (16 / 1440)));
  font-weight: 700;
  padding: min(20px, (100vw * (20 / 1440)));
}
@media (max-width: 767px) {
  .products__list-img {
    padding: calc(100vw * (20 / 375));
    font-size: calc(100vw * (12 / 375));
  }
}
.products__list-img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  margin: auto;
}
.products__list-label {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: calc(100% - min(20px, (100vw * (20 / 1440))));
  margin: min(10px, (100vw * (10 / 1440))) min(10px, (100vw * (10 / 1440))) 0;
  padding: 0.25em 0.75em 0.25em 1.25em;
  background-color: #46c7bf;
  color: #fff;
  font-size: min(13px, (100vw * (13 / 1440)));
  font-weight: 700;
  line-height: 1.4;
  border-radius: 9999px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 767px) {
  .products__list-label {
    max-width: calc(100% - (100vw * (16 / 375)));
    margin: calc(100vw * (8 / 375)) calc(100vw * (8 / 375)) 0;
    font-size: calc(100vw * (10 / 375));
    padding: 0.2em 0.65em 0.2em 1em;
  }
}
.products__list-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.55em;
  width: 0.4em;
  height: 0.4em;
  background-color: #fff;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.products__list-name {
  position: relative;
  display: block;
  width: 100%;
  padding: min(10px, (100vw * (10 / 1440)));
  font-size: min(16px, (100vw * (16 / 1440)));
}
@media (max-width: 767px) {
  .products__list-name {
    padding: calc(100vw * (10 / 375));
    font-size: calc(100vw * (12 / 375));
  }
}
.products__list-price {
  z-index: 3;
  position: relative;
  display: block;
  width: 100%;
  font-size: min(35px, (100vw * (35 / 1440)));
  font-weight: 700;
  padding: 0 min(10px, (100vw * (10 / 1440))) min(10px, (100vw * (10 / 1440)));
  margin-top: auto;
}
@media (max-width: 767px) {
  .products__list-price {
    padding: 0 calc(100vw * (10 / 375)) calc(100vw * (10 / 375));
    font-size: calc(100vw * (22 / 375));
  }
}
.products__list-overlay {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
}
.products__list.is-selected .products__list-overlay {
  opacity: 1;
  visibility: visible;
}
.products__list-check {
  z-index: 3;
  position: absolute;
  top: min(20px, (100vw * (20 / 1440)));
  right: min(20px, (100vw * (20 / 1440)));
  width: min(45px, (100vw * (45 / 1440)));
  height: min(45px, (100vw * (45 / 1440)));
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2245%22%20height%3D%2245%22%20viewBox%3D%220%200%2045%2045%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20x%3D%220.745921%22%20y%3D%220.745921%22%20width%3D%2243.5082%22%20height%3D%2243.5082%22%20rx%3D%224.25408%22%20fill%3D%22white%22%20stroke%3D%22%232C2C2C%22%20stroke-width%3D%221.49184%22%2F%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767px) {
  .products__list-check {
    top: calc(100vw * (10 / 375));
    right: calc(100vw * (10 / 375));
    width: calc(100vw * (30 / 375));
    height: calc(100vw * (30 / 375));
  }
}
.products__list.is-selected .products__list-check {
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2245%22%20height%3D%2245%22%20viewBox%3D%220%200%2045%2045%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Crect%20x%3D%220.745921%22%20y%3D%220.745921%22%20width%3D%2243.5082%22%20height%3D%2243.5082%22%20rx%3D%224.25408%22%20fill%3D%22white%22%20stroke%3D%22%232C2C2C%22%20stroke-width%3D%221.49184%22%2F%3E%0A%3Cpath%20d%3D%22M37.88%209.46149C37.4014%209.19136%2036.8466%209.04919%2036.2774%209.04919C35.3419%209.04919%2034.4862%209.41884%2033.9278%2010.0693L17.9379%2028.6016L12.1547%2023.0604C11.6%2022.5308%2010.8059%2022.2251%209.97925%2022.2251C9.32297%2022.2251%208.67394%2022.4206%208.15907%2022.7725C7.51368%2023.2132%207.10758%2023.8815%207.04594%2024.603C6.98793%2025.3068%207.2635%2026.007%207.80375%2026.5259L15.9764%2034.3561C16.5311%2034.8857%2017.3252%2035.1914%2018.1518%2035.1914C18.1881%2035.1914%2018.228%2035.1914%2018.2642%2035.1914C19.1635%2035.1594%2019.972%2034.7862%2020.5014%2034.1713L38.6233%2013.1687C39.0983%2012.6177%2039.3013%2011.9104%2039.178%2011.2245C39.0511%2010.5029%2038.5761%209.86314%2037.8764%209.4686L37.88%209.46149Z%22%20fill%3D%22%2346C7BF%22%2F%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.products__more {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: var(--width);
  margin: min(60px, (100vw * (60 / 1440))) auto 0;
}
@media (max-width: 767px) {
  .products__more {
    margin: calc(100vw * (50 / 375)) auto 0;
  }
}
.products__more-btn {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(400px, (100vw * (400 / 1440)));
  height: auto;
  aspect-ratio: 400/60;
  border-radius: 9999px;
  background-color: #fff;
  border: solid 2px #46c7bf;
  color: #46c7bf;
  font-size: min(20px, (100vw * (20 / 1440)));
  font-weight: 700;
  overflow: hidden;
  padding: 0.5em 2em;
}
@media (max-width: 767px) {
  .products__more-btn {
    width: calc(100vw * (350 / 375));
    font-size: calc(100vw * (20 / 375));
  }
}
.products__more-btn:after {
  content: "";
  display: block;
  background-color: #46c7bf;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2213%22%20height%3D%228%22%20viewBox%3D%220%200%2013%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M0.662964%200.663086L6.28796%206.28809L11.913%200.663086%22%20stroke%3D%22%2346C7BF%22%20stroke-width%3D%221.875%22%2F%3E%0A%3C%2Fsvg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%2213%22%20height%3D%228%22%20viewBox%3D%220%200%2013%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M0.662964%200.663086L6.28796%206.28809L11.913%200.663086%22%20stroke%3D%22%2346C7BF%22%20stroke-width%3D%221.875%22%2F%3E%0A%3C%2Fsvg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
  width: min(13px, (100vw * (13 / 1440)));
  height: min(8px, (100vw * (8 / 1440)));
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  left: auto;
  margin: auto 0;
}
@media (max-width: 767px) {
  .products__more-btn:after {
    width: calc(100vw * (13 / 375));
    height: calc(100vw * (8 / 375));
  }
}
@media (any-hover: hover) {
  .products__more-btn {
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .products__more-btn:after {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .products__more-btn:hover {
    background-color: #46c7bf;
    color: #fff;
  }
  .products__more-btn:hover:after {
    background-color: #fff;
  }
}

.selected__products {
  position: relative;
  display: block;
  width: 100%;
  padding: min(60px, (100vw * (60 / 1440))) 0;
  background-color: #fff;
}
@media (max-width: 767px) {
  .selected__products {
    padding: calc(100vw * (50 / 375)) 0;
  }
}
.selected__products {
  --width: min(1280px, (100vw * (1280 / 1440)));
}
@media (max-width: 767px) {
  .selected__products {
    --width: calc(100vw * (350 / 375));
  }
}
.selected__products__title {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: var(--width);
  margin: 0 auto calc(min(60px, (100vw * (60 / 1440))) - 0.5em);
  font-size: min(40px, (100vw * (40 / 1440)));
  font-weight: 700;
}
@media (max-width: 767px) {
  .selected__products__title {
    margin: 0 auto calc(100vw * (50 / 375));
    font-size: calc(100vw * (28 / 375));
  }
}
.selected__products__title:after {
  content: "";
  position: relative;
  display: block;
  width: min(70px, (100vw * (70 / 1440)));
  height: auto;
  aspect-ratio: 7/1;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2270%22%20height%3D%2210%22%20viewBox%3D%220%200%2070%2010%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Ccircle%20cx%3D%225%22%20cy%3D%225%22%20r%3D%225%22%20fill%3D%22%2346C7BF%22%2F%3E%0A%3Ccircle%20cx%3D%2235%22%20cy%3D%225%22%20r%3D%225%22%20fill%3D%22%2346C7BF%22%2F%3E%0A%3Ccircle%20cx%3D%2265%22%20cy%3D%225%22%20r%3D%225%22%20fill%3D%22%2346C7BF%22%2F%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 0.5em;
}
@media (max-width: 767px) {
  .selected__products__title:after {
    width: calc(100vw * (49 / 375));
  }
}
.selected__products__lists {
  position: relative;
  display: block;
  width: var(--width);
  margin: 0 auto min(50px, (100vw * (50 / 1440)));
}
@media (max-width: 767px) {
  .selected__products__lists {
    margin: 0 auto calc(100vw * (50 / 375));
  }
}
.selected__products__list {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: min(25px, (100vw * (25 / 1440)));
  width: 100%;
  padding: min(20px, (100vw * (20 / 1440)));
  background-color: #ecf9f9;
  border-radius: min(10px, (100vw * (10 / 1440)));
}
@media (max-width: 767px) {
  .selected__products__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(100vw * (10 / 375));
    padding: calc(100vw * (10 / 375));
    border-radius: calc(100vw * (5 / 375));
  }
}
.selected__products__list + .selected__products__list {
  margin-top: min(10px, (100vw * (10 / 1440)));
}
@media (max-width: 767px) {
  .selected__products__list + .selected__products__list {
    margin-top: calc(100vw * (10 / 375));
  }
}
.selected__products__list-img {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(260px, (100vw * (260 / 1440)));
  aspect-ratio: 1/1;
  padding: min(20px, (100vw * (20 / 1440)));
  background-color: #fff;
  border-radius: min(10px, (100vw * (10 / 1440)));
}
@media (max-width: 767px) {
  .selected__products__list-img {
    width: 100%;
    height: calc(100vw * (200 / 375));
    padding: calc(100vw * (5 / 375));
    border-radius: calc(100vw * (10 / 375));
  }
}
.selected__products__list-img img {
  position: relative;
  display: block;
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  margin: 0 auto;
}
.selected__products__list-body {
  position: relative;
  display: block;
  width: 100%;
  -webkit-box-flex: 1;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.selected__products__list-title {
  position: relative;
  display: block;
  width: 100%;
  font-size: min(30px, (100vw * (30 / 1440)));
  font-weight: 700;
}
@media (max-width: 767px) {
  .selected__products__list-title {
    font-size: calc(100vw * (20 / 375));
  }
}
.selected__products__list-data {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  font-size: min(20px, (100vw * (20 / 1440)));
  font-weight: 500;
  margin: min(10px, (100vw * (10 / 1440))) 0;
}
@media (max-width: 767px) {
  .selected__products__list-data {
    font-size: calc(100vw * (14 / 375));
    margin: calc(100vw * (10 / 375)) 0;
  }
}
.selected__products__list-data-price-value {
  font-family: var(--roboto);
  font-size: min(30px, (100vw * (30 / 1440)));
  font-weight: 700;
}
@media (max-width: 767px) {
  .selected__products__list-data-price-value {
    font-size: calc(100vw * (20 / 375));
  }
}
.selected__products__list-quantity {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: min(20px, (100vw * (20 / 1440)));
  width: 100%;
  font-size: min(20px, (100vw * (20 / 1440)));
  font-weight: 500;
  margin: min(10px, (100vw * (10 / 1440))) 0;
}
@media (max-width: 767px) {
  .selected__products__list-quantity {
    gap: calc(100vw * (15 / 375));
    font-size: calc(100vw * (14 / 375));
    margin: calc(100vw * (10 / 375)) 0;
  }
}
.selected__products__list-quantity-btn--minus, .selected__products__list-quantity-btn--plus {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(45px, (100vw * (45 / 1440)));
  height: min(45px, (100vw * (45 / 1440)));
  background-color: #fff;
  border: solid 2px currentColor;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
@media (max-width: 767px) {
  .selected__products__list-quantity-btn--minus, .selected__products__list-quantity-btn--plus {
    width: calc(100vw * (30 / 375));
    height: calc(100vw * (30 / 375));
  }
}
.selected__products__list-quantity input[type=number] {
  position: relative;
  display: block;
  background: transparent;
  border: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
  font-family: var(--roboto);
  font-size: min(30px, (100vw * (30 / 1440)));
  font-weight: 700;
  padding: 0;
  field-sizing: content;
  background-color: #fff;
  padding: 0 0.5em;
  border: solid 2px currentColor;
}
@media (max-width: 767px) {
  .selected__products__list-quantity input[type=number] {
    font-size: calc(100vw * (18 / 375));
  }
}
.selected__products__list-quantity input[type=number]::-webkit-outer-spin-button, .selected__products__list-quantity input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: auto;
          appearance: auto;
  opacity: 1;
  background-color: #fff;
  margin-left: 0.5em;
}
.selected__products__list-footer-message {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  font-size: min(16px, (100vw * (16 / 1440)));
  font-weight: 500;
  color: #ff0000;
}
@media (max-width: 767px) {
  .selected__products__list-footer-message {
    font-size: calc(100vw * (12 / 375));
  }
}
.selected__products__list-footer-price {
  display: block;
  text-align: right;
  font-size: min(20px, (100vw * (20 / 1440)));
  font-weight: 500;
}
@media (max-width: 767px) {
  .selected__products__list-footer-price {
    font-size: calc(100vw * (16 / 375));
  }
}
.selected__products__list-footer-price-value {
  font-family: var(--roboto);
  font-size: min(30px, (100vw * (30 / 1440)));
  font-weight: 700;
  color: #ff0000;
}
@media (max-width: 767px) {
  .selected__products__list-footer-price-value {
    font-size: calc(100vw * (24 / 375));
  }
}

.total {
  position: relative;
  display: block;
  width: min(686px, (100vw * (686 / 1440)));
  margin: min(85px, (100vw * (85 / 1440))) auto min(50px, (100vw * (50 / 1440)));
  border: solid 2px #46c7bf;
  border-radius: min(10px, (100vw * (10 / 1440)));
  padding: min(70px, (100vw * (70 / 1440))) min(50px, (100vw * (50 / 1440))) min(50px, (100vw * (50 / 1440)));
}
@media (max-width: 767px) {
  .total {
    width: calc(100vw * (337.5 / 375));
    margin: calc(100vw * (50 / 375)) auto calc(100vw * (30 / 375));
    border-radius: calc(100vw * (5 / 375));
    padding: calc(100vw * (50 / 375)) calc(100vw * (30 / 375));
  }
}
.total-title {
  position: absolute;
  top: max(-35px, (100vw * (-35 / 1440)));
  left: 0;
  right: 0;
  margin: 0 auto;
  width: min(410px, (100vw * (410 / 1440)));
  height: min(70px, (100vw * (70 / 1440)));
  border-radius: 9999px;
  background-color: #46c7bf;
  overflow: hidden;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: min(30px, (100vw * (30 / 1440)));
  font-weight: 700;
  color: #fff;
}
@media (max-width: 767px) {
  .total-title {
    top: calc(100vw * (-20 / 375));
    width: calc(100vw * (200 / 375));
    height: calc(100vw * (50 / 375));
    font-size: calc(100vw * (20 / 375));
  }
}
.total-price {
  display: block;
  text-align: center;
  font-size: min(52px, (100vw * (52 / 1440)));
  font-weight: 700;
}
@media (max-width: 767px) {
  .total-price {
    font-size: calc(100vw * (30 / 375));
  }
}
.total-price-value {
  font-family: var(--roboto);
  font-size: min(87px, (100vw * (87 / 1440)));
  font-weight: 700;
  color: #ff0000;
}
@media (max-width: 767px) {
  .total-price-value {
    font-size: calc(100vw * (40 / 375));
  }
}
.total-note {
  display: block;
  font-size: min(16px, (100vw * (16 / 1440)));
  font-weight: 500;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .total-note {
    font-size: calc(100vw * (14 / 375));
  }
}

.purchase_form {
  position: relative;
  display: block;
  width: min(1280px, (100vw * (1280 / 1440)));
  margin: min(50px, (100vw * (50 / 1440))) auto;
}
@media (max-width: 767px) {
  .purchase_form {
    width: calc(100vw * (337.5 / 375));
    margin: calc(100vw * (30 / 375)) auto;
  }
}
.purchase_form__title {
  position: relative;
  display: block;
  width: 100%;
  font-size: min(30px, (100vw * (30 / 1440)));
  font-weight: 700;
  border-left: solid 3px #46c7bf;
  padding-left: 1em;
}
@media (max-width: 767px) {
  .purchase_form__title {
    font-size: calc(100vw * (20 / 375));
  }
}
.purchase_form__table {
  position: relative;
  display: block;
  width: 100%;
  margin-top: min(50px, (100vw * (50 / 1440)));
}
@media (max-width: 767px) {
  .purchase_form__table {
    margin-top: calc(100vw * (30 / 375));
  }
}
.purchase_form__table tbody {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  gap: min(20px, (100vw * (20 / 1440)));
}
@media (max-width: 767px) {
  .purchase_form__table tbody {
    gap: calc(100vw * (20 / 375));
  }
}
.purchase_form__table tbody tr {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: min(50px, (100vw * (50 / 1440)));
  width: 100%;
}
@media (max-width: 767px) {
  .purchase_form__table tbody tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: calc(100vw * (10 / 375));
  }
}
.purchase_form__table tbody tr th,
.purchase_form__table tbody tr td {
  font-size: min(20px, (100vw * (20 / 1440)));
  font-weight: 500;
}
@media (max-width: 767px) {
  .purchase_form__table tbody tr th,
  .purchase_form__table tbody tr td {
    font-size: calc(100vw * (14 / 375));
  }
}
.purchase_form__table tbody tr th {
  width: 22em;
}
.purchase_form__table tbody tr td {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: min(20px, (100vw * (20 / 1440)));
  width: calc(100% - 22em - min(50px, (100vw * (50 / 1440))));
}
@media (max-width: 767px) {
  .purchase_form__table tbody tr td {
    gap: calc(100vw * (10 / 375));
    width: 100%;
  }
}
.purchase_form__table tbody tr.purchase_form__table-postal_code td, .purchase_form__table tbody tr.purchase_form__table-sex td {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 0.5em;
}
.purchase_form__agreement {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: min(50px, (100vw * (50 / 1440))) auto;
  width: 100%;
  font-size: min(16px, (100vw * (16 / 1440)));
  font-weight: 500;
}
@media (max-width: 767px) {
  .purchase_form__agreement {
    margin: calc(100vw * (30 / 375)) auto;
    font-size: calc(100vw * (14 / 375));
  }
}
.purchase_form__agreement a {
  color: #32ade6;
  text-decoration: underline;
}
.purchase_form__submit {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: min(50px, (100vw * (50 / 1440))) auto;
  width: 100%;
}
@media (max-width: 767px) {
  .purchase_form__submit {
    margin: calc(100vw * (30 / 375)) auto calc(100vw * (50 / 375));
  }
}
.purchase_form__submit-btn {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(400px, (100vw * (400 / 1440)));
  height: auto;
  aspect-ratio: 400/60;
  border-radius: 9999px;
  background-color: #fff;
  border: solid 2px #46c7bf;
  color: #46c7bf;
  font-size: min(20px, (100vw * (20 / 1440)));
  font-weight: 700;
  overflow: hidden;
  padding: 0.5em 2em;
}
@media (max-width: 767px) {
  .purchase_form__submit-btn {
    width: calc(100vw * (350 / 375));
    font-size: calc(100vw * (20 / 375));
  }
}
.purchase_form__submit-btn:after {
  content: "";
  display: block;
  background-color: #46c7bf;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%228%22%20height%3D%2213%22%20viewBox%3D%220%200%208%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M0.662964%2011.9131L6.28796%206.28809L0.662964%200.663086%22%20stroke%3D%22%2346C7BF%22%20stroke-width%3D%221.875%22%2F%3E%0A%3C%2Fsvg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%228%22%20height%3D%2213%22%20viewBox%3D%220%200%208%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M0.662964%2011.9131L6.28796%206.28809L0.662964%200.663086%22%20stroke%3D%22%2346C7BF%22%20stroke-width%3D%221.875%22%2F%3E%0A%3C%2Fsvg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
  width: min(8px, (100vw * (8 / 1440)));
  height: min(13px, (100vw * (13 / 1440)));
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  left: auto;
  margin: auto 0;
}
@media (max-width: 767px) {
  .purchase_form__submit-btn:after {
    width: calc(100vw * (8 / 375));
    height: calc(100vw * (13 / 375));
  }
}
@media (any-hover: hover) {
  .purchase_form__submit-btn {
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .purchase_form__submit-btn:after {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .purchase_form__submit-btn:hover {
    background-color: #46c7bf;
    color: #fff;
  }
  .purchase_form__submit-btn:hover:after {
    background-color: #fff;
  }
}
.purchase_form__not_available {
  position: relative;
  margin: min(30px, (100vw * (30 / 1440))) auto;
  font-size: min(30px, (100vw * (30 / 1440)));
  line-height: 2;
  font-weight: 700;
  counter-reset: number;
  text-indent: -1em;
  padding-left: 1em;
}
@media (max-width: 767px) {
  .purchase_form__not_available {
    margin: calc(100vw * (30 / 375)) auto;
    font-size: calc(100vw * (16 / 375));
  }
}
.purchase_form__not_available li:before {
  counter-increment: number;
  content: counter(number) ". ";
}
.purchase_form__image {
  position: relative;
  display: block;
  width: min(1080px, (100vw * (1080 / 1440)));
  margin: min(80px, (100vw * (80 / 1440))) auto min(40px, (100vw * (40 / 1440)));
}
@media (max-width: 767px) {
  .purchase_form__image {
    width: calc(100vw * (337.5 / 375));
    margin: calc(100vw * (30 / 375)) auto calc(100vw * (30 / 375));
  }
}
.purchase_form__image img {
  display: block;
  width: 100%;
  height: auto;
}

.footer {
  position: relative;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  background: -webkit-linear-gradient(315deg, #33c4c9 0%, #eedc63 100%);
  background: linear-gradient(135deg, #33c4c9 0%, #eedc63 100%);
  color: #fff;
  padding: min(20px, (100vw * (20 / 1440)));
}
@media (max-width: 767px) {
  .footer {
    padding: calc(100vw * (20 / 375));
  }
}
.footer__copyright {
  position: relative;
  display: block;
  font-size: min(16px, (100vw * (16 / 1440)));
  font-weight: 700;
  color: #fff;
}
@media (max-width: 767px) {
  .footer__copyright {
    font-size: calc(100vw * (12 / 375));
  }
}
.footer__copyright a {
  text-decoration: underline;
  color: #fff;
}

.purchase-form-thanks-container {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: min(80px, (100vw * (80 / 1440))) 0;
}
@media (max-width: 767px) {
  .purchase-form-thanks-container {
    padding: calc(100vw * (50 / 375)) 0;
  }
}
.purchase-form-thanks-title {
  font-size: min(40px, (100vw * (40 / 1440)));
  font-weight: 700;
}
@media (max-width: 767px) {
  .purchase-form-thanks-title {
    font-size: calc(100vw * (24 / 375));
  }
}
.purchase-form-thanks-message {
  position: relative;
  display: block;
  margin: min(30px, (100vw * (30 / 1440))) auto;
  font-size: min(20px, (100vw * (20 / 1440)));
  font-weight: 500;
  text-align: center;
}
@media (max-width: 767px) {
  .purchase-form-thanks-message {
    margin: calc(100vw * (20 / 375)) auto;
    font-size: calc(100vw * (14 / 375));
  }
}
.purchase-form-thanks-flow {
  position: relative;
  display: block;
  text-align: center;
  font-size: min(16px, (100vw * (16 / 1440)));
  font-weight: 500;
  color: #46c7bf;
}
@media (max-width: 767px) {
  .purchase-form-thanks-flow {
    font-size: calc(100vw * (12 / 375));
  }
}
.purchase-form-thanks-flow a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(400px, (100vw * (400 / 1440)));
  height: auto;
  aspect-ratio: 400/60;
  border-radius: 9999px;
  background-color: #fff;
  border: solid 2px #46c7bf;
  color: #46c7bf;
  font-size: min(20px, (100vw * (20 / 1440)));
  font-weight: 700;
  overflow: hidden;
  padding: 0.5em 2em;
}
@media (max-width: 767px) {
  .purchase-form-thanks-flow a {
    width: calc(100vw * (350 / 375));
    font-size: calc(100vw * (20 / 375));
  }
}
.purchase-form-thanks-flow a:after {
  content: "";
  display: block;
  background-color: #46c7bf;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%228%22%20height%3D%2213%22%20viewBox%3D%220%200%208%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M0.662964%2011.9131L6.28796%206.28809L0.662964%200.663086%22%20stroke%3D%22%2346C7BF%22%20stroke-width%3D%221.875%22%2F%3E%0A%3C%2Fsvg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%228%22%20height%3D%2213%22%20viewBox%3D%220%200%208%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M0.662964%2011.9131L6.28796%206.28809L0.662964%200.663086%22%20stroke%3D%22%2346C7BF%22%20stroke-width%3D%221.875%22%2F%3E%0A%3C%2Fsvg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
  width: min(8px, (100vw * (8 / 1440)));
  height: min(13px, (100vw * (13 / 1440)));
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  left: auto;
  margin: auto 0;
}
@media (max-width: 767px) {
  .purchase-form-thanks-flow a:after {
    width: calc(100vw * (8 / 375));
    height: calc(100vw * (13 / 375));
  }
}
@media (any-hover: hover) {
  .purchase-form-thanks-flow a {
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .purchase-form-thanks-flow a:after {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .purchase-form-thanks-flow a:hover {
    background-color: #46c7bf;
    color: #fff;
  }
  .purchase-form-thanks-flow a:hover:after {
    background-color: #fff;
  }
}
.purchase-form-thanks-detail {
  position: relative;
  display: block;
  width: min(750px, (100vw * (750 / 1440)));
  margin: min(40px, (100vw * (40 / 1440))) auto;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px min(10px, (100vw * (10 / 1440))) rgba(0, 0, 0, 0.1);
          box-shadow: 0px 0px min(10px, (100vw * (10 / 1440))) rgba(0, 0, 0, 0.1);
  border-radius: min(10px, (100vw * (10 / 1440)));
  padding: min(30px, (100vw * (30 / 1440)));
  font-size: min(20px, (100vw * (20 / 1440)));
  font-weight: 500;
}
@media (max-width: 767px) {
  .purchase-form-thanks-detail {
    width: calc(100vw * (350 / 375));
    margin: calc(100vw * (40 / 375)) auto;
    -webkit-box-shadow: 0px 0px calc(100vw * (10 / 375)) rgba(0, 0, 0, 0.1);
            box-shadow: 0px 0px calc(100vw * (10 / 375)) rgba(0, 0, 0, 0.1);
    border-radius: calc(100vw * (5 / 375));
    padding: calc(100vw * (20 / 375));
    font-size: calc(100vw * (14 / 375));
  }
}
.purchase-form-thanks-items {
  position: relative;
  display: block;
  width: 100%;
  margin: min(30px, (100vw * (30 / 1440))) auto 0;
}
@media (max-width: 767px) {
  .purchase-form-thanks-items {
    margin: calc(100vw * (20 / 375)) auto 0;
  }
}
.purchase-form-thanks-items ul {
  position: relative;
  display: block;
  width: 100%;
  margin: min(20px, (100vw * (20 / 1440))) auto 0;
}
@media (max-width: 767px) {
  .purchase-form-thanks-items ul {
    margin: calc(100vw * (20 / 375)) auto 0;
  }
}
.purchase-form-thanks-items ul .thanks-item {
  position: relative;
  display: block;
  width: 100%;
  border-top: dashed 1px #46c7bf;
  padding: 0.5em;
  font-size: min(16px, (100vw * (16 / 1440)));
  font-weight: 500;
}
@media (max-width: 767px) {
  .purchase-form-thanks-items ul .thanks-item {
    font-size: calc(100vw * (14 / 375));
  }
}
.purchase-form-thanks-items ul .thanks-item-name {
  position: relative;
  display: block;
  width: 100%;
  font-size: min(18px, (100vw * (18 / 1440)));
  color: #46c7bf;
}
@media (max-width: 767px) {
  .purchase-form-thanks-items ul .thanks-item-name {
    font-size: calc(100vw * (16 / 375));
  }
}
.purchase-form-thanks-items ul .thanks-item-detail {
  position: relative;
  display: block;
  width: 100%;
}
.purchase-form-thanks-items ul .thanks-item-detail span {
  display: block;
}
.purchase-form-thanks-back_form {
  position: relative;
  display: block;
  text-align: center;
  font-size: min(16px, (100vw * (16 / 1440)));
  font-weight: 500;
  color: #2c2c2c;
}
@media (max-width: 767px) {
  .purchase-form-thanks-back_form {
    font-size: calc(100vw * (12 / 375));
  }
}
.purchase-form-thanks-back_form a {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: min(400px, (100vw * (400 / 1440)));
  height: auto;
  aspect-ratio: 400/60;
  border-radius: 9999px;
  background-color: #fff;
  border: solid 2px #2c2c2c;
  color: #2c2c2c;
  font-size: min(20px, (100vw * (20 / 1440)));
  font-weight: 700;
  overflow: hidden;
  padding: 0.5em 2em;
}
@media (max-width: 767px) {
  .purchase-form-thanks-back_form a {
    width: calc(100vw * (350 / 375));
    font-size: calc(100vw * (20 / 375));
  }
}
.purchase-form-thanks-back_form a:after {
  content: "";
  display: block;
  background-color: #2c2c2c;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%228%22%20height%3D%2213%22%20viewBox%3D%220%200%208%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M0.662964%2011.9131L6.28796%206.28809L0.662964%200.663086%22%20stroke%3D%22%232C2C2C%22%20stroke-width%3D%221.875%22%2F%3E%0A%3C%2Fsvg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg%20width%3D%228%22%20height%3D%2213%22%20viewBox%3D%220%200%208%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M0.662964%2011.9131L6.28796%206.28809L0.662964%200.663086%22%20stroke%3D%22%232C2C2C%22%20stroke-width%3D%221.875%22%2F%3E%0A%3C%2Fsvg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: center;
          mask-position: center;
  width: min(8px, (100vw * (8 / 1440)));
  height: min(13px, (100vw * (13 / 1440)));
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  left: auto;
  margin: auto 0;
}
@media (max-width: 767px) {
  .purchase-form-thanks-back_form a:after {
    width: calc(100vw * (8 / 375));
    height: calc(100vw * (13 / 375));
  }
}
@media (any-hover: hover) {
  .purchase-form-thanks-back_form a {
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .purchase-form-thanks-back_form a:after {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .purchase-form-thanks-back_form a:hover {
    background-color: #2c2c2c;
    color: #fff;
  }
  .purchase-form-thanks-back_form a:hover:after {
    background-color: #fff;
  }
}
.purchase-form-thanks-shipping {
  position: relative;
  display: block;
  width: min(750px, (100vw * (750 / 1440)));
  margin: min(30px, (100vw * (30 / 1440))) auto;
  padding: min(20px, (100vw * (20 / 1440))) min(30px, (100vw * (30 / 1440)));
  border: solid 2px #d63638;
  border-radius: min(10px, (100vw * (10 / 1440)));
  text-align: center;
  font-size: min(24px, (100vw * (24 / 1440)));
  font-weight: 700;
  color: #2c2c2c;
}
@media (max-width: 767px) {
  .purchase-form-thanks-shipping {
    width: calc(100vw * (350 / 375));
    margin: calc(100vw * (20 / 375)) auto;
    padding: calc(100vw * (15 / 375)) calc(100vw * (20 / 375));
    border-radius: calc(100vw * (5 / 375));
    font-size: calc(100vw * (16 / 375));
  }
}
.purchase-form-thanks-shipping-emphasis {
  color: #d63638;
}