@charset "UTF-8";

/* =============================================================
    Generic
============================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  padding: 0;
  margin: 0;
}
ul[role="list"],
ol[role="list"],
li {
  list-style: none;
}
html {
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-feature-settings: "palt";
}
a:not([class]) {
  text-decoration-skip-ink: auto;
}
a,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
}

a[href=""] {
  pointer-events: none;
}

img,
picture {
  width: auto;
  height: auto;
  max-width: 100%;
  display: block;
}
input,
button,
textarea,
select {
  font: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* =============================================================
    Base
============================================================= */
:root {
  /* color site */
  --color-main: var(--color-black);
  --color-primary: #1e2f4f;
  --color-warning: #fcfcbe;
  --color-danger: var(--color-red);
  --color-light: #b9b9b9;
  --color-dark: #666666;
  /* color background */
  --color-bg-light: var(--color-gray-light);
  --color-bg-middle: var(--color-gray-light-little);
  --color-bg-dim: var(--color-gray-light-middle);
  /* color border */
  --color-border: var(--color-light);
  --color-border-active: var(--color-dark);
  --color-border-inactive: var(--color-light);
  /* color utility */
  --color-white: #fff;
  --color-black: #333333;
  --color-blue: #58b8e2;
  --color-blue-light: #eef8fc;
  --color-blue-heavy: #26499d;
  --color-red: #b95555;
  --color-yellow: #e5dc09;
  --color-yellow-light: #fcfcbe;
  --color-orange: #d67936;
  --color-orange-light: #f0aa83;
  --color-green: #5dd87a;
  --color-purple: #b565f1;
  --color-pink: #ef6ebf;
  --color-gold: #B48B38;
  --color-silver: #767676;
  --color-bronze: #714C36;
  /* color gray */
  --color-gray: #e3e3e3;
  --color-gray-dark: #707070;
  --color-gray-middle: #dedede;
  --color-gray-light: #fafafa;
  --color-gray-light-little: #f8f8f5;
  --color-gray-light-middle: #f4f6fa;
  /* corporate color */
  --color-line: #06c755;
  --color-facebook: #1877f2;
  --color-twitter: #1d9bf0;
  --color-yahoo: #ff0033;
  --color-google: #ffffff;
  --color-rakuten: #ffffff;
  --color-paypal: #eeeeee;
  --color-atone: #0092cc;
  /* font */
  --font-ja-primary: "Noto Serif JP", serif;
  --font-ja-heading: "Shippori Mincho B1", serif;
  --font-en: "Marcellus", serif;
  /* --font-combined-primary: "Marcellus", "Noto Serif JP", serif; */
  --font-combined-primary: var(--font-ja-primary);
  --font-heading-ja: var(--font-ja-heading);
  --font-heading-en: var(--font-en);
  --font-combined-heading: "Marcellus", "Shippori Mincho B1", serif;
  /* Effect related */
  --hover-opacity: 0.7;
  --transition-default: 500ms ease;
  /* DialogBox */
  --dialog-width: 100%;
  --dialog-bg: var(--color-white);
  --dialog-color: var(--color-black);
  --dialog-bg-head: var(--color-gray-light);
  --dialog-color-head: var(--color-black);
  --dialog-border-color: transparent;
  --dialog-margin: auto;
  --dialog-md-margin: auto;
  --dialog-position-x: 0;
  --dialog-position-y: 0;
  --dialog-position-md-x: 0;
  --dialog-position-md-y: 0;
  --dialog-animation: fadeUp 0.35s ease 0s 1 normal;
  --dialog-animation-speed: 0.35s;
  /* Toast */
  --toast-base-width: calc(100% - 2rem);
  --toast-base-color: var(--color-black);
  --toast-width: var(--toast-base-width);
  --toast-bgCustomize: var(--color-white);
  --toast-colorCustomize: var(--color-black);
  --toast-fadedown-animation: fadeDown 0.5s ease 0s 1 normal;
  --toast-fadeup-animation: fadeUp 0.5s ease 0s 1 normal;
  --toast-showDuration: 0.5s;
  --toast-textAlign: left;
  /* --- container size --- */
  --container-fluid: 100%;
  --container-wide-value: 1920;
  --container-wide: calc(var(--container-wide-value) * .1rem);
  --container-middle-value: 1700;
  --container-middle: calc(var(--container-middle-value) * .1rem);
  --container-standard-value: 1400;
  --container-standard: calc(var(--container-standard-value) * .1rem);
  --container-narrow-value: 1200;
  --container-narrow: calc(var(--container-narrow-value) * .1rem);
  /* --- z index --- */
  --zindex-behind: -1;
  --zindex-base: 0;
  --zindex-front: 1;
  --zindex-overlay: 10;
  --zindex-floating-element: 20;
}
@media screen and (min-width: 768px) {
  :root {
    --container-default: 140rem;
    --container-small: 100rem;
    --container-xs: 80rem;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --dialog-md-width: fit-content;
    --dialog-md-minwidth: 60rem;
    --dialog-md-maxwidth: 60rem;
  }
}
@media screen and (min-width: 768px) {
  :root {
    --toast-md-width: var(--toast-base-width);
    --toast-md-minwidth: 40rem;
    --toast-md-maxwidth: 70rem;
  }
}
html {
  font-size: 62.5%;
}
@media screen and (min-width: 961px) and (max-width: 1700px) {
  html {
    font-size: calc(10 * 100vw / 1700);
  }
}
body {
  font-family: var(--font-combined-primary);
  font-size: 1.5rem;
  line-height: 1.5;
  letter-spacing: 0.025em;
  word-break: break-all;
  color: var(--color-black);
}
body.is-locked {
  position: fixed;
  width: 100%;
}
main {
  width: 100%;
}
h6,
h5,
h4,
h3,
h2,
h1 {
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.6;
}
img {
  image-rendering: -webkit-optimize-contrast;
}
address {
  font-style: normal;
}
/**
 * Lib
 */
/* swiper */
.swiper-wrapper {
  padding-left: 0;
}
.swiper {
  opacity: 0;
  transition: 1s;
}
.swiper-initialized {
  opacity: 1;
}
.swiper-initialized {
  opacity: 1;
}
.swiper-lazy-preloader {
  width: 15%;
  height: 15%;
  min-width: 4.2rem;
  min-height: 4.2rem;
  border: 0.5rem solid var(--color-gray);
  border-top-color: transparent;
  opacity: 0.5;
}
.swiper-lazy:not(.swiper-lazy-loaded) {
  visibility: hidden;
}
/* lazysizes */
.lazyload {
  opacity: 0;
  transition: opacity 0.8s ease-out;
}
.lazyloaded {
  opacity: 1;
}
/**
 * vue
 */
[v-cloak] {
  opacity: 0;
}
/**
 * window resize animate
 */
main,
.container {
  transition: all 0.3s;
}
/**
 * keyframes
 */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(8rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-8rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-10rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(10rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/**
 * vueAnimation
 */
/* fade */
.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}
.fade-leave-from,
.fade-enter-to {
  opacity: 1;
}
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.2s;
}
/* slide */
.slide-enter-from,
.slide-leave-to {
  opacity: 0;
  transform: translateX(-100%);
}
.slide-leave-from,
.slide-enter-to {
  transform: translateX(0);
}
.slide-enter-active,
.slide-leave-active {
  transition: opacity 1s, transform 1s;
}
/* =============================================================
    Trumps (Utility)
============================================================= */
/**
 * #Font
 */
