@charset "UTF-8";
/* =============================================================
    Generic
============================================================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
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;
  scroll-padding-top: var(--s-header-height);
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  letter-spacing: 0.05em;
  font-weight: 500;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

a,
a:visited,
a:hover,
a:active {
  text-decoration: none;
  outline: none;
  color: inherit;
  transition: all var(--transition-default);
}

a:not(.c-rich-button):not([target="_self"]):hover {
  opacity: 0.7;
}

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;
}

@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: #222;
  --color-primary: #149818;
  --color-secondary: #eafaeb;
  --color-tertiary: #f8fce4;
  --color-warning: #fcfcbe;
  --color-danger: #eb1515;
  --color-sale: #e84343;
  --color-light: #e3e3e3;
  --color-dark: #707070;
  /* color utility */
  --color-white: #fff;
  --color-black: #222;
  --color-blue: #58b8e2;
  --color-blue-light: #eef8fc;
  --color-blue-heavy: #26499d;
  --color-red: #eb1515;
  --color-yellow: #e5dc09;
  --color-yellow-light: #fcfcbe;
  --color-orange: #d67936;
  --color-orange-light: #f0aa83;
  --color-green: #149818;
  --color-purple: #b565f1;
  --color-pink: #ef6ebf;
  /* color gray */
  --color-gray: #e3e3e3;
  --color-gray-dark: #707070;
  --color-gray-middle: #7c7c7c;
  --color-gray-light: #fafafa;
  --color-gray-light-little: #eaeaea;
  --color-gray-light-middle: #f8f8f8;
  /* 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: "Noto Sans JP", sans-serif;
  --font-en: "Barlow", sans-serif;
  /* Container max width */
  /* Effect related */
  --hover-opacity: 0.7;
  --transition-default: 350ms 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;
}

@media screen and (min-width: 768px) {
  :root {
    --container-default: 118rem;
    --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: 768px) and (max-width: 1600px) {
  html {
    font-size: calc(10 * 100vw / 1600);
  }
}

body {
  font-family: var(--font-ja);
  font-size: 1.4rem;
  line-height: 1.6;
  word-break: break-all;
  color: var(--color-main);
}

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) !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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 991px) {
  .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;
}

/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .is-hidden-small {
    display: none !important;
  }
}

/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .is-hidden-large {
    display: none !important;
  }
}

/**
* #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-top: 3.7rem;
  padding-bottom: 0;
}

@media screen and (min-width: 768px) {
  .l-container-wrap__body {
    padding-top: 0;
    padding-bottom: 11rem;
  }
}

.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: 991px) {
  .l-container-fluid-lg {
    padding-left: 0;
    padding-right: 0;
  }
}

/* =============================================================
    Components
============================================================= */
/* input
------------------------------------------------------------- */
input,
select,
textarea,
label {
  font-size: 1.5rem;
}

/* for IOS move */
@media screen and (max-width: 767px) {
  _:lang(x) + _:-webkit-full-screen-document,
  input,
  textarea {
    font-size: 16px;
  }
  _: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.9rem;
  height: 1.9rem;
  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: 1.2rem;
  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: 0.7rem 1.2rem 0.6rem 1.2rem;
  border: solid 1px var(--color-gray-middle);
  background-color: var(--color-blue-light);
  border-radius: 0.5rem;
  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-gray-middle);
}

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: 1rem 3.5rem 0.9rem 1.2rem;
  line-height: 1.2;
  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;
}

@media screen and (min-width: 768px) {
  select {
    padding: 1.1rem 3.5rem 1rem 1.2rem;
  }
}

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);
}

/* Button
------------------------------------------------------------- */
.c-btn {
  display: inline-block;
  padding: 1.3rem;
  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--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
 */
.c-btn-progress {
  display: inline-block;
  padding: 2.1rem 1rem;
  width: 100%;
  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-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);
  border-radius: 0.8rem;
  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;
}

@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;
  font-family: "Roboto", sans-serif;
}

.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-rich-button {
  --color-button-primary: var(--color-primary);
  --color-button-secondary: var(--color-white);
  display: grid;
  grid-template-columns: var(--button-icon-size) 1fr var(--button-icon-size);
  align-items: center;
  width: 100%;
  min-width: var(--button-width, var(--button-width-default));
  height: var(--button-height, var(--button-height-default));
  padding-inline: var(--button-gutter, var(--button-gutter-default));
  border: 0.2rem solid var(--color-button-primary);
  border-radius: 100vh;
  background-color: var(
    --color-button-secondary-active,
    var(--color-button-secondary)
  );
  font-size: var(--button-font-size, var(--button-font-size-default));
  color: var(
    --color-button-primary-active,
    var(--color-button-primary)
  ) !important;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
}
.c-rich-button::before {
  content: "";
  width: var(--button-icon-size);
}
.c-rich-button:not([target="_blank"])::after {
  content: "";
  width: var(--button-icon-size);
  background-image: var(
    --button-icon-image-path-active,
    url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS4xNTYiIGhlaWdodD0iNy44NzgiIHZpZXdCb3g9IjAgMCAyNS4xNTYgNy44NzgiPiA8ZyBpZD0i44Kw44Or44O844OXXzEyMTY0IiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAxMjE2NCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNS41MDggLTMuNTgyKSI+IDxsaW5lIGlkPSLnt5pfOTc5IiBkYXRhLW5hbWU9Iue3miA5NzkiIHgxPSIyMi41IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNS41MDggMTAuMzYpIiBmaWxsPSJub25lIiBzdHJva2U9IiMxNDk4MTgiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLXdpZHRoPSIyLjIiLz4gPHBhdGggaWQ9IuODkeOCuV84MjA2IiBkYXRhLW5hbWU9IuODkeOCuSA4MjA2IiBkPSJNMTMuODYsNC4zNmw2LDZoLTkuMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIuODY4IDApIiBmaWxsPSJub25lIiBzdHJva2U9IiMxNDk4MTgiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLXdpZHRoPSIyLjIiLz4gPC9nPjwvc3ZnPg==")
  );
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all var(--transition-default);
}
.c-rich-button[target="_blank"]::after {
  content: "";
  width: var(--button-icon-size);
  background-image: var(
    --button-icon-image-path-active,
    url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMi41IiBoZWlnaHQ9IjEyLjUiIHZpZXdCb3g9IjAgMCAxMi41IDEyLjUiPiA8cGF0aCBpZD0i44OR44K5XzgyMjYiIGRhdGEtbmFtZT0i44OR44K5IDgyMjYiIGQ9Ik03LjY2Nyw1VjYuMzMzSDQuMzMzdjcuMzMzaDcuMzMzVjEwLjMzM0gxM3Y0YS42NjcuNjY3LDAsMCwxLS42NjcuNjY3SDMuNjY3QS42NjcuNjY3LDAsMCwxLDMsMTQuMzMzVjUuNjY3QS42NjcuNjY3LDAsMCwxLDMuNjY3LDVaTTE1LDNWOC4zMzNIMTMuNjY3VjUuMjc1bC01LjIsNS4yLS45NDMtLjk0Myw1LjE5NS01LjJIOS42NjdWM1oiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yLjc1IC0yLjc1KSIgZmlsbD0iIzBhYTI1MCIgc3Ryb2tlPSIjMGFhMjUwIiBzdHJva2Utd2lkdGg9IjAuNSIvPjwvc3ZnPg==")
  );
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all var(--transition-default);
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .c-rich-button {
    --button-width-default: 24.5rem;
    --button-height-default: 4.8rem;
    --button-gutter-default: 2rem;
    --button-font-size-default: 1.5rem;
  }
  .c-rich-button:not([target="_blank"]) {
    --button-icon-size: 1.9rem;
  }
  .c-rich-button[target="_blank"] {
    --button-width: 27.5rem;
    --button-height: 4.5rem;
    --button-gutter: 1.5rem;
    --button-icon-size: 1.2rem;
  }
  .c-rich-button::after {
    height: 2rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .c-rich-button {
    --button-width-default: 32rem;
    --button-height-default: 6rem;
    --button-gutter-default: 2.5rem;
    --button-font-size-default: 1.8rem;
  }
  .c-rich-button:not([target="_blank"]) {
    --button-icon-size: 2.2rem;
  }
  .c-rich-button::after {
    height: 1rem;
  }
  .c-rich-button:hover {
    --color-button-primary-active: var(--color-white);
    --color-button-secondary-active: var(--color-primary);
  }
  .c-rich-button:not([target="_blank"]):hover::after {
    --button-icon-image-path-active: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS4xNTYiIGhlaWdodD0iNy44NzgiIHZpZXdCb3g9IjAgMCAyNS4xNTYgNy44NzgiPiA8ZyBpZD0i44Kw44Or44O844OXXzEyMTY0IiBkYXRhLW5hbWU9IuOCsOODq+ODvOODlyAxMjE2NCIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoNS41MDggLTMuNTgyKSI+IDxsaW5lIGlkPSLnt5pfOTc5IiBkYXRhLW5hbWU9Iue3miA5NzkiIHgxPSIyMi41IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtNS41MDggMTAuMzYpIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLXdpZHRoPSIyLjIiLz4gPHBhdGggaWQ9IuODkeOCuV84MjA2IiBkYXRhLW5hbWU9IuODkeOCuSA4MjA2IiBkPSJNMTMuODYsNC4zNmw2LDZoLTkuMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTIuODY4IDApIiBmaWxsPSJub25lIiBzdHJva2U9IiNmZmYiIHN0cm9rZS1taXRlcmxpbWl0PSIxMCIgc3Ryb2tlLXdpZHRoPSIyLjIiLz4gPC9nPjwvc3ZnPg==");
  }
  .c-rich-button[target="_blank"]:hover::after {
    --button-icon-image-path-active: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMi41IiBoZWlnaHQ9IjEyLjUiIHZpZXdCb3g9IjAgMCAxMi41IDEyLjUiPiA8cGF0aCBpZD0i44OR44K5XzgyMjYiIGRhdGEtbmFtZT0i44OR44K5IDgyMjYiIGQ9Ik03LjY2Nyw1VjYuMzMzSDQuMzMzdjcuMzMzaDcuMzMzVjEwLjMzM0gxM3Y0YS42NjcuNjY3LDAsMCwxLS42NjcuNjY3SDMuNjY3QS42NjcuNjY3LDAsMCwxLDMsMTQuMzMzVjUuNjY3QS42NjcuNjY3LDAsMCwxLDMuNjY3LDVaTTE1LDNWOC4zMzNIMTMuNjY3VjUuMjc1bC01LjIsNS4yLS45NDMtLjk0Myw1LjE5NS01LjJIOS42NjdWM1oiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yLjc1IC0yLjc1KSIgZmlsbD0iI2ZmZiIgc3Ryb2tlPSIjZmZmIiBzdHJva2Utd2lkdGg9IjAuNSIvPjwvc3ZnPg==");
  }
}

/**
 * #c-breadcrumb-list
 */
.c-breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: max-content;
  font-size: 1.1rem;
  line-height: 1.6;
}

@media screen and (min-width: 768px) {
  .c-breadcrumb-list {
    width: 100%;
  }
}

.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;
  }
}

/* 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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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%;
  background-color: #fcfcfc;
  box-shadow: inset 0px 0px 0.6rem 0px rgba(68, 68, 68, 0.2);
  border-radius: 100vh;
}

.c-freeWordSearchBox__icon {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
}

.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;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .c-freeWordSearchBox {
  }
  .c-freeWordSearchBox__icon {
    width: 3.5rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .c-freeWordSearchBox {
    padding-block: 0.925rem;
    padding-inline-start: 2rem;
    padding-inline-end: 1.5rem;
  }
  .c-freeWordSearchBox__icon {
    width: 2rem;
  }
}

/* sIcon
------------------------------------------------------------- */
.c-sIcon {
  display: inline-block;
  padding: 0.3rem 0.6rem;
  line-height: 1;
  color: var(--color-white);
  background: var(--color-blue);
}

.c-sIcon--01 {
  background: var(--color-blue);
}

.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%;
}

.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%;
  position: absolute;
  bottom: 0;
  left: 0;
  padding-right: 25%;
}

@media screen and (min-width: 768px) {
  .c-product-head__status {
    padding-right: 0;
  }
}

.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 (min-width: 768px) {
  .c-product-body__title-name {
    font-size: 1.2rem;
  }
}