.u-font-ja {
  font-family: var(--font-ja-primary) !important;
}
.u-font-en {
  font-family: var(--font-en) !important;
}
/**
* #Text
*/
/* Color */
.u-text-main {
  color: var(--color-main) !important;
}
.u-text-primary {
  color: var(--color-primary) !important;
}
.u-text-light {
  color: var(--color-light) !important;
}
.u-text-dark {
  color: var(--color-dark) !important;
}
.u-text-warning {
  color: var(--color-warning) !important;
}
.u-text-danger {
  color: var(--color-danger) !important;
}
.u-text-white {
  color: var(--color-white) !important;
}
.u-text-black {
  color: var(--color-black) !important;
}
.u-text-blue {
  color: var(--color-blue) !important;
}
.u-text-blue-light {
  color: var(--color-blue-light) !important;
}
.u-text-red {
  color: var(--color-red) !important;
}
.u-text-yellow {
  color: var(--color-yellow) !important;
}
.u-text-yellow-light {
  color: var(--color-yellow-light) !important;
}
.u-text-orange {
  color: var(--color-orange) !important;
}
.u-text-orange-light {
  color: var(--color-orange-light) !important;
}
.u-text-green {
  color: var(--color-green) !important;
}
.u-text-purple {
  color: var(--color-purple) !important;
}
.u-text-pink {
  color: var(--color-pink) !important;
}
.u-text-gray {
  color: var(--color-gray) !important;
}
.u-text-gray-light {
  color: var(--color-gray-light) !important;
}
.u-text-gray-middle {
  color: var(--color-gray-middle) !important;
}
.u-text-gray-dark {
  color: var(--color-gray-dark) !important;
}
/* Weight */
.u-text-bold {
  font-weight: 600;
}
/* small */
.u-text-small {
  font-size: 1.1rem;
}
/* Align */
.u-text-center {
  text-align: center;
}
@media screen and (min-width: 576px) {
  .u-text-sm-center {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .u-text-md-center {
    text-align: center;
  }
}
@media screen and (min-width: 961px) {
  .u-text-lg-center {
    text-align: center;
  }
}
@media screen and (min-width: 1200px) {
  .u-text-xl-center {
    text-align: center;
  }
}
@media screen and (min-width: 1400px) {
  .u-text-xxl-center {
    text-align: center;
  }
}
.u-text-left {
  text-align: left;
}
@media screen and (min-width: 576px) {
  .u-text-sm-left {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .u-text-md-left {
    text-align: left;
  }
}
@media screen and (min-width: 961px) {
  .u-text-lg-left {
    text-align: left;
  }
}
@media screen and (min-width: 1200px) {
  .u-text-xl-left {
    text-align: left;
  }
}
@media screen and (min-width: 1400px) {
  .u-text-xxl-left {
    text-align: left;
  }
}
.u-text-right {
  text-align: right;
}
@media screen and (min-width: 576px) {
  .u-text-sm-right {
    text-align: right;
  }
}
@media screen and (min-width: 768px) {
  .u-text-md-right {
    text-align: right;
  }
}
@media screen and (min-width: 961px) {
  .u-text-lg-right {
    text-align: right;
  }
}
@media screen and (min-width: 1200px) {
  .u-text-xl-right {
    text-align: right;
  }
}
@media screen and (min-width: 1400px) {
  .u-text-xxl-right {
    text-align: right;
  }
}
/**
* #Background Color
*/
.u-bg-main {
  background-color: var(--color-main) !important;
}
.u-bg-primary {
  background-color: var(--color-primary) !important;
}
.u-bg-light {
  background-color: var(--color-light) !important;
}
.u-bg-dark {
  background-color: var(--color-dark) !important;
}
.u-bg-warning {
  background-color: var(--color-warning) !important;
}
.u-bg-danger {
  background-color: var(--color-danger) !important;
}
.u-bg-white {
  background-color: var(--color-white) !important;
}
.u-bg-black {
  background-color: var(--color-black) !important;
}
.u-bg-blue {
  background-color: var(--color-blue) !important;
}
.u-bg-blue-light {
  background-color: var(--color-blue-light) !important;
}
.u-bg-red {
  background-color: var(--color-red) !important;
}
.u-bg-yellow {
  background-color: var(--color-yellow) !important;
}
.u-bg-yellow-light {
  background-color: var(--color-yellow-light) !important;
}
.u-bg-orange {
  background-color: var(--color-orange) !important;
}
.u-bg-orange-light {
  background-color: var(--color-orange-light) !important;
}
.u-bg-green {
  background-color: var(--color-green) !important;
}
.u-bg-purple {
  background-color: var(--color-purple) !important;
}
.u-bg-pink {
  background-color: var(--color-pink) !important;
}
.u-bg-gray-light {
  background-color: var(--color-gray-light) !important;
}
.u-bg-gray {
  background-color: var(--color-gray) !important;
}
.u-bg-gray-middle {
  background-color: var(--color-gray-middle) !important;
}
.u-bg-gray-dark {
  background-color: var(--color-gray-dark) !important;
}
/**
* #Hidden Responsive
*/
.u-hidden {
  display: none !important;
}
@media screen and (min-width: 576px) {
  .u-hidden-sm-up {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .u-hidden-md-up {
    display: none !important;
  }
}
@media screen and (min-width: 961px) {
  .u-hidden-lg-up {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .u-hidden-xl-up {
    display: none !important;
  }
}
@media screen and (min-width: 1400px) {
  .u-hidden-xxl-up {
    display: none !important;
  }
}
@media screen and (max-width: 575px) {
  .u-hidden-sm-down {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-hidden-md-down {
    display: none !important;
  }
}
@media screen and (max-width: 960px) {
  .u-hidden-lg-down {
    display: none !important;
  }
}
@media screen and (max-width: 1199px) {
  .u-hidden-xl-down {
    display: none !important;
  }
}
@media screen and (max-width: 1399px) {
  .u-hidden-xxl-down {
    display: none !important;
  }
}
.u-contents--loading {
  display: none;
}
.u-contents--loaded {
  display: block;
}
/**
* #Hidden Responsive
*/
/* =============================================================
    Layout
============================================================= */
/**
 * #container-wrap
 */
/* .l-container-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
@media screen and (min-width: 768px) {
  .l-container-wrap {
    flex-direction: column;
    flex-wrap: nowrap;
  }
} */
.l-container-wrap__head {
  max-width: 100%;
}
.l-container-wrap__body {
  display: inherit;
  width: 100%;
  max-width: 100%;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .l-container-wrap__body {
    padding-top: 0;
  }
}
.l-container-wrap__body--top-gap-none {
  padding-top: 0;
}
/* .l-container-wrap__body--top-gap-short {
  padding-top: 2.4rem;
} */
.l-container-wrap__body--stepBar {
  padding-top: 1.7rem;
}
@media screen and (min-width: 768px) {
  .l-container-wrap__body--stepBar {
    padding-top: 0;
  }
}
/**
 * #container
 */
.l-container {
  width: 100%;
  max-width: var(--container-default);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}
@media screen and (min-width: 768px) {
  .l-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.l-container-sm {
  width: 100%;
  max-width: var(--container-small);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}
@media screen and (min-width: 768px) {
  .l-container-sm {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.l-container-xs {
  width: 100%;
  max-width: var(--container-xs);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}
@media screen and (min-width: 768px) {
  .l-container-xs {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
.l-container-fluid {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}
@media screen and (min-width: 768px) {
  .l-container-fluid {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .l-container-fluid-md {
    padding-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 960px) {
  .l-container-fluid-lg {
    padding-left: 0;
    padding-right: 0;
  }
}
/* =============================================================
    Components
============================================================= */
/* input
------------------------------------------------------------- */
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  input,
  select,
  textarea,
  label {
    font-size: 1.3rem;
    line-height: calc(18 / 13);
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  input,
  select,
  textarea,
  label {
    font-size: 1.6rem;
  }
}
/* for IOS move */
@media screen and (max-width: 767px) {
  _:lang(x) + _:-webkit-full-screen-document::placeholder,
  input::placeholder,
  textarea::placeholder {
    transform: translateY(-15%);
  }
}
/**
 * radio
 */
input[type="radio"] {
  position: relative;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  vertical-align: middle;
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-middle);
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
input[type="radio"]:checked {
  border-color: var(--color-primary);
  background-color: var(--color-white);
}
input[type="radio"]:checked:after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  background-color: var(--color-primary);
  border-radius: 50%;
  transition: all 0.15s ease-in-out;
}
input[type="radio"]:disabled {
  border-color: var(--color-gray);
  cursor: default;
}
input[type="radio"]:disabled:after {
  background-color: var(--color-gray);
}
/**
 * checkbox
 */
input[type="checkbox"] {
  width: 1.8rem;
  height: 1.8rem;
  vertical-align: middle;
  background-color: var(--color-white);
  background-repeat: no-repeat;
  background-position: center;
  border: 1px solid var(--color-gray-middle);
  cursor: pointer;
  background-size: 1rem;
  background-image: url(../../assets/img/common/icon/icon-checkbox.svg);
  transition: background-color 0.15s ease-in-out,
    background-position 0.15s ease-in-out, border-color 0.15s ease-in-out,
    box-shadow 0.15s ease-in-out;
  /* c-form-switch  */
}
input[type="checkbox"]:checked {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  background-image: url(../../assets/img/common/icon/icon-checkbox-active.svg);
}
input[type="checkbox"]:disabled {
  border-color: var(--color-gray);
  cursor: default;
}
input[type="checkbox"]:disabled:checked {
  background-color: var(--color-gray);
}
input[type="checkbox"].c-form-switch {
  width: 11.3rem;
  height: 3rem;
  border-radius: 10rem;
  border: 1px solid var(--color-primary);
  background-image: url(../../assets/img/common/icon/icon-switch.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: contain;
  background-color: var(--color-primary);
  transition: background-position 0.15s ease-in-out;
  -webkit-transition: background-position 0.15s ease-in-out;
  color-adjust: exact;
  -webkit-print-color-adjust: exact;
  opacity: 0.1;
}
input[type="checkbox"].c-form-switch:checked {
  background-position: left center;
  border-color: var(--color-primary);
  background-color: var(--color-primary);
  opacity: 1;
}
input[type="checkbox"].c-form-switch:disabled {
  cursor: default;
}
/**
 * text
 */
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"],
input[type="text"],
input[type="number"] {
  width: 100%;
  padding-block: 1.5rem;
  padding-inline: 1.5rem;
  border: solid 1px var(--color-light);
  border-radius: 0.4rem;
  outline: none;
  line-height: 1;
}
input[type="text"]::placeholder,
input[type="password"]::placeholder,
input[type="tel"]::placeholder,
input[type="email"]::placeholder,
input[type="text"]::placeholder,
input[type="number"]::placeholder {
  color: var(--color-light);
}
input[type="text"]:disabled,
input[type="password"]:disabled,
input[type="tel"]:disabled,
input[type="email"]:disabled,
input[type="text"]:disabled,
input[type="number"]:disabled {
  color: var(--color-gray-middle);
  border-color: var(--color-gray);
  background-color: var(--color-gray-light);
}
/**
 * search
 */
input[type="search"] {
  width: 100%;
  border: none;
  outline: none;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="search"]::placeholder {
  color: var(--color-gray-middle);
}
input[type="search"]:disabled {
  color: var(--color-gray-middle);
}
input[type="search"]::-webkit-search-cancel-button {
  width: 1.2rem;
  height: 1.2rem;
  margin-left: 0.4rem;
  background-image: url(../../assets/img/common/icon/icon-remove-cross.svg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
}
@media screen and (min-width: 1200px) {
  input[type="search"]::-webkit-search-cancel-button {
    margin-left: 1rem;
  }
}
/**
 * date
 */
input[type="date"] {
  width: 100%;
  min-height: 4rem;
  padding: 1rem 1.2rem 0.9rem 1.2rem;
  border: solid 1px var(--color-gray-middle);
  border-radius: 0.5rem;
  line-height: 1;
  color: var(--color-black);
  background-color: var(--color-white);
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="date"]::-webkit-date-and-time-value {
  text-align: left;
}
input[type="date"]::placeholder {
  color: var(--color-gray-middle);
}
input[type="date"]:disabled {
  color: var(--color-gray-middle);
  border-color: var(--color-gray);
  background-color: var(--color-gray-light);
}
/**
 * time
 */
input[type="time"] {
  width: 100%;
  min-height: 4rem;
  padding: 0.8rem 1.2rem 0.8rem 1.2rem;
  border: solid 1px var(--color-gray-middle);
  border-radius: 0.5rem;
  line-height: 1;
  color: var(--color-black);
  background-color: var(--color-white);
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
input[type="time"]::-webkit-date-and-time-value {
  text-align: left;
}
input[type="time"]::placeholder {
  color: var(--color-gray-middle);
}
input[type="time"]:disabled {
  color: var(--color-gray-middle);
  border-color: var(--color-gray);
  background-color: var(--color-gray-light);
}
/**
 * label
 */
label {
  display: inline-block;
  cursor: pointer;
}
input + label {
  vertical-align: middle;
  margin-top: 0.2rem;
  margin-left: 0.8rem;
}
input + label + input {
  margin-left: 2.4rem;
}
/**
 * select
 */
select {
  width: 100%;
  padding: 1.5rem;
  border: solid 1px var(--color-gray-middle);
  border-radius: 0.5rem;
  background-color: var(--color-white);
  background-image: url(../../assets/img/common/icon/icon-arrow-select.svg);
  background-repeat: no-repeat;
  background-size: 15px 15px;
  background-position: calc(100% - 1.2rem) center;
  outline: none;
  color: var(--color-black);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select:invalid {
  color: var(--color-gray-middle);
}
select:disabled {
  border-color: var(--color-gray);
  color: var(--color-gray-middle);
  background-color: var(--color-gray-light);
}
/**
 * textarea
 */
textarea {
  width: 100%;
  min-height: 15rem;
  padding: 0.8rem 1.2rem 0.4rem 1.2rem;
  border-radius: 0.5rem;
  background-color: var(--color-blue-light);
  outline: none;
}
textarea:disabled {
  color: var(--color-gray-middle);
  border-color: var(--color-gray);
  background-color: var(--color-gray-light);
}
/**
 * typography
 */
/* --- heading --- */
.c-global-heading {
  display: flex;
  font-family: var(--font-combined-heading);
}
.c-global-heading--primary {
  color: var(--heading-primary-color, var(--color-primary));
  font-weight: 700;
}
.c-global-heading--secondary {
  color: var(--color-light);
  font-weight: 400;
  letter-spacing: 0.3em;
}
.c-global-heading--horizontal {
  flex-direction: column;
}
.c-global-heading--vertical {
  flex-direction: column-reverse;
  writing-mode: vertical-rl;
}
.c-global-heading--horizontal .c-global-heading--primary {
  letter-spacing: 0.15em;
}
.c-global-heading--vertical .c-global-heading--primary {
  letter-spacing: 0.1em;
}
/* --- for small viewport --- */
@media screen and (max-width: 960px) {
  .c-global-heading--primary {
    font-size: var(--heading-primary-font-size, 2.4rem);
  }
  .c-global-heading--horizontal {
    gap: 1rem;
  }
  .c-global-heading--horizontal .c-global-heading--primary {
    line-height: calc(35 / 24);
  }
  .c-global-heading--horizontal .c-global-heading--secondary {
    font-size: 1.2rem;
    line-height: calc(15 / 12);
  }
  .c-global-heading--vertical {
    gap: .8rem;
  }
  .c-global-heading--vertical .c-global-heading--primary {
    line-height: 1;
  }
  .c-global-heading--vertical .c-global-heading--secondary {
    padding-inline-start: .8rem;
    font-size: 1.3rem;
    line-height: calc(17 / 13);
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 961px) {
  .c-global-heading--primary {
    font-size: var(--heading-primary-font-size, 3.8rem);
  }
  .c-global-heading--horizontal {
    gap: 1.5rem;
  }
  .c-global-heading--horizontal .c-global-heading--primary {
    line-height: calc(52 / 36);
  }
  .c-global-heading--horizontal .c-global-heading--secondary {
    font-size: 1.5rem;
    line-height: calc(19 / 15);
  }
  .c-global-heading--vertical {
    gap: 1.6rem;
  }
  .c-global-heading--vertical .c-global-heading--primary {
    line-height: 1;
  }
  .c-global-heading--vertical .c-global-heading--secondary {
    padding-inline-start: 1.6rem;
    font-size: 1.3rem;
    line-height: calc(17 / 13);
  }
}
/* Button
------------------------------------------------------------- */
/* .c-btn {
  display: inline-block;
  width: 100%;
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
} */
.c-btn,
.c-btn-progress {
  display: grid;
  place-items: center;
  width: 100%;
  padding-inline: 0.5em;
  padding-block: 0.5em;
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .c-btn {
    max-width: 15rem;
    min-height: 4rem;
    font-size: 1.3rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .c-btn {
    max-width: 24rem;
    min-height: 5rem;
    font-size: 1.6rem;
  }
}
.c-btn--white {
  border-color: var(--color-gray-dark);
  background-color: var(--color-white);
  color: var(--color-gray-dark) !important;
}
.c-btn--gray {
  border-color: var(--color-gray-middle);
  background-color: var(--color-gray-middle);
}
.c-btn--gray-border {
  border-color: var(--color-gray-middle);
  background-color: var(--color-white);
  color: var(--color-gray-middle) !important;
}
.c-btn--gray-light {
  border-color: var(--color-gray-light);
  background-color: var(--color-gray-light);
  color: var(--color-gray-middle) !important;
}
.c-btn--gray-middle {
  border-color: var(--color-gray);
  background-color: var(--color-gray);
  color: var(--color-gray-dark) !important;
}
.c-btn--red {
  border-color: var(--color-red);
  background-color: var(--color-red);
}
.c-btn--red-border {
  border-color: var(--color-red);
  background-color: var(--color-white);
  color: var(--color-red) !important;
}
.c-btn--border {
  border-color: var(--color-primary);
  background-color: var(--color-white);
  color: var(--color-primary) !important;
}
@media (hover: hover) {
  .c-btn:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}
.c-btn:disabled {
  border-color: var(--color-gray-light);
  background-color: var(--color-gray-light);
  color: var(--color-gray-middle) !important;
  cursor: default;
}
@media (hover: hover) {
  .c-btn:disabled:hover {
    opacity: 1;
  }
}
/**
 * #c-btn-progress
 */
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .c-btn-progress {
    min-height: 4rem;
    font-size: 1.3rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .c-btn-progress {
    min-height: 5rem;
    font-size: 1.6rem;
  }
}
.c-btn-progress--white {
  border-color: var(--color-gray-dark);
  background-color: var(--color-white);
  color: var(--color-gray-dark) !important;
}
.c-btn-progress--gray {
  border-color: var(--color-gray-middle);
  background-color: var(--color-gray-middle);
}
.c-btn-progress--gray-border {
  border-color: var(--color-gray-middle);
  background-color: var(--color-white);
  color: var(--color-gray-middle) !important;
}
.c-btn-progress--gray-light {
  border-color: var(--color-gray-light);
  background-color: var(--color-gray-light);
  color: var(--color-gray-middle) !important;
}
.c-btn-progress--gray-middle {
  border-color: var(--color-gray);
  background-color: var(--color-gray);
  color: var(--color-gray-dark) !important;
}
.c-btn-progress--red {
  border-color: var(--color-red);
  background-color: var(--color-red);
}
.c-btn-progress--red-border {
  border-color: var(--color-red);
  background-color: var(--color-white);
  color: var(--color-red) !important;
}
.c-btn-progress--border {
  border-color: var(--color-primary);
  background-color: var(--color-white);
  color: var(--color-primary) !important;
}
@media (hover: hover) {
  .c-btn-progress:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}
.c-btn-progress:disabled {
  border-color: var(--color-gray-light);
  background-color: var(--color-gray-light);
  color: var(--color-gray-middle) !important;
  cursor: default;
}
@media (hover: hover) {
  .c-btn-progress:disabled:hover {
    opacity: 1;
  }
}
/**
 * #c-btn-fluid
 */
.c-btn-fluid {
  display: inline-block;
  padding: 1.3rem;
  width: 100%;
  margin: 0 auto;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 0.5rem;
  color: var(--color-white) !important;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.c-btn-fluid--white {
  border-color: var(--color-gray-dark);
  background-color: var(--color-white);
  color: var(--color-gray-dark) !important;
}
.c-btn-fluid--gray {
  border-color: var(--color-gray-middle);
  background-color: var(--color-gray-middle);
}
.c-btn-fluid--gray-border {
  border-color: var(--color-gray-middle);
  background-color: var(--color-white);
  color: var(--color-gray-middle) !important;
}
.c-btn-fluid--gray-light {
  border-color: var(--color-gray-light);
  background-color: var(--color-gray-light);
  color: var(--color-gray-middle) !important;
}
.c-btn-fluid--gray-middle {
  border-color: var(--color-gray);
  background-color: var(--color-gray);
  color: var(--color-gray-dark) !important;
}
.c-btn-fluid--red {
  border-color: var(--color-red);
  background-color: var(--color-red);
}
.c-btn-fluid--red-border {
  border-color: var(--color-red);
  background-color: var(--color-white);
  color: var(--color-red) !important;
}
.c-btn-fluid--border {
  border-color: var(--color-primary);
  background-color: var(--color-white);
  color: var(--color-primary) !important;
}
@media (hover: hover) {
  .c-btn-fluid:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}
.c-btn-fluid:disabled {
  border-color: var(--color-gray-light);
  background-color: var(--color-gray-light);
  color: var(--color-gray-middle) !important;
  cursor: default;
}
@media (hover: hover) {
  .c-btn-fluid:disabled:hover {
    opacity: 1;
  }
}
/**
 * #c-btn-cart
 */
.c-btn-cart {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  column-gap: 0.7rem;
  width: 100%;
  padding: 1.1rem 1rem 1.2rem;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  color: var(--color-white) !important;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.c-btn-cart::before {
  content: "";
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.9rem;
  margin-top: -0.2rem;
  background: url("../../assets/img/common/icon/icon-addCart-white.svg") center
    center no-repeat;
  background-size: 100% auto;
}
@media (hover: hover) {
  .c-btn-cart:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}
.c-btn-cart--border {
  border-color: var(--color-primary);
  background-color: var(--color-white);
  color: var(--color-primary) !important;
}
.c-btn-cart--border::before {
  background: url("../../assets/img/common/icon/icon-addCart-blue.svg") center
    center no-repeat;
}
.c-btn-cart--gray-border {
  border-color: var(--color-gray-dark);
  background-color: var(--color-white);
  color: var(--color-gray-dark) !important;
}
.c-btn-cart--gray-border::before {
  background: url("../../assets/img/common/icon/icon-addCart-gray.svg") center
    center no-repeat;
}
.c-btn-cart:disabled {
  border-color: var(--color-gray);
  background-color: var(--color-gray);
  cursor: default;
}
@media (hover: hover) {
  .c-btn-cart:disabled:hover {
    opacity: 1;
  }
}
/**
 * #c-btn-fluid-bold
 */
.c-btn-fluid-bold {
  display: inline-block;
  padding: 1.3rem 0.8rem;
  width: 100%;
  margin: 0 auto;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 0.5rem;
  color: var(--color-white) !important;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.c-btn-fluid-bold--white {
  border-color: var(--color-gray-dark);
  background-color: var(--color-white);
  color: var(--color-gray-dark) !important;
}
.c-btn-fluid-bold--gray {
  border-color: var(--color-gray-middle);
  background-color: var(--color-gray-middle);
}
.c-btn-fluid-bold--gray-border {
  border-color: var(--color-gray-middle);
  background-color: var(--color-white);
  color: var(--color-gray-middle) !important;
}
.c-btn-fluid-bold--gray-light {
  border-color: var(--color-gray-light);
  background-color: var(--color-gray-light);
  color: var(--color-gray-middle) !important;
}
.c-btn-fluid-bold--gray-middle {
  border-color: var(--color-gray);
  background-color: var(--color-gray);
  color: var(--color-gray-dark) !important;
}
.c-btn-fluid-bold--red {
  border-color: var(--color-red);
  background-color: var(--color-red);
}
.c-btn-fluid-bold--red-border {
  border-color: var(--color-red);
  background-color: var(--color-white);
  color: var(--color-red) !important;
}
.c-btn-fluid-bold--border {
  border-color: var(--color-primary);
  background-color: var(--color-white);
  color: var(--color-primary) !important;
}
@media (hover: hover) {
  .c-btn-fluid-bold:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}
.c-btn-fluid-bold:disabled {
  border-color: var(--color-gray);
  background-color: var(--color-gray);
  color: var(--color-white) !important;
  cursor: default;
}
@media (hover: hover) {
  .c-btn-fluid-bold:disabled:hover {
    opacity: 1;
  }
}
/**
 * #c-btn-favorit
 */
.c-btn-favorit {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  column-gap: 0.8rem;
  width: 100%;
  padding: 0.9rem 1rem 0.8rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-middle);
  border-radius: 0.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-gray-middle) !important;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.c-btn-favorit::before {
  content: "";
  width: 2.3rem;
  height: 2rem;
  background: url("../../assets/img/product/icon_button_favorite.svg") center
    center no-repeat;
  background-size: 100% auto;
}
.c-btn-favorit--active::before {
  background: url("../../assets/img/product/icon_button_favorite_active.svg")
    center center no-repeat;
  background-size: 100% auto;
}
@media screen and (min-width: 768px) {
  .c-btn-favorit {
    font-size: 1.4rem;
  }
}
@media (hover: hover) {
  .c-btn-favorit:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}
/**
 * #c-btn-anchor
 */
.c-btn-anchor {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  column-gap: 0.8rem;
  width: 100%;
  padding: 0.9rem 1rem 0.8rem;
  background: var(--color-white);
  border: 1px solid var(--color-gray-middle);
  border-radius: 0.5rem;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--color-gray-middle) !important;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
@media screen and (min-width: 768px) {
  .c-btn-anchor {
    font-size: 1.4rem;
  }
}
@media (hover: hover) {
  .c-btn-anchor:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}
/**
 * #c-btn-cartdown
 */
.c-btn-cartdown {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  column-gap: 1.4rem;
  width: 100%;
  padding: 2.1rem 1rem;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 0.8rem;
  color: var(--color-white) !important;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.c-btn-cartdown::before {
  content: "";
  flex-shrink: 0;
  width: 2.3rem;
  height: 1.8rem;
  margin-top: -0.2rem;
  background: url("../../assets/img/common/icon/icon-downCart-white.svg") center
    center no-repeat;
  background-size: 100% auto;
}
@media (hover: hover) {
  .c-btn-cartdown:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}
.c-btn-cartdown--gray {
  border-color: var(--color-gray-middle);
  background-color: var(--color-gray-middle);
}
.c-btn-cartdown--red {
  border-color: var(--color-red);
  background-color: var(--color-red);
}
.c-btn-cartdown:disabled {
  border-color: var(--color-gray);
  background-color: var(--color-gray);
  cursor: default;
}
@media (hover: hover) {
  .c-btn-cartdown:disabled:hover {
    opacity: 1;
  }
}
/**
 * #c-btn-socialLogin
 */
.c-btn-socialLogin {
  width: 100%;
  border-radius: 0.8rem;
}
.c-btn-socialLogin--line {
  background-color: var(--color-line);
  color: var(--color-white);
}
.c-btn-socialLogin--facebook {
  background-color: var(--color-facebook);
  color: var(--color-white);
}
.c-btn-socialLogin--twitter {
  background-color: var(--color-twitter);
  color: var(--color-white);
}
.c-btn-socialLogin--yahoo {
  background-color: var(--color-yahoo);
  color: var(--color-white);
}
.c-btn-socialLogin--google {
  background-color: var(--color-google);
  margin: 1px 2px 3px 0;
  width: calc(100% - 2px);
  box-shadow: 1px 1px 1px 1px #aaa;
  border-radius: 0.8rem;
}
.c-btn-socialLogin--rakuten {
  background-color: var(--color-rakuten);
  color: var(--color-white);
}
.c-btn-socialLogin__button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding: 0;
  column-gap: 3.2%;
  transition: all 0.15s ease-in-out;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1;
}
.c-btn-socialLogin__button--image {
  padding: 0;
}
.c-btn-socialLogin__button--image > img {
  margin: 0 auto;
}
.c-btn-socialLogin__button-text {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-right: 1rem;
}
.c-btn-socialLogin__button-text--google {
  color: #757575;
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-right: 1rem;
}
.c-btn-socialLogin__icon-png {
  width: 3rem;
  height: 3rem;
}
.c-btn-socialLogin__icon--line {
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  height: 4.6rem;
  padding: 0.3rem;
}
.line-hover-color:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.line-active-color:active {
  background-color: rgba(0, 0, 0, 0.3);
}
.c-btn-socialLogin__icon--facebook {
  height: 3rem;
  margin: 0.8rem 1rem;
}
.c-btn-socialLogin__icon--twitter {
  height: 2.2rem;
  margin: 1.2rem;
}
.c-btn-socialLogin__icon--yahoo {
  height: 2rem;
  margin: 1.3rem;
}
.c-btn-socialLogin__icon--google {
  height: 3rem;
  margin: 0.8rem;
}
/**
 * original button
 */
.c-button {
  --button-color-primary: var(--color-primary);
  --button-color-secondary: var(--color-white);
  --button-arrow-width: 4rem;
  --button-arrow-position: calc(var(--button-arrow-width) / 2 * -1);
  position: relative;
  display: grid;
  place-items: center;
  border: 1px solid var(--button-color-primary);
  background-color: var(--button-color-secondary-active, var(--button-color-secondary));
  color: var(--button-color-primary-active, var(--color-black)) !important;
  letter-spacing: .1em;
  font-weight: 500;
  transition: all var(--transition-default);
}
.c-button::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: var(--button-arrow-width-active, var(--button-arrow-width));
  height: 1px;
  margin: auto;
  background-color: var(--color-light);
  transition: all var(--transition-default);
}
.c-button--arrow-left::after {
  left: var(--button-arrow-position-active, var(--button-arrow-position));
}
.c-button--arrow-right::after {
  right: var(--button-arrow-position-active, var(--button-arrow-position));
}
.c-text-button {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--text-button-gap);
  font-family: var(--font-heading-en);
  letter-spacing: .1em;
}
.c-text-button--bar {
  position: relative;
  width: var(--text-button-bar-width);
  height: 1px;
  background-color: var(--color-light);
  border-radius: 100vh;
}
/* --- for small viewport --- */
@media screen and (max-width: 960px) {
  .c-button {
    width: var(--button-width, 18rem);
    height: var(--butto-height, 4rem);
    font-size: var(--button-font-size, 1.4rem);
  }
  .c-text-button {
    --text-button-gap: .6rem;
    --text-button-bar-width: 1.5rem;
    margin-block-start: 1rem;
    font-size: 1.1rem;
    color: var(--color-primary);
    line-height: calc(14 / 11);
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 961px) {
  .c-button {
    width: var(--button-width, 20rem);
    height: var(--butto-height, 4.5rem);
    font-size: var(--button-font-size, 1.6rem);
  }
  .c-button:hover {
    --button-arrow-additional-width: 1rem;
    --button-color-primary-active: var(--color-white);
    --button-color-secondary-active: var(--color-primary);
    --button-arrow-width-active: calc(var(--button-arrow-width) + var(--button-arrow-additional-width));
    --button-arrow-position-active: calc(var(--button-arrow-position) - var(--button-arrow-additional-width));
  }
  .c-text-button {
    --text-button-gap: 1rem;
    --text-button-bar-width: 3rem;
    margin-block-start: 1rem;
    font-size: 1.3rem;
    color: var(--text-button-bar-hovered-color, var(--color-light));
    line-height: calc(17 / 13);
    transition: all var(--transition-default);
  }
  .c-text-button--bar::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: var(--text-button-bar-hovered-width, .1rem);
    height: 1px;
    margin: auto;
    background-color: var(--color-primary);
    border-radius: 100vh;
    transition: all var(--transition-default);
  }
  .c-text-button:hover {
    --text-button-bar-hovered-color: var(--color-primary);
    --text-button-bar-hovered-width: 100%;
  }
}
/**
 * accordion
 */
.js-accordion-container .js-accordion-trigger span {
  position: relative;
  display: block;
}
.js-accordion-container .js-accordion-trigger span::before,
.js-accordion-container .js-accordion-trigger span::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: var(--toggle-icon-position, 1rem);
  width: var(--toggle-icon-width, 1rem);
  height: 1px;
  margin: auto;
  border-radius: 100vh;
  background-color: var(--toggle-icon-color, var(--color-white));
  transition: all var(--transition-default);
}
.js-accordion-container .js-accordion-trigger span::after {
  transform: rotate(90deg);
}
.js-accordion-container .js-accordion-trigger.is-opened span::before {
  transform: rotate(360deg);
}
.js-accordion-container .js-accordion-trigger.is-opened span::after {
  transform: rotate(540deg);
}
.js-accordion-container .js-accordion-target {
  display: grid; 
  grid-template-rows: 0fr;
  transition: all var(--transition-default);
}
.js-accordion-container .js-accordion-target.is-opened {
  grid-template-rows: 1fr;
}
.js-accordion-container .js-accordion-target .c-accordion-shell {
  overflow: hidden;
}
/* --- for small viewport --- */
@media screen and (max-width: 960px) {
  .js-accordion-container-mobile .js-accordion-trigger span {
    position: relative;
    display: block;
  }
  .js-accordion-container-mobile .js-accordion-trigger span::before,
  .js-accordion-container-mobile .js-accordion-trigger span::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: var(--toggle-icon-position, 1rem);
    width: var(--toggle-icon-width, 1rem);
    height: 1px;
    margin: auto;
    border-radius: 100vh;
    background-color: var(--toggle-icon-color, var(--color-white));
    transition: all var(--transition-default);
  }
  .js-accordion-container-mobile .js-accordion-trigger span::after {
    transform: rotate(90deg);
  }
  .js-accordion-container-mobile .js-accordion-trigger.is-opened span::before {
    transform: rotate(360deg);
  }
  .js-accordion-container-mobile .js-accordion-trigger.is-opened span::after {
    transform: rotate(540deg);
  }
  .js-accordion-container-mobile .js-accordion-target {
    display: grid; 
    grid-template-rows: 0fr;
    transition: all var(--transition-default);
  }
  .js-accordion-container-mobile .js-accordion-target.is-opened {
    grid-template-rows: 1fr;
  }
  .js-accordion-container-mobile .js-accordion-target .c-accordion-shell {
    overflow: hidden;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 961px) {
  .js-accordion-container-desktop .js-accordion-trigger span {
    position: relative;
    display: block;
  }
  .js-accordion-container-desktop .js-accordion-trigger span::before,
  .js-accordion-container-desktop .js-accordion-trigger span::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: var(--toggle-icon-position, 1rem);
    width: var(--toggle-icon-width, 1rem);
    height: 1px;
    margin: auto;
    border-radius: 100vh;
    background-color: var(--toggle-icon-color, var(--color-white));
    transition: all var(--transition-default);
  }
  .js-accordion-container-desktop .js-accordion-trigger span::after {
    transform: rotate(90deg);
  }
  .js-accordion-container-desktop .js-accordion-trigger.is-opened span::before {
    transform: rotate(360deg);
  }
  .js-accordion-container-desktop .js-accordion-trigger.is-opened span::after {
    transform: rotate(540deg);
  }
  .js-accordion-container-desktop .js-accordion-target {
    display: grid; 
    grid-template-rows: 0fr;
    transition: all var(--transition-default);
  }
  .js-accordion-container-desktop .js-accordion-target.is-opened {
    grid-template-rows: 1fr;
  }
  .js-accordion-container-desktop .js-accordion-target .c-accordion-shell {
    overflow: hidden;
  }
}

/**
 * carousel
 */
.m-global-product-carousel {
  position: relative;
}
.m-carousel__footer {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.c-carousel-navigation__shell {
  display: flex;
}
/* --- for small viewport --- */
@media screen and (max-width: 960px) {
  .m-global-product-carousel:has(.m-recommend-carousel) {
    position: relative;
    padding-block-end: 7rem;
  }
  .m-global-product-carousel:has(.m-recommend-carousel) .c-button {
    position: absolute;
    bottom: 0;
    right: var(--carousel-button-right-position, 0);
    z-index: var(--zindex-floating-element);
  }
  .m-global-product-carousel:has(.m-recommend-carousel) .c-carousel-navigation {
    position: absolute;
    bottom: 0;
    z-index: var(--zindex-floating-element);
  }
  .m-global-product-carousel:has(.m-recommend-carousel) .c-carousel-navigation--prev {
    left: 0;
  }
  .m-global-product-carousel:has(.m-recommend-carousel) .c-carousel-navigation--next {
    left: 3.5rem;
  }
  .c-carousel-navigation__shell {
    gap: .5rem;
  }
  .c-carousel-navigation {
    width: 3rem;
    height: 3rem;
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .c-carousel-navigation--prev {
    background-image: url(../../assets/img/common/carousel/carousel-square-prev.svg);
  }
  .c-carousel-navigation--next {
    background-image: url(../../assets/img/common/carousel/carousel-square-next.svg);
  }
  .m-carousel__footer {
    margin-block-start: 3rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 961px) {
  .c-carousel-navigation__shell {
    gap: .8rem;
  }
  .m-recommend-carousel .c-carousel-navigation {
    --carousel-navigation-width: 1.6rem;
    --carousel-navigation-gutter: 5rem;
    --carousel-navigation-position: calc(calc(var(--carousel-navigation-width) + var(--carousel-navigation-gutter)) * -1);
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1.6rem;
    height: 3.2rem;
    margin: auto;
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .m-recommend-carousel .c-carousel-navigation--prev {
    background-image: url(../../assets/img/common/carousel/carousel-prev.svg);
    left: var(--carousel-navigation-position);
  }
  .m-recommend-carousel .c-carousel-navigation--next {
    background-image: url(../../assets/img/common/carousel/carousel-next.svg);
    right: var(--carousel-navigation-position);
  }
  .m-ranking-carousel .c-carousel-navigation {
    width: 4.5rem;
    height: 4.5rem;
    background-repeat: no-repeat;
    background-size: 100%;
  }
  .m-ranking-carousel .c-carousel-navigation--prev {
    background-image: url(../../assets/img/common/carousel/carousel-square-prev.svg);
  }
  .m-ranking-carousel .c-carousel-navigation--next {
    background-image: url(../../assets/img/common/carousel/carousel-square-next.svg);
  }
  .m-carousel__footer {
    margin-block-start: 5rem;
  }
}

/**
 * #c-breadcrumb-list
 */
.c-breadcrumb-list {
  display: flex;
  align-items: center;
  width: fit-content;
  margin-inline-start: auto;
  font-size: 1.1rem;
  line-height: 1.6;
}
.c-breadcrumb-item {
  display: flex;
  align-items: center;
}
.c-breadcrumb-item:last-child {
  color: var(--color-gray-middle);
}
.c-breadcrumb-item:not(:last-child):after {
  content: "";
  padding-right: 1.4rem;
  margin-left: 1rem;
  width: 0.6rem;
  height: 1rem;
  background-image: url(../../assets/img/common/icon/icon-arrow-breadcrumb.svg);
  background-repeat: no-repeat;
  background-size: 0.6rem 1rem;
}
.c-breadcrumb-item__link {
  margin-top: -0.1rem;
}
@media (hover: hover) {
  .c-breadcrumb-item__link:hover {
    text-decoration: underline;
  }
}
.c-breadcrumb-item__current {
  margin-top: -0.1rem;
}
/**
 * #c-pager
 */
.c-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  align-items: center;
  font-size: 1.5rem;
}
@media screen and (min-width: 576px) {
  .c-pager {
    gap: 6%;
  }
}
.c-pager__prev,
.c-pager__next {
  width: 1.485rem;
}
.c-pager__prev.disabled,
.c-pager__next.disabled {
  opacity: 0.05;
  pointer-events: none;
}
@media (hover: hover) {
  .c-pager__prev:hover,
  .c-pager__next:hover {
    opacity: 0.25;
    transition: opacity var(--transition-default);
  }
}
.c-pager__prev {
  position: absolute;
  left: 0;
}
@media screen and (min-width: 576px) {
  .c-pager__prev {
    position: static;
    left: auto;
  }
}
.c-pager__next {
  position: absolute;
  right: 0;
}
@media screen and (min-width: 576px) {
  .c-pager__next {
    position: static;
    right: auto;
  }
}
.c-pager__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.c-pager-list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  line-height: 1;
}
.c-pager-list-item--active {
  border-radius: 50%;
  font-weight: 600;
  background-color: var(--color-gray-light);
}
.c-pager-list-item--leader {
  width: 3rem;
}
@media screen and (min-width: 576px) {
  .c-pager-list-item--leader {
    width: 4rem;
  }
}
.c-pager-list-item__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: transparent;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out;
}
@media (hover: hover) {
  .c-pager-list-item__link:hover {
    font-weight: 600;
    background-color: var(--color-gray-light);
  }
}
/**
 * #c-page-title
 */
.c-page-title {
  padding-bottom: 1.2rem;
  font-size: 2rem;
  line-height: 1.3;
  border-bottom: solid 1px var(--color-gray);
}
@media screen and (min-width: 768px) {
  .c-page-title {
    padding-bottom: 1.4rem;
    font-size: 3.2rem;
  }
}

/**
 * tabs
 */
.c-tabs {}
.c-tabs__list {
  display: flex;
  flex-wrap: wrap;
}
.c-tabs__list-item {
  display: grid;
  place-items: center;
  padding-inline: var(--tab-gutter-active, var(--tab-gutter));
  border: 1px solid var(--tab-border-active, #EBEBEB);
  /* border-radius: 100vh; */
  background-color: var(--tab-background-color-active, var(--color-white));
  color: var(--tab-color-active, var(--color-primary));
  font-family: var(--font-combined-heading);
  letter-spacing: .1em;
}
.c-tabs__list-item.is-current {
  --tab-border-active: var(--color-primary);
  --tab-background-color-active: var(--color-primary);
  --tab-color-active: var(--color-white);
}
[data-tabs-container] [data-tab-target] {
  display: var(--display-tab-contents-active, none);
}
[data-tabs-container] [data-tab-target].is-current {
  --display-tab-contents-active: block;
}
/* --- for small viewport --- */
@media screen and (max-width: 960px) {
  .c-tabs__list {
    column-gap: .4rem;
    row-gap: .8rem;
  }
  .c-tabs__list-item {
    --tab-gutter: 1.2rem;
    height: 3rem;
    font-size: 1.5rem;
  }
  .c-tabs__list-item.is-current {
    --tab-gutter-active: 2rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 961px) {
  .c-tabs__list {
    column-gap: .8rem;
    row-gap: 1.6rem;
  }
  .c-tabs__list-item {
    --tab-gutter: 2rem;
    height: 4rem;
    font-size: 2rem;
  }
  .c-tabs__list-item.is-current {
    --tab-gutter-active: 3.6rem;
  }
}

/**
 * feature list
 */
.l-global-feature__container {
  position: relative;
}
.l-global-feature__container img {
  width: 100%;
}
.m-global-feature__list {
  display: grid;
  grid-template-columns: repeat(var(--feature-list-column-length), 1fr);
  column-gap: var(--feature-list-column-gap);
  row-gap: var(--feature-list-row-gap);
}
.c-global-feature__article-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: var(--feature-article-title-rows);
  max-height: calc(var(--feature-article-title-font-size) * var(--feature-article-title-line-height) * var(--feature-article-title-rows) * .1rem);
  font-size: calc(var(--feature-article-title-font-size) * .1rem);
  line-height: var(--feature-article-title-line-height);
}
/* --- for small viewport --- */
@media screen and (max-width: 960px) {
  .l-global-feature__container {
    --feature-list-column-length: 2;
    --feature-list-column-gap: .9rem;
    --feature-list-row-gap: 2.5rem;
  }
  .c-global-feature__caption {
    margin-block-start: 1rem;
  }
  .c-global-feature__article-title {
    --feature-article-title-rows: 3;
    --feature-article-title-font-size: 14;
    --feature-article-title-line-height: calc(24.5 / 14);
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 961px) {
  .l-global-feature__container {
    --feature-list-column-length: 4;
    --feature-list-column-gap: 3rem;
    --feature-list-row-gap: 5rem;
  }
  .c-global-feature__caption {
    margin-block-start: 2rem;
  }
  .c-global-feature__article-title {
    --feature-article-title-rows: 3;
    --feature-article-title-font-size: 16;
    --feature-article-title-line-height: calc(28 / 16);
  }
  .c-global-feature__link:hover .c-text-button {
    --text-button-bar-hovered-color: var(--color-primary);
    --text-button-bar-hovered-width: 100%;
  }
}

/* Loading Image
------------------------------------------------------------- */
.c-loadingImage {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: rgba(255, 255, 255, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9998;
}
.c-loadingImage__block {
  display: block;
  position: relative;
  min-height: 100px;
}
.c-loadingImage--loaded {
  display: none;
}
.c-loadingImage__item {
  display: block;
  position: absolute;
  top: 45%;
  left: calc(50% - 3.5rem);
  z-index: 9999;
}
@media screen and (min-width: 768px) {
  .c-loadingImage__item {
    top: 48%;
    left: calc(50% - 3.5rem);
  }
}
.c-loadingImage-icon {
  margin: 0 auto;
  width: 7rem;
  text-align: center;
}
.c-loadingImage-icon__item {
  display: inline-block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 100%;
  background-color: var(--color-gray-middle);
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
@media screen and (min-width: 768px) {
  .c-loadingImage-icon__item {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.c-loadingImage-icon__item--bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.c-loadingImage-icon__item--bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* textLink
------------------------------------------------------------- */
.c-textLink {
  padding: 0;
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: underline !important;
  text-underline-offset: 0.1rem;
  color: var(--color-primary) !important;
  background-color: transparent;
}
/**
 * #c-couponBox
 */
.c-couponBox {
  display: block;
  padding: 1.6rem 1.6rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .c-couponBox {
    padding: 4rem 4rem;
  }
}
.c-couponBox-head {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-couponBox-head {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 1rem 1rem 1rem 1rem;
    font-size: 1.1rem;
    color: var(--color-gray-middle);
    border-top: solid 1px var(--color-gray);
    border-bottom: solid 1px var(--color-gray);
  }
}
@media screen and (min-width: 961px) {
  .c-couponBox-head {
    gap: 2rem;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .c-couponBox-head__name {
    flex: 1 1 auto;
  }
}
@media screen and (min-width: 768px) {
  .c-couponBox-head__rate {
    flex: 0 0 9rem;
    text-align: center;
  }
}
@media screen and (min-width: 961px) {
  .c-couponBox-head__rate {
    flex-basis: 10rem;
  }
}
@media screen and (min-width: 768px) {
  .c-couponBox-head__cnt {
    flex: 0 0 7rem;
    text-align: center;
  }
}
@media screen and (min-width: 961px) {
  .c-couponBox-head__cnt {
    flex-basis: 8.5rem;
  }
}
@media screen and (min-width: 768px) {
  .c-couponBox-head__limite {
    flex: 0 0 27.5rem;
    padding-left: 2rem;
    text-align: left;
  }
}
@media screen and (min-width: 961px) {
  .c-couponBox-head__limite {
    flex-basis: 36.5rem;
    padding-left: 6.5rem;
  }
}
@media screen and (min-width: 768px) {
  .c-couponBox-body {
    font-size: 1.4rem;
  }
}
.c-couponBox-item {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-couponBox-item {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 1.5rem;
    padding: 2rem 1rem 2rem 1rem;
    border-bottom: solid 1px var(--color-gray);
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
@media screen and (min-width: 961px) {
  .c-couponBox-item {
    gap: 2rem;
    font-size: 1.4rem;
  }
}
.c-couponBox-item__name {
  margin-bottom: 1.4rem;
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .c-couponBox-item__name {
    flex: 1 1 auto;
    margin-bottom: 0;
    font-size: 1.2rem;
    font-weight: 400;
  }
}
@media screen and (min-width: 961px) {
  .c-couponBox-item__name {
    font-size: 1.4rem;
  }
}
.c-couponBox-item__rate {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .c-couponBox-item__rate {
    flex: 0 0 9rem;
    margin-bottom: 0;
    text-align: center;
  }
}
@media screen and (min-width: 961px) {
  .c-couponBox-item__rate {
    flex-basis: 10rem;
  }
}
.c-couponBox-item__cnt {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .c-couponBox-item__cnt {
    flex: 0 0 7rem;
    margin-bottom: 0;
    text-align: center;
  }
}
@media screen and (min-width: 961px) {
  .c-couponBox-item__cnt {
    flex-basis: 8.5rem;
  }
}
@media screen and (min-width: 768px) {
  .c-couponBox-item__limite {
    flex: 0 0 10rem;
    text-align: left;
  }
}
@media screen and (min-width: 961px) {
  .c-couponBox-item__limite {
    flex-basis: 18rem;
  }
}
.c-couponBox-item__button {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-couponBox-item__button {
    flex: 0 0 16rem;
    margin-top: 0;
    margin: 0 0 0 auto;
  }
}
@media screen and (min-width: 961px) {
  .c-couponBox-item__button {
    flex-basis: 17rem;
  }
}
.c-couponBox-item + .c-couponBox-item {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .c-couponBox-item + .c-couponBox-item {
    margin-top: 0;
  }
}
.c-couponBox-detailBox {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (min-width: 768px) {
  .c-couponBox-detailBox {
    display: block;
  }
}
.c-couponBox-detailBox__name {
  color: var(--color-gray-middle);
}
.c-couponBox-detailBox__name::after {
  content: "：";
}
@media screen and (min-width: 768px) {
  .c-couponBox-detailBox__name {
    display: none;
  }
}
.c-couponBox-detailBox__detail--rate {
  color: var(--color-red);
}
/**
* c-formInputTable
*/
.c-formInputTable {
  display: block;
}
.c-formInputTable__tr {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-formInputTable__tr {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
  }
}
.c-formInputTable__tr + .c-formInputTable__tr {
  margin-top: 2rem;
}
.c-formInputTable__th {
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .c-formInputTable__th {
    width: 15.5rem;
    padding-top: 1rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .c-formInputTable__td {
    width: calc(100% - 15.5rem);
  }
  .c-formInputTable__td .c-formInput-item__nameInput {
    max-width: 32rem;
  }
}
.c-formInput-item__starSelect {
  width: 100%;
  color: var(--color-yellow);
}
@media screen and (min-width: 768px) {
  .c-formInput-item__starSelect {
    max-width: 32rem;
  }
}
/**
 * #c-medicalQuestionnaireBox
 */
.c-medicalQuestionnaireBox {
  display: block;
  padding: 1.6rem 1.6rem 3rem;
  text-align: left;
}
.c-medicalQuestionnaireBox .c-formInputTable {
  margin-bottom: 1.6rem;
}
.c-medicalQuestionnaireBox .c-formInputTable__tr + .c-formInputTable__tr {
  margin-top: 3rem;
}
.c-medicalQuestionnaireBox .m-modalBoxFooterBtn {
  padding-bottom: 0;
}
.c-medicalQuestionnaireBox .c-formInputErrors {
  margin: 1.2rem 0 0;
}
@media screen and (min-width: 768px) {
  .c-medicalQuestionnaireBox .c-formInputTable__tr {
    display: block;
    width: calc(100% - 15.5rem);
    margin: 3rem auto 0;
  }
  .c-medicalQuestionnaireBox .c-formInputTable__th {
    width: auto;
    margin-bottom: 1rem;
    padding-top: 0;
  }
  .c-medicalQuestionnaireBox .c-formInputTable__td {
    width: auto;
  }
  .c-medicalQuestionnaireBox .c-formInputErrors {
    display: block;
    width: calc(100% - 15.5rem);
    margin: 3rem auto 0;
  }
}
.c-medicalQuestionnaireBox .c-formContent-invalid {
  width: auto;
}
.c-medicalQuestionnaireBox .c-formContent-invalid .c-formInput-invalid__alert {
  font-size: 1.6rem;
  color: var(--color-red);
  margin: 0 auto 5rem;
}
@media screen and (min-width: 768px) {
  .c-medicalQuestionnaireBox .c-formContent-invalid {
    display: block;
    width: calc(100% - 15.5rem);
    margin: 1.6rem auto 0;
  }
  .c-medicalQuestionnaireBox
    .c-formContent-invalid
    .c-formInput-invalid__alert {
    text-align: center;
  }
  .c-medicalQuestionnaireBox .c-accountMedicalQuestionnaire .c-formInputErrors {
    margin: 1.6rem auto 0;
  }
}
.c-medicalQuestionnaireBox
  .c-accountMedicalQuestionnaire
  .c-formInputErrors
  .c-formInput-item__alert_fixed {
  font-size: 1.6rem;
  text-align: center;
}
.c-medicalQuestionnaireConfirm {
  margin: 3rem auto 0;
}
@media screen and (min-width: 768px) {
  .c-medicalQuestionnaireConfirm {
    width: calc(100% - 15.5rem);
  }
}
.c-medicalQuestionnaireConfirm-head {
  margin-bottom: 1rem;
}
.c-medicalQuestionnaireConfirmHeading__title {
  margin-bottom: 1.3rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  .c-medicalQuestionnaireConfirmHeading__title {
    margin-bottom: 1.4rem;
  }
}
.c-medicalQuestionnaireConfirm-info__title {
  display: inline-block;
  vertical-align: top;
}
.c-medicalQuestionnaireConfirm-info__text {
  display: inline-block;
  white-space: pre;
}
.c-medicalQuestionnaireComplete-title {
  line-height: 1.3;
  font-size: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-medicalQuestionnaireComplete-title {
    font-size: 3.2rem;
  }
}
.c-medicalQuestionnaireComplete-info {
  margin-top: 2.7rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .c-medicalQuestionnaireComplete-info {
    margin-top: 4.2rem;
    font-size: 1.6rem;
    text-align: center;
  }
}
.c-medicalQuestionnaire__button-wrap {
  margin-top: 3rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-medicalQuestionnaire__button-wrap {
    width: 18rem;
    margin: 3rem 0 0;
    text-align: left;
  }
}
.c-medicalQuestionnaire-button {
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .c-medicalQuestionnaire-button {
    width: 18rem;
    margin: 0;
  }
}
/**
 * #c-freeWordSearchBox
 */
.c-freeWordSearchBox {
  display: flex;
  gap: 0.1rem;
  width: 100%;
  padding: 0.1rem 1rem 0 0.5rem;
  border: solid 1px var(--color-gray-dark);
  border-radius: 10rem;
}
.c-freeWordSearchBox__icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
}
.c-freeWordSearchBox__form {
  padding-left: 0;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  line-height: 1;
}
@media screen and (min-width: 1200px) {
  .c-freeWordSearchBox__form {
    font-size: 1.3rem;
  }
}
.c-freeWordSearchBox__submit {
  display: none;
}
/* sIcon
------------------------------------------------------------- */
.c-sIcon {
  display: inline-block;
  color: var(--color-white);
  background: var(--color-primary);
  font-weight: 600;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .c-sIcon {
    padding-inline: 0.6rem;
    font-size: 1rem;
    line-height: 2rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .c-sIcon {
    padding-inline: 0.5rem;
    font-size: 1.3rem;
    line-height: 2.3rem;
  }
}
.c-sIcon--01 {
  background: var(--color-primary);
}
.c-sIcon--02 {
  background: var(--color-orange);
}
.c-sIcon--offrate {
  background: var(--color-red);
}
.c-sIcon--comingsoon {
  background: var(--color-yellow);
}
.c-sIcon--soldout {
  background: var(--color-gray-middle);
}
/* Product
------------------------------------------------------------- */
.c-product {
  position: relative;
}
.c-product-head {
  position: relative;
}
.c-typeListProduct-pictureBox__picture {
  display: block;
  position: relative;
  width: 100%;
}
.c-product-head__picture {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.c-product-head__picture::before {
  content: "";
  display: block;
  padding-top: 130%;
}
.c-product-head__image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media (hover: hover) {
  .c-product-head__picture:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}
.c-product-head__status {
  width: 100%;
}

.c-product-head__favorite {
  position: absolute;
  right: 0.6rem;
  bottom: 0.6rem;
}
@media screen and (min-width: 768px) {
  .c-product-head__favorite {
    right: 1rem;
    bottom: 1rem;
  }
}
.c-product-head__rank {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  min-width: 2.1rem;
  height: 2.1rem;
  padding: 0 6px;
  text-align: center;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  font-family: var(--font-en);
  background-color: var(--color-white);
  color: var(--color-black);
}
.c-product-body {
  position: relative;
  margin-top: 0.7rem;
}
@media screen and (min-width: 768px) {
  .c-product-body {
    margin-top: 1rem;
  }
}
.c-product-body__title-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .c-product-body__title-name {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .c-product-body__title-name {
    font-size: 1.6rem;
  }
}
@media (hover: hover) {
  .c-product-body__title-name:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}
.c-product-body__icon {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .c-product-body__icon {
    font-size: 1.6rem;
  }
}
.c-product-body__icon-medicine-icon {
  padding: 0 0.5rem;
  background-color: var(--color-primary);
  border: 1px solid var(--color-primary);
  border-radius: 0.5rem;
  color: var(--color-white) !important;
  text-align: center;
  vertical-align: middle;
  font-size: 1.4rem;
  line-height: 1;
}
.c-product-body__price {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .c-product-body__price {
    font-size: 1.6rem;
  }
}
.c-product-body__price--bold {
  font-weight: 600;
}
.c-product-body__price--discount {
  color: var(--color-red);
}
.c-product-body__price-subsc {
  display: flex;
  align-items: center;
  column-gap: 0.6rem;
}
.c-product-body__price-subsc--regular {
  margin-top: -0.2rem;
  color: var(--color-gray-middle);
}
.c-product-body__price-subsc-icon {
  display: block;
  flex-shrink: 0;
  padding: 0.2rem 0.4rem 0.1rem;
  border: solid 1px var(--color-gray-middle);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  color: var(--color-gray-middle);
}
@media screen and (min-width: 768px) {
  .c-product-body__price-subsc-icon {
    padding: 0.2rem 0.6rem;
    font-weight: 600;
  }
}
.c-product-body__price-subsc-price--discount {
  color: var(--color-red);
}
.c-product-body__price-subscPromotion {
  display: block;
  margin-top: 0.5rem;
  padding: 0.2rem 0.5rem 0.1rem;
  text-align: center;
  border: 1px solid var(--color-red);
  font-size: 1rem;
  font-weight: normal;
  color: var(--color-red);
}
@media screen and (min-width: 768px) {
  .c-product-body__price-subscPromotion {
    font-size: 1.2rem;
  }
}
.c-product-body__price-subscPromotion-caption::after {
  content: "：";
}
.c-product-body__price-subscPromotion-price {
  font-weight: 600;
}
.c-product-sIcon {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.4rem;
  padding-block-end: .5em;
  overflow: auto;
}
.c-product-sIcon__item {
  flex-shrink: 0;
  height: 2rem;
}
@media screen and (min-width: 768px) {
  .c-product-sIcon__item {
    height: 2.5rem;
  }
}
.c-product-sIcon__item img {
  width: auto;
  height: 100%;
}
.c-product-favorite {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--color-white);
  text-align: center;
  transition: all 0.3s ease-in;
}
@media screen and (min-width: 768px) {
  .c-product-favorite {
    z-index: -1;
    visibility: hidden;
    opacity: 0;
  }
}
@media screen and (min-width: 768px) {
  .c-product-favorite:hover .c-product-favorite__icon {
    background: url("../../assets/img/common/icon/icon-favorite-active.svg")
      center center no-repeat;
    background-size: 100% auto;
  }
}
@media screen and (min-width: 961px) {
  .c-product-favorite {
    width: 6rem;
    height: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .c-product-favorite--active {
    z-index: 1;
    visibility: visible;
    opacity: 1;
  }
}
.c-product-favorite__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.43rem;
  width: 100%;
  height: 100%;
}
.c-product-favorite__icon {
  display: block;
  flex-shrink: 0;
  width: 1.7rem;
  height: 1.4rem;
  margin: 0.2rem auto 0;
  font-size: 0;
  background: url("../../assets/img/common/icon/icon-favorite.svg") center
    center no-repeat;
  background-size: 100% auto;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 961px) {
  .c-product-favorite__icon {
    width: 2.4rem;
    height: 2rem;
  }
}
.c-product-favorite__icon--active {
  background: url("../../assets/img/common/icon/icon-favorite-active.svg")
    center center no-repeat;
  background-size: 100% auto;
}
.c-product-favorite__count {
  display: none;
  line-height: 1;
  font-size: 1rem;
}
@media screen and (min-width: 961px) {
  .c-product-favorite__count {
    display: block;
  }
}
.c-product-variation {
  display: none;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  transition: all 0.3s ease-in;
}
@media screen and (min-width: 768px) {
  .c-product-variation {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .c-product-variation--active {
    z-index: 2;
    visibility: visible;
    opacity: 1;
  }
}
.c-product-variation__inner {
  position: relative;
  padding: 1rem 0.6rem 1rem;
  border-radius: 0.4rem;
  background: var(--color-white);
}
.c-product-variation__inner::before {
  content: "";
  position: absolute;
  display: block;
  border-style: solid;
  border-color: var(--color-white) transparent;
  border-width: 0 0.6rem 0.6rem 0.6rem;
  top: -0.6rem;
  left: 10%;
  margin-left: -10px;
}
.c-product-variation__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 7%;
}
.c-product-variation__item {
  width: 28.6666333333%;
}
/* Product (user)
------------------------------------------------------------- */
.c-productUser {
  position: relative;
}
.c-productUser-head {
  position: relative;
}
.c-productUser-head__picture {
  display: block;
  position: relative;
  width: 100%;
}
.c-productUser-head__picture::before {
  content: "";
  display: block;
  padding-top: 130%;
}
@media (hover: hover) {
  .c-productUser-head__picture:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}
.c-productUser-head__image {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.c-productUser-head__status {
  width: 100%;
  margin-block-start: 1em;
  bottom: 0;
  left: 0;
}
.c-productUser-head__favorite {
  position: absolute;
  right: 0.6rem;
  bottom: 0.6rem;
}
@media screen and (min-width: 961px) {
  .c-productUser-head__favorite {
    right: 1rem;
    bottom: 1rem;
  }
}
.c-productUser-head__delete {
  position: absolute;
  right: 0.6rem;
  bottom: 0.6rem;
}
@media screen and (min-width: 576px) {
  .c-productUser-head__delete {
    right: 1rem;
    bottom: 1rem;
  }
}
.c-productUser-body {
  position: relative;
  margin-top: 0.7rem;
}
@media screen and (min-width: 768px) {
  .c-productUser-body {
    margin-top: 1rem;
  }
}
.c-productUser-body__title-name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .c-productUser-body__title-name {
    font-size: 1.2rem;
  }
}
@media (hover: hover) {
  .c-productUser-body__title-name:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}
.c-productUser-body__price {
  font-weight: 300;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .c-productUser-body__price {
    font-size: 1.6rem;
  }
}
.c-productUser-body__price--discount {
  color: var(--color-red);
}
.c-productUser-body__price-disabled {
  line-height: 1;
  font-size: 1rem;
  font-weight: normal;
  color: var(--color-gray-middle);
}
@media screen and (min-width: 768px) {
  .c-productUser-body__price-disabled {
    line-height: 1.6;
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 768px) {
  .c-productUser-body__price-disabled-caption {
    display: none;
  }
}
.c-productUser-body__price-disabled-caption--md {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-productUser-body__price-disabled-caption--md {
    display: inline;
  }
}
.c-productUser-body__price-subsc-caption {
  font-size: 1rem;
  color: var(--color-red);
}
@media screen and (min-width: 768px) {
  .c-productUser-body__price-subsc-caption {
    display: none;
    font-size: 1.2rem;
    color: var(--color-black);
  }
}
.c-productUser-body__price-subsc-caption--md {
  display: none;
  font-size: 1rem;
  color: var(--color-red);
}
@media screen and (min-width: 768px) {
  .c-productUser-body__price-subsc-caption--md {
    display: inline;
    font-size: 1.2rem;
    color: var(--color-black);
  }
}
.c-productUser-body__price-subsc-promotion {
  display: block;
  margin-top: 1rem;
  padding: 0.1rem 0.5rem 0.1rem;
  text-align: center;
  border: 1px solid var(--color-red);
  font-size: 1rem;
  font-weight: normal;
  color: var(--color-red);
}
@media screen and (min-width: 768px) {
  .c-productUser-body__price-subsc-promotion {
    margin-top: 0.5rem;
    padding: 0.1rem 0.5rem 0;
    font-size: 1.2rem;
  }
}
/**
 * #c-productSkuBottomBtn
 */
.c-productSkuBottomBtn {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 1rem;
  margin-top: 1rem;
}
.c-productSkuBottomBtn .c-btn-cart {
  padding: 2rem 1rem 1.7rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .c-productSkuBottomBtn .c-btn-cart {
    min-height: 2.4rem;
    padding: 1.1rem 1rem 1.2rem;
    border-radius: 0.5rem;
    font-size: 1.4rem;
  }
}
.c-productSkuBottomBtn .c-btn-anchor {
  padding: 1.7rem 1rem 1.6rem;
  border-radius: 0.8rem;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .c-productSkuBottomBtn .c-btn-anchor {
    min-height: 2.4rem;
    padding: 0.9rem 1rem 0.8rem;
    border-radius: 0.5rem;
    font-size: 1.4rem;
  }
}
.c-productUser-sIcon {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.2rem 0.2rem;
  overflow: auto;
}
.c-productUser-sIcon__item {
  flex-shrink: 0;
  height: 2.5rem;
}
.c-productUser-sIcon__item img {
  width: auto;
  height: 100%;
}
@media screen and (min-width: 768px) {
}
.c-productUser-favorite {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--color-white);
  text-align: center;
  transition: all 0.3s ease-in;
}
@media screen and (min-width: 768px) {
  .c-productUser-favorite {
    z-index: -1;
    visibility: hidden;
    opacity: 0;
  }
}
@media screen and (min-width: 961px) {
  .c-productUser-favorite {
    width: 6rem;
    height: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .c-productUser-favorite--active {
    z-index: 1;
    visibility: visible;
    opacity: 1;
  }
}
.c-productUser-favorite__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.43rem;
  width: 100%;
  height: 100%;
}
.c-productUser-favorite__icon {
  width: 1.66rem;
  margin: 0.2rem auto 0;
  flex-shrink: 0;
}
@media screen and (min-width: 961px) {
  .c-productUser-favorite__icon {
    width: 2.36rem;
    margin-top: 0.2rem;
  }
}
.c-productUser-favorite__count {
  display: none;
  line-height: 1;
  font-size: 1rem;
}
@media screen and (min-width: 961px) {
  .c-productUser-favorite__count {
    display: block;
  }
}
.c-productUser-delete {
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background-color: var(--color-white);
  text-align: center;
  transition: all 0.3s ease-in;
}
@media screen and (min-width: 576px) {
  .c-productUser-delete {
    width: 4rem;
    height: 4rem;
  }
}
.c-productUser-delete__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 100%;
  height: 100%;
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
.c-productUser-delete__icon {
  flex-shrink: 0;
  width: 1rem;
  margin: 0 auto;
}
@media screen and (min-width: 576px) {
  .c-productUser-delete__icon {
    width: 1.5rem;
  }
}
.c-productUser-variation {
  display: none;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  width: 100%;
  top: 100%;
  left: 0;
  transition: all 0.15s ease-in-out;
}
@media screen and (min-width: 768px) {
  .c-productUser-variation {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .c-productUser-variation--active {
    z-index: 2;
    visibility: visible;
    opacity: 1;
  }
}
.c-productUser-variation__inner {
  position: relative;
  padding: 1rem 0.6rem 1rem;
  border-radius: 0.4rem;
  background: var(--color-white);
}
.c-productUser-variation__inner::before {
  content: "";
  position: absolute;
  display: block;
  border-style: solid;
  border-color: var(--color-white) transparent;
  border-width: 0 0.6rem 0.6rem 0.6rem;
  top: -0.6rem;
  left: 10%;
  margin-left: -10px;
}
.c-productUser-variation__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 7%;
}
.c-productUser-variation__item {
  width: 28.6666333333%;
}
.c-productUser-foot {
  margin-top: 1.1rem;
  margin-bottom: 0.4rem;
}
.c-productUser-foot__button {
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .c-productUser-foot__button {
    width: 100%;
  }
}
@media screen and (min-width: 961px) {
  .c-productUser-foot__button {
    width: 75%;
  }
}
.c-productUser-foot__quantity + .c-productUser-foot__button {
  margin-top: 1.2rem;
}

/**
 * global product module
 */
.m-global-products {
  font-family: var(--font-ja-primary);
}
.c-global-products__list-item {
  position: relative;
}
.c-global-products__thumbnail {
  position: relative;
}
.c-global-products__thumbnail-picture {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.c-global-products__thumbnail-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-global-products__rank {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--global-products-ranking-size);
  height: var(--global-products-ranking-size);
  display: grid;
  place-items: center;
  background-color: var(--global-products-ranking-background-color, var(--color-gray-middle));
  color: var(--global-products-ranking-color, var(--color-primary));
  font-size: var(--global-products-ranking-font-size);
  font-family: var(--font-heading-en);
}
.c-global-products__rank--1 {
  --global-products-ranking-background-color: var(--color-gold);
  --global-products-ranking-color: var(--color-white);
}
.c-global-products__rank--2 {
  --global-products-ranking-background-color: var(--color-silver);
  --global-products-ranking-color: var(--color-white);
}
.c-global-products__rank--3 {
  --global-products-ranking-background-color: var(--color-bronze);
  --global-products-ranking-color: var(--color-white);
}
.m-global-products__description {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 1.2rem;
}
.c-global-products__product-name {
}
.c-global-products__price {
  position: relative;
}
.c-global-products__price-table {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}
.c-global-products__price-table dt {
  display: grid;
  place-items: center;
  border-radius: .2rem;
}
.c-global-products__price-table--subscription dt {
  background-color: var(--color-gray-middle);
  font-weight: 600;
}
.c-global-products__price-table--sale dt {
  border: 1px solid var(--color-red);
  color: var(--color-red);
  font-weight: 700;
}
.c-global-products__discount-price {
  display: flex;
  align-items: center;
}
.m-global-products__price-shell:has(.c-global-products__price-table--sale) .c-global-products__discount-rate {
  display: none;
}
.c-global-products__discount-price .c-global-products__price::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  margin: auto;
  background-color: var(--color-red);
  z-index: --zindex(--zindex-overlay);
}
.c-global-products__discount-rate {
  color: var(--color-red);
  font-weight: 600;
}
.c-global-products__icons-list {
  display: flex;
  flex-wrap: wrap;
}
.c-global-products__icons-list-item img {
  width: auto;
  height: 100%;
}
/* --- for small viewport --- */
@media screen and (max-width: 960px) {
  .c-global-products__rank {
    --global-products-ranking-size: 2.5rem;
    --global-products-ranking-font-size: 1.4rem;
  }
  .m-global-products__description {
    margin-block-start: 1.2rem;
  }
  .c-global-products__product-name {
    font-size: 1.4rem;
    line-height: calc(21 / 14);
  }
  .m-global-products__price-shell {
    line-height: 2.3rem;
  }
  .c-global-products__price {
    font-size: 1.6rem;
  }
  .c-global-products__price--currency {
    font-size: 1rem;
    letter-spacing: .025em;
  }
  .c-global-products__price-table {
    column-gap: 1rem;
  }
  .c-global-products__price-table dt {
    min-width: 5rem;
    height: 1.9rem;
    padding-inline: .5rem;
    font-size: 1rem;
    line-height: 1;
  }
  .c-global-products__discount-price {
    gap: .5rem;
  }
  .c-global-products__discount-rate {
    font-size: 1.1rem;
  }
  .c-global-products__catchcopy {
    display: none;
  }
  .c-global-products__icons-list {
    gap: .5rem;
  }
  .c-global-products__icons-list-item {
    height: 2rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 961px) {
  .c-global-products__rank {
    --global-products-ranking-size: 2.5rem;
    --global-products-ranking-font-size: 1.4rem;
  }
  .m-global-products__description {
    margin-block-start: 1.2rem;
  }
  .c-global-products__product-name {
    font-size: 1.6rem;
    line-height: calc(24 / 16);
  }
  .m-global-products__price-shell {
    line-height: 2.6rem;
  }
  .c-global-products__price {
    font-size: 1.8rem;
  }
  .c-global-products__price--currency {
    font-size: 1.2rem;
    letter-spacing: .05em;
  }
  .c-global-products__price-table {
    column-gap: .5rem;
  }
  .c-global-products__price-table dt {
    min-width: 5rem;
    height: 1.6rem;
    padding-inline: .5rem;
    font-size: 1rem;
    line-height: 1;
  }
  .c-global-products__discount-price {
    gap: 1rem;
  }
  .c-global-products__discount-rate {
    font-size: 1.5rem;
  }
  .c-global-products__catchcopy {
    font-size: 1.4rem;
    line-height: calc(24.5 / 14);
  }
  .c-global-products__icons-list {
    gap: .5rem;
  }
  .c-global-products__icons-list-item {
    height: 2.3rem;
  }
}

/**
 * #c-required-icon
 */
.c-required-icon {
  box-sizing: border-box;
  padding: 0.2rem 0.35rem;
  margin: 0;
  line-height: 1;
  color: var(--color-red);
  border: solid 1px var(--color-red);
  border-radius: 0;
  background-color: var(--color-white) !important;
  font-size: 1rem;
}
/* form Input
------------------------------------------------------------- */
/**
 * #c-formInput-itemTitle
 */
.c-formInput-itemTitle {
  display: flex;
  align-items: center;
  line-height: 1.3;
  font-size: 1.4rem;
}
.c-formInput-itemTitle--headline {
  font-size: 1.5rem;
}
.c-formInput-itemTitle .c-required-icon {
  margin-left: 0.8rem;
}
.c-formInput-itemTitle + .c-formInput-item {
  margin-top: 1rem;
}
.c-formInput-itemTitle--mb-lg + .c-formInput-item {
  margin-top: 2rem;
}
/**
 * #c-formInput-item
 */
.c-formInput-item:not(:last-of-type) {
  margin-bottom: 1.2rem;
}
.c-formInput-item__half {
  width: 50% !important;
}
.c-formInput-item__annotation {
  margin-top: 0.8rem;
  font-size: 1.2rem;
}
.c-formInput-item__annotation + .c-formInput-item__annotation {
  margin-top: 0;
}
.c-formInput-item__annotation + .c-formInput-item__alert {
  margin-top: 0.3rem;
}
.c-formInput-item__annotation--top-large {
  margin-top: 1rem;
}
.c-formInput-item__alert {
  display: none;
  margin-top: 0.5rem;
  font-size: 1.2rem;
  white-space: pre-wrap;
  color: var(--color-red);
}

.c-formInput-item__alert--large {
  display: none;
  margin-top: 0.5rem;
  font-size: 1.4rem;
  white-space: pre-wrap;
  color: var(--color-red);
}

.c-formInput-item__alert--active {
  display: block;
}

.c-formInput-item__alert-text {
  margin-top: 2.5rem;
}

.c-formInput-item__col2 {
  display: flex;
  justify-content: space-between;
  gap: 3%;
}
.c-formInput-item__birthday {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5%;
}
.c-formInput-item__inline {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 2.5%;
  row-gap: 0.8rem;
  width: 100%;
}
.c-formInput-item__inline-item {
  display: flex;
  flex-shrink: 0;
  font-size: 1.5rem;
  line-height: 1.3;
}
.c-formInput-item__inline-button {
  flex-shrink: 0;
  margin-right: 0.8rem;
}
.c-formInput-item__inline-text {
  margin-top: 0.1rem;
}
.c-formInput-item__block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 1.5rem;
  width: 100%;
}
.c-formInput-item__block-item {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 100%;
  font-size: 1.5rem;
  line-height: 1.3;
}
.c-formInput-item__block-button {
  flex-shrink: 0;
  margin-right: 0.8rem;
}
.c-formInput-item__block-text {
  margin-top: 0.1rem;
}
.c-formInput-item__zipcode {
  display: flex;
  justify-content: space-between;
  gap: 3.3%;
}
.c-formInput-item__zipcode .c-btn {
  width: 100%;
  padding-right: 0.4rem;
  padding-left: 0.4rem;
  line-height: 1;
}
.c-formInput-item__creditExpire {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-formInput-item__creditExpire-selectbox {
  width: 26.5%;
}
@media screen and (min-width: 768px) {
  .c-formInput-item__creditExpire-selectbox {
    width: 27.5%;
    max-width: 10.2rem;
  }
}
.c-formInput-item__Interval {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-formInput-item__Interval-selectbox {
  width: 24%;
}
@media screen and (min-width: 768px) {
  .c-formInput-item__Interval-selectbox {
    width: 26%;
  }
}
.c-formInput-item__Interval-selectbox:nth-child(n + 2) {
  margin-left: 0.5rem;
}
.c-formInput-item__Interval-selectbox--long {
  width: 30%;
  max-width: 82.6rem;
}
@media screen and (min-width: 768px) {
  .c-formInput-item__Interval-selectbox--long {
    width: 32%;
  }
}
.c-formInput-item__IntervalLine {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: 0.5rem;
  row-gap: 1rem;
}
.c-formInput-item__IntervalLine-selectbox {
  width: 26%;
}
@media screen and (min-width: 768px) {
  .c-formInput-item__IntervalLine-selectbox {
    width: 19%;
  }
}
.c-formInput-item__IntervalLine-selectbox:nth-child(n + 2) {
  margin-left: 0.2rem;
}
.c-formInput-item__IntervalLine-selectbox--long {
  width: 28%;
}
@media screen and (min-width: 768px) {
  .c-formInput-item__IntervalLine-selectbox--long {
    width: 24%;
  }
}
@media screen and (max-width: 767px) {
  .c-formInput-item__IntervalLine-text--break {
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .c-formInput-item__IntervalLine-text--break
    + .c-formInput-item__IntervalLine-selectbox:nth-child(n + 2) {
    margin-left: 0;
  }
}
.c-formInput-item__dateLine {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.c-formInput-item__dateLine-selectbox {
  width: 26.4%;
}
@media screen and (min-width: 768px) {
  .c-formInput-item__dateLine-selectbox {
    width: 27%;
  }
}
/**
 * #c-stepbar-five
 */
.c-stepbar-five {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 32rem;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .c-stepbar-five {
    min-width: 32rem;
  }
}
.c-stepbar-five__item {
  position: relative;
  width: 23%;
  margin: 0 0 0 0;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--color-gray-middle);
  text-align: center;
  font-size: min(3.2vw, 1.2rem);
}
@media screen and (min-width: 576px) {
  .c-stepbar-five__item {
    font-size: 12px;
  }
}
.c-stepbar-five__item:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 1px;
  margin: 0;
  left: 50%;
  bottom: 0.6rem;
  background-color: var(--color-gray-middle);
}
.c-stepbar-five__item:first-child {
  width: 17%;
  text-align: left;
}
.c-stepbar-five__item:first-child:after {
  width: 140%;
  left: 22%;
}
.c-stepbar-five__item:last-child {
  width: 14%;
  text-align: right;
}
.c-stepbar-five__item:last-child:after {
  content: none;
}
.c-stepbar-five__item--active {
  color: var(--color-primary);
  font-weight: bold;
}
.c-stepbar-five__text {
  display: inline-block;
  position: relative;
  padding-bottom: 2rem;
}
.c-stepbar-five__text:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  left: 50%;
  right: auto;
  bottom: 0;
  z-index: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  border: solid 1px var(--color-gray-middle);
  background-color: var(--color-white);
}
.c-stepbar-five__text--active:before {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
/**
 * #c-stepbar-four
 */
.c-stepbar-four {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 25rem;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .c-stepbar-four {
    min-width: 25rem;
  }
}
.c-stepbar-four__item {
  position: relative;
  width: 25%;
  margin: 0 0 0 0;
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--color-gray-middle);
  text-align: center;
  font-size: min(3.2vw, 1.2rem);
}
@media screen and (min-width: 576px) {
  .c-stepbar-four__item {
    font-size: 12px;
  }
}
.c-stepbar-four__item:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 110%;
  height: 1px;
  margin: 0;
  left: 50%;
  bottom: 0.6rem;
  background-color: var(--color-gray-middle);
}
.c-stepbar-four__item:first-child {
  width: 25%;
  text-align: left;
}
.c-stepbar-four__item:first-child:after {
  width: 120%;
  left: 35%;
}
.c-stepbar-four__item:last-child {
  width: 18%;
  text-align: right;
}
.c-stepbar-four__item:last-child:after {
  content: none;
}
.c-stepbar-four__item--active {
  color: var(--color-primary);
  font-weight: bold;
}
.c-stepbar-four__text {
  display: inline-block;
  position: relative;
  padding-bottom: 2rem;
}
.c-stepbar-four__text:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  left: 50%;
  right: auto;
  bottom: 0;
  z-index: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  border: solid 1px var(--color-gray-middle);
  background-color: var(--color-white);
}
.c-stepbar-four__text--active:before {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
/**
 * #c-stepbar-three
 */
.c-stepbar-three {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 16.8rem;
  padding: 0;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .c-stepbar-three {
    min-width: 16.8rem;
  }
}
.c-stepbar-three__item {
  position: relative;
  width: 33.3333%;
  margin: 0 0 0 0;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--color-gray-middle);
  text-align: center;
  font-size: min(3.2vw, 1.2rem);
}
@media screen and (min-width: 576px) {
  .c-stepbar-three__item {
    font-size: 12px;
  }
}
.c-stepbar-three__item:after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 130%;
  height: 1px;
  margin: 0;
  left: 50%;
  bottom: 0.6rem;
  background-color: var(--color-gray-middle);
}
.c-stepbar-three__item:first-child {
  width: 33.3333%;
  text-align: left;
}
.c-stepbar-three__item:first-child:after {
  width: 130%;
  left: 15%;
}
.c-stepbar-three__item:last-child {
  width: 33.3333%;
  text-align: right;
}
.c-stepbar-three__item:last-child:after {
  content: none;
}
.c-stepbar-three__item--active {
  color: var(--color-primary);
  font-weight: bold;
}
.c-stepbar-three__text {
  display: inline-block;
  position: relative;
  padding-bottom: 2rem;
}
.c-stepbar-three__text:before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  left: 50%;
  right: auto;
  bottom: 0;
  z-index: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  border: solid 1px var(--color-gray-middle);
  background-color: var(--color-white);
}
.c-stepbar-three__text--active:before {
  border-color: var(--color-primary);
  background-color: var(--color-primary);
}
/**
 * #c-form-title
 */
.c-form-title {
  color: var(--color-primary);
  font-weight: 700;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .c-form-title {
    font-size: 2.4rem;
    line-height: calc(36 / 24);
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .c-form-title {
    font-size: 3.6rem;
    line-height: calc(45 / 36);
  }
}
/**
 * #c-form-error-message
 */
.c-form-errorMsg {
  padding: 1.8rem 1.6rem;
  font-size: 1.2rem;
  background-color: var(--color-warning);
}
@media screen and (min-width: 768px) {
  .c-form-errorMsg {
    padding: 1.8rem 2.5rem;
  }
}
/**
 * #c-changeQuantity
 */
.c-changeQuantity {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: fit-content;
  min-width: 12rem;
  height: 3.8rem;
  border: 1px solid var(--color-gray-middle);
}
.c-changeQuantity__delete,
.c-changeQuantity__add {
  flex-shrink: 0;
  width: 3.2rem;
  height: 100%;
}
.c-changeQuantity__delete-button,
.c-changeQuantity__add-button {
  background: none;
  border: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  padding: 0;
  cursor: pointer;
  color: var(--color-black);
}
.c-changeQuantity__delete-button--disabled,
.c-changeQuantity__add-button--disabled {
  pointer-events: none;
  color: var(--color-gray);
}
@media (hover: hover) {
  .c-changeQuantity__delete-button:hover,
  .c-changeQuantity__add-button:hover {
    cursor: pointer;
  }
}
.c-changeQuantity__number {
  text-align: center;
}
input[type="number"].c-changeQuantity__number {
  padding: 0;
  border: none;
  background: none;
}
input[type="number"].c-changeQuantity__number::-webkit-inner-spin-button,
input[type="number"].c-changeQuantity__number::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}
/* =============================================================
    Module
============================================================= */
/**
 * #m-breadCrumb
 */
.m-breadcrumb {
  overflow-x: scroll;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .m-breadcrumb {
    display: block;
    overflow-x: visible;
    white-space: normal;
    padding-block-end: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .m-breadcrumb {
    padding-block-end: 2rem;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
.m-breadcrumb::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .m-breadcrumb--sm {
    margin-top: 2.6rem;
  }
}
/**
 * #m-pager-nav
 */
.m-pager-nav {
  width: 100%;
}
/**
 * #m-modalBoxSet
 */
.m-modalBoxSet {
  display: block;
}
.m-modalBoxSet__btn {
  display: block;
}
.m-modalBoxSet__text {
  margin-top: 0.4rem;
}
.m-modalBoxSet__target {
  display: block;
}
.m-modalBox {
  display: block;
  width: 100vw;
  height: 100vh;
  padding: 2rem 0 0;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(102, 102, 102, 0.6);
  overflow-y: auto;
  opacity: 0;
  overflow-scrolling: touch;
  z-index: 1100;
  pointer-events: none;
  transition: opacity 0.3s ease;
  transform: translate(200vw, 0);
}
@media screen and (min-width: 1200px) {
  .m-modalBox {
    height: 100vh;
    padding-top: 4rem;
  }
}
.m-modalBox::after {
  content: "";
  display: block;
  width: 100%;
  height: 10rem;
}
@media screen and (min-width: 768px) {
  .m-modalBox::after {
    height: 6rem;
  }
}
.m-modalBox.active {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}
.m-modalBox__outer {
  display: block;
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 96rem;
  margin: 0 auto;
  padding: 0;
  background: var(--color-white);
  border-radius: 4px;
}
.m-modalBox__bg {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.m-modalBoxHeding {
  display: block;
  position: relative;
  background: var(--color-gray-light);
  padding: 2rem 8rem;
  border-radius: 4px 4px 0 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .m-modalBoxHeding {
    padding: 2rem 10rem;
  }
}
.m-modalBoxHeding__closeBtn {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  padding: 0 1.5rem;
  line-height: 1;
  font-size: 1.5rem;
  color: var(--color-primary);
  cursor: pointer;
}
.m-modalBoxHeding__closeBtn::before {
  content: "＋";
  display: block;
  margin-right: 0.2em;
  padding-top: 0.1rem;
  font-size: 1.4rem;
  transform: rotate(45deg);
}
@media (hover: hover) {
  .m-modalBoxHeding__closeBtn:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}
.m-modalBoxHeding__closeBtn--back::before {
  content: "<";
  transform: none;
  margin-right: 1rem;
}
.m-modalBoxHeding__title {
  font-size: 1.5rem;
  text-align: center;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .m-modalBoxHeding__title {
    font-size: 1.8rem;
  }
}
.m-modalBoxFooterBtn {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  padding: 0 1.5rem 3rem;
}
@media screen and (min-width: 768px) {
  .m-modalBoxFooterBtn {
    align-items: stretch;
    justify-content: center;
    flex-direction: row;
    gap: 2rem;
    padding: 0 4rem 4rem;
  }
}
.m-modalBoxFooterBtn__close {
  order: 2;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .m-modalBoxFooterBtn__close {
    order: 1;
    max-width: 34.5rem;
  }
}
.m-modalBoxFooterBtn__next {
  order: 1;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .m-modalBoxFooterBtn__next {
    order: 2;
    max-width: 34.5rem;
    margin-right: 2rem;
    margin-top: 0;
  }
}
.m-modalBoxFooterBtn .c-btn {
  width: 100%;
}
.m-modalBoxFooterBtn .c-btn-progress {
  padding: 1.3rem;
}
@media screen and (min-width: 768px) {
  .m-modalBoxFooterBtn .c-btn-progress {
    padding: 2.1rem 1rem;
  }
}
.m-modalBoxFooterBtn__text {
  margin-top: 0.4rem;
}
.m-modalInSetChange {
  margin-inline: auto;
  padding: 2rem 1.7rem;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .m-modalInSetChange {
    max-width: 81rem;
    padding: 3rem 4rem;
  }
}
@media screen and (min-width: 768px) {
  .m-modalInSetChange--md-wide {
    max-width: none;
  }
}
@media screen and (min-width: 768px) {
  .m-modalInSetChange .m-userSectCol-typeRadio {
    padding: 1.4rem 0 1.8rem;
    border-top: 1px solid var(--color-gray);
  }
}
@media screen and (min-width: 768px) {
  .m-modalInSetChange .m-userSectCol-entryForm .m-formInputArea-item {
    max-width: 100%;
  }
}
/**
 * #m-dialogBox
 */
.m-dialogBox {
  display: none;
  position: fixed;
  z-index: 1100;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  padding: 2rem 2rem 10rem;
  overflow-y: auto;
  overflow-scrolling: touch;
  background: rgba(102, 102, 102, 0.6);
}
@media screen and (min-width: 768px) {
  .m-dialogBox {
    padding: 2rem;
  }
}
.m-dialogBox--setOuterOpacity-light {
  background: rgba(102, 102, 102, 0.2);
}
.m-dialogBox--setOuterOpacity-dark {
  background: rgba(102, 102, 102, 0.8);
}
@media screen and (min-width: 576px) {
  .m-dialogBox--typeAlert .m-dialogBoxBody__button > .c-btn-fluid {
    max-width: 17.5rem;
  }
}
.m-dialogBox--open {
  display: flex;
  align-items: center;
}
.m-dialogBox--open.m-dialogBox--setPosition-y {
  align-items: flex-start;
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .m-dialogBox--open.m-dialogBox--setPosition-md-y {
    align-items: flex-start;
    padding-top: 0;
  }
}
.m-dialogBox--open.m-dialogBox--setPosition-x {
  align-items: flex-start;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  .m-dialogBox--open.m-dialogBox--setPosition-md-x {
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }
}
.m-dialogBox--open .m-dialogBox__inner {
  position: relative;
  top: var(--dialog-position-y);
  right: 0;
  bottom: 0;
  left: var(--dialog-position-x);
  width: var(--dialog-width);
  height: fit-content;
  padding: 0;
  margin: var(--dialog-margin);
  border: solid 1px var(--dialog-border-color);
  border-radius: 0.5rem;
  color: var(--dialog-color);
  background-color: var(--dialog-bg);
  animation: var(--dialog-animation);
  animation-duration: var(--dialog-animation-speed);
}
@media screen and (min-width: 768px) {
  .m-dialogBox--open .m-dialogBox__inner {
    left: var(--dialog-position-md-x);
    top: var(--dialog-position-md-y);
    width: var(--dialog-md-width);
    max-width: var(--dialog-md-maxwidth);
    min-width: var(--dialog-md-minwidth);
    margin: var(--dialog-md-margin);
  }
}
.m-dialogBoxHeding {
  display: none;
  position: relative;
  padding: 2rem;
  text-align: center;
  border-radius: 4px 4px 0 0;
  background: var(--dialog-bg-head);
}
.m-dialogBoxHeding.is-active {
  display: block;
}
.m-dialogBoxHeding__title {
  font-size: 1.4rem;
  color: var(--dialog-color-head);
}
@media screen and (min-width: 768px) {
  .m-dialogBoxHeding__title {
    font-size: 1.6rem;
  }
}
.m-dialogBoxBody {
  padding: 4rem 2rem;
}
.m-dialogBoxBody__caption {
  line-height: 1.8;
}
.m-dialogBoxBody__button {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column-reverse;
  gap: 1rem;
  width: 100%;
  padding-top: 4rem;
}
@media screen and (min-width: 768px) {
  .m-dialogBoxBody__button {
    align-items: stretch;
    justify-content: center;
    flex-direction: row;
  }
}
.m-dialogBoxBody__button > .c-btn-fluid {
  line-height: 1.4;
}
.m-dialogBoxBody__button > .c-btn-fluid:focus {
  outline: none;
}
.js-dialogCancel,
.js-dialogExecute {
  display: none;
}
.js-dialogCancel.is-active,
.js-dialogExecute.is-active {
  display: block;
}
/**
 * #m-supplementaryInfo
 */
.m-supplementaryInfo {
  display: block;
  margin-top: 2.4rem;
  padding: 2.7rem 2.2rem 2.5rem;
  background: var(--color-gray-light);
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .m-supplementaryInfo {
    padding: 2.7rem 2.5rem 2.5rem;
  }
}
.m-supplementaryInfo textarea {
  min-height: 15rem;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .m-supplementaryInfo textarea {
    min-height: 10rem;
  }
}
/**
 * #m-toast
 */
.m-toast {
  display: none;
  position: fixed;
  z-index: 1100;
  opacity: 0;
  top: 1rem;
  right: 0;
  bottom: 0;
  left: 0;
  width: var(--toast-width);
  height: fit-content;
  padding: 0.75rem 0.5rem 0.75rem 2rem;
  margin: 0 auto;
  color: var(--toast-base-color);
  background-color: var(--color-blue-light);
  border: solid 1px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  animation: var(--toast-fadedown-animation);
  animation-duration: var(--toast-showDuration);
}
@media screen and (min-width: 768px) {
  .m-toast {
    top: 1.5rem;
    width: var(--toast-md-width);
    max-width: var(--toast-md-maxwidth);
    min-width: var(--toast-md-minwidth);
  }
}
.m-toast--open {
  display: block;
  opacity: 1;
}
.m-toast--typeInfo {
  color: var(--color-white);
  background-color: var(--color-primary);
}
.m-toast--typeWarning {
  color: var(--color-gray-dark);
  background-color: var(--color-warning);
}
.m-toast--typeDanger {
  color: var(--color-white);
  background-color: var(--color-danger);
}
.m-toast--bgCustomize {
  background-color: var(--toast-bgCustomize);
}
.m-toast--colorCustomize {
  color: var(--toast-colorCustomize);
}
.m-toast--position-top-center {
  top: 1rem;
  bottom: auto;
}
@media screen and (min-width: 768px) {
  .m-toast--position-top-center {
    top: 1.5rem;
  }
}
.m-toast--position-top-right {
  right: 1rem;
  left: auto;
}
@media screen and (min-width: 768px) {
  .m-toast--position-top-right {
    right: 1.5rem;
  }
}
.m-toast--position-top-left {
  right: auto;
  left: 1rem;
}
@media screen and (min-width: 768px) {
  .m-toast--position-top-left {
    left: 1.5rem;
  }
}
.m-toast--position-bottom-center {
  top: auto;
  bottom: 1rem;
  animation: var(--toast-fadeup-animation);
  animation-duration: var(--toast-showDuration);
}
@media screen and (min-width: 768px) {
  .m-toast--position-bottom-center {
    bottom: 1.5rem;
  }
}
.m-toast--position-bottom-right {
  top: auto;
  right: 1rem;
  bottom: 1rem;
  left: auto;
  animation: var(--toast-fadeup-animation);
  animation-duration: var(--toast-showDuration);
}
@media screen and (min-width: 768px) {
  .m-toast--position-bottom-right {
    right: 1.5rem;
    bottom: 1.5rem;
  }
}
.m-toast--position-bottom-left {
  top: auto;
  right: auto;
  bottom: 1rem;
  left: 1rem;
  animation: var(--toast-fadeup-animation);
  animation-duration: var(--toast-showDuration);
}
@media screen and (min-width: 768px) {
  .m-toast--position-bottom-left {
    bottom: 1.5rem;
    left: 1.5rem;
  }
}
.m-toast--position-mid-center {
  top: 0;
  bottom: 0;
  margin: auto;
}
.m-toast--widthFit {
  width: fit-content;
  max-width: var(--toast-base-width);
}
@media screen and (min-width: 768px) {
  .m-toast--widthFit {
    width: var(--toast-md-width);
    max-width: var(--toast-md-maxwidth);
  }
}
@media screen and (min-width: 768px) {
  .m-toast--widthFit-md {
    width: fit-content;
    max-width: var(--toast-base-width);
    min-width: auto;
  }
}
.m-toast__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 1rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .m-toast__inner {
    column-gap: 1.5rem;
  }
}
.m-toast__info {
  flex-grow: 1;
  text-align: var(--toast-textAlign);
}
.m-toast__close {
  flex-shrink: 0;
  border: none;
  color: inherit;
  background: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.m-toast__close::after {
  content: "＋";
  display: block;
  margin-right: 0.2em;
  padding-top: 0.1rem;
  font-size: 2.5rem;
  transform: rotate(45deg);
  opacity: 0.8;
  cursor: pointer;
}
/**
 * .m-AddressSelectList-wrap
 */
.m-AddressSelectList-wrap {
  position: relative;
}
.m-AddressSelectListModal {
  display: block;
  position: absolute;
  width: 100%;
  padding: 20px;
  border: solid 1px #666;
  border-radius: 5px;
  background-color: #fff;
  z-index: 100;
}
.m-AddressSelectListModal__result {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}
.m-AddressSelectListModal__addressList-wrap {
  overflow-y: auto;
  max-height: 150px;
  border: solid 1px #aaa;
  margin-bottom: 1rem;
}
.m-AddressSelectListModal__addressItem {
  border-bottom: solid 1px #ccc;
}
.m-AddressSelectListModal__addressItem:last-child {
  border: none;
}
.m-AddressSelectListModal__addressItemLink {
  display: block;
  padding: 5px 10px 3px;
}
.m-AddressSelectListModal__closeButton {
  display: inline-block;
  border: solid 1px #aaa;
  outline: none;
}
/**
 * #m-formHeading
 */
.m-formHeading-onlyTitle {
  padding-bottom: 1.3rem;
  border-bottom: solid 1px var(--color-gray);
}
@media screen and (min-width: 768px) {
  .m-formHeading-onlyTitle {
    margin-bottom: 0.4rem;
  }
}
@media screen and (min-width: 768px) {
  .m-formHeading-onlyTitle--border-md-none {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
}
.m-formHeading-onlyTitle--border-none {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.m-formHeading-title {
  padding-bottom: 2.5rem;
  border-bottom: solid 1px var(--color-gray);
}
@media screen and (min-width: 768px) {
  .m-formHeading-title {
    margin-bottom: 0.4rem;
  }
}
.m-formHeading-title__lead {
  margin-top: 0.9rem;
}
.m-formHeading-title__lead--red {
  color: var(--color-red);
}
.m-formHeading-title__result {
  margin-top: 0.8rem;
  color: var(--color-primary);
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.4;
}
.m-formHeading-title--border-md {
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .m-formHeading-title--border-md {
    padding-bottom: 2.5rem;
    margin-bottom: 0.4rem;
    border-bottom: solid 1px var(--color-gray);
  }
}
@media screen and (min-width: 768px) {
  .m-formHeading-title--border-md-none {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
}
.m-formHeading-title--border-none {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.m-formHeading-head {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .m-formHeading-head {
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 1.1rem;
  }
}
.m-formHeading-head--onlyTitle {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .m-formHeading-head--onlyTitle {
    padding-bottom: 1.4rem;
    margin-bottom: 0;
    border-bottom: solid 1px var(--color-gray);
  }
}
.m-formHeading-head--onlyTitle .m-formHeading-head__title {
  padding: 0 0 1.3rem;
  margin: 0 1.6rem 0;
  border-bottom: solid 1px var(--color-gray);
}
@media screen and (min-width: 768px) {
  .m-formHeading-head--onlyTitle .m-formHeading-head__title {
    padding: 0 2rem 0 0;
    margin: 0;
    border-bottom: none;
  }
}
.m-formHeading-head__stepBar {
  padding-bottom: 2rem;
  margin-bottom: 2.8rem;
  border-bottom: solid 1px var(--color-gray);
}
@media screen and (min-width: 768px) {
  .m-formHeading-head__stepBar {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
  }
}
.m-formHeading-head__stepBar--md {
  display: none;
}
@media screen and (min-width: 768px) {
  .m-formHeading-head__stepBar--md {
    display: block;
  }
}
.m-formHeading-head__stepBar-inner {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .m-formHeading-head__stepBar-inner {
    width: 100%;
  }
}
.m-formHeading-head__title {
  margin-bottom: 1rem;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
}
@media screen and (min-width: 768px) {
  .m-formHeading-head__title {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 2rem;
  }
}
.m-formHeading-body {
  margin-left: 1.6rem;
  margin-right: 1.6rem;
}
@media screen and (min-width: 768px) {
  .m-formHeading-body {
    margin-left: 0;
    margin-right: 0;
    padding-bottom: 2.5rem;
    border-bottom: solid 1px var(--color-gray);
  }
}
.m-formHeading-body--border-none {
  padding-bottom: 0;
  border: none;
}
.m-formHeading-body--border-md-none {
  padding-bottom: 2.5rem;
  border-bottom: solid 1px var(--color-gray);
}
@media screen and (min-width: 768px) {
  .m-formHeading-body--border-md-none {
    padding-bottom: 0;
    border: none;
  }
}
.m-formHeading-body--border-md {
  padding-bottom: 0;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .m-formHeading-body--border-md {
    padding-bottom: 2.5rem;
    border-bottom: solid 1px var(--color-gray);
  }
}
@media screen and (min-width: 768px) {
  .m-formHeading-body__lead {
    width: 56%;
  }
}
@media screen and (min-width: 961px) {
  .m-formHeading-body__lead {
    width: 66%;
  }
}
.m-formHeading-error {
  padding-left: 1.6rem;
  padding-right: 1.6rem;
  margin-top: 2.4rem;
}
@media screen and (min-width: 768px) {
  .m-formHeading-error {
    padding-left: 0;
    padding-right: 0;
    margin-top: 2rem;
  }
}
/* form Input
------------------------------------------------------------- */
.m-formInputArea-item {
  margin-bottom: 2.2rem;
}
@media screen and (min-width: 768px) {
  .m-formInputArea-item--top-md-short {
    margin-top: 0.2rem;
  }
}
.m-formInputArea-item--bottom-gap-none {
  margin-bottom: 0;
}
.m-formInputArea-item--bottom-gap-none:not(:last-of-type) {
  margin-bottom: 0;
}
.m-formInputArea-item--addNext:not(:last-of-type) {
  margin-bottom: 0;
}
.m-formInputArea-item--addNext:not(:last-of-type) + .m-formInputArea-item {
  margin-top: 2.2rem;
}
.m-formInputArea-item__alert {
  display: none;
  margin-bottom: 1.7rem;
  font-size: 1.2rem;
  white-space: pre-wrap;
  color: var(--color-danger);
}
@media screen and (min-width: 768px) {
  .m-formInputArea-item__alert {
    margin-bottom: 1.9rem;
  }
}
.m-formInputArea-item__alert--active {
  display: block;
}
/**
 * #m-progress-button-wrap
 */
.m-progress-button-wrap__group {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .m-progress-button-wrap__group {
    flex-direction: row-reverse;
    align-items: start;
    gap: 2rem;
  }
}
.m-progress-button-wrap__item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .m-progress-button-wrap__item {
    max-width: 32.775rem;
  }
}
/* Product Line
------------------------------------------------------------- */
.m-productLine {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 1.5rem;
}
@media screen and (min-width: 576px) {
  .m-productLine {
    gap: 3.5rem 2.02rem;
  }
}
@media screen and (min-width: 961px) {
  .m-productLine {
    gap: 3.5rem 2.02rem;
  }
}
.m-productLine__item {
  width: calc(50% - 0.75rem);
}
@media screen and (min-width: 576px) {
  .m-productLine__item {
    width: calc(33.3333% - 1.3466666667rem);
  }
}
@media screen and (min-width: 961px) {
  .m-productLine__item {
    width: calc(25% - 1.515rem);
  }
}
.m-productLine-col2-md5 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 1.5rem;
}
@media screen and (min-width: 576px) {
  .m-productLine-col2-md5 {
    gap: 3.5rem 2.02rem;
  }
}
@media screen and (min-width: 768px) {
  .m-productLine-col2-md5 {
    gap: 3.5rem 2rem;
  }
}
.m-productLine-col2-md5__item {
  width: calc(50% - 0.75rem);
}
@media screen and (min-width: 576px) {
  .m-productLine-col2-md5__item {
    width: calc(33.3333% - 1.3466666667rem);
  }
}
@media screen and (min-width: 768px) {
  .m-productLine-col2-md5__item {
    width: calc(20% - 1.6rem);
  }
}
.m-productLine-col3-md6 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .m-productLine-col3-md6 {
    gap: 3.5rem 1.97rem;
  }
}
.m-productLine-col3-md6__item {
  width: calc(33.3333% - 1rem);
}
@media screen and (min-width: 768px) {
  .m-productLine-col3-md6__item {
    width: calc(16.6666% - 1.6416666667rem);
  }
}
.m-productLine-col2-md4-scroll {
  display: flex;
  flex-wrap: nowrap;
  gap: 0 1.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .m-productLine-col2-md4-scroll {
    flex-wrap: wrap;
    gap: 0 1.48rem;
  }
}
.m-productLine-col2-md4-scroll__item {
  width: 14.5rem;
}
@media screen and (min-width: 768px) {
  .m-productLine-col2-md4-scroll__item {
    width: calc(25% - 1.11rem);
  }
}
/* 折り返しなしにする場合はコメントを外す
@media screen and (min-width: 768px) {
  .m-productLine-col2-md4-scroll__item:nth-child(n+5) {
    display: none;
  }
}
*/

/* Product Line (Home)
------------------------------------------------------------- */
.m-productLineHome {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem 1.5rem;
}
@media screen and (min-width: 576px) {
  .m-productLineHome {
    gap: 3.5rem 2.02rem;
  }
}
@media screen and (min-width: 961px) {
  .m-productLineHome {
    gap: 3.5rem 2.02rem;
  }
}
.m-productLineHome__item {
  width: calc(50% - 0.75rem);
}
@media screen and (min-width: 576px) {
  .m-productLineHome__item {
    width: calc(33.3333% - 1.3466666667rem);
  }
}
@media screen and (min-width: 961px) {
  .m-productLineHome__item {
    width: calc(25% - 1.515rem);
  }
}
.m-productLineHome-col2-md5 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem 1.5rem;
}
@media screen and (min-width: 576px) {
  .m-productLineHome-col2-md5 {
    gap: 3.5rem 2.02rem;
  }
}
@media screen and (min-width: 768px) {
  .m-productLineHome-col2-md5 {
    gap: 3.5rem 2rem;
  }
}
.m-productLineHome-col2-md5__item {
  width: calc(50% - 0.75rem);
}
@media screen and (min-width: 576px) {
  .m-productLineHome-col2-md5__item {
    width: calc(33.3333% - 1.3466666667rem);
  }
}
@media screen and (min-width: 768px) {
  .m-productLineHome-col2-md5__item {
    width: calc(20% - 1.6rem);
  }
}
.m-productLineHome-col3-md6 {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.6rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .m-productLineHome-col3-md6 {
    gap: 3.5rem 1.97rem;
  }
}
.m-productLineHome-col3-md6__item {
  width: calc(33.3333% - 1rem);
}
@media screen and (min-width: 768px) {
  .m-productLineHome-col3-md6__item {
    width: calc(16.6666% - 1.6416666667rem);
  }
}
.m-productLineHome-col2-md4-scroll {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 0 1.5rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .m-productLineHome-col2-md4-scroll {
    flex-wrap: wrap;
    gap: 0 1.48rem;
  }
}
.m-productLineHome-col2-md4-scroll__item {
  width: 14.5rem;
}
@media screen and (min-width: 768px) {
  .m-productLineHome-col2-md4-scroll__item {
    width: calc(25% - 1.11rem);
  }
}
/* 折り返しなしにする場合はコメントを外す
@media screen and (min-width: 768px) {
  .m-productLineHome-col2-md4-scroll__item:nth-child(n+5) {
    display: none;
  }
}
*/

/* Product Line (User)
------------------------------------------------------------- */
.m-productLineUser {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .m-productLineUser {
    gap: 1.3rem 2rem;
  }
}
.m-productLineUser__item {
  width: calc(33.3333% - 1rem);
}
@media screen and (min-width: 768px) {
  .m-productLineUser__item {
    width: calc(20% - 1.6rem);
  }
}
@media screen and (min-width: 768px) {
  .m-productLineUser__item .c-productUser-favorite {
    width: 4rem;
    height: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .m-productLineUser__item .c-productUser-favorite__icon {
    margin-top: 0;
    width: 1.8rem;
  }
}
.m-productLineUser-col2-md3 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 1.5rem;
}
@media screen and (min-width: 576px) {
  .m-productLineUser-col2-md3 {
    gap: 2.5rem 2rem;
  }
}
.m-productLineUser-col2-md3__item {
  width: calc(50% - 0.75rem);
}
@media screen and (min-width: 576px) {
  .m-productLineUser-col2-md3__item {
    width: calc(33.3333% - 1.3333333333rem);
  }
}
.m-productLineUser-col2-md3 .c-productUser-variation__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 5.5%;
}
.m-productLineUser-col2-md3 .c-productUser-variation__item {
  width: 20.875%;
}
.m-productLineUser-col2-md4 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .m-productLineUser-col2-md4 {
    gap: 2.5rem 2rem;
  }
}
.m-productLineUser-col2-md4__item {
  width: calc(50% - 0.75rem);
}
@media screen and (min-width: 768px) {
  .m-productLineUser-col2-md4__item {
    width: calc(25% - 1.5rem);
  }
}
@media screen and (min-width: 768px) {
  .m-productLineUser-col2-md4__item .c-productUser-favorite {
    width: 5.2rem;
    height: 5.2rem;
  }
}
@media screen and (min-width: 768px) {
  .m-productLineUser-col2-md4__item .c-productUser-favorite__icon {
    margin-top: 0;
    width: 2rem;
  }
}
.m-productLineUser-col3-md6 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 1.6rem;
}
@media screen and (min-width: 768px) {
  .m-productLineUser-col3-md6 {
    gap: 2.5rem 2rem;
  }
}
.m-productLineUser-col3-md6__item {
  width: calc(33.3333% - 1.0666666667rem);
}
@media screen and (min-width: 768px) {
  .m-productLineUser-col3-md6__item {
    width: calc(16.6666% - 1.6666666667rem);
  }
}
.m-productLineUser-col4-md6 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 1.6rem;
}
@media screen and (min-width: 768px) {
  .m-productLineUser-col4-md6 {
    gap: 2rem 2rem;
  }
}
.m-productLineUser-col4-md6__item {
  width: calc(25% - 1.2rem);
}
@media screen and (min-width: 768px) {
  .m-productLineUser-col4-md6__item {
    width: calc(16.6666% - 1.6666666667rem);
  }
}
.m-productLineUser-col3-md4 {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 1.6rem;
}
@media screen and (min-width: 768px) {
  .m-productLineUser-col3-md4 {
    gap: 2.5rem 2rem;
  }
}
.m-productLineUser-col3-md4__item {
  width: calc(33.3333% - 1.0666666667rem);
}
@media screen and (min-width: 768px) {
  .m-productLineUser-col3-md4__item {
    width: calc(25% - 1.5rem);
  }
}
/* Product Recommend Wrap
------------------------------------------------------------- */
.m-productRecommend-wrap--box {
  padding: 2.1rem 2.4rem 2rem;
  background-color: var(--color-gray-light);
  border-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .m-productRecommend-wrap--box {
    padding: 2.5rem 2.4rem 2.5rem;
  }
}
.m-productRecommend-wrap__title {
  margin-bottom: 1.7rem;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
}
.m-productRecommend-wrap__title--scroll {
  padding-right: 1.6rem;
  padding-left: 1.6rem;
}
@media screen and (min-width: 768px) {
  .m-productRecommend-wrap__title--scroll {
    padding-right: 0;
    padding-left: 0;
  }
}
.m-productRecommend-wrap__em {
  color: var(--color-primary);
}
/**
 * #m-productRecommend-scroll
 */
@media screen and (max-width: 767px) {
  .m-productRecommend-scrollWrap {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
}
.m-productRecommend-scrollWrap::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 767px) {
  .m-productRecommend-scroll {
    display: inline-block;
    min-width: 100%;
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }
}
/* =============================================================
    Site
============================================================= */
/* Header
------------------------------------------------------------- */
/* --- ticker --- */
.m-header-ticker {
  height: 3rem;
  overflow: hidden;
  font-weight: 500;
  text-align: center;
}
.m-header-ticker * {
  height: 100%;
}
.c-header-ticker__list-item {
  display: grid;
  place-items: center;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-size: 1.2rem;
  line-height: calc(17 / 12);
}
/* --- for small viewport --- */
@media screen and (max-width: 960px) {
}
/* --- for large viewport --- */
@media screen and (min-width: 961px) {
}
.s-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
  display: block;
  width: 100%;
  background: var(--color-white);
}
.s-header-wrap__logo {
  position: absolute;
  top: 0;
  left: var(--header-gutter);
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 1;
  background-color: var(--color-white);
  z-index: var(--zindex-floating-element);
  transition: all .1s linear;
}
.s-header-wrap__logo a {
  display: block;
}
.s-header-wrap__logo img {
  display: block;
  width: 100%;
  height: auto;
}
/* --- for small viewport --- */
@media screen and (max-width: 960px) {
  .s-header {
    padding-block: 0.8rem;
  }
  .s-header:not(:has(:where(.s-header-wrap__nav, .s-header-wrap__utility ))) .s-header-wrap__logo {
    position: relative;
    padding-bottom: 0;
  }
  .s-header:not(:has(:where(.s-header-wrap__nav, .s-header-wrap__utility ))) + * {
    --header-bottom-spacer: 0;
  }
  .s-header-wrap {
    --header-gutter: 0.5rem;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1.2rem;
  }
  .s-header-wrap__logo {
    width: var(--stucked-header-logo-width, 10rem);
    padding-inline: var(--stucked-header-logo-gutter, .9rem);
  }
  .s-header-wrap__nav {
    position: relative;
    grid-row: 1;
    grid-column: 3;
    display: flex;
    align-items: end;
    padding-inline-end: calc(var(--header-gutter) * 2);
  }
  .s-header-wrap__utility {
    grid-row: 1;
    grid-column: 2;
  }
  .s-header.is-stuck {
    --stucked-header-logo-width: 7.5rem;
    --stucked-header-logo-gutter: .68rem;
  }
}
/* --- for small viewport --- */
@media screen and (max-width: 960px) {
  .s-header + * {
    padding-block-start: var(--header-bottom-spacer, 5rem);
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 961px) {
  .s-header + * {
    padding-block-start: var(--header-bottom-spacer, 5rem);
  }
  .s-header-wrap {
    --header-gutter: 5rem;
    padding-inline: var(--header-gutter);
  }
  .s-header-wrap__logo {
    width: var(--stucked-header-logo-width, 22rem);
    padding-inline: var(--stucked-header-logo-gutter, 2rem);
  }
  .s-header-wrap__nav {
    width: fit-content;
    margin-inline: auto;
  }
  .s-header-wrap__utility {
    position: absolute;
    top: 0;
    right: var(--header-gutter);
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    column-gap: 1rem;
    width: auto;
    height: 100%;
    padding-block-start: 1.4rem;
    margin: 0 0 0 auto;
  }
  .s-header.is-stuck {
    --stucked-header-logo-width: 14rem;
    --stucked-header-logo-gutter: 1.27rem;
  }
}
@media screen and (min-width: 1200px) {
  .s-header-wrap__utility {
    column-gap: 1.5rem;
  }
}
@media (hover: hover) {
  .s-header-wrap__logo a:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}
/*** navBlok *****************************/
.s-header-navBlok__openBtn {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  color: var(--color-black);
}
.s-header-navBlok__openBtn-icon {
  width: 2.4rem;
  margin-inline: auto;
}
.s-header-navBlok__openBtn-text {
  font-size: 1rem;
  line-height: 1.3;
  color: var(--color-black);
}
.s-header-navBlok__closeBtn {
  position: absolute;
  top: 0;
  right: 0;
  width: var(--close-button-width);
}
.s-header-navBlok__nav {
  --close-button-width: 5rem;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  opacity: 1;
  visibility: hidden;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
  transition: transform 0.4s ease;
  transform: translate(-100vw, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.s-header-navBlok__openBtn.active + .s-header-navBlok__nav {
  visibility: visible;
  transform: translate(0, 0);
}
.s-header-navBlok__openBtn.active + .s-header-navBlok__nav::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(102, 102, 102, .6);
  backdrop-filter: blur(.5rem) brightness(1);
  z-index: var(--zindex-behind);
}
/* --- for small viewport --- */
@media screen and (max-width: 960px) {
  .s-header-navBlok__nav-container {
    width: calc(100% - var(--close-button-width));
    height: 100svh;
    padding-block-start: 2.5rem;
    padding-block-end: 4.5rem;
    background: var(--color-white);
    overflow-y: auto;
  }
}
/* --- for lerge viewport --- */
@media screen and (min-width: 961px) {
  .s-header-navBlok__openBtn {
    display: none;
  }
  .s-header-navBlok__nav {
    display: block;
    width: 100%;
    height: auto;
    padding: 0;
    position: static;
    top: inherit;
    left: inherit;
    z-index: inherit;
    overflow-y: visible;
    visibility: inherit;
    border-top: none;
    background: var(--color-white);
    opacity: 1;
    -webkit-overflow-scrolling: auto;
    overflow-scrolling: auto;
    transition: inherit;
    transform: none;
  }
  .s-header-navBlok__nav::after {
    display: none;
  }
  .s-header-navBlok__openBtn.active + .s-header-navBlok__nav {
    visibility: inherit;
    transform: none;
  }
}
/*s-header-userNav
------------------------------------------------------------- */
.s-header-userNav {
  display: block;
  padding: 0 1.5rem;
}
.s-header-userNav:not(:nth-last-child(1)) {
  margin-bottom: 3rem;
}
.s-header-userNav__head {
  padding-block-end: 2.5rem;
  text-align: center;
  font-size: 1.6rem;
  line-height: calc(23 / 16);
  font-weight: 500;
}
.s-header-userNav__headIcon {
  display: block;
  width: 3.8rem;
  height: auto;
}
.s-header-userNav__title {
  width: calc(100% - 4.1rem);
  font-family: var(--font-en);
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.3;
}
.s-header-userNav__navlist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.s-header-userNav__navLink {
  border: 1px solid var(--color-primary);
}
.s-header-userNav__navLink > a {
  display: grid;
  justify-content: center;
  align-items: center;
  grid-template-columns: 2rem auto;
  gap: 0.5rem;
  width: 100%;
  height: 4rem;
  font-size: 1.3rem;
  font-weight: 600;
}
/* --- for small viewport --- */
@media screen and (max-width: 960px) {
  .s-header-contentsNavBlock {
    display: flex;
    flex-direction: column;
  }
  .s-header-contentsNavBlock__item--shop-info {
    order: 2;
  }
  .s-header-contentsNavBlock__item--categories {
    order: 1;
  }
  .s-header-contentsNavBlock__item--contact {
    order: 3;
  }
  .s-header-categoryNav,
  .s-header-contentsNav {
    font-size: 1.4rem;
    line-height: calc(20 / 14);
    font-family: var(--font-ja-primary);
  }
  .s-header-categoryNav__head,
  .s-header-contentsNav__head {
    padding-block: 0.8rem;
    padding-inline: 1.5rem;
    border-bottom: 1px solid var(--color-gray-middle);
    background-color: var(--color-gray-light-middle);
    letter-spacing: 0.1em;
    font-weight: 600;
  }
  .s-header-categoryNav__block-title {
    --toggle-icon-color: var(--color-black);
  }
  .s-header-categoryNav__block-title,
  .s-header-contentsNav__navlist--default .s-header-contentsNav__navLink a {
    position: relative;
    display: block;
    padding-block: 1.8rem;
    padding-inline: 1.5rem;
    border-bottom: 1px solid var(--color-gray-middle);
  }
  .s-header-categoryNav__navlist--categories,
  .s-header-categoryNav__navlist--prices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .s-header-categoryNav__navlist--categories .s-header-categoryNav__navLink,
  .s-header-categoryNav__navlist--prices .s-header-categoryNav__navLink {
    border-bottom: 1px solid var(--color-gray-middle);
  }
  .s-header-categoryNav__navlist--prices
    .s-header-categoryNav__navLink:nth-child(odd) {
    border-right: 1px solid var(--color-gray-middle);
  }
  .s-header-categoryNav__navlist--categories .s-header-categoryNav__navLink a {
    display: grid;
    grid-template-columns: 4rem 1fr;
    align-items: center;
    background-color: var(--color-gray-light);
  }
  .s-header-categoryNav__navlist--prices .s-header-categoryNav__navLink a {
    display: block;
    padding-block: 1rem;
    padding-inline: 1rem;
    background-color: var(--color-gray-light);
  }
  .s-header-categoryNav__category-name {
    padding-inline: 1rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 961px) {
  .s-header-userNav {
    display: block;
    width: 32rem;
    height: calc(100vh - var(--s-header-height));
    padding: 2rem;
    position: fixed;
    top: var(--s-header-height);
    right: 0;
    z-index: 1000;
    background: var(--color-white);
    opacity: 1;
    visibility: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    transition: transform 0.4s ease;
    transform: translate(100vw, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
  }
  .s-header-userNav.active {
    visibility: visible;
    transform: translate(0, 0);
  }
  .s-header-userNav__headIcon {
    display: block;
    width: 3.8rem;
    height: auto;
  }
  .s-header-userNav__title {
    width: calc(100% - 4.1rem);
    font-family: var(--font-en);
    text-align: left;
    font-size: 1.1rem;
    line-height: 1.3;
  }
  .s-header-userNav__body {
    display: block;
    padding-top: 1.2rem;
  }
  .s-header-userNav__navLink > a:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}
.s-header-categoryNav,
.s-header-contentsNav {
  display: block;
  width: 100%;
}
.s-header-categoryNav__head,
.s-header-contentsNav__head {
  display: block;
}
.s-header-categoryNav__body,
.s-header-contentsNav__body {
  display: block;
}
.s-header-contentsNav__navLink > a {
  letter-spacing: 0.1em;
}
.s-header-categoryNav__container {
}
/* --- for small viewport --- */
@media screen and (max-width: 960px) {
}
/* --- for large viewport --- */
@media screen and (min-width: 961px) {
  .s-header-contentsNavBlock {
    --header-navigation-gap: 5rem;
    display: flex;
    column-gap: var(--header-navigation-gap);
  }
  .s-header-categoryNav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    /* border-bottom: 5px solid rgba(0, 0, 0, 0); */
    transition: border var(--transition-default);
  }
  /* .s-header-categoryNav:hover {
    border-bottom: 5px solid var(--color-primary);
  }
  .s-header-categoryNav:hover::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: -3rem;
    width: 100%;
    height: 5rem;
  } */
  .s-header-categoryNav__head {
    position: relative;
    display: flex;
    align-items: center;
    column-gap: 1.2rem;
    height: 100%;
    font-size: 1.8rem;
    font-family: var(--font-heading-ja);
    font-weight: 500;
    cursor: pointer;
  }
  .s-header-categoryNav__head::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: rgba(0, 0, 0, 0);
    transition: all var(--transition-default);
  }
  .s-header-categoryNav__head:hover::before {
    background-color: var(--color-primary);
  }
  .s-header-categoryNav__head::after {
    content: "";
    display: block;
    width: 0.6rem;
    height: 100%;
    background-image: url(../../assets/img/common/icon/icon-arrow-select.svg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: right calc(50%);
  }
  .s-header-categoryNav__body {
    position: absolute;
    top: var(--s-header-height);
    left: 0;
    right: 0;
    width: fit-content;
    margin: auto;
    padding-block-start: 3rem;
    padding-inline: 2rem;
    opacity: var(--header-mega-menu-opacity-active, 0);
    z-index: var(--header-mega-menu-zindex-active, var(--zindex-behind));
    visibility: var(--header-mega-menu-visibility-active, hidden);
    pointer-events: var(--header-mega-menu-pointer-events-active, none);
    transition: all var(--transition-default);
    z-index: var(--zindex-floating-element);
  }
  .s-header-categoryNav__body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 100vw;
    height: calc(100vh - var(--s-header-height));
    margin: auto;
    background-color: rgba(102, 102, 102, 0.6);
    transform: translate(-50%, 0);
    z-index: var(--zindex-behind);
    pointer-events: none;
  }
  .s-header-categoryNav__container {
    /* max-width: 1145px; */
    width: 114.5rem;
    max-height: 50vh;
    margin-inline: auto;
    padding-block: 3.6rem;
    padding-inline: 4rem;
    background-color: var(--color-white);
    overflow: auto;
  }
  .s-header-categoryNav__block + .s-header-categoryNav__block {
    margin-block-start: var(--header-category-nav-block-sapcer, 4rem);
  }
  .s-header-categoryNav__block--catalogs {
    --header-category-nav-block-sapcer: 5.6rem;
  }
  .s-header-categoryNav__navlist--categories {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1.5rem;
    text-align: center;
  }
  .s-header-categoryNav__navlist--prices {
    display: flex;
    gap: 5rem;
    font-size: 1.8rem;
    line-height: calc(19.5 / 18);
  }
  .s-header-categoryNav__navlist--prices .s-header-categoryNav__navLink {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2rem;
  }
  .s-header-categoryNav__navlist--prices .s-header-categoryNav__navLink::after {
    content: "";
    display: block;
    width: 0.4rem;
    height: 0.8rem;
    background-image: url(../../assets/img/common/icon/icon-arrow-link.svg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: right calc(50%);
  }
  .s-header-categoryNav__block-title {
    font-size: 2rem;
    font-family: var(--font-heading-ja);
    line-height: calc(29 / 20);
    font-weight: 700;
    color: var(--color-primary);
  }
  .s-header-categoryNav__block-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.6rem;
    width: fit-content;
    padding-block-end: 0.4rem;
    border-bottom: 1px solid var(--color-primary);
  }
  .s-header-categoryNav__block-link::after {
    content: "";
    display: block;
    width: 0.4rem;
    height: 0.8rem;
    background-image: url(../../assets/img/common/icon/icon-arrow-link.svg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: right calc(50%);
  }
  .s-header-categoryNav__block-link:hover {
    border-bottom: none;
  }
  .s-header-categoryNav__block-detail {
    margin-block-start: 1.6rem;
  }
  .s-header-categoryNav__category-name {
    margin-block-start: 0.5em;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
  }
  .s-header-categoryNav:hover .s-header-categoryNav__body {
    --header-mega-menu-opacity-active: 1;
    --header-mega-menu-zindex-active: var(--zindex-overlay);
    --header-mega-menu-visibility-active: visible;
    --header-mega-menu-pointer-events-active: auto;
  }
  .s-header-categoryNav__navLink > a:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
  .s-header-contentsNav {
    display: block;
    height: 100%;
  }
  .s-header-contentsNav__head {
    display: none;
  }
  .s-header-contentsNav__body {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
  }
  .s-header-contentsNav__navlist {
    display: flex;
    column-gap: var(--header-navigation-gap);
    width: auto;
  }
  .s-header-contentsNav__navLink > a {
    display: flex;
    height: 100%;
    padding-block: 4.6rem;
    font-size: 1.8rem;
    font-family: var(--font-heading-ja);
  }
  .s-header-contentsNav__navLink > a::after {
    content: "";
    display: block;
    width: 0.3rem;
    height: 100%;
    margin-left: 1.2rem;
    background-image: url(../../assets/img/common/icon/icon-arrow-link.svg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: right calc(50%);
  }
  .s-header-contentsNav__navLink > a:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}
/*s-header-utilityList
------------------------------------------------------------- */
.s-header-utilityList {
  display: flex;
}
.s-header-utilityList__item {
  /* text-align: center; */
  font-family: var(--font-ja-primary);
  font-weight: 600;
}
.s-header-utilityList__description {
  text-align: center;
}
.s-header-utilityList__icon {
  position: relative;
  display: block;
  width: 100%;
}
.s-header-utilityList__icon img {
  display: block;
  width: 100%;
  height: auto;
}
.s-header-utilityList__icon-thumbnail {
  margin-inline: auto;
}
.s-header-utilityList__icon--cart {
  position: relative;
}
/* --- for small viewport --- */
@media screen and (max-width: 960px) {
  .s-header-utilityList {
    align-items: end;
    column-gap: 1.2rem;
  }
  .s-header-utilityList__item {
    min-width: 3rem;
  }
  .s-header-utilityList__item--user-nav {
    /* width: 5rem; */
  }
  .s-header-utilityList__icon-thumbnail {
    max-width: 2.4rem;
  }
  .s-header-utilityList__icon-label {
    max-width: 5rem;
    margin-inline: auto;
  }
  .s-header-utilityList__description {
    margin-block-start: 0.3rem;
    font-size: 1rem;
    line-height: 1.3;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 961px) {
  .s-header-utilityList {
    column-gap: 2rem;
  }
  .s-header-utilityList__item {
    min-width: 5.2rem;
  }
  .s-header-utilityList__item--user-nav {
    width: 7rem;
  }
  .s-header-utilityList__icon-thumbnail {
    max-width: 3rem;
  }
  .s-header-utilityList__icon-label {
    position: absolute;
    top: -2.8rem;
    left: 0;
  }
  .s-header-utilityList__description {
    margin-block-start: 0.5rem;
    font-size: 1.2rem;
    line-height: calc(13 / 12);
  }
  .s-header-utilityList__icon {
    cursor: pointer;
  }
  .s-header-utilityList__icon:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}
/*s-header-freeWordSearch
------------------------------------------------------------- */
.s-header-freeWordSearch {
  width: 100%;
}
@media screen and (min-width: 961px) {
  .s-header-freeWordSearch {
    max-width: 22rem;
  }
}
@media screen and (min-width: 1200px) {
  .s-header-freeWordSearch {
    max-width: 34rem;
  }
}
.s-header__cartCnt {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -0.2rem;
  right: -0.1rem;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: var(--color-red);
  font-family: var(--font-en);
  font-size: 1.1rem;
  text-align: center;
  line-height: 1;
  color: var(--color-white);
}
.s-header__cartCnt {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -0.2rem;
  right: -0.1rem;
  width: auto;
  min-width: 1.6rem;
  height: 1.6rem;
  padding: 0 0.2rem;
  border-radius: 50%;
  background: var(--color-red);
  font-family: var(--font-en);
  font-size: 1.1rem;
  text-align: center;
  line-height: 1;
  color: var(--color-white);
}
/*s-header-miniCart
------------------------------------------------------------- */
.s-header-miniCart {
  display: none;
}
@media screen and (min-width: 961px) {
  .s-header-miniCart {
    display: block;
    width: 32rem;
    height: calc(100vh - var(--s-header-height));
    padding: 0;
    position: fixed;
    top: var(--s-header-height);
    right: 0;
    z-index: 1;
    background: var(--color-white);
    opacity: 1;
    visibility: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
    transition: transform 0.4s ease;
    transform: translate(100vw, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .s-header-miniCart.active {
    visibility: visible;
    transform: translate(0, 0);
  }
  .s-header-miniCart-headBlock {
    display: block;
    width: calc(100% - 4rem);
    margin: 0 auto;
    border-bottom: 1px solid var(--color-gray);
  }
  .s-header-miniCart-headBlock__headLink {
    display: block;
  }
  .s-header-miniCart-headBlock__headLink:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
  .s-header-miniCart-head {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 6rem;
    margin: 0 auto;
    padding: 0 0;
  }
  .s-header-miniCart-head__upper {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0 0.3rem;
  }
  .s-header-miniCart-head__icon {
    display: block;
    width: 3.8rem;
    height: auto;
  }
  .s-header-miniCart-head__title {
    width: calc(100% - 4.1rem);
    font-family: var(--font-ja-primary);
    text-align: left;
    font-size: 1.1rem;
  }
  .s-header-miniCart-head__price {
    text-align: left;
    font-size: 1.5rem;
  }
  .s-header-miniCart-body {
    display: block;
    width: 100%;
    max-height: calc(100vh - 8.4rem - 6rem - 10.9rem);
    padding: 0 2rem;
    overflow-y: auto;
  }
  .s-header-miniCart-item {
    display: flex;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    padding: 1.6rem 0;
    border-bottom: 1px solid var(--color-gray);
  }
  .s-header-miniCart-item:nth-last-of-type(1) {
    border-bottom: none;
  }
  .s-header-miniCart-item__img {
    display: block;
    width: 6.5rem;
    height: 6.5rem;
    overflow: hidden;
  }
  .s-header-miniCart-item__img:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
  .s-header-miniCart-item__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
  }
  .s-header-miniCart-item__itemInfo {
    display: block;
    width: calc(100% - 7.5rem);
  }
  .s-header-miniCart-item__name {
    display: block;
    margin-bottom: 0.4rem;
    font-size: 1.1rem;
  }
  .s-header-miniCart-item__name a:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
  .s-header-miniCart-item__info {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    font-size: 1.1rem;
  }
  .s-header-miniCart-item__price {
    font-size: 1.3rem;
  }
  .s-header-miniCart-item__quantity {
    font-size: 1.1rem;
  }
  .s-header-miniCart-item__deleteBtn {
    display: block;
    width: 3rem;
    margin: 0 0 0 auto;
    padding: 0 1rem;
  }
  .s-header-miniCart-item__deleteBtn:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
  .s-header-miniCart-button {
    display: block;
    width: calc(100% - 4rem);
    margin: 1.5rem auto 0;
    padding: 2rem 3rem 3rem;
    border-top: 1px solid var(--color-gray);
  }
}
/*s-headerModalBoxSet
------------------------------------------------------------- */
.s-headerModalBoxSet {
  display: block;
}
.s-headerModalBoxSet__btn {
  display: block;
}
.s-headerModalBoxSet__target {
  display: block;
}
.s-headerModalBox {
  display: block;
  width: 100vw;
  height: 100vh;
  padding: 2rem 0 0;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(102, 102, 102, 0.6);
  overflow-y: auto;
  opacity: 0;
  overflow-scrolling: touch;
  z-index: 1100;
  pointer-events: none;
  transition: opacity 0.3s ease;
  transform: translate(200vw, 0);
}
@media screen and (min-width: 768px) {
  .s-headerModalBox {
    padding-top: 4rem;
  }
}
@media screen and (min-width: 768px) {
  .s-headerModalBox::after {
    content: "";
    display: block;
    width: 100%;
    height: 6rem;
  }
}
.s-headerModalBox.active {
  transform: translate(0, 0);
  opacity: 1;
  pointer-events: auto;
}
.s-headerModalBox__outer {
  display: block;
  position: relative;
  z-index: 2;
  width: 92%;
  max-width: 96rem;
  margin: 0 auto;
  padding: 0;
  background: var(--color-white);
  box-shadow: 0px 0.3rem 0.6rem 0px rgba(0, 0, 0, 0.16);
}
.s-headerModalBox__inner {
  display: block;
  width: 100%;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .s-headerModalBox__outer {
    max-height: calc(100svh - 4rem);
    overflow: auto;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .s-headerModalBox__inner {
    max-height: 54rem;
    overflow: auto;
  }
}
.s-headerModalBox__bg {
  display: block;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.s-headerModalBoxHeding {
  display: block;
  position: relative;
  border-bottom: 1px solid var(--color-light);
  text-align: center;
}
.s-headerModalBoxHeding__closeBtn {
  position: absolute;
  right: 0;
  top: 0;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row-reverse;
  height: 100%;
  line-height: 1;
  color: var(--color-light);
  cursor: pointer;
  letter-spacing: 0.025em;
}
.s-headerModalBoxHeding__closeBtn::before {
  content: "＋";
  display: block;
  transform: rotate(45deg);
}
@media (hover: hover) {
  .s-headerModalBoxHeding__closeBtn:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}
.s-headerModalBoxHeding__title {
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.1em;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .s-headerModalBoxHeding {
    padding-block: 1.2rem;
    padding-inline: 1.5rem;
  }
  .s-headerModalBoxHeding__closeBtn {
    padding-inline: 1.5rem;
    font-size: 1.2rem;
  }
  .s-headerModalBoxHeding__closeBtn::before {
    font-size: 1.6rem;
  }
  .s-headerModalBoxHeding__title {
    font-size: 1.4rem;
    line-height: calc(32 / 14);
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .s-headerModalBoxHeding {
    padding-block: 2rem;
    padding-inline: 2rem;
  }
  .s-headerModalBoxHeding__closeBtn {
    padding-inline: 2rem;
    font-size: 1.3rem;
  }
  .s-headerModalBoxHeding__closeBtn::before {
    font-size: 1.6rem;
  }
  .s-headerModalBoxHeding__title {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.s-headerModalBoxFooterBtn {
  display: grid;
  grid-template-columns: repeat(2, var(--header-modal-button-width));
  align-items: center;
  justify-content: center;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .s-headerModalBoxFooterBtn {
    --header-modal-button-width: 1fr;
    position: sticky;
    bottom: 0;
    left: 0;
    gap: 1.5rem;
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
    background-color: var(--color-white);
    box-shadow: 0px -0.5rem 0.6rem 0px rgba(0, 0, 0, 0.16);
  }
  .s-headerModalBoxFooterBtn .c-btn {
    max-width: 100%;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .s-headerModalBoxFooterBtn {
    --header-modal-button-width: 24rem;
    gap: 2rem;
    padding-block: 4rem;
    padding-inline: 4rem;
  }
}
/* s-headerRefinedSearchBox
------------------------------------------------------------- */
.s-headerRefinedSearchBox {
  display: block;
  padding: 2rem 1.5rem 2rem;
}
@media screen and (min-width: 768px) {
  .s-headerRefinedSearchBox {
    padding: 4rem;
  }
}
.s-headerRefinedSearchBox-item {
  display: block;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .s-headerRefinedSearchBox-item + .s-headerRefinedSearchBox-item {
    margin-top: 2.5rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .s-headerRefinedSearchBox-item {
    display: grid;
    grid-template-columns: 20rem 1fr;
    align-items: center;
  }
  .s-headerRefinedSearchBox-item + .s-headerRefinedSearchBox-item {
    margin-top: 3rem;
  }
}
.s-headerRefinedSearchBox-item__title {
  display: block;
  text-align: left;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .s-headerRefinedSearchBox-item__title {
    margin-bottom: 1.3rem;
    font-size: 1.4rem;
    line-height: calc(20 / 14);
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .s-headerRefinedSearchBox-item__title {
    font-size: 1.6rem;
    line-height: calc(23 / 16);
  }
}
.s-headerRefinedSearchBox-item__input {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .s-headerRefinedSearchBox-item__input {
    max-width: 40rem;
  }
}
.s-headerRefinedSearchBox-item__checkColor {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .s-headerRefinedSearchBox-item__checkColor {
    max-width: calc(100% - 15rem);
  }
}
.s-headerRefinedSearchBox-item__priceSelect {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0 1rem;
}
@media screen and (min-width: 768px) {
  .s-headerRefinedSearchBox-item__priceSelect select {
    width: 13.2rem;
  }
}
.s-headerRefinedSearchBox-item__checkList {
  display: block;
  width: 100%;
  padding: 0.6rem 1.5rem;
  background-color: var(--color-gray-light);
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .s-headerRefinedSearchBox-item__checkList {
    padding: 1.5rem;
  }
}
.p-refinedSearchBox-category-lowerLevel {
  display: none;
}
.p-refinedSearchBox-category-lowerLevel--active {
  display: block;
  margin-top: 1rem;
}
.s-headerProductNavList-childeCategories__title {
  position: relative;
  padding: 0.9rem 4rem 0.9rem 1rem;
  cursor: pointer;
  font-size: 1.3rem;
  line-height: 1.3;
}
.s-headerProductNavList-childeCategories__title:hover {
  opacity: var(--hover-opacity);
  transition: opacity var(--transition-default);
}
.s-headerProductNavList-childeCategories__title::after {
  content: "＋";
  position: absolute;
  right: 1rem;
  top: 0.8rem;
}
.s-headerProductNavList-childeCategories__list {
  display: none;
}
.s-headerProductNavList-childeCategories.open
  .s-headerProductNavList-childeCategories__title {
  background-color: var(--color-gray-light);
}
.s-headerProductNavList-childeCategories.open
  .s-headerProductNavList-childeCategories__title::after {
  content: "－";
}
.s-headerProductNavList-categories {
  display: block;
}
.s-headerProductNavList-categories__item {
  display: block;
}
.s-headerProductNavList-categories__item__a {
  display: block;
  min-height: 3.4rem;
  padding: 0.9rem 4rem 0.9rem 1rem;
}
@media screen and (min-width: 768px) {
  .s-headerProductNavList-categories__item__a {
    font-size: 1.3rem;
    line-height: 1.3;
  }
  .s-headerProductNavList-categories__item__a:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}
.s-headerProductNavList-colorList {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0 1rem;
  gap: 0.6rem;
}
.s-headerProductNavList-colorList__item {
  display: block;
  width: 3.4rem;
  height: 3.4rem;
}
.s-headerProductNavList-colorList__item__label {
  display: block;
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .s-headerProductNavList-colorList__item__label:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}
.s-headerProductNavList-colorList__item__label input[type="radio"] {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--color-white);
  border: 1px solid var(--color-white);
  cursor: pointer;
  transition: all 0.15s ease-in-out;
}
.s-headerProductNavList-colorList__item__label input[type="radio"]::after {
  content: "";
  box-sizing: border-box;
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  width: calc(100% - 0.8rem);
  height: calc(100% - 0.8rem);
  background-color: var(--color-blue);
  border-radius: 50%;
}
.s-headerProductNavList-colorList__item__label input[type="radio"]:checked {
  border: 1px solid var(--color-gray-middle);
}
.s-headerProductNavList-colorList__item__label--white
  input[type="radio"]:checked {
  border-color: var(--color-gray-middle);
}
.s-headerProductNavList-colorList__item__label--white
  input[type="radio"]:after {
  background-color: var(--color-white);
  border: 1px solid var(--color-gray-middle);
}
.s-headerProductNavList-colorList__item__label--black
  input[type="radio"]:checked {
  border-color: var(--color-black);
}
.s-headerProductNavList-colorList__item__label--black
  input[type="radio"]:after {
  background-color: var(--color-black);
}
.s-headerProductNavList-colorList__item__label--blue
  input[type="radio"]:checked {
  border-color: var(--color-blue);
}
.s-headerProductNavList-colorList__item__label--blue input[type="radio"]:after {
  background-color: var(--color-blue);
}
.s-headerProductNavList-colorList__item__label--yellow
  input[type="radio"]:checked {
  border-color: var(--color-yellow);
}
.s-headerProductNavList-colorList__item__label--yellow
  input[type="radio"]:after {
  background-color: var(--color-yellow);
}
.s-headerProductNavList-colorList__item__label--red
  input[type="radio"]:checked {
  border-color: var(--color-red);
}
.s-headerProductNavList-colorList__item__label--red input[type="radio"]:after {
  background-color: var(--color-red);
}
.s-headerProductNavList-colorList--refine {
  padding: 0;
}
.s-headerProductNavList-colorList--refine__item {
  width: 5rem;
  height: 5rem;
}
.s-headerProductNavList-radioList {
  padding: 0 1rem;
}
.s-headerProductNavList-radioList__item__label {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0 0.8rem;
  padding: 0.6rem 0 0.6rem 0;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .s-headerProductNavList-radioList__item__label {
    padding: 0.9rem 0 0.9rem 0;
    font-size: 1.3rem;
  }
  .s-headerProductNavList-radioList__item__label:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}
.s-headerProductNavList-radioList--horizontal {
  padding: 0;
}
@media screen and (min-width: 768px) {
  .s-headerProductNavList-radioList--horizontal {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    padding: 0;
    gap: 1.2rem 3rem;
  }
  .s-headerProductNavList-radioList--horizontal__item__label {
    padding: 0;
    font-size: 1.5rem;
  }
}
/* Footer
------------------------------------------------------------- */
.s-footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding-inline: 1.5rem;
  font-family: var(--font-ja-primary);
}
.s-footer__shell {
  max-width: var(--container-standard);
  margin-inline: auto;
}
.s-footer__links-logo {
  margin-inline: auto;
}
.s-footer__links-subscribe-list {
  display: flex;
}
.s-footer__copy {
  color: #8d95a6;
}
.s-footer__nav-tel-contact {
  letter-spacing: 0.025em;
}
.s-footer__nav-tel-contact dl {
  display: grid;
}
.s-footer__nav-tel-contact dt {
  font-family: var(--font-en);
}
.s-footer__nav-tel-contact-number a {
  position: relative;
  display: flex;
  align-items: center;
}
.s-footer__nav-tel-contact-number a::after {
  content: "";
  background-image: url(../../assets/img/common/icon/icon_phone.svg);
  background-size: 100%;
  background-repeat: no-repeat;
}
.s-footer__nav-tel-contact-notes {
  font-family: var(--font-ja-primary);
}
.c-footer__scroll-top {
  position: fixed;
  z-index: var(--zindex-floating-element);
}
/* --- for small viewport --- */
@media screen and (max-width: 960px) {
  .s-footer {
    margin-block-start: 6.5rem;
    padding-block: 6.5rem;
  }
  .s-footer__links-logo {
    display: block;
    width: 12rem;
    margin-inline: auto;
  }
  .s-footer__links-subscribe {
    margin-block-start: 3rem;
  }
  .s-footer__links-subscribe-list {
    justify-content: center;
    gap: 2rem;
  }
  .s-footer__links-subscribe-list-item {
    width: 2.5rem;
  }
  .s-footer__nav {
    margin-block-start: 4rem;
  }
  .s-footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  .s-footer__nav-heading {
    padding-block-end: 1.2rem;
    padding-inline: 1rem;
    border-bottom: 1px solid var(--color-white);
    font-size: 1.7rem;
    line-height: calc(25 / 17);
    font-family: var(--font-heading-ja);
    letter-spacing: 0.1em;
    font-weight: 500;
  }
  .s-footer__nav-details {
  }
  .s-footer__nav-details-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
  .s-footer__nav-details-list-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  }
  .s-footer__nav-details-list-item:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.25);
  }
  .s-footer__nav-details-list-item:has(.s-footer__nav-tel-contact) {
    grid-column: 1 / span 2;
  }
  .s-footer__nav-details-list-item > a {
    display: block;
    padding-block: 1.3rem;
    padding-inline: 1.5rem;
    font-size: 1.4rem;
    line-height: calc(20 / 14);
  }
  .s-footer__nav-tel-contact {
    padding-block: 1.4rem;
    padding-inline: 2rem;
  }
  .s-footer__nav-tel-contact dl {
    grid-template-columns: 8rem 1fr;
    align-items: end;
  }
  .s-footer__nav-tel-contact-number dt {
    font-size: 1.4rem;
    line-height: calc(18 / 14);
  }
  .s-footer__nav-tel-contact-number dd {
    font-size: 2.4rem;
    line-height: calc(30 / 24);
  }
  .s-footer__nav-tel-contact-number a {
    gap: 1rem;
  }
  .s-footer__nav-tel-contact-number a::after {
    width: 2.4rem;
    height: 2.4rem;
  }
  .s-footer__nav-tel-contact-notes {
    margin-block-start: 0.7rem;
    font-size: 1.4rem;
    line-height: 1;
  }
  .s-footer__copy {
    margin-block-start: 4rem;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
  }
  .c-footer__scroll-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 4.5rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 961px) {
  .s-footer {
    margin-block-start: 15rem;
    padding-block: 12rem;
  }
  .s-footer__shell {
    display: grid;
    grid-template-columns: 20rem 1fr;
  }
  .s-footer__links-subscribe {
    margin-block-start: 6rem;
  }
  .s-footer__links-subscribe-list {
    gap: 1.5rem;
  }
  .s-footer__links-subscribe-list-item {
    width: 3rem;
  }
  .s-footer__nav {
    margin-inline-start: auto;
  }
  .s-footer__nav-list {
    display: flex;
    gap: 4rem;
  }
  .s-footer__nav-list-item {
    padding-inline-end: 10rem;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
  }
  .s-footer__nav-heading {
    font-size: 1.9rem;
    line-height: calc(27 / 19);
    font-family: var(--font-heading-ja);
    letter-spacing: 0.1em;
    font-weight: 500;
  }
  .s-footer__nav-details {
    margin-block-start: 4rem;
  }
  .s-footer__nav-details-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    font-size: 1.6rem;
    line-height: calc(23 / 16);
  }
  .s-footer__nav-tel-contact dl {
    grid-template-columns: 8rem 1fr;
    align-items: end;
  }
  .s-footer__nav-tel-contact-number dt {
    font-size: 1.4rem;
    line-height: calc(18 / 14);
  }
  .s-footer__nav-tel-contact-number dd {
    font-size: 2.8rem;
    line-height: calc(35 / 28);
  }
  .s-footer__nav-tel-contact-number a {
    gap: 1rem;
  }
  .s-footer__nav-tel-contact-number a::after {
    width: 2.6rem;
    height: 2.6rem;
  }
  .s-footer__nav-tel-contact-notes {
    margin-block-start: 0.5rem;
    font-size: 1.4rem;
    line-height: calc(21 / 14);
  }
  .s-footer__copy {
    grid-column: 2;
    grid-row: 2;
    margin-block-start: 10rem;
    font-size: 1rem;
    line-height: 1.5;
    text-align: right;
  }
  .c-footer__scroll-top {
    bottom: 3rem;
    right: 3rem;
    width: 8rem;
  }
}
/* =============================================================
    Page
============================================================= */
/* Error
------------------------------------------------------------- */
.p-error-content__title {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-error-content__title {
    margin-top: 6.4rem;
    font-size: 2.6rem;
    text-align: center;
    letter-spacing: 0.1em;
  }
}
.p-error-content__info {
  margin-top: 2.7rem;
  font-size: 1.4rem;
  color: var(--color-red);
}
@media screen and (min-width: 768px) {
  .p-error-content__info {
    margin-top: 4.2rem;
    font-size: 1.6rem;
    text-align: center;
  }
}
.p-error-content__returnTop-btn {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-error-content__returnTop-btn {
    width: 28%;
    margin: 5rem auto 0;
  }
}
.p-error-inquiry {
  margin-top: 4.7rem;
  padding: 2.5rem 2rem;
  background-color: var(--color-gray-light);
}
@media screen and (min-width: 768px) {
  .p-error-inquiry {
    width: 60%;
    margin: 3.5rem auto 0;
    padding: 3rem;
  }
}
.p-error-inquiry__title {
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-error-inquiry__title {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.24;
  }
}
.p-error-inquiry__text {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.5rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-error-inquiry__text {
    margin-top: 1.4rem;
    text-align: center;
  }
}
.p-error-inquiry__annotation {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-error-inquiry__annotation {
    font-size: 1.4rem;
  }
}
.p-error-inquiry__tel {
  pointer-events: none;
}
.p-error-inquiry__btn {
  margin-top: 2.1rem;
}
@media screen and (min-width: 768px) {
  .p-error-inquiry__btn {
    width: 49%;
    margin: 2.5rem auto 0;
  }
}
/* =============================================================
    Page
============================================================= */
/* MailUnsubscribe
------------------------------------------------------------- */
.p-unsubscribe-content__title {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .p-unsubscribe-content__title {
    margin-top: 6.4rem;
    font-size: 2.6rem;
    text-align: center;
    letter-spacing: 0.1em;
  }
}
.p-unsubscribe-content__info {
  margin-top: 2.7rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-unsubscribe-content__info {
    margin-top: 4.2rem;
    font-size: 1.6rem;
    text-align: center;
  }
}
.p-unsubscribe-content__returnTop-btn {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-unsubscribe-content__returnTop-btn {
    width: 28%;
    margin: 5rem auto 0;
  }
}
.p-unsubscribe-inquiry {
  margin-top: 4.7rem;
  padding: 2.5rem 2rem;
  background-color: var(--color-gray-light);
}
@media screen and (min-width: 768px) {
  .p-unsubscribe-inquiry {
    width: 60%;
    margin: 3.5rem auto 0;
    padding: 3rem;
  }
}
.p-unsubscribe-inquiry__title {
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-unsubscribe-inquiry__title {
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.24;
  }
}
.p-unsubscribe-inquiry__text {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-top: 1.5rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .p-unsubscribe-inquiry__text {
    margin-top: 1.4rem;
    text-align: center;
  }
}
.p-unsubscribe-inquiry__annotation {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-unsubscribe-inquiry__annotation {
    font-size: 1.4rem;
  }
}
.p-unsubscribe-inquiry__tel {
  pointer-events: none;
}
.p-unsubscribe-inquiry__btn {
  margin-top: 2.1rem;
}
@media screen and (min-width: 768px) {
  .p-unsubscribe-inquiry__btn {
    width: 49%;
    margin: 2.5rem auto 0;
  }
}
.s-validate-message-base {
  position: relative;
}
.s-validate-message-wrap {
  width: fit-content;
  background-color: var(--color-red);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  position: absolute;
  bottom: 0;
}
.s-validate-message-wrap::before {
  width: 2rem;
  height: 1rem;
  background-color: var(--color-red);
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  content: "";
  display: block;
  position: absolute;
  left: 1rem;
  bottom: -0.8rem;
}
.s-validate-message {
  color: var(--color-white);
  display: block;
  font-size: 1.2rem;
  line-height: 1.5;
  padding: 0;
  word-break: keep-all;
}
.s-validate-message-form {
  background-color: var(--color-warning) !important;
}
[v-cloak] {
  opacity: 0;
}

/**
 * animation
 */
.anim-fade-up-order > * {
  visibility: hidden;
  opacity: 0;
}
.anim-fade-up-order.is-show > *,
.is-current .anim-fade-up-order > * {
  animation: fade-up 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}
.anim-fade-up-order.is-show > *:nth-child(1),
.is-current .anim-fade-up-order > *:nth-child(1) {
  animation-delay: 0s;
}
.anim-fade-up-order.is-show > *:nth-child(2),
.is-current .anim-fade-up-order > *:nth-child(2) {
  animation-delay: 0.125s;
}
.anim-fade-up-order.is-show > *:nth-child(3),
.is-current .anim-fade-up-order > *:nth-child(3) {
  animation-delay: 0.25s;
}
.anim-fade-up-order.is-show > *:nth-child(4),
.is-current .anim-fade-up-order > *:nth-child(4) {
  animation-delay: 0.375s;
}
.anim-fade-up-order.is-show > *:nth-child(5),
.is-current .anim-fade-up-order > *:nth-child(5) {
  animation-delay: 0.5s;
}
.anim-fade-up-order.is-show > *:nth-child(6),
.is-current .anim-fade-up-order > *:nth-child(6) {
  animation-delay: 0.625s;
}
.anim-fade-up-order.is-show > *:nth-child(7),
.is-current .anim-fade-up-order > *:nth-child(7) {
  animation-delay: 0.75s;
}
.anim-fade-up-order.is-show > *:nth-child(8),
.is-current .anim-fade-up-order > *:nth-child(8) {
  animation-delay: 0.875s;
}
.anim-fade-up-order.is-show > *:nth-child(9),
.is-current .anim-fade-up-order > *:nth-child(9) {
  animation-delay: 1s;
}
.anim-fade-up-order.is-show > *:nth-child(10),
.is-current .anim-fade-up-order > *:nth-child(10) {
  animation-delay: 1.125s;
}

/**
 * @keyframes
 */
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-up {
  0% {
    visibility: hidden;
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}