@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: wrap;
  gap: 0.2rem 0.2rem;
}

.c-product-sIcon__item {
  height: 1.7rem;
  font-size: 1rem;
}

.c-product-sIcon__item img {
  width: auto;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .c-product-sIcon__item {
    height: 2rem;
    font-size: 1.1rem;
  }
}

.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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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%;
  position: absolute;
  bottom: 0;
  left: 0;
}

.c-productUser-head__favorite {
  position: absolute;
  right: 0.6rem;
  bottom: 0.6rem;
}

@media screen and (min-width: 992px) {
  .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-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: wrap;
  gap: 0.2rem 0.2rem;
}

.c-productUser-sIcon__item {
  height: 1.7rem;
  font-size: 1rem;
}

.c-productUser-sIcon__item img {
  width: auto;
  height: 100%;
}

@media screen and (min-width: 768px) {
  .c-productUser-sIcon__item {
    height: 2rem;
    font-size: 1.1rem;
  }
}

.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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .c-productUser-foot__button {
    width: 75%;
  }
}
.c-productUser-foot__quantity + .c-productUser-foot__button {
  margin-top: 1.2rem;
}

/**
 * #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__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 {
  line-height: 1.3;
  font-size: 2rem;
}

@media screen and (min-width: 768px) {
  .c-form-title {
    font-size: 3.2rem;
  }
}

/**
 * #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 {
  margin-top: 5.7rem;
  margin-bottom: 1.3rem;
  overflow-x: scroll;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .m-breadcrumb {
    display: block;
    margin-top: 2.3rem;
    margin-bottom: 4.5rem;
    overflow-x: visible;
    white-space: normal;
  }
}

@media screen and (max-width: 767px) {
  .m-breadcrumb {
    -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: 3rem 1.5rem;
}

@media screen and (min-width: 768px) {
  .m-modalBoxFooterBtn {
    align-items: stretch;
    justify-content: center;
    flex-direction: row;
    gap: 2rem;
    padding: 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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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: 992px) {
  .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
------------------------------------------------------------- */
.s-header {
  --header-height: 6rem;
  display: block;
  width: 100%;
  height: var(--header-height);
}

.s-header-wrap {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  width: 100%;
  background: var(--color-white);
  box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.16);
}

.s-header-wrap__logo {
  display: block;
  width: 10.7rem;
}

.s-header-wrap__logo a {
  display: block;
}

.s-header-wrap__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.s-header-wrap__nav {
  display: block;
  position: absolute;
  left: 0.5rem;
}

.s-header-wrap__utility {
  display: block;
  position: absolute;
  right: 0.5rem;
}
@media screen and (min-width: 992px) {
  .s-header {
    --header-height: 7rem;
    height: var(--header-height);
  }

  .s-header-wrap {
    justify-content: flex-start;
    column-gap: 3rem;
    height: var(--header-height);
    margin-inline: auto;
    /* padding-inline-start: 2rem; */
    padding-inline-start: calc((100vw - 160rem) / 2 + 2rem);
    padding-inline-end: calc((100vw - 160rem) / 2 + 1rem);
    /* box-shadow: 0 0 0.3rem 0 rgba(0, 0, 0, 0.16); */
  }

  .s-header-wrap__logo {
    flex-shrink: 0;
    width: 12.2rem;
  }

  .s-header-wrap__nav {
    display: block;
    flex-shrink: 0;
    position: static;
    top: inherit;
    left: inherit;
    width: auto;
    height: auto;
  }

  .s-header-wrap__utility {
    display: flex;
    flex-grow: 1;
    flex-direction: row-reverse;
    align-items: center;
    column-gap: 1rem;
    position: static;
    top: inherit;
    left: inherit;
    width: auto;
    height: auto;
    margin: 0 0 0 auto;
  }
}

@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 *****************************/
/* --- for small viewport --- */
@media screen and (max-width: 991px) {
  /* @media screen and (max-width: 767px) { */
  .s-header-navBlok__drawerBtn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.2rem;
    width: 5rem;
    height: 100%;
  }
  .s-header-navBlok__drawerBtn::after {
    font-size: 1rem;
    line-height: calc(15 / 10);
    text-align: center;
    font-weight: 600;
  }
  .s-header-navBlok__drawerBtn-icon {
    width: 2.6rem;
    height: 2.6rem;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
    transition: all var(--transition-default);
  }
  .s-header-navBlok__drawerBtn:not(.active) .s-header-navBlok__drawerBtn-icon {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjYiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAyNiAyNiI+IDxkZWZzPiA8Y2xpcFBhdGggaWQ9ImNsaXAtcGF0aCI+IDxyZWN0IGlkPSLplbfmlrnlvaJfNDE0MyIgZGF0YS1uYW1lPSLplbfmlrnlvaIgNDE0MyIgd2lkdGg9IjI2IiBoZWlnaHQ9IjI2IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNSAxMCkiIGZpbGw9IiNmZmYiIHN0cm9rZT0iIzcwNzA3MCIgc3Ryb2tlLXdpZHRoPSIxIi8+IDwvY2xpcFBhdGg+IDwvZGVmcz4gPGcgaWQ9IuODnuOCueOCr+OCsOODq+ODvOODl18xOTciIGRhdGEtbmFtZT0i44Oe44K544Kv44Kw44Or44O844OXIDE5NyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE1IC0xMCkiIGNsaXAtcGF0aD0idXJsKCNjbGlwLXBhdGgpIj4gPHBhdGggaWQ9IuODkeOCuV84MjY2IiBkYXRhLW5hbWU9IuODkeOCuSA4MjY2IiBkPSJNMyw0SDI1VjYuMkgzWm0wLDcuN0gyNXYyLjJIM1ptMCw3LjdIMjV2Mi4ySDNaIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNCAxMCkiIGZpbGw9IiMxNDk4MTgiLz4gPC9nPjwvc3ZnPg==");
  }
  .s-header-navBlok__drawerBtn.active .s-header-navBlok__drawerBtn-icon {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjYiIGhlaWdodD0iMjYiIHZpZXdCb3g9IjAgMCAyNiAyNiI+IDxkZWZzPiA8Y2xpcFBhdGggaWQ9ImNsaXAtcGF0aCI+IDxyZWN0IGlkPSLplbfmlrnlvaJfNDE0MyIgZGF0YS1uYW1lPSLplbfmlrnlvaIgNDE0MyIgd2lkdGg9IjI2IiBoZWlnaHQ9IjI2IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxNSAxMCkiIGZpbGw9IiNmZmYiIHN0cm9rZT0iIzcwNzA3MCIgc3Ryb2tlLXdpZHRoPSIxIi8+IDwvY2xpcFBhdGg+IDwvZGVmcz4gPGcgaWQ9IuODnuOCueOCr+OCsOODq+ODvOODl18xOTciIGRhdGEtbmFtZT0i44Oe44K544Kv44Kw44Or44O844OXIDE5NyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTE1IC0xMCkiIGNsaXAtcGF0aD0idXJsKCNjbGlwLXBhdGgpIj4gPGxpbmUgaWQ9Iue3ml85OTgiIGRhdGEtbmFtZT0i57eaIDk5OCIgeDI9IjI2IiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxOC44MDggMzIuMTkyKSByb3RhdGUoLTQ1KSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMTQ5ODE4IiBzdHJva2Utd2lkdGg9IjIuNCIvPiA8bGluZSBpZD0i57eaXzk5OSIgZGF0YS1uYW1lPSLnt5ogOTk5IiB4Mj0iMjYiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDE4LjgwOCAxMy44MDgpIHJvdGF0ZSg0NSkiIGZpbGw9Im5vbmUiIHN0cm9rZT0iIzE0OTgxOCIgc3Ryb2tlLXdpZHRoPSIyLjQiLz4gPC9nPjwvc3ZnPg==");
  }
  .s-header-navBlok__drawerBtn:not(.active)::after {
    content: "メニュー";
  }
  .s-header-navBlok__drawerBtn.active::after {
    content: "閉じる";
  }
}

.s-header-navBlok__nav {
  display: block;
  width: 100%;
  height: calc(100vh - var(--header-height));
  position: fixed;
  top: var(--header-height);
  left: 0;
  z-index: 1000;
  overflow-y: auto;
  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;
}

/* --- for small viewport --- */
@media screen and (max-width: 991px) {
  .s-header-navBlok__nav {
    box-shadow: inset 0px 0.3rem 0.3rem 0px rgba(0, 0, 0, 0.16);
  }
}

.s-header-navBlok__nav::after {
  content: "";
  display: block;
  width: 100%;
  height: 8rem;
}

.s-header-navBlok__drawerBtn.active + .s-header-navBlok__nav {
  visibility: visible;
  transform: translate(0, 0);
}

@media screen and (min-width: 992px) {
  .s-header-navBlok__drawerBtn {
    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__drawerBtn.active + .s-header-navBlok__nav {
    visibility: inherit;
    transform: none;
  }
}

/*s-header-userNav
------------------------------------------------------------- */
.s-header-userNav {
  display: block;
}

.s-header-userNav__head {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--color-black);
  gap: 0 0.3rem;
}

.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__body {
  display: block;
}

.s-header-userNav__navlist {
  display: block;
}

.s-header-userNav__navLink {
  display: block;
  border-bottom: 1px solid var(--color-gray);
}

/* --- for small viewport --- */
@media screen and (max-width: 991px) {
  .s-header-userNav__navLink > a {
    display: var(--display, block);
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
    font-size: 1.5rem;
    line-height: calc(21 / 15);
    text-align: left;
    font-weight: 500;
  }
  .s-header-userNav__navLink > a[data-nav] {
    --display: flex;
    align-items: center;
    gap: 1rem;
  }
  .s-header-userNav__navLink > a[data-nav]::after {
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    margin-inline-start: auto;
    margin-inline-end: 0.3rem;
    border-top: 0.2rem solid var(--color-primary);
    border-right: 0.2rem solid var(--color-primary);
    transform: rotate(45deg);
  }
  .s-header-userNav__navLink > a[data-nav]::before {
    content: "";
    width: 2.4rem;
    height: 2.4rem;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
  }
  .s-header-userNav__navLink > a[data-nav="user"]::before {
    background-image: url(../../assets/img/common/icon/icon-user.svg);
  }
  .s-header-userNav__navLink > a[data-nav="register"]::before {
    background-image: url(../../assets/img/common/icon/icon-register.svg);
  }
  .s-header-userNav__navLink > a[data-nav="favo"]::before {
    background-image: url(../../assets/img/common/icon/icon-favo.svg);
  }
  .s-header-userNav__navLink > a[data-nav="calender"]::before {
    background-image: url(../../assets/img/common/icon/icon-calendar.svg);
  }
}

/* --- for large viewport --- */
@media screen and (min-width: 992px) {
  .s-header-userNav {
    display: block;
    width: 32rem;
    height: calc(100vh - var(--header-height));
    padding: 2rem;
    position: fixed;
    top: var(--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__head {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-gray);
    gap: 0 0.3rem;
  }

  .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__navlist {
    display: block;
  }

  .s-header-userNav__navLink {
    display: block;
    border-bottom: none;
  }

  .s-header-userNav__navLink > a {
    display: block;
    padding-block: 0.8rem;
    padding-inline: 0;
    padding: 0.8rem 0;
    font-size: 1.5rem;
    line-height: calc(21 / 15);
    text-align: left;
  }

  .s-header-userNav__navLink > a:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}

/*s-header-contentsNavBlock
------------------------------------------------------------- */
.s-header-contentsNavBlock {
  display: block;
}

@media screen and (min-width: 992px) {
  .s-header-contentsNavBlock {
    display: flex;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0 2.5rem;
    width: auto;
    height: var(--header-height);
    overflow: auto;
  }

  .s-header-contentsNavBlock__item {
    display: block;
  }
}

.s-header-accordionNav,
.s-header-contentsNav {
  display: block;
  width: 100%;
}

.s-header-accordionNav__body,
.s-header-contentsNav__body {
  display: block;
}

.s-header-accordionNav__navlist,
.s-header-contentsNav__navlist {
  display: block;
  overflow: hidden;
}

.s-header-accordionNav__navLink,
.s-header-contentsNav__navLink {
  display: block;
  border-bottom: 1px solid var(--color-gray);
}

.s-header-accordionNav__navLink:nth-last-of-type(1),
.s-header-contentsNav__navLink:nth-last-of-type(1) {
  border-bottom: none;
}

/* --- for small viewport --- */
@media screen and (max-width: 991px) {
  .s-header-accordionNav__head,
  .s-header-contentsNav__head {
    display: block;
    padding-block: 1.3rem;
    padding-inline: 1.5rem;
    background: #e6f4e6;
    font-size: 1.6rem;
    line-height: calc(24 / 16);
    font-weight: 700;
  }
  .s-header-accordionNav__navLink > a,
  .s-header-contentsNav__navLink > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
    font-size: 1.5rem;
    font-weight: 500;
    text-align: left;
  }
  .s-header-accordionNav__navLink:not(:has(.c-accordion__container)) > a::after,
  .s-header-contentsNav__navLink:not(:has(.c-accordion__container)) > a::after {
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    margin-inline-end: 0.3rem;
    border-top: 0.2rem solid var(--color-primary);
    border-right: 0.2rem solid var(--color-primary);
    transform: rotate(45deg);
  }
  .s-header-categories__container {
    background-color: #fafafa;
  }
  .s-header-categories__item[data-category-level="secondary"] {
    padding-block: 1.5rem;
    padding-inline: 1.5rem;
    font-size: 1.5rem;
    line-height: calc(21 / 15);
    font-weight: 500;
  }
  .s-header-categories__list[data-category-level="tertiary"] {
    display: grid;
    grid-template-columns: 100%;
    row-gap: 1.5rem;
    padding-block-start: 1.5rem;
    padding-block-end: 0.5rem;
    padding-inline: 1rem;
  }
  .s-header-categories__item[data-category-level="tertiary"] {
  }
  .s-header-categories__item a {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .s-header-categories__item:not(:has(.c-accordion__container)):not(
      [data-category-level="tertiary"]
    )
    a::after {
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    margin-inline-end: 0.3rem;
    border-top: 0.2rem solid var(--color-primary);
    border-right: 0.2rem solid var(--color-primary);
    transform: rotate(45deg);
  }

  .c-header-contents__footer {
    padding-block-start: 4rem;
    padding-inline: 5rem;
  }

  .c-header-contents__sns dt {
    margin-block-start: 3rem;
    font-size: 1.4rem;
    line-height: calc(17 / 14);
    text-align: center;
    font-weight: 900;
    letter-spacing: 0.05em;
  }

  .c-header-contents__sns dd {
    margin-block-start: 1.5rem;
  }

  .c-header-contents__sns-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }

  .c-header-contents__sns-list li {
    width: 2.4rem;
  }
}

/* --- for large viewport --- */
@media screen and (min-width: 992px) {
  .s-header-accordionNav {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
    border-bottom: 0.2rem solid rgba(0, 0, 0, 0);
    transition: border var(--transition-default);
  }

  .s-header-accordionNav:hover {
    border-bottom: 0.2rem solid var(--color-primary);
  }

  .s-header-accordionNav__head,
  .s-header-contentsNav__head {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.8rem;
    height: 100%;
    padding: 0 0 0 0;
    background-color: inherit;
    font-size: 1.6rem;
    font-weight: 600;
    cursor: pointer;
  }

  .s-header-accordionNav__head:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }

  .s-header-accordionNav__head::after {
    content: "";
    display: block;
    width: 1rem;
    height: 100%;
    margin-left: 0.8rem;
    background-image: url(../../assets/img/common/icon/icon-arrow-select.svg);
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: right center;
  }

  .s-header-accordionNav__body {
    display: none;
    width: 100%;
    max-height: calc(100vh - var(--header-height));
    overflow-y: auto;
    position: absolute;
    left: 0;
    top: var(--header-height);
    padding-block-start: 3rem;
    padding-block-end: 5rem;
    padding-inline: 2rem;
    background: rgba(255, 255, 255, 1);
    box-shadow: inset 0 0.3rem 0.3rem -0.3rem rgba(0, 0, 0, 0.16);
    z-index: 2;
  }

  .s-header-accordionNav:hover .s-header-accordionNav__body {
    display: block;
  }

  .s-header-accordionNav__navlist {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
  }

  .s-header-accordionNav__navlist:has([data-category-level]) {
    column-gap: 8.8rem;
  }

  .s-header-accordionNav__navlist:not(:has([data-category-level])) {
    column-gap: 4rem;
  }

  .s-header-accordionNav__navLink {
    border-bottom: none;
  }

  .s-header-categories__container[data-category-level="secondary"] {
    display: flex;
    flex-direction: column;
    row-gap: 1.2rem;
    padding-block-start: 1.5rem;
  }

  .s-header-categories__item {
    letter-spacing: 0.05em;
  }

  .s-header-categories__item[data-category-level="primary"] > a {
    font-size: 2rem;
    line-height: calc(29 / 20);
    font-weight: 700;
  }

  .s-header-categories__item[data-category-level="secondary"] > a,
  .s-header-accordionNav__navLink > a:not(.js-accordion-trigger) {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.6rem;
    line-height: calc(24 / 16);
    font-weight: 600;
  }

  .s-header-categories__item[data-category-level="secondary"] > a::before,
  .s-header-accordionNav__navLink > a:not(.js-accordion-trigger)::before {
    content: "";
    width: 0.56rem;
    height: 0.56rem;
    border-top: 0.2rem solid var(--color-primary);
    border-right: 0.2rem solid var(--color-primary);
    transform: rotate(45deg);
  }

  .s-header-accordionNav__navLink > a:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}

@media screen and (min-width: 992px) {
  .s-header-contentsNav {
    display: block;
    height: 100%;
  }

  .s-header-contentsNav__head[target="_blank"]::after {
    content: "";
    width: 1.2rem;
    height: 100%;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMi41IiBoZWlnaHQ9IjEyLjUiIHZpZXdCb3g9IjAgMCAxMi41IDEyLjUiPiA8cGF0aCBpZD0i44OR44K5XzgyMDgiIGRhdGEtbmFtZT0i44OR44K5IDgyMDgiIGQ9Ik03LjY2Nyw1VjYuMzMzSDQuMzMzdjcuMzMzaDcuMzMzVjEwLjMzM0gxM3Y0YS42NjcuNjY3LDAsMCwxLS42NjcuNjY3SDMuNjY3QS42NjcuNjY3LDAsMCwxLDMsMTQuMzMzVjUuNjY3QS42NjcuNjY3LDAsMCwxLDMuNjY3LDVaTTE1LDNWOC4zMzNIMTMuNjY3VjUuMjc1bC01LjIsNS4yLS45NDMtLjk0Myw1LjE5NS01LjJIOS42NjdWM1oiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yLjc1IC0yLjc1KSIgZmlsbD0iIzE0OTgxOCIgc3Ryb2tlPSIjMTQ5ODE4IiBzdHJva2Utd2lkdGg9IjAuNSIvPjwvc3ZnPg==");
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
  }

  .s-header-contentsNav__body {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    height: 100%;
  }

  .s-header-contentsNav__navlist {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0 2.4rem;
    width: auto;
  }

  .s-header-contentsNav__navLink {
    display: block;
    border-bottom: none;
  }

  .s-header-contentsNav__navLink > a {
    display: block;
    padding: 0;
    font-family: var(--font-en);
    font-size: 1.3rem;
    text-align: left;
  }

  .s-header-contentsNav__navLink > a:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}

/*s-header-utilityList
------------------------------------------------------------- */
.s-header-utilityList {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  justify-content: flex-end;
}

.s-header-utilityList__item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.2rem;
  height: 100%;
  padding-block-start: 0.2rem;
}

.s-header-utilityList__icon {
  display: block;
  width: 100%;
}

.s-header-utilityList__title {
  text-align: center;
  font-weight: 600;
}

.s-header-utilityList__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.s-header-utilityList__icon--cart {
  position: relative;
}

/* --- for small viewport --- */
/* @media screen and (max-width: 991px) { */
@media screen and (max-width: 767px) {
  .s-header-utilityList__item {
    width: 5rem;
  }

  .s-header-utilityList__icon {
    width: 2.6rem;
  }

  .s-header-utilityList__title {
    font-size: 1rem;
    line-height: calc(15 / 10);
  }
}
/* --- for large viewport --- */
/* @media screen and (min-width: 992px) { */
@media screen and (min-width: 768px) {
  .s-header-utilityList__item {
    width: 7rem;
  }
  .s-header-utilityList__icon {
    width: 2.8rem;
    cursor: pointer;
  }

  .s-header-utilityList__icon:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }

  .s-header-utilityList__title {
    font-size: 1.1rem;
    line-height: calc(16 / 11);
  }
}

/*s-header-freeWordSearch
------------------------------------------------------------- */
.s-header-freeWordSearch {
  width: 100%;
}

@media screen and (min-width: 992px) {
  .s-header-freeWordSearch {
    max-width: 22rem;
  }
}

@media screen and (min-width: 1200px) {
  .s-header-freeWordSearch {
    max-width: 28rem;
  }
}

.s-header__cartCnt {
  position: absolute;
  display: grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  aspect-ratio: 1;
  border-radius: 100vh;
  background-color: #eaaf0f;
  font-size: 1rem;
  color: var(--color-white);
  font-weight: 1rem;
}

/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .s-header__cartCnt {
    top: -0.4rem;
    right: -1rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .s-header__cartCnt {
    top: -0.5rem;
    right: -0.9rem;
  }
}

/*s-header-miniCart
------------------------------------------------------------- */
.s-header-miniCart {
  display: none;
}

@media screen and (min-width: 992px) {
  .s-header-miniCart {
    display: block;
    width: 32rem;
    height: calc(100vh - var(--header-height));
    padding: 0;
    position: fixed;
    top: var(--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-en);
    text-align: left;
    font-size: 1.1rem;
  }

  .s-header-miniCart-head__price {
    font-family: var(--font-en);
    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;
  }
}

.s-headerModalBox::after {
  content: "";
  display: block;
  width: 100%;
  height: 12rem;
}

@media screen and (min-width: 768px) {
  .s-headerModalBox::after {
    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);
  border-radius: 4px;
}

.s-headerModalBox__inner {
  display: block;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .s-headerModalBox__inner {
    margin: 0 0 4rem;
    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;
  background: var(--color-gray-light);
  padding: 2rem 10rem;
  border-radius: 4px 4px 0 0;
  text-align: center;
}

.s-headerModalBoxHeding__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;
}

.s-headerModalBoxHeding__closeBtn::before {
  content: "＋";
  display: block;
  margin-right: 0.2em;
  padding-top: 0.1rem;
  font-size: 1.4rem;
  transform: rotate(45deg);
}

@media (hover: hover) {
  .s-headerModalBoxHeding__closeBtn:hover {
    opacity: var(--hover-opacity);
    transition: opacity var(--transition-default);
  }
}

.s-headerModalBoxHeding__title {
  font-weight: 600;
  font-size: 1.5rem;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .s-headerModalBoxHeding__title {
    font-size: 1.8rem;
  }
}

.s-headerModalBoxFooterBtn {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  width: 100%;
  padding: 0 1.5rem 1.5rem;
}

@media screen and (min-width: 768px) {
  .s-headerModalBoxFooterBtn {
    align-items: stretch;
    justify-content: center;
    flex-direction: row;
    padding: 0 4rem 4rem;
  }
}

.s-headerModalBoxFooterBtn__close {
  order: 2;
  width: 100%;
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  .s-headerModalBoxFooterBtn__close {
    order: 1;
    max-width: 34.5rem;
    margin-right: 2rem;
    margin-top: 0;
  }
}

.s-headerModalBoxFooterBtn__next {
  order: 1;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .s-headerModalBoxFooterBtn__next {
    order: 2;
    max-width: 34.5rem;
    margin-right: 2rem;
    margin-top: 0;
  }
}

.s-headerModalBoxFooterBtn .c-btn {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .s-headerModalBoxFooterBtn .c-btn {
    padding: 2.1rem 1rem;
    font-size: 1.6rem;
    font-weight: 600;
  }
}

/* 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;
}

@media screen and (min-width: 768px) {
  .s-headerRefinedSearchBox-item {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
  }
}

.s-headerRefinedSearchBox-item__title {
  display: block;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  text-align: left;
}

@media screen and (min-width: 768px) {
  .s-headerRefinedSearchBox-item__title {
    width: 15rem;
    margin-bottom: 0;
  }
}

.s-headerRefinedSearchBox-item__input {
  display: block;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .s-headerRefinedSearchBox-item__input {
    max-width: 32rem;
  }
}

.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;
  border: 1px solid var(--color-light);
  border-radius: 5px;
}

@media screen and (min-width: 768px) {
  .s-headerRefinedSearchBox-item__checkList {
    max-width: calc(100% - 15rem);
    padding: 1.5rem;
  }
}

.s-headerRefinedSearchBox-item + .s-headerRefinedSearchBox-item {
  margin-top: 2.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.5rem 4rem;
  }

  .s-headerProductNavList-radioList--horizontal__item__label {
    padding: 0;
    font-size: 1.5rem;
  }
}

/* --- ticker --- */
.c-header-ticker {
  overflow: hidden;
  font-weight: 600;
  text-align: center;
}
.c-header-ticker * {
  height: 100%;
}
.c-header-ticker__list-item {
  display: grid;
  place-items: center;
  background-color: #eaf7eb;
  color: var(--color-primary);
  letter-spacing: 0.1em;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .c-header-ticker {
    height: 2.8rem;
  }
  .c-header-ticker__list-item {
    font-size: 1.4rem;
    line-height: calc(20 / 14);
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .c-header-ticker {
    height: 3.3rem;
  }
  .c-header-ticker__list-item {
    font-size: 1.5rem;
    line-height: calc(21 / 15);
  }
}

/* Footer
------------------------------------------------------------- */
.s-footer {
  border-top: 0.3rem solid var(--color-primary);
}
.s-footer__nav {
  max-width: 1140px;
  width: 100%;
  margin-inline: auto;
}
.s-footer-guideNav {
  display: grid;
  letter-spacing: 0.05em;
}
.s-footer-guideNav__item > a {
  display: flex;
  align-items: center;
}
.s-footer-snsNav {
  display: flex;
}
.s-footer__copy {
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-en);
  text-align: center;
  font-weight: 500;
  letter-spacing: 0.03em;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .s-footer__nav {
    padding-block-start: 0.4rem;
    padding-block-end: 2.8rem;
  }
  .s-footer-guideNav {
    font-size: 1.5rem;
    line-height: calc(21 / 15);
  }
  .s-footer-guideNav__item {
    border-bottom: 1px solid #e5e5e5;
  }
  .s-footer-guideNav__item > a {
    justify-content: space-between;
    padding-block: 1.6rem;
    padding-inline: 2rem;
  }
  .s-footer-guideNav__item > a::after {
    content: "";
    width: 0.7rem;
    height: 0.7rem;
    border-top: 0.2rem solid var(--color-primary);
    border-right: 0.2rem solid var(--color-primary);
    transform: rotate(45deg);
  }
  .s-footer-snsNav {
    justify-content: center;
    gap: 2rem;
    margin-block-start: 3rem;
  }
  .s-footer-snsNav__item {
    width: 2.4rem;
  }
  .s-footer__copy {
    padding-block: 1.5rem;
    font-size: 1.1rem;
    line-height: calc(13 / 11);
  }
}

/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .s-footer__nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: 5rem;
  }
  .s-footer-guideNav {
    grid-template-columns: repeat(4, auto);
    column-gap: 4rem;
    row-gap: 2rem;
    font-size: 1.6rem;
    line-height: calc(24 / 16);
  }
  .s-footer-guideNav__item > a {
    gap: 0.8rem;
  }
  .s-footer-guideNav__item > a::before {
    content: "";
    width: 0.56rem;
    height: 0.56rem;
    border-top: 0.2rem solid var(--color-primary);
    border-right: 0.2rem solid var(--color-primary);
    transform: rotate(45deg);
  }
  .s-footer-snsNav {
    gap: 2rem;
  }
  .s-footer-snsNav__item {
    width: 2.4rem;
  }
  .s-footer__copy {
    padding-block: 1em;
    font-size: 1.2rem;
    line-height: calc(14 / 12);
  }
}

/**
 * footer anchor link
 */
.c-footer__anchor-link {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: var(--anchor-link-size);
  height: var(--anchor-link-size);
  aspect-ratio: 1;
  border: 0.2rem solid var(--color-primary);
  border-radius: 100vh;
  background-color: var(--color-white);
  color: var(--color-primary) !important;
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.05em;
  z-index: 100;
}
.c-footer__anchor-link::before {
  content: "";
  background-size: 100%;
  background-position: center center;
  background-repeat: no-repeat;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .c-footer__anchor-link {
    --anchor-link-size: 5rem;
    bottom: 1rem;
    right: 1rem;
    gap: 0.3rem;
    font-size: 1.2rem;
    line-height: calc(14 / 12);
  }
  .c-footer__anchor-link::before {
    width: 1.2rem;
    height: 1.6rem;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMiIgaGVpZ2h0PSIxNi4wMjgiIHZpZXdCb3g9IjAgMCAxMiAxNi4wMjgiPiA8cGF0aCBpZD0i44OR44K5XzgyNDciIGRhdGEtbmFtZT0i44OR44K5IDgyNDciIGQ9Ik0xMi41NzksMTguMDI4SDEwLjY5M1Y1LjYwOUw2Ljk3LDkuMzMzLDUuNjM2LDhsNi02LDYsNkwxNi4zLDkuMzMzLDEyLjU3OSw1LjYwOVoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC01LjYzNiAtMikiIGZpbGw9IiMxNDk4MTgiLz48L3N2Zz4=");
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .c-footer__anchor-link {
    --anchor-link-size: 6rem;
    bottom: 3rem;
    right: 3rem;
    gap: 0.5rem;
    font-size: 1.3rem;
    line-height: calc(16 / 13);
  }
  .c-footer__anchor-link::before {
    width: 1.4rem;
    height: 1.9rem;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNCIgaGVpZ2h0PSIxOC42OTkiIHZpZXdCb3g9IjAgMCAxNCAxOC42OTkiPiA8cGF0aCBpZD0i44OR44K5XzgyNDciIGRhdGEtbmFtZT0i44OR44K5IDgyNDciIGQ9Ik0xMy43MzYsMjAuN2gtMi4yVjYuMjExTDcuMTkyLDEwLjU1Niw1LjYzNiw5bDctNyw3LDctMS41NTYsMS41NTZMMTMuNzM2LDYuMjExWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTUuNjM2IC0yKSIgZmlsbD0iIzE0OTgxOCIvPjwvc3ZnPg==");
  }
}

/* =============================================================
    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;
}

/* --- for small viewport --- */
@media screen and (max-width: 991px) {
  .js-accordion-trigger {
    position: relative;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
  }
  .js-accordion-trigger::after {
    content: "";
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all var(--transition-default);
  }
  [data-category-level="primary"] > .js-accordion-trigger::after {
    background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMS41NTYiIGhlaWdodD0iNy4zMzMiIHZpZXdCb3g9IjAgMCAxMS41NTYgNy4zMzMiPiA8cGF0aCBpZD0i44OR44K5XzgyMDYiIGRhdGEtbmFtZT0i44OR44K5IDgyMDYiIGQ9Ik0wLDAsNSw1LDAsMTAiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAuNzc4IDYuNTU2KSByb3RhdGUoLTkwKSIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjMTQ5ODE4IiBzdHJva2UtbWl0ZXJsaW1pdD0iMTAiIHN0cm9rZS13aWR0aD0iMi4yIi8+PC9zdmc+");
    width: 1rem;
    height: 1rem;
    transform: scale(1, -1);
  }
  [data-category-level="primary"] > .js-accordion-trigger.is-opened::after {
    transform: scale(1, 1);
  }
  [data-category-level="secondary"] > .js-accordion-trigger::before,
  [data-category-level="secondary"] > .js-accordion-trigger::after {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    width: 1.2rem;
    height: 0.2rem;
    margin: auto;
    background-color: var(--color-primary);
  }
  [data-category-level="secondary"] > .js-accordion-trigger::before {
    content: "";
    transition: all var(--transition-default);
  }
  [data-category-level="secondary"] > .js-accordion-trigger::after {
    transform: rotate(90deg);
  }
  [data-category-level="secondary"] > .js-accordion-trigger.is-opened::before {
    transform: rotate(360deg);
  }
  [data-category-level="secondary"] > .js-accordion-trigger.is-opened::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;
  }
  .c-accordion__container {
    overflow: hidden;
  }
}

/**
 * recently views
 */
.c-recently-views__heading {
  font-weight: 700;
  letter-spacing: 0.15em;
}
.c-recently-views__list {
  display: grid;
}
.c-recently-views__thumbnail {
  position: relative;
}
.c-recently-views__thumbnail-picture {
  aspect-ratio: 1;
  overflow: hidden;
}
.c-recently-views__thumbnail-image {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
.c-recently-views__product-name {
  font-weight: 500;
  letter-spacing: 0.05em;
}
.c-recently-views__price-shell {
  display: grid;
  grid-template-columns: 100%;
}
.c-recently-views__discount-price {
  color: var(--color-sale);
}
.c-recently-views__price {
  font-weight: 700;
  letter-spacing: 0.05em;
}
.c-recently-views__price--numeric {
  font-family: var(--font-en);
}
.c-recently-views__price-special + .c-recently-views__price {
  position: relative;
  width: fit-content;
  color: #666;
}
.c-recently-views__price-special + .c-recently-views__price::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: #666;
  transform: translateY(-50%);
}
.c-recently-views__soldout {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #666;
  font-family: var(--font-en);
  color: #666;
  letter-spacing: 0.05em;
}
/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .c-recently-views {
    padding-inline: 1.5rem;
  }
  .c-recently-views__heading {
    font-size: 2.2rem;
    line-height: calc(32 / 22);
  }
  .c-recently-views__container {
    margin-block-start: 2.5rem;
  }
  .c-recently-views__list {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 1.2rem;
    row-gap: 3rem;
  }
  .c-recently-views__description {
    margin-block-start: 0.8rem;
  }
  .c-recently-views__product-name {
    font-size: 1.3rem;
    line-height: calc(21 / 13);
  }
  .c-recently-views__price-shell {
    row-gap: 0.2rem;
    margin-block-start: 1rem;
  }
  .c-recently-views__price {
    font-size: 1.6rem;
    line-height: 1.9rem;
  }
  .c-recently-views__price--tax {
    font-size: 1rem;
  }
  .c-recently-views__price-special + .c-recently-views__price {
    font-size: 1.4rem;
  }
  .c-recently-views__price-special
    + .c-recently-views__price
    .c-recently-views__price--tax {
    font-size: 1rem;
  }
  .c-recently-views__soldout {
    height: 1.7rem;
    padding-inline: 0.8rem;
    font-size: 1.2rem;
  }
}
/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .c-recently-views__heading {
    font-size: 3rem;
    line-height: calc(44 / 30);
  }
  .c-recently-views__container {
    margin-block-start: 3rem;
  }
  .c-recently-views__list {
    grid-template-columns: repeat(6, 1fr);
    column-gap: 2rem;
    row-gap: 4rem;
  }
  .c-recently-views__description {
    margin-block-start: 1rem;
  }
  .c-recently-views__product-name {
    font-size: 1.4rem;
    line-height: calc(22 / 14);
  }
  .c-recently-views__price-shell {
    margin-block-start: 1.2rem;
  }
  .c-recently-views__price {
    font-size: 1.8rem;
    line-height: 2.2rem;
  }
  .c-recently-views__price--tax {
    font-size: 1.1rem;
  }
  .c-recently-views__price-special + .c-recently-views__price {
    font-size: 1.6rem;
  }
  .c-recently-views__price-special
    + .c-recently-views__price
    .c-recently-views__price--tax {
    font-size: 1rem;
  }
  .c-recently-views__soldout {
    height: 2rem;
    margin-inline-start: 0.5rem;
    padding-inline: 0.5rem;
    font-size: 1.2rem;
  }
}

/**
 * c icons
 */
.c-global-products__icons {
  position: absolute;
  bottom: 0;
  left: 0;
}
.c-global-products__icons-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}
.c-global-products__icons-list-item img {
  width: auto;
  height: 100%;
}

/* --- for small viewport --- */
@media screen and (max-width: 767px) {
  .c-global-products__icons-list-item {
    height: 1.7rem;
  }
}

/* --- for large viewport --- */
@media screen and (min-width: 768px) {
  .c-global-products__icons-list-item {
    height: 2rem;
  }
}
