@charset "UTF-8";
/* stylelint-disable */
:root {
  --color__black: #000000;
  --color__chacoal: #171717;
  --color__gray--dark: #808080;
  --color__gray: #dfdfdf;
  --color__gray--light: #efefef;
  --color__gray--lighter: #f8f8f8;
  --color__white: #ffffff;
  --color__pink: #fdeaea;
  --color__red: #eb3030;
  --color__orange: #f49629;
  --color__yellow: #eaa712;
  --color__yellow--light: #FFF9D8;
  --color__green--dark: #0A8900;
  --color__green: #81b539;
  --color__green--light: #e8f8f1;
  --color__blue--turquoise: #39b0b5;
  --color__blue: #139ef5;
  --color__blue--light: #eff5ff;
  --efo-message-borderColor: #eb3030;
  --efo-message-textColor: #ffffff;
  --efo-message-backgroundColor: #eb3030;
  --efo-progress-borderColor: #000000;
  --efo-progress-textColor: #000000;
  --efo-progress-accentColor: #0A8900;
  --efo-progress-backgroundColor: #efefef;
  --efo-progress-zIndex: 10;
  --efo-error-form-borderColor: #eb3030;
  --efo-error-form-textColor: #eb3030;
  --efo-error-form-backgroundColor: #fdeaea;
  --efo-success-form-borderColor: #81b539;
  --efo-success-form-textColor: #000000;
  --efo-success-form-backgroundColor: #e8f8f1;
  --efo-incomplete-backgroundColor: #FFF9D8;
  --efo-incomplete-textColor: #000000;
  --efo-incomplete-linkColor: #139ef5;
  --ease-in: cubic-bezier(0.42, 0, 1, 1);
  --ease-out: cubic-bezier(0, 0, 0.58, 1);
  --ease-in-out: cubic-bezier(0.42, 0, 0.58, 1);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --z-index__chat-form: 12;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: auto;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Wrapping and breaking text */
button {
  overflow-wrap: normal;
}

@keyframes anim-loading {
  0%, 80%, 100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
.c-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -15px 0;
  font-size: 6px;
  line-height: 1;
  transform: translateZ(0) translate(-50%, -50%);
  animation-delay: -0.08s;
}
.c-loading, .c-loading:before, .c-loading:after {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  animation: anim-loading 0.9s infinite ease-in-out;
  animation-fill-mode: both;
}
.c-loading::before, .c-loading::after {
  position: absolute;
  top: 0;
  content: "";
}
.c-loading::before {
  left: -18px;
  animation-delay: -0.16s;
}
.c-loading::after {
  left: 18px;
}

.c-fill-address {
  margin-left: auto;
  color: var(--color__blue);
  text-decoration: underline;
  cursor: pointer;
  background-color: transparent;
  border: 0;
}
.c-fill-address-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 10001;
  width: 100%;
  max-width: 380px;
  background-color: var(--color__white);
  border-radius: 6px;
  transform: translate(-50%, -50%);
}
.c-fill-address-modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px;
}
.c-fill-address-modal__title {
  font-weight: bold;
}
.c-fill-address-modal__close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: block;
  width: 24px;
  height: 24px;
  margin-left: auto;
  line-height: 0;
  cursor: pointer;
  background-color: transparent;
  border-radius: 50%;
}
.c-fill-address-modal__close::before {
  position: absolute;
  top: 4px;
  right: 4px;
  display: block;
  width: 16px;
  height: 16px;
  content: "";
  background-color: var(--color__black);
  background-image: none;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("/assets/svg/cross.svg");
  mask-image: url("/assets/svg/cross.svg");
}
.c-fill-address-modal__buttons {
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}
.c-fill-address-modal__button {
  width: 50%;
  padding: 8px 16px;
  font-size: 18px;
  color: var(--color__white);
  cursor: pointer;
  background-color: var(--color__black);
  border: 0;
  border-radius: 4px;
}
.c-fill-address-modal__button--cancel {
  color: var(--color__black);
  background-color: var(--color__gray);
}
.c-fill-address-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.c-fill-address-form__row {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}
.c-fill-address-form__label {
  width: 120px;
  font-size: 16px;
}
.c-fill-address-form__select {
  width: 200px;
  padding: 6px 4px;
  font-size: 18px;
  border-radius: 4px;
}
.c-fill-address-form__select.is-error {
  color: var(--color__red);
  background-color: var(--color__pink);
  border-color: var(--color__red);
}
.c-fill-address__result {
  margin-bottom: -24px;
}
.c-fill-address__result-link {
  display: none;
  text-align: right;
}
.c-fill-address__result-link a {
  color: var(--color__blue);
  text-decoration: underline;
}
.c-fill-address__result-input {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.c-fill-address__result-input label {
  margin-left: -24px;
  font-size: 24px;
  text-align: center;
}
.c-fill-address__result-input label input {
  margin: 0;
  margin-right: 8px;
}
.c-fill-address__result-input label:only-child {
  margin-left: 0;
}
.c-fill-address__result-input label:only-child input {
  display: none;
}

:root {
  --width-base: 980px;
  --width-side-widget: 240px;
  --font-size-default: 14px;
  --font-family-default: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans CJK JP",
    "BIZ UDPGothic", Meiryo, sans-serif;
}

body {
  font-family: var(--font-family-default);
  font-size: var(--font-size-default);
  color: var(--color__chacoal);
}

a {
  color: var(--color__chacoal);
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
}

select {
  margin: 0;
}

fieldset {
  padding: 0;
  margin: 0;
  border: none;
}

input::placeholder,
textarea::placeholder {
  color: #a3a3a3;
}

.l-contents .columns .center-column .c-widget__more a, .l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__restock-notification-link,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__restock-notification-link, .l-contents .columns .left-column .c-widget__more a,
.l-contents .columns .right-column .c-widget__more a, .l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__restock-notification-link,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__restock-notification-link,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__restock-notification-link,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__restock-notification-link, .c-product-list .c-product-panel__restock-notification-link, .c-link {
  color: var(--color__blue);
  text-decoration: underline;
  cursor: pointer;
  background: none;
  border: none;
}
.l-contents .columns .center-column .c-widget__more a:hover, .l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__restock-notification-link:hover,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__restock-notification-link:hover, .l-contents .columns .left-column .c-widget__more a:hover,
.l-contents .columns .right-column .c-widget__more a:hover, .l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__restock-notification-link:hover,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__restock-notification-link:hover,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__restock-notification-link:hover,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__restock-notification-link:hover, .c-product-list .c-product-panel__restock-notification-link:hover, .c-link:hover {
  text-decoration: none;
}

.c-link--gray {
  color: var(--color__gray--dark);
}
.c-link--sm {
  font-size: 12px;
}

.c-panel {
  background: var(--color__white);
  border-radius: 6px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}

.c-button, .c-ui-dialog-modal.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  font-size: 14px;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  border: initial;
  border-radius: 6px;
}
.c-button--default, .c-ui-dialog-modal.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button:last-child {
  color: var(--color__white);
  background-color: var(--color__chacoal);
  border: 1px solid var(--color__chacoal);
}
.c-button--default:hover, .c-ui-dialog-modal.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button:hover:last-child {
  opacity: 0.6;
}
.c-button--default i, .c-ui-dialog-modal.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button:last-child i {
  background-color: var(--color__white);
}
.c-button--primary {
  color: var(--color__white);
  background-color: var(--color__red);
  border: 1px solid var(--color__red);
}
.c-button--primary:hover {
  opacity: 0.6;
}
.c-button--primary i {
  background-color: var(--color__white);
}
.c-button--secondary, .c-button--change, .c-button--back-strong {
  color: var(--color__chacoal);
  background-color: var(--color__white);
  border: 1px solid var(--color__chacoal);
}
.c-button--secondary:hover, .c-button--change:hover, .c-button--back-strong:hover {
  filter: brightness(90%);
}
.c-button--secondary i, .c-button--change i, .c-button--back-strong i {
  background-color: var(--color__chacoal);
}
.c-button--link {
  color: var(--color__blue);
  background-color: var(--color__white);
  border: 1px solid var(--color__blue);
}
.c-button--link:hover {
  filter: brightness(90%);
}
.c-button--link i {
  background-color: var(--color__blue);
}
.c-button--blue {
  color: var(--color__white);
  background-color: var(--color__blue);
  border: 1px solid var(--color__blue);
}
.c-button--blue:hover {
  opacity: 0.6;
}
.c-button--blue i {
  background-color: var(--color__white);
}
.c-button--orange {
  color: var(--color__white);
  background-color: var(--color__orange);
  border: 1px solid var(--color__orange);
}
.c-button--orange:hover {
  opacity: 0.6;
}
.c-button--orange i {
  background-color: var(--color__white);
}
.c-button--gradient-green {
  color: var(--color__white);
  background: #1ba110;
  background: linear-gradient(to bottom, #1ba110 0%, #18830f 100%);
  border: 1px solid #1ba110;
}
.c-button--gradient-green:hover {
  opacity: 0.6;
}
.c-button--gradient-green i {
  background-color: var(--color__white);
}
.c-button--gray, .c-button--back {
  color: var(--color__white);
  background-color: var(--color__gray--dark);
  border: 1px solid var(--color__gray--dark);
}
.c-button--gray:hover, .c-button--back:hover {
  opacity: 0.6;
}
.c-button--gray i, .c-button--back i {
  background-color: var(--color__white);
}
.c-button--gray-lighter {
  color: var(--color__gray--dark);
  background-color: var(--color__gray--light);
  border: 1px solid var(--color__gray);
}
.c-button--gray-lighter:hover {
  opacity: 0.6;
}
.c-button--gray-lighter i {
  background-color: var(--color__gray--light);
}
.c-button--back-weak, .c-ui-dialog-modal.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button:first-child, .c-ui-dialog-modal.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .c-ui-dialog-modal--cancel-only .ui-button {
  color: var(--color__gray--dark);
  background-color: var(--color__white);
  border: 1px solid var(--color__gray--dark);
}
.c-button--back-weak:hover, .c-ui-dialog-modal.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button:hover:first-child, .c-ui-dialog-modal.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .c-ui-dialog-modal--cancel-only .ui-button:hover {
  filter: brightness(90%);
}
.c-button--back-weak i, .c-ui-dialog-modal.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button:first-child i, .c-ui-dialog-modal.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .c-ui-dialog-modal--cancel-only .ui-button i {
  background-color: var(--color__gray--dark);
}
.c-button__icon {
  width: 16px;
  height: 16px;
  margin-right: 8px;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.c-button__icon--cart {
  -webkit-mask-image: url("/assets/svg/icon_cart.svg");
  mask-image: url("/assets/svg/icon_cart.svg");
}
.c-button__icon--favorite {
  -webkit-mask-image: url("/assets/svg/icon_heart.svg");
  mask-image: url("/assets/svg/icon_heart.svg");
}
.c-button__icon--calendar {
  -webkit-mask-image: url("/assets/svg/calendar.svg");
  mask-image: url("/assets/svg/calendar.svg");
}
.c-button__icon--down {
  -webkit-mask-image: url("/assets/svg/triangle.svg");
  mask-image: url("/assets/svg/triangle.svg");
}
.c-button--loading {
  position: relative;
  pointer-events: none;
}
.c-button--loading > *:not(.c-button__loader) {
  opacity: 0;
}
.c-button--loading .c-button__loader {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -7.5px 0;
  font-size: 3px;
  line-height: 1;
  transform: translateZ(0) translate(-50%, -50%);
  animation-delay: -0.08s;
}
.c-button--loading .c-button__loader, .c-button--loading .c-button__loader:before, .c-button--loading .c-button__loader:after {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: anim-loading 0.9s infinite ease-in-out;
  animation-fill-mode: both;
}
.c-button--loading .c-button__loader::before, .c-button--loading .c-button__loader::after {
  position: absolute;
  top: 0;
  content: "";
}
.c-button--loading .c-button__loader::before {
  left: -9px;
  animation-delay: -0.16s;
}
.c-button--loading .c-button__loader::after {
  left: 9px;
}
.c-button:disabled, .c-ui-dialog-modal.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button:disabled {
  cursor: not-allowed;
  filter: brightness(50%);
  opacity: inherit;
}
.c-button--lg {
  padding: 20px;
  font-size: 16px;
  font-weight: 600;
}
.c-button--md {
  width: 260px;
  height: 40px;
  font-weight: 600;
}
.c-button--s {
  height: 30px;
  padding: 0 16px;
  font-weight: 600;
}
.c-button--full-width {
  width: 100%;
}

.c-button-group {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.c-button-group--sm {
  gap: 5px;
  margin: 0;
}
.c-button-group--column {
  flex-direction: column;
}
.c-button-group--column .c-button {
  width: 100%;
}

.c-select {
  position: relative;
}
.c-select select {
  width: 100%;
  height: 30px;
  padding: 0 42px 0 12px;
  overflow-x: hidden;
  cursor: pointer;
  background-color: var(--color__gray--lighter);
  border: 1px solid var(--color__gray);
  border-radius: 6px;
  -webkit-appearance: none;
  appearance: none;
}
.c-select i {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: 100%;
  pointer-events: none;
  background: var(--color__chacoal);
  border-radius: 6px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.c-select i::before {
  display: block;
  width: 100%;
  height: 100%;
  margin: auto;
  content: "";
  background: url("/assets/svg/triangle.svg") center center no-repeat;
}
.c-select:hover i {
  opacity: 0.6;
}
.c-select--white select {
  background-color: var(--color__white);
}
.c-select--error select {
  background-color: var(--color__pink);
  border: 1px solid var(--color__red);
}
fieldset:disabled .c-select select {
  background-color: var(--color__gray);
}
.c-select select[name=pref]:invalid {
  color: #a3a3a3;
}
.c-select--lg select {
  height: 40px;
  padding-right: 52px;
  font-size: 14px;
}
.c-select--lg i {
  width: 40px;
}
.c-select--sm {
  width: 30%;
}

.c-form-error-message, .p-lp .validate-error-message, .p-lp-ups .validate-error-message, .c-error-message {
  color: var(--color__red);
}

.c-form-error-message {
  display: block;
  margin-top: 10px;
  font-size: 12px;
}
.c-form-error-message + .c-form-error-message {
  margin-top: 0;
}
.c-form-error-message:empty {
  display: none;
}

.c-page-nav {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.c-page-nav__item {
  display: block;
  width: 26px;
  height: 26px;
  padding: 6px 0;
  margin: 0 5px;
  line-height: 1;
  text-align: center;
  border: 1px solid var(--color__gray);
  border-radius: 2px;
}
.c-page-nav__item:first-child {
  margin-left: 0;
}
.c-page-nav__item:last-child {
  margin-right: 0;
}
.c-page-nav__item--page:hover, .c-page-nav__item--active {
  color: var(--color__gray--dark);
  background-color: var(--color__gray);
}
.c-page-nav__item--prev, .c-page-nav__item--next {
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1LjI1IiBoZWlnaHQ9IjguNSIgdmlld0JveD0iMCAwIDUuMjUgOC41Ij4NCiAgPHBhdGggZD0iTTkyMS42NTUsODQ4LjVhLjUuNSwwLDAsMS0uMzU0LS4xODhsLS4xOTMtLjI0NGEuNS41LDAsMCwxLC4wNS0uNjc1bDMuMzUyLTMuMTQyLTMuMzUyLTMuMTQ5YS41LjUsMCwwLDEtLjA0OC0uNjc5bC4xOTEtLjIzNmEuNS41LDAsMCwxLC4zNTMtLjE4NWwuMDM2LDBhLjUuNSwwLDAsMSwuMzM5LjEzM2w0LjA2LDMuNzQ5YS41LjUsMCwwLDEsMCwuNzM1bC00LjA1NiwzLjc0OWEuNS41LDAsMCwxLS4zMzkuMTMzWiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTkyMSAtODQwKSIgZmlsbD0iI2ZmZmZmZiIvPg0KPC9zdmc+") center center no-repeat;
  background-color: var(--color__chacoal);
  border-color: var(--color__chacoal);
}
.c-page-nav__item--prev:hover, .c-page-nav__item--next:hover {
  opacity: 0.6;
}
.c-page-nav__item--prev {
  margin-right: 15px;
  transform: rotate(180deg);
}
.c-page-nav__item--next {
  margin-left: 15px;
}

.c-status-label, .c-form-label-required, .c-form-label-optional, .p-lp-zeus-card #zeus_new_card_area label::after,
.p-lp-zeus-card #zeus_registerd_card_area label::after, .p-order-zeus-card #zeus_new_card_area label::after,
.p-order-zeus-card #zeus_registerd_card_area label::after, .p-mypage-zeus-card-change-info #zeus_new_card_area label::after {
  padding: 3px;
  font-size: 12px;
  line-height: 1;
  color: var(--color__gray--lighter);
  border: solid 1px transparent;
  border-radius: 2px;
}
.c-status-label--s {
  padding: 2px;
  font-size: 10px;
}
.c-status-label--gray, .c-form-label-optional {
  background-color: var(--color__gray--dark);
  border-color: var(--color__gray--dark);
}
.c-status-label--red, .c-form-label-required, .p-lp-zeus-card #zeus_new_card_area label::after,
.p-lp-zeus-card #zeus_registerd_card_area label::after, .p-order-zeus-card #zeus_new_card_area label::after,
.p-order-zeus-card #zeus_registerd_card_area label::after, .p-mypage-zeus-card-change-info #zeus_new_card_area label::after {
  background-color: var(--color__red);
  border-color: var(--color__red);
}
.c-status-label--green {
  background-color: var(--color__green);
  border-color: var(--color__green);
}
.c-status-label--lightblue {
  background-color: var(--color__blue--turquoise);
  border-color: var(--color__blue--turquoise);
}
.c-status-label--yellow {
  background-color: var(--color__yellow);
  border-color: var(--color__yellow);
}
.c-status-label--outline-red {
  color: var(--color__red);
  background-color: var(--color__white);
  border-color: var(--color__red);
}

.c-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
  font-size: 12px;
  line-height: 1;
}
.c-breadcrumb:last-of-type {
  margin-bottom: 80px;
}
.c-breadcrumb li:not(:last-child)::after {
  margin-left: 6px;
  content: "/";
}
.c-breadcrumb a {
  color: var(--color__blue);
}

.c-contents-header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  margin-bottom: 60px;
  font-weight: 600;
  line-height: 1.1;
  border-bottom: solid 2px var(--color__chacoal);
}
.c-contents-header__title {
  font-size: 28px;
}
.c-contents-header__point-info {
  display: flex;
  align-items: flex-end;
}
.c-contents-header__point-info span {
  color: #eb3030;
}
.c-contents-header__point-info .point-info__user {
  margin-right: 32px;
}
.c-contents-header__point-info .point-info__point span {
  font-size: 18px;
}

.c-contents-body {
  margin-bottom: 40px;
}

.c-payment-module__card-type .c-radio {
  font-size: 16px;
  font-weight: 600;
}
.c-payment-module__card-type .c-radio label {
  margin-right: 20px;
}
.c-payment-module__card-form {
  margin: 120px 0 20px;
  background-color: var(--color__blue--light);
}
.c-payment-module__card-form .c-table {
  padding: 40px;
  margin-top: -81px;
}
.c-payment-module__card-form .c-table table {
  text-align: left;
}
.c-payment-module__card-form .c-table th {
  width: 210px;
}
.c-payment-module__card-form .c-table .name-group {
  gap: 20px;
}
.c-payment-module__card-form .c-table + .c-payment-module__card-form .c-table {
  border-top: 0;
}
.c-payment-module__cvv {
  margin-left: auto;
}
.c-payment-module__cvv .cvv-attention {
  margin-bottom: 6px;
  font-size: 10px;
  color: var(--color__gray--dark);
}
.c-payment-module__cvv .cvv-img {
  display: flex;
  gap: 6px;
  justify-content: center;
}
.c-payment-module__cvv .cvv-img::before, .c-payment-module__cvv .cvv-img::after {
  display: block;
  width: 53px;
  height: 32px;
  content: "";
  background: center center/cover no-repeat;
}
.c-payment-module__cvv .cvv-img::before {
  background-image: url("/assets/svg/cvv1.svg");
}
.c-payment-module__cvv .cvv-img::after {
  background-image: url("/assets/svg/cvv2.svg");
}
.c-payment-module__registerd-card-list {
  margin-bottom: 40px;
}
.c-payment-module__registerd-card-list .c-table th {
  padding: 10px 20px;
}
.c-payment-module__registerd-card-list .c-table th:nth-child(1) {
  width: 70px;
}
.c-payment-module__registerd-card-list .c-table td {
  padding: 12px 20px;
}
.c-payment-module__registerd-card-list .c-table td:nth-child(1) {
  width: 70px;
}

.c-checkbox input[type=checkbox] {
  display: none;
}
.c-checkbox label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.c-checkbox label::before {
  display: inline-block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  margin-bottom: auto;
  content: "";
  background-color: var(--color__white);
  border: 1px solid var(--color__gray);
  border-radius: 2px;
}
.c-checkbox input:checked + label::before {
  background: url("/assets/svg/check.svg") center center no-repeat;
  background-color: var(--color__white);
}
.c-checkbox--center label {
  justify-content: center;
}
.c-checkbox--error label::before {
  background: var(--color__pink);
  border-color: var(--color__red);
}

.c-counter {
  display: flex;
}
.c-counter input[type=text] {
  width: 66px;
  height: 30px;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  background-color: #ffffff;
  border: 1px solid #dfdfdf;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.c-counter .count-button {
  width: 30px;
  background: #171717;
  border: none;
  border-radius: 6px;
}
.c-counter .count-button--left {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.c-counter .count-button--left::before {
  display: inline-block;
  width: 10px;
  height: 2px;
  vertical-align: middle;
  content: "";
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/svg/minus.svg");
  -webkit-mask-size: cover;
  mask: url("/assets/svg/minus.svg");
  mask-size: cover;
}
.c-counter .count-button--right {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.c-counter .count-button--right::before {
  display: inline-block;
  width: 10px;
  height: 10px;
  vertical-align: middle;
  content: "";
  background-color: #ffffff;
  -webkit-mask-image: url("/assets/svg/plus.svg");
  -webkit-mask-size: cover;
  mask: url("/assets/svg/plus.svg");
  mask-size: cover;
}
.c-counter .count-button:hover {
  opacity: 0.6;
}
.c-counter--error input[type=text] {
  background-color: var(--color__pink);
  border: 1px solid var(--color__red);
}

.c-input-form {
  display: flex;
}
.c-input-form input[type=text] {
  width: 100%;
  height: 30px;
  padding: 6px 14px;
  font-size: 12px;
  line-height: 1;
  background: transparent;
  border: 1px solid #dfdfdf;
  border-radius: 6px;
  outline: none;
}
.c-input-form--num input[type=text] {
  text-align: right;
}
.c-input-form button,
.c-input-form input[type=button] {
  height: auto;
  margin-left: 8px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.c-input-form--lg input[type=text] {
  height: 40px;
}

.c-order-step {
  display: flex;
  gap: 16px;
  margin-bottom: 80px;
}
.c-order-step__item {
  display: flex;
  width: 25%;
  height: 50px;
  overflow: hidden;
  color: var(--color__chacoal);
  counter-increment: step-number;
  background: var(--color__white);
  border-radius: 6px;
}
.c-order-step__item--current {
  background: var(--color__gray);
}
.c-order-step__left {
  display: flex;
  align-items: center;
  color: var(--color__white);
  white-space: nowrap;
  background: var(--color__black);
}
.c-order-step__left span {
  padding: 9px;
  font-size: 14px;
  font-weight: bold;
}
.c-order-step__left span::after {
  content: counter(step-number);
}
.c-order-step__right {
  display: flex;
  align-items: center;
}
.c-order-step__right span {
  padding: 9px;
  font-size: 12px;
  font-weight: bold;
  word-break: break-all;
}

.c-section {
  padding: 40px;
  background: var(--color__white);
}
.c-section--secondary {
  background: var(--color__gray--lighter);
}
.c-section--tertiary {
  background: var(--color__gray);
}
* + .c-section {
  margin-top: 10px;
}
.c-section__title {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.1;
  word-break: break-all;
}
.c-section__subtitle {
  margin-bottom: 20px;
}

.c-order-section {
  padding: 40px;
  background: var(--color__white);
}
.c-order-section--secondary {
  background: var(--color__gray--lighter);
}
.c-order-section--tertiary {
  background: var(--color__gray);
}
* + .c-order-section {
  margin-top: 10px;
}
.c-order-section__title {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.1;
  word-break: break-all;
}
.c-order-section__subtitle {
  margin-bottom: 20px;
}
.c-order-section__content {
  word-break: break-all;
}
.c-order-section__content + .c-order-section__title {
  margin-top: 50px;
}

.c-lp-section {
  padding: 40px;
  background: var(--color__white);
  margin-bottom: 10px;
}
.c-lp-section--secondary {
  background: var(--color__gray--lighter);
}
.c-lp-section--tertiary {
  background: var(--color__gray);
}
* + .c-lp-section {
  margin-top: 10px;
}
.c-lp-section__title {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.1;
  word-break: break-all;
}
.c-lp-section__subtitle {
  margin-bottom: 20px;
}
.c-lp-section__content + .c-lp-section__title {
  margin-top: 50px;
}
.c-lp-section__title {
  display: flex;
  gap: 8px;
  align-items: center;
}
.c-lp-section__title--center {
  justify-content: center;
}
.c-lp-section__paragraph {
  margin-bottom: 20px;
}
.c-lp-section--blue {
  background-color: var(--color__blue--light);
}

.p-lp-ups__payment .regular-attention, .c-highlight {
  color: var(--color__red);
}

.c-highlight--green {
  color: var(--color__green--dark);
}

.c-textbox, .p-lp-zeus-card #zeus_token_card_info_area input[type=tel],
.p-lp-zeus-card #zeus_token_card_info_area input[type=text], .p-lp-zeus-card #zeus_token_card_info_area select, .p-order-zeus-card #zeus_token_card_info_area input[type=tel],
.p-order-zeus-card #zeus_token_card_info_area input[type=text], .p-order-zeus-card #zeus_token_card_info_area select, .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[type=tel],
.p-mypage-zeus-card-change-info #zeus_token_card_info_area input[type=text], .p-mypage-zeus-card-change-info #zeus_token_card_info_area select {
  line-height: 1;
  color: var(--color__chacoal);
  background-color: var(--color__gray--lighter);
  border: 1px solid var(--color__gray);
  border-radius: 6px;
  max-width: 100%;
  height: 30px;
  padding: 11px 10px;
}
.c-textbox--white {
  background-color: var(--color__white);
}
.c-textbox--error {
  background-color: var(--color__pink);
  border: 1px solid var(--color__red);
}
.c-textbox--right {
  text-align: right;
}
.c-textbox:disabled, .p-lp-zeus-card #zeus_token_card_info_area input[type=tel]:disabled,
.p-lp-zeus-card #zeus_token_card_info_area input[type=text]:disabled, .p-lp-zeus-card #zeus_token_card_info_area select:disabled, .p-order-zeus-card #zeus_token_card_info_area input[type=tel]:disabled,
.p-order-zeus-card #zeus_token_card_info_area input[type=text]:disabled, .p-order-zeus-card #zeus_token_card_info_area select:disabled, .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[type=tel]:disabled,
.p-mypage-zeus-card-change-info #zeus_token_card_info_area input[type=text]:disabled, .p-mypage-zeus-card-change-info #zeus_token_card_info_area select:disabled, fieldset:disabled .c-textbox, fieldset:disabled .p-lp-zeus-card #zeus_token_card_info_area input[type=tel], .p-lp-zeus-card #zeus_token_card_info_area fieldset:disabled input[type=tel],
fieldset:disabled .p-lp-zeus-card #zeus_token_card_info_area input[type=text],
.p-lp-zeus-card #zeus_token_card_info_area fieldset:disabled input[type=text], fieldset:disabled .p-lp-zeus-card #zeus_token_card_info_area select, .p-lp-zeus-card #zeus_token_card_info_area fieldset:disabled select, fieldset:disabled .p-order-zeus-card #zeus_token_card_info_area input[type=tel], .p-order-zeus-card #zeus_token_card_info_area fieldset:disabled input[type=tel],
fieldset:disabled .p-order-zeus-card #zeus_token_card_info_area input[type=text],
.p-order-zeus-card #zeus_token_card_info_area fieldset:disabled input[type=text], fieldset:disabled .p-order-zeus-card #zeus_token_card_info_area select, .p-order-zeus-card #zeus_token_card_info_area fieldset:disabled select, fieldset:disabled .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[type=tel], .p-mypage-zeus-card-change-info #zeus_token_card_info_area fieldset:disabled input[type=tel],
fieldset:disabled .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[type=text],
.p-mypage-zeus-card-change-info #zeus_token_card_info_area fieldset:disabled input[type=text], fieldset:disabled .p-mypage-zeus-card-change-info #zeus_token_card_info_area select, .p-mypage-zeus-card-change-info #zeus_token_card_info_area fieldset:disabled select {
  background-color: var(--color__gray);
}
.c-textbox--lg {
  height: 36px;
}
.c-textbox[name$=name01], .p-lp-zeus-card #zeus_token_card_info_area input[name$=name01][type=tel],
.p-lp-zeus-card #zeus_token_card_info_area input[name$=name01][type=text], .p-lp-zeus-card #zeus_token_card_info_area select[name$=name01], .p-order-zeus-card #zeus_token_card_info_area input[name$=name01][type=tel],
.p-order-zeus-card #zeus_token_card_info_area input[name$=name01][type=text], .p-order-zeus-card #zeus_token_card_info_area select[name$=name01], .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=name01][type=tel],
.p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=name01][type=text], .p-mypage-zeus-card-change-info #zeus_token_card_info_area select[name$=name01], .c-textbox[name$=name02], .p-lp-zeus-card #zeus_token_card_info_area input[name$=name02][type=tel],
.p-lp-zeus-card #zeus_token_card_info_area input[name$=name02][type=text], .p-lp-zeus-card #zeus_token_card_info_area select[name$=name02], .p-order-zeus-card #zeus_token_card_info_area input[name$=name02][type=tel],
.p-order-zeus-card #zeus_token_card_info_area input[name$=name02][type=text], .p-order-zeus-card #zeus_token_card_info_area select[name$=name02], .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=name02][type=tel],
.p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=name02][type=text], .p-mypage-zeus-card-change-info #zeus_token_card_info_area select[name$=name02], .c-textbox[name$=kana01], .p-lp-zeus-card #zeus_token_card_info_area input[name$=kana01][type=tel],
.p-lp-zeus-card #zeus_token_card_info_area input[name$=kana01][type=text], .p-lp-zeus-card #zeus_token_card_info_area select[name$=kana01], .p-order-zeus-card #zeus_token_card_info_area input[name$=kana01][type=tel],
.p-order-zeus-card #zeus_token_card_info_area input[name$=kana01][type=text], .p-order-zeus-card #zeus_token_card_info_area select[name$=kana01], .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=kana01][type=tel],
.p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=kana01][type=text], .p-mypage-zeus-card-change-info #zeus_token_card_info_area select[name$=kana01], .c-textbox[name$=kana02], .p-lp-zeus-card #zeus_token_card_info_area input[name$=kana02][type=tel],
.p-lp-zeus-card #zeus_token_card_info_area input[name$=kana02][type=text], .p-lp-zeus-card #zeus_token_card_info_area select[name$=kana02], .p-order-zeus-card #zeus_token_card_info_area input[name$=kana02][type=tel],
.p-order-zeus-card #zeus_token_card_info_area input[name$=kana02][type=text], .p-order-zeus-card #zeus_token_card_info_area select[name$=kana02], .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=kana02][type=tel],
.p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=kana02][type=text], .p-mypage-zeus-card-change-info #zeus_token_card_info_area select[name$=kana02] {
  width: 130px;
  max-width: 130px;
}
.c-textbox[name$=zip01], .p-lp-zeus-card #zeus_token_card_info_area input[name$=zip01][type=tel],
.p-lp-zeus-card #zeus_token_card_info_area input[name$=zip01][type=text], .p-lp-zeus-card #zeus_token_card_info_area select[name$=zip01], .p-order-zeus-card #zeus_token_card_info_area input[name$=zip01][type=tel],
.p-order-zeus-card #zeus_token_card_info_area input[name$=zip01][type=text], .p-order-zeus-card #zeus_token_card_info_area select[name$=zip01], .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=zip01][type=tel],
.p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=zip01][type=text], .p-mypage-zeus-card-change-info #zeus_token_card_info_area select[name$=zip01], .c-textbox[name$=zip02], .p-lp-zeus-card #zeus_token_card_info_area input[name$=zip02][type=tel],
.p-lp-zeus-card #zeus_token_card_info_area input[name$=zip02][type=text], .p-lp-zeus-card #zeus_token_card_info_area select[name$=zip02], .p-order-zeus-card #zeus_token_card_info_area input[name$=zip02][type=tel],
.p-order-zeus-card #zeus_token_card_info_area input[name$=zip02][type=text], .p-order-zeus-card #zeus_token_card_info_area select[name$=zip02], .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=zip02][type=tel],
.p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=zip02][type=text], .p-mypage-zeus-card-change-info #zeus_token_card_info_area select[name$=zip02], .c-textbox[name$=tel01], .p-lp-zeus-card #zeus_token_card_info_area input[name$=tel01][type=tel],
.p-lp-zeus-card #zeus_token_card_info_area input[name$=tel01][type=text], .p-lp-zeus-card #zeus_token_card_info_area select[name$=tel01], .p-order-zeus-card #zeus_token_card_info_area input[name$=tel01][type=tel],
.p-order-zeus-card #zeus_token_card_info_area input[name$=tel01][type=text], .p-order-zeus-card #zeus_token_card_info_area select[name$=tel01], .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=tel01][type=tel],
.p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=tel01][type=text], .p-mypage-zeus-card-change-info #zeus_token_card_info_area select[name$=tel01], .c-textbox[name$=tel02], .p-lp-zeus-card #zeus_token_card_info_area input[name$=tel02][type=tel],
.p-lp-zeus-card #zeus_token_card_info_area input[name$=tel02][type=text], .p-lp-zeus-card #zeus_token_card_info_area select[name$=tel02], .p-order-zeus-card #zeus_token_card_info_area input[name$=tel02][type=tel],
.p-order-zeus-card #zeus_token_card_info_area input[name$=tel02][type=text], .p-order-zeus-card #zeus_token_card_info_area select[name$=tel02], .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=tel02][type=tel],
.p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=tel02][type=text], .p-mypage-zeus-card-change-info #zeus_token_card_info_area select[name$=tel02], .c-textbox[name$=tel03], .p-lp-zeus-card #zeus_token_card_info_area input[name$=tel03][type=tel],
.p-lp-zeus-card #zeus_token_card_info_area input[name$=tel03][type=text], .p-lp-zeus-card #zeus_token_card_info_area select[name$=tel03], .p-order-zeus-card #zeus_token_card_info_area input[name$=tel03][type=tel],
.p-order-zeus-card #zeus_token_card_info_area input[name$=tel03][type=text], .p-order-zeus-card #zeus_token_card_info_area select[name$=tel03], .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=tel03][type=tel],
.p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=tel03][type=text], .p-mypage-zeus-card-change-info #zeus_token_card_info_area select[name$=tel03], .c-textbox[name$=fax01], .p-lp-zeus-card #zeus_token_card_info_area input[name$=fax01][type=tel],
.p-lp-zeus-card #zeus_token_card_info_area input[name$=fax01][type=text], .p-lp-zeus-card #zeus_token_card_info_area select[name$=fax01], .p-order-zeus-card #zeus_token_card_info_area input[name$=fax01][type=tel],
.p-order-zeus-card #zeus_token_card_info_area input[name$=fax01][type=text], .p-order-zeus-card #zeus_token_card_info_area select[name$=fax01], .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=fax01][type=tel],
.p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=fax01][type=text], .p-mypage-zeus-card-change-info #zeus_token_card_info_area select[name$=fax01], .c-textbox[name$=fax02], .p-lp-zeus-card #zeus_token_card_info_area input[name$=fax02][type=tel],
.p-lp-zeus-card #zeus_token_card_info_area input[name$=fax02][type=text], .p-lp-zeus-card #zeus_token_card_info_area select[name$=fax02], .p-order-zeus-card #zeus_token_card_info_area input[name$=fax02][type=tel],
.p-order-zeus-card #zeus_token_card_info_area input[name$=fax02][type=text], .p-order-zeus-card #zeus_token_card_info_area select[name$=fax02], .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=fax02][type=tel],
.p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=fax02][type=text], .p-mypage-zeus-card-change-info #zeus_token_card_info_area select[name$=fax02], .c-textbox[name$=fax03], .p-lp-zeus-card #zeus_token_card_info_area input[name$=fax03][type=tel],
.p-lp-zeus-card #zeus_token_card_info_area input[name$=fax03][type=text], .p-lp-zeus-card #zeus_token_card_info_area select[name$=fax03], .p-order-zeus-card #zeus_token_card_info_area input[name$=fax03][type=tel],
.p-order-zeus-card #zeus_token_card_info_area input[name$=fax03][type=text], .p-order-zeus-card #zeus_token_card_info_area select[name$=fax03], .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=fax03][type=tel],
.p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=fax03][type=text], .p-mypage-zeus-card-change-info #zeus_token_card_info_area select[name$=fax03] {
  width: 70px;
  max-width: 70px;
}
.c-textbox[name$=zip], .p-lp-zeus-card #zeus_token_card_info_area input[name$=zip][type=tel],
.p-lp-zeus-card #zeus_token_card_info_area input[name$=zip][type=text], .p-lp-zeus-card #zeus_token_card_info_area select[name$=zip], .p-order-zeus-card #zeus_token_card_info_area input[name$=zip][type=tel],
.p-order-zeus-card #zeus_token_card_info_area input[name$=zip][type=text], .p-order-zeus-card #zeus_token_card_info_area select[name$=zip], .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=zip][type=tel],
.p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=zip][type=text], .p-mypage-zeus-card-change-info #zeus_token_card_info_area select[name$=zip] {
  width: 140px;
  max-width: 140px;
}
.c-textbox[name=tel], .p-lp-zeus-card #zeus_token_card_info_area input[name=tel][type=tel],
.p-lp-zeus-card #zeus_token_card_info_area input[name=tel][type=text], .p-lp-zeus-card #zeus_token_card_info_area select[name=tel], .p-order-zeus-card #zeus_token_card_info_area input[name=tel][type=tel],
.p-order-zeus-card #zeus_token_card_info_area input[name=tel][type=text], .p-order-zeus-card #zeus_token_card_info_area select[name=tel], .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name=tel][type=tel],
.p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name=tel][type=text], .p-mypage-zeus-card-change-info #zeus_token_card_info_area select[name=tel], .c-textbox[name=fax], .p-lp-zeus-card #zeus_token_card_info_area input[name=fax][type=tel],
.p-lp-zeus-card #zeus_token_card_info_area input[name=fax][type=text], .p-lp-zeus-card #zeus_token_card_info_area select[name=fax], .p-order-zeus-card #zeus_token_card_info_area input[name=fax][type=tel],
.p-order-zeus-card #zeus_token_card_info_area input[name=fax][type=text], .p-order-zeus-card #zeus_token_card_info_area select[name=fax], .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name=fax][type=tel],
.p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name=fax][type=text], .p-mypage-zeus-card-change-info #zeus_token_card_info_area select[name=fax] {
  width: 200px;
  max-width: 200px;
}

.c-table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--color__gray);
}
.c-table table th {
  padding: 11px 20px;
  font-size: 14px;
  background: var(--color__gray--light);
  border: 1px solid var(--color__gray);
}
.c-table table td {
  padding: 14px 19px;
  font-size: 14px;
  background: var(--color__white);
  border: 1px solid var(--color__gray);
}
.c-table--sm table th,
.c-table--sm table td {
  padding: 10px;
}
* + .c-table {
  margin-top: 10px;
}
.c-table__align-center {
  text-align: center;
}
.c-table__align-left {
  text-align: left;
}
.c-table__align-right {
  text-align: right;
}
.c-table__action {
  float: right;
}

.c-error-message-section {
  padding: 18px 20px;
  margin-bottom: 20px;
  color: var(--color__red);
  background-color: var(--color__white);
  border: 1px solid var(--color__red);
}
.c-error-message-section:empty {
  display: none;
}
* + .c-error-message-section {
  margin-top: 20px;
}

.c-width-50 {
  width: 50px;
  min-width: 50px;
}

.c-width-60 {
  width: 60px;
  min-width: 60px;
}

.c-width-70 {
  width: 70px;
  min-width: 70px;
}

.c-width-80 {
  width: 80px;
  min-width: 80px;
}

.c-width-90 {
  width: 90px;
  min-width: 90px;
}

.c-width-100 {
  width: 100px;
  min-width: 100px;
}

.c-width-110 {
  width: 110px;
  min-width: 110px;
}

.c-width-120 {
  width: 120px;
  min-width: 120px;
}

.c-width-130 {
  width: 130px;
  min-width: 130px;
}

.c-width-140 {
  width: 140px;
  min-width: 140px;
}

.c-width-150 {
  width: 150px;
  min-width: 150px;
}

.c-width-160 {
  width: 160px;
  min-width: 160px;
}

.c-width-170 {
  width: 170px;
  min-width: 170px;
}

.c-width-180 {
  width: 180px;
  min-width: 180px;
}

.c-width-190 {
  width: 190px;
  min-width: 190px;
}

.c-width-200 {
  width: 200px;
  min-width: 200px;
}

.c-width-210 {
  width: 210px;
  min-width: 210px;
}

.c-width-220 {
  width: 220px;
  min-width: 220px;
}

.c-width-230 {
  width: 230px;
  min-width: 230px;
}

.c-width-240 {
  width: 240px;
  min-width: 240px;
}

.c-width-250 {
  width: 250px;
  min-width: 250px;
}

.c-width-260 {
  width: 260px;
  min-width: 260px;
}

.c-width-270 {
  width: 270px;
  min-width: 270px;
}

.c-width-280 {
  width: 280px;
  min-width: 280px;
}

.c-width-290 {
  width: 290px;
  min-width: 290px;
}

.c-width-300 {
  width: 300px;
  min-width: 300px;
}

.c-width-310 {
  width: 310px;
  min-width: 310px;
}

.c-width-320 {
  width: 320px;
  min-width: 320px;
}

.c-width-330 {
  width: 330px;
  min-width: 330px;
}

.c-width-340 {
  width: 340px;
  min-width: 340px;
}

.c-width-350 {
  width: 350px;
  min-width: 350px;
}

.c-width-360 {
  width: 360px;
  min-width: 360px;
}

.c-width-370 {
  width: 370px;
  min-width: 370px;
}

.c-width-380 {
  width: 380px;
  min-width: 380px;
}

.c-width-390 {
  width: 390px;
  min-width: 390px;
}

.c-width-400 {
  width: 400px;
  min-width: 400px;
}

.c-width-10-percent {
  width: 10%;
  min-width: 10%;
}

.c-width-20-percent {
  width: 20%;
  min-width: 20%;
}

.c-width-30-percent {
  width: 30%;
  min-width: 30%;
}

.c-width-40-percent {
  width: 40%;
  min-width: 40%;
}

.c-width-50-percent {
  width: 50%;
  min-width: 50%;
}

.c-width-60-percent {
  width: 60%;
  min-width: 60%;
}

.c-width-70-percent {
  width: 70%;
  min-width: 70%;
}

.c-width-80-percent {
  width: 80%;
  min-width: 80%;
}

.c-width-90-percent {
  width: 90%;
  min-width: 90%;
}

.c-width-100-percent {
  width: 100%;
  min-width: 100%;
}

.c-amazon-pay {
  padding: 30px 40px;
  background-color: var(--color__white);
  border: 4px solid var(--color__gray);
}
.c-amazon-pay__header {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
.c-amazon-pay__paragraph {
  margin-top: -6px;
  margin-bottom: 14px;
  line-height: 26px;
}
.c-amazon-pay__paragraph:last-child {
  margin-bottom: 0;
}
.c-amazon-pay__body {
  display: flex;
  justify-content: space-between;
}
.c-amazon-pay__body #AmazonPayButtonV2 {
  width: 312px;
}
.c-amazon-pay__consent {
  display: flex;
  flex-flow: column;
  gap: 10px;
  margin-bottom: 20px;
}
.c-amazon-pay__consent:last-child {
  margin-bottom: 0;
}

.c-hr {
  height: 1px;
  margin: 20px 0;
  background: var(--color__gray);
  border: 0;
}

.c-radio {
  display: inline-block;
}
.c-radio input[type=radio] {
  display: none;
}
.c-radio label {
  position: relative;
  display: inline-block;
  padding-left: 24px;
  line-height: 20px;
  cursor: pointer;
}
.c-radio label::before {
  position: absolute;
  top: calc(50% - 9px);
  left: 0;
  display: block;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--color__white);
  border: 1px solid var(--color__chacoal);
  border-radius: 50%;
}
.c-radio label::after {
  position: absolute;
  top: calc(50% - 6px);
  left: 3px;
  display: none;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--color__chacoal);
  border-radius: 50%;
}
.c-radio label:empty {
  padding-left: 20px;
}
.c-radio label:empty::before {
  top: calc(50% - 13px);
}
.c-radio label:empty::after {
  top: calc(50% - 10px);
}
.c-radio input[type=radio]:checked + label::after {
  display: block;
}
.c-radio--error label::before {
  background: var(--color__pink);
}

.c-radio-list-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.c-radio-list-group__item {
  width: calc(50% - 10px);
  border: 1px solid var(--color__gray);
  border-radius: 6px;
}
.c-radio-list-group__item input[type=radio] {
  display: none;
}
.c-radio-list-group__item label {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 14px 14px 14px 46px;
  font-size: 16px;
  color: var(--color__gray--dark);
  background-color: var(--color__gray--lighter);
  border-radius: 6px;
}
.c-radio-list-group__item input[type=radio]:checked + label {
  color: var(--color__chacoal);
  background-color: transparent;
}
.c-radio-list-group__item input[type=radio]:not(:disabled) + label:not([for=""])::before {
  position: absolute;
  top: calc(50% - 9px);
  left: 14px;
  display: block;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--color__white);
  border: 1px solid var(--color__chacoal);
  border-radius: 50%;
}
.c-radio-list-group__item label::after {
  position: absolute;
  top: calc(50% - 6px);
  left: 17px;
  display: none;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--color__chacoal);
  border-radius: 50%;
}
.c-radio-list-group__item input[type=radio]:checked + label::after {
  display: block;
}
.c-radio-list-group__item--error label {
  background-color: var(--color__pink);
  border: 1px solid var(--color__red);
}
.c-radio-list-group__item--highlight label {
  background-color: var(--color__blue--light);
}
.c-radio-list-group__title {
  margin-bottom: 10px;
}
* + .c-radio-list-group__contents {
  margin-top: 10px;
}
.c-radio-list-group--column .c-radio-list-group__item {
  width: 100%;
}

.c-form-label-required, .p-lp-zeus-card #zeus_new_card_area label::after,
.p-lp-zeus-card #zeus_registerd_card_area label::after, .p-order-zeus-card #zeus_new_card_area label::after,
.p-order-zeus-card #zeus_registerd_card_area label::after, .p-mypage-zeus-card-change-info #zeus_new_card_area label::after, .c-form-label-optional {
  float: right;
}
.c-form-group--row {
  display: flex;
  align-items: center;
}
.c-form-group--row label {
  margin-right: 10px;
}
.c-form-group--row .c-radio label {
  margin-right: 20px;
}
.c-form-group--column {
  display: flex;
  flex-flow: column;
}
.c-form-group--column label {
  margin-bottom: 6px;
}

.c-form-groups--row {
  display: flex;
  gap: 20px;
}
.c-form-groups--column .c-form-group + .c-form-group {
  margin-top: 10px;
}

.c-form-attention {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  font-weight: 300;
  color: var(--color__gray--dark);
}
.c-form-attention--inline {
  display: inline-block;
  margin-top: 0;
  margin-left: 10px;
}
.c-form-attention--highlight {
  padding: 2px 10px;
  background-color: var(--color__yellow--light);
}
.c-form-attention--error {
  padding: 2px 10px;
  color: var(--color__white);
  background-color: var(--color__red);
}

.c-form-symbol {
  display: inline-block;
  margin-right: 5px;
}
* + .c-form-symbol {
  margin-left: 5px;
}

.c-form-label {
  white-space: nowrap;
}
.c-form-label--bold {
  font-weight: bold;
}

@media print, screen and (max-width: 767px) {
    .c-checkbox label {
        font-size: 12px!important;
        width: fit-content;
        font-weight: bold!important;
        margin-top: 4%!important;
    }
}

@media print, screen and (min-width: 768px) {
    .c-checkbox label {
    font-size: 16px;
    font-weight: bold;
    margin: 1% auto;
    }
}

.c-textarea {
  width: 100%;
  max-width: 100%;
  line-height: 1.2;
  color: var(--color__chacoal);
  background-color: var(--color__gray--lighter);
  border: 1px solid var(--color__gray);
  border-radius: 6px;
  padding: 11px 10px;
}
.c-textarea--error {
  background-color: var(--color__pink);
  border: 1px solid var(--color__red);
}

.c-secure-textbox {
  position: relative;
  width: fit-content;
}
.c-secure-textbox::after {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 11px;
  content: "";
  background: url("/assets/svg/lock.svg") center center no-repeat;
}

.c-password-textbox {
  position: relative;
  width: 200px;
}
.c-password-textbox input[type=password],
.c-password-textbox input[type=text] {
  width: 200px;
}
.c-password-textbox--full {
  width: 100%;
}
.c-password-textbox--full input[type=password],
.c-password-textbox--full input[type=text] {
  width: 100%;
}
.c-password-textbox__icon {
  position: absolute;
  top: 1px;
  right: 0;
  width: 30px;
  height: 100%;
  cursor: pointer;
  content: "";
  background: center center no-repeat;
  background-image: url("/assets/svg/eye_close");
  background-size: 1em;
}
.c-password-textbox--visible .c-password-textbox__icon {
  top: 0;
  background-image: url("/assets/svg/eye_open");
}

.c-confirm-email {
  margin-top: 0;
}
.c-confirm-email__display {
  position: relative;
  width: 100%;
  padding: 18px 10px;
  margin-top: 40px;
  font-weight: 600;
  text-align: center;
  pointer-events: none;
  background-color: var(--color__blue--light);
  border: none;
  outline: none;
  animation: fadeIn 0.2s linear;
}
.c-confirm-email__display::before {
  position: absolute;
  top: -28px;
  left: 0;
  display: block;
  width: 100%;
  font-size: 12px;
  text-align: center;
  content: "メールアドレスにお間違いはありませんか？";
}
input.c-confirm-email__display {
  height: 50px;
}

.c-confirm-email__display:not(input) {
  min-height: 50px;
  word-break: break-all;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.c-date-form {
  display: inline-block;
  padding: 4px 10px;
  color: var(--color__gray--dark);
  background-color: var(--color__gray--lighter);
  border: 1px solid var(--color__gray);
  border-radius: 6px;
}
.c-date-form__input {
  width: 30px;
  height: 22px;
  padding: 11px 4px;
  background: none;
  border-color: transparent;
}
.c-date-form__input:focus {
  outline: none;
}
.c-date-form__input--lg {
  width: 50px;
}
.c-date-form__input--error {
  background-color: var(--color__pink);
  border-bottom: 1px solid var(--color__red);
}
.c-date-form--error {
  background-color: var(--color__pink);
  border: 1px solid var(--color__red);
}

.efo-autocomplete-email-address__candidates:not(:empty) {
  position: absolute;
  z-index: 10;
  max-width: 100%;
  color: #fff;
  background-color: #333;
}
.efo-autocomplete-email-address__candidates .efo-autocomplete-email-address__candidates-header {
  padding: 0px 10px;
  font-size: 90%;
  line-height: 1.5;
}
.efo-autocomplete-email-address__candidates .efo-autocomplete-email-address__candidate {
  padding: 0px 10px;
  line-height: 1.5;
  word-break: break-all;
  cursor: pointer;
}
.efo-autocomplete-email-address__candidates .efo-autocomplete-email-address__candidate:hover, .efo-autocomplete-email-address__candidates .efo-autocomplete-email-address__candidate--active {
  background-color: #666;
}
.efo-autocomplete-email-address__candidates .efo-autocomplete-email-address__candidate span {
  word-break: keep-all;
  white-space: nowrap;
}

.c-heading, .p-product-detail .product__section-title {
  font-weight: 600;
  line-height: 1.1;
}
.c-heading--underline {
  padding-bottom: 10px;
  border-bottom: solid 1px var(--color__chacoal);
}
.c-heading--1 {
  margin-bottom: 60px;
  font-size: 28px;
}
.c-heading--1.c-heading--underline {
  padding-bottom: 17px;
  border-width: 2px;
}
.c-heading--2 {
  margin-bottom: 30px;
  font-size: 22px;
}
.c-heading--3, .p-product-detail .product__section-title {
  margin-bottom: 20px;
  font-size: 18px;
}

.c-paragraph {
  margin-bottom: 60px;
  line-height: 1.7142857143;
  word-break: break-all;
}
.c-paragraph--align-center {
  text-align: center;
}
* + .c-paragraph {
  margin-top: 20px;
}
.c-paragraph--sm {
  margin-bottom: 20px;
}

.c-product-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, 219px);
  row-gap: 28px;
  column-gap: 16px;
  justify-content: center;
}
.c-product-list .c-product-panel {
  background: var(--color__white);
  border-radius: 6px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  width: 219px;
  max-width: 219px;
  height: auto;
  overflow: hidden;
}
.c-product-list .c-product-panel:hover .c-product-panel__img {
  opacity: 0.6;
}
.c-product-list .c-product-panel__img {
  position: relative;
  min-height: 219px;
}
.c-product-list .c-product-panel__img img {
  width: 219px;
  max-width: 219px;
}
.c-product-list .c-product-panel__soldout {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 600;
  color: var(--color__white);
  background-color: rgba(23, 23, 23, 0.6);
}
.c-product-list .c-product-panel__timesale {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  color: var(--color__white);
  text-align: center;
  background-color: var(--color__red);
}
.c-product-list .c-product-panel__timesale > :not(.count_down_box),
.c-product-list .c-product-panel__timesale .hasCountdown {
  padding: 8px;
}
.c-product-list .c-product-panel__timesale small {
  font-size: 10px;
}
.c-product-list .c-product-panel__timesale em {
  font-size: 13px;
  font-style: normal;
}
.c-product-list .c-product-panel__rank {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: var(--color__white);
  text-align: center;
  background: var(--color__gray--dark);
}
.c-product-list .c-product-panel__rank--1 {
  background: #d1bb5e;
}
.c-product-list .c-product-panel__rank--2 {
  background: #a8a8a8;
}
.c-product-list .c-product-panel__rank--3 {
  background: #bf8656;
}
.c-product-list .c-product-panel__summary {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}
.c-product-list .c-product-panel__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: bold;
}
.c-product-list .c-product-panel__description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
  margin-bottom: 14px;
  font-size: 13px;
}
.c-product-list .c-product-panel__price small {
  font-size: 10px;
}
.c-product-list .c-product-panel__price-value {
  display: inline-flex;
  align-items: baseline;
  font-size: 15px;
  font-weight: bold;
  color: var(--color__green--dark);
}
.c-product-list .c-product-panel__status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.c-product-list .c-product-panel__restock-notification {
  margin-top: auto;
}
.c-product-list .c-product-panel__restock-notification-link {
  position: relative;
  padding-left: 12px;
  margin-top: 26px;
  font-size: 12px;
  font-weight: 600;
}
.c-product-list .c-product-panel__restock-notification-link:before {
  position: absolute;
  top: -1px;
  left: 0;
  display: block;
  content: ">";
}
.c-product-list .c-product-panel__favorite {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  height: 50px;
  margin-top: auto;
}
.c-product-list .c-product-panel__favorite-icon {
  width: 36px;
  height: 36px;
  background-color: var(--color__gray--light);
  background-image: url("/assets/svg/favorite_off.svg");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  transform: translate(4px, 4px);
}
.c-product-list .c-product-panel__favorite-icon--on {
  background-color: var(--color__gray--dark);
  background-image: url("/assets/svg/favorite_on.svg");
}

.c-product-timesale > :not(.count_down_box),
.c-product-timesale .hasCountdown {
  padding: 8px 10px;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color__red);
  text-align: center;
  background-color: var(--color__pink);
  border: solid 2px var(--color__red);
}
.c-product-timesale > div:empty {
  display: none;
}
.c-product-timesale small {
  font-size: 10px;
}

.c-ui-dialog-modal.ui-dialog {
  padding: 0;
  font-size: 14px;
  border: none;
  border-radius: 6px;
}
.c-ui-dialog-modal.ui-dialog.ui-widget.ui-widget-content {
  background-color: var(--color__white);
  border: none;
  border-radius: 6px;
}
.c-ui-dialog-modal.ui-dialog > .ui-widget-content {
  background-color: transparent;
  border: none;
}
.c-ui-dialog-modal.ui-dialog .ui-widget-header {
  padding: 10px;
  color: var(--color__white);
  text-align: center;
  background: none;
  background-color: var(--color__chacoal);
  border: none;
  border-radius: 6px 6px 0 0;
}
.c-ui-dialog-modal.ui-dialog .ui-widget-header .ui-dialog-title {
  width: 100%;
  margin: auto;
  font-size: 14px;
  font-weight: bold;
}
.c-ui-dialog-modal.ui-dialog .ui-widget-header .ui-icon {
  width: 12px;
  height: 12px;
  background-color: var(--color__white);
  background-image: none;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-image: url("/assets/svg/cross.svg");
  mask-image: url("/assets/svg/cross.svg");
}
.c-ui-dialog-modal.ui-dialog .ui-widget-header .ui-dialog-titlebar-close,
.c-ui-dialog-modal.ui-dialog .ui-widget-header .ui-state-hover {
  top: calc(50% - 7px);
  padding: 0;
  margin: 0;
  background: none;
  border: none;
}
.c-ui-dialog-modal.ui-dialog .ui-dialog-content.ui-widget-content {
  padding: 0;
}
.c-ui-dialog-modal.ui-dialog .ui-dialog-content .c-hr {
  margin: 0;
}
.c-ui-dialog-modal.ui-dialog .ui-dialog-content .c-link {
  display: block;
  margin-top: 20px;
  font-size: 12px;
  color: var(--color__blue);
  text-align: right;
}
.c-ui-dialog-modal.ui-dialog .ui-dialog-content__subtitle {
  padding: 10px;
  font-weight: bold;
  text-align: center;
  background-color: var(--color__gray);
}
.c-ui-dialog-modal.ui-dialog .ui-dialog-content__content {
  padding: 20px;
}
.c-ui-dialog-modal.ui-dialog .ui-dialog-content__message {
  padding-top: 20px;
  font-size: 12px;
  text-align: center;
}
.c-ui-dialog-modal.ui-dialog .ui-dialog-content table {
  width: 100%;
}
.c-ui-dialog-modal.ui-dialog .ui-dialog-content table th {
  font-weight: normal;
  text-align: left;
}
.c-ui-dialog-modal.ui-dialog .ui-dialog-content table td {
  text-align: right;
}
.c-ui-dialog-modal.ui-dialog .ui-dialog-buttonpane {
  padding: 20px;
  margin-top: 0;
  border: none;
}
.c-ui-dialog-modal.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  display: flex;
  gap: 20px;
  justify-content: center;
  float: none;
}
.c-ui-dialog-modal.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button {
  min-width: 100px;
  margin: 0;
  background: initial;
}
.c-ui-dialog-modal.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button .ui-button-text {
  padding: 0;
}
.c-ui-dialog-modal + .ui-widget-overlay {
  background: none;
  background-color: var(--color__black);
  opacity: 0.7;
}

.c-modal__content {
  position: fixed;
  inset: 0;
  z-index: 10001;
  width: 400px;
  height: fit-content;
  padding: 20px;
  margin: auto;
  background-color: #fff;
  border-radius: 6px;
}
.c-modal__message {
  text-align: center;
  white-space: pre-wrap;
}
.c-modal__footer {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}
.c-modal__footer .c-button {
  width: 90px;
}
.c-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background-color: var(--color__black);
  opacity: 0.7;
}

.l-header {
  width: 100%;
  height: 78px;
  border-bottom: 1px solid var(--color__gray);
}
.l-header__inner {
  display: flex;
  gap: 10px;
  align-items: center;
  width: var(--width-base);
  height: 100%;
  margin: 0 auto;
}
.l-header__logo {
  width: 204px;
  font-size: 26px;
  font-weight: bold;
}
.l-header__logo a {
  display: block;
}
.l-header__logo a img {
  width: auto;
  height: 70px;
  object-fit: contain;
}
.l-header__search .global-search-form {
  display: flex;
  width: 540px;
  height: 40px;
  padding: 2px;
  background: #efefef;
  border-radius: 20px;
}
.l-header__search .global-search-form__select {
  display: flex;
  align-items: center;
  width: 120px;
  height: 100%;
  padding-left: 12px;
  background: var(--color__white);
  border-radius: 20px 0 0 20px;
}
.l-header__search .global-search-form__select select {
  width: 100%;
  height: 100%;
  padding-right: 24px;
  font-size: 12px;
  text-overflow: ellipsis;
  cursor: pointer;
  background-color: transparent;
  background-image: url(data:image/svg\+xml;base64,PHN2ZyBmaWxsPSdibGFjaycgaGVpZ2h0PScyNCcgdmlld0JveD0nMCAwIDI0IDI0JyB3aWR0aD0nMjQnIHhtbG5zPSdodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2Zyc\+PHBhdGggZD0nTTcgMTBsNSA1IDUtNXonLz48cGF0aCBkPSdNMCAwaDI0djI0SDB6JyBmaWxsPSdub25lJy8\+PC9zdmc\+);
  background-repeat: no-repeat;
  background-position-x: calc(100% - 8px);
  background-position-y: center;
  border: none;
  -webkit-appearance: none;
  appearance: none;
}
.l-header__search .global-search-form__input {
  display: flex;
  align-items: center;
  width: calc(100% - 120px);
  height: 100%;
}
.l-header__search .global-search-form__input button {
  margin: 0 8px 0 16px;
  cursor: pointer;
  background: transparent;
  border: none;
}
.l-header__search .global-search-form__input input {
  width: 100%;
  height: 36px;
  padding: 18px 0;
  padding-right: 16px;
  font-size: 12px;
  background: transparent;
  border: none;
}
.l-header__search .global-search-form__input input::placeholder {
  color: #808080;
}
.l-header__actions {
  margin-left: auto;
}
.l-header__actions .global-user-nav {
  display: flex;
}
.l-header__actions .global-user-nav__item {
  position: relative;
  margin-right: 24px;
  font-size: 14px;
  font-weight: bold;
}
.l-header__actions .global-user-nav__item:last-of-type {
  margin-right: 0;
}
.l-header__actions .global-user-nav__item a,
.l-header__actions .global-user-nav__item button {
  padding: 0;
  color: var(--color__black);
  text-decoration: none;
  cursor: pointer;
  background: none;
  border: 0;
}
.l-header__actions .global-user-nav__badge {
  position: absolute;
  top: -5px;
  right: -5px;
  z-index: 1;
  display: grid;
  place-content: center;
  width: 12px;
  height: 12px;
  font-size: 8px;
  font-weight: normal;
  color: var(--color__white);
  background: var(--color__red);
  border-radius: 50%;
}
.l-header__actions .global-user-nav__badge:empty {
  display: none;
}

.l-footer {
  width: 100%;
  height: 160px;
}
.l-footer__pagetop {
  position: fixed;
  right: 40px;
  bottom: 100px;
  z-index: 1;
}
.l-footer__pagetop a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: #ffffff;
  background: #000000;
  border-radius: 50%;
}
.l-footer__pagetop a:hover {
  opacity: 0.6;
}
.l-footer__pagetop a svg {
  fill: currentColor;
  transform: rotate(-90deg);
}
.l-footer__nav {
  width: var(--width-base);
  padding: 53px 0;
  margin: 0 auto;
}
.l-footer__nav ul {
  display: flex;
}
.l-footer__nav ul li {
  display: block;
  padding-right: 16px;
  padding-left: 16px;
  border-right: 1px solid var(--color__gray);
}
.l-footer__nav ul li:first-of-type {
  padding-left: 0;
}
.l-footer__nav ul li:last-of-type {
  padding-right: 0;
  border: 0;
}
.l-footer__copy {
  display: flex;
  align-items: center;
  height: 52px;
  border-top: 1px solid var(--color__gray);
}
.l-footer__copy span {
  display: block;
  width: var(--width-base);
  margin: 0 auto;
  font-size: 12px;
}

.l-contents {
  background: var(--color__gray--lighter);
}
.l-contents--filled {
  min-height: 100vh;
}
.l-contents__frame {
  /*width: var(--width-base);*/
  padding: 30px 0;
  margin: 0 auto;
}
.l-contents .columns {
  display: flex;
  gap: 50px;
}
.l-contents .columns .center-column {
  flex: 1;
  min-width: 0;
}
.l-contents .columns .center-column .c-widget {
  margin-bottom: 60px;
}
.l-contents .columns .center-column .c-widget:last-of-type {
  margin-bottom: 0;
}
.l-contents .columns .center-column .c-widget__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.l-contents .columns .center-column .c-widget__title {
  font-size: 22px;
  font-weight: bold;
}
.l-contents .columns .center-column .c-widget__more a {
  font-weight: bold;
}
.l-contents .columns .center-column .c-widget__content {
  position: relative;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget {
  display: flex;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel {
  background: var(--color__white);
  border-radius: 6px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  width: 200px;
  max-width: 200px;
  height: 350px;
  overflow: hidden;
  margin: 8px;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel:hover .c-product-panel__img,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel:hover .c-product-panel__img {
  opacity: 0.6;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__img,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__img {
  position: relative;
  min-height: 200px;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__img img,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__img img {
  width: 200px;
  max-width: 200px;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__soldout,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__soldout {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 600;
  color: var(--color__white);
  background-color: rgba(23, 23, 23, 0.6);
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__timesale,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__timesale {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  color: var(--color__white);
  text-align: center;
  background-color: var(--color__red);
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__timesale > :not(.count_down_box),
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__timesale .hasCountdown,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__timesale > :not(.count_down_box),
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__timesale .hasCountdown {
  padding: 8px;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__timesale small,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__timesale small {
  font-size: 10px;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__timesale em,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__timesale em {
  font-size: 13px;
  font-style: normal;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__rank,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__rank {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: var(--color__white);
  text-align: center;
  background: var(--color__gray--dark);
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__rank--1,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__rank--1 {
  background: #d1bb5e;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__rank--2,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__rank--2 {
  background: #a8a8a8;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__rank--3,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__rank--3 {
  background: #bf8656;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__summary,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__summary {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__name,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: bold;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__description,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
  margin-bottom: 14px;
  font-size: 13px;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__price small,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__price small {
  font-size: 10px;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__price-value,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__price-value {
  display: inline-flex;
  align-items: baseline;
  font-size: 15px;
  font-weight: bold;
  color: var(--color__green--dark);
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__status,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__restock-notification,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__restock-notification {
  margin-top: auto;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__restock-notification-link,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__restock-notification-link {
  position: relative;
  padding-left: 12px;
  margin-top: 26px;
  font-size: 12px;
  font-weight: 600;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__restock-notification-link:before,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__restock-notification-link:before {
  position: absolute;
  top: -1px;
  left: 0;
  display: block;
  content: ">";
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__favorite,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__favorite {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  height: 50px;
  margin-top: auto;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__favorite-icon,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__favorite-icon {
  width: 36px;
  height: 36px;
  background-color: var(--color__gray--light);
  background-image: url("/assets/svg/favorite_off.svg");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  transform: translate(4px, 4px);
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .c-product-panel__favorite-icon--on,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .c-product-panel__favorite-icon--on {
  background-color: var(--color__gray--dark);
  background-image: url("/assets/svg/favorite_on.svg");
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .slick-arrow,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .slick-arrow {
  position: absolute;
  top: 45%;
  z-index: 1;
  width: 30px;
  height: 30px;
  padding: 0;
  font-size: 0;
  color: transparent;
  cursor: pointer;
  background: #ffffff;
  border: 0;
  border-radius: 50%;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .slick-arrow::before,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .slick-arrow::before {
  display: block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  content: "";
  background: url("/assets/svg/arrow.svg") center center no-repeat;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .slick-prev,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .slick-prev {
  left: -15px;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .slick-prev::before,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .slick-prev::before {
  transform: rotate(180deg);
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .slick-next,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .slick-next {
  right: -15px;
}
.l-contents .columns .center-column .c-widget__content .ranking-widget .slick-disabled,
.l-contents .columns .center-column .c-widget__content .recommend-product-widget .slick-disabled {
  opacity: 0.5;
}
.l-contents .columns .center-column .c-widget__content .category-widget {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.l-contents .columns .center-column .c-widget__content .category-widget__item {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: calc((100% - 48px) / 4);
  min-width: 200px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}
.l-contents .columns .center-column .c-widget__content .category-widget__item:hover {
  opacity: 0.6;
}
.l-contents .columns .center-column .c-widget__content .category-widget__img {
  width: 60px;
  min-width: 60px;
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
}
.l-contents .columns .center-column .c-widget__content .category-widget__img img {
  width: 100%;
  border-radius: inherit;
}
.l-contents .columns .center-column .c-widget__content .category-widget__name {
  width: 100%;
  padding: 12px;
  overflow: hidden;
  font-size: 13px;
  font-weight: bold;
}
.l-contents .columns .center-column .c-widget__content .news-widget__item {
  display: flex;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.l-contents .columns .center-column .c-widget__content .news-widget__date {
  margin-right: 40px;
  margin-bottom: 6px;
  color: var(--color__gray--dark);
}
.l-contents .columns .center-column .c-widget__content .news-widget__content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.l-contents .columns .center-column .c-widget__content .news-widget__headline {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  font-weight: bold;
  word-break: break-all;
  cursor: pointer;
}
.l-contents .columns .center-column .c-widget__content .news-widget__headline span {
  display: block;
}
.l-contents .columns .center-column .c-widget__content .news-widget__headline i {
  display: block;
  width: 15px;
  min-width: 15px;
  height: 15px;
  margin-left: auto;
  color: transparent;
  user-select: none;
  background: url("/assets/svg/plus.svg") center center no-repeat;
}
.l-contents .columns .center-column .c-widget__content .news-widget__headline i.is-open {
  background: url("/assets/svg/minus.svg") center center no-repeat;
}
.l-contents .columns .center-column .c-widget__content .news-widget__detail {
  display: none;
  margin-bottom: 30px;
  line-height: 24px;
  word-break: break-all;
}
.l-contents .columns .center-column .c-widget__content .calendar-widget {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.l-contents .columns .center-column .c-widget__content .calendar-widget__item {
  width: calc((100% - 52px) / 3);
  padding: 20px;
  background: #ffffff;
  border: 1px solid #efefef;
  border-radius: 6px;
}
.l-contents .columns .center-column .c-widget__content .calendar-widget table {
  width: 100%;
  font-size: 12px;
}
.l-contents .columns .center-column .c-widget__content .calendar-widget table td {
  text-align: center;
}
.l-contents .columns .center-column .c-widget__content .calendar-widget__off {
  color: var(--color__red);
}
.l-contents .columns .center-column .c-widget__content .calendar-widget__year {
  display: block;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: bold;
  color: var(--color__gray--dark);
}
.l-contents .columns .center-column .c-widget__content .calendar-widget__month {
  display: block;
  padding-bottom: 12px;
  margin-bottom: 28px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 2px solid var(--color__chacoal);
}
.l-contents .columns .center-column .c-widget__content .calendar-widget tbody td {
  font-weight: 600;
}
.l-contents .columns .left-column,
.l-contents .columns .right-column {
  width: var(--width-side-widget);
  min-width: var(--width-side-widget);
}
.l-contents .columns .left-column .c-widget,
.l-contents .columns .right-column .c-widget {
  margin-bottom: 30px;
}
.l-contents .columns .left-column .c-widget:last-of-type,
.l-contents .columns .right-column .c-widget:last-of-type {
  margin-bottom: 0;
}
.l-contents .columns .left-column .c-widget__head,
.l-contents .columns .right-column .c-widget__head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 24px;
}
.l-contents .columns .left-column .c-widget__title,
.l-contents .columns .right-column .c-widget__title {
  font-size: 22px;
  font-weight: bold;
}
.l-contents .columns .left-column .c-widget__more a,
.l-contents .columns .right-column .c-widget__more a {
  font-weight: bold;
}
.l-contents .columns .left-column .c-widget__content,
.l-contents .columns .right-column .c-widget__content {
  position: relative;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget,
.l-contents .columns .right-column .c-widget__content .ranking-widget,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget {
  display: flex;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel {
  background: var(--color__white);
  border-radius: 6px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  width: 200px;
  max-width: 200px;
  height: 350px;
  overflow: hidden;
  margin: 8px;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel:hover .c-product-panel__img,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel:hover .c-product-panel__img,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel:hover .c-product-panel__img,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel:hover .c-product-panel__img {
  opacity: 0.6;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__img,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__img,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__img,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__img {
  position: relative;
  min-height: 200px;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__img img,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__img img,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__img img,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__img img {
  width: 200px;
  max-width: 200px;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__soldout,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__soldout,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__soldout,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__soldout {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-weight: 600;
  color: var(--color__white);
  background-color: rgba(23, 23, 23, 0.6);
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__timesale,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__timesale,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__timesale,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__timesale {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  font-size: 12px;
  font-weight: 600;
  color: var(--color__white);
  text-align: center;
  background-color: var(--color__red);
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__timesale > :not(.count_down_box),
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__timesale .hasCountdown,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__timesale > :not(.count_down_box),
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__timesale .hasCountdown,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__timesale > :not(.count_down_box),
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__timesale .hasCountdown,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__timesale > :not(.count_down_box),
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__timesale .hasCountdown {
  padding: 8px;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__timesale small,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__timesale small,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__timesale small,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__timesale small {
  font-size: 10px;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__timesale em,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__timesale em,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__timesale em,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__timesale em {
  font-size: 13px;
  font-style: normal;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__rank,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__rank,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__rank,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__rank {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: var(--color__white);
  text-align: center;
  background: var(--color__gray--dark);
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__rank--1,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__rank--1,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__rank--1,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__rank--1 {
  background: #d1bb5e;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__rank--2,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__rank--2,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__rank--2,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__rank--2 {
  background: #a8a8a8;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__rank--3,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__rank--3,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__rank--3,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__rank--3 {
  background: #bf8656;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__summary,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__summary,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__summary,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__summary {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 14px;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__name,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__name,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__name,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__name {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: bold;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__description,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__description,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__description,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__description {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-all;
  margin-bottom: 14px;
  font-size: 13px;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__price small,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__price small,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__price small,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__price small {
  font-size: 10px;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__price-value,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__price-value,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__price-value,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__price-value {
  display: inline-flex;
  align-items: baseline;
  font-size: 15px;
  font-weight: bold;
  color: var(--color__green--dark);
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__status,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__status,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__status,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__status {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 20px;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__restock-notification,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__restock-notification,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__restock-notification,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__restock-notification {
  margin-top: auto;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__restock-notification-link,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__restock-notification-link,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__restock-notification-link,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__restock-notification-link {
  position: relative;
  padding-left: 12px;
  margin-top: 26px;
  font-size: 12px;
  font-weight: 600;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__restock-notification-link:before,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__restock-notification-link:before,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__restock-notification-link:before,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__restock-notification-link:before {
  position: absolute;
  top: -1px;
  left: 0;
  display: block;
  content: ">";
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__favorite,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__favorite,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__favorite,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__favorite {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  height: 50px;
  margin-top: auto;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__favorite-icon,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__favorite-icon,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__favorite-icon,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__favorite-icon {
  width: 36px;
  height: 36px;
  background-color: var(--color__gray--light);
  background-image: url("/assets/svg/favorite_off.svg");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  transform: translate(4px, 4px);
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .c-product-panel__favorite-icon--on,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .c-product-panel__favorite-icon--on,
.l-contents .columns .right-column .c-widget__content .ranking-widget .c-product-panel__favorite-icon--on,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .c-product-panel__favorite-icon--on {
  background-color: var(--color__gray--dark);
  background-image: url("/assets/svg/favorite_on.svg");
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .slick-arrow,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .slick-arrow,
.l-contents .columns .right-column .c-widget__content .ranking-widget .slick-arrow,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .slick-arrow {
  position: absolute;
  top: 45%;
  z-index: 1;
  width: 30px;
  height: 30px;
  padding: 0;
  font-size: 0;
  color: transparent;
  cursor: pointer;
  background: #ffffff;
  border: 0;
  border-radius: 50%;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .slick-arrow::before,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .slick-arrow::before,
.l-contents .columns .right-column .c-widget__content .ranking-widget .slick-arrow::before,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .slick-arrow::before {
  display: block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  content: "";
  background: url("/assets/svg/arrow.svg") center center no-repeat;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .slick-prev,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .slick-prev,
.l-contents .columns .right-column .c-widget__content .ranking-widget .slick-prev,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .slick-prev {
  left: -15px;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .slick-prev::before,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .slick-prev::before,
.l-contents .columns .right-column .c-widget__content .ranking-widget .slick-prev::before,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .slick-prev::before {
  transform: rotate(180deg);
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .slick-next,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .slick-next,
.l-contents .columns .right-column .c-widget__content .ranking-widget .slick-next,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .slick-next {
  right: -15px;
}
.l-contents .columns .left-column .c-widget__content .ranking-widget .slick-disabled,
.l-contents .columns .left-column .c-widget__content .recommend-product-widget .slick-disabled,
.l-contents .columns .right-column .c-widget__content .ranking-widget .slick-disabled,
.l-contents .columns .right-column .c-widget__content .recommend-product-widget .slick-disabled {
  opacity: 0.5;
}
.l-contents .columns .left-column .c-widget__content .category-widget,
.l-contents .columns .right-column .c-widget__content .category-widget {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  display: block;
}
.l-contents .columns .left-column .c-widget__content .category-widget__item,
.l-contents .columns .right-column .c-widget__content .category-widget__item {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  width: calc((100% - 48px) / 4);
  min-width: 200px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
}
.l-contents .columns .left-column .c-widget__content .category-widget__item:hover,
.l-contents .columns .right-column .c-widget__content .category-widget__item:hover {
  opacity: 0.6;
}
.l-contents .columns .left-column .c-widget__content .category-widget__img,
.l-contents .columns .right-column .c-widget__content .category-widget__img {
  width: 60px;
  min-width: 60px;
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
}
.l-contents .columns .left-column .c-widget__content .category-widget__img img,
.l-contents .columns .right-column .c-widget__content .category-widget__img img {
  width: 100%;
  border-radius: inherit;
}
.l-contents .columns .left-column .c-widget__content .category-widget__name,
.l-contents .columns .right-column .c-widget__content .category-widget__name {
  width: 100%;
  padding: 12px;
  overflow: hidden;
  font-size: 13px;
  font-weight: bold;
}
.l-contents .columns .left-column .c-widget__content .category-widget__item,
.l-contents .columns .right-column .c-widget__content .category-widget__item {
  width: 100%;
  min-width: auto;
  padding: 8px 0;
  background: none;
  border: 0;
  border-bottom: 1px solid #dfdfdf;
  box-shadow: none;
}
.l-contents .columns .left-column .c-widget__content .category-widget__img,
.l-contents .columns .right-column .c-widget__content .category-widget__img {
  margin-right: 8px;
}
.l-contents .columns .left-column .c-widget__content .category-widget__name,
.l-contents .columns .right-column .c-widget__content .category-widget__name {
  padding: 0;
  font-size: 14px;
  font-weight: normal;
}
.l-contents .columns .left-column .c-widget__content .news-widget__item,
.l-contents .columns .right-column .c-widget__content .news-widget__item {
  display: flex;
  margin-bottom: 10px;
}
.l-contents .columns .left-column .c-widget__content .news-widget__date,
.l-contents .columns .right-column .c-widget__content .news-widget__date {
  margin-right: 40px;
  margin-bottom: 6px;
  color: var(--color__gray--dark);
}
.l-contents .columns .left-column .c-widget__content .news-widget__content,
.l-contents .columns .right-column .c-widget__content .news-widget__content {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.l-contents .columns .left-column .c-widget__content .news-widget__headline,
.l-contents .columns .right-column .c-widget__content .news-widget__headline {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
  font-weight: bold;
  word-break: break-all;
  cursor: pointer;
}
.l-contents .columns .left-column .c-widget__content .news-widget__headline span,
.l-contents .columns .right-column .c-widget__content .news-widget__headline span {
  display: block;
}
.l-contents .columns .left-column .c-widget__content .news-widget__headline i,
.l-contents .columns .right-column .c-widget__content .news-widget__headline i {
  display: block;
  width: 15px;
  min-width: 15px;
  height: 15px;
  margin-left: auto;
  color: transparent;
  user-select: none;
  background: url("/assets/svg/plus.svg") center center no-repeat;
}
.l-contents .columns .left-column .c-widget__content .news-widget__headline i.is-open,
.l-contents .columns .right-column .c-widget__content .news-widget__headline i.is-open {
  background: url("/assets/svg/minus.svg") center center no-repeat;
}
.l-contents .columns .left-column .c-widget__content .news-widget__detail,
.l-contents .columns .right-column .c-widget__content .news-widget__detail {
  display: none;
  margin-bottom: 30px;
  line-height: 24px;
  word-break: break-all;
}
.l-contents .columns .left-column .c-widget__content .calendar-widget,
.l-contents .columns .right-column .c-widget__content .calendar-widget {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  display: block;
}
.l-contents .columns .left-column .c-widget__content .calendar-widget__item,
.l-contents .columns .right-column .c-widget__content .calendar-widget__item {
  width: calc((100% - 52px) / 3);
  padding: 20px;
  background: #ffffff;
  border: 1px solid #efefef;
  border-radius: 6px;
}
.l-contents .columns .left-column .c-widget__content .calendar-widget table,
.l-contents .columns .right-column .c-widget__content .calendar-widget table {
  width: 100%;
  font-size: 12px;
}
.l-contents .columns .left-column .c-widget__content .calendar-widget table td,
.l-contents .columns .right-column .c-widget__content .calendar-widget table td {
  text-align: center;
}
.l-contents .columns .left-column .c-widget__content .calendar-widget__off,
.l-contents .columns .right-column .c-widget__content .calendar-widget__off {
  color: var(--color__red);
}
.l-contents .columns .left-column .c-widget__content .calendar-widget__year,
.l-contents .columns .right-column .c-widget__content .calendar-widget__year {
  display: block;
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: bold;
  color: var(--color__gray--dark);
}
.l-contents .columns .left-column .c-widget__content .calendar-widget__month,
.l-contents .columns .right-column .c-widget__content .calendar-widget__month {
  display: block;
  padding-bottom: 12px;
  margin-bottom: 28px;
  font-size: 18px;
  font-weight: bold;
  border-bottom: 2px solid var(--color__chacoal);
}
.l-contents .columns .left-column .c-widget__content .calendar-widget tbody td,
.l-contents .columns .right-column .c-widget__content .calendar-widget tbody td {
  font-weight: 600;
}
.l-contents .columns .left-column .c-widget__content .calendar-widget__item,
.l-contents .columns .right-column .c-widget__content .calendar-widget__item {
  width: 100%;
  padding: 20px 14px;
  margin-bottom: 30px;
}
.l-contents .columns .left-column .c-widget__content .calendar-widget__year,
.l-contents .columns .right-column .c-widget__content .calendar-widget__year {
  margin-bottom: 9px;
  font-size: 12px;
}
.l-contents .columns .left-column .c-widget__content .calendar-widget__month,
.l-contents .columns .right-column .c-widget__content .calendar-widget__month {
  margin: 0;
  font-size: 13px;
}
.l-contents .columns .left-column .c-widget__content .calendar-widget thead th,
.l-contents .columns .right-column .c-widget__content .calendar-widget thead th {
  padding: 14px 0;
}
.l-contents .columns .left-column .c-widget__content .calendar-widget tbody tr:not(:last-of-type) td,
.l-contents .columns .right-column .c-widget__content .calendar-widget tbody tr:not(:last-of-type) td {
  padding-bottom: 6px;
}

.p-top .main-image-slider {
  position: relative;
  padding: 40px 0;
  background: var(--color__white);
}
.p-top .main-image-slider__body:not(.slick-initialized) {
  overflow: hidden;
  visibility: hidden;
}
.p-top .main-image-slider__item {
  width: 600px;
}
.p-top .main-image-slider__item:hover {
  opacity: 0.7;
}
.p-top .main-image-slider__item img {
  max-width: var(--width-base);
  margin: 0 20px;
  object-fit: cover;
}
.p-top .main-image-slider .slick-arrow {
  position: absolute;
  top: 40%;
  z-index: 1;
  display: block;
  width: 40px;
  height: 40px;
  padding: 0;
  margin: 0;
  font-size: 0;
  color: transparent;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5019607843);
  border: 1px solid #ffffff;
  border-radius: 50%;
}
.p-top .main-image-slider .slick-arrow::before {
  display: block;
  width: 40px;
  height: 40px;
  content: "";
  background: url(data:image/svg\+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1LjI1IiBoZWlnaHQ9IjguNSIgdmlld0JveD0iMCAwIDUuMjUgOC41Ij48cGF0aCBkPSJNOTIxLjY1NSw4NDguNWEuNS41LDAsMCwxLS4zNTQtLjE4OGwtLjE5My0uMjQ0YS41LjUsMCwwLDEsLjA1LS42NzVsMy4zNTItMy4xNDItMy4zNTItMy4xNDlhLjUuNSwwLDAsMS0uMDQ4LS42NzlsLjE5MS0uMjM2YS41LjUsMCwwLDEsLjM1My0uMTg1bC4wMzYsMGEuNS41LDAsMCwxLC4zMzkuMTMzbDQuMDYsMy43NDlhLjUuNSwwLDAsMSwwLC43MzVsLTQuMDU2LDMuNzQ5YS41LjUsMCwwLDEtLjMzOS4xMzNaIiBmaWxsPSIjZmZmIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtOTIxIC04NDApIiAvPjwvc3ZnPg\=\=);
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: center;
}
.p-top .main-image-slider .slick-prev {
  left: calc((100% - var(--width-base)) / 2 - 20px);
}
.p-top .main-image-slider .slick-prev::before {
  transform: rotate(180deg);
}
.p-top .main-image-slider .slick-next {
  right: calc((100% - var(--width-base)) / 2 - 20px);
}
.p-top .main-image-slider .slick-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.p-top .main-image-slider .slick-dots button {
  width: 40px;
  height: 3px;
  margin: 0 8px;
  overflow: hidden;
  color: transparent;
  cursor: pointer;
  background: #dfdfdf;
  border: 0;
  border-radius: 1px;
}
.p-top .main-image-slider .slick-dots .slick-active button {
  background: #171717;
}
.p-top .main-visual {
  padding: 40px 0;
}
.p-top .main-visual img {
  width: var(--width-base);
  height: 392px;
  margin: auto;
  object-fit: cover;
}

.c-mypage-nav {
  display: inline-block;
  width: 240px;
  overflow: hidden;
  line-height: 1;
}
.c-mypage-nav .mypage-nav {
  margin-bottom: 60px;
}
.c-mypage-nav .mypage-nav:last-of-type {
  margin-bottom: 0;
}
.c-mypage-nav .mypage-nav__title {
  padding-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  border-bottom: 1px solid var(--color__gray);
}
.c-mypage-nav .mypage-nav__sub-title {
  font-size: 14px;
  font-weight: normal;
}
.c-mypage-nav .mypage-nav__item {
  border-bottom: 1px solid var(--color__gray);
}
.c-mypage-nav .mypage-nav__link {
  display: block;
  width: 100%;
  padding: 14px 0;
  line-height: 1;
  text-align: left;
  text-decoration: none;
  background: url("/assets/svg/arrow.svg") no-repeat 95% center;
  border: none;
  -webkit-appearance: none;
}

.p-mypage {
  position: relative;
  margin-bottom: 70px;
}
.p-mypage .mypage-line-connect .c-line-connect-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 192px;
  height: 32px;
  padding: 0;
  cursor: pointer;
  background-color: #06c755;
  border: none;
  border-radius: 6px;
}
.p-mypage .mypage-line-connect .c-line-connect-button .left {
  width: 32px;
}
.p-mypage .mypage-line-connect .c-line-connect-button .left img {
  width: 22px;
  margin: auto;
}
.p-mypage .mypage-line-connect .c-line-connect-button .right {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 11px;
  font-weight: 600;
  line-height: 1;
  color: var(--color__white);
  border-left: 2px solid rgba(0, 0, 0, 0.08);
}
.p-mypage .mypage-line-connect .c-line-connect-button:hover ::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
.p-mypage .mypage-line-connect .c-line-connect-button:active ::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}
.p-mypage .mypage-point-info {
  display: flex;
  align-items: flex-end;
}
.p-mypage .mypage-point-info__point {
  margin-left: 32px;
}
.p-mypage .mypage-point-info__point span {
  font-size: 18px;
}
.p-mypage .mypage-contents {
  display: flex;
  flex-wrap: wrap;
}
.p-mypage .mypage-contents .c-contents-header {
  width: 100%;
}
.p-mypage .mypage-contents__aside {
  width: 240px;
  margin-right: 50px;
}
.p-mypage .mypage-contents__main {
  width: calc(100% - 290px);
}
.p-mypage .mypage-contents__header {
  margin-bottom: 60px;
}
.p-mypage .mypage-contents__title {
  margin-bottom: 30px;
  font-size: 26px;
  font-weight: normal;
  line-height: 1;
}
.p-mypage .mypage-contents__list-item-count {
  font-weight: bold;
}

.p-mypage-login .c-password-textbox__icon {
  width: 36px;
}
.p-mypage-login .flex-contents {
  display: flex;
}
.p-mypage-login .flex-contents .login-content {
  width: 100%;
  margin-right: 10px;
  background-color: var(--color__white);
}
.p-mypage-login .flex-contents .login-content:last-of-type {
  margin-right: 0;
}
.p-mypage-login .flex-contents .login-content__title {
  padding: 20px 0;
  font-size: 20px;
  line-height: 1;
  color: var(--color__white);
  text-align: center;
  background-color: var(--color__chacoal);
}
.p-mypage-login .flex-contents .login-content__main {
  padding: 30px 30px 40px;
}
.p-mypage-login .flex-contents .login-content__main .login-text {
  margin-top: -5px;
  line-height: 24px;
}
.p-mypage-login .flex-contents .login-content__main .input-area {
  padding: 20px;
  margin-top: 15px;
  background-color: var(--color__gray--lighter);
}
.p-mypage-login .flex-contents .login-content__main .input-area__input {
  margin-bottom: 20px;
}
.p-mypage-login .flex-contents .login-content__main .input-area__input .form-group {
  display: grid;
  grid-template-columns: 1fr 280px;
  align-items: center;
  margin-bottom: 10px;
}
.p-mypage-login .flex-contents .login-content__main .input-area__input .form-group:last-of-type {
  margin-bottom: 0;
}
.p-mypage-login .flex-contents .login-content__main .c-checkbox label {
  font-size: 12px;
}
.p-mypage-login .flex-contents .login-content__main .button-area {
  display: flex;
  flex-flow: column;
  align-items: center;
  margin-top: 30px;
  margin-bottom: 40px;
}
.p-mypage-login .flex-contents .login-content__main .button-area .c-button {
  width: 200px;
  height: 40px;
  padding: 13px;
  font-weight: 600;
}
.p-mypage-login .flex-contents .login-content__main .forget-message {
  margin-top: -3px;
  font-size: 12px;
}
.p-mypage-login .flex-contents .login-content__main .mypage-line-connect {
  width: 100%;
  padding-top: 30px;
  margin-top: 40px;
  font-size: 13px;
  text-align: center;
  border-top: 1px solid var(--color__gray);
}
.p-mypage-login .flex-contents .login-content__main .mypage-line-connect .c-line-connect-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 192px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  background-color: #06c755;
  border: none;
  border-radius: 6px;
}
.p-mypage-login .flex-contents .login-content__main .mypage-line-connect .c-line-connect-button .left {
  width: 40px;
}
.p-mypage-login .flex-contents .login-content__main .mypage-line-connect .c-line-connect-button .left img {
  width: 28px;
  margin: auto;
}
.p-mypage-login .flex-contents .login-content__main .mypage-line-connect .c-line-connect-button .right {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: var(--color__white);
  border-left: 2px solid rgba(0, 0, 0, 0.08);
}
.p-mypage-login .flex-contents .login-content__main .mypage-line-connect .c-line-connect-button:hover ::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
.p-mypage-login .flex-contents .login-content__main .mypage-line-connect .c-line-connect-button:active ::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}
.p-mypage-login .flex-contents .login-content__main .mypage-line-connect .c-line-connect-button {
  margin: auto;
}
.p-mypage-login .amazon-pay {
  padding: 30px 40px;
  margin-top: 60px;
  background-color: var(--color__white);
  border: 4px solid var(--color__gray);
}
.p-mypage-login .amazon-pay__header {
  margin-bottom: 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
.p-mypage-login .amazon-pay__description {
  margin-top: -6px;
  margin-bottom: 14px;
  line-height: 26px;
}
.p-mypage-login .amazon-pay .amazon-pay-main {
  display: flex;
  justify-content: space-between;
}
.p-mypage-login .amazon-pay .amazon-pay-main #AmazonPayButtonV2 {
  width: 312px;
}

.p-mypage-history-list .mypage-line-connect {
  position: absolute;
  top: 0;
  right: 0;
}
.p-mypage-history-list .history-content__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
.p-mypage-history-list .history-content__count {
  font-weight: 600;
}
.p-mypage-history-list .history-content .history-list__item {
  display: flex;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color__gray);
}
.p-mypage-history-list .history-content .history-list__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.p-mypage-history-list .history-content .history-list__img {
  width: 120px;
  height: 120px;
}
.p-mypage-history-list .history-content .history-list__summary {
  flex-grow: 1;
  padding-left: 20px;
}
.p-mypage-history-list .history-content .history-list__summary .summary__header {
  margin-bottom: 14px;
}
.p-mypage-history-list .history-content .history-list__summary .summary__main {
  margin-bottom: 20px;
}
.p-mypage-history-list .history-content .history-list__summary .summary__item {
  display: block;
  line-height: 26px;
}
.p-mypage-history-list .history-content .history-list__summary .summary__buttons-wrapper > .c-button {
  min-width: 140px;
  margin-right: 10px;
}
.p-mypage-history-list .history-content .history-list__summary .summary__buttons-wrapper > .c-button:last-of-type {
  margin-right: 0;
}

.p-mypage-regular .c-section {
  padding: 0;
}
.p-mypage-regular .regular-list .c-table {
  margin-top: 20px;
}
.p-mypage-regular .regular-list__item {
  padding-top: 30px;
  border-bottom: 1px solid var(--color__gray);
}
.p-mypage-regular .regular-list__item.status-stop {
  background-color: var(--color__gray--light);
}
.p-mypage-regular .regular-list__item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.p-mypage-regular .regular-list__summary {
  padding: 0 40px 30px;
}
.p-mypage-regular .regular-list__summary-item {
  display: block;
  line-height: 26px;
}
.p-mypage-regular .regular-list__summary-button {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: start;
  margin-top: 20px;
}
.p-mypage-regular .regular-list__summary-button .c-button {
  min-width: 140px;
}
.p-mypage-regular .regular-list__detail {
  padding: 30px 40px;
  background-color: #dbeffc;
}
.p-mypage-regular .regular-list__detail .detail-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0 20px;
}
.p-mypage-regular .regular-list__detail .detail-header h4 {
  margin: 0;
}
.p-mypage-regular .regular-list__detail .close-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  color: #ffffff;
  background: url("/assets/svg/cross.svg") center center/10px no-repeat;
  background-color: #000000;
  border-radius: 50%;
}
.p-mypage-regular .regular-list__detail .action-buttons {
  display: flex;
  gap: 10px;
  justify-content: start;
}
.p-mypage-regular .regular-list__detail .action-buttons .c-button {
  width: 145px;
  color: var(--color__chacoal);
  background-color: var(--color__white);
  border: 1px solid var(--color__gray--light);
}
.p-mypage-regular .regular-list__detail .course-name-row th {
  background-color: var(--color__blue--light);
}
.p-mypage-regular .regular-list__detail .price-row th {
  font-weight: normal;
  background-color: var(--color__yellow--light);
}
.p-mypage-regular .regular-list__detail .price-row td {
  font-weight: bold;
}
.p-mypage-regular .regular-list__detail .order-detail-section .order-table th,
.p-mypage-regular .regular-list__detail .order-detail-section .order-table td {
  padding: 12px;
}
.p-mypage-regular .regular-list__detail .order-detail-section .order-table td span {
  line-height: 24px;
}
.p-mypage-regular .regular-list__detail .order-detail-section .order-table td .c-link {
  font-size: 12px;
}
.p-mypage-regular .regular-list__detail .order-detail-section .order-table td .c-button {
  float: right;
  font-size: 12px;
}
.p-mypage-regular .regular-list__detail .order-detail-section .order-detail-table th,
.p-mypage-regular .regular-list__detail .order-detail-section .order-detail-table td {
  padding: 10px;
}
.p-mypage-regular .regular-list__detail .order-detail-section .order-detail-table__one-time-count-badge {
  width: fit-content;
  padding: 0 4px;
  margin: -10px 0 10px -10px;
  color: var(--color__white);
  background-color: var(--color__blue--turquoise);
}
.p-mypage-regular .regular-list__detail .order-detail-section .order-detail-table__product {
  display: flex;
  gap: 10px;
  font-size: 12px;
}
.p-mypage-regular .regular-list__detail .order-detail-section .order-detail-table__product-img {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}
.p-mypage-regular .regular-list__detail .order-detail-section .order-detail-table__product-info {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.p-mypage-regular .regular-list__detail .order-detail-section .order-detail-table__product-info .c-link {
  font-size: 14px;
}
.p-mypage-regular .regular-list__detail .order-detail-section .order-detail-table__product-info .c-button {
  font-size: 12px;
}
.p-mypage-regular .regular-list__detail .order-detail-section .order-detail-attention {
  margin-top: 10px;
  font-size: 12px;
}
.p-mypage-regular .regular-list__detail .next-info-section {
  margin: 30px 0;
}
.p-mypage-regular .regular-list__detail .delivery-info-section .deliv-select {
  display: inline-block;
}

.p-mypage-combine-list .search-section.c-section {
  padding: 30px;
}
.p-mypage-combine-list .search-section .search-group {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.p-mypage-combine-list .search-section .search-group label {
  font-weight: bold;
}
.p-mypage-combine-list .product-list-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 40px 0;
}
.p-mypage-combine-list .product-list-header span {
  font-weight: 600;
}
.p-mypage-combine-list .panel-selection-part {
  margin-top: 20px;
}
.p-mypage-combine-list .panel-selection-part .quantity-row {
  gap: 8px;
  margin-top: 20px;
}
.p-mypage-combine-list .panel-selection-part .quantity-row label {
  margin: 0;
  font-size: 12px;
}
.p-mypage-combine-list .panel-selection-part .quantity-row .c-button {
  flex-grow: 1;
}
.p-mypage-combine-list .panel-selection-part .quantity-row .c-textbox {
  text-align: right;
}
.p-mypage-combine-list .c-product-panel__favorite-icon {
  cursor: pointer;
}

.c-bundle-combination-modal {
  position: fixed !important;
  top: 50% !important;
  left: 50% !important;
  height: 90vh !important;
  transform: translate(-50%, -50%) !important;
  width: var(--width-base) !important;
}
.c-bundle-combination-modal__content {
  display: none;
  display: flex;
  flex-direction: column;
  height: calc(100% - 41px) !important;
}
.c-bundle-combination-modal__body {
  flex: 1;
  overflow-y: auto;
}
.c-bundle-combination-modal__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  padding: 10px;
  border-top: solid 1px var(--color__gray);
}
.c-bundle-combination-modal__actions--column {
  flex-direction: column;
}
.c-bundle-combination-modal .c-bundle-combination {
  display: flex;
  margin-top: 10px;
  overflow-wrap: anywhere;
  padding: 10px;
}
.c-bundle-combination-modal .c-bundle-combination button {
  background-color: transparent;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.c-bundle-combination-modal .c-bundle-combination button:not(:disabled) {
  cursor: pointer;
}
.c-bundle-combination-modal .c-bundle-combination__product-root {
  flex: 1;
  margin-right: 14px;
}
.c-bundle-combination-modal .c-bundle-combination__cart-root {
  width: 206px;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product--na {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: red;
  background-color: pink;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__header {
  display: flex;
  font-size: 16px;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__header-text {
  flex: 1;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__header-current-quantity {
  font-weight: bold;
  letter-spacing: 0.2rem;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__tab {
  display: flex;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__tab-button {
  flex: 1 1 0px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  color: #808080;
  border-bottom: solid 3px #ececec;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__tab-button:hover, .c-bundle-combination-modal .c-bundle-combination .c-bundle-product__tab-button--active {
  color: #333333;
  border-bottom: solid 3px #0ab14d;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__sort {
  position: relative;
  margin-left: auto;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__sort button {
  display: flex;
  align-items: center;
  border: #333333 solid 1px;
  border-radius: 4px;
  background: #ffffff;
  color: #333333;
  font-size: 12px;
  min-width: max-content;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__sort button::before {
  display: inline-block;
  width: 16px;
  height: 16px;
  content: "";
  background: url("/assets/svg/sort.svg") center center no-repeat;
  background-size: cover;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__sort.is-active button {
  border-color: #ebebeb;
  background: #ebebeb;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__sort.is-active .c-bundle-product__sort-menu {
  display: flex;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__sort-menu {
  display: none;
  position: absolute;
  right: 0;
  z-index: 1;
  background: #ffffff;
  flex-direction: column;
  padding: 8px;
  margin-top: 4px;
  width: 120px;
  box-shadow: 3px 3px 6px 2px rgba(0, 0, 0, 0.19);
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__sort-menu label {
  font-weight: normal;
  font-size: 12px;
  padding: 4px 16px;
  cursor: pointer;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__sort-menu label:has(input:checked), .c-bundle-combination-modal .c-bundle-combination .c-bundle-product__sort-menu label:hover {
  background: #ebebeb;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__sort-menu label input {
  display: none;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__list-header {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 5px;
  font-size: 16px;
  border-bottom: solid 2px #000000;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__list-status {
  display: flex;
  font-size: 16px;
  padding: 12px 3px;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__list-status-text {
  flex: 1;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__list-status-current-quantity {
  font-weight: bold;
  letter-spacing: 0.2rem;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__list-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-self: flex-start;
  width: 100%;
  padding: 8px 10px;
  font-size: 10px;
  background-color: #ffffff;
  border: solid 1px #b3b3b3;
  border-radius: 4px;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #ebebeb;
  border: solid 1px rgba(0, 0, 0, 0.5);
}

.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-image-frame .image {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-meta ::after {
  display: table;
  clear: both;
  content: "";
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-description {
  display: inline-block;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-extra-price {
  width: fit-content;
  padding: 2px 5px;
  font-size: 10px;
  line-height: 1.1;
  color: #ffffff;
  border-radius: 3px;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-extra-price--plus {
  background-color: #8bb5f4;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-extra-price--minus {
  background-color: #f48b8b;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-extra-price--align-right {
  float: right;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-classcategories {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-classcategories div:last-child {
  flex: 1;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-classcategories label {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 10px;
  font-weight: normal;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-classcategories-label-value {
  width: 40px;
  min-width: 40px;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-classcategories select {
  width: 100%;
  height: 22px;
  font-size: 10px;
  font-weight: normal;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-classcategories .c-select select {
  padding-right: 24px;
  padding-left: 4px;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-classcategories .c-select i {
  width: 20px;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-button-group {
  display: flex;
  gap: 10px;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-button {
  flex-grow: 1;
  font-size: 10px;
  border-radius: 3px;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-button--quantity-increment {
  color: #6c9925;
  border: solid 1px #6c9925;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-button--quantity-decrement {
  color: #333333;
  border: solid 1px #979797;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-button:disabled {
  color: gray;
  cursor: default;
  background-color: lightgray;
  border: solid 1px gray;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-quantity {
  display: flex;
  justify-content: flex-end;
  letter-spacing: 0.1rem;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-product__product-unavailable-temporarily {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-combination-cart {
  position: sticky;
  top: 0;
  background-color: #ebebeb;
  border: solid 1px #b3b3b3;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-combination-cart--ok .c-bundle-combination-cart-header {
  background-color: #dceed8 !important;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-combination-cart--ok .c-bundle-combination-cart-item {
  background-color: #ebf7f1 !important;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-combination-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  color: #333333;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-combination-cart-header-quantity {
  font-size: 13px;
  font-weight: bold;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-combination-cart-header-delete-all {
  font-size: 10px;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-combination-cart-item {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  padding: 8px 5px;
  margin-top: 1px;
  background-color: #ffffff;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-combination-cart-item--error {
  background-color: var(--color__pink, #fdeaea);
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-combination-cart-item-actions {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  width: 20px;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-combination-cart-item-actions-quantity {
  font-size: 10px;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-combination-cart-item-actions-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 20px;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-combination-cart-item-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 67px;
  min-width: 67px;
  background-color: #ebebeb;
  border: solid 1px rgba(0, 0, 0, 0.5);
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-combination-cart-item-image-frame .image {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-combination-cart-item-meta {
  flex-grow: 1;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-combination-cart-item-name {
  font-size: 10px;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-combination-cart-item-delete-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-family: monospace;
  content: "+";
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-combination-cart-item-delete-button::after {
  display: block;
  font-size: 20px;
  content: "×"; /* This will render the 'X' */
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-combination-cart__font--sm {
  font-size: 11px;
}
.c-bundle-combination-modal .c-bundle-combination .c-bundle-combination-cart__alert {
  color: red;
}
.c-bundle-combination-modal .c-bundle-combination__hidden_until_all_requirements_are_fulfilled {
  display: none;
}

.p-mypage-combine-confirm .product-column {
  display: flex;
  gap: 10px;
}
.p-mypage-combine-confirm .product-column__img {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}
.p-mypage-combine-confirm .product-column__info {
  display: flex;
  flex-flow: column;
  gap: 10px;
  font-size: 12px;
}
.p-mypage-combine-confirm .product-column__info a {
  font-size: 14px;
}
.p-mypage-combine-confirm .next-section {
  margin-top: 30px;
}
.p-mypage-combine-confirm .price-row th {
  font-weight: normal;
  background-color: var(--color__yellow--light);
}
.p-mypage-combine-confirm .price-row td {
  font-weight: bold;
}

.p-mypage-point-history .point-list {
  margin-top: 20px;
}
.p-mypage-point-history .point-list table th,
.p-mypage-point-history .point-list table td {
  padding: 10px 10px;
}
.p-mypage-point-history .point-list table td:nth-child(1) {
  width: 100px;
}
.p-mypage-point-history .point-list table td:nth-child(2) {
  width: 110px;
  text-align: center;
}
.p-mypage-point-history .point-list table td:nth-child(3) {
  width: 50px;
}
.p-mypage-point-history .point-list table td:nth-child(4) {
  width: 100px;
  text-align: right;
}
.p-mypage-point-history .point-list table td:nth-child(5) {
  width: 100px;
  text-align: right;
  background-color: var(--color__yellow--light);
}
.p-mypage-point-history .point-list table td:nth-child(6) {
  width: 120px;
}
.p-mypage-point-history .point-list__action--get {
  color: var(--color__red);
}
.p-mypage-point-history .point-list__action--use {
  color: var(--color__blue);
}
.p-mypage-point-history .point-list__action--adjust {
  color: var(--color__green);
}
.p-mypage-point-history .point-list__action--lose {
  color: var(--color__gray--dark);
}
.p-mypage-point-history .point-list__value--get {
  background-color: var(--color__pink);
}
.p-mypage-point-history .point-list__value--use {
  background-color: var(--color__blue--light);
}
.p-mypage-point-history .point-list__value--adjust {
  background-color: var(--color__green--light);
}
.p-mypage-point-history .point-list__value--lose {
  background-color: var(--color__gray--light);
}
.p-mypage-point-history .point-list__balloon {
  position: absolute;
  display: none;
  padding: 20px;
}
.p-mypage-point-history .point-list__balloon-item {
  margin-bottom: 10px;
}

.p-mypage-zeus-card-change-info #zeus_table_mypage {
  width: 100%;
}
.p-mypage-zeus-card-change-info #zeus_token_card_info_area {
  display: grid;
  width: 100%;
}
.p-mypage-zeus-card-change-info #zeus_token_card_info_area input[type=tel],
.p-mypage-zeus-card-change-info #zeus_token_card_info_area input[type=text] {
  margin: 14px;
}
.p-mypage-zeus-card-change-info #zeus_token_card_info_area select {
  padding: 5px;
  margin: 14px;
}
.p-mypage-zeus-card-change-info #zeus_new_card_area {
  display: grid;
  grid-template-columns: 220px 1fr 30px 1fr 30px;
  grid-row-start: 2;
  grid-row-end: 3;
  grid-column-start: 1;
  grid-column-end: 4;
  width: 100%;
  margin-left: 0 !important;
  background-color: #fff;
  border: 1px solid var(--color__gray);
}
.p-mypage-zeus-card-change-info #zeus_new_card_area label {
  position: relative;
  display: flex;
  align-items: center;
  padding: 14px;
  margin-top: 0;
  background-color: var(--color__gray--light);
  border-right: 1px solid var(--color__gray);
}
.p-mypage-zeus-card-change-info #zeus_new_card_area label::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 603px;
  height: 1px;
  content: "";
  background-color: var(--color__gray);
}
.p-mypage-zeus-card-change-info #zeus_new_card_area label::after {
  margin-left: auto;
  content: "必須";
}
.p-mypage-zeus-card-change-info #zeus_new_card_area label:first-child::before {
  display: none;
}
.p-mypage-zeus-card-change-info #zeus_new_card_area #zeus_token_card_number,
.p-mypage-zeus-card-change-info #zeus_new_card_area #zeus_token_card_name {
  width: auto;
}
.p-mypage-zeus-card-change-info #zeus_new_card_area label[for=zeus_token_card_number] {
  grid-row-start: 1;
  grid-row-end: 1;
  grid-column-start: 1;
  grid-column-end: 1;
}
.p-mypage-zeus-card-change-info #zeus_new_card_area #zeus_token_card_number {
  grid-row-start: 1;
  grid-row-end: 1;
  grid-column-start: 2;
  grid-column-end: 6;
}
.p-mypage-zeus-card-change-info #zeus_new_card_area label[for=zeus_token_card_expires_month] {
  grid-row-start: 2;
  grid-row-end: 4;
  grid-column-start: 1;
  grid-column-end: 1;
}
.p-mypage-zeus-card-change-info #zeus_new_card_area #zeus_token_card_expires_month {
  grid-row-start: 2;
  grid-row-end: 2;
  grid-column-start: 2;
  grid-column-end: 2;
}
.p-mypage-zeus-card-change-info #zeus_new_card_area #zeus_token_card_expires_month_suffix,
.p-mypage-zeus-card-change-info #zeus_new_card_area #zeus_token_card_expires_year_suffix {
  display: flex;
  align-items: center;
}
.p-mypage-zeus-card-change-info #zeus_new_card_area #zeus_token_card_expires_month_suffix {
  grid-row-start: 2;
  grid-row-end: 2;
  grid-column-start: 3;
  grid-column-end: 3;
}
.p-mypage-zeus-card-change-info #zeus_new_card_area #zeus_token_card_expires_year {
  grid-row-start: 2;
  grid-row-end: 2;
  grid-column-start: 4;
  grid-column-end: 4;
}
.p-mypage-zeus-card-change-info #zeus_new_card_area #zeus_token_card_expires_year_suffix {
  grid-row-start: 2;
  grid-row-end: 2;
  grid-column-start: 5;
  grid-column-end: 5;
}
.p-mypage-zeus-card-change-info #zeus_new_card_area #zeus_token_card_expires_note {
  grid-row-start: 3;
  grid-row-end: 3;
  grid-column-start: 2;
  grid-column-end: 6;
  padding: 0 10px 10px;
  color: var(--color__gray--dark);
}
.p-mypage-zeus-card-change-info #zeus_new_card_area label[for=zeus_token_card_name] {
  grid-row-start: 4;
  grid-row-end: 4;
  grid-column-start: 1;
  grid-column-end: 1;
}
.p-mypage-zeus-card-change-info #zeus_new_card_area #zeus_token_card_name {
  grid-row-start: 4;
  grid-row-end: 4;
  grid-column-start: 2;
  grid-column-end: 6;
}
.p-mypage-zeus-card-change-info #zeus_new_card_area label[for=zeus_token_card_cvv] {
  grid-row-start: 5;
  grid-row-end: 5;
  grid-column-start: 1;
  grid-column-end: 1;
}
.p-mypage-zeus-card-change-info #zeus_new_card_area #zeus_token_card_cvv {
  grid-row-start: 5;
  grid-row-end: 5;
  grid-column-start: 2;
  grid-column-end: 2;
}
.p-mypage-zeus-card-change-info #zeus_new_card_area br {
  display: none;
}
.p-mypage-zeus-card-change-info #zeus_token_action_type_new,
.p-mypage-zeus-card-change-info label[for=zeus_token_action_type_new],
.p-mypage-zeus-card-change-info #zeus_token_action_type_quick,
.p-mypage-zeus-card-change-info label[for=zeus_token_action_type_quick],
.p-mypage-zeus-card-change-info #zeus_registerd_card_area {
  display: none;
}

.p-mypage-change-regular-payment .payment-affair {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.p-mypage-change-regular-payment .payment-affair__img {
  width: fit-content;
}

.p-product-list {
  margin-bottom: 60px;
}
.p-product-list .product-list-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}
.p-product-list .product-list-header__count span {
  font-weight: 600;
}
.p-product-list .product-list-header .c-select {
  width: 200px;
}

.c-bold {
  font-weight: 600;
}

.p-product-detail {
  margin-bottom: 60px;
}
.columns--1 .p-product-detail {
  --width-image-column: 465px;
  --width-gap-column: 50px;
  --width-thumbnail: 76px;
  --width-gap-thumbnail: 21px;
}
.columns--2 .p-product-detail {
  --width-image-column: 320px;
  --width-gap-column: 40px;
  --width-thumbnail: 52px;
  --width-gap-thumbnail: 15px;
}
.columns--3 .p-product-detail {
  --width-image-column: 100%;
  --width-gap-column: 40px;
  --width-thumbnail: 52px;
  --width-gap-thumbnail: 15px;
}
.p-product-detail .product {
  display: flex;
  flex-wrap: wrap;
  gap: var(--width-gap-column);
}
.p-product-detail .product__timesale {
  width: 100%;
}
.p-product-detail .product__timesale > :not(.count_down_box),
.p-product-detail .product__timesale .hasCountdown {
  padding: 8px 10px;
  font-size: 20px;
  font-weight: 600;
  color: var(--color__red);
  text-align: center;
  background-color: var(--color__pink);
  border: solid 2px var(--color__red);
}
.p-product-detail .product__timesale small {
  font-size: 16px;
}
.p-product-detail .product__image {
  width: var(--width-image-column);
  max-width: var(--width-image-column);
}
.p-product-detail .product__image-main {
  width: 100%;
}
.p-product-detail .product__image-thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: var(--width-gap-thumbnail);
  align-items: flex-start;
  margin-top: var(--width-gap-thumbnail);
}
.p-product-detail .product__image-thumbnails img {
  width: var(--width-thumbnail);
}
.p-product-detail .product__image-thumbnails img:hover {
  opacity: 0.6;
}
.p-product-detail .product__main {
  flex: 1;
}
.p-product-detail .product__row {
  margin-top: 20px;
}
.p-product-detail .product__status {
  margin-bottom: 33px;
}
.p-product-detail .product__name {
  font-size: 22px;
  font-weight: 600;
}
.p-product-detail .product__price {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin-top: 24px;
  line-height: 1.1;
}
.p-product-detail .product__sale-price {
  margin-right: 30px;
}
.p-product-detail .product__sale-price small {
  font-size: 12px;
}
.p-product-detail .product__sale-price-value {
  display: inline-flex;
  align-items: baseline;
  font-size: 28px;
  font-weight: 600;
  color: var(--color__green--dark);
}
.p-product-detail .product__original-price {
  display: inline-flex;
  align-items: baseline;
}
.p-product-detail .product__original-price-value {
  display: inline-flex;
}
.p-product-detail .product__point {
  display: inline-flex;
}
.p-product-detail .product__point-value {
  display: inline-flex;
  font-weight: 600;
  color: var(--color__red);
}
.p-product-detail .product__spec {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 300px;
}
.p-product-detail .product__spec-label {
  flex: 1;
}
.p-product-detail .product__spec-value {
  width: 210px;
}
.p-product-detail .product__spec-table-title {
  margin-bottom: 14px;
  font-size: 16px;
  font-weight: 600;
}
.p-product-detail .product__stock-table {
  margin-top: 10px;
}
.p-product-detail .product__stock-table .class-request-button {
  max-width: inherit;
  margin-top: 8px;
  white-space: normal;
}
.p-product-detail .product__returning-status-item {
  margin-bottom: 14px;
}
.p-product-detail .product__returning-status-item:last-child {
  margin-bottom: 0;
}
.p-product-detail .product__quantity {
  display: flex;
  align-items: center;
  width: 200px;
  margin-top: 30px;
}
.p-product-detail .product__quantity-label {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
}
.p-product-detail .product__quantity-value {
  width: 126px;
}
.p-product-detail .product__cart-button {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}
.p-product-detail .product__regular-sale {
  margin-top: 40px;
}
.p-product-detail .product__section {
  margin-top: 40px;
}
.p-product-detail .product__review {
  position: relative;
}
.p-product-detail .product__review-header:after {
  display: table;
  clear: both;
  content: "";
}
.p-product-detail .product__review-result {
  float: left;
  margin-bottom: 20px;
}
.p-product-detail .product__review-button {
  float: right;
  margin-bottom: 20px;
}
.p-product-detail .product__review-count {
  font-weight: 600;
}
.p-product-detail .product__review-meta {
  display: flex;
  gap: 1em;
  justify-content: flex-end;
  margin-bottom: 21px;
  font-size: 12px;
  font-weight: 600;
}
.p-product-detail .product__review-date {
  white-space: nowrap;
}
.p-product-detail .product__review-author {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.p-product-detail .product__review-rating {
  white-space: nowrap;
}
.p-product-detail .product__review-rating-value {
  display: inline-block;
  width: 60px;
  color: var(--color__orange);
}
.p-product-detail .product__review-title {
  margin-bottom: 21px;
  font-size: 16px;
  font-weight: 600;
}
.p-product-detail .error-balloon {
  position: relative;
  width: 100%;
}
.p-product-detail .error-balloon__content {
  position: absolute;
  right: 0;
  bottom: 10px;
  z-index: 1;
  width: 300px;
  padding: 14px;
  font-size: 12px;
  color: var(--color__red);
  background-color: var(--color__pink);
  border: 1px solid var(--color__red);
  border-radius: 6px;
}
.p-product-detail .error-balloon__content:empty {
  display: none;
}
.p-product-detail .error-balloon__content::before {
  position: absolute;
  top: 100%;
  right: 16px;
  content: "";
  border: 10px solid transparent;
  border-top: 18px solid var(--color__red);
}
.p-product-detail .error-balloon__content::after {
  position: absolute;
  top: 100%;
  right: 17px;
  content: "";
  border: 9px solid transparent;
  border-top: 17px solid var(--color__pink);
}

.p-cart {
  margin: 0 auto 70px;
}
.p-cart .c-contents-header {
  margin-bottom: 0;
}
.p-cart .c-contents-header + .cart-content {
  margin-top: 60px;
}
.p-cart .about-point {
  display: block;
  margin-top: 16px;
  margin-bottom: 30px;
  font-size: 12px;
  line-height: 20px;
  text-align: right;
}
.p-cart .error-msg {
  padding: 12px 0 12px 20px;
  margin-bottom: 20px;
  line-height: 26px;
  color: var(--color__red);
  background-color: var(--color__white);
  border: 1px solid var(--color__red);
}
.p-cart .cart-content {
  margin-bottom: 70px;
}
.p-cart .cart-content__flex-content {
  display: flex;
}
.p-cart .cart-content__flex-content .cart-main {
  flex-grow: 1;
}
.p-cart .cart-content__flex-content .cart-main__list {
  padding: 50px 40px 40px;
  background-color: var(--color__white);
}
.p-cart .cart-content__flex-content .cart-main__list .cart-list {
  padding-bottom: 30px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--color__gray);
}
.p-cart .cart-content__flex-content .cart-main__list .cart-list:last-child {
  padding-bottom: 10px;
  margin-bottom: 0;
  border: none;
}
.p-cart .cart-content__flex-content .cart-main__list .cart-list .list-item {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--color__gray);
}
.p-cart .cart-content__flex-content .cart-main__list .cart-list .list-item__main {
  display: grid;
  grid-template-columns: 120px 1fr 188px;
}
.p-cart .cart-content__flex-content .cart-main__list .cart-list .list-item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.p-cart .cart-content__flex-content .cart-main__list .cart-list .list-item__img {
  width: 120px;
  height: 120px;
  overflow: hidden;
}
.p-cart .cart-content__flex-content .cart-main__list .cart-list .list-item__column {
  padding-left: 20px;
}
.p-cart .cart-content__flex-content .cart-main__list .cart-list .list-item__column .column__text {
  display: block;
  line-height: 26px;
}
.p-cart .cart-content__flex-content .cart-main__list .cart-list .list-item__column .column__text:first-of-type {
  margin-top: -6px;
}
.p-cart .cart-content__flex-content .cart-main__list .cart-list .list-item__caution {
  font-size: 12px;
  text-align: right;
}
.p-cart .cart-content__flex-content .cart-main__list .cart-list .list-item__delete-button {
  padding: 0;
  text-decoration: underline;
  cursor: pointer;
  background: transparent;
  border: none;
}
.p-cart .cart-content__flex-content .cart-main__list .cart-list .list-item__delete-button:hover {
  text-decoration: none;
}
.p-cart .cart-content__flex-content .cart-main__list .item-summary-table {
  width: 100%;
  font-weight: 600;
  border-collapse: collapse;
}
.p-cart .cart-content__flex-content .cart-main__list .item-summary-table__counter {
  margin-left: auto;
  font-weight: 300;
}
.p-cart .cart-content__flex-content .cart-main__list .item-summary-table__counter .c-select select,
.p-cart .cart-content__flex-content .cart-main__list .item-summary-table__counter .c-input-form input[type=text] {
  font-size: 16px;
  text-align: center;
}
.p-cart .cart-content__flex-content .cart-main__list .item-summary-table__counter .c-select {
  width: 106px;
  margin-left: auto;
}
.p-cart .cart-content__flex-content .cart-main__list .item-summary-table__item th,
.p-cart .cart-content__flex-content .cart-main__list .item-summary-table__item td {
  padding-top: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color__gray);
}
.p-cart .cart-content__flex-content .cart-main__list .item-summary-table__item:first-of-type th,
.p-cart .cart-content__flex-content .cart-main__list .item-summary-table__item:first-of-type td {
  padding-top: 0;
}
.p-cart .cart-content__flex-content .cart-main__list .item-summary-table__item:last-of-type th,
.p-cart .cart-content__flex-content .cart-main__list .item-summary-table__item:last-of-type td {
  padding-bottom: 0;
  border-bottom: 0;
}
.p-cart .cart-content__flex-content .cart-main__list .item-summary-table__item th {
  text-align: left;
}
.p-cart .cart-content__flex-content .cart-main__list .item-summary-table__item td {
  width: 124px;
  text-align: right;
}
.p-cart .cart-content__flex-content .cart-main__list .item-summary-table__item .attach_item {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
  color: var(--color__red);
}
.p-cart .cart-content__flex-content .cart-main__list .item-summary-table .item-summary-subtotal-row th {
  vertical-align: top;
}
.p-cart .cart-content__flex-content .cart-main .cross-sell-item {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  line-height: 26px;
}
.p-cart .cart-content__flex-content .cart-main .cross-sell-item > .c-button {
  min-width: 260px;
  padding: 12px;
  font-weight: 600;
}
.p-cart .cart-content__flex-content .cart-main__no-item {
  text-align: center;
}
.p-cart .cart-content__flex-content .cart-side {
  min-width: 340px;
  max-width: 340px;
  margin-left: 10px;
  background-color: var(--color__white);
}
.p-cart .cart-content__flex-content .cart-side__header .cart-postage {
  font-weight: 600;
  text-align: center;
  background-color: var(--color__yellow--light);
}
.p-cart .cart-content__flex-content .cart-side__header .cart-postage__text {
  padding: 16px;
}
.p-cart .cart-content__flex-content .cart-side__main {
  padding: 30px 30px 40px;
}
.p-cart .cart-content__flex-content .cart-side__main .subtotal-table,
.p-cart .cart-content__flex-content .cart-side__main .confirm-table {
  width: 100%;
  line-height: 1;
  border-collapse: collapse;
}
.p-cart .cart-content__flex-content .cart-side__main .subtotal-table th,
.p-cart .cart-content__flex-content .cart-side__main .subtotal-table td,
.p-cart .cart-content__flex-content .cart-side__main .confirm-table th,
.p-cart .cart-content__flex-content .cart-side__main .confirm-table td {
  padding-bottom: 20px;
  font-weight: 300;
}
.p-cart .cart-content__flex-content .cart-side__main .subtotal-table .table-head,
.p-cart .cart-content__flex-content .cart-side__main .confirm-table .table-head {
  text-align: left;
}
.p-cart .cart-content__flex-content .cart-side__main .subtotal-table .table-data,
.p-cart .cart-content__flex-content .cart-side__main .confirm-table .table-data {
  text-align: right;
}
.p-cart .cart-content__flex-content .cart-side__main .subtotal-table {
  margin-bottom: 30px;
}
.p-cart .cart-content__flex-content .cart-side__main .subtotal-table__result-row th,
.p-cart .cart-content__flex-content .cart-side__main .subtotal-table__result-row td {
  padding-bottom: 30px;
}
.p-cart .cart-content__flex-content .cart-side__main .subtotal-table tr:last-of-type th,
.p-cart .cart-content__flex-content .cart-side__main .subtotal-table tr:last-of-type td {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--color__gray);
}
.p-cart .cart-content__flex-content .cart-side__main .confirm-table {
  margin-bottom: 40px;
}
.p-cart .cart-content__flex-content .cart-side__main .confirm-table__total-row th,
.p-cart .cart-content__flex-content .cart-side__main .confirm-table__total-row td {
  padding-bottom: 30px;
  font-size: 18px;
  font-weight: 600;
}
.p-cart .cart-content__flex-content .cart-side__main .confirm-table tr:last-of-type th,
.p-cart .cart-content__flex-content .cart-side__main .confirm-table tr:last-of-type td {
  padding-bottom: 0;
}
.p-cart .cart-content__flex-content .cart-side__main .button-wrapper {
  display: flex;
  flex-flow: column;
}
.p-cart .cart-content__flex-content .cart-side__main .button-wrapper > .c-button {
  margin-bottom: 20px;
}
.p-cart .cart-content__flex-content .cart-side__main .button-wrapper > .c-button:last-child {
  margin-bottom: 0;
}
.p-cart .cart-content__flex-content .cart-side__main .amazon-pay {
  margin-top: 60px;
}
.p-cart .cart-content__flex-content .cart-side__main .amazon-pay__header {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
}
.p-cart .cart-content__flex-content .cart-side__main .amazon-pay__description {
  margin-bottom: 16px;
  line-height: 26px;
}
.p-cart .cart-content__flex-content .cart-side__main .amazon-pay__check {
  margin-bottom: 22px;
}
.p-cart .cart-content__flex-content .cart-side__main .amazon-pay__check > .c-checkbox {
  margin-bottom: 20px;
}
.p-cart .cart-content__flex-content .cart-side__main .amazon-pay__check > .c-checkbox:last-child {
  margin-bottom: 0;
}

.p-order-input .order-input-form {
  margin-bottom: 60px;
}
.p-order-input .order-input-form__head h2 {
  padding-bottom: 15px;
  margin: 0;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  border-bottom: 2px solid var(--color__chacoal);
}
.p-order-input .order-input-form__content {
  padding: 60px 0 20px;
}
.p-order-input .order-input-form__content-title {
  margin: 0;
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
}
.p-order-input .order-input-form__content .add-shipping-address {
  margin-top: 20px;
  margin-bottom: 30px;
}
.p-order-input .order-input-form__content .shipping-address-list {
  margin-top: 30px;
}
.p-order-input .order-input-form__content .shipping-address-list .c-table table th:nth-child(1) {
  width: 70px;
}
.p-order-input .order-input-form__content .shipping-address-list .c-table .address-detail {
  display: flex;
  gap: 10px;
  justify-content: space-between;
}
.p-order-input .order-input-form__content .shipping-address-list .c-table .address-detail__actions {
  display: flex;
  gap: 10px;
  align-items: center;
}
.p-order-input .order-input-form__content .payment-method-list {
  margin-top: 30px;
}
.p-order-input .order-input-form__content .payment-method-list .c-table table th:nth-child(1) {
  width: 70px;
}
.p-order-input .order-input-form__content .payment-method-list .c-table table th:nth-child(2) {
  text-align: left;
}
.p-order-input .order-input-form__content .payment-method-list .c-table table th:nth-child(3) {
  text-align: left;
}
.p-order-input .order-input-form__content .payment-method-list .c-table table td:nth-child(1) {
  text-align: center;
}
.p-order-input .order-input-form__content .payment-method-list .payment-affair {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.p-order-input .order-input-form__content .payment-method-list .payment-affair__img {
  width: fit-content;
}
.p-order-input .order-input-form__content .delivery-schedule {
  margin-top: 30px;
}
.p-order-input .order-input-form__content .delivery-schedule__row {
  display: flex;
  align-items: center;
  height: 30px;
  margin: 20px 0;
}
.p-order-input .order-input-form__content .delivery-schedule__row:last-of-type {
  margin-bottom: 0;
}
.p-order-input .order-input-form__content .delivery-schedule__label {
  min-width: 120px;
  font-size: 14px;
  font-weight: bold;
}
.p-order-input .order-input-form__content .delivery-schedule__not-available {
  font-size: 14px;
}
.p-order-input .order-input-form__content .contact-message {
  margin-top: 30px;
}
.p-order-input .order-input-form__content .contact-message__row {
  display: flex;
  align-items: flex-end;
}
.p-order-input .order-input-form__content .contact-message__row textarea {
  width: 600px;
}
.p-order-input .order-input-form__content .contact-message__notice {
  font-size: 12px;
}
.p-order-input .order-input-form__content .point-info {
  width: fit-content;
}
.p-order-input .order-input-form__content .point-info__row {
  display: flex;
  gap: 100px;
  justify-content: space-between;
}
.p-order-input .order-input-form__content .point-info__header {
  padding: 10px 0;
}
.p-order-input .order-input-form__content .point-info__data {
  padding: 10px 0;
  text-align: right;
}
.p-order-input .order-input-form__content .point-info .point-input-row {
  align-items: center;
}
.p-order-input .order-input-form__content .amazon-pay-widget {
  margin-top: 20px;
  margin-bottom: 30px;
}
.p-order-input .order-input-form__content .regular-delivery-shcedule {
  margin-bottom: 30px;
}
.p-order-input .order-input-form__content .regular-delivery-shcedule__row {
  display: flex;
  align-items: center;
  margin-top: 10px;
}
.p-order-input .order-input-form__content .regular-delivery-shcedule__row span {
  margin-right: 10px;
}
.p-order-input .order-input-form__content .regular-delivery-shcedule__row .c-select {
  width: auto;
  margin-right: 10px;
}
.p-order-input .order-input-form__content .regular-delivery-shcedule__row .c-checkbox {
  margin-right: 10px;
}
.p-order-input .order-input-form__content .regular-delivery-shcedule__row--indent {
  margin-left: 24px;
}
.p-order-input .order-input-form__content .regular-delivery-calendar__schedule {
  padding: 8px;
  margin-bottom: 20px;
  background: var(--color__gray--light);
}
.p-order-input .order-input-form__content .regular-delivery-calendar__schedule span {
  margin-right: 40px;
}
.p-order-input .order-input-form__content .regular-delivery-calendar__wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}
.p-order-input .order-input-form__content .regular-delivery-calendar__item {
  width: calc((100% - 52px) / 3);
  padding: 20px;
  background: #ffffff;
  border: 1px solid #efefef;
  border-radius: 6px;
}
.p-order-input .order-input-form__content .regular-delivery-calendar table {
  width: 100%;
  font-size: 12px;
}
.p-order-input .order-input-form__content .regular-delivery-calendar table caption {
  margin-bottom: 8px;
  font-size: 18px;
}
.p-order-input .order-input-form__content .regular-delivery-calendar table td {
  text-align: center;
}
.p-order-input .order-input-form__content .regular-delivery-calendar table tbody td {
  font-weight: 600;
}
.p-order-input .order-input-form__content .regular-delivery-calendar__off {
  color: var(--color__red);
}

.p-order-confirm.preview [name=form1], .p-order-confirm.preview .lp-ups-content > .p-lp-ups {
  pointer-events: none;
  filter: grayscale(1);
}
.p-order-confirm.preview [name=form1]::before, .p-order-confirm.preview .lp-ups-content > .p-lp-ups::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 24px;
  font-weight: bold;
  color: var(--color__white);
  content: "プレビュー";
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}
.p-order-confirm.preview .lp-ups-content > .c-button-group {
  pointer-events: none;
  opacity: 0.2;
}

.p-order-confirm.preview [name=form1], .p-order-confirm.preview .lp-ups-content > .p-lp-ups {
  pointer-events: none;
  filter: grayscale(1);
}
.p-order-confirm.preview [name=form1]::before, .p-order-confirm.preview .lp-ups-content > .p-lp-ups::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 24px;
  font-weight: bold;
  color: var(--color__white);
  content: "プレビュー";
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}
.p-order-confirm.preview .lp-ups-content > .c-button-group {
  pointer-events: none;
  opacity: 0.2;
}
.p-order-confirm .order-confirm-form {
  margin-bottom: 60px;
}
.p-order-confirm .order-confirm-form__head h2 {
  padding-bottom: 15px;
  margin: 0;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  border-bottom: 2px solid var(--color__chacoal);
}
.p-order-confirm .order-confirm-form__content-description {
  margin: 0;
  margin-bottom: 30px;
  font-size: 14px;
}
.p-order-confirm .order-confirm-form__content-wrap {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.p-order-confirm .order-confirm-form__content-wrap .c-order-section {
  width: 100%;
}
.p-order-confirm .order-confirm-form__content-wrap .c-order-section__title .c-button {
  float: right;
  font-size: 12px;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar {
  background: var(--color__white);
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-summary {
  margin: 40px 0 16px;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-summary dl {
  display: flex;
  flex-wrap: wrap;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-summary dl dt {
  width: 180px;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-summary dl dd {
  width: calc(100% - 180px);
  margin-bottom: 16px;
  text-align: right;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-summary dl dd:last-of-type {
  margin-bottom: 0;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 30px;
  margin: 30px 0 20px;
  font-size: 18px;
  font-weight: bold;
  border-top: 2px solid var(--color__gray--light);
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-total__value {
  color: var(--color__green--dark);
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .tax-info {
  color: var(--color__gray--dark);
  text-align: right;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .tax-info__price:not(:last-child)::after {
  content: "、";
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-regular-toggle {
  margin: 18px 0;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-regular-toggle button {
  padding: 0;
  color: var(--color__blue);
  cursor: pointer;
  background: transparent;
  border: 0;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-regular .regular-table {
  width: 100%;
  border-collapse: collapse;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-regular .regular-table tr {
  border: 1px solid var(--color__gray);
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-regular .regular-table th {
  padding: 10px;
  font-weight: normal;
  background: var(--color__gray--light);
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-regular .regular-table td {
  padding: 10px;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-regular__title {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-regular__product {
  display: flex;
  flex-flow: column;
  gap: 10px;
  margin-bottom: 30px;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-regular__product .product-name {
  font-weight: bold;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-regular__product .regular-price-list tr.regular-price-list__title th {
  font-size: 16px;
  color: var(--color__white);
  text-align: center;
  background: var(--color__black);
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-regular__product .regular-price-list td:nth-child(1) {
  width: 25%;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-regular__product .regular-price-summary tr.regular-price-summary__total {
  font-weight: bold;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-regular__product .regular-price-summary tr.regular-price-summary__total th {
  background-color: transparent;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-regular__product .regular-price-summary tr.regular-price-summary__total td {
  font-size: 18px;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-regular__product .regular-price-summary th {
  width: 140px;
  font-weight: normal;
  text-align: left;
  background: var(--color__gray--light);
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-regular__product .regular-price-summary td {
  text-align: right;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-regular__product .important-matter {
  padding: 20px;
  line-height: 2;
  background: var(--color__yellow--light);
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-regular__product + .p-order-confirm .order-confirm-form__content-wrap .sidebar .order-regular__fee {
  padding-top: 30px;
  border-top: 1px solid var(--color__gray--light);
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-regular__fee .regular-fee-list td:nth-child(1) {
  width: 25%;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .return-policy-link {
  margin: 18px 0;
  text-align: right;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-confirm {
  margin: 40px 30px;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-confirm .c-button-group {
  gap: 20px;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-confirm .c-button {
  font-size: 16px;
  font-weight: bold;
}
.p-order-confirm .order-confirm-form__content-wrap .extra-interval {
  padding-left: 110px;
}
.p-order-confirm .order-confirm-form__content-wrap .point-info {
  display: inline-block;
  padding: 20px 0;
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.8;
  border-top: 1px solid var(--color__gray--light);
  border-bottom: 1px solid var(--color__gray--light);
}
.p-order-confirm .order-confirm-form__content-wrap .product-list {
  margin-bottom: 20px;
}
.p-order-confirm .order-confirm-form__content-wrap .product-list__item + .product-list__item {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--color__gray);
}
.p-order-confirm .order-confirm-form__content-wrap .product-info {
  display: flex;
  gap: 20px;
}
.p-order-confirm .order-confirm-form__content-wrap .product-info__image {
  min-width: 120px;
}
.p-order-confirm .order-confirm-form__content-wrap .product-info__detail > div:not(.c-product-timesale) {
  margin-bottom: 8px;
}
.p-order-confirm .order-confirm-form__content-wrap .product-info__subtotal {
  min-width: 168px;
  margin-left: auto;
}
.p-order-confirm .order-confirm-form__content-wrap .product-info .product-returning {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.p-order-confirm .order-confirm-form__content-wrap .product-info .product-subtotal {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.p-order-confirm .order-confirm-form__content-wrap .product-info .product-subtotal__item {
  display: flex;
  font-size: 14px;
}
.p-order-confirm .order-confirm-form__content-wrap .product-info .product-subtotal__item + .product-subtotal__item {
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid var(--color__gray--light);
}
.p-order-confirm .order-confirm-form__content-wrap .product-info .product-subtotal__item--price {
  font-weight: bold;
}
.p-order-confirm .order-confirm-form__content-wrap .product-info .product-subtotal__item--price .price {
  text-align: right;
}
.p-order-confirm .order-confirm-form__content-wrap .product-info .product-subtotal__item > :last-of-type {
  margin-left: auto;
}
.p-order-confirm .lp-ups-content__link img {
  width: 100%;
}
.p-order-confirm .lp-ups-content .c-button-group {
  position: relative;
}
.p-order-confirm .lp-ups-content .c-button-group .c-button {
  width: 260px;
  font-size: 14px;
}
.p-order-confirm .lp-ups-content .c-button-group .lp-back {
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-order-confirm .lp-ups-content .c-button-group .lp-back .c-button {
  width: 140px;
}

.p-order-complete.preview .order-complete-form,
.p-order-complete.preview .p-lp-ups {
  pointer-events: none;
  filter: grayscale(1);
}
.p-order-complete.preview .order-complete-form::before,
.p-order-complete.preview .p-lp-ups::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 24px;
  font-weight: bold;
  color: var(--color__white);
  content: "プレビュー";
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}
.p-order-complete.preview .lp-ups-content > .c-button-group {
  pointer-events: none;
  opacity: 0.2;
}

.p-order-complete.preview .order-complete-form,
.p-order-complete.preview .p-lp-ups {
  pointer-events: none;
  filter: grayscale(1);
}
.p-order-complete.preview .order-complete-form::before,
.p-order-complete.preview .p-lp-ups::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 24px;
  font-weight: bold;
  color: var(--color__white);
  content: "プレビュー";
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 4px;
}
.p-order-complete.preview .lp-ups-content > .c-button-group {
  pointer-events: none;
  opacity: 0.2;
}
.p-order-complete .order-complete-form {
  margin-bottom: 60px;
}
.p-order-complete .order-complete-form__head h2 {
  padding-bottom: 15px;
  margin: 0;
  font-size: 28px;
  font-weight: bold;
  line-height: 1;
  border-bottom: 2px solid var(--color__chacoal);
}
.p-order-complete .order-complete-form__foot {
  text-align: center;
}
.p-order-complete .order-complete-form__content {
  padding: 0 0 40px;
}
.p-order-complete .order-complete-form__content-title {
  margin: 0;
  margin-bottom: 30px;
  font-size: 22px;
}
.p-order-complete .order-complete-form__content-description {
  margin: 0;
  margin: 30px 0;
  font-size: 14px;
}
.p-order-complete .order-complete-form__content-description--no-margin {
  margin: 0;
}
.p-order-complete .order-complete-form__content .c-table {
  margin: -10px 0 40px;
}
.p-order-complete .order-complete-form__content .c-table th {
  width: 290px;
}
.p-order-complete .order-complete-form__content .c-table span {
  display: block;
  margin-top: 4px;
  font-size: 12px;
  font-weight: normal;
}
.p-order-complete .line-connect {
  width: 640px;
  margin: 0 auto 50px;
  background-color: var(--color__gray--lighter);
  border-radius: 6px;
}
.p-order-complete .line-connect__title {
  padding: 10px 30px;
  font-size: 18px;
  color: var(--color__white);
  background-color: var(--color__chacoal);
  border-radius: 6px 6px 0 0;
}
.p-order-complete .line-connect__content {
  padding: 30px;
}
.p-order-complete .line-connect__content .c-line-connect-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 192px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  background-color: #06c755;
  border: none;
  border-radius: 6px;
}
.p-order-complete .line-connect__content .c-line-connect-button .left {
  width: 40px;
}
.p-order-complete .line-connect__content .c-line-connect-button .left img {
  width: 28px;
  margin: auto;
}
.p-order-complete .line-connect__content .c-line-connect-button .right {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: var(--color__white);
  border-left: 2px solid rgba(0, 0, 0, 0.08);
}
.p-order-complete .line-connect__content .c-line-connect-button:hover ::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
.p-order-complete .line-connect__content .c-line-connect-button:active ::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}
.p-order-complete .line-connect__content .c-line-connect-button {
  margin: 20px auto 0;
}
.p-order-complete .lp-ups-content {
  margin-bottom: 40px;
}
.p-order-complete .lp-ups-content .confirm-offer-message {
  margin-top: 40px;
  font-size: 22px;
  text-align: center;
}

.p-order-zeus-card .c-payment-module__card-form {
  margin: 0;
  background-color: transparent;
}
.p-order-zeus-card #zeus_table_shopping {
  width: 100%;
  padding: 0;
}
.p-order-zeus-card #zeus_token_card_info_area {
  display: grid;
  width: 100%;
}
.p-order-zeus-card #zeus_token_card_info_area input[type=tel],
.p-order-zeus-card #zeus_token_card_info_area input[type=text] {
  margin: 14px;
}
.p-order-zeus-card #zeus_token_card_info_area select {
  padding: 5px;
  margin: 14px;
}
.p-order-zeus-card #zeus_new_card_area label,
.p-order-zeus-card #zeus_registerd_card_area label {
  position: relative;
  display: flex;
  align-items: center;
  padding: 14px;
  margin-top: 0;
  background-color: var(--color__gray--light);
  border-right: 1px solid var(--color__gray);
}
.p-order-zeus-card #zeus_new_card_area label::before,
.p-order-zeus-card #zeus_registerd_card_area label::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 818px;
  height: 1px;
  content: "";
  background-color: var(--color__gray);
}
.p-order-zeus-card #zeus_new_card_area label:first-child::before,
.p-order-zeus-card #zeus_registerd_card_area label:first-child::before {
  display: none;
}
.p-order-zeus-card #zeus_new_card_area label::after,
.p-order-zeus-card #zeus_registerd_card_area label::after {
  margin-left: auto;
  content: "必須";
}
.p-order-zeus-card #zeus_token_action_type_quick,
.p-order-zeus-card label[for=zeus_token_action_type_quick] {
  display: none;
}
.p-order-zeus-card #zeus_registerd_card_area {
  display: grid;
  grid-template-columns: 276px 120px 1fr;
  grid-row-start: 2;
  grid-row-end: 2;
  grid-column-start: 1;
  grid-column-end: 2;
  width: 820px;
  margin: 0;
  background-color: var(--color__white);
  border: 1px solid var(--color__gray);
}
.p-order-zeus-card #zeus_registerd_card_area:empty {
  border: none;
}
.p-order-zeus-card #zeus_registerd_card_area label[for=zeus_token_card_cvv_for_registerd_card] {
  grid-row-start: 1;
  grid-row-end: 1;
  grid-column-start: 1;
  grid-column-end: 1;
}
.p-order-zeus-card #zeus_registerd_card_area #zeus_token_card_cvv_for_registerd_card {
  grid-row-start: 1;
  grid-row-end: 1;
  grid-column-start: 2;
  grid-column-end: 2;
}
.p-order-zeus-card #zeus_token_action_type_new {
  display: none;
}
.p-order-zeus-card #zeus_token_action_type_new:checked + label::after {
  display: block;
}
.p-order-zeus-card label[for=zeus_token_action_type_new] {
  grid-row-start: 1;
  grid-row-end: 1;
  grid-column-start: 1;
  grid-column-end: 2;
  padding-left: 40px;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 24px;
  line-height: 20px;
  cursor: pointer;
}
.p-order-zeus-card label[for=zeus_token_action_type_new]::before {
  position: absolute;
  top: calc(50% - 9px);
  left: 0;
  display: block;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--color__white);
  border: 1px solid var(--color__chacoal);
  border-radius: 50%;
}
.p-order-zeus-card label[for=zeus_token_action_type_new]::after {
  position: absolute;
  top: calc(50% - 6px);
  left: 3px;
  display: none;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--color__chacoal);
  border-radius: 50%;
}
.p-order-zeus-card label[for=zeus_token_action_type_new]:empty {
  padding-left: 20px;
}
.p-order-zeus-card label[for=zeus_token_action_type_new]:empty::before {
  top: calc(50% - 13px);
}
.p-order-zeus-card label[for=zeus_token_action_type_new]:empty::after {
  top: calc(50% - 10px);
}
.p-order-zeus-card #zeus_new_card_area {
  display: grid;
  grid-template-columns: 276px 120px 30px 120px 30px 1fr;
  grid-row-start: 4;
  grid-row-end: 5;
  grid-column-start: 1;
  grid-column-end: 4;
  width: 820px;
  margin: auto;
  margin-left: 0 !important;
  background-color: var(--color__white);
  border: 1px solid var(--color__gray);
}
.p-order-zeus-card #zeus_new_card_area label[for=zeus_token_card_number] {
  grid-row-start: 1;
  grid-row-end: 1;
  grid-column-start: 1;
  grid-column-end: 1;
}
.p-order-zeus-card #zeus_new_card_area #zeus_token_card_number {
  grid-row-start: 1;
  grid-row-end: 1;
  grid-column-start: 2;
  grid-column-end: 5;
  width: 100%;
}
.p-order-zeus-card #zeus_new_card_area label[for=zeus_token_card_expires_month] {
  grid-row-start: 2;
  grid-row-end: 4;
  grid-column-start: 1;
  grid-column-end: 1;
}
.p-order-zeus-card #zeus_new_card_area #zeus_token_card_expires_month {
  grid-row-start: 2;
  grid-row-end: 2;
  grid-column-start: 2;
  grid-column-end: 2;
}
.p-order-zeus-card #zeus_new_card_area #zeus_token_card_expires_month_suffix,
.p-order-zeus-card #zeus_new_card_area #zeus_token_card_expires_year_suffix {
  display: flex;
  align-items: center;
}
.p-order-zeus-card #zeus_new_card_area #zeus_token_card_expires_month_suffix {
  grid-row-start: 2;
  grid-row-end: 2;
  grid-column-start: 3;
  grid-column-end: 3;
}
.p-order-zeus-card #zeus_new_card_area #zeus_token_card_expires_year {
  grid-row-start: 2;
  grid-row-end: 2;
  grid-column-start: 4;
  grid-column-end: 4;
}
.p-order-zeus-card #zeus_new_card_area #zeus_token_card_expires_year_suffix {
  grid-row-start: 2;
  grid-row-end: 2;
  grid-column-start: 5;
  grid-column-end: 5;
}
.p-order-zeus-card #zeus_new_card_area #zeus_token_card_expires_note {
  grid-row-start: 3;
  grid-row-end: 3;
  grid-column-start: 2;
  grid-column-end: 6;
  padding: 0 10px 10px;
  color: var(--color__gray--dark);
}
.p-order-zeus-card #zeus_new_card_area label[for=zeus_token_card_name] {
  grid-row-start: 4;
  grid-row-end: 4;
  grid-column-start: 1;
  grid-column-end: 1;
}
.p-order-zeus-card #zeus_new_card_area #zeus_token_card_name {
  grid-row-start: 4;
  grid-row-end: 4;
  grid-column-start: 2;
  grid-column-end: 5;
}
.p-order-zeus-card #zeus_new_card_area label[for=zeus_token_card_cvv] {
  grid-row-start: 5;
  grid-row-end: 5;
  grid-column-start: 1;
  grid-column-end: 1;
}
.p-order-zeus-card #zeus_new_card_area #zeus_token_card_cvv {
  grid-row-start: 5;
  grid-row-end: 5;
  grid-column-start: 2;
  grid-column-end: 2;
}
.p-order-zeus-card #save_card_area {
  width: 820px;
  margin-top: 30px;
}
.p-order-zeus-card #save_card_area .c-section {
  padding: 20px;
}

.p-entry-complete .c-section__title {
  margin-bottom: 30px;
  font-size: 22px;
  line-height: 33px;
}
.p-entry-complete .c-section .regist-message {
  margin-bottom: 100px;
}
.p-entry-complete .c-section .regist-contact {
  line-height: 24px;
}

.p-order-payment-module {
  padding-bottom: 70px;
}
.p-order-payment-module .c-order-section__title {
  margin-bottom: 30px;
}
.p-order-payment-module .hyphen {
  padding: 0 4px;
}
.p-order-payment-module .char {
  padding: 0 10px;
}
.p-order-payment-module .example-text {
  margin-top: 10px;
  color: var(--color__gray--dark);
}
.p-order-payment-module .order-payment-module-form__content {
  margin-bottom: 40px;
}
.p-order-payment-module .order-payment-module-form__foot .confirm-message {
  margin-bottom: 40px;
  text-align: center;
}
.p-order-payment-module .order-payment-module-form__foot .confirm-message .c-highlight {
  display: block;
  margin-top: 8px;
  font-size: 12px;
}

.p-lp-ups__login .omit-input, .p-lp__login .omit-input {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 15px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  background-color: var(--color__gray--lighter);
}

.p-lp #regular {
  display: none;
}
.p-lp .c-order-step {
  justify-content: center;
}
.p-lp .c-order-step .c-order-step__item {
  width: 160px;
}
.p-lp .c-order-step .c-order-step__right span {
  font-size: 14px;
}
.p-lp .c-form-error-message {
  margin-top: 10px;
  margin-bottom: 0;
}
.p-lp .validate-form.validate-error {
  background-color: var(--color__pink);
  border: 1px solid var(--color__red);
}
.p-lp .validate-error-message {
  margin-top: 10px;
  font-size: 12px;
}
.p-lp .validate-error-message a {
  color: var(--color__blue);
  text-decoration: underline;
}
.p-lp .validate-error-message:empty, .p-lp .validate-error-message + .validate-error-message {
  margin-top: 0;
}
.p-lp .c-error-message-section {
  text-align: center;
}
.p-lp__product label {
  font-size: 16px;
  font-weight: bold;
}
.p-lp__product .product-group {
  align-items: flex-start;
}
.p-lp__product .product-group__product {
  flex-grow: 1;
}
.p-lp__product .product-group__product .c-select {
  width: 100%;
}
.p-lp__product .product-group__product .c-form-error-message {
  margin-left: 62px;
}
.p-lp__product .class-category {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--color__gray);
}
.p-lp__product .class-category .c-select {
  width: fit-content;
}
.p-lp__login {
  margin-bottom: 10px;
}
.p-lp__login .c-lp-section {
  margin-bottom: 0;
}
.p-lp__login .omit-input .c-checkbox {
  display: inline-block;
  font-weight: 600;
}
.p-lp__login .omit-input .annotation {
  font-weight: 300;
}
.p-lp__login .login-section {
  margin-top: 30px;
}
.p-lp__login .login-section__contents {
  padding: 30px 122px;
  background-color: var(--color__gray--lighter);
}
.p-lp__login .login-section__contents .login-form {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.p-lp__login .login-section__contents .login-form__input table th,
.p-lp__login .login-section__contents .login-form__input table td {
  padding: 0 10px 10px 0;
}
.p-lp__login .login-section__contents .login-form__input table th {
  padding-top: 6px;
  font-weight: 300;
  text-align: left;
  vertical-align: top;
}
.p-lp__login .login-section__contents .login-form__input table tr:last-child th,
.p-lp__login .login-section__contents .login-form__input table tr:last-child td {
  padding: 0;
}
.p-lp__login .login-section__contents .login-form__submit {
  display: flex;
  align-items: center;
}
.p-lp__login .login-section__contents .login-form .c-password-textbox {
  width: 300px;
}
.p-lp__login .login-section__contents .login-form .c-password-textbox input[type=password],
.p-lp__login .login-section__contents .login-form .c-password-textbox input[type=text] {
  width: 300px;
}
.p-lp__login .line-connect {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--color__gray);
}
.p-lp__login .line-connect .c-line-connect-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 192px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  background-color: #06c755;
  border: none;
  border-radius: 6px;
}
.p-lp__login .line-connect .c-line-connect-button .left {
  width: 40px;
}
.p-lp__login .line-connect .c-line-connect-button .left img {
  width: 28px;
  margin: auto;
}
.p-lp__login .line-connect .c-line-connect-button .right {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: var(--color__white);
  border-left: 2px solid rgba(0, 0, 0, 0.08);
}
.p-lp__login .line-connect .c-line-connect-button:hover ::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
.p-lp__login .line-connect .c-line-connect-button:active ::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}
.p-lp__login .line-connect .c-line-connect-button {
  margin: auto;
}

.p-lp__address .change-address .c-form-label {
  font-weight: bold;
}
.p-lp__address .change-address .address-data-area {
  display: none;
}
.p-lp__other-address .c-lp-section {
  margin-top: -10px;
}
.p-lp__register .check-mail-message {
  margin: 10px 0 6px;
  font-size: 12px;
  font-weight: bold;
}

.p-lp__coupon table {
  text-align: left;
}
.p-lp__coupon table th,
.p-lp__coupon table td {
  padding: 10px 30px 10px 0;
}
.p-lp__coupon table th {
  font-weight: normal;
}
.p-lp__coupon table td {
  font-weight: bold;
}
.p-lp__coupon .coupon-code {
  display: flex;
  align-items: center;
  height: 40px;
  margin-right: 15px;
}
.p-lp__payment .payment-type__detail {
  margin-top: 20px;
}
.p-lp__payment .payment-type__detail .payment-affair {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.p-lp__payment .payment-type__detail .payment-affair__paragraph:empty {
  display: none;
}
.p-lp__payment .payment-type__detail .payment-affair__img {
  width: fit-content;
}
.p-lp__payment .c-payment-module {
  margin-top: 20px;
}
.p-lp__regular .delivery-interval {
  margin-top: 20px;
  margin-bottom: 30px;
}
.p-lp__regular .delivery-interval ul li {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dashed var(--color__gray);
}
.p-lp__regular .delivery-interval ul li:first-of-type {
  border-top: 1px dashed var(--color__gray);
}
.p-lp__regular .delivery-interval ul li .c-radio {
  margin-right: 60px;
}
.p-lp__regular .check-quick {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.p-lp__regular .check-quick .c-checkbox {
  font-weight: bold;
}
.p-lp__regular .check-quick .c-highlight {
  font-size: 12px;
}
.p-lp__regular .delivery-date {
  display: flex;
  gap: 20px;
}
.p-lp__regular .delivery-date li {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--color__gray--lighter);
  border: 1px solid var(--color__gray);
}
.p-lp__delivery .delivery-schedule__row {
  display: flex;
  gap: 24px;
  align-items: center;
  height: 30px;
  margin: 20px 0;
}
.p-lp__delivery .delivery-schedule__row:last-of-type {
  margin-bottom: 0;
}
.p-lp__delivery .delivery-schedule__label {
  min-width: 120px;
  font-size: 14px;
  font-weight: bold;
}
.p-lp__point .point-notice {
  width: fit-content;
  padding: 6px 12px;
  margin-bottom: 6px;
  background: var(--color__gray--lighter);
}
.p-lp__point .point-info {
  width: fit-content;
}
.p-lp__point .point-info__row {
  display: flex;
  gap: 100px;
  justify-content: space-between;
}
.p-lp__point .point-info__header {
  padding: 10px 0;
}
.p-lp__point .point-info__data {
  padding: 10px 0;
  text-align: right;
}
.p-lp__point .point-info .point-input-row {
  align-items: center;
}
.p-lp__consent .privacy-check-list li {
  padding: 20px;
  text-align: center;
  border-bottom: 1px dashed var(--color__gray);
}
.p-lp__consent .privacy-check-list li:first-of-type {
  padding-top: 0;
}
.p-lp__consent .privacy-check-list li:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.p-lp__consent .privacy-check-list li .c-checkbox label {
  justify-content: center;
  font-weight: 600;
}
.p-lp__consent .privacy-check-list__group {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.p-lp__consent .privacy-check-list .agree-check {
  width: fit-content;
  margin: auto;
}
.p-lp__submit .skip-confirm-message {
  margin-top: 40px;
  font-size: 22px;
  text-align: center;
}
.p-lp__confirm {
  margin-bottom: 30px;
}
.p-lp__confirm .class-category:empty {
  display: none;
}
.p-lp__confirm .class-category::before {
  content: "(";
}
.p-lp__confirm .class-category::after {
  content: ")";
}
.p-lp__confirm .confirm-products {
  margin-bottom: 10px;
}
.p-lp__confirm .confirm-products table {
  margin-bottom: 10px;
}
.p-lp__confirm .confirm-timesale {
  margin-bottom: 20px;
}
.p-lp__confirm .confirm-content {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.p-lp__confirm .confirm-payment {
  width: 40%;
}
.p-lp__confirm .confirm-payment table {
  width: 100%;
  border-collapse: collapse;
}
.p-lp__confirm .confirm-payment table th {
  padding: 6px 0;
  text-align: left;
}
.p-lp__confirm .confirm-payment table td {
  padding: 6px 0;
  text-align: right;
}
.p-lp__confirm .confirm-payment__total th,
.p-lp__confirm .confirm-payment__total td {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid var(--color__gray);
}
.p-lp__confirm .confirm-taxes {
  font-size: 12px;
  color: var(--color__gray--dark);
}
.p-lp__confirm .confirm-taxes li {
  text-align: right;
}
.p-lp__confirm .confirm-customr {
  width: 60%;
}
.p-lp__confirm .confirm-customr table th,
.p-lp__confirm .confirm-customr table td {
  padding: 6px;
}
.p-lp__confirm .confirm-regular {
  margin-top: 20px;
}
.p-lp__confirm .confirm-regular .c-table table th,
.p-lp__confirm .confirm-regular .c-table table td {
  padding: 6px;
}
.p-lp__confirm .confirm-regular__title {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
}
.p-lp__confirm .confirm-regular__detail .confirm-regular-detail {
  margin-top: 10px;
}
.p-lp__confirm .confirm-regular__detail .confirm-regular-detail__name {
  margin-bottom: 10px;
  font-weight: bold;
}
.p-lp__confirm .confirm-regular__detail .confirm-regular-detail__list {
  margin-bottom: 10px;
}
.p-lp__confirm .confirm-regular__detail .confirm-regular-detail__list .count {
  padding: 0 4px;
  color: var(--color__white);
  background-color: var(--color__black);
  border-radius: 4px;
}
.p-lp__confirm .confirm-regular__detail .confirm-regular-detail__row {
  margin-bottom: 8px;
}
.p-lp__confirm .confirm-regular__detail .confirm-regular-detail__row .detail-content {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}
.p-lp__confirm .confirm-regular__detail .confirm-regular-detail__row .detail-content__count {
  padding: 0 4px;
  color: var(--color__white);
  background-color: var(--color__black);
  border-radius: 4px;
}
.p-lp__confirm .confirm-regular__detail .confirm-regular-detail__row .detail-content__quantity {
  margin-left: auto;
}
.p-lp__confirm .confirm-regular__detail .confirm-regular-detail__important-matter {
  padding: 10px;
  margin-top: 10px;
  background-color: var(--color__yellow--light);
}
.p-lp__confirm .confirm-regular__detail .confirm-regular-detail__important-matter:empty {
  display: none;
}
.p-lp__confirm .confirm-regular__fee {
  margin-top: 20px;
}
.p-lp__confirm .confirm-regular__fee_add_total {
  margin-top: 20px;
}
.p-lp__confirm .confirm-regular__fee_add_total .total-table .products-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-lp__confirm .confirm-regular__fee_add_total .total-table .product-summary {
  display: flex;
  justify-content: space-between;
}
.p-lp__confirm .confirm-return {
  margin-top: 10px;
  text-align: right;
}
.p-lp .js-efo-progress {
  width: fit-content !important;
  padding: 12px 22px !important;
  margin-bottom: 10px;
  font-weight: bold;
  box-shadow: 0 3px 3px var(--color__gray) !important;
}
.p-lp .js-efo-error {
  position: absolute;
  right: 0;
  left: initial !important;
  z-index: 9;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s var(--ease-out-quad);
  transform: translateY(calc(-100% - 8px));
  animation: fadein 0.3s var(--ease-out-cubic) forwards;
}
.p-lp .js-efo-error::before {
  position: absolute;
  top: 100%;
  right: 16px;
  content: "";
  border: 5px solid transparent;
  border-top: 8px solid var(--efo-message-backgroundColor, --color__red);
}
.p-lp .js-efo-error p {
  font-size: 12px;
  line-height: 1.5;
  white-space: nowrap;
}
@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(calc(-100% - 8px));
  }
}
.p-lp .c-bundle-combination {
  display: flex;
  margin-top: 10px;
  overflow-wrap: anywhere;
}
.p-lp .c-bundle-combination button {
  background-color: transparent;
  border: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.p-lp .c-bundle-combination button:not(:disabled) {
  cursor: pointer;
}
.p-lp .c-bundle-combination__product-root {
  flex: 1;
  margin-right: 14px;
}
.p-lp .c-bundle-combination__cart-root {
  width: 206px;
}
.p-lp .c-bundle-combination .c-bundle-product {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-lp .c-bundle-combination .c-bundle-product--na {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  color: red;
  background-color: pink;
}
.p-lp .c-bundle-combination .c-bundle-product__header {
  display: flex;
  font-size: 16px;
}
.p-lp .c-bundle-combination .c-bundle-product__header-text {
  flex: 1;
}
.p-lp .c-bundle-combination .c-bundle-product__header-current-quantity {
  font-weight: bold;
  letter-spacing: 0.2rem;
}
.p-lp .c-bundle-combination .c-bundle-product__tab {
  display: flex;
}
.p-lp .c-bundle-combination .c-bundle-product__tab-button {
  flex: 1 1 0px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 5px 10px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
  color: #808080;
  border-bottom: solid 3px #ececec;
}
.p-lp .c-bundle-combination .c-bundle-product__tab-button:hover, .p-lp .c-bundle-combination .c-bundle-product__tab-button--active {
  color: #333333;
  border-bottom: solid 3px #0ab14d;
}
.p-lp .c-bundle-combination .c-bundle-product__sort {
  position: relative;
  margin-left: auto;
}
.p-lp .c-bundle-combination .c-bundle-product__sort button {
  display: flex;
  align-items: center;
  border: #333333 solid 1px;
  border-radius: 4px;
  background: #ffffff;
  color: #333333;
  font-size: 12px;
  min-width: max-content;
}
.p-lp .c-bundle-combination .c-bundle-product__sort button::before {
  display: inline-block;
  width: 16px;
  height: 16px;
  content: "";
  background: url("/assets/svg/sort.svg") center center no-repeat;
  background-size: cover;
}
.p-lp .c-bundle-combination .c-bundle-product__sort.is-active button {
  border-color: #ebebeb;
  background: #ebebeb;
}
.p-lp .c-bundle-combination .c-bundle-product__sort.is-active .c-bundle-product__sort-menu {
  display: flex;
}
.p-lp .c-bundle-combination .c-bundle-product__sort-menu {
  display: none;
  position: absolute;
  right: 0;
  z-index: 1;
  background: #ffffff;
  flex-direction: column;
  padding: 8px;
  margin-top: 4px;
  width: 120px;
  box-shadow: 3px 3px 6px 2px rgba(0, 0, 0, 0.19);
}
.p-lp .c-bundle-combination .c-bundle-product__sort-menu label {
  font-weight: normal;
  font-size: 12px;
  padding: 4px 16px;
  cursor: pointer;
}
.p-lp .c-bundle-combination .c-bundle-product__sort-menu label:has(input:checked), .p-lp .c-bundle-combination .c-bundle-product__sort-menu label:hover {
  background: #ebebeb;
}
.p-lp .c-bundle-combination .c-bundle-product__sort-menu label input {
  display: none;
}
.p-lp .c-bundle-combination .c-bundle-product__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-lp .c-bundle-combination .c-bundle-product__list-header {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  padding: 5px;
  font-size: 16px;
  border-bottom: solid 2px #000000;
}
.p-lp .c-bundle-combination .c-bundle-product__list-status {
  display: flex;
  font-size: 16px;
  padding: 12px 3px;
}
.p-lp .c-bundle-combination .c-bundle-product__list-status-text {
  flex: 1;
}
.p-lp .c-bundle-combination .c-bundle-product__list-status-current-quantity {
  font-weight: bold;
  letter-spacing: 0.2rem;
}
.p-lp .c-bundle-combination .c-bundle-product__list-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.p-lp .c-bundle-combination .c-bundle-product__product {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-self: flex-start;
  width: 100%;
  padding: 8px 10px;
  font-size: 10px;
  background-color: #ffffff;
  border: solid 1px #b3b3b3;
  border-radius: 4px;
}
.p-lp .c-bundle-combination .c-bundle-product__product-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #ebebeb;
  border: solid 1px rgba(0, 0, 0, 0.5);
}
.p-lp .c-bundle-combination .c-bundle-product__product-image-frame .image {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}
.p-lp .c-bundle-combination .c-bundle-product__product-meta ::after {
  display: table;
  clear: both;
  content: "";
}
.p-lp .c-bundle-combination .c-bundle-product__product-description {
  display: inline-block;
}
.p-lp .c-bundle-combination .c-bundle-product__product-extra-price {
  width: fit-content;
  padding: 2px 5px;
  font-size: 10px;
  line-height: 1.1;
  color: #ffffff;
  border-radius: 3px;
}
.p-lp .c-bundle-combination .c-bundle-product__product-extra-price--plus {
  background-color: #8bb5f4;
}
.p-lp .c-bundle-combination .c-bundle-product__product-extra-price--minus {
  background-color: #f48b8b;
}
.p-lp .c-bundle-combination .c-bundle-product__product-extra-price--align-right {
  float: right;
}
.p-lp .c-bundle-combination .c-bundle-product__product-classcategories {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.p-lp .c-bundle-combination .c-bundle-product__product-classcategories div:last-child {
  flex: 1;
}
.p-lp .c-bundle-combination .c-bundle-product__product-classcategories label {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 10px;
  font-weight: normal;
}
.p-lp .c-bundle-combination .c-bundle-product__product-classcategories-label-value {
  width: 40px;
  min-width: 40px;
}
.p-lp .c-bundle-combination .c-bundle-product__product-classcategories select {
  width: 100%;
  height: 22px;
  font-size: 10px;
  font-weight: normal;
}
.p-lp .c-bundle-combination .c-bundle-product__product-classcategories .c-select select {
  padding-right: 24px;
  padding-left: 4px;
}
.p-lp .c-bundle-combination .c-bundle-product__product-classcategories .c-select i {
  width: 20px;
}
.p-lp .c-bundle-combination .c-bundle-product__product-button-group {
  display: flex;
  gap: 10px;
}
.p-lp .c-bundle-combination .c-bundle-product__product-button {
  flex-grow: 1;
  font-size: 10px;
  border-radius: 3px;
}
.p-lp .c-bundle-combination .c-bundle-product__product-button--quantity-increment {
  color: #6c9925;
  border: solid 1px #6c9925;
}
.p-lp .c-bundle-combination .c-bundle-product__product-button--quantity-decrement {
  color: #333333;
  border: solid 1px #979797;
}
.p-lp .c-bundle-combination .c-bundle-product__product-button:disabled {
  color: gray;
  cursor: default;
  background-color: lightgray;
  border: solid 1px gray;
}
.p-lp .c-bundle-combination .c-bundle-product__product-quantity {
  display: flex;
  justify-content: flex-end;
  letter-spacing: 0.1rem;
}
.p-lp .c-bundle-combination .c-bundle-product__product-unavailable-temporarily {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
}
.p-lp .c-bundle-combination .c-bundle-combination-cart {
  position: sticky;
  top: 0;
  background-color: #ebebeb;
  border: solid 1px #b3b3b3;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
}
.p-lp .c-bundle-combination .c-bundle-combination-cart--ok .c-bundle-combination-cart-header {
  background-color: #dceed8 !important;
}
.p-lp .c-bundle-combination .c-bundle-combination-cart--ok .c-bundle-combination-cart-item {
  background-color: #ebf7f1 !important;
}
.p-lp .c-bundle-combination .c-bundle-combination-cart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  color: #333333;
}
.p-lp .c-bundle-combination .c-bundle-combination-cart-header-quantity {
  font-size: 13px;
  font-weight: bold;
}
.p-lp .c-bundle-combination .c-bundle-combination-cart-header-delete-all {
  font-size: 10px;
}
.p-lp .c-bundle-combination .c-bundle-combination-cart-item {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  padding: 8px 5px;
  margin-top: 1px;
  background-color: #ffffff;
}
.p-lp .c-bundle-combination .c-bundle-combination-cart-item--error {
  background-color: var(--color__pink, #fdeaea);
}
.p-lp .c-bundle-combination .c-bundle-combination-cart-item-actions {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  width: 20px;
}
.p-lp .c-bundle-combination .c-bundle-combination-cart-item-actions-quantity {
  font-size: 10px;
}
.p-lp .c-bundle-combination .c-bundle-combination-cart-item-actions-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 20px;
}
.p-lp .c-bundle-combination .c-bundle-combination-cart-item-image-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 67px;
  min-width: 67px;
  background-color: #ebebeb;
  border: solid 1px rgba(0, 0, 0, 0.5);
}
.p-lp .c-bundle-combination .c-bundle-combination-cart-item-image-frame .image {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}
.p-lp .c-bundle-combination .c-bundle-combination-cart-item-meta {
  flex-grow: 1;
}
.p-lp .c-bundle-combination .c-bundle-combination-cart-item-name {
  font-size: 10px;
}
.p-lp .c-bundle-combination .c-bundle-combination-cart-item-delete-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-family: monospace;
  content: "+";
}
.p-lp .c-bundle-combination .c-bundle-combination-cart-item-delete-button::after {
  display: block;
  font-size: 20px;
  content: "×"; /* This will render the 'X' */
}
.p-lp .c-bundle-combination .c-bundle-combination-cart__font--sm {
  font-size: 11px;
}
.p-lp .c-bundle-combination .c-bundle-combination-cart__alert {
  color: red;
}
.p-lp .c-bundle-combination__hidden_until_all_requirements_are_fulfilled {
  display: none;
}

.p-lp.preview {
  pointer-events: none;
  cursor: not-allowed;
  filter: grayscale(1);
  }
.p-lp.preview::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 24px;
  font-weight: bold;
  color: var(--color__white);
  content: "プレビュー";
  background-color: rgba(0, 0, 0, 0.5);
}

.confirm-loading {
  position: relative;
  width: 44px;
  height: 44px;
  margin: 40px auto 0;
}

.sample-button-style {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 0 auto 40px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  cursor: pointer;
  background: linear-gradient(to bottom, #1ba110 0%, #18830f 100%);
  border: 1px solid #1ba110;
  border-radius: 6px;
}

.grecaptcha-badge {
  margin-bottom: 160px;
}

.p-lp-ups #regular {
  display: none;
}
.p-lp-ups .c-order-step {
  justify-content: center;
}
.p-lp-ups .c-order-step .c-order-step__item {
  width: 160px;
}
.p-lp-ups .c-order-step .c-order-step__right span {
  font-size: 14px;
}
.p-lp-ups .c-form-error-message {
  margin-top: 10px;
  margin-bottom: 0;
}
.p-lp-ups .validate-form.validate-error {
  background-color: var(--color__pink);
  border: 1px solid var(--color__red);
}
.p-lp-ups .validate-error-message {
  margin-top: 10px;
  font-size: 12px;
}
.p-lp-ups .validate-error-message a {
  color: var(--color__blue);
  text-decoration: underline;
}
.p-lp-ups .validate-error-message:empty, .p-lp-ups .validate-error-message + .validate-error-message {
  margin-top: 0;
}
.p-lp-ups .c-error-message-section {
  text-align: center;
}
.p-lp-ups__product label {
  font-size: 16px;
  font-weight: bold;
}
.p-lp-ups__product .product-group {
  align-items: flex-start;
}
.p-lp-ups__product .product-group__product {
  flex-grow: 1;
}
.p-lp-ups__product .product-group__product .c-select {
  width: 100%;
}
.p-lp-ups__product .product-group__product .c-form-error-message {
  margin-left: 62px;
}
.p-lp-ups__product .class-category {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--color__gray);
}
.p-lp-ups__product .class-category .c-select {
  width: fit-content;
}
.p-lp-ups__login {
  margin-bottom: 10px;
}
.p-lp-ups__login .c-lp-section {
  margin-bottom: 0;
}
.p-lp-ups__login .omit-input .c-checkbox {
  display: inline-block;
  font-weight: 600;
}
.p-lp-ups__login .omit-input .annotation {
  font-weight: 300;
}
.p-lp-ups__login .login-section {
  margin-top: 30px;
}
.p-lp-ups__login .login-section__contents {
  padding: 30px 122px;
  background-color: var(--color__gray--lighter);
}
.p-lp-ups__login .login-section__contents .login-form {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.p-lp-ups__login .login-section__contents .login-form__input table th,
.p-lp-ups__login .login-section__contents .login-form__input table td {
  padding: 0 10px 10px 0;
}
.p-lp-ups__login .login-section__contents .login-form__input table th {
  padding-top: 6px;
  font-weight: 300;
  text-align: left;
  vertical-align: top;
}
.p-lp-ups__login .login-section__contents .login-form__input table tr:last-child th,
.p-lp-ups__login .login-section__contents .login-form__input table tr:last-child td {
  padding: 0;
}
.p-lp-ups__login .login-section__contents .login-form__submit {
  display: flex;
  align-items: center;
}
.p-lp-ups__login .login-section__contents .login-form .c-password-textbox {
  width: 300px;
}
.p-lp-ups__login .login-section__contents .login-form .c-password-textbox input[type=password],
.p-lp-ups__login .login-section__contents .login-form .c-password-textbox input[type=text] {
  width: 300px;
}
.p-lp-ups__login .line-connect {
  padding-top: 30px;
  margin-top: 30px;
  border-top: 1px solid var(--color__gray);
}
.p-lp-ups__login .line-connect .c-line-connect-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 192px;
  height: 40px;
  padding: 0;
  cursor: pointer;
  background-color: #06c755;
  border: none;
  border-radius: 6px;
}
.p-lp-ups__login .line-connect .c-line-connect-button .left {
  width: 40px;
}
.p-lp-ups__login .line-connect .c-line-connect-button .left img {
  width: 28px;
  margin: auto;
}
.p-lp-ups__login .line-connect .c-line-connect-button .right {
  display: flex;
  flex-grow: 1;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  color: var(--color__white);
  border-left: 2px solid rgba(0, 0, 0, 0.08);
}
.p-lp-ups__login .line-connect .c-line-connect-button:hover ::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 6px;
}
.p-lp-ups__login .line-connect .c-line-connect-button:active ::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}
.p-lp-ups__login .line-connect .c-line-connect-button {
  margin: auto;
}
.p-lp-ups__address .change-address .c-form-label {
  font-weight: bold;
}
.p-lp-ups__address .change-address .address-data-area {
  display: none;
}
.p-lp-ups__other-address .c-lp-section {
  margin-top: -10px;
}
.p-lp-ups__register .check-mail-message {
  margin: 10px 0 6px;
  font-size: 12px;
  font-weight: bold;
}

.p-lp-ups__coupon table {
  text-align: left;
}
.p-lp-ups__coupon table th,
.p-lp-ups__coupon table td {
  padding: 10px 30px 10px 0;
}
.p-lp-ups__coupon table th {
  font-weight: normal;
}
.p-lp-ups__coupon table td {
  font-weight: bold;
}
.p-lp-ups__coupon .coupon-code {
  display: flex;
  align-items: center;
  height: 40px;
  margin-right: 15px;
}
.p-lp-ups__payment .payment-type__detail {
  margin-top: 20px;
}
.p-lp-ups__payment .payment-type__detail .payment-affair {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.p-lp-ups__payment .payment-type__detail .payment-affair__paragraph:empty {
  display: none;
}
.p-lp-ups__payment .payment-type__detail .payment-affair__img {
  width: fit-content;
}
.p-lp-ups__payment .c-payment-module {
  margin-top: 20px;
}
.p-lp-ups__regular .delivery-interval {
  margin-top: 20px;
  margin-bottom: 30px;
}
.p-lp-ups__regular .delivery-interval ul li {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px dashed var(--color__gray);
}
.p-lp-ups__regular .delivery-interval ul li:first-of-type {
  border-top: 1px dashed var(--color__gray);
}
.p-lp-ups__regular .delivery-interval ul li .c-radio {
  margin-right: 60px;
}
.p-lp-ups__regular .check-quick {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.p-lp-ups__regular .check-quick .c-checkbox {
  font-weight: bold;
}
.p-lp-ups__regular .check-quick .c-highlight {
  font-size: 12px;
}
.p-lp-ups__regular .delivery-date {
  display: flex;
  gap: 20px;
}
.p-lp-ups__regular .delivery-date li {
  width: 100%;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  background-color: var(--color__gray--lighter);
  border: 1px solid var(--color__gray);
}
.p-lp-ups__delivery .delivery-schedule__row {
  display: flex;
  gap: 24px;
  align-items: center;
  height: 30px;
  margin: 20px 0;
}
.p-lp-ups__delivery .delivery-schedule__row:last-of-type {
  margin-bottom: 0;
}
.p-lp-ups__delivery .delivery-schedule__label {
  min-width: 120px;
  font-size: 14px;
  font-weight: bold;
}
.p-lp-ups__point .point-notice {
  width: fit-content;
  padding: 6px 12px;
  margin-bottom: 6px;
  background: var(--color__gray--lighter);
}
.p-lp-ups__point .point-info {
  width: fit-content;
}
.p-lp-ups__point .point-info__row {
  display: flex;
  gap: 100px;
  justify-content: space-between;
}
.p-lp-ups__point .point-info__header {
  padding: 10px 0;
}
.p-lp-ups__point .point-info__data {
  padding: 10px 0;
  text-align: right;
}
.p-lp-ups__point .point-info .point-input-row {
  align-items: center;
}
.p-lp-ups__consent .privacy-check-list li {
  padding: 20px;
  text-align: center;
  border-bottom: 1px dashed var(--color__gray);
}
.p-lp-ups__consent .privacy-check-list li:first-of-type {
  padding-top: 0;
}
.p-lp-ups__consent .privacy-check-list li:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.p-lp-ups__consent .privacy-check-list li .c-checkbox label {
  justify-content: center;
  font-weight: 600;
}
.p-lp-ups__consent .privacy-check-list__group {
  display: flex;
  flex-flow: column;
  gap: 10px;
}
.p-lp-ups__consent .privacy-check-list .agree-check {
  width: fit-content;
  margin: auto;
}
.p-lp-ups__submit .skip-confirm-message {
  margin-top: 40px;
  font-size: 22px;
  text-align: center;
}
.p-lp-ups__confirm {
  margin-bottom: 30px;
}
.p-lp-ups__confirm .class-category:empty {
  display: none;
}
.p-lp-ups__confirm .class-category::before {
  content: "(";
}
.p-lp-ups__confirm .class-category::after {
  content: ")";
}
.p-lp-ups__confirm .confirm-products {
  margin-bottom: 10px;
}
.p-lp-ups__confirm .confirm-products table {
  margin-bottom: 10px;
}
.p-lp-ups__confirm .confirm-timesale {
  margin-bottom: 20px;
}
.p-lp-ups__confirm .confirm-content {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.p-lp-ups__confirm .confirm-payment {
  width: 40%;
}
.p-lp-ups__confirm .confirm-payment table {
  width: 100%;
  border-collapse: collapse;
}
.p-lp-ups__confirm .confirm-payment table th {
  padding: 6px 0;
  text-align: left;
}
.p-lp-ups__confirm .confirm-payment table td {
  padding: 6px 0;
  text-align: right;
}
.p-lp-ups__confirm .confirm-payment__total th,
.p-lp-ups__confirm .confirm-payment__total td {
  padding-top: 10px;
  margin-top: 10px;
  border-top: 1px solid var(--color__gray);
}
.p-lp-ups__confirm .confirm-taxes {
  font-size: 12px;
  color: var(--color__gray--dark);
}
.p-lp-ups__confirm .confirm-taxes li {
  text-align: right;
}
.p-lp-ups__confirm .confirm-customr {
  width: 60%;
}
.p-lp-ups__confirm .confirm-customr table th,
.p-lp-ups__confirm .confirm-customr table td {
  padding: 6px;
}
.p-lp-ups__confirm .confirm-regular {
  margin-top: 20px;
}
.p-lp-ups__confirm .confirm-regular .c-table table th,
.p-lp-ups__confirm .confirm-regular .c-table table td {
  padding: 6px;
}
.p-lp-ups__confirm .confirm-regular__title {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
}
.p-lp-ups__confirm .confirm-regular__detail .confirm-regular-detail {
  margin-top: 10px;
}
.p-lp-ups__confirm .confirm-regular__detail .confirm-regular-detail__name {
  margin-bottom: 10px;
  font-weight: bold;
}
.p-lp-ups__confirm .confirm-regular__detail .confirm-regular-detail__list {
  margin-bottom: 10px;
}
.p-lp-ups__confirm .confirm-regular__detail .confirm-regular-detail__list .count {
  padding: 0 4px;
  color: var(--color__white);
  background-color: var(--color__black);
  border-radius: 4px;
}
.p-lp-ups__confirm .confirm-regular__detail .confirm-regular-detail__row {
  margin-bottom: 8px;
}
.p-lp-ups__confirm .confirm-regular__detail .confirm-regular-detail__row .detail-content {
  display: flex;
  gap: 4px;
  margin-bottom: 4px;
}
.p-lp-ups__confirm .confirm-regular__detail .confirm-regular-detail__row .detail-content__count {
  padding: 0 4px;
  color: var(--color__white);
  background-color: var(--color__black);
  border-radius: 4px;
}
.p-lp-ups__confirm .confirm-regular__detail .confirm-regular-detail__row .detail-content__quantity {
  margin-left: auto;
}
.p-lp-ups__confirm .confirm-regular__detail .confirm-regular-detail__important-matter {
  padding: 10px;
  margin-top: 10px;
  background-color: var(--color__yellow--light);
}
.p-lp-ups__confirm .confirm-regular__detail .confirm-regular-detail__important-matter:empty {
  display: none;
}
.p-lp-ups__confirm .confirm-regular__fee {
  margin-top: 20px;
}
.p-lp-ups__confirm .confirm-regular__fee_add_total {
  margin-top: 20px;
}
.p-lp-ups__confirm .confirm-regular__fee_add_total .total-table .products-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-lp-ups__confirm .confirm-regular__fee_add_total .total-table .product-summary {
  display: flex;
  justify-content: space-between;
}
.p-lp-ups__confirm .confirm-return {
  margin-top: 10px;
  text-align: right;
}
.p-lp-ups .js-efo-progress {
  width: fit-content !important;
  padding: 12px 22px !important;
  margin-bottom: 10px;
  font-weight: bold;
  box-shadow: 0 3px 3px var(--color__gray) !important;
}
.p-lp-ups .js-efo-error {
  position: absolute;
  right: 0;
  left: initial !important;
  z-index: 9;
  padding: 6px;
  border-radius: 6px;
  transition: 0.3s var(--ease-out-quad);
  transform: translateY(calc(-100% - 8px));
  animation: fadein 0.3s var(--ease-out-cubic) forwards;
}
.p-lp-ups .js-efo-error::before {
  position: absolute;
  top: 100%;
  right: 16px;
  content: "";
  border: 5px solid transparent;
  border-top: 8px solid var(--efo-message-backgroundColor, --color__red);
}
.p-lp-ups .js-efo-error p {
  font-size: 12px;
  line-height: 1.5;
  white-space: nowrap;
}
@keyframes fadein {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(calc(-100% - 8px));
  }
}
.p-lp-ups__product .c-lp-section {
  border-top: none;
}
.p-lp-ups__product .product-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-lp-ups__product .product-group .product-name {
  font-weight: bold;
}
.p-lp-ups__payment .change-payment {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-lp-ups__payment .regular-attention {
  margin-top: 10px;
}
.p-lp-ups__regular .delivery-interval li .c-radio {
  margin-right: 20px;
}

.p-lp-zeus-card .c-payment-module__card-form {
  margin: 0;
  background-color: transparent;
}
.p-lp-zeus-card #zeus_table_shopping {
  width: 100%;
  padding: 0;
}
.p-lp-zeus-card #zeus_token_card_info_area {
  display: grid;
  width: 100%;
}
.p-lp-zeus-card #zeus_token_card_info_area input[type=tel],
.p-lp-zeus-card #zeus_token_card_info_area input[type=text] {
  margin: 14px;
}
.p-lp-zeus-card #zeus_token_card_info_area select {
  padding: 5px;
  margin: 14px;
}
.p-lp-zeus-card #zeus_new_card_area label,
.p-lp-zeus-card #zeus_registerd_card_area label {
  position: relative;
  display: flex;
  align-items: center;
  padding: 14px;
  margin-top: 0;
  background-color: var(--color__gray--light);
  border-right: 1px solid var(--color__gray);
}
.p-lp-zeus-card #zeus_new_card_area label::before,
.p-lp-zeus-card #zeus_registerd_card_area label::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 818px;
  height: 1px;
  content: "";
  background-color: var(--color__gray);
}
.p-lp-zeus-card #zeus_new_card_area label:first-child::before,
.p-lp-zeus-card #zeus_registerd_card_area label:first-child::before {
  display: none;
}
.p-lp-zeus-card #zeus_new_card_area label::after,
.p-lp-zeus-card #zeus_registerd_card_area label::after {
  margin-left: auto;
  content: "必須";
}
.p-lp-zeus-card #zeus_token_action_type_quick,
.p-lp-zeus-card label[for=zeus_token_action_type_quick] {
  display: none;
}
.p-lp-zeus-card #zeus_registerd_card_area {
  display: grid;
  grid-template-columns: 276px 120px 1fr;
  grid-row-start: 2;
  grid-row-end: 2;
  grid-column-start: 1;
  grid-column-end: 2;
  width: 820px;
  margin: 0;
  background-color: var(--color__white);
  border: 1px solid var(--color__gray);
}
.p-lp-zeus-card #zeus_registerd_card_area:empty {
  border: none;
}
.p-lp-zeus-card #zeus_registerd_card_area label[for=zeus_token_card_cvv_for_registerd_card] {
  grid-row-start: 1;
  grid-row-end: 1;
  grid-column-start: 1;
  grid-column-end: 1;
  padding-left: 40px;
}
.p-lp-zeus-card #zeus_registerd_card_area #zeus_token_card_cvv_for_registerd_card {
  grid-row-start: 1;
  grid-row-end: 1;
  grid-column-start: 2;
  grid-column-end: 2;
}
.p-lp-zeus-card #zeus_token_action_type_new {
  display: none;
}
.p-lp-zeus-card #zeus_token_action_type_new:checked + label::after {
  display: block;
}
.p-lp-zeus-card label[for=zeus_token_action_type_new] {
  grid-row-start: 1;
  grid-row-end: 1;
  grid-column-start: 1;
  grid-column-end: 2;
  padding-left: 40px;
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  display: inline-block;
  padding-left: 24px;
  line-height: 20px;
  cursor: pointer;
}
.p-lp-zeus-card label[for=zeus_token_action_type_new]::before {
  position: absolute;
  top: calc(50% - 9px);
  left: 0;
  display: block;
  width: 18px;
  height: 18px;
  content: "";
  background: var(--color__white);
  border: 1px solid var(--color__chacoal);
  border-radius: 50%;
}
.p-lp-zeus-card label[for=zeus_token_action_type_new]::after {
  position: absolute;
  top: calc(50% - 6px);
  left: 3px;
  display: none;
  width: 12px;
  height: 12px;
  content: "";
  background: var(--color__chacoal);
  border-radius: 50%;
}
.p-lp-zeus-card label[for=zeus_token_action_type_new]:empty {
  padding-left: 20px;
}
.p-lp-zeus-card label[for=zeus_token_action_type_new]:empty::before {
  top: calc(50% - 13px);
}
.p-lp-zeus-card label[for=zeus_token_action_type_new]:empty::after {
  top: calc(50% - 10px);
}
.p-lp-zeus-card #zeus_new_card_area {
  display: grid;
  grid-template-columns: 276px 120px 30px 120px 30px 1fr;
  grid-row-start: 4;
  grid-row-end: 5;
  grid-column-start: 1;
  grid-column-end: 4;
  width: 820px;
  margin: auto;
  margin-left: 0 !important;
  background-color: var(--color__white);
  border: 1px solid var(--color__gray);
}
.p-lp-zeus-card #zeus_new_card_area label[for=zeus_token_card_number] {
  grid-row-start: 1;
  grid-row-end: 1;
  grid-column-start: 1;
  grid-column-end: 1;
}
.p-lp-zeus-card #zeus_new_card_area #zeus_token_card_number {
  grid-row-start: 1;
  grid-row-end: 1;
  grid-column-start: 2;
  grid-column-end: 5;
  width: 100%;
}
.p-lp-zeus-card #zeus_new_card_area label[for=zeus_token_card_expires_month] {
  grid-row-start: 2;
  grid-row-end: 4;
  grid-column-start: 1;
  grid-column-end: 1;
}
.p-lp-zeus-card #zeus_new_card_area #zeus_token_card_expires_month {
  grid-row-start: 2;
  grid-row-end: 2;
  grid-column-start: 2;
  grid-column-end: 2;
}
.p-lp-zeus-card #zeus_new_card_area #zeus_token_card_expires_month_suffix,
.p-lp-zeus-card #zeus_new_card_area #zeus_token_card_expires_year_suffix {
  display: flex;
  align-items: center;
}
.p-lp-zeus-card #zeus_new_card_area #zeus_token_card_expires_month_suffix {
  grid-row-start: 2;
  grid-row-end: 2;
  grid-column-start: 3;
  grid-column-end: 3;
}
.p-lp-zeus-card #zeus_new_card_area #zeus_token_card_expires_year {
  grid-row-start: 2;
  grid-row-end: 2;
  grid-column-start: 4;
  grid-column-end: 4;
}
.p-lp-zeus-card #zeus_new_card_area #zeus_token_card_expires_year_suffix {
  grid-row-start: 2;
  grid-row-end: 2;
  grid-column-start: 5;
  grid-column-end: 5;
}
.p-lp-zeus-card #zeus_new_card_area #zeus_token_card_expires_note {
  grid-row-start: 3;
  grid-row-end: 3;
  grid-column-start: 2;
  grid-column-end: 6;
  padding: 0 10px 10px;
  color: var(--color__gray--dark);
}
.p-lp-zeus-card #zeus_new_card_area label[for=zeus_token_card_name] {
  grid-row-start: 4;
  grid-row-end: 4;
  grid-column-start: 1;
  grid-column-end: 1;
}
.p-lp-zeus-card #zeus_new_card_area #zeus_token_card_name {
  grid-row-start: 4;
  grid-row-end: 4;
  grid-column-start: 2;
  grid-column-end: 5;
}
.p-lp-zeus-card #zeus_new_card_area label[for=zeus_token_card_cvv] {
  grid-row-start: 5;
  grid-row-end: 5;
  grid-column-start: 1;
  grid-column-end: 1;
}
.p-lp-zeus-card #zeus_new_card_area #zeus_token_card_cvv {
  grid-row-start: 5;
  grid-row-end: 5;
  grid-column-start: 2;
  grid-column-end: 2;
}
.p-lp-zeus-card #save_card_area {
  width: 820px;
  margin-top: 30px;
}
.p-lp-zeus-card #save_card_area .c-section {
  padding: 20px;
}
.p-lp-zeus-card .js-efo-error {
  right: initial;
}
.p-lp-zeus-card .js-efo-error-zeus_token_card_cvv_for_registerd_card, .p-lp-zeus-card .js-efo-error-zeus_token_card_cvv {
  left: 300px !important;
}
.p-lp-zeus-card .js-efo-error-zeus_token_card_number, .p-lp-zeus-card .js-efo-error-zeus_token_card_name {
  left: 480px !important;
}
.p-lp-zeus-card .js-efo-error-zeus_token_card_expires_month, .p-lp-zeus-card .js-efo-error-zeus_token_card_expires_year {
  left: 280px !important;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*!
 * jQuery UI CSS Framework 1.13.2
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 */
/* Layout helpers
----------------------------------*/
.ui-helper-hidden {
  display: none;
}

.ui-helper-hidden-accessible {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.ui-helper-reset {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  line-height: 1.3;
  text-decoration: none;
  font-size: 100%;
  list-style: none;
}

.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
  border-collapse: collapse;
}

.ui-helper-clearfix:after {
  clear: both;
}

.ui-helper-zfix {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  -ms-filter: "alpha(opacity=0)"; /* support: IE8 */
}

.ui-front {
  z-index: 100;
}

/* Interaction Cues
----------------------------------*/
.ui-state-disabled {
  cursor: default !important;
  pointer-events: none;
}

/* Icons
----------------------------------*/
.ui-icon {
  display: inline-block;
  vertical-align: middle;
  margin-top: -0.25em;
  position: relative;
  text-indent: -99999px;
  overflow: hidden;
  background-repeat: no-repeat;
}

.ui-widget-icon-block {
  left: 50%;
  margin-left: -8px;
  display: block;
}

/* Misc visuals
----------------------------------*/
/* Overlays */
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*!
 * jQuery UI CSS Framework 1.13.2
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/category/theming/
 *
 * To view and modify this theme, visit http://jqueryui.com/themeroller/
 */
/* Component containers
----------------------------------*/
.ui-widget {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget .ui-widget {
  font-size: 1em;
}

.ui-widget input,
.ui-widget select,
.ui-widget textarea,
.ui-widget button {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1em;
}

.ui-widget.ui-widget-content {
  border: 1px solid #c5c5c5;
}

.ui-widget-content {
  border: 1px solid #dddddd;
  background: #ffffff;
  color: #333333;
}

.ui-widget-content a {
  color: #333333;
}

.ui-widget-header {
  border: 1px solid #dddddd;
  background: #e9e9e9;
  color: #333333;
  font-weight: bold;
}

.ui-widget-header a {
  color: #333333;
}

/* Interaction states
----------------------------------*/
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
  border: 1px solid #c5c5c5;
  background: #f6f6f6;
  font-weight: normal;
  color: #454545;
}

.ui-state-default a,
.ui-state-default a:link,
.ui-state-default a:visited,
a.ui-button,
a:link.ui-button,
a:visited.ui-button,
.ui-button {
  color: #454545;
  text-decoration: none;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover,
.ui-widget-header .ui-state-hover,
.ui-state-focus,
.ui-widget-content .ui-state-focus,
.ui-widget-header .ui-state-focus,
.ui-button:hover,
.ui-button:focus {
  border: 1px solid #cccccc;
  background: #ededed;
  font-weight: normal;
  color: #2b2b2b;
}

.ui-state-hover a,
.ui-state-hover a:hover,
.ui-state-hover a:link,
.ui-state-hover a:visited,
.ui-state-focus a,
.ui-state-focus a:hover,
.ui-state-focus a:link,
.ui-state-focus a:visited,
a.ui-button:hover,
a.ui-button:focus {
  color: #2b2b2b;
  text-decoration: none;
}

.ui-visual-focus {
  box-shadow: 0 0 3px 1px rgb(94, 158, 214);
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
  border: 1px solid #003eff;
  background: #007fff;
  font-weight: normal;
  color: #ffffff;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
  border: #003eff;
  background-color: #ffffff;
}

.ui-state-active a,
.ui-state-active a:link,
.ui-state-active a:visited {
  color: #ffffff;
  text-decoration: none;
}

/* Interaction Cues
----------------------------------*/
.ui-state-highlight,
.ui-widget-content .ui-state-highlight,
.ui-widget-header .ui-state-highlight {
  border: 1px solid #dad55e;
  background: #fffa90;
  color: #777620;
}

.ui-state-checked {
  border: 1px solid #dad55e;
  background: #fffa90;
}

.ui-state-highlight a,
.ui-widget-content .ui-state-highlight a,
.ui-widget-header .ui-state-highlight a {
  color: #777620;
}

.ui-state-error,
.ui-widget-content .ui-state-error,
.ui-widget-header .ui-state-error {
  border: 1px solid #f1a899;
  background: #fddfdf;
  color: #5f3f3f;
}

.ui-state-error a,
.ui-widget-content .ui-state-error a,
.ui-widget-header .ui-state-error a {
  color: #5f3f3f;
}

.ui-state-error-text,
.ui-widget-content .ui-state-error-text,
.ui-widget-header .ui-state-error-text {
  color: #5f3f3f;
}

.ui-priority-primary,
.ui-widget-content .ui-priority-primary,
.ui-widget-header .ui-priority-primary {
  font-weight: bold;
}

.ui-priority-secondary,
.ui-widget-content .ui-priority-secondary,
.ui-widget-header .ui-priority-secondary {
  opacity: 0.7;
  -ms-filter: "alpha(opacity=70)"; /* support: IE8 */
  font-weight: normal;
}

.ui-state-disabled,
.ui-widget-content .ui-state-disabled,
.ui-widget-header .ui-state-disabled {
  opacity: 0.35;
  -ms-filter: "alpha(opacity=35)"; /* support: IE8 */
  background-image: none;
}

.ui-state-disabled .ui-icon {
  -ms-filter: "alpha(opacity=35)"; /* support: IE8 - See #6059 */
}

/* Icons
----------------------------------*/
/* states and images */
.ui-icon {
  width: 16px;
  height: 16px;
}

.ui-icon,
.ui-widget-content .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-widget-header .ui-icon {
  background-image: url("images/ui-icons_444444_256x240.png");
}

.ui-state-hover .ui-icon,
.ui-state-focus .ui-icon,
.ui-button:hover .ui-icon,
.ui-button:focus .ui-icon {
  background-image: url("images/ui-icons_555555_256x240.png");
}

.ui-state-active .ui-icon,
.ui-button:active .ui-icon {
  background-image: url("images/ui-icons_ffffff_256x240.png");
}

.ui-state-highlight .ui-icon,
.ui-button .ui-state-highlight.ui-icon {
  background-image: url("images/ui-icons_777620_256x240.png");
}

.ui-state-error .ui-icon,
.ui-state-error-text .ui-icon {
  background-image: url("images/ui-icons_cc0000_256x240.png");
}

.ui-button .ui-icon {
  background-image: url("images/ui-icons_777777_256x240.png");
}

/* positioning */
/* Three classes needed to override `.ui-button:hover .ui-icon` */
.ui-icon-blank.ui-icon-blank.ui-icon-blank {
  background-image: none;
}

.ui-icon-caret-1-n {
  background-position: 0 0;
}

.ui-icon-caret-1-ne {
  background-position: -16px 0;
}

.ui-icon-caret-1-e {
  background-position: -32px 0;
}

.ui-icon-caret-1-se {
  background-position: -48px 0;
}

.ui-icon-caret-1-s {
  background-position: -65px 0;
}

.ui-icon-caret-1-sw {
  background-position: -80px 0;
}

.ui-icon-caret-1-w {
  background-position: -96px 0;
}

.ui-icon-caret-1-nw {
  background-position: -112px 0;
}

.ui-icon-caret-2-n-s {
  background-position: -128px 0;
}

.ui-icon-caret-2-e-w {
  background-position: -144px 0;
}

.ui-icon-triangle-1-n {
  background-position: 0 -16px;
}

.ui-icon-triangle-1-ne {
  background-position: -16px -16px;
}

.ui-icon-triangle-1-e {
  background-position: -32px -16px;
}

.ui-icon-triangle-1-se {
  background-position: -48px -16px;
}

.ui-icon-triangle-1-s {
  background-position: -65px -16px;
}

.ui-icon-triangle-1-sw {
  background-position: -80px -16px;
}

.ui-icon-triangle-1-w {
  background-position: -96px -16px;
}

.ui-icon-triangle-1-nw {
  background-position: -112px -16px;
}

.ui-icon-triangle-2-n-s {
  background-position: -128px -16px;
}

.ui-icon-triangle-2-e-w {
  background-position: -144px -16px;
}

.ui-icon-arrow-1-n {
  background-position: 0 -32px;
}

.ui-icon-arrow-1-ne {
  background-position: -16px -32px;
}

.ui-icon-arrow-1-e {
  background-position: -32px -32px;
}

.ui-icon-arrow-1-se {
  background-position: -48px -32px;
}

.ui-icon-arrow-1-s {
  background-position: -65px -32px;
}

.ui-icon-arrow-1-sw {
  background-position: -80px -32px;
}

.ui-icon-arrow-1-w {
  background-position: -96px -32px;
}

.ui-icon-arrow-1-nw {
  background-position: -112px -32px;
}

.ui-icon-arrow-2-n-s {
  background-position: -128px -32px;
}

.ui-icon-arrow-2-ne-sw {
  background-position: -144px -32px;
}

.ui-icon-arrow-2-e-w {
  background-position: -160px -32px;
}

.ui-icon-arrow-2-se-nw {
  background-position: -176px -32px;
}

.ui-icon-arrowstop-1-n {
  background-position: -192px -32px;
}

.ui-icon-arrowstop-1-e {
  background-position: -208px -32px;
}

.ui-icon-arrowstop-1-s {
  background-position: -224px -32px;
}

.ui-icon-arrowstop-1-w {
  background-position: -240px -32px;
}

.ui-icon-arrowthick-1-n {
  background-position: 1px -48px;
}

.ui-icon-arrowthick-1-ne {
  background-position: -16px -48px;
}

.ui-icon-arrowthick-1-e {
  background-position: -32px -48px;
}

.ui-icon-arrowthick-1-se {
  background-position: -48px -48px;
}

.ui-icon-arrowthick-1-s {
  background-position: -64px -48px;
}

.ui-icon-arrowthick-1-sw {
  background-position: -80px -48px;
}

.ui-icon-arrowthick-1-w {
  background-position: -96px -48px;
}

.ui-icon-arrowthick-1-nw {
  background-position: -112px -48px;
}

.ui-icon-arrowthick-2-n-s {
  background-position: -128px -48px;
}

.ui-icon-arrowthick-2-ne-sw {
  background-position: -144px -48px;
}

.ui-icon-arrowthick-2-e-w {
  background-position: -160px -48px;
}

.ui-icon-arrowthick-2-se-nw {
  background-position: -176px -48px;
}

.ui-icon-arrowthickstop-1-n {
  background-position: -192px -48px;
}

.ui-icon-arrowthickstop-1-e {
  background-position: -208px -48px;
}

.ui-icon-arrowthickstop-1-s {
  background-position: -224px -48px;
}

.ui-icon-arrowthickstop-1-w {
  background-position: -240px -48px;
}

.ui-icon-arrowreturnthick-1-w {
  background-position: 0 -64px;
}

.ui-icon-arrowreturnthick-1-n {
  background-position: -16px -64px;
}

.ui-icon-arrowreturnthick-1-e {
  background-position: -32px -64px;
}

.ui-icon-arrowreturnthick-1-s {
  background-position: -48px -64px;
}

.ui-icon-arrowreturn-1-w {
  background-position: -64px -64px;
}

.ui-icon-arrowreturn-1-n {
  background-position: -80px -64px;
}

.ui-icon-arrowreturn-1-e {
  background-position: -96px -64px;
}

.ui-icon-arrowreturn-1-s {
  background-position: -112px -64px;
}

.ui-icon-arrowrefresh-1-w {
  background-position: -128px -64px;
}

.ui-icon-arrowrefresh-1-n {
  background-position: -144px -64px;
}

.ui-icon-arrowrefresh-1-e {
  background-position: -160px -64px;
}

.ui-icon-arrowrefresh-1-s {
  background-position: -176px -64px;
}

.ui-icon-arrow-4 {
  background-position: 0 -80px;
}

.ui-icon-arrow-4-diag {
  background-position: -16px -80px;
}

.ui-icon-extlink {
  background-position: -32px -80px;
}

.ui-icon-newwin {
  background-position: -48px -80px;
}

.ui-icon-refresh {
  background-position: -64px -80px;
}

.ui-icon-shuffle {
  background-position: -80px -80px;
}

.ui-icon-transfer-e-w {
  background-position: -96px -80px;
}

.ui-icon-transferthick-e-w {
  background-position: -112px -80px;
}

.ui-icon-folder-collapsed {
  background-position: 0 -96px;
}

.ui-icon-folder-open {
  background-position: -16px -96px;
}

.ui-icon-document {
  background-position: -32px -96px;
}

.ui-icon-document-b {
  background-position: -48px -96px;
}

.ui-icon-note {
  background-position: -64px -96px;
}

.ui-icon-mail-closed {
  background-position: -80px -96px;
}

.ui-icon-mail-open {
  background-position: -96px -96px;
}

.ui-icon-suitcase {
  background-position: -112px -96px;
}

.ui-icon-comment {
  background-position: -128px -96px;
}

.ui-icon-person {
  background-position: -144px -96px;
}

.ui-icon-print {
  background-position: -160px -96px;
}

.ui-icon-trash {
  background-position: -176px -96px;
}

.ui-icon-locked {
  background-position: -192px -96px;
}

.ui-icon-unlocked {
  background-position: -208px -96px;
}

.ui-icon-bookmark {
  background-position: -224px -96px;
}

.ui-icon-tag {
  background-position: -240px -96px;
}

.ui-icon-home {
  background-position: 0 -112px;
}

.ui-icon-flag {
  background-position: -16px -112px;
}

.ui-icon-calendar {
  background-position: -32px -112px;
}

.ui-icon-cart {
  background-position: -48px -112px;
}

.ui-icon-pencil {
  background-position: -64px -112px;
}

.ui-icon-clock {
  background-position: -80px -112px;
}

.ui-icon-disk {
  background-position: -96px -112px;
}

.ui-icon-calculator {
  background-position: -112px -112px;
}

.ui-icon-zoomin {
  background-position: -128px -112px;
}

.ui-icon-zoomout {
  background-position: -144px -112px;
}

.ui-icon-search {
  background-position: -160px -112px;
}

.ui-icon-wrench {
  background-position: -176px -112px;
}

.ui-icon-gear {
  background-position: -192px -112px;
}

.ui-icon-heart {
  background-position: -208px -112px;
}

.ui-icon-star {
  background-position: -224px -112px;
}

.ui-icon-link {
  background-position: -240px -112px;
}

.ui-icon-cancel {
  background-position: 0 -128px;
}

.ui-icon-plus {
  background-position: -16px -128px;
}

.ui-icon-plusthick {
  background-position: -32px -128px;
}

.ui-icon-minus {
  background-position: -48px -128px;
}

.ui-icon-minusthick {
  background-position: -64px -128px;
}

.ui-icon-close {
  background-position: -80px -128px;
}

.ui-icon-closethick {
  background-position: -96px -128px;
}

.ui-icon-key {
  background-position: -112px -128px;
}

.ui-icon-lightbulb {
  background-position: -128px -128px;
}

.ui-icon-scissors {
  background-position: -144px -128px;
}

.ui-icon-clipboard {
  background-position: -160px -128px;
}

.ui-icon-copy {
  background-position: -176px -128px;
}

.ui-icon-contact {
  background-position: -192px -128px;
}

.ui-icon-image {
  background-position: -208px -128px;
}

.ui-icon-video {
  background-position: -224px -128px;
}

.ui-icon-script {
  background-position: -240px -128px;
}

.ui-icon-alert {
  background-position: 0 -144px;
}

.ui-icon-info {
  background-position: -16px -144px;
}

.ui-icon-notice {
  background-position: -32px -144px;
}

.ui-icon-help {
  background-position: -48px -144px;
}

.ui-icon-check {
  background-position: -64px -144px;
}

.ui-icon-bullet {
  background-position: -80px -144px;
}

.ui-icon-radio-on {
  background-position: -96px -144px;
}

.ui-icon-radio-off {
  background-position: -112px -144px;
}

.ui-icon-pin-w {
  background-position: -128px -144px;
}

.ui-icon-pin-s {
  background-position: -144px -144px;
}

.ui-icon-play {
  background-position: 0 -160px;
}

.ui-icon-pause {
  background-position: -16px -160px;
}

.ui-icon-seek-next {
  background-position: -32px -160px;
}

.ui-icon-seek-prev {
  background-position: -48px -160px;
}

.ui-icon-seek-end {
  background-position: -64px -160px;
}

.ui-icon-seek-start {
  background-position: -80px -160px;
}

/* ui-icon-seek-first is deprecated, use ui-icon-seek-start instead */
.ui-icon-seek-first {
  background-position: -80px -160px;
}

.ui-icon-stop {
  background-position: -96px -160px;
}

.ui-icon-eject {
  background-position: -112px -160px;
}

.ui-icon-volume-off {
  background-position: -128px -160px;
}

.ui-icon-volume-on {
  background-position: -144px -160px;
}

.ui-icon-power {
  background-position: 0 -176px;
}

.ui-icon-signal-diag {
  background-position: -16px -176px;
}

.ui-icon-signal {
  background-position: -32px -176px;
}

.ui-icon-battery-0 {
  background-position: -48px -176px;
}

.ui-icon-battery-1 {
  background-position: -64px -176px;
}

.ui-icon-battery-2 {
  background-position: -80px -176px;
}

.ui-icon-battery-3 {
  background-position: -96px -176px;
}

.ui-icon-circle-plus {
  background-position: 0 -192px;
}

.ui-icon-circle-minus {
  background-position: -16px -192px;
}

.ui-icon-circle-close {
  background-position: -32px -192px;
}

.ui-icon-circle-triangle-e {
  background-position: -48px -192px;
}

.ui-icon-circle-triangle-s {
  background-position: -64px -192px;
}

.ui-icon-circle-triangle-w {
  background-position: -80px -192px;
}

.ui-icon-circle-triangle-n {
  background-position: -96px -192px;
}

.ui-icon-circle-arrow-e {
  background-position: -112px -192px;
}

.ui-icon-circle-arrow-s {
  background-position: -128px -192px;
}

.ui-icon-circle-arrow-w {
  background-position: -144px -192px;
}

.ui-icon-circle-arrow-n {
  background-position: -160px -192px;
}

.ui-icon-circle-zoomin {
  background-position: -176px -192px;
}

.ui-icon-circle-zoomout {
  background-position: -192px -192px;
}

.ui-icon-circle-check {
  background-position: -208px -192px;
}

.ui-icon-circlesmall-plus {
  background-position: 0 -208px;
}

.ui-icon-circlesmall-minus {
  background-position: -16px -208px;
}

.ui-icon-circlesmall-close {
  background-position: -32px -208px;
}

.ui-icon-squaresmall-plus {
  background-position: -48px -208px;
}

.ui-icon-squaresmall-minus {
  background-position: -64px -208px;
}

.ui-icon-squaresmall-close {
  background-position: -80px -208px;
}

.ui-icon-grip-dotted-vertical {
  background-position: 0 -224px;
}

.ui-icon-grip-dotted-horizontal {
  background-position: -16px -224px;
}

.ui-icon-grip-solid-vertical {
  background-position: -32px -224px;
}

.ui-icon-grip-solid-horizontal {
  background-position: -48px -224px;
}

.ui-icon-gripsmall-diagonal-se {
  background-position: -64px -224px;
}

.ui-icon-grip-diagonal-se {
  background-position: -80px -224px;
}

/* Misc visuals
----------------------------------*/
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
  border-top-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
  border-top-right-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
  border-bottom-left-radius: 3px;
}

.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
  border-bottom-right-radius: 3px;
}

/* Overlays */
.ui-widget-overlay {
  background: #aaaaaa;
  opacity: 0.3;
  -ms-filter: "alpha(opacity=30)"; /* support: IE8 */
}

.ui-widget-shadow {
  -webkit-box-shadow: 0 0 5px #666666;
  box-shadow: 0 0 5px #666666;
}

/*!
 * jQuery UI Button 1.13.2
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/button/#theming
 */
.ui-button {
  padding: 0.4em 1em;
  display: inline-block;
  position: relative;
  line-height: normal;
  margin-right: 0.1em;
  cursor: pointer;
  vertical-align: middle;
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  /* Support: IE <= 11 */
  overflow: visible;
}

.ui-button,
.ui-button:link,
.ui-button:visited,
.ui-button:hover,
.ui-button:active {
  text-decoration: none;
}

/* to make room for the icon, a width needs to be set here */
.ui-button-icon-only {
  width: 2em;
  box-sizing: border-box;
  text-indent: -9999px;
  white-space: nowrap;
}

/* no icon support for input elements */
input.ui-button.ui-button-icon-only {
  text-indent: 0;
}

/* button icon element(s) */
.ui-button-icon-only .ui-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -8px;
  margin-left: -8px;
}

.ui-button.ui-icon-notext .ui-icon {
  padding: 0;
  width: 2.1em;
  height: 2.1em;
  text-indent: -9999px;
  white-space: nowrap;
}

input.ui-button.ui-icon-notext .ui-icon {
  width: auto;
  height: auto;
  text-indent: 0;
  white-space: normal;
  padding: 0.4em 1em;
}

/* workarounds */
/* Support: Firefox 5 - 40 */
input.ui-button::-moz-focus-inner,
button.ui-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*!
 * jQuery UI Dialog 1.13.2
 * http://jqueryui.com
 *
 * Copyright jQuery Foundation and other contributors
 * Released under the MIT license.
 * http://jquery.org/license
 *
 * http://api.jqueryui.com/dialog/#theming
 */
.ui-dialog {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0.2em;
  outline: 0;
}

.ui-dialog .ui-dialog-titlebar {
  padding: 0.4em 1em;
  position: relative;
}

.ui-dialog .ui-dialog-title {
  float: left;
  margin: 0.1em 0;
  white-space: nowrap;
  width: 90%;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 0.3em;
  top: 50%;
  width: 20px;
  margin: -10px 0 0 0;
  padding: 1px;
  height: 20px;
}

.ui-dialog .ui-dialog-content {
  position: relative;
  border: 0;
  padding: 0.5em 1em;
  background: none;
  overflow: auto;
}

.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin-top: 0.5em;
  padding: 0.3em 1em 0.5em 0.4em;
}

.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  float: right;
}

.ui-dialog .ui-dialog-buttonpane button {
  margin: 0.5em 0.4em 0.5em 0;
  cursor: pointer;
}

.ui-dialog .ui-resizable-n {
  height: 2px;
  top: 0;
}

.ui-dialog .ui-resizable-e {
  width: 2px;
  right: 0;
}

.ui-dialog .ui-resizable-s {
  height: 2px;
  bottom: 0;
}

.ui-dialog .ui-resizable-w {
  width: 2px;
  left: 0;
}

.ui-dialog .ui-resizable-se,
.ui-dialog .ui-resizable-sw,
.ui-dialog .ui-resizable-ne,
.ui-dialog .ui-resizable-nw {
  width: 7px;
  height: 7px;
}

.ui-dialog .ui-resizable-se {
  right: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-sw {
  left: 0;
  bottom: 0;
}

.ui-dialog .ui-resizable-ne {
  right: 0;
  top: 0;
}

.ui-dialog .ui-resizable-nw {
  left: 0;
  top: 0;
}

.ui-draggable .ui-dialog-titlebar {
  cursor: move;
}

@charset "UTF-8";
/**
* @file index.scss
**/
/**
* @file _config.scss
**/
/**
* @file _reset.scss
**/
/* @import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Oswald:wght@200;300;400;500;600;700&family=Roboto:wght@100;300;400;500;700;900&family=Rubik:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Oswald:wght@200;300;400;500;600;700&family=Roboto:wght@100;300;400;500;700;900&family=Rubik:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&family=Oswald:wght@200;300;400;500;600;700&family=Roboto:wght@100;300;400;500;700;900&family=Rubik:wght@300;400;500;600;700;800;900&display=swap"); */

/* 20240405 add fonts */
@font-face {
  font-family: "Noto Sans JP";
  font-display: swap;
  font-weight: 700;
  src:url("../fonts/NotoSansJP-Bold.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans JP";
  font-display: swap;
  font-weight: 300;
  src:url("../fonts/NotoSansJP-Light.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans JP";
  font-display: swap;
  font-weight: 400;
  src:url("../fonts/NotoSansJP-Regular.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans JP";
  font-display: swap;
  font-weight: 200;
  src:url("../fonts/NotoSansJP-ExtraLight.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans JP";
  font-display: swap;
  font-weight: 100;
  src:url("../fonts/NotoSansJP-Thin.woff") format("woff");
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: bottom;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

*:focus {
  outline: none;
}

blockquote,
q {
  quotes: none;
}
blockquote::before, blockquote::after,
q::before,
q::after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  border: 0;
  outline: none;
  cursor: pointer;
}

input[type=submit],
input[type=button] {
  -webkit-box-sizing: border-box;
  -webkit-appearance: none;
  box-sizing: border-box;
  border: none;
  border-radius: 0;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

input,
textarea {
  -webkit-appearance: none;
  border-radius: 0;
}


@media screen and (max-width: 768px) {

.wyb-sp{
	margin: 0 auto;
	margin-top: 6%;
}

.wyb-pc{
	display: none;
}	
	
.specialpage{
    padding-top: 20px;
    padding-bottom: 50px;
  /* 前ページボタンのスタイル */
}
.specialpage-flex{
	display: block;
}

.spe-skin{
    margin-bottom: 6%;
}
.spe-make{
    margin-bottom: 6%;
}
}
@media screen and (min-width: 769px) {
.wyb-pc{
	margin: 0 auto;
	margin-top: 3%;
}

.wyb-sp{
	display: none;
}		
	
.specialpage{
  padding-top: 40px;
  padding-bottom: 100px;
  /* 前ページボタンのスタイル */
}
.specialpage-flex{
	display: flex;
}


.spe-skin{
	margin-right: 2%;
}
	
.spe-make{
	margin-right: 2%;
}
}
/**
* @file _m-media.scss
**/
.feature {
  padding-top: 30px;
  padding-bottom: 100px;
  /* 前ページボタンのスタイル */
}
@media screen and (max-width: 768px) {
  .feature {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}
.feature .content-width {
  position: relative;
}
.feature__container {
  overflow: hidden;
}
.feature__lists {
  margin-top: 30px;
}
.feature .item__link {
  -webkit-transition: all 0.5s;
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}
.feature .item__img {
  -webkit-transition: all 0.5s;
  width: 100%;
  height: 100%;
  min-height: 350px;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .feature .item__img {
    min-height: 230px;
  }
}
.feature .item__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.feature .item__txt {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  margin-top: 15px;
  overflow: hidden;
  font-size: 1.2rem;
  line-height: calc(20 / (1.2 * 10));
  letter-spacing: 0.1em;
  word-break: break-all;
}
.feature .item__link:hover .item__img {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.feature .swiper-button-next,
.feature .swiper-button-prev {
  display: none;
  z-index: 1;
  position: absolute;
  width: 50px;
}
@media screen and (max-width: 768px) {
  .feature .swiper-button-next,
  .feature .swiper-button-prev {
    display: block;
  }
}
.feature .swiper-button-next {
  -webkit-transform: scale(-1, 1);
  right: -10px;
  transform: scale(-1, 1); /* 左右反転 */
  background-image: url(../images/index/feature-next-sp.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.feature .swiper-button-prev {
  left: -10px;
  background-image: url(../images/index/feature-next-sp.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.feature .swiper-button-prev::after,
.feature .swiper-button-next::after {
  display: none;
}

/**
* @file _footer.scss
**/
.footer {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #434748;
}
.footer p,
.footer a,
.footer span {
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.footer__head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.footer__logo-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.footer__logo {
  width: 60px;
  height: 90px;
}
.footer__logo img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.footer__logo-txt {
  margin-left: 40px;
  color: #fff;
  font-weight: 300;
  font-size: 1.8rem;
  line-height: calc(30 / (1.8 * 10));
  letter-spacing: 0.1em;
}
.footer__sns-box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 30px;
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .footer__sns-box {
    margin-top: 30px;
    margin-bottom: 20px;
  }
}
.footer .sns-box__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 30px;
  gap: 15px;
}
.footer .sns-box__ttl {
  color: #fff;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: calc(14 / (1.4 * 10));
  letter-spacing: 0.1em;
}
.footer .sns-box .lists__item {
  width: 35px;
  height: 35px;
}
.footer .sns-box .item__link img {
  width: 100%;
}
.footer__nav {
  margin-top: 50px;
  margin-bottom: 15px;
}
.footer .nav__lists {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 40px;
}
@media screen and (max-width: 768px) {
  .footer .nav__lists {
    gap: 0 30px;
  }
}
.footer .nav .lists__item {
  position: relative;
}
.footer .nav .lists__item::before {
  position: absolute;
  top: 0;
  right: -20px;
  width: 1px;
  height: 100%;
  background-color: #fff;
  content: "";
}
@media screen and (max-width: 768px) {
  .footer .nav .lists__item {
    width: 45%;
    padding: 15px 0;
    border-top: 1px solid #fff;
  }
  .footer .nav .lists__item:nth-child(6), .footer .nav .lists__item:nth-child(7) {
    border-bottom: 1px solid #fff;
  }
  .footer .nav .lists__item::before {
    display: none;
  }
}
.footer .nav .item__link {
  display: block;
  height: 100%;
  color: #fff;
  font-size: 1.2rem;
  line-height: calc(12 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.footer .nav .lists__item:first-child .item__link {
  padding-left: 0;
}
.footer .nav .lists__item:last-child::before {
  display: none;
}
.footer__txt {
  color: #fff;
  font-size: 1.2rem;
  line-height: calc(12 / (1.2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .footer__txt {
    line-height: 1.7777777778;
    text-align: center;
  }
}
.footer__txt-box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .footer__txt-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.footer__copyright {
  color: #fff;
  font-size: 1.2rem;
  line-height: calc(12 / (1.2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    margin-top: 20px;
    font-size: 1rem;
    line-height: calc(10 / (1 * 10));
    letter-spacing: 0.1em;
  }
}

.pagetop {
  z-index: 4000;
  position: fixed;
  right: 20px;
  bottom: 0;
}
.pagetop__button {
  width: 100px;
  margin: 0 0 20px 0;
  padding: 5px;
  float: right;
  border: 1px solid #ccc;
  border-radius: 4px;
  background: #fff;
  font-size: 10px;
  text-align: center;
}
.pagetop__link {
  color: #333;
  text-decoration: none;
}
.pagetop__link > p {
  margin-bottom: 0;
}

/**
* @file _header.scss
**/
.header {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: none;
  height: auto;
  padding: 0;
  border-bottom: none;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
}
.header h3,
.header a {
  font-family: "Noto Sans JP", sans-serif;
}
.header .content-width {
  max-width: 1070px;
}
.header.is-open {
  z-index: 5;
  position: fixed;
  width: 100%;
  background-color: #000;
}
.header__container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: height 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  height: 80px;
  transition: height 0.5s;
}
@media screen and (max-width: 768px) {
  .header__container {
    display: none;
  }
}
.header__container.is-scroll {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-transition: height 0.5s;
  justify-content: space-between;
  height: 50px;
  transition: height 0.5s;
}
.header__logo {
  width: 100%;
  max-width: 140px;
  height: 30px;
  line-height: 1;
  top:55px!important;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    /* 240205 change */
    /* max-width: 120px; */
    max-width: 11.72vw;
    height: auto;
  }
  .header__logo img {
    -o-object-position: bottom;
    object-position: bottom;
  }
}
.header__logo a {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo.is-scroll {
  max-width: 100px;
  height: auto;
}
.header__nav {
  height: 100%;
}
.header .nav__lists {
  -webkit-box-align: end;
  -ms-flex-align: end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  height: 100%;
  margin-left: 105px;
  gap: 30px;
}
/* 240205 add */
@media screen and (min-width: 1025px) {
  .header .nav__lists {
    gap: 2vw;
  }
  .header__nav {
    margin-left: auto;
  }
}
/* 240205 add */
@media screen and (min-width: 1201px) {
  .header .nav__lists {
    margin-left: 0;
    gap: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .header .nav__lists {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1024px) {
  /* 240205 add */
  .header__nav {
    margin-left: auto;
  }
  .header .nav__lists {
    margin-left: 5px;
    gap: 10px;
  }
}
.header .nav .lists__item {
  height: 100%;
}
@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    .header .nav .lists__item:not(:first-child) {
      margin-left: 40px;
    }
  }
}
@media screen and (max-width: 1024px) {
  @media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
    @supports not (translate: none) {
      .header .nav .lists:not(:first-child) {
        margin-left: 10px;
      }
    }
  }
}
.header .nav .item__container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  cursor: pointer;
}
.header .nav .item__wrapper {
  visibility: hidden;
  z-index: 10;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100vw;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #fff;
}
.header .nav .item__ttl {
  position: relative;
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: calc(12 / (1.2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  /* 240205 add */
  .header .nav .item__ttl {
    margin-top: 10px;
  }
}
@media screen and (max-width: 850px) {
  .header .nav .item__ttl {
    font-size: 1rem;
    line-height: calc(10 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 768px) {
  .header .nav .item__ttl {
    font-size: 1.2rem;
    line-height: calc(12 / (1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.header .nav .item__ttl::after {
  -webkit-transition: all 0.5s;
  position: absolute;
  bottom: -7px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #000;
  content: "";
  transition: all 0.5s;
}
.header .nav.is-scroll .item__ttl {
  margin-top: 5px;
}
.header .nav.is-scroll .item__wrapper {
  top: 50px;
}
.header .link__box {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.header .link__box:not(:first-of-type) {
  margin-top: 60px;
}
.header .link__head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .link .next-link {
  font-size: 1.4rem;
  line-height: calc(14 / (1.4 * 10));
  letter-spacing: 0.1em;
  text-decoration: underline;
}
.header .link__sub-ttl {
  padding-left: 5px;
  border-left: 2px solid #000;
  font-size: 1.6rem;
  line-height: calc(16 / (1.6 * 10));
  letter-spacing: 0.1em;
}
.header .link__sub-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}
.header .link__sub-lists:first-of-type {
  margin-top: 30px;
}
.header .link .sub-lists__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .link .sub-lists__item:not(:first-child) {
  margin-left: 20px;
}
.header .link .item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 160px;
}
.header .link .item__img {
  width: 25px;
  height: 25px;
}
.header .link .item__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: top;
}
.header .link .item__category-ttl {
  margin-left: 10px;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: calc(12 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.header .item__container:hover .item__wrapper {
  -webkit-transition: all 0.5s;
  visibility: visible;
  transition: all 0.5s;
}
.header .item__container:hover .item__ttl::after {
  -webkit-transition: all 0.5s;
  width: 100%;
  transition: all 0.5s;
}
.header__icon-wrapper {
  height: 100%;
  margin-top: 5px;
  margin-left: auto;
}
.header .icon-wrapper__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  gap: 20px;
}
@media screen and (max-width: 1024px) {
  /* 240205 add */
  .header__icon-wrapper {
    margin-left: 0.98vw;
  }
  .header .icon-wrapper__lists {
    gap: 10px;
  }
}
.header .icon-wrapper .lists__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  height: 100%;
  cursor: pointer;
}
@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    .header .icon-wrapper .lists__item:not(:first-child) {
      margin-left: 20px;
    }
  }
}
@media screen and (max-width: 1024px) {
  @media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
    @supports not (translate: none) {
      .header .icon-wrapper .lists__item:not(:first-child) {
        margin-left: 10px;
      }
    }
  }
}
.header .icon-wrapper .item__box {
  position: relative;
}
.header .icon-wrapper .item__img {
  width: 18px;
  height: 20px;
}
.header .icon-wrapper .item__img::after {
  -webkit-transition: all 0.5s;
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #000;
  content: "";
  transition: all 0.5s;
}
.header .icon-wrapper .item__img img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}
.header .icon-wrapper .item__sub-lists {
  -webkit-transform: translateX(-50%) translateY(100%);
  visibility: hidden;
  z-index: 10;
  position: absolute;
  bottom: -15px;
  left: 50%;
  padding: 20px;
  transform: translateX(-50%) translateY(100%);
  border: 1px solid #000;
  background-color: #fff;
}
.header .icon-wrapper .sub-lists__sub-item:not(:first-child) {
  margin-top: 15px;
}
.header .icon-wrapper .sub-item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.header .icon-wrapper .sub-item__img {
  width: 20px;
  height: 20px;
}
.header .icon-wrapper .sub-item__img img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}
.header .icon-wrapper .sub-item__ttl {
  margin-left: 10px;
  font-size: 1.2rem;
  line-height: calc(12 / (1.2 * 10));
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.header .icon-wrapper .lists__item:hover .item__img::after {
  -webkit-transition: all 0.5s;
  width: 100%;
  transition: all 0.5s;
}
.header .icon-wrapper .lists__item:hover .item__sub-lists {
  visibility: visible;
}
.header .icon-wrapper .sub-item__link:hover .sub-item__ttl {
  text-decoration: underline;
}
.header .icon-wrapper .search {
  -webkit-transform: translateX(-85%) translateY(100%);
  transform: translateX(-85%) translateY(100%);
}
.header .icon-wrapper .search__form {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.header .icon-wrapper .search__link-input {
  display: none;
}
.header .icon-wrapper .search__link {
  display: block;
  width: 25px;
  height: 25px;
  margin-left: 10px;
  cursor: pointer;
}
.header .icon-wrapper .box142 {
  width: 250px;
  max-width: 250px;
  padding: 5px;
  border: 1px solid #000;
}
.header__container--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__container--sp {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
  }
}
.header__container--sp .img-white {
  -webkit-transition: opacity 0.5s;
  opacity: 0;
  transition: opacity 0.5s;
}
.header__container--sp .img-white.is-open {
  -webkit-transition: opacity 0.5s;
  opacity: 1;
  transition: opacity 0.5s;
}
.header .nav-sp__ttl {
  display: block;
  font-size: 1rem;
  line-height: calc(10 / (1 * 10));
  letter-spacing: 0.1em;
  white-space: nowrap;
}
.header .nav-sp__ttl.white {
  color: #fff;
}
.header .nav-sp__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
}
.header .nav-sp .lists__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 35px;
}
.header .nav-sp .lists__item:not(:first-child) {
  margin-left: 10px;
}
.header .nav-sp .item__link {
  display: block;
}
.header .nav-sp .item__img {
  position: relative;
  height: 22px;
  margin: 0 auto;
  margin-bottom: 2px;
}
.header .nav-sp .item__img img {
  -o-object-fit: contain;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header .nav-sp .cart {
  width: 21.2px;
}
.header .nav-toggle {
  z-index: 10;
  position: relative;
  width: 25px;
  height: 16px;
  margin: 0 auto;
  margin-top: 3px;
  margin-bottom: 5px;
  cursor: pointer;
}
.header .menu-line {
  -webkit-transition: 0.8s ease;
  z-index: 10;
  position: absolute;
  right: 0;
  width: 100%;
  height: 1.8px;
  background-color: #000;
  transition: 0.8s ease;
}
.header .menu-line1 {
  top: 0;
}
.header .menu-line2 {
  top: 8px;
}
.header .menu-line3 {
  top: 16px;
}
.header #js-nav-menu.is-open .nav-toggle {
  width: 30px;
  height: 20px;
}
.header #js-nav-menu.is-open .menu-line1 {
  -webkit-transform: rotate(135deg);
  position: absolute;
  top: 10px;
  transform: rotate(135deg);
  background-color: #fff;
}
.header #js-nav-menu.is-open .menu-line2 {
  opacity: 0;
}
.header #js-nav-menu.is-open .menu-line3 {
  -webkit-transform: rotate(-135deg);
  position: absolute;
  top: 10px;
  transform: rotate(-135deg);
  background-color: #fff;
}
.header #js-nav-menu.is-open .nav-sp__ttl {
  display: none;
}
.header__logo-sp {
  width: 100%;
  max-width: 140px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .header__logo-sp {
    max-width: 75px;
  }
  .header__logo-sp img {
    vertical-align: middle;
  }
}
.header .logo-sp__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  height: 40px;
}
.header .logo-sp__link img {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.header__sp-menu {
  -webkit-transition: all 0.5s;
  z-index: 10;
  position: fixed;
  top: 60px;
  left: 100%;
  width: 100vw;
  height: calc(100% - 60px);
  padding: 25px;
  overflow: scroll;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.5s;
}
.header__sp-menu.is-open {
  -webkit-transition: all 0.5s;
  left: 0;
  transition: all 0.5s;
}
.header .sp-menu .lists__item {
  width: 100%;
  border-top: 1px solid #fff;
  cursor: pointer;
}
.header .sp-menu .lists__item:nth-child(4) {
  border-bottom: 1px solid #fff;
}
.header .sp-menu .item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 20px 0;
  color: #fff;
}
.header .sp-menu .item__img {
  width: 30px;
  height: 30px;
}
.header .sp-menu .item__ttl {
  font-size: 1.2rem;
  line-height: calc(12 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.header .sp-menu .item__next {
  -webkit-transition: border-bottom 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 0;
  width: 8px;
  transform: translateY(-50%);
  transition: border-bottom 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, border-bottom 0.5s;
  transition: transform 0.5s, border-bottom 0.5s, -webkit-transform 0.5s;
}
.header .sp-menu .has-child.is-open {
  border-bottom: 1px solid #fff;
}
.header .sp-menu .has-child.is-open .item__next {
  -webkit-transition: -webkit-transform 0.5s;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.header .sp-menu .child__lists {
  display: none;
  width: 90%;
  margin-left: auto;
}
.header .sp-menu .child .lists__item:first-child {
  border-top: none;
}
.header .sp-menu .child .lists__item:last-child {
  border-bottom: none;
}
.header .sp-search {
  height: auto;
}
.header .sp-search .search__form {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.header .sp-search .search__link-input {
  display: none;
}
.header .sp-search .search__link {
  display: block;
  width: 40px;
  height: 40px;
  padding-left: 10px;
  cursor: pointer;
}
.header .sp-search .search__link img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header .sp-search .box142 {
  width: calc(100% - 40px);
  padding: 10px;
  border: 1px solid #fff;
  background-color: #000;
  color: #fff;
}
.header .sp-search .box142::-webkit-input-placeholder {
  color: #fff;
}
.header .sp-search .box142::-moz-placeholder {
  color: #fff;
}
.header .sp-search .box142:-ms-input-placeholder {
  color: #fff;
}
.header .sp-search .box142::-ms-input-placeholder {
  color: #fff;
}
.header .sp-search .box142::placeholder {
  color: #fff;
}
.header .sp-search__ttl {
  margin-top: 30px;
  color: #fff;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: calc(12 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.header .sp-search__lists {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: 15px;
  gap: 7px;
}
.header .sp-search .lists__item {
  width: 31.6%;
  height: 30px;
}
@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm) {
  @supports not (translate: none) {
    .header .sp-search .lists__item:not(:first-child) {
      margin-left: 7px;
    }
  }
}
.header .sp-search .item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  font-size: 1.1rem;
  line-height: calc(11 / (1.1 * 10));
  letter-spacing: 0.1em;
}
.header .sp-search .next-link {
  display: block;
  margin-top: 15px;
  color: #fff;
  font-size: 1.2rem;
  line-height: calc(12 / (1.2 * 10));
  letter-spacing: 0.1em;
  text-align: right;
}

.info {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .info {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.info__lists {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .info__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.info .lists__item {
  width: calc((100% - 15px) / 2);
  padding: 25px 30px;
  border: 2px solid rgba(67, 71, 72, 0.1);
}
@media screen and (max-width: 768px) {
  .info .lists__item {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .info-shop-counseling{
    width: 80%;
	margin: 0 auto;
}
}
	
.info .item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: all 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  transition: all 0.5s;
}
.info .item__link:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.info .item__img {
  width: 65px;
  height: 60px;
}
.info .item__img img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.info .item__content {
  width: calc(100% - 65px);
  padding-left: 15px;
}
.info .item__ttl {
  font-size: 1.4rem;
  line-height: calc(26 / (1.4 * 10));
  letter-spacing: 0.1em;
}
.info .item__txt {
  font-size: 1.2rem;
  line-height: calc(24 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.media {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .media {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.media__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 770px;
  margin: 0 auto;
  margin-top: 30px;
  padding: 50px;
  border: 2px solid rgba(67, 71, 72, 0.1);
}
@media screen and (max-width: 768px) {
  .media__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px;
    padding-bottom: 60px;
  }
}
.media__img {
  width: 320px;
  height: 220px;
}
@media screen and (max-width: 768px) {
  .media__img {
    width: 100%;
    height: auto;
    max-height: 320px;
  }
}
.media__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media__content {
  width: calc(100% - 320px);
  padding-left: 30px;
}
@media screen and (max-width: 768px) {
  .media__content {
    width: 100%;
    margin-top: 30px;
    padding-left: 0;
  }
}
.media__ttl {
  font-size: 1.6rem;
  line-height: calc(16 / (1.6 * 10));
  letter-spacing: 0.1em;
}
.media__txt {
  margin-top: 15px;
  font-size: 1.4rem;
  line-height: calc(26 / (1.4 * 10));
  letter-spacing: 0.1em;
}
.media__link {
  -webkit-transition: opacity 0.5s;
  display: block;
  position: relative;
  width: 100%;
  max-width: 210px;
  margin-top: 15px;
  margin-left: auto;
  padding: 15px 20px;
  background-color: #000;
  color: #fff;
  font-size: 1.4rem;
  line-height: calc(14 / (1.4 * 10));
  letter-spacing: 0.1em;
  transition: opacity 0.5s;
}
.media__link:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
  .media__link {
    margin: 0 auto;
    margin-top: 15px;
  }
}
.media__next {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 48%;
  right: 10px;
  width: 6px;
  transform: translateY(-50%);
  pointer-events: none;
}
.media__next img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: middle;
}

.news {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .news {
    padding-top: 50px;
  }
}
.news .lists__item {
  padding: 20px 0;
  border-top: 1px solid rgba(67, 71, 72, 0.1);
  cursor: pointer;
}
.news .lists__item:last-child {
  border-bottom: 1px solid rgba(67, 71, 72, 0.1);
}
.news .item__ttl-box {
  -webkit-box-align: start;
  -ms-flex-align: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: flex-start;
}
.news .item__ttl-box::before {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 0;
  width: 15px;
  height: 1px;
  transform: translateY(-50%);
  background-color: #000;
  content: "";
}
.news .item__ttl-box::after {
  -webkit-transition: -webkit-transform 0.5s;
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 7px;
  width: 1px;
  height: 15px;
  transform: translateY(-50%);
  background-color: #000;
  content: "";
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.news .item__ttl-box.is-open::after {
  -webkit-transition: -webkit-transform 0.5s;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.news .item__date {
  font-weight: normal;
  font-size: 1.2rem;
  line-height: calc(16 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.news .item__ttl {
  margin-left: 30px;
  padding-right: 20px;
  font-weight: normal;
  font-size: 1.2rem;
  line-height: calc(16 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.news .item__ttl a {
  text-decoration: underline;
}
.news .item__content {
  display: none;
  margin-top: 30px;
  padding-left: 103px;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: calc(26 / (1.2 * 10));
  letter-spacing: 0.1em;
}

.push-item {
  padding-top: 100px;
  background-color: rgba(67, 71, 72, 0.08);
}
@media screen and (max-width: 768px) {
  .push-item {
    padding-top: 50px;
  }
}
.push-item__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .push-item__lists {
    -ms-flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }
}
.push-item .lists__item {
  width: 100%;
  max-width: 245px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .push-item .lists__item {
    width: 48%;
  }
}
.push-item .item__img {
  -webkit-transition: all 0.5s;
  width: 100%;
  height: 245px;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .push-item .item__img {
    height: auto;
  }
}
.push-item .item__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.push-item .item__content {
  padding: 20px;
}
.push-item .item__category {
  display: inline-block;
  padding: 5px 20px;
  border: 1px solid rgba(67, 71, 72, 0.1);
  font-size: 1.2rem;
  line-height: calc(12 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.push-item .item__ttl {
  margin-top: 10px;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: calc(26 / (1.4 * 10));
  letter-spacing: 0.1em;
}
.push-item .item__txt {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  overflow: hidden;
  font-weight: lighter;
  font-size: 1.2rem;
  line-height: calc(24 / (1.2 * 10));
  letter-spacing: 0.1em;
  word-break: break-all;
}
.push-item .item__price {
  font-size: 1.2rem;
  line-height: calc(24 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.push-item .item__link:hover .item__img {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}

div#ranking_all {
  padding: 0;
}

.ranking {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: rgba(67, 71, 72, 0.08);
}
@media screen and (max-width: 768px) {
  .ranking {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.ranking__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  overflow-x: scroll;
  gap: 20px;
}
.ranking .lists__item {
  width: 198px;
}
.ranking .item__img {
  width: 198px;
  height: 198px;
}
.ranking .item__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ranking .item__content {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.ranking .item__number {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #000;
  color: #fff;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: calc(24 / (2.4 * 10));
  font-family: "Ubuntu", sans-serif;
  letter-spacing: 0.1em;
}
.ranking .item__ttl {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  width: calc(100% - 55px);
  -webkit-line-clamp: 2;
  margin-left: 15px;
  overflow: hidden;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: calc(24 / (1.4 * 10));
  letter-spacing: 0.1em;
  word-break: break-all;
}
.ranking__product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 420px;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .ranking__product-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    height: auto;
    margin-top: 50px;
  }
}
.ranking .r-product-list__content {
  width: 100%;
  max-width: 410px;
  padding: 50px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .ranking .r-product-list__content {
    max-width: none;
    padding: 40px;
  }
}
.ranking .r-product-list__ttl {
  width: 100%;
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .ranking .r-product-list__ttl {
    max-width: 220px;
    margin: 0 auto;
  }
}
.ranking .r-product-list__ttl img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}
.ranking .r-product-list__ttl span {
  font-weight: 200;
  font-size: 1.4rem;
  line-height: calc(26 / (1.4 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .ranking .r-product-list__ttl span {
    display: block;
    margin-top: 10px;
    text-align: center;
  }
}
.ranking .r-product-list__txt {
  margin-top: 80px;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: calc(26 / (1.4 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .ranking .r-product-list__txt {
    margin-top: 20px;
    font-size: 1rem;
    line-height: calc(26 / (1 * 10));
    letter-spacing: 0.1em;
    text-align: center;
  }
}
.ranking .r-product-list__link {
  -webkit-transition: opacity 0.5s;
  display: block;
  position: relative;
  width: 100%;
  max-width: 210px;
  margin-top: 80px;
  padding: 15px 20px;
  background-color: #000;
  color: #fff;
  font-size: 1.4rem;
  line-height: calc(14 / (1.4 * 10));
  letter-spacing: 0.1em;
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
  .ranking .r-product-list__link {
    margin: 20px auto 0;
  }
}
.ranking .r-product-list__link:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.ranking .r-product-list__img-link {
  -webkit-transition: opacity 0.5s;
  display: block;
  width: calc(100% - 410px);
  height: 100%;
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
  .ranking .r-product-list__img-link {
    width: 100%;
  }
}
.ranking .r-product-list__img-link:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.ranking .r-product-list__img-link img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.salon {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: rgba(67, 71, 72, 0.08);
}
@media screen and (max-width: 768px) {
  .salon {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.salon__wrapper {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-top: 30px;
  padding-right: 50px;
}
@media screen and (max-width: 1024px) {
  .salon__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-right: 0;
  }
}
.salon__img {
  width: 520px;
  height: 350px;
}
@media screen and (max-width: 1024px) {
  .salon__img {
    width: 100%;
    max-width: 520px;
    height: auto;
    margin: 0 auto;
  }
}
.salon__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.salon__content {
  width: calc(100% - 520px);
  padding-left: 40px;
}
@media screen and (max-width: 1024px) {
  .salon__content {
    width: 100%;
    margin-top: 30px;
    padding-left: 0;
  }
}
.salon__ttl {
  font-size: 1.6rem;
  line-height: calc(16 / (1.6 * 10));
  letter-spacing: 0.1em;
}
.salon__txt {
  margin-top: 15px;
  font-size: 1.4rem;
  line-height: calc(26 / (1.4 * 10));
  letter-spacing: 0.1em;
  text-align: justify;
}
.salon__link-box {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
@media screen and (max-width: 1024px) {
  .salon__link-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.salon__link {
  -webkit-transition: opacity 0.5s;
  display: block;
  position: relative;
  width: 100%;
  max-width: 210px;
  margin-top: 15px;
  padding: 15px 20px;
  background-color: #000;
  color: #fff;
  font-size: 1.4rem;
/*  line-height: calc(14 / (1.4 * 10));*/
  letter-spacing: 0.1em;
  transition: opacity 0.5s;
}

@media screen and (min-width: 769px) {
.salon_webpage{
	line-height: 1;
    padding-top: 10px;
    display: block;
}
}

@media screen and (max-width: 768px) {
.salon_webpage{
	line-height: 1;
    display: block;
}
}

.salon__link:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.salon__next {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 48%;
  right: 10px;
  width: 6px;
  transform: translateY(-50%);
  pointer-events: none;
}
.salon__next img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: middle;
}

.search {
  padding-top: 100px;
  background-color: rgba(67, 71, 72, 0.08);
}
@media screen and (max-width: 768px) {
  .search {
    padding-top: 50px;
  }
}
.search__lists {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 325px;
  margin-top: 30px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .search__lists {
    height: auto;
    gap: 10px;
  }
}
.search .lists__item {
  position: relative;
  width: 50%;
  max-width: 525px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .search .lists__item {
    width: 100%;
    max-width: none;
  }
}
.search .item__link {
  -webkit-transition: -webkit-text-decoration 0.5s;
  display: block;
  padding: 20px;
  font-size: 1.4rem;
  line-height: calc(26 / (1.4 * 10));
  letter-spacing: 0.1em;
  transition: -webkit-text-decoration 0.5s;
  transition: text-decoration 0.5s;
  transition: text-decoration 0.5s, -webkit-text-decoration 0.5s;
}
.search .item__link:hover {
  -webkit-transition: -webkit-text-decoration 0.5s;
  text-decoration: underline;
  transition: -webkit-text-decoration 0.5s;
  transition: text-decoration 0.5s;
  transition: text-decoration 0.5s, -webkit-text-decoration 0.5s;
}
.search .item__img {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  transform: translateY(-50%);
  pointer-events: none;
}
.search .item__img img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: middle;
}
.search__button {
  display: block;
  position: relative;
  width: 50%;
  max-width: 525px;
  margin: 20px auto 0;
  background-color: #333;
}
@media screen and (max-width: 768px) {
  .search__button {
    width: 100%;
    max-width: none;
  }
}
.search__button span {
  -webkit-transition: -webkit-text-decoration 0.5s;
  display: block;
  padding: 20px;
  color: #fff;
  font-size: 1.4rem;
  line-height: calc(26 / (1.4 * 10));
  letter-spacing: 0.1em;
  text-align: center;
  transition: -webkit-text-decoration 0.5s;
  transition: text-decoration 0.5s;
  transition: text-decoration 0.5s, -webkit-text-decoration 0.5s;
}
.search__button span:hover {
  -webkit-transition: -webkit-text-decoration 0.5s;
  text-decoration: underline;
  transition: -webkit-text-decoration 0.5s;
  transition: text-decoration 0.5s;
  transition: text-decoration 0.5s, -webkit-text-decoration 0.5s;
}
.search__button div {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 10px;
  width: 6px;
  transform: translateY(-50%);
  pointer-events: none;
}
.search__button div img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: middle;
}

/**
* @file _l-common.scss
**/
html {
  font-size: 62.5%;
}

body {
  background-color: transparent;
  color: #333;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.2rem;
  }
}

main,
header,
footer {
  margin: auto;
}

body.is-stop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

h1,
h2,
h3,
h4 {
  line-height: 1.75;
  font-family: "Noto Sans JP", sans-serif;
}

p,
input,
textarea {
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  text-decoration: none;
}

.lazyload-img {
  -webkit-transition: 0.3s opacity;
  opacity: 0;
  transition: 0.3s opacity;
}
.lazyload-img.lazyloaded {
  opacity: 1;
}

.is-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

.is-tab {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-tab {
    display: block;
  }
}

.content-width {
  max-width: 1070px;
  margin: auto;
}

.content-padding {
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .content-padding {
    padding: 0 15px;
  }
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.js-banner {
  opacity: 0;
  pointer-events: none;
}
.js-banner.is-active {
  opacity: 1;
  pointer-events: all;
}

.floating {
  z-index: 4;
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 400px;
  height: 150px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .floating {
    bottom: 15px;
    left: 15px;
    width: 120px;
    height: 120px;
  }
}
.floating__banner {
  -webkit-transition: opacity 0.6s;
  transition: opacity 0.6s;
}
.floating__banner:hover {
  -webkit-transition: opacity 0.6s;
  opacity: 0.6;
  transition: opacity 0.6s;
}
.floating__banner img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}
.floating__close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .floating__close {
    width: 30px;
    height: 30px;
  }
}
.floating__close img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}

.modal-banner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.7);
}
.modal-banner__wrapper {
  position: relative;
  width: 100%;
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  .modal-banner__wrapper {
    max-width: 300px;
  }
}
.modal-banner__banner {
  aspect-ratio: 1/1;
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .modal-banner__banner {
    width: 100%;
    max-width: 300px;
  }
}
.modal-banner__banner img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.modal-banner__close {
  -webkit-transform: translate(-50% -50%);
  position: absolute;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  transform: translate(-50% -50%);
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .modal-banner__close {
    top: -15px;
    right: -15px;
    width: 30px;
    height: 30px;
  }
}
.modal-banner__close img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.l-contents {
  padding-top: 80px;
  background: #fff;
}
.l-contents__frame {
  padding: 0;
}

.c-breadcrumb {
  margin: 20px auto;
}
.c-breadcrumb:last-of-type {
  margin: 20px auto;
}

h2 {
  z-index: 0;
  margin: 0;
  text-align: left;
}

a {
  -webkit-transition: none;
  transition: none;
}

p {
  margin-bottom: 0;
}

#wrapper {
  overflow: visible;
}

div#container {
  padding-top: 80px;
  overflow: visible;
  background-color: transparent;
}
@media screen and (max-width: 768px) {
  div#container {
    padding-top: 60px;
  }
}

div#one_maincolumn {
  margin-top: 0;
}

ul.pagenumberarea {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.pagenumberarea a,
.pagenumberarea span {
  vertical-align: baseline;
}

.ict_bg,
.kanren {
  height: 25px;
}

.ict_bg a,
.kanren a {
  vertical-align: baseline;
}

#guidecolumn *,
#mypagecolumn *,
#shoppingcolumn * {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  vertical-align: baseline;
}

#guidecolumn {
  font-family: "Noto Serif JP", serif;
}
#guidecolumn h2,
#guidecolumn h3,
#guidecolumn h4,
#guidecolumn p,
#guidecolumn span,
#guidecolumn th,
#guidecolumn td,
#guidecolumn a {
  font-family: "Noto Serif JP", serif;
}
#guidecolumn h2 {
  text-align: center;
}
#guidecolumn td a:link {
  color: #00e;
  text-decoration: underline;
}
#guidecolumn td a:visited {
  color: #551a8b;
  text-decoration: underline;
}
#guidecolumn td a:active {
  color: #f00;
  text-decoration: underline;
}
#guidecolumn .contents-wrap {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#guidecolumn .custom-selectbox select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #guidecolumn .btn_area_n2 {
    width: 100%;
  }
}

.guide_ttl_bg h2 {
  font-family: "Noto Serif JP", serif;
  text-align: center;
}

.tokuten h2,
.tokuten h4,
.tokuten p,
.tokuten span,
.tokuten th,
.tokuten td,
.tokuten a,
.per-stage h2,
.per-stage h4,
.per-stage p,
.per-stage span,
.per-stage th,
.per-stage td,
.per-stage a,
.arrangement h2,
.arrangement h4,
.arrangement p,
.arrangement span,
.arrangement th,
.arrangement td,
.arrangement a {
  font-family: 游ゴシック体, yugothic, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", sans-serif !important;
}

.online-counseling #guidecolumn a {
  font-family: 游ゴシック体, yugothic, "游ゴシック Medium", "Yu Gothic Medium", 游ゴシック, "Yu Gothic", sans-serif;
}

.btn_mgprev a {
  padding-top: 0;
}

.area_tab p a {
  color: #fff;
}

#mypagecolumn p {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2em;
}
#mypagecolumn input[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}
#mypagecolumn .t_login {
  padding-left: 5px;
}
#mypagecolumn .loginarea {
  margin-top: 20px;
}
@media screen and (max-width: 479px) {
  #mypagecolumn .loginarea {
    margin-top: 0;
  }
}
#mypagecolumn .loginarea .inputbox p:first-of-type {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #mypagecolumn .loginarea .inputbox p:first-of-type {
    white-space: normal;
  }
}
#mypagecolumn .loginarea .inputbox .passwd {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  #mypagecolumn .loginarea .inputbox .passwd {
    white-space: normal;
  }
}
#mypagecolumn .loginarea .inputbox .box250 {
  width: 50%;
  max-width: 470px;
}
@media screen and (max-width: 768px) {
  #mypagecolumn .loginarea .inputbox .box250 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 40px;
  }
}
#mypagecolumn .loginarea .inputbox .passwd .box275 {
  width: 50%;
  max-width: 470px;
}
@media screen and (max-width: 768px) {
  #mypagecolumn .loginarea .inputbox .passwd .box275 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    height: 40px;
  }
}
#mypagecolumn .inputtext02 a {
  font-family: "Noto Serif JP", serif;
}
#mypagecolumn .inputtext02 a:link {
  color: #00e;
  text-decoration: underline;
}
#mypagecolumn .inputtext02 a:visited {
  color: #551a8b;
  text-decoration: underline;
}
#mypagecolumn .inputtext02 a:active {
  color: #f00;
  text-decoration: underline;
}
#mypagecolumn #mycontentsarea .box120 {
  width: auto;
  max-width: 90px;
}
#mypagecolumn #amazon_button_area {
  width: 46% !important;
}
@media screen and (max-width: 768px) {
  #mypagecolumn #amazon_button_area {
    width: 95% !important;
  }
}
#mypagecolumn #amazon_button_area div:first-of-type {
  float: none !important;
  text-align: center;
}
#mypagecolumn #amazon_pay_button_v2 {
  max-width: 450px;
  margin: 20px auto;
  float: none !important;
}
@media screen and (max-width: 768px) {
  #mypagecolumn #amazon_pay_button_v2_click_area #AmazonPayButtonV2 {
    width: 100% !important;
  }
}
#mypagecolumn #amazon_h {
  font-family: "Noto Sans JP", sans-serif;
}
#mypagecolumn input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}
#mypagecolumn #amazon_v2_agree {
  vertical-align: middle;
}
#mypagecolumn #login_mypage {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #mypagecolumn #login_mypage {
    margin-top: 5px;
  }
}

#shoppingcolumn input[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
  appearance: radio;
}
#shoppingcolumn input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}
#shoppingcolumn textarea {
  border-width: 1px;
  border-style: solid;
  border-color: -internal-light-dark(rgb(118, 118, 118), rgb(133, 133, 133));
}
#shoppingcolumn .t_daybox select {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#shoppingcolumn .t_daybox .custom-selectbox {
  vertical-align: middle;
}
#shoppingcolumn .t_daybox .w20 {
  min-width: 165px;
}
#shoppingcolumn form .custom-selectbox select {
  width: auto;
  float: none;
}
#shoppingcolumn .custom-selectbox {
  width: auto;
}
#shoppingcolumn .custom-selectbox select {
  min-width: 200px;
}
#shoppingcolumn .loginarea .inputbox .box250,
#shoppingcolumn .loginarea .inputbox .box275 {
  display: block;
}
#shoppingcolumn .loginarea .inputbox .box275 {
  margin-left: 0 !important;
}
#shoppingcolumn .loginarea {
  min-height: auto !important;
}
#shoppingcolumn .subhead + p .attention {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #shoppingcolumn .subhead + p .attention {
    font-size: 12px;
  }
}
#shoppingcolumn .dlt_wrap dt.require {
  min-width: 275px;
  white-space: nowrap;
}
#shoppingcolumn .dlt_wrap dt.require::after {
  position: static;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  #shoppingcolumn .dlt_wrap dt.require {
    min-width: 190px;
  }
}
#shoppingcolumn .pointarea p {
  margin-bottom: 10px;
}
#shoppingcolumn .pointarea .point__txt {
  line-height: 2;
}
#shoppingcolumn .attention.fz16 {
  font-size: 1.6rem;
}
@media screen and (max-width: 768px) {
  #shoppingcolumn .attention.fz16 {
    font-size: 1.2rem;
  }
}

#productscolumn #count_down_119 {
  display: none;
}
#productscolumn .favoritebtn a {
  cursor: pointer;
}

.item__delete {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.item__delete .item_check {
  display: block;
  position: static;
}

#fv_list p a {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-break: break-all;
}

.tblareabtn a {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.cartbtn2,
.lst_cartbtn a,
.t_cartbtn2 a {
  cursor: pointer;
}

.t_cartbtn2 {
  background-color: #968b42;
}

.family-sale .family-sale-fv {
  max-height: none;
}
@media screen and (max-width: 768px) {
  .family-sale .family-sale-fv .content-padding {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .family-sale .family-sale-fv__container {
    max-height: none;
  }
}
.family-sale .family-sale-fv__img {
  display: block;
  width: 100%;
  height: auto;
}
.family-sale .family-sale-fv__img img,
.family-sale .family-sale-fv__img source {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.family-sale .family-sale-fv__txt {
  margin-top: 30px;
  font-size: 1.4rem;
  line-height: calc(21 / (1.4 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .family-sale .family-sale-fv__txt {
    max-width: 260px;
    margin: 0 auto;
    margin-top: 30px;
    font-size: 1.1rem;
    line-height: calc(22 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.family-sale .family-sale-fv__box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  margin-top: 70px;
  padding: 22px 10px;
  border: 2px solid #eceded;
}
@media screen and (max-width: 768px) {
  .family-sale .family-sale-fv__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 225px;
    margin-top: 30px;
    padding: 30px 35px;
  }
}
.family-sale .family-sale-fv .box__ttl {
  display: block;
  font-size: 1.8rem;
  line-height: calc(28 / (1.8 * 10));
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.family-sale .family-sale-fv .box__img {
  width: 200px;
  height: 85px;
  margin-left: 55px;
}
@media screen and (max-width: 768px) {
  .family-sale .family-sale-fv .box__img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .family-sale .family-sale-fv .box__img {
    margin-top: 25px;
    margin-left: 0;
  }
}
.family-sale .family-sale-fv .box__img img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.family-sale .family-sale-product {
  padding-top: 100px;
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .family-sale .family-sale-product {
    padding-top: 90px;
    padding-bottom: 40px;
  }
}
.family-sale .family-sale-product__container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.family-sale .family-sale-product__lists {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: -90px;
  margin-left: -20px;
}
.family-sale .family-sale-product .lists__item {
  width: calc(20% - 20px);
  margin-top: 90px;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .family-sale .family-sale-product .lists__item {
    width: calc(50% - 20px);
    margin-top: 40px;
  }
}
.family-sale .family-sale-product .item__img {
  display: block;
  width: 100%;
  min-height: 180px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .family-sale .family-sale-product .item__img {
    height: auto;
    min-height: auto;
  }
}
.family-sale .family-sale-product .item__img img {
  -webkit-transition: -webkit-transform 1s;
  -o-object-fit: cover;
  width: 100%;
  object-fit: cover;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}
.family-sale .family-sale-product .item__img:hover img {
  -webkit-transition: -webkit-transform 1s;
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}
.family-sale .family-sale-product .item__img.best, .family-sale .family-sale-product .item__img.homme {
  position: relative;
}
.family-sale .family-sale-product .item__img.best::before, .family-sale .family-sale-product .item__img.homme::before {
  z-index: 1;
  position: absolute;
  top: 8px;
  right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
@media screen and (max-width: 768px) {
  .family-sale .family-sale-product .item__img.best::before, .family-sale .family-sale-product .item__img.homme::before {
    top: 4px;
    right: 4px;
  }
}
.family-sale .family-sale-product .item__img.best::before {
  width: 50px;
  height: 50px;
  background-image: url(../images/family-sale/best@2x.png);
}
@media screen and (max-width: 768px) {
  .family-sale .family-sale-product .item__img.best::before {
    width: 40px;
    height: 40px;
  }
}
.family-sale .family-sale-product .item__img.homme::before {
  width: 50px;
  height: 15px;
  background-image: url(../images/family-sale/homme@2x.png);
}
@media screen and (max-width: 768px) {
  .family-sale .family-sale-product .item__img.homme::before {
    width: 40px;
  }
}
.family-sale .family-sale-product .item__ttl {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  height: 40px;
  -webkit-line-clamp: 2;
  margin-top: 20px;
  overflow: hidden;
  font-weight: normal;
  font-size: 1.2rem;
  line-height: calc(21 / (1.2 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0;
  text-align: center;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .family-sale .family-sale-product .item__ttl {
    font-size: 1rem;
    line-height: calc(18 / (1 * 10));
    letter-spacing: 0.1em;
    letter-spacing: 0;
  }
}
.family-sale .family-sale-product .item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: all 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  margin-top: 20px;
  border: 1px solid #434748;
  background-color: #434748;
  color: #fff;
  font-size: 1.4rem;
  line-height: calc(26 / (1.4 * 10));
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .family-sale .family-sale-product .item__link {
    margin-top: 10px;
  }
}
.family-sale .family-sale-product .item__link:hover {
  -webkit-transition: all 0.4s;
  background-color: #fff;
  color: #434748;
  transition: all 0.4s;
}
.family-sale .family-sale-product .item__value {
  display: block;
  font-size: 1.2rem;
  line-height: calc(20 / (1.2 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
.family-sale .num_quantity {
  margin-top: 10px;
}
.family-sale .num_quantity dl {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.family-sale .num_quantity dt {
  font-size: 1.2rem;
  line-height: calc(21 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.family-sale .soldout {
  min-height: 24px;
  margin-top: 10px;
  text-align: center;
}
.family-sale .soldout em {
  font-size: 1.2rem;
  line-height: calc(24 / (1.2 * 10));
  letter-spacing: 0.1em;
}

/* 2023.09.05 ベリッシマ様側で追記したCSS */
.family-sale .family-sale-product .item__img.ten,
.family-sale .family-sale-product .item__img.twelve,
.family-sale .family-sale-product .item__img.fifteen,
.family-sale .family-sale-product .item__img.forty,
.family-sale .family-sale-product .item__img.fifty {
  position: relative;
}

.family-sale .family-sale-product .item__img.ten::before,
.family-sale .family-sale-product .item__img.twelve::before,
.family-sale .family-sale-product .item__img.fifteen::before,
.family-sale .family-sale-product .item__img.forty::before,
.family-sale .family-sale-product .item__img.fifty::before {
  z-index: 1;
  position: absolute;
  top: 8px;
  right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}

@media screen and (max-width: 768px) {
  .family-sale .family-sale-product .item__img.ten::before,
  .family-sale .family-sale-product .item__img.twelve::before,
  .family-sale .family-sale-product .item__img.fifteen::before,
  .family-sale .family-sale-product .item__img.forty::before,
  .family-sale .family-sale-product .item__img.fifty::before {
    top: 4px;
    right: 4px;
  }
}
.family-sale .family-sale-product .item__img.ten::before {
  width: 50px;
  height: 50px;
  background-image: url(../images/family-sale2022/ten@2x.png);
}

@media screen and (max-width: 768px) {
  .family-sale .family-sale-product .item__img.ten::before {
    width: 40px;
    height: 40px;
  }
}
.family-sale .family-sale-product .item__img.twelve::before {
  width: 50px;
  height: 50px;
  background-image: url(../images/family-sale2022/twelve@2x.png);
}

@media screen and (max-width: 768px) {
  .family-sale .family-sale-product .item__img.twelve::before {
    width: 40px;
    height: 40px;
  }
}
.family-sale .family-sale-product .item__img.fifteen::before {
  width: 50px;
  height: 50px;
  background-image: url(../images/familysale2023/fifteen@2x.png);
}

@media screen and (max-width: 768px) {
  .family-sale .family-sale-product .item__img.fifteen::before {
    width: 40px;
    height: 40px;
  }
}
.family-sale .family-sale-product .item__img.forty::before {
  width: 50px;
  height: 50px;
  background-image: url(../images/familysale2023/forty@2x.png);
}

@media screen and (max-width: 768px) {
  .family-sale .family-sale-product .item__img.forty::before {
    width: 40px;
    height: 40px;
  }
}
.family-sale .family-sale-product .item__img.fifty::before {
  width: 50px;
  height: 50px;
  background-image: url(../images/familysale2023/fifty@2x.png);
}

@media screen and (max-width: 768px) {
  .family-sale .family-sale-product .item__img.fifty::before {
    width: 40px;
    height: 40px;
  }
}
.illuminateporder {
  @import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
.illuminateporder .fadein {
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
  opacity: 0;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}
.illuminateporder .fadein.scrollin {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.illuminateporder div[class*=moving-text-] {
  position: relative;
  left: 0;
}
.illuminateporder .content-width {
  max-width: 1000px;
}
.illuminateporder .common__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: opacity 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  max-width: 210px;
  height: 40px;
  margin-top: 62px;
  padding: 0 20px;
  background-color: #434748;
  color: #fff;
  font-size: 1.4rem;
  line-height: calc(14 / (1.4 * 10));
  letter-spacing: 0.1em;
  transition: opacity 0.4s;
}
@media screen and (max-width: 768px) {
  .illuminateporder .common__link {
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .illuminateporder .common__link {
    max-width: 168px;
  }
}
.illuminateporder .common__link:hover {
  -webkit-transition: opacity 0.4s;
  opacity: 0.8;
  transition: opacity 0.4s;
}
.illuminateporder .common__link::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  width: 7px;
  height: 7px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
}
.illuminateporder .fv {
  max-width: none;
  max-height: none;
}
.illuminateporder .fv__container {
  max-height: none;
}
.illuminateporder .fv__img {
  width: 100%;
  height: 100%;
  min-height: 500px;
}
.illuminateporder .fv__img source,
.illuminateporder .fv__img img {
  -o-object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.illuminateporder .fv__img img {
  min-height: 500px;
}
@media screen and (max-width: 1000px) {
  .illuminateporder .fv__img img {
    min-height: 350px;
  }
}
.illuminateporder .about {
  padding: 100px 30px 150px;
}
@media screen and (max-width: 768px) {
  .illuminateporder .about {
    padding: 58px 0 50px;
  }
}
.illuminateporder .about__container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.illuminateporder .about .lists__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .illuminateporder .about .lists__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.illuminateporder .about .lists__item:nth-of-type(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  -webkit-box-align: end;
  -ms-flex-align: end;
  flex-direction: row-reverse;
  align-items: flex-end;
  margin-top: -190px;
}
@media screen and (max-width: 1024px) {
  .illuminateporder .about .lists__item:nth-of-type(even) {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .illuminateporder .about .lists__item:nth-of-type(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 50px;
  }
}
.illuminateporder .about .item__content {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .illuminateporder .about .item__content {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    padding: 0 50px;
  }
}
.illuminateporder .about .item__content::before {
  z-index: -1;
  position: absolute;
  top: -64px;
  left: 0;
  width: 294px;
  height: 230px;
  background: url("../images/illuminatepowder/about-bg@2x.png") center/contain no-repeat;
  content: "";
}
@media screen and (max-width: 768px) {
  .illuminateporder .about .item__content::before {
    -webkit-transform: translateX(-50%);
    top: -45px;
    left: 50%;
    width: 220px;
    transform: translateX(-50%);
  }
}
.illuminateporder .about .item__ttl {
  font-weight: 200;
  font-size: 2.6rem;
  line-height: calc(46 / (2.6 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .illuminateporder .about .item__ttl {
    font-size: 2rem;
    line-height: calc(40 / (2 * 10));
    letter-spacing: 0.1em;
  }
}
.illuminateporder .about .item__txt {
  margin-top: 42px;
  font-weight: 200;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .illuminateporder .about .item__txt {
    margin-top: 22px;
    font-size: 1.1rem;
    line-height: calc(22 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.illuminateporder .about .item__img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .illuminateporder .about .item__img {
    width: 100%;
    max-width: 500px;
    margin: 40px auto 0;
  }
}
.illuminateporder .about .item__img img {
  -o-object-fit: contain;
  display: block;
  width: 100%;
  object-fit: contain;
}
.illuminateporder .about .item .attention {
  display: block;
  margin-top: 20px;
  color: #333;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: calc(28 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.illuminateporder .about .lists__item:nth-of-type(odd) .item__content {
  padding-right: 84.5px;
}
@media screen and (max-width: 1024px) {
  .illuminateporder .about .lists__item:nth-of-type(odd) .item__content {
    padding-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .illuminateporder .about .lists__item:nth-of-type(odd) .item__content {
    padding-right: 50px;
  }
}
.illuminateporder .about .lists__item:nth-of-type(even) .item__content {
  margin-bottom: 50px;
  padding-left: 84.5px;
}
@media screen and (max-width: 1024px) {
  .illuminateporder .about .lists__item:nth-of-type(even) .item__content {
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .illuminateporder .about .lists__item:nth-of-type(even) .item__content {
    margin-bottom: 0;
    padding-left: 50px;
  }
}
.illuminateporder .about .lists__item:nth-of-type(even) .item__content::before {
  -webkit-transform: rotate(45deg);
  left: 84.5px;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .illuminateporder .about .lists__item:nth-of-type(even) .item__content::before {
    left: 40px;
  }
}
.illuminateporder .about .shineskin {
  display: block;
  position: relative;
  bottom: 20px;
  left: 80px;
  width: 620px;
}
@media screen and (max-width: 768px) {
  .illuminateporder .about .shineskin {
    bottom: 25px;
    left: 50px;
    width: 245px;
  }
}
@media screen and (max-width: 599px) {
  .illuminateporder .about .shineskin {
    left: 25px;
  }
}
.illuminateporder .about .shineskin img {
  -o-object-fit: contain;
  display: block;
  width: 100%;
  object-fit: contain;
}
.illuminateporder .clarity {
  padding: 50px 0 70px;
  background: url("../images/illuminatepowder/clarity-bg@2x.png") center/cover no-repeat;
}
@media screen and (max-width: 1024px) {
  .illuminateporder .clarity {
    background: url("../images/illuminatepowder/clarity-bg-sp@2x.png") center/cover no-repeat;
  }
}
@media screen and (max-width: 1024px) {
  .illuminateporder .clarity {
    padding: 34px 0;
  }
}
.illuminateporder .clarity__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .illuminateporder .clarity__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto;
  }
}
.illuminateporder .clarity__img {
  width: 450px;
}
@media screen and (max-width: 1024px) {
  .illuminateporder .clarity__img {
    width: 100%;
    max-width: 450px;
    height: auto;
    margin: 0 auto;
  }
}
.illuminateporder .clarity__img img {
  -o-object-fit: contain;
  display: block;
  width: 100%;
  object-fit: contain;
}
.illuminateporder .clarity__content {
  width: calc(100% - 450px);
  margin-top: 60px;
  padding-left: 68px;
}
@media screen and (max-width: 1024px) {
  .illuminateporder .clarity__content {
    width: 100%;
    margin-top: 0;
    padding-left: 0;
  }
}
.illuminateporder .clarity__ttl {
  font-weight: 200;
  font-size: 2.6rem;
  line-height: calc(26 / (2.6 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .illuminateporder .clarity__ttl {
    margin-top: 29px;
    font-size: 2.1rem;
    line-height: calc(27 / (2.1 * 10));
    letter-spacing: 0.1em;
    text-align: center;
  }
}
.illuminateporder .clarity__ttl span {
  display: block;
  margin-top: 18px;
  font-size: 1.4rem;
  line-height: calc(14 / (1.4 * 10));
  letter-spacing: 0.1em;
}
.illuminateporder .clarity__price {
  display: block;
  margin-top: 15px;
  font-weight: 200;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .illuminateporder .clarity__price {
    margin-top: 18px;
    font-size: 1.1rem;
    line-height: calc(22 / (1.1 * 10));
    letter-spacing: 0.1em;
    text-align: center;
  }
}
.illuminateporder .clarity__txt {
  margin-top: 20px;
  font-weight: 200;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .illuminateporder .clarity__txt {
    margin-top: 32px;
    font-size: 1.1rem;
    line-height: calc(22 / (1.1 * 10));
    letter-spacing: 0.1em;
    text-align: center;
  }
}
.illuminateporder .clarity__link {
  margin-top: 62px;
}
@media screen and (max-width: 1024px) {
  .illuminateporder .clarity__link {
    margin: 30px auto 0;
  }
}
.illuminateporder .clarity .claritytxt {
  width: 410px;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .illuminateporder .clarity .claritytxt {
    width: 320px;
    margin: 50px auto 0;
  }
}
.illuminateporder .clarity .claritytxt img {
  -o-object-fit: contain;
  display: block;
  width: 100%;
  object-fit: contain;
}
.illuminateporder .point__container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: sticky;
  top: 0;
  left: 0;
  align-items: center;
  width: 100%;
  height: 100vh;
  padding: 50px 0;
  background: #fff url("../images/illuminatepowder/point-bg@2x.png") center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .illuminateporder .point__container {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    min-height: auto;
    padding: 100px 0;
  }
}
.illuminateporder .point__wrapper {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 620px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .illuminateporder .point__wrapper {
    height: 515px;
  }
}
@media screen and (max-width: 768px) {
  .illuminateporder .point__wrapper {
    height: 400px;
  }
}
.illuminateporder .point__num-box {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1150px) {
  .illuminateporder .point__num-box {
    left: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .illuminateporder .point__num-box {
    left: 110px;
  }
}
@media screen and (max-width: 768px) {
  .illuminateporder .point__num-box {
    -webkit-transform: translateX(-50%) translateY(100%);
    top: auto;
    bottom: 0;
    left: 50%;
    width: 100%;
    max-width: 250px;
    transform: translateX(-50%) translateY(100%);
  }
}
@media screen and (max-width: 768px) {
  .illuminateporder .point .num-box__lists {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.illuminateporder .point .num-box__ttl {
  display: block;
  font-weight: 200;
  font-size: 1rem;
  line-height: calc(10 / (1 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .illuminateporder .point .num-box__ttl {
    text-align: left;
  }
}
.illuminateporder .point .num-box__txt {
  -webkit-transform: translateY(50%) rotate(-90deg);
  position: absolute;
  top: 50%;
  left: -170px;
  transform: translateY(50%) rotate(-90deg);
  color: #969696;
  font-weight: 200;
  font-size: 1.1rem;
  line-height: calc(11 / (1.1 * 10));
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.1em;
  letter-spacing: 0.2em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .illuminateporder .point .num-box__txt {
    -webkit-transform: translateX(-50%);
    top: 130%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    line-height: calc(10 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.illuminateporder .point .num-box__lists {
  margin-top: 9px;
}
.illuminateporder .point .num-box__scroll-bar {
  -webkit-transform: translateX(-50%);
  position: absolute;
  top: 20px;
  left: 50%;
  width: 1px;
  height: 0%;
  transform: translateX(-50%);
  background-color: #434748;
  content: "";
}
@media screen and (max-width: 768px) {
  .illuminateporder .point .num-box__scroll-bar {
    -webkit-transform: translateY(-50%);
    top: 70%;
    left: 0;
    width: 0%;
    height: 1px;
    transform: translateY(-50%);
  }
}
.illuminateporder .point .num-box .lists__num-item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid #434748;
  border-radius: 50%;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .illuminateporder .point .num-box .lists__num-item {
    width: 29px;
    height: 29px;
  }
}
.illuminateporder .point .num-box .lists__num-item:not(:first-of-type) {
  margin-top: 96px;
}
@media screen and (max-width: 768px) {
  .illuminateporder .point .num-box .lists__num-item:not(:first-of-type) {
    margin: 0 0 0 36px;
  }
}
.illuminateporder .point .num-box .item__num {
  font-weight: 300;
  font-size: 1.4rem;
  line-height: calc(14 / (1.4 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .illuminateporder .point .num-box .item__num {
    font-size: 1rem;
    line-height: calc(10 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.illuminateporder .point .num-box .lists__num-item.is-active {
  background-color: #434748;
}
.illuminateporder .point .num-box .lists__num-item.is-active .item__num {
  color: #fff;
}
.illuminateporder .point__lists {
  position: relative;
}
.illuminateporder .point .lists__item {
  -webkit-transition: opacity 1.2s, -webkit-transform 1.2s;
  -webkit-transform: translateY(100px) translateX(-50%);
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  transform: translateY(100px) translateX(-50%);
  opacity: 0;
  transition: opacity 1.2s, -webkit-transform 1.2s;
  transition: opacity 1.2s, transform 1.2s;
  transition: opacity 1.2s, transform 1.2s, -webkit-transform 1.2s;
}
.illuminateporder .point .lists__item.is-active {
  -webkit-transition: opacity 1.2s, -webkit-transform 1.2s;
  -webkit-transform: translateY(0) translateX(-50%);
  transform: translateY(0) translateX(-50%);
  opacity: 1;
  transition: opacity 1.2s, -webkit-transform 1.2s;
  transition: opacity 1.2s, transform 1.2s;
  transition: opacity 1.2s, transform 1.2s, -webkit-transform 1.2s;
}
.illuminateporder .point .item__point-num {
  display: block;
  color: #969696;
  font-weight: 200;
  font-size: 4.4rem;
  line-height: calc(58 / (4.4 * 10));
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.1em;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .illuminateporder .point .item__point-num {
    font-size: 3rem;
    line-height: calc(34 / (3 * 10));
    letter-spacing: 0.1em;
  }
}
.illuminateporder .point .item__ttl {
  margin-top: 47px;
  font-weight: 200;
  font-size: 2.6rem;
  line-height: calc(46 / (2.6 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .illuminateporder .point .item__ttl {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .illuminateporder .point .item__ttl {
    margin-top: 35px;
    font-size: 2rem;
    line-height: calc(27 / (2 * 10));
    letter-spacing: 0.1em;
  }
}
.illuminateporder .point .item__txt {
  margin-top: 35px;
  font-weight: 200;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .illuminateporder .point .item__txt {
    margin-top: 24px;
  }
}
@media screen and (max-width: 768px) {
  .illuminateporder .point .item__txt {
    margin-top: 20px;
    font-size: 1.1rem;
    line-height: calc(22 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.illuminateporder .point .item__img {
  width: 100%;
  margin: 55px auto 0;
}
@media screen and (max-width: 1024px) {
  .illuminateporder .point .item__img {
    max-width: 350px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .illuminateporder .point .item__img {
    max-width: 250px;
    margin: 30px auto 0;
  }
}
.illuminateporder .point .item__img img {
  -o-object-fit: contain;
  display: block;
  width: 100%;
  object-fit: contain;
}
.illuminateporder .point .lists__item:not(:first-of-type) .item__img {
  max-width: 280px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .illuminateporder .point .lists__item:not(:first-of-type) .item__img {
    width: 100%;
    max-width: 160px;
  }
}
.illuminateporder .point__spacer {
  width: 100%;
  height: 5500px;
}
.illuminateporder .point.is-over {
  -webkit-transform: none;
  transform: none;
}
.illuminateporder .additive-free {
  padding: 96px 0 100px;
}
@media screen and (max-width: 768px) {
  .illuminateporder .additive-free {
    padding: 48px 0 50px;
  }
}
.illuminateporder .additive-free__ttl {
  text-align: center;
}
.illuminateporder .additive-free__ttl span {
  display: block;
  font-weight: 200;
  font-size: 2rem;
  line-height: calc(20 / (2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .illuminateporder .additive-free__ttl span {
    font-size: 1.5rem;
    line-height: calc(15 / (1.5 * 10));
    letter-spacing: 0.1em;
  }
}
.illuminateporder .additive-free__ttl span:last-of-type {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .illuminateporder .additive-free__ttl span:last-of-type {
    margin-top: 15px;
  }
}
.illuminateporder .additive-free__ttl strong {
  font-weight: 200;
  font-size: 4.4rem;
  line-height: calc(44 / (4.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .illuminateporder .additive-free__ttl strong {
    font-size: 3.3rem;
    line-height: calc(33 / (3.3 * 10));
    letter-spacing: 0.1em;
  }
}
.illuminateporder .additive-free__ttl strong:last-of-type {
  margin-left: 8px;
}
@media screen and (max-width: 768px) {
  .illuminateporder .additive-free__ttl strong:last-of-type {
    margin-left: 4px;
  }
}
.illuminateporder .additive-free__ttl .ttl__samll {
  font-weight: 200;
  font-size: 2.2rem;
  line-height: calc(22 / (2.2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .illuminateporder .additive-free__ttl .ttl__samll {
    font-size: 1.8rem;
    line-height: calc(18 / (1.8 * 10));
    letter-spacing: 0.1em;
  }
}
.illuminateporder .additive-free__lists {
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 630px;
  margin: 50px auto 0;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .illuminateporder .additive-free__lists {
    margin: 29px auto 0;
  }
}
.illuminateporder .additive-free .lists__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  padding: 16px 5px;
  border-radius: 10px;
  background-color: #434748;
}
@media screen and (max-width: 768px) {
  .illuminateporder .additive-free .lists__item {
    width: 141px;
    padding: 12px 5px;
    border-radius: 7.5px;
  }
}
.illuminateporder .additive-free .lists__item span {
  color: #fff;
  font-size: 1.6rem;
  line-height: calc(16 / (1.6 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .illuminateporder .additive-free .lists__item span {
    font-size: 1.2rem;
    line-height: calc(12 / (1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.illuminateporder .outline__img-wrapper {
  background: url("../images/illuminatepowder/outline-bg@2x.png") center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .illuminateporder .outline__img-wrapper {
    padding-top: 70px;
  }
}
.illuminateporder .outline__box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .illuminateporder .outline__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.illuminateporder .outline__img {
  width: 50%;
  height: 100%;
  max-height: 410px;
}
@media screen and (max-width: 768px) {
  .illuminateporder .outline__img {
    width: 100%;
    max-width: 300px;
  }
}
.illuminateporder .outline__img img {
  -o-object-fit: contain;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.illuminateporder .outline__txt {
  padding-left: 120px;
}
@media screen and (max-width: 1024px) {
  .illuminateporder .outline__txt {
    padding-left: 60px;
  }
}
@media screen and (max-width: 768px) {
  .illuminateporder .outline__txt {
    padding-left: 0;
  }
}
.illuminateporder .outline__txt span {
  display: inline-block;
  font-weight: 200;
  font-size: 2.6rem;
  line-height: calc(54 / (2.6 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .illuminateporder .outline__txt span {
    font-size: 2.2rem;
    line-height: calc(36 / (2.2 * 10));
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 768px) {
  .illuminateporder .outline__txt span {
    font-size: 1.8rem;
    line-height: calc(39 / (1.8 * 10));
    letter-spacing: 0.1em;
  }
}
.illuminateporder .outline__content {
  padding: 100px 20px 85px;
  background-color: #f0f0f0;
}
@media screen and (max-width: 768px) {
  .illuminateporder .outline__content {
    padding: 50px;
  }
}
.illuminateporder .outline__data {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.illuminateporder .outline .data__box:not(:first-of-type) {
  margin-top: 28px;
}
.illuminateporder .outline .data__ttl, .illuminateporder .outline .data__content {
  font-weight: 200;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .illuminateporder .outline .data__ttl, .illuminateporder .outline .data__content {
    font-size: 1.1rem;
    line-height: calc(22 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.illuminateporder .product {
  padding: 120px 0 0;
}
@media screen and (max-width: 768px) {
  .illuminateporder .product {
    padding-top: 50px;
  }
}
.illuminateporder .product__container {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .illuminateporder .product__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 400px;
    margin: 0 auto;
  }
}
.illuminateporder .product__img {
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.illuminateporder .product__img img {
  -o-object-fit: contain;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.illuminateporder .product__ttl {
  margin-top: 30px;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: calc(22 / (1.2 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .illuminateporder .product__ttl {
    margin-top: 20px;
    font-size: 1rem;
    line-height: calc(18 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.illuminateporder .product__link {
  margin: 20px auto 0;
}

/**
* @file _l-index.scss
**/
.section__en-ttl {
  display: block;
  font-weight: lighter;
  font-size: 4.2rem;
  line-height: calc(42 / (4.2 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
.section__ttl {
  margin-top: 15px;
  font-weight: lighter;
  font-size: 1.4rem;
  line-height: calc(14 / (1.4 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}

.swiper-pagination {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: static;
  align-items: center;
  justify-content: center;
  height: 30px;
  margin-bottom: 15px;
}

.swiper-pagination-bullet-active {
  background-color: #000;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 10px;
}

.fv {
  width: 100%;
  max-width: 2000px;
  max-height: 780px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .fv__container {
    max-height: 600px;
  }
}
.fv__lists {
  width: 100%;
}
.fv .lists__item {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .fv .lists__item {
    height: 100%;
    min-height: 450px;
  }
}
.fv .item__link {
  display: block;
  width: 100%;
  height: 100%;
}
.fv .item__link picture,
.fv .item__link source {
  display: block;
  width: 100%;
  height: 100%;
}
.fv .item__link img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 740px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .fv .item__link img {
    -o-object-fit: contain;
    max-height: 550px;
    object-fit: contain;
  }
}

.instagram .content-width {
  max-width: 1000px;
}
.instagram__header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 80px;
  margin-top: -80px;
}
@media screen and (max-width: 768px) {
  .instagram__header {
    margin-top: -60px;
  }
}
.instagram__footer {
  padding-top: 55px;
  padding-bottom: 60px;
  background-color: #434748;
}
.instagram__footer .footer__lists {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .instagram__footer .footer__lists {
    -ms-flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    flex-wrap: wrap;
    justify-content: start;
    padding: 0 30px;
  }
}
.instagram__footer .lists__item {
  position: relative;
}
@media screen and (max-width: 768px) {
  .instagram__footer .lists__item {
    width: calc(50% - 15px);
    padding: 15px 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
}
.instagram__footer .lists__item:not(:first-of-type) {
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .instagram__footer .lists__item:not(:first-of-type) {
    margin-left: 0;
  }
}
.instagram__footer .lists__item:not(:first-of-type)::before {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: -20px;
  width: 1px;
  height: 20px;
  transform: translateY(-50%);
  background-color: #fff;
  content: "";
}
@media screen and (max-width: 768px) {
  .instagram__footer .lists__item:not(:first-of-type)::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .instagram__footer .lists__item:nth-of-type(2n) {
    margin-left: 15px;
  }
}
@media screen and (max-width: 768px) {
  .instagram__footer .lists__item:first-of-type {
    border-bottom: none;
  }
}
.instagram__footer .item__link {
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 1.2rem;
  line-height: calc(26 / (1.2 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.1em;
}
.instagram__footer .copyright {
  display: block;
  margin-top: 20px;
  color: #fff;
  font-weight: 100;
  font-size: 1.2rem;
  line-height: calc(26 / (1.2 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .instagram__footer .copyright {
    margin-top: 50px;
  }
}
.instagram .fv {
  width: 100%;
  max-height: none;
}
@media screen and (max-width: 768px) {
  .instagram .fv__container {
    max-height: none;
  }
}
.instagram .fv__img {
  width: 100%;
}
.instagram .fv__img source,
.instagram .fv__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 435px;
  object-fit: cover;
}
.instagram .entry {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .instagram .entry {
    padding-top: 50px;
  }
}
.instagram .entry__container {
  padding: 30px 15px;
  border: 2px solid #eceded;
}
.instagram .entry__ttl {
  font-weight: normal;
  font-size: 1.8rem;
  line-height: calc(34 / (1.8 * 10));
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.instagram .entry__lists {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  max-width: 485px;
  margin: 0 auto;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .instagram .entry__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.instagram .entry .lists__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .instagram .entry .lists__item:not(:first-of-type) {
    margin-top: 70px;
  }
}
.instagram .entry .lists__item:first-of-type {
  position: relative;
}
.instagram .entry .lists__item:first-of-type::after {
  position: absolute;
  top: 35px;
  right: -95px;
  width: 100px;
  height: 1px;
  background-color: #434748;
  content: "";
}
@media screen and (max-width: 768px) {
  .instagram .entry .lists__item:first-of-type::after {
    -webkit-transform: translateX(-50%);
    top: auto;
    right: auto;
    bottom: -50px;
    left: 50%;
    width: 1px;
    height: 35px;
    transform: translateX(-50%);
  }
}
.instagram .entry .item__num {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 75px;
  border: 1px solid black;
  border-radius: 50%;
  font-size: 3.6rem;
  line-height: calc(36 / (3.6 * 10));
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.1em;
  letter-spacing: 0.05em;
}
.instagram .entry .item__img {
  width: 80px;
  height: 80px;
  margin-top: 20px;
}
.instagram .entry .item__img img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.instagram .entry .item__txt {
  margin-top: 20px;
  font-size: 1.6rem;
  line-height: calc(24 / (1.6 * 10));
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.instagram .entry .item .bold {
  font-weight: bold;
}
.instagram .entry__attention {
  font-size: 1.2rem;
  line-height: calc(22 / (1.2 * 10));
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.instagram .entry__attention:first-of-type {
  margin-top: 20px;
}
.instagram .hashtag {
  padding-top: 40px;
  padding-bottom: 100px;
}
.instagram .hashtag .smarthash_more_btn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: all 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 60px;
  padding: 0;
  border-radius: 0;
  transition: all 0.4s;
}
.instagram .hashtag .smarthash_more_btn:hover {
  -webkit-transition: all 0.4s;
  background-color: #968b42;
  color: #fff;
  transition: all 0.4s;
}

.lekarka-hotel {
  @import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
  @import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");
  margin-top: -80px;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel {
    margin-top: -60px;
  }
}
.lekarka-hotel__header {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
  position: absolute;
  top: 0;
  left: 0;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 80px;
}
.lekarka-hotel .lekarka-hotel-fv {
  max-width: none;
  max-height: none;
}
.lekarka-hotel .lekarka-hotel-fv__container {
  position: relative;
}
.lekarka-hotel .lekarka-hotel-fv__img {
  display: block;
  position: relative;
  width: 100vw;
  min-height: 600px;
  padding-top: 56%;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .lekarka-hotel-fv__img {
    min-height: auto;
    max-height: 650px;
    padding-top: 0;
  }
}
.lekarka-hotel .lekarka-hotel-fv__img source,
.lekarka-hotel .lekarka-hotel-fv__img img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 600px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .lekarka-hotel-fv__img source,
  .lekarka-hotel .lekarka-hotel-fv__img img {
    position: static;
    height: 100%;
    min-height: auto;
    max-height: 650px;
  }
}
.lekarka-hotel .lekarka-hotel-fv__wrapper {
  -webkit-transform: translate(-50%, -50%);
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .lekarka-hotel-fv__wrapper {
    width: 100%;
  }
}
.lekarka-hotel .lekarka-hotel-fv__logo {
  width: 100%;
  max-width: 456px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .lekarka-hotel .lekarka-hotel-fv__logo {
    max-width: 300px;
  }
}
.lekarka-hotel .lekarka-hotel-fv__logo img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}
.lekarka-hotel .lekarka-hotel-fv__lists {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin-top: 200px;
  gap: 50px;
}
@media screen and (max-width: 1260px) {
  .lekarka-hotel .lekarka-hotel-fv__lists {
    margin-top: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .lekarka-hotel .lekarka-hotel-fv__lists {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .lekarka-hotel-fv__lists {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 18px;
  }
}
.lekarka-hotel .lekarka-hotel-fv .item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: opacity 0.6s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 8px 30px 8px 20px;
  border: 1px solid #fff;
  border-radius: 999px;
  color: #fff;
  font-size: 1.2rem;
  line-height: calc(21 / (1.2 * 10));
  letter-spacing: 0.1em;
  white-space: nowrap;
  transition: opacity 0.6s;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .lekarka-hotel-fv .item__link {
    width: 110px;
    background: rgba(255, 255, 255, 0.4);
    color: #333;
    font-size: 1rem;
    line-height: calc(19 / (1 * 10));
    letter-spacing: 0.1em;
    letter-spacing: 0.05rem;
  }
}
.lekarka-hotel .lekarka-hotel-fv .item__link:hover {
  -webkit-transition: opacity 0.6s;
  opacity: 0.6;
  transition: opacity 0.6s;
}
.lekarka-hotel .lekarka-hotel-fv .item__link::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 45%;
  right: 15px;
  width: 7px;
  height: 7px;
  transform: translateY(-50%) rotate(45deg);
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  content: "";
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .lekarka-hotel-fv .item__link::before {
    right: 10px;
    width: 5px;
    height: 5px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
  }
}
.lekarka-hotel .lekarka-hotel-fv__scroll {
  -webkit-transform: translateX(-50%);
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
}
.lekarka-hotel .lekarka-hotel-fv__scroll img {
  -o-object-fit: contain;
  display: block;
  width: 35px;
  margin: 0 auto;
  object-fit: contain;
}
.lekarka-hotel .lekarka-hotel-fv__scroll::before {
  -webkit-transform: translateX(-50%) rotate(45deg);
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 10px;
  height: 10px;
  transform: translateX(-50%) rotate(45deg);
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  content: "";
}
.lekarka-hotel .lekarka-hotel-fv__txt {
  margin-top: 20px;
  color: #fff;
  font-size: 1.4rem;
  line-height: calc(14 / (1.4 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.2rem;
  text-align: center;
}
.lekarka-hotel .lead {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .lead {
    padding: 50px 0;
  }
}
.lekarka-hotel .lead__ttl {
  width: 100%;
  max-width: 395px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .lead__ttl {
    max-width: 275px;
    padding: 0 15px;
  }
}
.lekarka-hotel .lead__ttl img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}
.lekarka-hotel .lead__txt {
  margin-top: 45px;
  font-size: 1.4rem;
  line-height: calc(32 / (1.4 * 10));
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  letter-spacing: 0.1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .lead__txt {
    margin-top: 30px;
    font-size: 1rem;
    line-height: calc(21 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.lekarka-hotel .date {
  position: relative;
  height: 600px;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .date {
    height: auto;
    min-height: 400px;
    padding: 50px 0;
  }
}
.lekarka-hotel .date__bg-img {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
}
.lekarka-hotel .date__bg-img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lekarka-hotel .date__container {
  max-width: 1070px;
  margin: 0 auto;
  padding: 60px 30px;
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .date__container {
    padding: 50px 15px;
  }
}
.lekarka-hotel .date__ttl {
  width: 100%;
  max-width: 307px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .date__ttl {
    max-width: 225px;
  }
}
.lekarka-hotel .date__ttl img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}
.lekarka-hotel .date__txt {
  margin-top: 30px;
  font-size: 1.6rem;
  line-height: calc(26 / (1.6 * 10));
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .date__txt {
    margin-top: 10px;
    font-size: 1.1rem;
    line-height: calc(24 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.lekarka-hotel .order {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .order {
    padding: 50px 0;
  }
}
.lekarka-hotel .order__ttl {
  width: 100%;
  max-width: 145px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .order__ttl {
    max-width: 108px;
  }
}
.lekarka-hotel .order__lists {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin-top: 50px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .order__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-direction: column;
    align-items: center;
    max-width: 500px;
    margin: 25px auto 0;
  }
}
.lekarka-hotel .order .lists__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 440px;
  height: 180px;
  background: linear-gradient(140deg, rgb(126, 93, 61) 0%, rgb(137, 105, 72) 10%, rgb(167, 137, 102) 30%, rgb(202, 174, 137) 50%, rgb(202, 174, 137) 100%);
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .order .lists__item {
    max-width: 300px;
    height: 125px;
  }
}
.lekarka-hotel .order .item__date {
  color: #fff;
  font-size: 1.6rem;
  line-height: calc(32 / (1.6 * 10));
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  letter-spacing: 0.2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .order .item__date {
    font-size: 1.1rem;
    line-height: calc(22 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.lekarka-hotel .order .item__ttl {
  margin-top: 25px;
  color: #fff;
  font-weight: normal;
  font-size: 2.4rem;
  line-height: calc(24 / (2.4 * 10));
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  letter-spacing: 0.2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .order .item__ttl {
    margin-top: 22px;
    font-size: 1.7rem;
    line-height: calc(18 / (1.7 * 10));
    letter-spacing: 0.1em;
  }
}
.lekarka-hotel .order__attention {
  display: block;
  width: 100%;
  max-width: 900px;
  margin: 10px auto 0;
  font-size: 1.2rem;
  line-height: calc(12 / (1.2 * 10));
  letter-spacing: 0.1em;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .order__attention {
    max-width: 300px;
    font-size: 1rem;
    line-height: calc(10 / (1 * 10));
    letter-spacing: 0.1em;
    letter-spacing: 0.05rem;
  }
}
.lekarka-hotel .schedule {
  padding: 100px 0;
  background: linear-gradient(140deg, rgb(126, 93, 61) 0%, rgb(137, 105, 72) 10%, rgb(167, 137, 102) 30%, rgb(202, 174, 137) 50%, rgb(202, 174, 137) 100%);
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .schedule {
    padding: 50px 0;
  }
}
.lekarka-hotel .schedule__ttl {
  color: #fff;
  font-weight: 400;
  font-size: 5rem;
  line-height: calc(50 / (5 * 10));
  font-family: "Marcellus", serif;
  letter-spacing: 0.1em;
  letter-spacing: 0.4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .schedule__ttl {
    font-size: 3.5rem;
    line-height: calc(35 / (3.5 * 10));
    letter-spacing: 0.1em;
  }
}
.lekarka-hotel .schedule__lists {
  margin-top: 40px;
}
.lekarka-hotel .schedule .lists__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .schedule .lists__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.lekarka-hotel .schedule .lists__item .item__content {
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .schedule .lists__item .item__content {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .schedule .lists__item:not(:first-of-type) {
    margin-top: 50px;
  }
}
.lekarka-hotel .schedule .lists__item:nth-of-type(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .schedule .lists__item:nth-of-type(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.lekarka-hotel .schedule .lists__item:nth-of-type(2n) .item__content {
  padding: 50px 0 0 30px;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .schedule .lists__item:nth-of-type(2n) .item__content {
    padding: 0;
  }
}
.lekarka-hotel .schedule .item__img {
  width: 50%;
  height: 400px;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .schedule .item__img {
    width: 100%;
    height: auto;
  }
}
.lekarka-hotel .schedule .item__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lekarka-hotel .schedule .item__content {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .schedule .item__content {
    padding: 0;
  }
}
.lekarka-hotel .schedule .item__ttl {
  color: #fff;
  font-size: 4.6rem;
  line-height: calc(46 / (4.6 * 10));
  font-family: "Marcellus", serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .schedule .item__ttl {
    font-size: 3.2rem;
    line-height: calc(32 / (3.2 * 10));
    letter-spacing: 0.1em;
    text-align: center;
  }
}
.lekarka-hotel .schedule .item__ttl span {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-weight: 400;
  font-size: 1.9rem;
  line-height: calc(19 / (1.9 * 10));
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .schedule .item__ttl span {
    margin-top: 5px;
    font-size: 1.3rem;
    line-height: calc(13 / (1.3 * 10));
    letter-spacing: 0.1em;
  }
}
.lekarka-hotel .schedule .item__data {
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .schedule .item__data {
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0;
  }
}
.lekarka-hotel .schedule .item .data__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.lekarka-hotel .schedule .item .data__box:not(:first-of-type) {
  margin-top: 15px;
}
.lekarka-hotel .schedule .item .data__ttl {
  width: 135px;
  color: #fff;
  font-size: 1.8rem;
  line-height: calc(18 / (1.8 * 10));
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .schedule .item .data__ttl {
    width: 100px;
    font-size: 1.3rem;
    line-height: calc(13 / (1.3 * 10));
    letter-spacing: 0.1em;
  }
}
.lekarka-hotel .schedule .item .data__ttl.stay {
  width: 245px;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .schedule .item .data__ttl.stay {
    width: 180px;
  }
}
.lekarka-hotel .schedule .item .data__content {
  width: calc(100% - 135px);
  padding-left: 45px;
  color: #fff;
  font-size: 1.8rem;
  line-height: calc(18 / (1.8 * 10));
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .schedule .item .data__content {
    width: calc(100% - 100px);
    font-size: 1.3rem;
    line-height: calc(13 / (1.3 * 10));
    letter-spacing: 0.1em;
  }
}
.lekarka-hotel .schedule .item .data__content.stay {
  width: calc(100% - 245px);
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .schedule .item .data__content.stay {
    width: calc(100% - 180px);
    padding-left: 15px;
  }
}
.lekarka-hotel .plan {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .plan {
    padding: 50px 0;
  }
}
.lekarka-hotel .plan__container {
  width: 100%;
  max-width: 1070px;
  margin: 0 auto;
}
.lekarka-hotel .plan .lists__item {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .plan .lists__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}
.lekarka-hotel .plan .lists__item:not(:first-of-type) {
  margin-top: 80px;
}
.lekarka-hotel .plan .lists__item:nth-of-type(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  flex-direction: row-reverse;
  justify-content: start;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .plan .lists__item:nth-of-type(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 0;
  }
}
.lekarka-hotel .plan .item__content {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .plan .item__content {
    width: 100%;
    margin-top: 25px;
  }
}
.lekarka-hotel .plan .item__img {
  width: calc(100% - 300px);
  max-width: 620px;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .plan .item__img {
    width: 100%;
    max-width: none;
  }
}
.lekarka-hotel .plan .item__img img {
  -o-object-fit: cover;
  width: 100%;
  object-fit: cover;
}
.lekarka-hotel .plan .item__ttl {
  font-size: 2.8rem;
  line-height: calc(46 / (2.8 * 10));
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .plan .item__ttl {
    font-size: 2rem;
    line-height: calc(32 / (2 * 10));
    letter-spacing: 0.1em;
  }
}
.lekarka-hotel .plan .item__txt {
  font-size: 1.8rem;
  line-height: calc(48 / (1.8 * 10));
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .plan .item__txt {
    font-size: 1.3rem;
    line-height: calc(34 / (1.3 * 10));
    letter-spacing: 0.1em;
  }
}
.lekarka-hotel .plan .item__price {
  display: inline-block;
  margin-top: 10px;
  font-size: 1.6rem;
  line-height: calc(24 / (1.6 * 10));
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 768px) {
  .lekarka-hotel .plan .item__price {
    font-size: 1.2rem;
    line-height: calc(30 / (1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.lekarka-hotel .plan .item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: opacity 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  max-width: 210px;
  height: 40px;
  margin-top: 100px;
  padding: 0 20px;
  background: linear-gradient(140deg, rgb(126, 93, 61) 0%, rgb(137, 105, 72) 10%, rgb(167, 137, 102) 30%, rgb(202, 174, 137) 50%, rgb(202, 174, 137) 100%);
  color: #fff;
  font-size: 1.4rem;
  line-height: calc(14 / (1.4 * 10));
  letter-spacing: 0.1em;
  transition: opacity 0.4s;
}
@media screen and (max-width: 1000px) {
  .lekarka-hotel .plan .item__link {
    max-width: 190px;
    margin-top: 30px;
  }
}
.lekarka-hotel .plan .item__link:hover {
  -webkit-transition: opacity 0.4s;
  opacity: 0.8;
  transition: opacity 0.4s;
}
.lekarka-hotel .plan .item__link::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  width: 7px;
  height: 7px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
}

.mothersday .fv {
  width: 100%;
  max-width: none;
  max-height: none;
}
@media screen and (max-width: 768px) {
  .mothersday .fv__container {
    max-height: none;
  }
}
.mothersday .fv__img {
  width: 100%;
}
.mothersday .fv__img source,
.mothersday .fv__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  min-height: 435px;
  object-fit: cover;
}
.mothersday .gift {
  padding: 100px 0 126px;
  background: url("../images/mothersday/gift@2x.png") center/cover no-repeat;
}
@media screen and (max-width: 1024px) {
  .mothersday .gift {
    background-position: -600px;
  }
}
@media screen and (max-width: 768px) {
  .mothersday .gift {
    padding: 43px 0 87.2vw;
    background: url("../images/mothersday/gift-sp@2x.png") center/cover no-repeat;
  }
}
.mothersday .gift__ttl {
  font-weight: 100;
  font-size: 3.2rem;
  line-height: calc(32 / (3.2 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mothersday .gift__ttl {
    font-size: 2.5rem;
    line-height: calc(25 / (2.5 * 10));
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
}
.mothersday .gift__sub-ttl {
  margin-top: 30px;
  font-weight: 100;
  font-size: 2rem;
  line-height: calc(28 / (2 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mothersday .gift__sub-ttl {
    margin-top: 23px;
    font-size: 1.6rem;
    line-height: calc(21 / (1.6 * 10));
    letter-spacing: 0.1em;
  }
}
.mothersday .gift__txt {
  margin-top: 36px;
  font-weight: 100;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mothersday .gift__txt {
    margin-top: 27px;
    font-size: 1.1rem;
    line-height: calc(22 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.mothersday .set {
  padding: 110px 0 80px;
  background: url("../images/mothersday/set-bg@2x.png") center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .mothersday .set {
    padding: 43px 0 40px;
  }
}
.mothersday .set__container {
  max-width: 980px;
  margin: 0 auto;
}
.mothersday .set__ttl {
  font-weight: 100;
  font-size: 3.2rem;
  line-height: calc(32 / (3.2 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mothersday .set__ttl {
    font-size: 2.5rem;
    line-height: calc(25 / (2.5 * 10));
    letter-spacing: 0.1em;
    white-space: nowrap;
  }
}
.mothersday .set__sub-ttl {
  display: block;
  margin-top: 17.5px;
  font-weight: 100;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mothersday .set__sub-ttl {
    font-size: 1.1rem;
    line-height: calc(22 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.mothersday .set__lists {
  margin-top: 62px;
}
@media screen and (max-width: 768px) {
  .mothersday .set__lists {
    margin-top: 30px;
  }
}
.mothersday .set .lists__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .mothersday .set .lists__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.mothersday .set .lists__item:not(:first-of-type) {
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .mothersday .set .lists__item:not(:first-of-type) {
    margin-top: 30px;
  }
}
.mothersday .set .item__img {
  width: calc(100% - 460px);
}
@media screen and (max-width: 768px) {
  .mothersday .set .item__img {
    width: 100%;
  }
}
.mothersday .set .item__img img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}
.mothersday .set .item__content {
  width: 60%;
  max-width: 460px;
  padding: 52px 50px 52px 0;
}
@media screen and (max-width: 768px) {
  .mothersday .set .item__content {
    width: 100%;
    max-width: none;
    margin: 0 auto;
    padding: 0 15px 30px;
  }
}
.mothersday .set .item__ttl {
  font-weight: 500;
  font-size: 2.2rem;
  line-height: calc(40 / (2.2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .mothersday .set .item__ttl {
    font-size: 1.7rem;
    line-height: calc(32 / (1.7 * 10));
    letter-spacing: 0.1em;
    letter-spacing: 0.03em;
  }
}
.mothersday .set .item__benefit {
  display: inline-block;
  margin-top: 15px;
  padding: 8px;
  background-color: #eceded;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: calc(12 / (1.2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .mothersday .set .item__benefit {
    font-size: 1.1rem;
    line-height: calc(11 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.mothersday .set .item__price {
  display: block;
  margin-top: 10px;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: calc(12 / (1.2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .mothersday .set .item__price {
    font-size: 1.1rem;
    line-height: calc(11 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.mothersday .set .item__txt {
  margin-top: 31px;
  font-size: 1.2rem;
  line-height: calc(24 / (1.2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .mothersday .set .item__txt {
    margin-top: 26px;
    font-size: 1.1rem;
    line-height: calc(22 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.mothersday .set .item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: opacity 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  max-width: 210px;
  height: 40px;
  margin-top: 30px;
  padding: 0 20px;
  background-color: #434748;
  color: #fff;
  font-size: 1.4rem;
  line-height: calc(14 / (1.4 * 10));
  letter-spacing: 0.1em;
  transition: opacity 0.4s;
}
@media screen and (max-width: 768px) {
  .mothersday .set .item__link {
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .mothersday .set .item__link {
    max-width: 168px;
  }
}
.mothersday .set .item__link:hover {
  -webkit-transition: opacity 0.4s;
  opacity: 0.8;
  transition: opacity 0.4s;
}
.mothersday .set .item__link::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  width: 7px;
  height: 7px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
}
.mothersday .set .item__limit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 28px;
  font-weight: 500;
}
.mothersday .set .item .limit__ttl {
  font-size: 1.2rem;
  line-height: calc(22 / (1.2 * 10));
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .mothersday .set .item .limit__ttl {
    font-size: 1.1rem;
    line-height: calc(20 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.mothersday .set .item .limit__txt {
  font-size: 1.2rem;
  line-height: calc(22 / (1.2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .mothersday .set .item .limit__txt {
    font-size: 1.1rem;
    line-height: calc(20 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.mothersday .attention {
  padding: 80px 0;
  background-color: #f0f0f0;
  color: #333;
}
@media screen and (max-width: 768px) {
  .mothersday .attention {
    padding: 40px 0;
  }
}
.mothersday .attention__container {
  max-width: 980px;
  margin: 0 auto;
  padding: 80px 90px 75px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .mothersday .attention__container {
    padding: 50px 20px 42.5px;
  }
}
.mothersday .attention__ttl {
  font-weight: 300;
  font-size: 2rem;
  line-height: calc(28 / (2 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mothersday .attention__ttl {
    font-size: 1.6rem;
    line-height: calc(21 / (1.6 * 10));
    letter-spacing: 0.1em;
  }
}
.mothersday .attention__data {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .mothersday .attention__data {
    margin-top: 40px;
  }
}
.mothersday .attention .data__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .mothersday .attention .data__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.mothersday .attention .data__box:not(:first-of-type) {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px solid #eceded;
}
.mothersday .attention .data__ttl {
  width: 255px;
  font-weight: 500;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .mothersday .attention .data__ttl {
    width: 100%;
    text-align: center;
  }
}
.mothersday .attention .data__content {
  width: calc(100% - 255px);
  padding: 0;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .mothersday .attention .data__content {
    width: 100%;
    font-size: 1.1rem;
    line-height: calc(22 / (1.1 * 10));
    letter-spacing: 0.1em;
    text-align: center;
  }
}

.presale-fv {
  max-height: none;
}
@media screen and (max-width: 768px) {
  .presale-fv .content-padding {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .presale-fv__container {
    max-height: none;
  }
}
.presale-fv__img {
  display: block;
  width: 100%;
  height: auto;
}
.presale-fv__img img,
.presale-fv__img source {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.presale-fv__txt {
  margin-top: 30px;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .presale-fv__txt {
    margin: 30px auto 0;
    padding: 0 20px;
    font-size: 1.1rem;
    line-height: calc(22 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.presale-fv__box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  margin-top: 70px;
  padding: 22px 10px;
  border: 2px solid #eceded;
}
@media screen and (max-width: 768px) {
  .presale-fv__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 225px;
    margin-top: 30px;
    padding: 30px 35px;
  }
}
.presale-fv .box__ttl {
  display: block;
  font-size: 1.8rem;
  line-height: calc(28 / (1.8 * 10));
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.presale-fv .box__img {
  width: 200px;
  height: 85px;
  margin-left: 55px;
}
@media screen and (max-width: 768px) {
  .presale-fv .box__img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .presale-fv .box__img {
    margin-top: 25px;
    margin-left: 0;
  }
}
.presale-fv .box__img img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.presale .presale-product {
  padding-top: 60px;
  padding-bottom: 140px;
}
@media screen and (max-width: 768px) {
  .presale .presale-product {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.presale .presale-product__container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
.presale .presale-product__lists {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 90px 20px;
}
@media screen and (max-width: 599px) {
  .presale .presale-product__lists {
    gap: 40px;
  }
}
.presale .presale-product .lists__item {
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 768px) {
  .presale .presale-product .lists__item {
    width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 599px) {
  .presale .presale-product .lists__item {
    width: 100%;
  }
}
.presale .presale-product .item__img {
  display: block;
  width: 100%;
  min-height: 180px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .presale .presale-product .item__img {
    height: auto;
    min-height: auto;
  }
}
.presale .presale-product .item__img img {
  -webkit-transition: -webkit-transform 1s;
  -o-object-fit: cover;
  width: 100%;
  object-fit: cover;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}
.presale .presale-product .item__img:hover img {
  -webkit-transition: -webkit-transform 1s;
  -webkit-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}
.presale .presale-product .item__img.best, .presale .presale-product .item__img.homme {
  position: relative;
}
.presale .presale-product .item__img.best::before, .presale .presale-product .item__img.homme::before {
  z-index: 1;
  position: absolute;
  top: 8px;
  right: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
@media screen and (max-width: 768px) {
  .presale .presale-product .item__img.best::before, .presale .presale-product .item__img.homme::before {
    top: 4px;
    right: 4px;
  }
}
.presale .presale-product .item__img.best::before {
  width: 50px;
  height: 50px;
  background-image: url(../images/presale/best@2x.png);
}
@media screen and (max-width: 768px) {
  .presale .presale-product .item__img.best::before {
    width: 40px;
    height: 40px;
  }
}
.presale .presale-product .item__img.homme::before {
  width: 50px;
  height: 15px;
  background-image: url(../images/presale/homme@2x.png);
}
@media screen and (max-width: 768px) {
  .presale .presale-product .item__img.homme::before {
    width: 40px;
  }
}
.presale .presale-product .item__ttl {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  padding: 20px 0 10px;
  overflow: hidden;
  font-weight: normal;
  font-size: 1.2rem;
  line-height: calc(21 / (1.2 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0;
  text-align: center;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .presale .presale-product .item__ttl {
    font-size: 1rem;
    line-height: calc(18 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.presale .presale-product .item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: all 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  margin-top: 20px;
  border: 1px solid #434748;
  background-color: #434748;
  color: #fff;
  font-size: 1.4rem;
  line-height: calc(26 / (1.4 * 10));
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .presale .presale-product .item__link {
    margin-top: 10px;
  }
}
.presale .presale-product .item__link:hover {
  -webkit-transition: all 0.4s;
  background-color: #fff;
  color: #434748;
  transition: all 0.4s;
}
.presale .num_quantity {
  margin-top: 10px;
}
.presale .num_quantity dl {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.presale .num_quantity dt {
  font-size: 1.2rem;
  line-height: calc(21 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.presale .soldout {
  min-height: 24px;
  margin-top: 10px;
  text-align: center;
}
.presale .soldout em {
  font-size: 1.2rem;
  line-height: calc(24 / (1.2 * 10));
  letter-spacing: 0.1em;
}

.product-detail {
  padding: 100px 0;
}
.product-detail div#productscolumn {
  width: 100%;
  margin: 0;
  padding: 0;
}
.product-detail .t_cartbtn {
  background-color: #968b42;
}
.product-detail div#detailrightblock .numarea {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.product-detail div#detailphotoblock {
  margin-top: 24px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .product-detail div#detailphotoblock {
    margin-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .product-detail {
    padding-top: 20px;
    padding-bottom: 40px;
  }
}
.product-detail .display-none {
  display: none;
}
.product-detail .content-width {
  max-width: 980px;
}
.product-detail .common__ttl {
  position: relative;
  font-weight: 200;
  font-size: 3.2rem;
  line-height: calc(32 / (3.2 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
.product-detail .common__ttl span {
  position: relative;
  padding: 0 30px;
  background-color: #fff;
}
.product-detail .common__ttl::before {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  transform: translateY(-50%);
  background-color: rgba(67, 71, 72, 0.1);
  content: "";
}
.product-detail .related-product__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 60px 0;
}
@media screen and (max-width: 768px) {
  .product-detail .related-product__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.product-detail .related-product__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: opacity 0.5s;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  position: relative;
  align-items: center;
  height: 95px;
  padding-right: 40px;
  border: 1px solid rgba(67, 71, 72, 0.1);
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
  .product-detail .related-product__link {
    width: 100%;
  }
}
.product-detail .related-product__link:not(:first-of-type) {
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .product-detail .related-product__link:not(:first-of-type) {
    margin: 10px 0 0 0;
  }
}
.product-detail .related-product__link:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.product-detail .related-product__link::before {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(-45deg);
  border-right: 1px solid #434748;
  border-bottom: 1px solid #434748;
  content: "";
}
.product-detail .related-product__link span {
  max-width: 250px;
  font-weight: bold;
  font-size: 1.2rem;
  line-height: calc(22 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.product-detail .related-product__img {
  width: 75px;
  height: 75px;
}
.product-detail .related-product__img img {
  -o-object-fit: contain;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-detail .about {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .product-detail .about {
    padding-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .product-detail .about__section-ttl::before {
    -webkit-transform: translateX(-50%) translateY(-50%);
    left: 50%;
    width: calc(100% - 30px);
    transform: translateX(-50%) translateY(-50%);
  }
}
.product-detail .about__txt {
  margin-top: 30px;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: calc(20 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .product-detail .about__txt {
    margin-top: 20px;
    font-size: 1.2rem;
    line-height: calc(18 / (1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.product-detail .about__wrapper {
  max-width: 880px;
  margin: 0 auto;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .product-detail .about__wrapper {
    padding: 0 15px;
  }
}
.product-detail .about__head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .product-detail .about__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.product-detail .about__img {
  width: 48%;
  padding: 0 20px;
}
@media screen and (max-width: 768px) {
  .product-detail .about__img {
    width: 100%;
  }
}
.product-detail .about__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail .about__content {
  width: 52%;
}
@media screen and (max-width: 768px) {
  .product-detail .about__content {
    width: 100%;
    margin-top: 60px;
  }
}
.product-detail .about__category {
  padding: 5px 25px;
  border: 1px solid rgba(67, 71, 72, 0.1);
  font-size: 1.2rem;
  line-height: calc(12 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.product-detail .about__ttl {
  width: 100%;
  margin-top: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #000;
  font-weight: 500;
  font-size: 3rem;
  line-height: calc(30 / (3 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .product-detail .about__ttl {
    font-size: 2.1rem;
    line-height: calc(25 / (2.1 * 10));
    letter-spacing: 0.1em;
  }
}
.product-detail .about__sub-ttl {
  display: block;
  margin-top: 20px;
  font-size: 1.2rem;
  line-height: calc(12 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.product-detail .about__box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-top: 40px;
}
.product-detail .about__timing {
  display: block;
  font-size: 1.2rem;
  line-height: calc(12 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.product-detail .about__timing-img {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
}
.product-detail .about__timing-img--morning, .product-detail .about__timing-img--night {
  width: 23px;
  height: 23px;
  margin-left: 25px;
}
.product-detail .about__timing-img--morning img, .product-detail .about__timing-img--night img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}
.product-detail .about__timing-img--night {
  width: 18px;
  height: 18px;
}
.product-detail .about__attention {
  display: inline-block;
  margin-top: 50px;
  font-size: 1rem;
  line-height: calc(10 / (1 * 10));
  letter-spacing: 0.1em;
}
.product-detail .about__recommend {
  margin-top: 50px;
  padding: 40px;
  background-color: rgba(67, 71, 72, 0.08);
}
@media screen and (max-width: 768px) {
  .product-detail .about__recommend {
    padding: 20px 10px;
  }
}
.product-detail .about .recommend__ttl {
  font-size: 1.6rem;
  line-height: calc(26 / (1.6 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
.product-detail .about .recommend__lists {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 10px;
}
.product-detail .about .recommend .lists__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 10px 18px;
  background-color: #fff;
}
.product-detail .about .recommend .item__img {
  width: 18px;
  height: 15px;
}
@media screen and (max-width: 768px) {
  .product-detail .about .recommend .item__img {
    width: 15px;
    height: 12px;
  }
}
.product-detail .about .recommend .item__img img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: top;
}
.product-detail .about .recommend .item__txt {
  width: calc(100% - 18px);
  margin-left: 20px;
  font-size: 1.4rem;
  line-height: calc(24 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .product-detail .about .recommend .item__txt {
    width: calc(100% - 15px);
    margin-left: 15px;
    font-size: 1.1rem;
    line-height: calc(21 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.product-detail .explain {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .product-detail .explain {
    padding-top: 50px;
  }
}
.product-detail .explain__container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .product-detail .explain__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.product-detail .explain__img {
  width: 50%;
  max-width: 485px;
}
@media screen and (max-width: 768px) {
  .product-detail .explain__img {
    width: 100%;
  }
}
.product-detail .explain__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail .explain__content {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .product-detail .explain__content {
    width: 100%;
  }
}
.product-detail .explain__category {
  padding: 5px 25px;
  border: 1px solid rgba(67, 71, 72, 0.1);
  font-size: 1.2rem;
  line-height: calc(12 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.product-detail .explain__ttl {
  width: 100%;
  font-weight: normal;
  font-size: 2.4rem;
  line-height: calc(44 / (2.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .product-detail .explain__ttl {
    font-size: 2rem;
    line-height: calc(28 / (2 * 10));
    letter-spacing: 0.1em;
  }
}
.product-detail .explain__sub-ttl {
  display: block;
  margin-top: 5px;
  font-size: 1.8rem;
  line-height: calc(40 / (1.8 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .product-detail .explain__sub-ttl {
    font-size: 1.5rem;
    line-height: calc(20 / (1.5 * 10));
    letter-spacing: 0.1em;
  }
}
.product-detail .explain__txt {
  margin-top: 15px;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .product-detail .explain__txt {
    font-size: 1.2rem;
    line-height: calc(20 / (1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.product-detail .point {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .product-detail .point {
    padding-top: 50px;
  }
}
.product-detail .point__head-img {
  width: 100%;
  margin-bottom: -55px;
  background-color: rgba(67, 71, 72, 0.08);
}
.product-detail .point__head-img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail .point__container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  padding: 0 50px;
  padding-bottom: 50px;
  gap: 50px;
  background-color: rgba(67, 71, 72, 0.08);
}
@media screen and (max-width: 768px) {
  .product-detail .point__container {
    padding: 0 10px;
    padding-bottom: 25px;
    gap: 25px;
  }
}
.product-detail .point__wrapper {
  padding: 50px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .product-detail .point__wrapper {
    padding: 25px;
  }
}
.product-detail .point__ttl {
  font-weight: 200;
  font-size: 3.2rem;
  line-height: calc(32 / (3.2 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .product-detail .point__ttl {
    font-size: 2.2rem;
    line-height: calc(24 / (2.2 * 10));
    letter-spacing: 0.1em;
  }
}
.product-detail .point__sub-ttl {
  margin-top: 50px;
  font-weight: 400;
  font-size: 2.6rem;
  line-height: calc(36 / (2.6 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .product-detail .point__sub-ttl {
    margin-top: 25px;
    font-size: 1.6rem;
    line-height: calc(22 / (1.6 * 10));
    letter-spacing: 0.1em;
  }
}
.product-detail .point__txt {
  margin-top: 30px;
  font-weight: 200;
  font-size: 1.4rem;
  line-height: calc(30 / (1.4 * 10));
  letter-spacing: 0.1em;
  text-align: justify;
}
.product-detail .point__txt strong {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(35%, rgba(150, 124, 12, 0.25)), color-stop(80%, transparent));
  background: linear-gradient(transparent 0% 35%, rgba(150, 124, 12, 0.25) 35% 80%, transparent 80% 100%);
}
@media screen and (max-width: 768px) {
  .product-detail .point__txt {
    margin-top: 15px;
    font-size: 1.2rem;
    line-height: calc(22 / (1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.product-detail .point__img {
  width: 100%;
  margin-top: 50px;
}
.product-detail .point__img img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

  .detileimg-flex-wrap{
	  display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 4%;
    justify-content: center;
    margin: 10% 0 5%;
  }
	.detileimg-flex-wrap img{
		    width: 45%;
	}
@media screen and (max-width: 768px) {
	.detileimg-flex-wrap{
		display: block;
	}
	
	.detileimg-flex-wrap img{
    width: 80%;
    margin: 0 auto;
    margin-bottom: 10%;
	}
	
}
@media screen and (max-width: 768px) {
  .product-detail .point__img {
    max-width: 400px;
    margin: 0 auto;
    margin-top: 25px;
  }
}
.product-detail .point__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .product-detail .point__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.product-detail .point .howto__txt {
  max-width: 473px;
  text-align: justify;
}
@media screen and (max-width: 1024px) {
  .product-detail .point .howto__txt {
    max-width: none;
  }
}
.product-detail .point .howto__img-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc(100% - 473px);
  margin-top: 30px;
  padding-left: 50px;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .product-detail .point .howto__img-box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    padding-left: 0;
  }
}
.product-detail .point .howto__img {
  width: 120px;
  height: 120px;
}
.product-detail .point .howto__img img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .product-detail .point .step__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.product-detail .point .step__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .product-detail .point .step__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% - 84px);
    margin-top: 15px;
  }
}
.product-detail .point .step .lists__item {
  width: 16.6666666667%;
}
@media screen and (max-width: 768px) {
  .product-detail .point .step .lists__item {
    width: 100%;
  }
}
.product-detail .point .step .item__link {
  -webkit-transition: opacity 0.5s;
  display: block;
  transition: opacity 0.5s;
}
.product-detail .point .step .item__link:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
  .product-detail .point .step .item__link {
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
  }
}
.product-detail .point .step .item__img {
  width: 100%;
  height: 220px;
}
.product-detail .point .step .item__img img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .product-detail .point .step .item__img {
    width: 100px;
    height: 120px;
  }
}
.product-detail .point .step .item__ttl {
  margin-top: 15px;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: calc(22 / (1.2 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .product-detail .point .step .item__ttl {
    margin-left: 5px;
    white-space: nowrap;
  }
}
.product-detail .point .step__flow-lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .product-detail .point .step__flow-lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    flex-direction: column;
    order: -1;
    margin-top: 15px;
  }
}
.product-detail .point .step .f-lists__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-clip-path: polygon(85% 0%, 100% 50%, 85% 100%, 0% 100%, 15% 50%, 0% 0%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(16.6666666667% + 10px);
  height: 66px;
  margin-left: -10px;
  background-color: #434748;
  clip-path: polygon(85% 0%, 100% 50%, 85% 100%, 0% 100%, 15% 50%, 0% 0%);
}
@media screen and (max-width: 768px) {
  .product-detail .point .step .f-lists__item {
    -webkit-clip-path: polygon(50% 15%, 100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
    width: 84px;
    height: 135px;
    margin-top: -10px;
    margin-left: 0;
    clip-path: polygon(50% 15%, 100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
  }
}
.product-detail .point .step .f-lists__item:first-child {
  -webkit-clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
  margin-left: 0;
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  .product-detail .point .step .f-lists__item:first-child {
    -webkit-clip-path: polygon(0 0, 100% 0%, 100% 85%, 50% 100%, 0 85%);
    margin-top: 0;
    clip-path: polygon(0 0, 100% 0%, 100% 85%, 50% 100%, 0 85%);
  }
}
.product-detail .point .step .f-lists__item:last-child {
  -webkit-clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 15% 50%, 0% 0%);
  clip-path: polygon(100% 0, 100% 50%, 100% 100%, 0% 100%, 15% 50%, 0% 0%);
}
@media screen and (max-width: 768px) {
  .product-detail .point .step .f-lists__item:last-child {
    -webkit-clip-path: polygon(0% 0%, 50% 15%, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 50% 15%, 100% 0, 100% 100%, 0% 100%);
  }
}
.product-detail .point .step .f-lists .item__txt {
  color: #fff;
  font-size: 1.2rem;
  line-height: calc(22 / (1.2 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.2em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .product-detail .point .step .f-lists .item__txt {
    letter-spacing: 0.08em;
  }
}
.product-detail .point .banner {
  -webkit-transition: opacity 0.5s;
  display: block;
  padding: 0;
  transition: opacity 0.5s;
}
.product-detail .point .banner:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.product-detail .point .banner img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}
.product-detail .detail {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .product-detail .detail {
    padding-top: 0;
  }
}
.product-detail .detail .lists__item {
  border: 1px solid rgba(67, 71, 72, 0.1);
  border-bottom: none;
  cursor: pointer;
}
.product-detail .detail .lists__item:last-child {
  border-bottom: 1px solid rgba(67, 71, 72, 0.1);
}
.product-detail .detail .item__ttl-box {
  -webkit-box-align: start;
  -ms-flex-align: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: flex-start;
  height: 100%;
  padding: 20px 0;
}
.product-detail .detail .item__ttl-box::before {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 18px;
  width: 15px;
  height: 1px;
  transform: translateY(-50%);
  background-color: #000;
  content: "";
}
.product-detail .detail .item__ttl-box::after {
  -webkit-transition: -webkit-transform 0.5s;
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 25px;
  width: 1px;
  height: 15px;
  transform: translateY(-50%);
  background-color: #000;
  content: "";
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.product-detail .detail .item__ttl-box.is-open::after {
  -webkit-transition: -webkit-transform 0.5s;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.product-detail .detail .item__ttl {
  margin-left: 30px;
  padding-right: 20px;
  font-weight: normal;
  font-size: 1.2rem;
  line-height: calc(16 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.product-detail .detail .item__content {
  display: none;
  padding: 30px;
  border-top: 1px solid rgba(67, 71, 72, 0.1);
  font-weight: 300;
  font-size: 1.2rem;
  line-height: calc(26 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.product-detail .detail .c-lists__item:not(:first-child) {
  margin-top: 30px;
}
.product-detail .detail .c-lists .item__content-ttl {
  font-size: 1.4rem;
  line-height: calc(26 / (1.4 * 10));
  letter-spacing: 0.1em;
}
.product-detail .detail .c-lists .item__content-txt {
  margin-top: 10px;
  font-size: 1.4rem;
  line-height: calc(26 / (1.4 * 10));
  letter-spacing: 0.1em;
}
.product-detail .detail .a-lists__item:not(:first-child) {
  margin-top: 30px;
}
.product-detail .detail .a-lists .item__content-txt {
  position: relative;
  padding-left: 20px;
  font-size: 1.4rem;
  line-height: calc(26 / (1.4 * 10));
  letter-spacing: 0.1em;
}
.product-detail .detail .a-lists .item__content-txt::before {
  position: absolute;
  left: 0;
  content: "※";
}

.product_detail_b .point__container,
.product_detail_c .point__container,
.product_detail_d .point__container {
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .product_detail_b .point__container,
  .product_detail_c .point__container,
  .product_detail_d .point__container {
    padding-top: 25px;
  }
}
.product_detail_b .point .howto__txt,
.product_detail_c .point .howto__txt,
.product_detail_d .point .howto__txt {
  max-width: none;
}

.product-detail .point .no-image .howto__txt {
  max-width: none;
}

.p-product-detail .product__image {
  width: 100%;
}

.product_detail_d .collaboration_prf {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .product_detail_d .collaboration_prf span.explain__sub-ttl {
    margin-top: 30px;
  }
}
.product_detail_d .collaboration_prf_container {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product_detail_d a.collaboration_prf_sns {
  font-size: 80%;
}

.product-list-homme {
  /* スマホ縦から以上 */
  /* PC タブレット横用 */
  /* タブレット用 */
  /* スマ－トフォン横用 */
  /* スマ－トフォン縦用 */
  background-color: #000;
}
.product-list-homme .fv_wrap {
  position: relative;
  width: 100%;
  min-height: 90.5%;
}
.product-list-homme .fv_wrap div.bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/product-list-homme/fv.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
}
.product-list-homme .section_wrap {
  color: #211917;
  font-family: "Noto Serif JP", serif;
}
.product-list-homme .section_wrap .ti_wrap {
  margin-bottom: 90px;
  text-align: center;
}
.product-list-homme .section_wrap .ti_wrap h2 {
  margin-bottom: 30px;
  font-size: 240%;
  line-height: 1.8;
  letter-spacing: 8px;
}
.product-list-homme .section_wrap .ti_wrap p {
  font-weight: 100;
  font-size: 120%;
  line-height: 2;
  letter-spacing: 2px;
}
.product-list-homme .section_wrap.sec_intro {
  padding: 100px 0;
  background-image: url(../images/product-list-homme/bg_intro.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #221c36;
  color: #d6d1cb;
}
.product-list-homme .section_wrap.sec_intro .items_wrap {
  padding: 0 50px;
}
.product-list-homme .section_wrap.sec_intro .items_wrap .items {
  -ms-flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -ms-flex-align: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
}
.product-list-homme .section_wrap.sec_intro .items_wrap .items:not(:last-child) {
  margin-bottom: -50px;
}
.product-list-homme .section_wrap.sec_intro .items_wrap .items:nth-child(1) {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}
@media only screen and (min-width: 479px) {
  .product-list-homme .onoff_wrap_sp {
    display: none;
  }
  .product-list-homme .section_wrap.sec_intro .items_wrap .items:nth-child(even) {
    -ms-flex-direction: row-reverse;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    flex-direction: row-reverse;
  }
}
.product-list-homme .section_wrap.sec_intro .items_wrap .items figure {
  width: 52%;
  text-align: left;
}
.product-list-homme .section_wrap.sec_intro .items_wrap .items:nth-child(even) figure {
  text-align: right;
}
.product-list-homme .section_wrap.sec_intro .items_wrap .items > div {
  width: 48%;
  font-weight: 100;
}
.product-list-homme .section_wrap.sec_intro .items_wrap .items > div h3 {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 230%;
  line-height: 1.5;
  letter-spacing: 4px;
}
.product-list-homme .section_wrap.sec_intro .items_wrap .items > div p {
  margin-bottom: 30px;
  font-size: 110%;
  line-height: 1.8;
  letter-spacing: 2px;
}
.product-list-homme .section_wrap.sec_intro .items_wrap .items > div dl {
  margin-bottom: 40px;
}
.product-list-homme .section_wrap.sec_intro .items_wrap .items > div dl dt {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 200%;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 4px;
}
.product-list-homme .section_wrap.sec_intro .items_wrap .items > div dl dd {
  margin-bottom: 10px;
  font-size: 110%;
}
.product-list-homme .section_wrap.sec_intro .items_wrap .items > div a {
  -webkit-transition: all 0.3s;
  -webkit-transition: all 1s;
  display: inline-block;
  padding: 15px 66px;
  border: 1px solid #d6d1cb;
  font-size: 130%;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 4px;
  text-align: center;
  transition: all 1s;
}
.product-list-homme .section_wrap.sec_intro .items_wrap .items > div a:hover {
  border: 1px solid #221c36;
  background-color: #d6d1cb;
  color: #221c36;
}
.product-list-homme .section_wrap.sec_mission {
  padding: 100px 0;
  background-image: url(../images/product-list-homme/bg_mission.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #000;
  color: #d7d2cc;
  text-align: center;
}
.product-list-homme .section_wrap.sec_mission .ti_wrap_eng {
  margin-bottom: 60px;
}
.product-list-homme .section_wrap.sec_mission .ti_wrap_eng h2 {
  margin-bottom: 15px;
  font-size: 440%;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 5px;
}
.product-list-homme .section_wrap.sec_mission .txt p:first-child {
  margin-bottom: 40px;
}
.product-list-homme .section_wrap.sec_mission .txt p {
  font-weight: 100;
  font-size: 100%;
  line-height: 2;
  letter-spacing: 2px;
}
.product-list-homme .section_wrap.sec_onoff .onoff_wrap .upper {
  padding: 80px 0;
  background-image: url(../images/product-list-homme/bg_onoff.jpg);
  background-position: 50% 100%;
  background-size: cover;
  background-repeat: no-repeat;
}
.product-list-homme .section_wrap.sec_onoff .onoff_wrap .lower {
  background-image: url(../images/product-list-homme/sec_onoff_bg2.gif);
  background-position: 50% 0;
  background-size: cover;
  background-repeat: no-repeat;
}
.product-list-homme .section_wrap.sec_onoff {
  color: #d7d2cc;
}
.product-list-homme .section_wrap.sec_onoff .onoff {
  -ms-flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -ms-flex-align: center;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 100px;
}
.product-list-homme .section_wrap.sec_onoff .onoff > div {
  width: 38%;
  padding: 55px 0;
}
.product-list-homme .section_wrap.sec_onoff .onoff > div dl:not(:last-child) {
  margin-bottom: 30px;
}
.product-list-homme .section_wrap.sec_onoff .onoff > div dl dt {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #d7d2cc;
  font-style: italic;
  font-weight: 500;
  font-size: 170%;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 2px;
}
.product-list-homme .section_wrap.sec_onoff .onoff > div dl dd {
  font-weight: 100;
}
.product-list-homme .section_wrap.sec_exp {
  padding: 90px 0;
  background-image: url(../images/product-list-homme/bg_exp.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #000;
  color: #d7d2cc;
}
.product-list-homme .section_wrap.sec_exp .ti_wrap {
  margin-bottom: 0;
}
@media only screen and (min-width: 960px) and (max-width: 1024px) {
  .product-list-homme .container {
    width: 94%;
  }
  .product-list-homme .section_wrap.sec_intro .items_wrap .items {
    margin-bottom: -30px;
  }
  .product-list-homme .section_wrap.sec_intro .items_wrap .items figure {
    width: 46%;
  }
  .product-list-homme .section_wrap.sec_intro .items_wrap .items > div {
    font-size: 1.3vw;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff_wrap .upper ul li {
    width: 50%;
  }
}
@media only screen and (min-width: 768px) and (max-width: 959px) {
  .product-list-homme .container {
    width: 94%;
    margin: 0 auto;
  }
  .product-list-homme .section_wrap.sec_intro {
    padding: 60px 0;
  }
  .product-list-homme .section_wrap .ti_wrap h2 {
    margin-bottom: 30px;
    font-size: 190%;
  }
  .product-list-homme .section_wrap .ti_wrap p {
    font-size: 110%;
  }
  .product-list-homme .section_wrap.sec_intro .items_wrap .items:not(:last-child) {
    margin-bottom: 30px;
  }
  .product-list-homme .section_wrap.sec_intro .items_wrap .items figure {
    width: 46%;
  }
  .product-list-homme .section_wrap.sec_intro .items_wrap .items > div {
    font-size: 1.3vw;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff {
    padding: 0 50px;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff_wrap .upper {
    padding: 40px 0;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff_wrap .upper ul li img {
    max-width: 70%;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff_wrap .upper ul li:last-child {
    text-align: right;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff_wrap .lower {
    font-size: 1.7vw;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff > div {
    padding: 35px 0;
  }
  .product-list-homme .section_wrap.sec_mission {
    padding: 60px 0;
  }
  .product-list-homme .section_wrap.sec_mission .ti_wrap_eng {
    margin-bottom: 40px;
  }
  .product-list-homme .section_wrap.sec_mission .ti_wrap_eng h2 {
    font-size: 390%;
  }
  .product-list-homme .section_wrap.sec_exp {
    padding: 60px 0;
  }
}
@media only screen and (min-width: 480px) and (max-width: 767px) {
  .product-list-homme .container {
    width: 96%;
    margin: 0 auto;
  }
  .product-list-homme .section_wrap.sec_intro {
    padding: 60px 0;
  }
  .product-list-homme .section_wrap .ti_wrap {
    margin-bottom: 60px;
  }
  .product-list-homme .section_wrap .ti_wrap h2 {
    margin-bottom: 30px;
    font-size: 4.2vw;
  }
  .product-list-homme .section_wrap .ti_wrap p {
    font-size: 110%;
  }
  .product-list-homme .section_wrap.sec_intro .items_wrap .items:not(:last-child) {
    margin-bottom: 30px;
  }
  .product-list-homme .section_wrap.sec_intro .items_wrap .items figure {
    width: 46%;
  }
  .product-list-homme .section_wrap.sec_intro .items_wrap .items > div {
    font-size: 1.3vw;
  }
  .product-list-homme .section_wrap.sec_mission .ti_wrap_eng h2 {
    font-size: 8vw;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff {
    padding: 0 50px;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff_wrap .upper {
    padding: 40px 0;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff_wrap .upper ul li img {
    max-width: 80%;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff_wrap .upper ul li:last-child {
    text-align: right;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff_wrap .lower {
    font-size: 1.7vw;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff > div {
    padding: 35px 0;
  }
  .product-list-homme .section_wrap.sec_mission {
    padding: 60px 0;
  }
  .product-list-homme .section_wrap.sec_mission .ti_wrap_eng {
    margin-bottom: 40px;
  }
  .product-list-homme .section_wrap.sec_mission .ti_wrap_eng h2 {
    font-size: 390%;
  }
  .product-list-homme .section_wrap.sec_exp {
    padding: 60px 0;
  }
  .product-list-homme a.top {
    bottom: 5vw;
  }
  .product-list-homme a.top img {
    width: 50px;
    height: auto;
  }
}
@media only screen and (min-width: 0) and (max-width: 479px) {
  .product-list-homme .br_sp {
    display: block;
  }
  .product-list-homme .tot,
  .product-list-homme .header_sp_wrap .header_pc {
    display: none;
  }
  .product-list-homme .upper_tot {
    padding: 4px 0;
  }
  .product-list-homme .container {
    width: 94%;
    margin: 0 auto;
  }
  .product-list-homme .fv_wrap {
    position: relative;
    min-height: 84.5%;
  }
  .product-list-homme .fv_wrap div.bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(//www.rakuten.ne.jp/gold/lekarkahomme/img/main/fv_sp.jpg);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
  }
  .product-list-homme .fv_wrap img {
    display: none;
  }
  .product-list-homme .section_wrap.sec_intro {
    padding: 60px 0;
  }
  .product-list-homme .section_wrap .ti_wrap {
    margin-bottom: 40px;
  }
  .product-list-homme .section_wrap .ti_wrap h2 {
    font-size: 4.8vw;
  }
  .product-list-homme .section_wrap .ti_wrap p {
    font-size: 3.5vw;
  }
  .product-list-homme .section_wrap.sec_intro {
    background-image: url(//www.rakuten.ne.jp/gold/lekarkahomme/img/main/bg_intro_sp.jpg);
  }
  .product-list-homme .section_wrap.sec_intro .items_wrap {
    padding: 0 5%;
  }
  .product-list-homme .section_wrap.sec_intro .items_wrap .items:not(:last-child) {
    margin-bottom: 50px;
  }
  .product-list-homme .section_wrap.sec_intro .items_wrap .items {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .product-list-homme .section_wrap.sec_intro .items_wrap .items figure,
  .product-list-homme .section_wrap.sec_intro .items_wrap .items > div {
    width: 100%;
  }
  .product-list-homme .section_wrap.sec_intro .items_wrap .items figure {
    margin-bottom: 30px;
  }
  .product-list-homme .section_wrap.sec_intro .items_wrap .items > div {
    font-size: 3.4vw;
  }
  .product-list-homme .section_wrap.sec_intro .items_wrap .items > div a {
    padding: 15px 55px;
    font-size: 110%;
  }
  .product-list-homme .section_wrap.sec_mission {
    padding: 60px 0;
    background-image: url(//www.rakuten.ne.jp/gold/lekarkahomme/img/main/bg_mission_sp.jpg);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #000;
  }
  .product-list-homme .section_wrap.sec_mission .ti_wrap_eng h2 {
    font-size: 11vw;
  }
  .product-list-homme .section_wrap.sec_mission .txt p {
    font-size: 3.1vw;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff_wrap {
    display: none;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff_wrap_sp .onoff {
    display: block;
    padding: 0;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff_wrap_sp .onoff > div {
    width: 100%;
    padding: 0 0 50px;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff_wrap_sp .onoff > div > div {
    padding: 40px 0 70px;
    background-position: 50% 0;
    background-size: cover;
    background-repeat: no-repeat;
    text-align: center;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff_wrap_sp .onoff > div > div img {
    max-width: 70%;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff_wrap_sp .onoff > div > dl {
    width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff_wrap_sp .onoff > div.on {
    background-color: #221c36;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff_wrap_sp .onoff > div.on > div {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
    background-image: url(//www.rakuten.ne.jp/gold/lekarkahomme/img/main/bg_on.jpg);
    clip-path: polygon(0 0, 100% 0, 100% 80%, 0% 100%);
  }
  .product-list-homme .section_wrap.sec_onoff .onoff_wrap_sp .onoff > div.off {
    background-color: #595587;
  }
  .product-list-homme .section_wrap.sec_onoff .onoff_wrap_sp .onoff > div.off > div {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
    background-image: url(//www.rakuten.ne.jp/gold/lekarkahomme/img/main/bg_off.jpg);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 80%);
  }
  .product-list-homme .section_wrap.sec_exp {
    padding: 60px 0;
    background-image: url(//www.rakuten.ne.jp/gold/lekarkahomme/img/main/bg_exp_sp.jpg);
  }
  .product-list-homme .container {
    width: 96%;
    margin: 0 auto;
  }
  .product-list-homme .pc_only {
    display: none;
  }
  .product-list-homme .sp_only {
    display: inline;
  }
  .product-list-homme .btn_category a {
    font-size: 4vw;
  }
  .product-list-homme a.top {
    bottom: 5vw;
  }
  .product-list-homme a.top img {
    width: 50px;
    height: auto;
  }
  .product-list-homme .search_area input[type=text] {
    width: 76%;
  }
  .product-list-homme .search_area input[type=submit] {
    width: 14%;
  }
}
.product-list-homme .fadein {
  -webkit-transition: all 1500ms;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
  opacity: 0;
  transition: all 1500ms;
}
.product-list-homme .fadein.scrollin {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}
.product-list-homme .fv__img {
  width: 100%;
  height: calc(100vh - 80px);
}
@media screen and (max-width: 768px) {
  .product-list-homme .fv__img {
    max-height: 600px;
  }
}
.product-list-homme .fv__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-list-homme .container {
  max-width: 1200px;
  margin: 0 auto;
}
.product-list-homme h2,
.product-list-homme h3,
.product-list-homme p {
  color: #d6d1cb;
  font-family: "Noto Serif JP", serif;
}
.product-list-homme .section_wrap .ti_wrap h2 {
  text-align: center;
}
.product-list-homme .section_wrap.sec_intro a {
  color: #d6d1cb;
}
.product-list-homme .section_wrap.sec_mission .ti_wrap_eng h2 {
  font-weight: 500;
  line-height: 1;
  text-align: center;
}
.product-list-homme .section_wrap.sec_mission .txt p {
  font-size: 16px;
}
@media only screen and (min-width: 0) and (max-width: 479px) {
  .product-list-homme .section_wrap.sec_mission .txt p {
    font-size: 3.1vw;
  }
}
@media screen and (max-width: 768px) {
  .product-list-homme .section_wrap.sec_intro .items_wrap .items figure img {
    -o-object-fit: cover;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

.product-list {
  background-image: url(../images/product-list/bg@2x.png);
  background-attachment: fixed;
}
.product-list .kv__container {
  max-width: 980px;
  margin: 0 auto;
}
.product-list .kv__img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .product-list .kv__img {
    height: 400px;
  }
}
.product-list .kv__img picture img,
.product-list .kv__img picture source {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-list .contents {
  padding-top: 50px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .product-list .contents {
    padding-top: 25px;
    padding-bottom: 50px;
  }
}
.product-list .contents__container {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .product-list .contents__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.product-list .contents__wrapper-head {
  position: sticky;
  top: 150px;
  width: 48%;
  max-width: 430px;
  height: 796px;
}
@media screen and (max-width: 768px) {
  .product-list .contents__wrapper-head {
    position: static;
    width: 100%;
    max-width: none;
    height: auto;
  }
}
.product-list .contents__wrapper {
  width: 48%;
  max-width: 430px;
}
@media screen and (max-width: 768px) {
  .product-list .contents__wrapper {
    width: 100%;
    max-width: none;
    margin-top: 30px;
  }
}
.product-list .contents__box {
  width: 100%;
  padding: 25px;
  background-color: #fff;
}
.product-list .contents__ttl {
  position: relative;
  font-weight: 200;
  font-size: 3.6rem;
  line-height: calc(46 / (3.6 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
.product-list .contents__ttl::before {
  -webkit-transform: translateX(-50%);
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 40px;
  height: 1px;
  transform: translateX(-50%);
  background-color: #000;
  content: "";
}
@media screen and (max-width: 768px) {
  .product-list .contents__ttl {
    font-size: 2.5rem;
    line-height: calc(35 / (2.5 * 10));
    letter-spacing: 0.1em;
  }
}
.product-list .contents__img {
  width: 100%;
  margin-top: 40px;
}
.product-list .contents__img img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-list .contents__list-ttl {
  max-width: 380px;
  margin: 0 auto;
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
  font-size: 1.6rem;
  line-height: calc(24 / (1.6 * 10));
  letter-spacing: 0.1em;
}
.product-list .contents__list-ttl:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .product-list .contents__list-ttl {
    max-width: 250px;
    font-size: 1.4rem;
    line-height: calc(20 / (1.4 * 10));
    letter-spacing: 0.1em;
  }
}
.product-list .contents__txt {
  max-width: 380px;
  margin: 0 auto;
  margin-top: 10px;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: calc(24 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .product-list .contents__txt {
    max-width: 250px;
    font-size: 1.2rem;
    line-height: calc(18 / (1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.product-list .contents__lists {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-top: 25px;
  gap: 10px;
}
.product-list .contents .lists__item {
  background-color: #fff;
}
.product-list .contents .item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: opacity 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  transition: opacity 0.5s;
}
.product-list .contents .item__link:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.product-list .contents .item__img {
  width: 150px;
}
.product-list .contents .item__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .product-list .contents .item__img {
    width: 105px;
    height: 105px;
  }
}
.product-list .contents .item__content {
  width: calc(100% - 150px);
}
@media screen and (max-width: 768px) {
  .product-list .contents .item__content {
    width: calc(100% - 105px);
  }
}
.product-list .contents .item__ttl {
  font-size: 1.4rem;
  line-height: calc(21 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .product-list .contents .item__ttl {
    font-size: 1.2rem;
    line-height: calc(18 / (1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.product-list .contents .item__price {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: calc(21 / (1.2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .product-list .contents .item__price {
    font-size: 1rem;
    line-height: calc(16 / (1 * 10));
    letter-spacing: 0.1em;
  }
}

.subscription {
  @import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Display:wght@100;200;300;400;500;600;700;800;900&display=swap");
}
.subscription .section__ttl {
  position: relative;
  font-weight: 100;
  font-size: 4.2rem;
  line-height: calc(42 / (4.2 * 10));
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .subscription .section__ttl {
    font-size: 3rem;
    line-height: calc(30 / (3 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .section__ttl::before {
  -webkit-transform: translateX(-50%);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  content: attr(data-ttl);
  font-size: 1.4rem;
  line-height: calc(14 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .subscription .section__ttl::before {
    bottom: -20px;
    font-size: 1rem;
    line-height: calc(15 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .fv__container {
  position: relative;
}
.subscription .fv__img {
  display: block;
  width: 100%;
  height: 780px;
}
@media screen and (max-width: 768px) {
  .subscription .fv__img {
    height: 550px;
  }
}
.subscription .fv__img picture,
.subscription .fv__img img {
  -o-object-fit: cover;
  display: block;
  width: 100%;
  height: 780px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .subscription .fv__img picture,
  .subscription .fv__img img {
    -o-object-position: top;
    height: 550px;
    object-position: top;
  }
}
.subscription .fv__content {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1070px;
  padding: 78px 20px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .subscription .fv__content {
    width: calc(100% - 40px);
    padding: 30px 15px;
  }
}
.subscription .fv__sub-ttl {
  margin-top: 70px;
  font-weight: normal;
  font-size: 2.4rem;
  line-height: calc(44 / (2.4 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.3rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .subscription .fv__sub-ttl {
    margin-top: 50px;
    font-size: 1.3rem;
    line-height: calc(23 / (1.3 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .fv__txt {
  margin-top: 30px;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .subscription .fv__txt {
    font-size: 1rem;
    line-height: calc(18 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .benefit {
  padding: 88px 0 100px;
}
@media screen and (max-width: 768px) {
  .subscription .benefit {
    padding: 40px 0 50px;
  }
}
.subscription .benefit__lists {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-top: 70px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .subscription .benefit__lists {
    margin-top: 45px;
  }
}
.subscription .benefit__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 80px;
  border: 2px solid #eceded;
}
@media screen and (max-width: 768px) {
  .subscription .benefit__item {
    padding: 16px 20px;
    align-items: center;
  }
}
.subscription .benefit .item__num-box {
  width: 100px;
}
@media screen and (max-width: 768px) {
  .subscription .benefit .item__num-box {
    width: 55px;
  }
}
.subscription .benefit .item__num {
  display: block;
  position: relative;
  width: 100%;
  margin-top: 30px;
  padding-left: 5px;
  font-weight: 100;
  font-size: 6rem;
  line-height: calc(60 / (6 * 10));
  font-family: "Noto Sans Display", sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .subscription .benefit .item__num {
    font-size: 3rem;
    line-height: calc(30 / (3 * 10));
    letter-spacing: 0.1em;
    text-align: center;
    margin-top: 0;
  }
}
.subscription .benefit .item__num::before {
  -webkit-transform: translateX(-50%);
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  content: attr(data-subttl);
  font-size: 1.6rem;
  line-height: calc(16 / (1.6 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .subscription .benefit .item__num::before {
    top: -13px;
    font-size: 1rem;
    line-height: calc(10 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .benefit .item__num::after {
  -webkit-transform: translateX(-50%);
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 100%;
  height: 2px;
  transform: translateX(-50%);
  background: #333;
  content: "";
}
@media screen and (max-width: 768px) {
  .subscription .benefit .item__num::after {
    width: 80%;
  }
}
.subscription .benefit .item__content {
  width: calc(100% - 85px);
  padding-left: 76.5px;
}
@media screen and (max-width: 768px) {
  .subscription .benefit .item__content {
    width: calc(100% - 55px);
    padding-left: 18px;
  }
}
.subscription .benefit .item__ttl {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: calc(44 / (2.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .subscription .benefit .item__ttl {
    font-size: 1.3rem;
    line-height: calc(19 / (1.3 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .benefit .item__txt {
  margin-top: 10px;
  font-weight: 300;
  font-size: 1.6rem;
  line-height: calc(28 / (1.6 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .subscription .benefit .item__txt {
    font-size: 1rem;
    line-height: calc(16 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .product__ttl {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  padding: 98px 0 125px;
  background: url("../images/subscription/product-top-bg@2x.png") center/cover no-repeat;
}
@media screen and (max-width: 768px) {
  .subscription .product__ttl {
    height: 160px;
    padding: 50px 0;
  }
}
.subscription .product__ttl::before {
  bottom: 100px;
}
.subscription .product__link-lists {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  max-width: 1070px;
  margin: 100px auto 0;
  padding: 0 18px;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .subscription .product__link-lists {
    margin-top: 30px;
    padding: 0 18px;
    gap: 10px;
  }
}
.subscription .product__link-item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: calc(50% - 10px);
  height: 80px;
  background: #f0f0f0;
}
@media screen and (max-width: 768px) {
  .subscription .product__link-item {
    width: 100%;
    height: 60px;
  }
}
.subscription .product__link-item .item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 12px 32px;
}
@media screen and (max-width: 768px) {
  .subscription .product__link-item .item__link {
    padding: 6px 17px;
  }
}
.subscription .product__link-item .item__link::before {
  -webkit-transform: translateY(-50%) rotate(135deg);
  position: absolute;
  top: 50%;
  right: 17px;
  width: 10px;
  height: 10px;
  transform: translateY(-50%) rotate(135deg);
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  content: "";
}
@media screen and (max-width: 768px) {
  .subscription .product__link-item .item__link::before {
    width: 8px;
    height: 8px;
  }
}
.subscription .product__link-item .item__name {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  line-height: calc(16 / (1.6 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .subscription .product__link-item .item__name {
    font-size: 1.2rem;
    line-height: calc(14 / (1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .product__link-item .item__num {
  display: block;
  position: relative;
  padding-right: 50px;
  font-weight: 100;
  font-size: 4.2rem;
  line-height: calc(42 / (4.2 * 10));
  font-family: "Noto Sans Display", sans-serif;
  letter-spacing: 0.1em;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .subscription .product__link-item .item__num {
    padding-right: 34px;
    font-size: 2.3rem;
    line-height: calc(25 / (2.3 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .product__link-item .item__num::before {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 6px;
  width: 40px;
  height: 1px;
  transform: translateY(-50%) rotate(-45deg);
  background: #333;
  content: "";
}
@media screen and (max-width: 768px) {
  .subscription .product__link-item .item__num::before {
    right: 4px;
    width: 25px;
  }
}
.subscription .product__wrapper {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .subscription .product__wrapper {
    margin-top: 30px;
  }
}
.subscription .product__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
@media screen and (max-width: 768px) {
  .subscription .product__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.subscription .product .item__content-box {
  position: relative;
  width: 50%;
  padding: 200px 20px;
}
@media screen and (max-width: 768px) {
  .subscription .product .item__content-box {
    width: 100%;
    padding: 50px 17px;
  }
}
.subscription .product .item__img-box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .subscription .product .item__img-box {
    width: 100%;
  }
}
.subscription .product .c-item__content-lists {
  width: 100%;
}
.subscription .product .c-item__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.subscription .product .c-item__img picture,
.subscription .product .c-item__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subscription .product .c-item__content {
  width: 100%;
  max-width: 490px;
  margin: 0 50px 0 auto;
}
@media screen and (max-width: 768px) {
  .subscription .product .c-item__content {
    margin: 0 auto;
  }
}
.subscription .product .c-item__ttl-box {
  position: relative;
  padding: 85px 10px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .subscription .product .c-item__ttl-box {
    padding: 50px 10px 70px;
  }
}
.subscription .product .c-item__ttl-box span {
  position: absolute;
  top: 5px;
  left: 20px;
  font-weight: 100;
  font-size: 4.6rem;
  line-height: calc(46 / (4.6 * 10));
  font-family: "Noto Sans Display", sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .subscription .product .c-item__ttl-box span {
    font-size: 2.7rem;
    line-height: calc(27 / (2.7 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .product .c-item__ttl {
  position: relative;
  font-weight: 300;
  font-size: 3.2rem;
  line-height: calc(38 / (3.2 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .subscription .product .c-item__ttl {
    font-size: 1.9rem;
    line-height: calc(22 / (1.9 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .product .c-item__ttl::before {
  -webkit-transform: translateX(-50%);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  content: attr(data-ttl);
  font-size: 1.2rem;
  line-height: calc(28 / (1.2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .subscription .product .c-item__ttl::before {
    bottom: -25px;
    font-size: 1rem;
    line-height: calc(16 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .product .c-item__lead {
  margin-top: 128px;
  font-weight: 300;
  font-size: 2.6rem;
  line-height: calc(44 / (2.6 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .subscription .product .c-item__lead {
    margin-top: 50px;
    font-size: 1.6rem;
    line-height: calc(27 / (1.6 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .product .c-item__txt {
  margin-top: 20px;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .subscription .product .c-item__txt {
    margin-top: 14px;
    font-size: 1rem;
    line-height: calc(18 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .product .c-item__category-box {
  margin-top: 60px;
}
.subscription .product .c-item__category-lists {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.subscription .product .c-item__category-item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid #333;
}
.subscription .product .c-item__category-item span {
  font-size: 1.2rem;
  line-height: calc(28 / (1.2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .subscription .product .c-item__category-item span {
    font-size: 1rem;
    line-height: calc(18 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .product .i-item__box {
  -webkit-transition: all 1.6s;
  -webkit-transform: translateY(20px);
  position: absolute;
  bottom: 130px;
  left: 110px;
  width: 225px;
  transform: translateY(20px);
  opacity: 0;
  transition: all 1.6s;
}
@media screen and (max-width: 1024px) {
  .subscription .product .i-item__box {
    left: 50px;
    width: 330px;
  }
}
@media screen and (max-width: 768px) {
  .subscription .product .i-item__box {
    position: static;
    margin: 0 auto;
    padding: 100px 0;
  }
}
@media screen and (max-width: 768px) {
  .subscription .product .i-item__box {
    margin: 0 auto;
  }
}
.subscription .product .i-item__box.first {
  opacity: 1;
}
.subscription .product .i-item__box.is-over {
  -webkit-transition: all 1.6s;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
  transition: all 1.6s;
}
.subscription .product .i-item__box.product-06 {
  left: 50px;
  width: calc(100% - 50px);
}
@media screen and (max-width: 1024px) {
  .subscription .product .i-item__box.product-06 {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .subscription .product .i-item__box.product-06 {
    padding: 50px 0 130px;
  }
}
.subscription .product .i-item__img {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .subscription .product .i-item__img {
    width: 100%;
  }
}
.subscription .product .i-item__img.product-01 {
  width: 164px;
}
.subscription .product .i-item__img.product-02 {
  width: 127px;
}
.subscription .product .i-item__img.product-03 {
  width: 180px;
}
.subscription .product .i-item__img.product-04 {
  width: 145px;
}
.subscription .product .i-item__img.product-05 {
  width: 160px;
}
.subscription .product .i-item__img.product-06 {
  width: 100%;
  max-width: 728px;
  margin-left: 0;
}
.subscription .product .i-item__img picture,
.subscription .product .i-item__img img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .subscription .product .i-item__img picture,
  .subscription .product .i-item__img img {
    display: block;
    margin: 0 auto;
  }
}
.subscription .product .i-item__content {
  position: relative;
  max-width: 800px;
}
@media screen and (max-width: 768px) {
  .subscription .product .i-item__content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 400px;
    margin: 0 auto;
    padding: 0 20px 0 40px;
  }
}
.subscription .product .i-item__content span {
  display: block;
  font-size: 1.2rem;
  line-height: calc(28 / (1.2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .subscription .product .i-item__content.product-06 {
    padding-left: 50px;
  }
}
.subscription .product .i-item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transform: translateY(-50%);
  display: none;
  z-index: 1;
  position: absolute;
  right: 40px;
  bottom: 40px;
  align-items: center;
  justify-content: center;
  width: 125px;
  height: 125px;
  transform: translateY(-50%);
  border: 1px solid #333;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: calc(26 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .subscription .product .i-item__link {
    right: 10px;
    bottom: 80px;
    width: 80px;
    height: 80px;
    font-size: 1.2rem;
    line-height: calc(22 / (1.2 * 10));
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 768px) {
  .subscription .product .i-item__link {
    right: 15%;
    bottom: 80px;
    width: 70px;
    height: 70px;
    font-size: 1rem;
    line-height: calc(18 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .product__item:nth-of-type(odd) .item__img-box {
  background: #f0f0f0;
}
.subscription .product__item:nth-of-type(even) .item__img-box {
  background: #dddede;
}
.subscription .product__item.is-over .item__img-box {
  z-index: 1;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .subscription .product__item.is-over .item__img-box {
    position: static;
    height: auto;
  }
}
.subscription .product__item.is-over .i-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.subscription .product__item .i-item__box.is-over + .i-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.subscription .faq {
  padding-top: 85.5px;
}
@media screen and (max-width: 768px) {
  .subscription .faq {
    padding-top: 40px;
  }
}
.subscription .faq__lists {
  margin-top: 110px;
}
@media screen and (max-width: 768px) {
  .subscription .faq__lists {
    margin-top: 55px;
  }
}
.subscription .faq__item {
  padding-bottom: 40px;
  border-bottom: 1px solid #eceded;
}
@media screen and (max-width: 768px) {
  .subscription .faq__item {
    padding-bottom: 20px;
  }
}
.subscription .faq__item:not(:first-of-type) {
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .subscription .faq__item:not(:first-of-type) {
    padding-top: 20px;
  }
}
.subscription .faq__item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.subscription .faq .item__question {
  cursor: pointer;
}
.subscription .faq .item__answer {
  display: none;
  margin-top: 24px;
}
.subscription .faq .item__ttl {
  position: relative;
  padding-left: 56px;
  font-weight: 200;
  font-size: 2.4rem;
  line-height: calc(44 / (2.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .subscription .faq .item__ttl {
    font-size: 1.6rem;
    line-height: calc(30 / (1.6 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .faq .item__ttl::before {
  position: absolute;
  top: 5px;
  left: 0;
  width: 40px;
  height: 40px;
  background: #f0f0f0;
  content: "";
}
@media screen and (max-width: 768px) {
  .subscription .faq .item__ttl::before {
    width: 25px;
    height: 25px;
  }
}
.subscription .faq .item__ttl::after {
  -webkit-transition: -webkit-transform 0.6s;
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  position: absolute;
  top: 25px;
  left: 20px;
  width: 10px;
  height: 10px;
  transform: translate(-50%, -50%) rotate(-45deg);
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  content: "";
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}
@media screen and (max-width: 768px) {
  .subscription .faq .item__ttl::after {
    top: 18px;
    left: 12px;
    width: 6px;
    height: 6px;
  }
}
.subscription .faq .item__txt {
  padding: 30px;
  background: #f0f0f0;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .subscription .faq .item__txt {
    padding: 15px;
    font-size: 1.2rem;
    line-height: calc(22 / (1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .faq .item__question.is-active .item__ttl::after {
  -webkit-transition: -webkit-transform 0.6s;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
  transition: -webkit-transform 0.6s;
  transition: transform 0.6s;
  transition: transform 0.6s, -webkit-transform 0.6s;
}
.subscription .ad-fv__container {
  position: relative;
}
.subscription .ad-fv__img {
  display: block;
  width: 100%;
  height: 780px;
}
@media screen and (max-width: 768px) {
  .subscription .ad-fv__img {
    height: auto;
    max-height: 1000px;
  }
}
.subscription .ad-fv__img picture,
.subscription .ad-fv__img img {
  -o-object-fit: cover;
  display: block;
  width: 100%;
  height: 780px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .subscription .ad-fv__img picture,
  .subscription .ad-fv__img img {
    -o-object-position: bottom;
    height: auto;
    max-height: 1000px;
    object-position: bottom;
  }
}
.subscription .ad-fv__content {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .subscription .ad-fv__content {
    -webkit-transform: translateX(-50%);
    top: 35px;
    width: 100%;
    transform: translateX(-50%);
  }
}
.subscription .ad-fv__ttl {
  position: relative;
  color: #fff;
  font-weight: 100;
  font-size: 4.2rem;
  line-height: calc(42 / (4.2 * 10));
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .subscription .ad-fv__ttl {
    font-size: 3rem;
    line-height: calc(30 / (3 * 10));
    letter-spacing: 0.1em;
    text-align: center;
  }
}
.subscription .ad-fv__ttl::before {
  position: absolute;
  bottom: -30px;
  left: 0;
  content: attr(data-ttl);
  font-size: 1.4rem;
  line-height: calc(14 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .subscription .ad-fv__ttl::before {
    -webkit-transform: translateX(-50%);
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    line-height: calc(15 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .ad-fv__sub-ttl {
  margin-top: 70px;
  color: #fff;
  font-weight: normal;
  font-size: 2.4rem;
  line-height: calc(44 / (2.4 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.3rem;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .subscription .ad-fv__sub-ttl {
    margin-top: 40px;
    font-size: 1.6rem;
    line-height: calc(28 / (1.6 * 10));
    letter-spacing: 0.1em;
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  .subscription .ad-fv__sub-ttl {
    font-size: 1.3rem;
    line-height: calc(23 / (1.3 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .ad-fv__txt {
  margin-top: 30px;
  color: #fff;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 768px) {
  .subscription .ad-fv__txt {
    margin-top: 20px;
    font-size: 1.2rem;
    line-height: calc(20 / (1.2 * 10));
    letter-spacing: 0.1em;
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  .subscription .ad-fv__txt {
    font-size: 1rem;
    line-height: calc(18 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .ad-fv__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  max-width: 220px;
  height: 50px;
  margin-top: 60px;
  padding-left: 15px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 1.4rem;
  line-height: calc(21 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .subscription .ad-fv__link {
    max-width: 155px;
    height: 35px;
    margin: 30px auto 0;
    font-size: 1.2rem;
    line-height: calc(18 / (1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .ad-fv__link::before {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(-45deg);
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  content: "";
}
@media screen and (max-width: 768px) {
  .subscription .ad-fv__link::before {
    right: 15px;
    width: 6px;
    height: 6px;
  }
}
@-webkit-keyframes scroll {
  0% {
    height: 0;
  }
  100% {
    height: 40px;
  }
}
@keyframes scroll {
  0% {
    height: 0;
  }
  100% {
    height: 40px;
  }
}
@-webkit-keyframes scrollSp {
  0% {
    height: 0;
  }
  100% {
    height: 25px;
  }
}
@keyframes scrollSp {
  0% {
    height: 0;
  }
  100% {
    height: 25px;
  }
}
.subscription .ad-fv .scroll {
  -webkit-transform: translateX(-50%);
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 1.2rem;
  line-height: calc(21 / (1.2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .subscription .ad-fv .scroll {
    bottom: 30px;
    font-size: 1rem;
    line-height: calc(18 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.subscription .ad-fv .scroll::before {
  -webkit-transform: translateY(100%);
  -webkit-animation: scroll 2s ease 0s infinite;
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 1px;
  height: 0;
  transform: translateY(100%);
  background: #fff;
  content: "";
  animation: scroll 2s ease 0s infinite;
}
@media screen and (max-width: 768px) {
  .subscription .ad-fv .scroll::before {
    -webkit-animation: scrollSp 2s ease 0s infinite;
    bottom: -5px;
    animation: scrollSp 2s ease 0s infinite;
  }
}

/**
* @file _l-virtualstore.scss
**/
.virtualstore .section__ttl {
  color: #434748;
  font-size: 3.2rem;
  line-height: calc(38 / (3.2 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 1070px) {
  .virtualstore .section__ttl {
    font-size: 2.4rem;
    line-height: calc(30 / (2.4 * 10));
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 768px) {
  .virtualstore .section__ttl {
    font-size: 1.9rem;
    line-height: calc(29 / (1.9 * 10));
    letter-spacing: 0.1em;
  }
}
.virtualstore .section__link {
  -webkit-transition: opacity 0.5s;
  display: block;
  position: relative;
  width: 100%;
  max-width: 470px;
  margin: 60px auto 100px;
  padding: 15px 20px;
  background-color: #434748;
  color: #fff;
  font-size: 2rem;
  line-height: calc(40 / (2 * 10));
  letter-spacing: 0.1em;
  transition: opacity 0.5s;
}
.virtualstore .section__link:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
  .virtualstore .section__link {
    max-width: 270px;
    margin: 30px auto 50px;
    padding: 10px 15px;
    font-size: 1.2rem;
    line-height: calc(20 / (1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.virtualstore .section__next {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 48%;
  right: 30px;
  width: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .virtualstore .section__next {
    right: 17px;
    width: 7px;
  }
}
.virtualstore .section__next img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
  vertical-align: middle;
}
.virtualstore .virtualstore-fv__container {
  position: relative;
}
.virtualstore .virtualstore-fv__img {
  width: 100%;
  height: 780px;
}
@media screen and (max-width: 768px) {
  .virtualstore .virtualstore-fv__img {
    height: 630px;
  }
}
.virtualstore .virtualstore-fv__img picture,
.virtualstore .virtualstore-fv__img img {
  -o-object-fit: cover;
  display: block;
  width: 100%;
  height: 780px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .virtualstore .virtualstore-fv__img picture,
  .virtualstore .virtualstore-fv__img img {
    height: 630px;
  }
}
.virtualstore .virtualstore-fv__content {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1070px;
  padding: 65px 20px 48px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 768px) {
  .virtualstore .virtualstore-fv__content {
    width: calc(100% - 20px);
    padding: 30px 10px;
  }
}
.virtualstore .virtualstore-fv__ttl {
  position: relative;
  font-weight: 100;
  font-size: 4.2rem;
  line-height: calc(42 / (4.2 * 10));
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .virtualstore .virtualstore-fv__ttl {
    font-size: 3rem;
    line-height: calc(30 / (3 * 10));
    letter-spacing: 0.1em;
  }
}
.virtualstore .virtualstore-fv__ttl::before {
  -webkit-transform: translateX(-50%);
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  content: attr(data-ttl);
  font-size: 1.4rem;
  line-height: calc(14 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .virtualstore .virtualstore-fv__ttl::before {
    bottom: -20px;
    font-size: 1rem;
    line-height: calc(15 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.virtualstore .virtualstore-fv__sub-ttl {
  margin-top: 70px;
  font-weight: normal;
  font-size: 2.4rem;
  line-height: calc(44 / (2.4 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.3rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .virtualstore .virtualstore-fv__sub-ttl {
    margin-top: 50px;
    font-size: 1.3rem;
    line-height: calc(23 / (1.3 * 10));
    letter-spacing: 0.1em;
  }
}
.virtualstore .virtualstore-fv__txt {
  margin-top: 26px;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .virtualstore .virtualstore-fv__txt {
    font-size: 1rem;
    line-height: calc(18 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.virtualstore .virtualstore-fv__lists {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
/*  display: flex;*/
  justify-content: center;
  margin: 26px auto 0;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .virtualstore .virtualstore-fv__lists {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
	margin-bottom: 20px;
  }
}
.virtualstore .virtualstore-fv .lists__item {
  width: 25%;
  max-width: 130px;
}
@media screen and (max-width: 768px) {
  .virtualstore .virtualstore-fv .lists__item {
    -webkit-box-align: center;
    -ms-flex-align: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    width: 50%;
  }
}
.virtualstore .virtualstore-fv .item__img {
  width: 110px;
  height: 110px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .virtualstore .virtualstore-fv .item__img {
    width: 60px;
    height: 60px;
    margin: 0 5px 0 0;
  }
}
.virtualstore .virtualstore-fv .item__img picture,
.virtualstore .virtualstore-fv .item__img img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.virtualstore .virtualstore-fv .item__ttl {
  margin-top: 13px;
  font-weight: normal;
  font-size: 1.2rem;
  line-height: calc(28 / (1.2 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .virtualstore .virtualstore-fv .item__ttl {
    width: calc(100% - 60px);
    font-size: 1rem;
    line-height: calc(18 / (1 * 10));
    letter-spacing: 0.1em;
    text-align: left;
  }
}
.virtualstore .recommend {
  padding: 98px 0;
  background: #f0f0f0;
}
@media screen and (max-width: 768px) {
  .virtualstore .recommend {
    padding: 50px 0;
  }
}
.virtualstore .recommend__lists {
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1070px;
  margin: 60px auto 0;
  gap: 20px;
}
@media screen and (max-width: 1070px) {
  .virtualstore .recommend__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .virtualstore .recommend__lists {
    margin: 30px auto 0;
    gap: 10px;
  }
}
.virtualstore .recommend .lists__item {
  width: 50%;
  max-width: 525px;
  padding: 30px;
  background: #fff;
}
@media screen and (max-width: 1070px) {
  .virtualstore .recommend .lists__item {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .virtualstore .recommend .lists__item {
    max-width: 285px;
    margin: 0 auto;
    padding: 15px 20px;
  }
}
.virtualstore .recommend .item__txt {
  font-size: 2rem;
  line-height: calc(26 / (2 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .virtualstore .recommend .item__txt {
    font-size: 1.2rem;
    line-height: calc(14 / (1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.virtualstore .recommend__txt {
  margin-top: 52px;
  font-size: 2rem;
  line-height: calc(26 / (2 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .virtualstore .recommend__txt {
    margin-top: 27px;
    font-size: 1.1rem;
    line-height: calc(14 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.virtualstore .consultation__container {
  position: relative;
}
.virtualstore .consultation__img {
  width: 100%;
  height: 785px;
}
@media screen and (max-width: 1070px) {
  .virtualstore .consultation__img {
    height: 615px;
  }
}
@media screen and (max-width: 768px) {
  .virtualstore .consultation__img {
    height: 715px;
  }
}
.virtualstore .consultation__img picture,
.virtualstore .consultation__img img {
  -o-object-fit: cover;
  display: block;
  width: 100%;
  height: 780px;
  object-fit: cover;
}
@media screen and (max-width: 1070px) {
  .virtualstore .consultation__img picture,
  .virtualstore .consultation__img img {
    -o-object-position: left;
    height: 615px;
    object-position: left;
  }
}
@media screen and (max-width: 768px) {
  .virtualstore .consultation__img picture,
  .virtualstore .consultation__img img {
    height: 715px;
  }
}
.virtualstore .consultation__content {
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  max-width: 1070px;
  padding: 80px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.9);
}
@media screen and (max-width: 1070px) {
  .virtualstore .consultation__content {
    width: calc(100% - 40px);
    padding: 40px 20px;
  }
}
.virtualstore .consultation__lists {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
  gap: 60px 32.5px;
}
@media screen and (max-width: 1070px) {
  .virtualstore .consultation__lists {
    margin-top: 35px;
    gap: 15px;
  }
}
@media screen and (max-width: 768px) {
  .virtualstore .consultation__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.virtualstore .consultation .lists__item {
  width: 50%;
  max-width: 418px;
  padding-left: 30px;
  border-left: 5px solid #eceded;
}
@media screen and (max-width: 1070px) {
  .virtualstore .consultation .lists__item {
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    padding-left: 13px;
  }
}
.virtualstore .consultation .item__ttl {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: calc(44 / (2.4 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 1070px) {
  .virtualstore .consultation .item__ttl {
    font-size: 1.4rem;
    line-height: calc(25 / (1.4 * 10));
    letter-spacing: 0.1em;
  }
}
.virtualstore .consultation .item__txt {
  font-size: 1.6rem;
  line-height: calc(28 / (1.6 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 1070px) {
  .virtualstore .consultation .item__txt {
    font-size: 1rem;
    line-height: calc(17 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.virtualstore .flow {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .virtualstore .flow {
    padding-top: 50px;
  }
}
.virtualstore .flow__lists {
  max-width: 1070px;
  margin: 40px auto 0;
}
@media screen and (max-width: 768px) {
  .virtualstore .flow__lists {
    max-width: 275px;
    margin: 30px auto 0;
  }
}
.virtualstore .flow .lists__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 40px 60px 25px 75px;
  border: 2px solid #eceded;
}
@media screen and (max-width: 768px) {
  .virtualstore .flow .lists__item {
    padding: 20px;
  }
}
.virtualstore .flow .lists__item:not(:first-of-type) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .virtualstore .flow .lists__item:not(:first-of-type) {
    margin-top: 10px;
  }
}
.virtualstore .flow .item__img-box {
  width: 85px;
}
@media screen and (max-width: 768px) {
  .virtualstore .flow .item__img-box {
    width: 50px;
  }
}
.virtualstore .flow .item__step {
  padding-bottom: 5px;
  border-bottom: 2px solid #434748;
  font-size: 1.6rem;
  line-height: calc(16 / (1.6 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.1rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .virtualstore .flow .item__step {
    font-size: 1rem;
    line-height: calc(16 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.virtualstore .flow .item__img {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .virtualstore .flow .item__img {
    margin: 20px auto 0;
  }
}
.virtualstore .flow .item__img.img-01 {
  width: 80px;
}
@media screen and (max-width: 768px) {
  .virtualstore .flow .item__img.img-01 {
    width: 45px;
  }
}
.virtualstore .flow .item__img.img-02 {
  width: 72px;
}
@media screen and (max-width: 768px) {
  .virtualstore .flow .item__img.img-02 {
    width: 43px;
  }
}
.virtualstore .flow .item__img.img-03 {
  width: 78px;
}
@media screen and (max-width: 768px) {
  .virtualstore .flow .item__img.img-03 {
    width: 46px;
  }
}
.virtualstore .flow .item__img img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}
.virtualstore .flow .item__content {
  width: calc(100% - 85px);
  padding-left: 72px;
}
@media screen and (max-width: 768px) {
  .virtualstore .flow .item__content {
    width: calc(100% - 50px);
    padding-left: 20px;
  }
}
.virtualstore .flow .item__ttl {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: calc(44 / (2.4 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 768px) {
  .virtualstore .flow .item__ttl {
    font-size: 1.3rem;
    line-height: calc(19 / (1.3 * 10));
    letter-spacing: 0.1em;
  }
}
.virtualstore .flow .item__txt {
  font-weight: 300;
  font-size: 1.6rem;
  line-height: calc(28 / (1.6 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 768px) {
  .virtualstore .flow .item__txt {
    font-size: 1rem;
    line-height: calc(16 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.virtualstore .flow__attention-box {
  max-width: 1070px;
  margin: 50px auto 0;
  padding: 30px;
  background: #f0f0f0;
}
@media screen and (max-width: 768px) {
  .virtualstore .flow__attention-box {
    max-width: 275px;
    margin: 10px auto 0;
    padding: 20px;
  }
}
.virtualstore .flow .attention__ttl {
  color: #333;
  font-weight: 500;
  font-size: 2rem;
  line-height: calc(44 / (2 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .virtualstore .flow .attention__ttl {
    font-size: 1.1rem;
    line-height: calc(22 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.virtualstore .flow .attention__lists {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .virtualstore .flow .attention__lists {
    margin-top: 14px;
  }
}
.virtualstore .flow .attention .a-lists__item {
  position: relative;
  padding-left: 20px;
  color: #333;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .virtualstore .flow .attention .a-lists__item {
    padding-left: 10px;
    font-size: 1rem;
    line-height: calc(16 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.virtualstore .flow .attention .a-lists__item::before {
  position: absolute;
  top: 14px;
  left: 5px;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #333;
  content: "";
}
@media screen and (max-width: 768px) {
  .virtualstore .flow .attention .a-lists__item::before {
    top: 8px;
    left: 0;
    width: 2px;
    height: 2px;
  }
}

.vivorka .section__en-ttl {
  display: block;
  font-weight: 100;
  font-size: 3.2rem;
  line-height: calc(32 / (3.2 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .vivorka .section__en-ttl {
    font-size: 2.5rem;
    line-height: calc(25 / (2.5 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .section__ttl {
  position: relative;
  margin-top: 20px;
  font-weight: 100;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .vivorka .section__ttl {
    margin-top: 10px;
    font-size: 1.1rem;
    line-height: calc(22 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .fv {
  max-height: none;
}
.vivorka .fv__container {
  max-height: none;
}
.vivorka .fv__img {
  width: 100%;
  height: 100%;
  min-height: 500px;
}
.vivorka .fv__img source,
.vivorka .fv__img img {
  -o-object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vivorka .fv__img img {
  min-height: 500px;
}
@media screen and (max-width: 1000px) {
  .vivorka .fv__img img {
    min-height: 350px;
  }
}
.vivorka .concept {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .vivorka .concept {
    padding: 45px 0;
  }
}
.vivorka .concept__txt {
  margin-top: 30px;
  font-weight: 100;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .vivorka .concept__txt {
    margin-top: 15px;
    font-size: 1.1rem;
    line-height: calc(22 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .produce {
  background-color: #f0f3f4;
}
.vivorka .produce__container {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .vivorka .produce__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.vivorka .produce__content {
  width: 100%;
  max-width: 540px;
  padding: 82px 0 20px;
}
@media screen and (max-width: 1000px) {
  .vivorka .produce__content {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .vivorka .produce__content {
    width: 100%;
    max-width: none;
    padding-top: 40px;
  }
}
.vivorka .produce__ttl {
  font-weight: 100;
  font-size: 3.1rem;
  line-height: calc(31 / (3.1 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .vivorka .produce__ttl {
    font-size: 2.5rem;
    line-height: calc(30 / (2.5 * 10));
    letter-spacing: 0.1em;
    text-align: center;
  }
}
.vivorka .produce__txt {
  margin-top: 30px;
  font-weight: 100;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .vivorka .produce__txt {
    margin-top: 20px;
    font-size: 1.1rem;
    line-height: calc(22 / (1.1 * 10));
    letter-spacing: 0.1em;
    text-align: center;
  }
}
.vivorka .produce__logo {
  width: 100%;
  max-width: 130px;
  margin: 30px 0 0 25%;
}
@media screen and (max-width: 768px) {
  .vivorka .produce__logo {
    max-width: 115px;
    margin: 15px auto;
  }
}
.vivorka .produce__logo img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.vivorka .produce__img {
  width: calc(100% - 540px);
  max-width: 490px;
}
@media screen and (max-width: 1000px) {
  .vivorka .produce__img {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .vivorka .produce__img {
    width: 100%;
    max-width: 250px;
    margin: 20px auto 0;
  }
}
.vivorka .produce__img img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.vivorka .limited {
  margin-top: 50px;
  padding: 60px 0;
  background-color: rgba(67, 71, 72, 0.08);
}
.vivorka .limited__ttl {
  display: block;
  font-weight: 100;
  font-size: 3.2rem;
  line-height: calc(32 / (3.2 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .vivorka .limited__ttl {
    font-size: 2.5rem;
    line-height: calc(25 / (2.5 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .limited__txt {
  position: relative;
  margin-top: 20px;
  font-weight: 100;
  font-size: 1.6rem;
  line-height: calc(28 / (1.6 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .vivorka .limited__txt {
    margin-top: 10px;
    font-size: 1.1rem;
    line-height: calc(22 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .limited__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 980px;
  margin: 50px auto 0;
}
@media screen and (max-width: 1024px) {
  .vivorka .limited__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 30px auto 0;
  }
}
.vivorka .limited .lists__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: calc((100% - 15px) / 2);
  padding: 30px;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
  .vivorka .limited .lists__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    padding: 25px;
  }
}
.vivorka .limited .lists__item:nth-of-type(2) {
  margin-left: 15px;
}
@media screen and (max-width: 1024px) {
  .vivorka .limited .lists__item:nth-of-type(2) {
    margin: 25px 0 0 0;
  }
}
.vivorka .limited .item__img {
  width: 200px;
  height: 200px;
}
@media screen and (max-width: 1024px) {
  .vivorka .limited .item__img {
    width: 100%;
    height: auto;
  }
}
.vivorka .limited .item__img img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.vivorka .limited .item__content {
  width: calc(100% - 200px);
  padding-left: 15px;
}
@media screen and (max-width: 1024px) {
  .vivorka .limited .item__content {
    width: 300px;
    margin: 15px auto 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .vivorka .limited .item__content {
    max-width: 190px;
  }
}
.vivorka .limited .item__tag {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 75px;
  height: 20px;
  border: 1px solid rgba(67, 71, 72, 0.1);
  font-size: 1rem;
  line-height: calc(22 / (1 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.05em;
}
.vivorka .limited .item__txt {
  margin-top: 15px;
  font-size: 1.2rem;
  line-height: calc(21 / (1.2 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .vivorka .limited .item__txt {
    font-size: 1rem;
    line-height: calc(18 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .limited .item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: opacity 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  max-width: 300px;
  height: 40px;
  margin-top: 62px;
  padding: 0 20px;
  background-color: #434748;
  color: #fff;
  font-size: 1.4rem;
  line-height: calc(14 / (1.4 * 10));
  letter-spacing: 0.1em;
  transition: opacity 0.4s;
}
@media screen and (max-width: 768px) {
  .vivorka .limited .item__link {
    margin-top: 20px;
  }
}
@media screen and (max-width: 500px) {
  .vivorka .limited .item__link {
    max-width: 168px;
  }
}
.vivorka .limited .item__link:hover {
  -webkit-transition: opacity 0.4s;
  opacity: 0.8;
  transition: opacity 0.4s;
}
.vivorka .limited .item__link::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  width: 7px;
  height: 7px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
}
.vivorka .product {
  padding: 130px 0 90px;
}
@media screen and (max-width: 1000px) {
  .vivorka .product {
    padding: 45px 0;
  }
}
.vivorka .product__lists {
  max-width: 980px;
  margin: 80px auto 0;
}
@media screen and (max-width: 1000px) {
  .vivorka .product__lists {
    margin: 30px auto 0;
  }
}
.vivorka .product .lists__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 1000px) {
  .vivorka .product .lists__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.vivorka .product .lists__item:not(:first-of-type) {
  margin-top: 100px;
}
@media screen and (max-width: 1000px) {
  .vivorka .product .lists__item:not(:first-of-type) {
    margin-top: 50px;
  }
}
.vivorka .product .item__img-box {
  width: calc(100% - 500px);
}
@media screen and (max-width: 1000px) {
  .vivorka .product .item__img-box {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.vivorka .product .item__img {
  width: 100%;
}
.vivorka .product .item__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vivorka .product .item__explain {
  display: block;
  margin-top: 15px;
  font-weight: 100;
  font-size: 1.4rem;
  line-height: calc(14 / (1.4 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .vivorka .product .item__explain {
    margin-top: 5px;
    font-size: 1.1rem;
    line-height: calc(22 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .product .item__content {
  width: 100%;
  max-width: 540px;
}
@media screen and (max-width: 1000px) {
  .vivorka .product .item__content {
    max-width: 400px;
    margin: 30px auto 0;
  }
}
.vivorka .product .item__en-ttl {
  font-weight: 100;
  font-size: 1.8rem;
  line-height: calc(18 / (1.8 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  .vivorka .product .item__en-ttl {
    font-size: 1.5rem;
    line-height: calc(20 / (1.5 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .product .item__ttl {
  margin-top: 10px;
  font-weight: 400;
  font-size: 2.6rem;
  line-height: calc(44 / (2.6 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.3em;
}
@media screen and (max-width: 1000px) {
  .vivorka .product .item__ttl {
    margin-top: 5px;
    font-size: 2rem;
    line-height: calc(35 / (2 * 10));
    letter-spacing: 0.1em;
    letter-spacing: 0.22em;
  }
}
.vivorka .product .item__attention {
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
  display: block;
  position: relative;
  padding-left: 15px;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: calc(28 / (1.2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  .vivorka .product .item__attention {
    padding-left: 13px;
    font-size: 1rem;
    line-height: calc(22 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .product .item__attention::before {
  position: absolute;
  top: 8px;
  left: 0;
  content: "※";
  font-size: 1.2rem;
  line-height: calc(12 / (1.2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  .vivorka .product .item__attention::before {
    top: 6px;
    font-size: 1rem;
    line-height: calc(10 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .product .item__sub-lists {
  margin-top: 35px;
}
@media screen and (max-width: 1000px) {
  .vivorka .product .item__sub-lists {
    margin-top: 25px;
  }
}
.vivorka .product .item .sub-lists__item {
  position: relative;
  padding-left: 20px;
  font-size: 1.4rem;
  line-height: calc(31 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1000px) {
  .vivorka .product .item .sub-lists__item {
    padding-left: 15px;
    font-size: 1.1rem;
    line-height: calc(24 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .product .item .sub-lists__item:not(:first-of-type) {
  margin-top: 15px;
}
.vivorka .product .item .sub-lists__item::before {
  position: absolute;
  top: 8px;
  left: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #333;
  content: "";
}
@media screen and (max-width: 1000px) {
  .vivorka .product .item .sub-lists__item::before {
    width: 11px;
    height: 11px;
  }
}
.vivorka .product .item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: opacity 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  max-width: 210px;
  height: 40px;
  margin-top: 40px;
  padding: 0 20px;
  background-color: #434748;
  color: #fff;
  font-size: 1.4rem;
  line-height: calc(14 / (1.4 * 10));
  letter-spacing: 0.1em;
  transition: opacity 0.4s;
}
@media screen and (max-width: 1000px) {
  .vivorka .product .item__link {
    max-width: 168px;
    margin-top: 30px;
  }
}
.vivorka .product .item__link:hover {
  -webkit-transition: opacity 0.4s;
  opacity: 0.8;
  transition: opacity 0.4s;
}
.vivorka .product .item__link::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  width: 7px;
  height: 7px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
}
.vivorka .product .lists__item:nth-of-type(2n+1) .item__content {
  padding-left: 80px;
}
@media screen and (max-width: 1000px) {
  .vivorka .product .lists__item:nth-of-type(2n+1) .item__content {
    padding-left: 0;
  }
}
.vivorka .product .lists__item:nth-of-type(2n) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1000px) {
  .vivorka .product .lists__item:nth-of-type(2n) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.vivorka .product .lists__item:nth-of-type(2n) .item__content {
  padding-right: 55px;
}
@media screen and (max-width: 1000px) {
  .vivorka .product .lists__item:nth-of-type(2n) .item__content {
    padding-right: 0;
  }
}
.vivorka .problem {
  padding: 95px 0;
  background-color: #f0f0f0;
}
@media screen and (max-width: 768px) {
  .vivorka .problem {
    padding: 40px 0;
  }
}
.vivorka .problem__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .vivorka .problem__head {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.vivorka .problem .head__content {
  width: 100%;
  max-width: 430px;
}
@media screen and (max-width: 768px) {
  .vivorka .problem .head__content {
    max-width: 230px;
    margin: 0 auto;
  }
}
.vivorka .problem .head__ttl {
  font-weight: 400;
  font-size: 2rem;
  line-height: calc(40 / (2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .vivorka .problem .head__ttl {
    font-size: 1.6rem;
    line-height: calc(32 / (1.6 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .problem .head__lists {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .vivorka .problem .head__lists {
    margin-top: 15px;
  }
}
.vivorka .problem .head .lists__item {
  position: relative;
  padding-left: 35px;
  font-size: 1.4rem;
  line-height: calc(38 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .vivorka .problem .head .lists__item {
    padding-left: 24px;
    font-size: 1.1rem;
    line-height: calc(30 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .problem .head .lists__item::before {
  position: absolute;
  top: 10px;
  left: 0;
  width: 24px;
  height: 18px;
  background-image: url(../images/vivorka/checkbox.svg);
  background-size: contain;
  background-repeat: no-repeat;
  content: "";
}
@media screen and (max-width: 768px) {
  .vivorka .problem .head .lists__item::before {
    width: 19px;
    height: 14px;
  }
}
.vivorka .problem .head__img {
  width: calc(100% - 430px);
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .vivorka .problem .head__img {
    width: 100%;
    max-width: 500px;
    margin: 30px auto 0;
  }
}
.vivorka .problem .head__img img {
  -o-object-fit: cover;
  width: 100%;
  object-fit: cover;
}
.vivorka .problem__bottom {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 980px;
  margin: 80px auto 0;
  padding: 60px 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .vivorka .problem__bottom {
    margin-top: 30px;
    padding: 30px 0;
  }
}
.vivorka .problem .bottom__txt {
  font-weight: 400;
  font-size: 2rem;
  line-height: calc(40 / (2 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .vivorka .problem .bottom__txt {
    font-size: 1.6rem;
    line-height: calc(32 / (1.6 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .point {
  padding: 100px 0 0;
}
@media screen and (max-width: 768px) {
  .vivorka .point {
    padding: 45px 0 0;
  }
}
.vivorka .point .lists__item:not(:first-of-type) {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .vivorka .point .lists__item:not(:first-of-type) {
    margin-top: 50px;
  }
}
.vivorka .point .item__number {
  display: block;
  position: relative;
  font-weight: 100;
  font-size: 3.2rem;
  line-height: calc(32 / (3.2 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .vivorka .point .item__number {
    font-size: 2.5rem;
    line-height: calc(25 / (2.5 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .point .item__number::before {
  -webkit-transform: translateX(-50%);
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 50px;
  height: 1px;
  transform: translateX(-50%);
  background-color: #333;
  content: "";
}
@media screen and (max-width: 768px) {
  .vivorka .point .item__number::before {
    width: 40px;
  }
}
.vivorka .point .item__ttl {
  margin-top: 50px;
  font-weight: 400;
  font-size: 2rem;
  line-height: calc(40 / (2 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .vivorka .point .item__ttl {
    margin-top: 40px;
    font-size: 1.6rem;
    line-height: calc(32 / (1.6 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .point .item__ttl strong {
  display: inline-block;
  position: relative;
  font-weight: 500;
  font-size: 2.8rem;
  line-height: calc(48 / (2.8 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.25em;
}
@media screen and (max-width: 768px) {
  .vivorka .point .item__ttl strong {
    font-size: 2.2rem;
    line-height: calc(38 / (2.2 * 10));
    letter-spacing: 0.1em;
    letter-spacing: 0.25em;
  }
}
@media screen and (max-width: 768px) {
  .vivorka .point .item__ttl strong:first-of-type {
    margin-top: 10px;
  }
}
.vivorka .point .item__ttl strong::before {
  z-index: -1;
  position: absolute;
  bottom: 10px;
  left: -2.5%;
  width: 105%;
  height: 10px;
  background-color: #e5e2d0;
  content: "";
}
.vivorka .point .item__ttl strong.sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .vivorka .point .item__ttl strong.sp-only {
    display: inline-block;
  }
}
.vivorka .point .item__ttl strong span {
  vertical-align: initial;
}
@media screen and (max-width: 768px) {
  .vivorka .point .item__ttl strong span {
    display: none;
  }
}
.vivorka .point .item__content {
  margin-top: 50px;
  padding: 50px 25px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .vivorka .point .item__content {
    width: 100%;
    margin: 40px auto 0;
    padding: 0 15px;
  }
}
.vivorka .point .content__wrapper {
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .vivorka .point .content__wrapper {
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .vivorka .point .content__wrapper::before {
    -webkit-transform: translateY(100%);
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    transform: translateY(100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(rgb(255, 255, 255), rgba(255, 255, 255, 0));
    content: "";
  }
}
.vivorka .point .content .point01__ttl {
  font-weight: 400;
  font-size: 2rem;
  line-height: calc(40 / (2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .vivorka .point .content .point01__ttl {
    font-size: 1.6rem;
    line-height: calc(32 / (1.6 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .point .content .point01__ttl:not(:first-of-type) {
  margin-top: 30px;
}
.vivorka .point .content .point01__txt {
  margin-top: 10px;
  font-weight: 100;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .vivorka .point .content .point01__txt {
    font-size: 1.1rem;
    line-height: calc(22 / (1.1 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .point .content .point01__img-bg {
  width: 100%;
  margin-top: -150px;
}
.vivorka .point .content .point01__img-bg img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}
.vivorka .point .content .point02__txt {
  z-index: 1;
  position: relative;
  font-weight: 400;
  font-size: 2rem;
  line-height: calc(40 / (2 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .vivorka .point .content .point02__txt {
    font-size: 1.6rem;
    line-height: calc(32 / (1.6 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .point .content .point02__img {
  z-index: 1;
  position: relative;
  width: 100%;
  max-width: 500px;
  margin: 30px auto 0;
}
.vivorka .point .content .point02__img img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}
.vivorka .point .content .point02__img-bg {
  width: 100%;
  margin-top: -350px;
}
.vivorka .point .content .point02__img-bg img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}
.vivorka .point .bottom {
  padding: 50px 25px;
  background-color: rgba(67, 71, 72, 0.08);
}
@media screen and (max-width: 768px) {
  .vivorka .point .bottom {
    padding: 50px 15px;
  }
}
.vivorka .point .bottom__ttl {
  font-weight: 400;
  font-size: 2.8rem;
  line-height: calc(48 / (2.8 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .vivorka .point .bottom__ttl {
    font-size: 2.2rem;
    line-height: calc(38 / (2.2 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .point .bottom__img {
  width: 100%;
  max-width: 980px;
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .vivorka .point .bottom__img {
    max-width: 290px;
    margin: 35px auto 0;
  }
}
.vivorka .point .bottom__img img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}
.vivorka .point .bottom__attention {
  display: block;
  max-width: 980px;
  margin: 10px auto 0;
  font-weight: 100;
  font-size: 1.2rem;
  line-height: calc(28 / (1.2 * 10));
  letter-spacing: 0.1em;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .vivorka .point .bottom__attention {
    max-width: 320px;
    font-size: 1rem;
    line-height: calc(22 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .point .lists__item:first-of-type .item__content {
  min-height: 625px;
  background-image: url(../images/vivorka/point-01@2x.png);
}
@media screen and (max-width: 1000px) {
  .vivorka .point .lists__item:first-of-type .item__content {
    background-position: -700px 0;
  }
}
@media screen and (max-width: 768px) {
  .vivorka .point .lists__item:first-of-type .item__content {
    background-image: none;
  }
}
@media screen and (max-width: 768px) {
  .vivorka .point .lists__item:first-of-type .content__wrapper {
    background-color: #fff;
  }
}
.vivorka .point .lists__item:nth-of-type(2) .item__content {
  min-height: 515px;
  background-image: url(../images/vivorka/point-02@2x.png);
}
@media screen and (max-width: 1000px) {
  .vivorka .point .lists__item:nth-of-type(2) .item__content {
    background-position: -600px 0;
  }
}
@media screen and (max-width: 768px) {
  .vivorka .point .lists__item:nth-of-type(2) .item__content {
    background-image: none;
  }
}
.vivorka .point .lists__item:nth-of-type(2) .content__wrapper::before {
  -webkit-transform: translateY(0);
  z-index: 1;
  top: 0;
  height: 100vw;
  transform: translateY(0);
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(255, 255, 255)), color-stop(rgba(255, 255, 255, 0.8)), color-stop(rgba(255, 255, 255, 0.2)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(rgb(255, 255, 255), rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
}
.vivorka .fragrance {
  padding: 100px 0 0;
}
@media screen and (max-width: 768px) {
  .vivorka .fragrance {
    padding: 50px 0 0;
  }
}
.vivorka .fragrance__container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 50px 0;
  border: 2px solid rgba(67, 71, 72, 0.1);
}
@media screen and (max-width: 768px) {
  .vivorka .fragrance__container {
    width: 100%;
    max-width: 500px;
  }
}
.vivorka .fragrance__number {
  display: block;
  position: relative;
  font-weight: 100;
  font-size: 3.2rem;
  line-height: calc(32 / (3.2 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .vivorka .fragrance__number {
    font-size: 2.6rem;
    line-height: calc(26 / (2.6 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .fragrance__number::before {
  -webkit-transform: translateX(-50%);
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 50px;
  height: 1px;
  transform: translateX(-50%);
  background-color: #333;
  content: "";
}
@media screen and (max-width: 768px) {
  .vivorka .fragrance__number::before {
    width: 40px;
  }
}
.vivorka .fragrance__ttl {
  margin-top: 50px;
  font-weight: 400;
  font-size: 2.8rem;
  line-height: calc(48 / (2.8 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.25em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .vivorka .fragrance__ttl {
    margin-top: 35px;
    font-size: 2.2rem;
    line-height: calc(38 / (2.2 * 10));
    letter-spacing: 0.1em;
    letter-spacing: 0.25em;
  }
}
.vivorka .fragrance__txt {
  margin-top: 10px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: calc(40 / (1.6 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .vivorka .fragrance__txt {
    font-size: 1.2rem;
    line-height: calc(29 / (1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.vivorka .fragrance__img {
  width: 100%;
  max-width: 205px;
  margin: 20px auto 0;
}
@media screen and (max-width: 768px) {
  .vivorka .fragrance__img {
    max-width: 165px;
  }
}
.vivorka .fragrance__img img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}
.vivorka .product-bottom__container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .vivorka .product-bottom__container {
    width: 100%;
    max-width: 500px;
  }
}
.vivorka .product-bottom__lists {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  margin: 100px 0 0 -100px;
}
@media screen and (max-width: 768px) {
  .vivorka .product-bottom__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: -5px 0 0;
  }
}
.vivorka .product-bottom .lists__item {
  width: calc(50% - 100px);
  margin-left: 100px;
}
@media screen and (max-width: 768px) {
  .vivorka .product-bottom .lists__item {
    width: 100%;
    margin: 50px 0 0;
  }
}
.vivorka .product-bottom .item__img {
  width: 100%;
}
.vivorka .product-bottom .item__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.vivorka .product-bottom .item__explain {
  display: block;
  margin-top: 15px;
  font-weight: 100;
  font-size: 1.4rem;
  line-height: calc(14 / (1.4 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .vivorka .product-bottom .item__explain {
    font-size: 1rem;
    line-height: calc(1.8 / (1 * 10));
    letter-spacing: 0.1em;
    letter-spacing: 0.05em;
  }
}
.vivorka .product-bottom .item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: opacity 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  max-width: 210px;
  height: 40px;
  margin: 40px auto 0;
  padding: 0 20px;
  background-color: #434748;
  color: #fff;
  font-size: 1.4rem;
  line-height: calc(14 / (1.4 * 10));
  letter-spacing: 0.1em;
  transition: opacity 0.4s;
}
@media screen and (max-width: 768px) {
  .vivorka .product-bottom .item__link {
    max-width: 168px;
    margin: 25px auto 0;
  }
}
.vivorka .product-bottom .item__link:hover {
  -webkit-transition: opacity 0.4s;
  opacity: 0.8;
  transition: opacity 0.4s;
}
.vivorka .product-bottom .item__link::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  width: 7px;
  height: 7px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
}
.vivorka .fadein {
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  -webkit-transform: translate(0, 50px);
  transform: translate(0, 50px);
  opacity: 0;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}
.vivorka .fadein.scrollin {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1;
}

.uv-care-campaign {
  padding-bottom: 165px;
  background: url(../images/uv-care/bg.jpg) center/cover no-repeat;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign {
    padding-bottom: 0;
    background: none;
  }
}
.uv-care-campaign .kv__container {
  max-width: 1070px;
  margin: 0 auto;
}
.uv-care-campaign .kv__img {
  height: 100%;
}
.uv-care-campaign .kv__img picture img,
.uv-care-campaign .kv__img picture source {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.uv-care-campaign .kv__txt {
  margin-top: 30px;
  font-size: 1.1rem;
  line-height: calc(22 / (1.1 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
.uv-care-campaign .contents {
  padding-top: 50px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .contents {
    padding-top: 25px;
    padding-bottom: 0;
  }
}
.uv-care-campaign .contents__container {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .contents__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.uv-care-campaign .contents__wrapper-head {
  position: sticky;
  top: 100px;
  width: 48%;
  max-width: 430px;
  height: 775px;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .contents__wrapper-head {
    position: static;
    width: 100%;
    max-width: none;
    max-width: 450px;
    height: auto;
    margin: 0 auto;
  }
}
.uv-care-campaign .contents__wrapper {
  width: 48%;
  max-width: 430px;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .contents__wrapper {
    width: 100vw;
    max-width: none;
    margin: 30px -15px 0;
    padding: 25px;
    background: url(../images/uv-care/bg.jpg) center/contain repeat-y;
  }
}
.uv-care-campaign .contents__box {
  width: 100%;
  padding: 25px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .contents__box {
    padding: 0 10px;
  }
}
.uv-care-campaign .contents__img {
  width: 100%;
}
.uv-care-campaign .contents__img img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.uv-care-campaign .contents__lists {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .contents__lists {
    max-width: 450px;
    margin: 0 auto;
  }
}
.uv-care-campaign .contents .lists__item {
  padding: 45px 25px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .contents .lists__item {
    padding: 30px 20px;
  }
}
.uv-care-campaign .contents .item__img {
  width: 100%;
}
.uv-care-campaign .contents .item__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.uv-care-campaign .contents .item__content {
  width: 100%;
}
.uv-care-campaign .contents .item__category-box {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  gap: 10px;
}
.uv-care-campaign .contents .item__category-box span {
  display: block;
  min-width: 120px;
  padding: 7px 30px;
  border: 1px solid #333;
  font-size: 1.2rem;
  line-height: calc(12 / (1.2 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .contents .item__category-box span {
    min-width: 90px;
    padding: 7px 20px;
    font-size: 1rem;
    line-height: calc(10 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.uv-care-campaign .contents .item__category-box .out-medical {
  border-color: #888b8d;
  background: #888b8d;
  color: #fff;
}
.uv-care-campaign .contents .item__ttl {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .contents .item__ttl {
    margin-top: 15px;
  }
}
.uv-care-campaign .contents .item__ttl .ttl-en {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: calc(40 / (2.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .contents .item__ttl .ttl-en {
    font-size: 1.8rem;
    line-height: calc(30 / (1.8 * 10));
    letter-spacing: 0.1em;
  }
}
.uv-care-campaign .contents .item__ttl .ttl-ja {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: calc(31 / (1.2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .contents .item__ttl .ttl-ja {
    font-size: 1rem;
    line-height: calc(23 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.uv-care-campaign .contents .item__price {
  display: block;
  margin-top: 10px;
  font-size: 1.2rem;
  line-height: calc(20 / (1.2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .contents .item__price {
    font-size: 1rem;
    line-height: calc(18 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.uv-care-campaign .contents .item__txt {
  margin-top: 25px;
  font-size: 1.2rem;
  line-height: calc(24 / (1.2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .contents .item__txt {
    margin-top: 15px;
    font-size: 1rem;
    line-height: calc(19 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.uv-care-campaign .contents .item__txt strong span {
  display: inline-block;
  margin-bottom: 4px;
  padding: 2px 3px;
  background: #d4d5d5;
  line-height: 1;
}
.uv-care-campaign .contents .item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: opacity 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 260px;
  margin: 40px auto 0;
  padding: 10px 0;
  background: #434748;
  color: #fff;
  font-size: 1.6rem;
  line-height: calc(20 / (1.6 * 10));
  letter-spacing: 0.1em;
  transition: opacity 0.5s;
}
.uv-care-campaign .contents .item__link:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .contents .item__link {
    width: 200px;
    margin-top: 20px;
    font-size: 1.4rem;
    line-height: calc(20 / (1.4 * 10));
    letter-spacing: 0.1em;
  }
}
.uv-care-campaign .contents .item__link::before {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 15px;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(-45deg);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
}
.uv-care-campaign .contents .recommend__lists {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 45px;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .contents .recommend__lists {
    max-width: 450px;
    margin: 0 auto;
    gap: 25px;
  }
}
.uv-care-campaign .contents .recommend .lists__item {
  padding-bottom: 0;
}
.uv-care-campaign .contents .recommend .lists__item.img-only {
  padding: 20px;
}
.uv-care-campaign .contents .recommend .lists__item.img-only .item__img {
  margin-top: 0;
}
.uv-care-campaign .contents .recommend .item__ttl {
  margin-top: 0;
  font-size: 2.4rem;
  line-height: calc(40 / (2.4 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .contents .recommend .item__ttl {
    font-size: 1.8rem;
    line-height: calc(30 / (1.8 * 10));
    letter-spacing: 0.1em;
  }
}
.uv-care-campaign .contents .recommend .item__img {
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .contents .recommend .item__img {
    margin-top: 25px;
  }
}
.uv-care-campaign .contents .recommend .item__box {
  margin: 10px -25px 0;
  padding: 30px 25px;
  background: #888b8d;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .contents .recommend .item__box {
    padding: 20px;
  }
}
.uv-care-campaign .contents .recommend .item__sub-lists {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.uv-care-campaign .contents .recommend .item .sub-lists__item {
  color: #fff;
  font-size: 1.8rem;
  line-height: calc(20 / (1.8 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .contents .recommend .item .sub-lists__item {
    font-size: 1.4rem;
    line-height: calc(18 / (1.4 * 10));
    letter-spacing: 0.1em;
  }
}
.uv-care-campaign .contents .recommend .item .sub-lists__item::before {
  content: "・";
}
.uv-care-campaign .bottom__product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 1070px;
  height: 420px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .bottom__product-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    height: auto;
    padding: 25px 25px 50px;
    background: url(../images/uv-care/bg.jpg) center/contain repeat-y;
  }
}
.uv-care-campaign .bottom .r-product-list__content {
  width: 100%;
  max-width: 410px;
  padding: 50px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .bottom .r-product-list__content {
    max-width: none;
    padding: 40px;
  }
}
.uv-care-campaign .bottom .r-product-list__ttl {
  width: 100%;
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .bottom .r-product-list__ttl {
    max-width: 220px;
    margin: 0 auto;
  }
}
.uv-care-campaign .bottom .r-product-list__ttl img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}
.uv-care-campaign .bottom .r-product-list__ttl span {
  font-weight: 200;
  font-size: 1.4rem;
  line-height: calc(26 / (1.4 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .bottom .r-product-list__ttl span {
    display: block;
    margin-top: 10px;
    text-align: center;
  }
}
.uv-care-campaign .bottom .r-product-list__txt {
  margin-top: 80px;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: calc(26 / (1.4 * 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .bottom .r-product-list__txt {
    margin-top: 20px;
    font-size: 1rem;
    line-height: calc(26 / (1 * 10));
    letter-spacing: 0.1em;
    text-align: center;
  }
}
.uv-care-campaign .bottom .r-product-list__link {
  -webkit-transition: opacity 0.5s;
  display: block;
  position: relative;
  width: 100%;
  max-width: 210px;
  margin-top: 80px;
  padding: 15px 20px;
  background-color: #000;
  color: #fff;
  font-size: 1.4rem;
  line-height: calc(14 / (1.4 * 10));
  letter-spacing: 0.1em;
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .bottom .r-product-list__link {
    margin: 20px auto 0;
  }
}
.uv-care-campaign .bottom .r-product-list__link:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.uv-care-campaign .bottom .r-product-list__img-link {
  -webkit-transition: opacity 0.5s;
  display: block;
  width: calc(100% - 410px);
  height: 100%;
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
  .uv-care-campaign .bottom .r-product-list__img-link {
    width: 100%;
  }
}
.uv-care-campaign .bottom .r-product-list__img-link:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.uv-care-campaign .bottom .r-product-list__img-link img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lunch-party .kv__img {
  display: block;
  width: 100%;
  min-height: 500px;
}
@media screen and (max-width: 768px) {
  .lunch-party .kv__img {
    min-height: auto;
  }
}
.lunch-party .kv__img img {
  -o-object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .lunch-party .kv__img img {
    min-height: auto;
  }
}
.lunch-party .lead__container {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .lunch-party .lead__container {
    padding: 50px 0;
  }
}
.lunch-party .lead__txt {
  font-weight: 300;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lunch-party .lead__txt {
    font-size: 1.2rem;
    line-height: calc(21 / (1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.lunch-party .about {
  padding: 100px 0;
  background: #fff3f3;
}
@media screen and (max-width: 768px) {
  .lunch-party .about {
    padding: 50px 0;
  }
}
.lunch-party .about__container {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .lunch-party .about__container {
    padding: 0 25px;
  }
}
.lunch-party .about__data-box {
  padding: 70px 20px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .lunch-party .about__data-box {
    padding: 40px 15px 40px 20px;
  }
}
.lunch-party .about__data-ttl {
  font-weight: 600;
  font-size: 2.4rem;
  line-height: calc(24 / (2.4 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lunch-party .about__data-ttl {
    font-size: 1.5rem;
    line-height: calc(15 / (1.5 * 10));
    letter-spacing: 0.1em;
  }
}
.lunch-party .about__data {
  width: 100%;
  max-width: 780px;
  margin: 50px auto 0;
}
@media screen and (max-width: 768px) {
  .lunch-party .about__data {
    margin-top: 25px;
  }
}
.lunch-party .about .data__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px 0;
  border-bottom: 2px solid #eceded;
}
@media screen and (max-width: 768px) {
  .lunch-party .about .data__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 15px 0;
    gap: 5px 0;
  }
}
.lunch-party .about .data__box:last-of-type {
  border-bottom: none;
}
.lunch-party .about .data__ttl {
  width: 150px;
  font-weight: 600;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .lunch-party .about .data__ttl {
    width: 100%;
  }
}
.lunch-party .about .data__content {
  width: calc(100% - 150px);
  font-weight: 300;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .lunch-party .about .data__content {
    width: 100%;
    font-size: 1.2rem;
    line-height: calc(18 / (1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.lunch-party .about__profile-box {
  margin-top: 70px;
  padding: 70px 20px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .lunch-party .about__profile-box {
    margin-top: 50px;
    padding: 40px 30px;
  }
}
.lunch-party .about .profile__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  max-width: 780px;
  margin: 0 auto;
  gap: 35px;
}
@media screen and (max-width: 768px) {
  .lunch-party .about .profile__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}
.lunch-party .about .profile__img {
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .lunch-party .about .profile__img {
    max-width: 400px;
    margin: 0 auto;
  }
}
.lunch-party .about .profile__img img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}
.lunch-party .about .profile__name .name-ja {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: calc(34 / (2.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .lunch-party .about .profile__name .name-ja {
    font-size: 1.8rem;
    line-height: calc(32 / (1.8 * 10));
    letter-spacing: 0.1em;
  }
}
.lunch-party .about .profile__name .name-en {
  font-weight: 500;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .lunch-party .about .profile__name .name-en {
    font-size: 1.2rem;
    line-height: calc(18 / (1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.lunch-party .about .profile__txt {
  margin-top: 40px;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: calc(28 / (1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .lunch-party .about .profile__txt {
    margin-top: 10px;
    font-size: 1.2rem;
    line-height: calc(19 / (1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.lunch-party .form {
  padding: 100px 0 150px;
}
@media screen and (max-width: 768px) {
  .lunch-party .form {
    padding: 50px 0 75px;
  }
}
.lunch-party .form__ttl {
  font-weight: 500;
  font-size: 2.4rem;
  line-height: calc(28 / (2.4 * 10));
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lunch-party .form__ttl {
    font-size: 1.6rem;
    line-height: calc(16 / (1.6 * 10));
    letter-spacing: 0.1em;
  }
}
.lunch-party .form__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-transition: opacity 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  width: 420px;
  height: 80px;
  margin: 40px auto 0;
  border-radius: 999px;
  background: #ffcbc9;
  font-size: 1.4rem;
  line-height: calc(14 / (1.4 * 10));
  letter-spacing: 0.1em;
  transition: opacity 0.5s;
}
.lunch-party .form__link:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.7;
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
  .lunch-party .form__link {
    width: 280px;
    height: 50px;
    margin-top: 20px;
    font-size: 1.2rem;
    line-height: calc(12 / (1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.lunch-party .form__link::before {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  position: absolute;
  top: 50%;
  right: 40px;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(-45deg);
  border-right: 1px solid #333;
  border-bottom: 1px solid #333;
  content: "";
}
@media screen and (max-width: 768px) {
  .lunch-party .form__link::before {
    right: 20px;
    width: 6px;
    height: 6px;
  }
}

th,
td {
  vertical-align: top;
}
th .c-date-form__input,
td .c-date-form__input {
  padding: 0 5px;
}
@media screen and (max-width: 768px) {
  th .c-textbox,
  td .c-textbox {
    width: 100%;
  }
}

.c-content-width {
  width: 100%;
  max-width: 1000px;
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  .c-content-width {
    margin-top: 30px;
  }
}

.ui-dialog {
  -webkit-transform: translate(-50%, -50%);
  left: 50% !important;
  width: 40% !important;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .ui-dialog {
    width: 90% !important;
  }
}

@media screen and (max-width: 768px) {
  #cycle_change_dialog .c-form-group--row {
    -ms-grid-columns: 3fr 20px 1fr;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 10px 20px;
  }
}

@media screen and (max-width: 768px) {
  .c-modal__content {
    width: 90%;
  }
}

.c-page-nav__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
}

.l-header__inner {
  width: 100%;
}

.l-header__logo {
  width: 120px;
  margin: 0 auto;
}

.p-mypage {
  width: 90%;
  margin: 0 auto 60px;
  padding: 0 20px;
}
@media screen and (max-width: 1024px) {
  .p-mypage {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .p-mypage .c-button-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .p-mypage table,
  .p-mypage tbody {
    display: block;
    border: none;
  }
}
@media screen and (max-width: 1024px) {
  .p-mypage tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .p-mypage th {
    width: 100%;
    min-width: auto;
  }
}
@media screen and (max-width: 1024px) {
  .p-mypage .sp-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.p-mypage .sp-row th {
  width: 160px;
}
.p-mypage .sp-row td {
  width: calc(100% - 160px);
  padding: 11px 20px;
}
@media screen and (max-width: 1024px) {
  .p-mypage .c-textbox[name$=name01],
  .p-mypage .p-lp-zeus-card #zeus_token_card_info_area input[name$=name01][type=tel],
  .p-mypage .p-lp-zeus-card #zeus_token_card_info_area input[name$=name01][type=text],
  .p-mypage .p-lp-zeus-card #zeus_token_card_info_area select[name$=name01],
  .p-mypage .p-order-zeus-card #zeus_token_card_info_area input[name$=name01][type=tel],
  .p-mypage .p-order-zeus-card #zeus_token_card_info_area input[name$=name01][type=text],
  .p-mypage .p-order-zeus-card #zeus_token_card_info_area select[name$=name01],
  .p-mypage .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=name01][type=tel],
  .p-mypage .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=name01][type=text],
  .p-mypage .p-mypage-zeus-card-change-info #zeus_token_card_info_area select[name$=name01],
  .p-mypage .c-textbox[name$=name02],
  .p-mypage .p-lp-zeus-card #zeus_token_card_info_area input[name$=name02][type=tel],
  .p-mypage .p-lp-zeus-card #zeus_token_card_info_area input[name$=name02][type=text],
  .p-mypage .p-lp-zeus-card #zeus_token_card_info_area select[name$=name02],
  .p-mypage .p-order-zeus-card #zeus_token_card_info_area input[name$=name02][type=tel],
  .p-mypage .p-order-zeus-card #zeus_token_card_info_area input[name$=name02][type=text],
  .p-mypage .p-order-zeus-card #zeus_token_card_info_area select[name$=name02],
  .p-mypage .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=name02][type=tel],
  .p-mypage .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=name02][type=text],
  .p-mypage .p-mypage-zeus-card-change-info #zeus_token_card_info_area select[name$=name02],
  .p-mypage .c-textbox[name$=kana01],
  .p-mypage .p-lp-zeus-card #zeus_token_card_info_area input[name$=kana01][type=tel],
  .p-mypage .p-lp-zeus-card #zeus_token_card_info_area input[name$=kana01][type=text],
  .p-mypage .p-lp-zeus-card #zeus_token_card_info_area select[name$=kana01],
  .p-mypage .p-order-zeus-card #zeus_token_card_info_area input[name$=kana01][type=tel],
  .p-mypage .p-order-zeus-card #zeus_token_card_info_area input[name$=kana01][type=text],
  .p-mypage .p-order-zeus-card #zeus_token_card_info_area select[name$=kana01],
  .p-mypage .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=kana01][type=tel],
  .p-mypage .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=kana01][type=text],
  .p-mypage .p-mypage-zeus-card-change-info #zeus_token_card_info_area select[name$=kana01],
  .p-mypage .c-textbox[name$=kana02],
  .p-mypage .p-lp-zeus-card #zeus_token_card_info_area input[name$=kana02][type=tel],
  .p-mypage .p-lp-zeus-card #zeus_token_card_info_area input[name$=kana02][type=text],
  .p-mypage .p-lp-zeus-card #zeus_token_card_info_area select[name$=kana02],
  .p-mypage .p-order-zeus-card #zeus_token_card_info_area input[name$=kana02][type=tel],
  .p-mypage .p-order-zeus-card #zeus_token_card_info_area input[name$=kana02][type=text],
  .p-mypage .p-order-zeus-card #zeus_token_card_info_area select[name$=kana02],
  .p-mypage .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=kana02][type=tel],
  .p-mypage .p-mypage-zeus-card-change-info #zeus_token_card_info_area input[name$=kana02][type=text],
  .p-mypage .p-mypage-zeus-card-change-info #zeus_token_card_info_area select[name$=kana02] {
    width: 100%;
    max-width: 100px;
  }
}
@media screen and (max-width: 1024px) {
  .p-mypage .c-width-400 {
    width: 100%;
    min-width: auto;
  }
}
@media screen and (max-width: 1024px) {
  .p-mypage .c-table__pc {
    display: none;
  }
}
.p-mypage .c-table__sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-mypage .c-table__sp {
    display: block;
    border: none;
  }
}
.p-mypage .c-section {
  padding: 0;
}
.p-mypage .c-section:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .p-mypage .c-mypage-nav {
    width: 100%;
  }
}
.p-mypage .mypage-point-info {
  display: block;
}
.p-mypage .mypage-point-info__box {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-top: 10px;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .p-mypage .mypage-point-info__box {
    gap: 20px;
  }
}
.p-mypage .mypage-point-info__box .re_point {
  padding: 5px 10px;
  background: #968b42;
  color: #fff;
  font-weight: normal;
}
.p-mypage .mypage-point-info__user {
  font-weight: normal;
}
.p-mypage .mypage-point-info__point {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-left: 0;
  font-weight: normal;
}
.p-mypage .mypage-point-info__point span {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-mypage .mypage-point-info__point span {
    font-size: 12px;
  }
}
.p-mypage .mypage-point-info__rank-banner-box {
  width: 100%;
  max-width: 900px;
  margin: 20px auto 0;
}
@media screen and (max-width: 1024px) {
  .p-mypage .mypage-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.p-mypage .mypage-contents .c-contents-header {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-bottom: 30px;
}
.p-mypage .mypage-contents .c-paragraph {
  margin-bottom: 30px;
}
.p-mypage .mypage-contents__header {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .p-mypage .mypage-contents__aside {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .p-mypage .mypage-contents__main {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .p-mypage .mypage-nav {
    display: none;
    margin-bottom: 30px;
  }
  .p-mypage .mypage-nav:last-of-type {
    margin-bottom: 30px;
  }
}
.p-mypage .mypage-nav.is-active {
  display: block;
}
@media screen and (max-width: 1024px) {
  .p-mypage .mypage-nav__title {
    display: none;
  }
}
.p-mypage .mypage-nav__link {
  color: #333;
}
.p-mypage .mypage-nav__sp-list {
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-mypage .mypage-nav__sp-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-mypage .mypage-nav__sp-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
  background: #777;
  color: #fff;
  text-align: center;
  cursor: pointer;
}
.p-mypage .mypage-nav__sp-item.is-active {
  background: #333;
}
@media screen and (max-width: 768px) {
  .p-mypage .mypage-nav__sub-title {
    font-size: 11px;
  }
}

.p-mypage-point-history .grid-2 {
  -ms-grid-columns: (1fr)[2];
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.p-mypage-point-history .grid-3 {
  -ms-grid-columns: (1fr)[3];
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.p-mypage-point-history .grid-4 {
  -ms-grid-columns: (2fr)[2] (1fr)[2];
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(2, 2fr) repeat(2, 1fr);
}
.p-mypage-point-history .point-list table td:nth-child(1),
.p-mypage-point-history .point-list table td:nth-child(2),
.p-mypage-point-history .point-list table td:nth-child(3),
.p-mypage-point-history .point-list table td:nth-child(4) {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  padding: 5px 10px;
  gap: 15px;
  font-size: 12px;
  text-align: left;
}
.p-mypage-point-history .c-button--link {
  padding: 0;
  border: none;
  font-size: 12px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.p-mypage-regular .appli_dt {
  padding: 3%;
}
.p-mypage-regular .is-pc {
  display: table-row-group;
}
@media screen and (max-width: 1024px) {
  .p-mypage-regular .is-pc {
    display: none;
  }
}
.p-mypage-regular .is-tp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-mypage-regular .is-tp {
    display: block;
  }
}
.p-mypage-regular .c-section {
  overflow: scroll;
}
@media screen and (max-width: 1024px) {
  .p-mypage-regular .sp-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.p-mypage-regular .sp-row th {
  width: 100px;
}
.p-mypage-regular .sp-row td {
  width: calc(100% - 100px);
  padding: 11px 20px;
}
@media screen and (max-width: 1024px) {
  .p-mypage-regular .sp-grid-2 {
    -ms-grid-columns: 2fr 1fr;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .p-mypage-regular .sp-grid-2-rev {
    -ms-grid-columns: 1fr 2fr;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 2fr;
  }
}
@media screen and (max-width: 1024px) {
  .p-mypage-regular .sp-grid-5 {
    -ms-grid-columns: (1fr)[5];
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }
}
.p-mypage-regular .mypage-regular__ttl-lists {
  -ms-grid-columns: (1fr)[5];
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .p-mypage-regular .mypage-regular__ttl-lists {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
}
.p-mypage-regular .mypage-regular__ttl-item {
  padding: 10px;
  background: #efefef;
  color: #fff;
  color: #333;
  font-size: 11px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .p-mypage-regular .mypage-regular__ttl-item.is-pc {
    display: none;
  }
}
.p-mypage-regular .mypage-regular__ttl-item.is-tab {
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-mypage-regular .mypage-regular__ttl-item.is-tab {
    display: block;
  }
}
.p-mypage-regular .regular-list {
  width: 100%;
}
.p-mypage-regular .regular-list__item {
  padding-top: 0;
}
.p-mypage-regular .regular-list__item.status-stop {
  background: #dbdbdb;
}
.p-mypage-regular .regular-list__summary {
  -ms-grid-columns: (1fr)[5];
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .p-mypage-regular .regular-list__summary {
    -ms-grid-columns: (1fr)[5];
    grid-template-columns: repeat(5, 1fr);
  }
}
.p-mypage-regular .regular-list__summary-item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 2px;
}
@media screen and (max-width: 1024px) {
  .p-mypage-regular .regular-list__summary-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 1024px) {
  .p-mypage-regular .regular-list__summary-item.is-pc {
    display: none;
  }
}
.p-mypage-regular .regular-list__summary-item.is-tab {
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-mypage-regular .regular-list__summary-item.is-tab {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.p-mypage-regular .regular-list__summary-button {
  -ms-flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .p-mypage-regular .regular-list__summary-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: auto;
  }
}
.p-mypage-regular .regular-list__summary-button .c-button {
  min-width: auto;
  font-size: 12px;
}
.p-mypage-regular .regular-list__detail {
  padding: 15px;
  background: #efefef;
}
.p-mypage-regular .regular-list__detail .detail-header {
  margin: 20px 0;
}
@media screen and (max-width: 1024px) {
  .p-mypage-regular .delivery-info-section .detail-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 1024px) {
  .p-mypage-change-regular-payment .sp-grid-2 {
    -ms-grid-columns: 1fr 4fr;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 4fr;
  }
}
.p-mypage-change-regular-payment .c-radio label:empty::before {
  top: calc(50% - 19px);
}
.p-mypage-change-regular-payment .c-radio label:empty::after {
  top: calc(50% - 16px);
}
.p-mypage-change-regular-payment .c-table__overflow {
  overflow-x: scroll;
}
.p-mypage-change-regular-payment .c-table__overflow tbody {
  min-width: 600px;
}
@media screen and (max-width: 768px) {
  .p-mypage-change-regular-payment .c-table__overflow tr {
    -ms-grid-columns: 1fr 2.5fr 2.5fr 2fr 1.5fr;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 1fr 2.5fr 2.5fr 2fr 1.5fr;
  }
}

@media screen and (max-width: 768px) {
  .p-mypage-login .flex-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-mypage-login .flex-contents .login-content__main {
    padding: 15px 0;
  }
}
@media screen and (max-width: 1024px) {
  .p-mypage-login .flex-contents .login-content__main .input-area__input .form-group {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-mypage-login .flex-contents .login-content__main .button-area {
  margin-bottom: 20px;
}
.p-mypage-login .flex-contents .login-content__main .button-area .c-button-order-page {
  border-color: #818181;
  background: #818181;
}
@media screen and (max-width: 768px) {
  .p-mypage-login .amazon-pay {
    margin-top: 0;
    padding: 15px;
  }
}
@media screen and (max-width: 768px) {
  .p-mypage-login .amazon-pay .amazon-pay-main {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-mypage-login #amazon_pay_button_v2 {
    margin: 20px auto 0;
  }
}

@media screen and (max-width: 768px) {
  .p-mypage-refer-a-friend .c-paragraph {
    margin-bottom: 20px;
  }
}
.p-mypage-refer-a-friend * + .c-section {
  margin-top: 20px;
}

@media screen and (max-width: 1024px) {
  .p-mypage-address-list .c-button-group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.p-mypage-address-edit .c-table {
  margin-top: 0;
  padding: 0;
}
.p-mypage-address-edit .c-table table,
.p-mypage-address-edit .c-table tbody {
  display: block;
  border: none;
}
.p-mypage-address-edit .c-table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-mypage-address-edit .c-table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.p-mypage-address-edit .c-table th {
  width: 100%;
  max-width: 210px;
}
@media screen and (max-width: 768px) {
  .p-mypage-address-edit .c-table th {
    max-width: none;
  }
}
.p-mypage-address-edit .c-table td {
  width: calc(100% - 210px);
}
@media screen and (max-width: 768px) {
  .p-mypage-address-edit .c-table td {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-mypage-address-edit .c-table td .c-form-groups--row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .p-mypage-paygent tr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}

.p-mypage-history-list .summary__buttons-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 10px;
}

@media screen and (max-width: 1024px) {
  .p-mypage-order-history-detail .sp-grid-2 {
    -ms-grid-columns: 2fr 1fr;
    display: -ms-grid;
    display: grid;
    grid-template-columns: 2fr 1fr;
  }
}
@media screen and (max-width: 1024px) {
  .p-mypage-order-history-detail .sp-grid-4 {
    -ms-grid-columns: (2fr)[2] (1fr)[2];
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(2, 2fr) repeat(2, 1fr);
  }
  .p-mypage-order-history-detail .sp-grid-4 th {
    padding: 10px;
  }
  .p-mypage-order-history-detail .sp-grid-4 td {
    padding: 10px 5px;
    font-size: 12px;
  }
}

.p-mypage-address-list tr:nth-of-type(n+3) {
  margin-top: 20px;
}

.p-mypage-coupon .used-coupon-section {
  display: none;
}

.c-product-list .c-product-panel__price-value {
  color: #968b42;
}

.c-breadcrumb a {
  color: #968b42;
}

.p-error {
  margin: 60px 0;
}
.p-error .c-paragraph {
  text-align: center;
}

.p-product-list {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .p-product-list .product-list-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 768px) {
  .p-product-list .product-list-header .c-select {
    margin: 40px auto 0;
  }
}
.p-product-list .c-product-list .c-product-panel__restock-notification-link {
  color: #333;
}
.p-product-list .c-select--white select {
  color: #333;
}

.product-detail .c-bold {
  font-weight: 500;
}
.product-detail .c-button {
  border-radius: 0;
}
.product-detail .c-button--link {
  border: none;
  background: #6d6d6d;
  color: #fff;
}
.product-detail .product__image {
  width: 100%;
  max-width: 490px;
}
@media screen and (max-width: 768px) {
  .product-detail .product__image {
    max-width: none;
  }
}
.product-detail .product__main {
  width: calc(100% - 490px);
}
@media screen and (max-width: 768px) {
  .product-detail .product__main {
    width: 100%;
  }
}
.product-detail .product__name {
  font-weight: 400;
  font-size: 20px;
}
.product-detail .product__point-value {
  color: #333;
  font-weight: 400;
}
.product-detail .product__quantity {
  width: 100px;
}
.product-detail .product__quantity-label {
  font-weight: 400;
}
.product-detail .product__quantity-value {
  width: 50px;
}
.product-detail .product__quantity-value input {
  text-align: center;
}
.product-detail .c-button--add-to-cart {
  border-color: #000;
  background: #000;
}
.product-detail .c-button--add-to-cart-regular {
  border-color: #968b42;
  background: #968b42;
}
.product-detail .product__sale-price-value {
  color: #333;
  font-weight: 400;
  font-size: 20px;
}
.product-detail .detail-ntc {
  margin: 60px 15px 0;
  padding: 30px;
  background-color: #f2f2f2;
  color: #585858;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: 1.4285714286;
  letter-spacing: 0.1em;
}
.product-detail .detail-ntc__ttl {
  margin-bottom: 10px;
  font-weight: 300;
  line-height: 1;
}
.product-detail .detail-ntc__list li {
  padding-left: 1.3em;
  text-indent: -1.3em;
}
.product-detail .detail-ntc__list li::before {
  margin-right: 5px;
  content: "●";
}
.product-detail .detail-ntc__txt {
  margin-top: 15px;
}
.product-detail .detail-ntc__txt > a {
  text-decoration: underline !important;
}
@media print, screen and (max-width: 375px) {
  .product-detail .detail-ntc {
    padding: 20px;
    font-size: 1.2rem;
  }
  .product-detail .detail-ntc__txt {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {
  .p-restock-notification tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
  }
}
.p-restock-notification th {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .p-restock-notification th {
    width: 100%;
  }
}
.p-restock-notification .c-paragraph {
  margin-bottom: 30px;
}
.p-restock-notification .c-form-groups--column {
  -ms-flex-wrap: wrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.p-restock-notification .c-form-groups--column .c-form-group + .c-form-group {
  margin-top: 0;
}

.p-privacy-policy .c-contents-body,
.p-specified-commercial-transactions-act .c-contents-body,
.p-about-us .c-contents-body,
.p-return-policy .c-contents-body,
.p-entry .c-contents-body,
.p-contact .c-contents-body,
.p-contact-confirmation .c-contents-body,
.p-cart .c-contents-body {
  width: 100%;
  max-width: 1000px;
  margin: 60px auto;
}
@media screen and (max-width: 768px) {
  .p-privacy-policy .c-contents-body,
  .p-specified-commercial-transactions-act .c-contents-body,
  .p-about-us .c-contents-body,
  .p-return-policy .c-contents-body,
  .p-entry .c-contents-body,
  .p-contact .c-contents-body,
  .p-contact-confirmation .c-contents-body,
  .p-cart .c-contents-body {
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .p-privacy-policy .c-paragraph,
  .p-specified-commercial-transactions-act .c-paragraph,
  .p-about-us .c-paragraph,
  .p-return-policy .c-paragraph,
  .p-entry .c-paragraph,
  .p-contact .c-paragraph,
  .p-contact-confirmation .c-paragraph,
  .p-cart .c-paragraph {
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .p-entry table,
  .p-entry tbody,
  .p-entry-confirm table,
  .p-entry-confirm tbody {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .p-entry tr,
  .p-entry-confirm tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
  }
}
.p-entry .c-date-form,
.p-entry-confirm .c-date-form {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-entry .c-form-groups--row,
  .p-entry-confirm .c-form-groups--row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.p-entry-confirm .c-section {
  margin-top: 60px;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .p-entry-confirm .c-section {
    margin-top: 30px;
  }
}
.p-entry-confirm .c-button-group {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-contact .c-paragraph,
.p-contact-confirmation .c-paragraph {
  margin-bottom: 30px;
  /* スマ－トフォン縦用 */
}
.p-contact .c-paragraph h4,
.p-contact .c-paragraph a,
.p-contact-confirmation .c-paragraph h4,
.p-contact-confirmation .c-paragraph a {
  font-family: "Noto Serif JP", serif;
}
.p-contact .c-paragraph .add_line_wrap > div,
.p-contact-confirmation .c-paragraph .add_line_wrap > div {
  padding: 40px;
  border: 1px solid #938a8b;
  border-radius: 10px;
}
.p-contact .c-paragraph .add_line_wrap > div:nth-child(1),
.p-contact-confirmation .c-paragraph .add_line_wrap > div:nth-child(1) {
  margin: 30px auto;
}
.p-contact .c-paragraph .add_line_wrap__ttl,
.p-contact-confirmation .c-paragraph .add_line_wrap__ttl {
  width: 100%;
  margin-bottom: 30px;
}
.p-contact .c-paragraph .add_line_wrap__ttl strong,
.p-contact .c-paragraph .add_line_wrap__ttl span,
.p-contact-confirmation .c-paragraph .add_line_wrap__ttl strong,
.p-contact-confirmation .c-paragraph .add_line_wrap__ttl span {
  display: block;
  font-family: "Noto Serif JP", serif;
}
.p-contact .c-paragraph .add_line_wrap__ttl strong,
.p-contact-confirmation .c-paragraph .add_line_wrap__ttl strong {
  margin-bottom: 15px;
}
.p-contact .c-paragraph .add_line_wrap dl,
.p-contact-confirmation .c-paragraph .add_line_wrap dl {
  -webkit-box-pack: flex-start¥;
  -ms-flex-pack: flex-start¥;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start¥;
}
.p-contact .c-paragraph .add_line_wrap dl dt,
.p-contact-confirmation .c-paragraph .add_line_wrap dl dt {
  position: relative;
  margin-right: 40px;
  line-height: 1 !important;
  text-align: left;
}
.p-contact .c-paragraph .add_line_wrap dl dt span,
.p-contact-confirmation .c-paragraph .add_line_wrap dl dt span {
  margin-bottom: 10px;
}
.p-contact .c-paragraph .add_line_wrap dl dt span,
.p-contact .c-paragraph .add_line_wrap dl dt strong,
.p-contact-confirmation .c-paragraph .add_line_wrap dl dt span,
.p-contact-confirmation .c-paragraph .add_line_wrap dl dt strong {
  display: block;
}
.p-contact .c-paragraph .add_line_wrap dl dt span img,
.p-contact-confirmation .c-paragraph .add_line_wrap dl dt span img {
  width: 200px;
  height: auto;
}
.p-contact .c-paragraph .add_line_wrap dl dt strong,
.p-contact-confirmation .c-paragraph .add_line_wrap dl dt strong {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-radius: 10px;
  background: #06c655;
  text-align: center;
}
.p-contact .c-paragraph .add_line_wrap dl dt strong img,
.p-contact-confirmation .c-paragraph .add_line_wrap dl dt strong img {
  width: 100%;
}
@media only screen and (min-width: 0) and (max-width: 479px) {
  .p-contact .c-paragraph .add_line_wrap__ttl,
  .p-contact-confirmation .c-paragraph .add_line_wrap__ttl {
    text-align: center;
  }
  .p-contact .c-paragraph .add_line_wrap > div,
  .p-contact-confirmation .c-paragraph .add_line_wrap > div {
    padding: 40px 15px;
  }
  .p-contact .c-paragraph .add_line_wrap dl,
  .p-contact-confirmation .c-paragraph .add_line_wrap dl {
    -ms-flex-direction: column;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-align: center;
    -webkit-box-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .p-contact .c-paragraph .add_line_wrap dl dt,
  .p-contact-confirmation .c-paragraph .add_line_wrap dl dt {
    margin-right: 0;
    margin-bottom: 30px;
    text-align: center;
  }
  .p-contact .c-paragraph .add_line_wrap dl dt,
  .p-contact .c-paragraph .add_line_wrap dl dd,
  .p-contact-confirmation .c-paragraph .add_line_wrap dl dt,
  .p-contact-confirmation .c-paragraph .add_line_wrap dl dd {
    width: 100%;
  }
  .p-contact .c-paragraph .add_line_wrap dl dt span img,
  .p-contact-confirmation .c-paragraph .add_line_wrap dl dt span img {
    margin: auto;
  }
  .p-contact .c-paragraph .add_line_wrap dl dt strong,
  .p-contact-confirmation .c-paragraph .add_line_wrap dl dt strong {
    position: relative;
    width: 200px;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 768px) {
  .p-contact table,
  .p-contact tbody,
  .p-contact-confirmation table,
  .p-contact-confirmation tbody {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .p-contact tr,
  .p-contact-confirmation tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
  }
}
.p-contact .c-date-form,
.p-contact-confirmation .c-date-form {
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .p-contact .c-form-groups--row,
  .p-contact-confirmation .c-form-groups--row {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .p-cart .c-contents-header + .cart-content {
    margin-top: 30px;
  }
}
.p-cart .c-contents-header__point-info span {
  position: relative;
  top: 2px;
  right: 2px;
  color: #333;
}
.p-cart .error-msg {
  margin-top: 20px;
  padding: 15px 20px;
}
@media screen and (max-width: 768px) {
  .p-cart .about-point {
    text-align: left;
  }
}
.p-cart .cart-content__flex-content {
  display: block;
}
.p-cart .cart-content__flex-content .cart-main__list {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  .p-cart .cart-content__flex-content .cart-main__list {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-cart .cart-content__flex-content .cart-main__list .cart-list .list-item__main {
    -ms-flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-cart .cart-content__flex-content .cart-main__list .cart-list .list-item__main > a {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .p-cart .cart-content__flex-content .cart-main__list .cart-list .list-item__main > .list-item__column:first-of-type {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .p-cart .cart-content__flex-content .cart-main__list .cart-list .list-item__main > .list-item__column:last-of-type {
    width: 100%;
    padding-left: 0;
  }
}
.p-cart .cart-content__flex-content .cart-side {
  width: 100%;
  min-width: auto;
  max-width: none;
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .p-cart .cart-content__flex-content .cart-side__main {
    padding: 30px 0;
  }
}
.p-cart .cart-content__flex-content .cart-side__main .button-wrapper {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  flex-direction: row;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .p-cart .cart-content__flex-content .cart-side__main .button-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    flex-direction: column;
    align-items: center;
  }
}
.p-cart .cart-content__flex-content .cart-side__main .button-wrapper > .c-button {
  width: 100%;
  max-width: 300px;
}
@media screen and (max-width: 768px) {
  .p-cart .cart-content__flex-content .cart-side__main .button-wrapper > .c-button {
    max-width: 400px;
    margin-bottom: 0;
  }
}
.p-cart .cart-content__flex-content .cart-side__main .button-wrapper > button.c-button {
  border-color: #333;
  background: #333;
}
.p-cart .cart-content__flex-content .cart-side__main .amazon-pay {
  padding: 20px;
  border: 1px solid #666;
  text-align: center;
}
.p-cart .cart-content__flex-content .cart-side__main .amazon-pay .c-checkbox label {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.p-cart .cart-content__flex-content .cart-side__main .amazon-pay .amazon-pay__button-area #AmazonPayButtonV2 {
  margin: 0 auto;
}
.p-cart .cart-content__flex-content .cart-side__main .subtotal-table,
.p-cart .cart-content__flex-content .cart-side__main .confirm-table {
  width: 33%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-cart .cart-content__flex-content .cart-side__main .subtotal-table,
  .p-cart .cart-content__flex-content .cart-side__main .confirm-table {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .p-order-input .c-order-step,
  .p-order-confirm .c-order-step,
  .p-order-complete .c-order-step,
  .p-order-payment-module .c-order-step,
  .p-order-non-member-account-info .c-order-step {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.p-order-input .c-order-step__item:not(.c-order-step__item--current),
.p-order-confirm .c-order-step__item:not(.c-order-step__item--current),
.p-order-complete .c-order-step__item:not(.c-order-step__item--current),
.p-order-payment-module .c-order-step__item:not(.c-order-step__item--current),
.p-order-non-member-account-info .c-order-step__item:not(.c-order-step__item--current) {
  border: 1px solid #333;
}
@media screen and (max-width: 768px) {
  .p-order-input .c-order-step__item,
  .p-order-confirm .c-order-step__item,
  .p-order-complete .c-order-step__item,
  .p-order-payment-module .c-order-step__item,
  .p-order-non-member-account-info .c-order-step__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-order-input .c-contents-header,
  .p-order-confirm .c-contents-header,
  .p-order-complete .c-contents-header,
  .p-order-payment-module .c-contents-header,
  .p-order-non-member-account-info .c-contents-header {
    margin-bottom: 30px;
  }
}
.p-order-input .c-button-next,
.p-order-confirm .c-button-next,
.p-order-complete .c-button-next,
.p-order-payment-module .c-button-next,
.p-order-non-member-account-info .c-button-next {
  border-color: #333;
  background: #333;
}
.p-order-input .c-order-section,
.p-order-confirm .c-order-section,
.p-order-complete .c-order-section,
.p-order-payment-module .c-order-section,
.p-order-non-member-account-info .c-order-section {
  margin-top: 0;
  padding: 20px 0;
}

.p-order-input {
  margin-top: -80px;
}
.p-order-input .order-input-form__content {
  padding-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-order-input .order-input-form__content .shipping-address-list .c-table .address-detail {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-order-input .order-input-form__content .contact-message__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-order-input .order-input-form__content .regular-delivery-calendar__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-order-input .order-input-form__content .regular-delivery-calendar__item {
    width: 100%;
  }
}
.p-order-input .c-radio label:empty::before {
  top: calc(50% - 19px);
}
.p-order-input .c-radio label:empty::after {
  top: calc(50% - 16px);
}
@media screen and (max-width: 768px) {
  .p-order-input .c-button-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.p-order-confirm {
  margin-top: -80px;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-total__value {
  color: #333;
}
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-summary,
.p-order-confirm .order-confirm-form__content-wrap .sidebar .order-total {
  width: 40%;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .p-order-confirm .order-confirm-form__content-wrap .sidebar .order-summary,
  .p-order-confirm .order-confirm-form__content-wrap .sidebar .order-total {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-order-confirm .order-confirm-form__content-wrap .sidebar .order-summary {
    font-size: 14px;
  }
}
.p-order-confirm .order-confirm-form__content-wrap .product-list {
  background: none;
}
.p-order-confirm .order-confirm-form__content-wrap .product-list img {
  margin: 0 auto;
}
.p-order-confirm .c-order-section__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
  padding-bottom: 40px;
  gap: 60px;
  border-bottom: 1px solid #d8d8d8;
}
@media screen and (max-width: 768px) {
  .p-order-confirm .c-order-section__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 30px;
    padding: 0;
    gap: 30px;
    border: none;
  }
}
.p-order-confirm .c-order-section__box {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
}
.p-order-confirm .c-order-section__title {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-order-confirm .c-order-section__title {
    padding: 10px 15px;
    background: #d8d8d8;
  }
}
.p-order-confirm .c-order-section__content {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-order-confirm .c-order-section__content {
    margin-top: 0;
    padding: 10px 15px;
    font-size: 14px;
  }
}
.p-order-confirm .product-list__ttl-wrapper {
  -ms-grid-columns: 1fr 4fr (1fr)[3];
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 4fr repeat(3, 1fr);
  border-top: 1px solid #938a8b;
  border-bottom: 1px solid #938a8b;
  background: #d8d8d8;
}
@media screen and (max-width: 768px) {
  .p-order-confirm .product-list__ttl-wrapper {
    display: none;
  }
}
.p-order-confirm .product-list__ttl-wrapper span {
  display: block;
  padding: 8px 10px;
  font-size: 14px;
  text-align: center;
}
.p-order-confirm .product-list__lists {
  margin-bottom: 10px;
}
.p-order-confirm .lists__item {
  -ms-grid-columns: 1fr 4fr (1fr)[3];
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 4fr repeat(3, 1fr);
  border-bottom: 1px solid #d8d8d8;
}
@media screen and (max-width: 768px) {
  .p-order-confirm .lists__item {
    -ms-grid-columns: 1fr 10px 2fr;
    grid-template-columns: 1fr 2fr;
    padding: 10px 0;
    gap: 10px;
  }
}
.p-order-confirm .lists__item > .item__box {
  padding: 15px;
}
@media screen and (max-width: 768px) {
  .p-order-confirm .lists__item > .item__box {
    padding: 0;
    font-size: 14px;
  }
}
.p-order-confirm .lists__item > .item__box .is-tab {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-order-confirm .lists__item > .item__box .is-tab {
    display: inline-block;
  }
}
.p-order-confirm .item__count, .p-order-confirm .item__sub-total {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-order-confirm .item__count {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .p-order-confirm .item__sub-total {
    text-align: right;
  }
}
@media screen and (max-width: 768px) {
  .p-order-confirm .c-button-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.p-order-payment-module {
  margin-top: -80px;
}
@media screen and (max-width: 768px) {
  .p-order-payment-module .c-radio-list-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-order-payment-module .c-radio-list-group__item {
    width: 100%;
  }
}
.p-order-payment-module .c-payment-module__card-form {
  margin: 20px 0 0;
  background: transparent;
}
.p-order-payment-module .c-payment-module__card-form .c-table {
  margin-top: 0;
  padding: 0;
}
.p-order-payment-module .c-payment-module__card-form .c-table table,
.p-order-payment-module .c-payment-module__card-form .c-table tbody {
  display: block;
  border: none;
}
.p-order-payment-module .c-payment-module__card-form .c-table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-order-payment-module .c-payment-module__card-form .c-table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.p-order-payment-module .c-payment-module__card-form .c-table th {
  width: 100%;
  max-width: 210px;
}
@media screen and (max-width: 768px) {
  .p-order-payment-module .c-payment-module__card-form .c-table th {
    max-width: none;
  }
}
.p-order-payment-module .c-payment-module__card-form .c-table td {
  width: calc(100% - 210px);
}
@media screen and (max-width: 768px) {
  .p-order-payment-module .c-payment-module__card-form .c-table td {
    width: 100%;
  }
}
.p-order-payment-module .c-payment-module__card-form * + .c-table {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .p-order-payment-module .confirm-message {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .p-order-payment-module .c-button-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
}

.p-order-non-member-account-info .c-table {
  margin-top: 0;
  padding: 0;
}
.p-order-non-member-account-info .c-table table,
.p-order-non-member-account-info .c-table tbody {
  display: block;
  border: none;
}
.p-order-non-member-account-info .c-table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-order-non-member-account-info .c-table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.p-order-non-member-account-info .c-table th {
  width: 100%;
  min-width: 210px;
  max-width: 210px;
}
@media screen and (max-width: 768px) {
  .p-order-non-member-account-info .c-table th {
    min-width: auto;
    max-width: none;
  }
}
.p-order-non-member-account-info .c-table td {
  width: calc(100% - 210px);
}
@media screen and (max-width: 768px) {
  .p-order-non-member-account-info .c-table td {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .p-order-non-member-account-info .c-table td .c-form-groups {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 768px) {
  .p-order-complete tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .p-order-complete .order-complete-form__content .c-table th {
    width: 100%;
  }
}

/*　アンバサダー　バナー追加用 230703 */
.ambassadar_bnr .ambassadar__content {
  width: 100%;
  margin: 0 auto;
  padding-top: 80px;
}

/*　フリー13追加用 230713 */
.uv-care-campaign .contents .lists__item p.restock_2307 {
  margin-bottom: 20px;
  border: 1px solid #c1757a;
  background-color: #f0d7da;
  color: #c1757a;
  letter-spacing: 0.1em;
  text-align: center;
}

/* リピストクロス　アップデート対応 20231210 */
.regular-price-list tbody > tr > td,
.order-regular__fee tbody > tr > td {
  text-align: center;
}

.p-information {
  /**
  * @file _m-media.scss
  **/
  /**
  * @file _config.scss
  **/
  /* ===============================================
  # infomation

  =============================================== */
  /* ===============================================
  # shopinfo
  =============================================== */
  /* ===============================================
  # store
  =============================================== */
  /* ===============================================
  # address
  =============================================== */
  /* ===============================================
  # section title
  =============================================== */
}
.p-information .infomation {
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .p-information .infomation {
    padding: 0 0 50px;
  }
}
.p-information .infomation__lists {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  padding-top: 70px;
  font-size: 1.4rem;
  line-height: 2.7857142857;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-information .infomation__lists {
    padding-top: 40px;
  }
}
.p-information .infomation__lists .lists__item {
  width: 30%;
  max-width: 342px;
}
.p-information .infomation__lists .item__link {
  display: block;
  position: relative;
  width: 100%;
  padding: 15px 28px;
  border: solid 1px;
}
.p-information .infomation__lists .item__img {
  -webkit-transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: 24px;
  width: 18px;
  overflow: hidden;
  transform: translateY(-50%);
}
.p-information .shopinfo__container {
  padding-top: 100px;
}
@media screen and (max-width: 768px) {
  .p-information .shopinfo__container {
    padding-top: 50px;
  }
}
.p-information .shopinfo__lists {
  padding-top: 43px;
}
.p-information .shopinfo__lists .lists__item:nth-child(2) {
  padding-top: 60px;
}
.p-information .shopinfo__lists .item__title {
  padding: 0 0 10px 30px;
  border-bottom: #f0f0f0 solid 1px;
}
@media screen and (max-width: 768px) {
  .p-information .shopinfo__lists .item__title {
    padding-left: 0;
  }
}
.p-information .shopinfo__lists .item__title-sp {
  display: none;
}
.p-information .shopinfo__lists .item__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 40px;
  gap: 31px;
}
@media screen and (max-width: 768px) {
  .p-information .shopinfo__lists .item__wrapper {
    padding-top: 20px;
  }
}
.p-information .shopinfo__lists .item__img {
  aspect-ratio: 380/230;
  width: 100%;
  max-width: 380px;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .p-information .shopinfo__lists .item__img {
    aspect-ratio: 570/360;
    margin-left: 0;
  }
}
.p-information .shopinfo__lists .item__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-information .shopinfo__lists .item__container {
  width: 60%;
  max-width: 630px;
}
.p-information .shopinfo__lists .item__text {
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-information .shopinfo__lists .item__text {
    font-size: 1.4rem;
  }
}
.p-information .shopinfo__lists .item__sales-period {
  display: block;
  padding-top: 30px;
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
.p-information .store {
  padding: 80px 0;
  background: #f0f0f0;
}
@media screen and (max-width: 768px) {
  .p-information .store {
    padding: 40px 0;
  }
}
.p-information .store__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 33px;
  gap: 50px;
}
.p-information .store__lists .lists__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 510px;
}
.p-information .store__lists .item__img {
  aspect-ratio: 510/320;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-information .store__lists .item__img {
    aspect-ratio: 570/360;
  }
}
.p-information .store__lists .item__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-information .store__lists .item__container {
  padding-top: 32px;
}
@media screen and (max-width: 768px) {
  .p-information .store__lists .item__container {
    padding-top: 15px;
  }
}
.p-information .store__lists .item__title {
  border-bottom: solid 1px;
  font-size: 1.6rem;
  line-height: 2.75;
  letter-spacing: 0.1em;
}
.p-information .store__lists .item__text {
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: justify;
}
.p-information .store__description {
  padding-top: 24px;
  font-size: 1.2rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  text-align: justify;
}
.p-information .address__lists {
  position: relative;
  min-height: 115px;
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-information .address__lists {
    min-height: auto;
  }
}
.p-information .address__lists .a-lists__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}
.p-information .address__lists .item__text {
  font-size: 1.2rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
.p-information .a-lists__item .icon__img {
  -o-object-fit: contain;
  display: block;
  width: 15px;
  height: 15px;
  margin-top: 6px;
  object-fit: contain;
}
.p-information .map__box {
  position: absolute;
  right: 0;
  bottom: 0;
}
.p-information .map__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 10px;
}
.p-information .padding-btm {
  padding-bottom: 24px;
}
.p-information .section__title-box {
  width: 100%;
  height: auto;
  margin: auto;
}
.p-information .section__title {
  font-weight: 100;
  font-size: 4.2rem;
  line-height: 1.1097619048;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  text-align: center;
}
.p-information .section__btm-title {
  display: block;
  padding-top: 8px;
  font-size: 1.4rem;
  line-height: 1.875;
  letter-spacing: 0.1em;
  text-align: center;
}
.p-information .section__medium__title-box {
  text-align: center;
}
.p-information .section__medium__title {
  font-weight: 100;
  font-size: 2.6rem;
  line-height: 0.8076923077;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1em;
  letter-spacing: 0.15rem;
}
@media screen and (max-width: 895px) {
  .p-information .infomation__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .p-information .infomation__lists .lists__item {
    width: 100%;
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  .p-information .shopinfo__lists .item__title {
    font-size: 1.6rem;
  }
  .p-information .shopinfo__lists .item__wrapper {
    display: block;
  }
  .p-information .shopinfo__lists .item__container {
    width: 100%;
    max-width: none;
    padding-top: 20px;
  }
  .p-information .store__lists {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 70px;
  }
  .p-information .store__lists .lists__item {
    max-width: none;
  }
  .p-information .section__title {
    font-size: 3rem;
  }
  .p-information .section__btm-title {
    font-size: 1.2rem;
  }
  .p-information .section__medium__title {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 599px) {
  .p-information .shopinfo__lists .item__title-sp {
    display: block;
  }
}
.p-information .area {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .p-information .area {
    padding: 40px 0;
  }
}
@media screen and (max-width: 768px) {
  .p-information .area__title-box {
    border: 1px solid #000;
  }
}
.p-information .area__title-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-information .area__title-sp {
    display: block;
    position: relative;
    width: 100%;
    padding: 10px 15px;
    font-size: 1.2rem;
    line-height: calc(20 / (1.2 * 10));
    letter-spacing: 0.1em;
    text-align: center;
  }
  .p-information .area__title-sp::before {
    -webkit-transition: -webkit-transform 0.3s ease-in-out;
    -webkit-transform: translateY(-50%) rotate(45deg);
    position: absolute;
    top: 45%;
    right: 15px;
    width: 7px;
    height: 7px;
    transform: translateY(-50%) rotate(45deg);
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    content: "";
    transition: -webkit-transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out;
    transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  }
  .p-information .area__title-sp.is-active::before {
    -webkit-transform: translateY(-50%) rotate(-135deg);
    top: 50%;
    transform: translateY(-50%) rotate(-135deg);
  }
}
.p-information .area__title-lists {
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-information .area__title-lists {
    -webkit-transition: height 0.3s ease-in-out;
    display: block;
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease-in-out;
  }
  .p-information .area__title-lists.is-active {
    height: 205px;
  }
}
.p-information .area__title-lists .lists__item {
  padding-bottom: 10px;
  border-bottom: 1px solid #eceded;
  font-size: 1.6rem;
  line-height: calc(24 / (1.6 * 10));
  letter-spacing: 0.1em;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-information .area__title-lists .lists__item {
    padding: 10px 0;
    border-top: 1px solid #eceded;
    border-bottom: none;
    font-size: 1.2rem;
    line-height: calc(20 / (1.2 * 10));
    letter-spacing: 0.1em;
    text-align: center;
  }
  .p-information .area__title-lists .lists__item:hover {
    background: #eceded;
  }
}
.p-information .area__title-lists .lists__item.is-active {
  border-color: #000;
}
@media screen and (max-width: 768px) {
  .p-information .area__title-lists .lists__item.is-active {
    border-color: #eceded;
    background: #eceded;
  }
}
.p-information .area__content-lists {
  margin-top: 40px;
}
.p-information .area__content-lists .lists__item {
  display: none;
}
.p-information .area__content-lists .lists__item.is-active {
  display: block;
  border-top: 1px solid #eceded;
}
.p-information .area__detail-lists .d-lists__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 30px 0;
  gap: 10px;
  border-bottom: 1px solid #eceded;
}
.p-information .area__detail-lists .item__area {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.p-information .area__detail-lists .item__container {
  -webkit-box-flex: 5;
  -ms-flex: 5;
  flex: 5;
}
.p-information .area__detail-lists .item__box {
  -ms-grid-columns: 1fr 30px 2fr 30px 0.5fr;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 2fr 0.5fr;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .p-information .area__detail-lists .item__box {
    -ms-grid-columns: 4fr 10px 1fr;
    -webkit-box-align: end;
    -ms-flex-align: end;
    grid-template-columns: 4fr 1fr;
    align-items: flex-end;
    gap: 10px;
  }
}
.p-information .area__detail-lists .item__box:not(:first-child) {
  padding-top: 30px;
  border-top: 1px solid #eceded;
}
.p-information .area__detail-lists .item__box:not(:last-child) {
  padding-bottom: 30px;
}
.p-information .area__detail-lists .item__area {
  font-size: 1.2rem;
  line-height: calc(20 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.p-information .area__detail-lists .item__store-name {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: calc(20 / (1.2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-information .area__detail-lists .item__store-name {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .p-information .area__detail-lists .item__store-name.is-pc {
    display: none;
  }
}
.p-information .area__detail-lists .item__store-name.is-tab {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-information .area__detail-lists .item__store-name.is-tab {
    display: block;
  }
}
.p-information .area__detail-lists .item__address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  font-style: normal;
  font-size: 1.2rem;
  line-height: calc(20 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.p-information .area__detail-lists .item__address .icon {
  width: 12px;
  height: 12px;
  margin-top: 4px;
}
.p-information .area__detail-lists .item__tel {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  line-height: calc(20 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.p-information .area__detail-lists .item__tel .icon {
  width: 12px;
  height: 12px;
  margin-top: 2px;
}
.p-information .area__detail-lists .item__map {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  line-height: calc(20 / (1.2 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-information .area__detail-lists .item__map {
    font-size: 1rem;
    line-height: calc(18 / (1 * 10));
    letter-spacing: 0.1em;
  }
}
.p-information .area__detail-lists .item__map .icon {
  width: 12px;
  height: 12px;
}
.p-information .schedule__container {
  padding: 20px 30px;
  border: 10px solid #eceded;
}
@media screen and (max-width: 768px) {
  .p-information .schedule__container {
    padding: 15px 20px;
  }
}
.p-information .schedule__title {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: calc(35 / (1.6 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-information .schedule__title {
    font-size: 1.4rem;
    line-height: calc(20 / (1.4 * 10));
    letter-spacing: 0.1em;
  }
}
.p-information .schedule__lists {
  margin-top: 20px;
  border-top: 1px solid #eceded;
}
.p-information .schedule .lists__item {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  padding: 30px 0;
  gap: 10px;
  border-bottom: 1px solid #eceded;
}
@media screen and (max-width: 768px) {
  .p-information .schedule .lists__item {
    padding: 15px 0;
  }
}
.p-information .schedule .item__month {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.p-information .schedule .item__container {
  -webkit-box-flex: 6;
  -ms-flex: 6;
  flex: 6;
}
.p-information .schedule .item__box {
  -ms-grid-columns: 1fr 30px 3fr;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 30px;
}
.p-information .schedule .item__box:not(:first-child) {
  padding-top: 30px;
  border-top: 1px solid #eceded;
}
@media screen and (max-width: 768px) {
  .p-information .schedule .item__box:not(:first-child) {
    padding-top: 15px;
  }
}
.p-information .schedule .item__box:not(:last-child) {
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-information .schedule .item__box:not(:last-child) {
    padding-bottom: 15px;
  }
}
@media screen and (max-width: 768px) {
  .p-information .schedule .item__box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.p-information .schedule .item__month {
  font-size: 1.2rem;
  line-height: calc(20 / (1.2 * 10));
  letter-spacing: 0.1em;
}
.p-information .schedule .item__week {
  font-weight: 400;
  font-size: 1.2rem;
  line-height: calc(20 / (1.2 * 10));
  letter-spacing: 0.1em;
}


.direct-shop{
	width: 100%;
    margin-top: 5%;
}


.direct-matsuya{
	display: flex;
	padding-bottom: 5%;
	align-items: flex-start;
}

.direct-matsuya-close p{ 
	 text-align: center;
}
	
	.direct-matsuya-close p:last-of-type{
		margin-top: 3%;
	}
	
	.direct-matsuya-close  table{
		width: 70%;
		margin:0 auto 7%;
	}
	
.direct-matsuya-close  table tbody tr,.direct-matsuya-close  table tbody tr td{
		border: solid 1px rgba(67, 71, 72, 0.1);
	padding: 1%;
}

	.direct-matsuya-close  table tbody tr td:first-of-type{
		text-align: center;
	}


.direct-salon{
	display: flex;
	padding-top: 5%;
	align-items: flex-start;
}
.shop-img{
    width: 50%;
    margin-left: 10%;
}

.shop-text{
	margin-left: 4%;
	width:60%;
}

.shop-title{
    font-size: 1.2em;
}

.shop-border{
    display: block;
    width: 70%;
    border: 0.5px solid #ececec;
    margin: 0 auto;
}

.direct-item__address img,.direct-item__tel img{
    width: 15px;
    height: 19px;
    margin-top: 5px;
}

.direct-item__address{
    display: flex;
    gap: 10px;
    font-style: normal;
    font-size: 1.6rem;
    line-height: calc(20 /(1.2* 10));
    letter-spacing: 0.1em;
	margin-top: 6%;
}

.direct-item__tel{
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    line-height: calc(20 /(1.2* 10));
    letter-spacing: 0.1em;
}

.direct-map-icon{
    width: 15px;
    height: 15px;
    margin-top: 5px;
    margin-right: 3%;
}

.direct-item__text{
	letter-spacing: 0.1em;
}

.direct-item__map{
	display: flex;
	margin-top: 4%;
}

.shop-resarve a{
border: 0.5px #333 solid;
    text-align: center;
    margin-top: 7%;
    width: 70%;
    padding: 4% 0;
    font-size: 0.9em;
    display: block;
}

.direct-shop-text{
    text-align: center;
    margin-bottom: 5%;
    margin-top: 10%;
}

.shop-attention{
	margin-top: 2%
}

.shop-attention p{
	font-size: 0.7em;
}

@media screen and (max-width: 768px) {
.direct-shop{
	width: 100%;
    margin-top: 5%;
}


.direct-matsuya{
	display: flex;
	padding-bottom: 8%;
}
	
.direct-matsuya-close p{ 
	 text-align: center;
}
	
	.direct-matsuya-close p:last-of-type{
		margin-top: 5%;
	}
	
	.direct-matsuya-close  table{
		width: 100%;
		margin-bottom: 10%;
	}
	
.direct-matsuya-close  table tbody tr,.direct-matsuya-close  table tbody tr td{
		border: solid 1px rgba(67, 71, 72, 0.1);
		padding: 1%;
}

	.direct-matsuya-close  table tbody tr td{
		text-align: center;
	}
	
.direct-salon{
	display: flex;
	padding-top: 8%;
}
.shop-img{
    width: 46%;
    margin: 0;
}

.shop-text{
	margin-left: 4%;
	width:60%;
}

.shop-title{
    font-size: 1.1em;
}

.shop-border{
    display: block;
    width: 70%;
    border: 0.5px solid #ececec;
    margin: 0 auto;
}

.direct-item__address img,.direct-item__tel img{
        width: 12px;
        height: 12px;
        margin-top: 4px;
        margin-right: 5%;
}

.direct-item__address{
    display: flex;
    gap: 0px;
    font-style: normal;
    font-size: 1.2rem;
    line-height: calc(20 /(1.2* 10));
    letter-spacing: 0.1em;
	margin-top: 6%;
}

.direct-item__tel{
    display: flex;
    align-items: center;
    gap: 0px;
    font-size: 1.2rem;
    line-height: calc(20 /(1.2* 10));
    letter-spacing: 0.1em;
}

.direct-map-icon{
        width: 12px;
        height: 12px;
        margin-top: 4px;
        margin-right: 5%;
}

.direct-item__text{
	letter-spacing: 0.1em;
}

.direct-item__map{
	display: flex;
	margin-top: 4%;
}

.direct-item__map-salon{
	margin-top: 2%;
}	
.shop-resarve a{
        border: 0.5px #333 solid;
        text-align: center;
        margin-top: 7%;
        width: 90%;
        padding: 3% 0;
        font-size: 0.8em;
        display: block;
}
	
}

@charset "UTF-8";
/* CSS Document */
/* family-sale */
main.family-sale a.bnr__link {
 transition:1s all;
 opacity:1;
}

main.family-sale a.bnr__link:hover{
    opacity:0.5;
    transition:1s all;
}

section.family-sale-bnr {
  margin-bottom: 100px;
}

/*subscription freeid9*/
/*.subscription .product .i-item__box.product-07 {
  bottom: 40px;
}
.subscription .product .i-item__img.product-07 {
    width: 80%;
}
@media screen and (max-width: 1024px){
    
.subscription .product .i-item__img.product-07 {
    width: 60%;
   
}
}*/

/*--　　スペシャルホリデー　　--*/
.special-holiday {
  background-color: #740000;
}
.special-holiday article {
  background-image: url(../images/special-holiday/bg@2x.png);
  background-size: 80%;
}
.special-holiday .kv__container {
  max-width: 980px;
  margin: 0 auto;
}
.special-holiday .kv__img {
  height: 100%;
}
.special-holiday .kv__img picture img, .special-holiday .kv__img picture source {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.special-holiday .contents {
  padding-top: 50px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .special-holiday .contents {
    padding-top: 25px;
    padding-bottom: 50px;
  }
}
.special-holiday .contents__container {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .special-holiday .contents__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.special-holiday .contents__wrapper-head {
  position: sticky;
  top: 150px;
  width: 48%;
  max-width: 430px;
  height: 625px;
}
@media screen and (max-width: 768px) {
  .special-holiday .contents__wrapper-head {
    position: static;
    width: 100%;
    max-width: none;
    height: auto;
  }
}
.special-holiday .contents__wrapper {
  width: 48%;
  max-width: 430px;
}
@media screen and (max-width: 768px) {
  .special-holiday .contents__wrapper {
    width: 100%;
    max-width: none;
    margin-top: 30px;
  }
}
.special-holiday .contents__box {
  width: 100%;
  padding: 25px;
  background-color: #fff;
}
.special-holiday .contents__ttl {
  position: relative;
  font-weight: 200;
  font-size: 3.6rem;
  line-height: calc(46 /(3.6 * 10));
  letter-spacing: 0.05em;
  text-align: center;
}
.special-holiday .contents__ttl span.contents__ttl_b {
  font-weight: bold;
}
.special-holiday .contents__ttl::before {
  -webkit-transform: translateX(-50%);
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 40px;
  height: 1px;
  transform: translateX(-50%);
  background-color: #000;
  content: "";
}
@media screen and (max-width: 768px) {
  .special-holiday .contents__ttl {
    font-size: 2.5rem;
    line-height: calc(35 /(2.5 * 10));
    letter-spacing: 0.1em;
  }
}
.special-holiday .contents__img {
  width: 100%;
  margin-top: 40px;
}
.special-holiday .contents__img img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.special-holiday .contents__list-ttl {
  max-width: 380px;
  margin: 0 auto;
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
  font-size: 1.6rem;
  line-height: calc(24 /(1.6 * 10));
  letter-spacing: 0.1em;
}
.special-holiday .contents__list-ttl:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .special-holiday .contents__list-ttl {
    max-width: 250px;
    font-size: 1.4rem;
    line-height: calc(20 /(1.4 * 10));
    letter-spacing: 0.1em;
  }
}
.special-holiday .contents__txt {
  max-width: 380px;
  margin: 0 auto;
  margin-top: 10px;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: calc(24 /(1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .special-holiday .contents__txt {
    max-width: 250px;
    font-size: 1.2rem;
    line-height: calc(18 /(1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.special-holiday .contents__lists {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-top: 0px;
  gap: 10px;
}
.special-holiday .contents .lists__item {
  background-color: #fff;
}
.special-holiday .contents .item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: opacity 0.5s;
  align-items: center;
  transition: opacity 0.5s;
}
.special-holiday .contents .item__link:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.special-holiday .contents .item__img {
  /*  width: 150px;*/
}
.special-holiday .contents .item__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .special-holiday .contents .item__img {
    width: 100%;
    height: 100%;
  }
}
.special-holiday .contents .item__content {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .special-holiday .contents .item__content {
    width: calc(100% - 105px);
  }
}
.special-holiday .contents .item__ttl {
  font-size: 2rem;
  line-height: calc(21 /(1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .special-holiday .contents .item__ttl {
    font-size: 2rem;
    line-height: calc(18 /(1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.special-holiday .contents .double_price {
  font-size: 80%;
  position: relative;
}
.special-holiday .contents .double_price::before{
  content: "";
  position: absolute;
  border-top: 3px double #000;
  width: 100%;
  top: 50%;
}
@media screen and (max-width: 768px) {
  .special-holiday .contents .double_price {
    font-size: 90%;
  }
}
.special-holiday .contents .item__price {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .special-holiday .contents .item__price {
    font-size: 1.5rem;
    line-height: calc(16 /(1 * 10));
    letter-spacing: 0.1em;
  }
}
.special-holiday .sub_fv_wrapper {
  padding: 50px 10px;
  max-width: 980px;
  margin: 0px auto;
  background-color: #ae1d13;
}
.special-holiday .sub_fv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  /*    height: 420px;*/
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.special-holiday .sub_fv__content {
  width: 100%;
  max-width: 500px;
  padding: 0px;
}
.special-holiday .sub_fv__content p {
  text-align: center;
  color: #ffffff;
  font-family: serif;
  letter-spacing: 0.1em;
  font-size: 90%;
}
.special-holiday h2.sub_fv_ttl img {
  width: 50%;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  .special-holiday .sub_fv_wrapper {
    max-width: none;
    padding: 40px;
  }
  .special-holiday .sub_fv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    height: auto;
  }
.special-holiday h2.sub_fv_ttl img {
    width: 100%;
  }
.special-holiday .sub_fv__content p {
    font-size: 120%;
  }
}

.special-holiday .other_info {
  width: 80%;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 100px;
}
.special-holiday .other_info .ranking__product-list {
  height: 358px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin:80px auto;
  max-width: 960px;
}
@media screen and (max-width: 768px) {
.special-holiday .other_info .ranking__product-list {
    height: auto;
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
.special-holiday .other_info {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.special-holiday .other_info__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  overflow-x: scroll;
  gap: 20px;
}
.special-holiday .other_info .lists__item {
  width: 198px;
}
.special-holiday .other_info .item__img {
  width: 198px;
  height: 198px;
}
.special-holiday .other_info .item__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.special-holiday .other_info .item__content {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.special-holiday .other_info .item__number {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #000;
  color: #fff;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: calc(24 /(2.4 * 10));
  font-family: "Ubuntu", sans-serif;
  letter-spacing: 0.1em;
}
.special-holiday .other_info .item__ttl {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  width: calc(100% - 55px);
  -webkit-line-clamp: 2;
  margin-left: 15px;
  overflow: hidden;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: calc(24 /(1.4 * 10));
  letter-spacing: 0.1em;
  word-break: break-all;
}
.special-holiday .other_info__product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 420px;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
.special-holiday .other_info__product-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    height: auto;
    margin-top: 50px;
  }
}
.special-holiday .other_info .r-product-list__content {
  width: 100%;
  max-width: 400px;
  padding: 50px;
  background: #fff;
}
@media screen and (max-width: 768px) {
.special-holiday .other_info .r-product-list__content {
    max-width: none;
    padding: 40px;
  }
}
.special-holiday .other_info .r-product-list__ttl {
  width: 100%;
  max-width: 300px;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
.special-holiday .other_info .r-product-list__ttl {
    max-width: 220px;
    margin: 0 auto;
  }
}
.special-holiday .other_info .r-product-list__ttl img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}
.special-holiday .other_info .r-product-list__ttl span {
  font-weight: 200;
  font-size: 1.4rem;
  line-height: calc(26 /(1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
.special-holiday .other_info .r-product-list__ttl span {
    display: block;
    margin-top: 10px;
    text-align: center;
  }
}
.special-holiday .other_info .r-product-list__txt {
  margin-top: 40px;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: calc(26 /(1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
.special-holiday .other_info .r-product-list__txt {
    margin-top: 20px;
    font-size: 1rem;
    line-height: calc(26 /(1 * 10));
    letter-spacing: 0.1em;
    text-align: center;
  }
}
.special-holiday .other_info .r-product-list__link {
  -webkit-transition: opacity 0.5s;
  display: block;
  position: relative;
  width: 100%;
  max-width: 210px;
  margin: 50px auto;
  padding: 15px 20px;
  background-color: #000;
  color: #fff;
  font-size: 1.4rem;
  line-height: calc(14 /(1.4 * 10));
  letter-spacing: 0.1em;
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
.special-holiday .other_info .r-product-list__link {
    margin: 20px auto 0;
  }
}
.special-holiday .other_info .r-product-list__link:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.special-holiday .other_info .r-product-list__img-link {
  -webkit-transition: opacity 0.5s;
  display: block;
  width: calc(100% - 410px);
  height: 100%;
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
.special-holiday .other_info .r-product-list__img-link {
    width: 100%;
  }
}
.special-holiday .other_info .r-product-list__img-link:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.special-holiday .other_info .r-product-list__img-link img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit:contain;
  background-color:#ffffff;
}
/*--  商品　--*/
.special-holiday .one_set {
  background: #ffffff;
}
.special-holiday .disc {
  width: 100%;
  display: flex;
}
.special-holiday .disc p {
  font-size: 80%;
  color: #ffffff;
  padding: 5px 10px;
  background-color: darkred;
  align-items: center;
  justify-content: center;
  margin: 10px auto;
}
@media screen and (max-width: 768px) {
  .special-holiday .disc p {
    font-size: 120%;
  }
}
.special-holiday .detail_wrap {
  background-color: #f8eae1;
  padding: 30px 40px;
  margin: 30px;
  font-size: 90%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .special-holiday .detail_wrap {
    font-size: 120%;
  }
}
.special-holiday .detail_wrap p.tokuten_icon {
  position: absolute;
  top: -10px;
  left: 10px;
  background-color: #af963d;
  padding: 10px;
  border: 1px solid rgba(67, 71, 72, 0.1);
  font-size: 1.2rem;
  line-height: calc(12 /(1.2 * 10));
  letter-spacing: 0.1em;
  box-sizing: border-box;
  display: block;
  color: #ffffff;
}
.special-holiday .detail_wrap p.gentei_icon {
  position: absolute;
  top: 20px;
  right: 10px;
  background-color: #e78b98;
  padding: 10px;
  border: 1px solid rgba(67, 71, 72, 0.1);
  font-size: 1.2rem;
  line-height: calc(12 /(1.2 * 10));
  letter-spacing: 0.1em;
  box-sizing: border-box;
  display: block;
  color: #ffffff;
}
.special-holiday .detail_wrap li {
  margin-top: 20px;
  list-style-type: disc;
}
.special-holiday .detail_wrap li span.new_icon::after {
  content: url(https://lekarka.co.jp/user_data/packages/original_pc/assets/images/special-holiday/new_icon.png);
  vertical-align: middle;
  padding-right: 5px;
}
.special-holiday .detail_wrap li span.sub_detail {
  font-size: 80%;
}
.special-holiday .detail_wrap_tokuten {
  padding: 30px 10px;
}
.special-holiday .detail_wrap_tokuten .rose {
  position: static;
}
.special-holiday .detail_wrap_tokuten .rose h4 {
  text-align: center;
}
.special-holiday .detail_wrap_tokuten .rose p {
  position: static;
  text-align: center;
  margin-top: 10px;
  font-size: 80%;
  background-color: #f8eae1;
  border: none;
  color: #000;
  line-height: 2rem;
}
.special-holiday .detail_wrap_tokuten .rose p.ctg {
  padding: 5px 25px;
  border: 1px solid rgba(67, 71, 72, 0.1);
  font-size: 1.2rem;
  line-height: calc(12 /(1.2 * 10));
  letter-spacing: 0.1em;
  box-sizing: border-box;
  margin: 20px auto;
  width: 30%;
  min-width:100px;
}
.special-holiday h2.special_gift {
  margin-top: 30px;
}
.special-holiday .detail_wrap ul.tokuten {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.special-holiday .detail_wrap ul.tokuten li {
  list-style: none;
  width: 120px;
  margin-top: 0px;
  margin-right: 5px;
}
@media screen and (min-width: 1024px){
   .special-holiday .detail_wrap ul.tokuten li {
  width: 150px;
}
}
@media (min-width: 768px) and (max-width: 820px) {
   .special-holiday .detail_wrap ul.tokuten li {
  width: 100px; 
    }
}
@media screen and (max-width: 768px){
   .special-holiday .detail_wrap ul.tokuten li {
  width: 140px;
}
}
@media screen and (max-width: 480px){
   .special-holiday .detail_wrap ul.tokuten li {
  width: 110px;
}
}

.special-holiday .product__link {
  margin: 20px auto 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: opacity 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  max-width: 300px;
  height: 40px;
  padding: 30px 20px;
  background-color: #000;
  color: #fff;
  font-size: 1.4rem;
  line-height: calc(14 /(1.4 * 10));
  letter-spacing: 0.1em;
  transition: opacity 0.4s;
}
.special-holiday .product__link:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.special-holiday .product__link::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  width: 7px;
  height: 7px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
}
/*--　　特集用共通　　--*/
.special-feature {
  background-color: #ffffff;
}
.special-feature .kv__container {
  max-width: 980px;
  margin: 0 auto;
}
.special-feature .kv__img {
  height: 100%;
}
.special-feature .kv__img picture img, .special-feature .kv__img picture source {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.special-feature .contents {
  padding-top: 50px;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .special-feature .contents {
    padding-top: 25px;
    padding-bottom: 50px;
  }
}
.special-feature .contents__container {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .special-feature .contents__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.special-feature .contents__wrapper-head {
  position: sticky;
  top: 150px;
  width: 48%;
  max-width: 430px;
  height: 625px;
}
@media screen and (max-width: 768px) {
  .special-feature .contents__wrapper-head {
    position: static;
    width: 100%;
    max-width: none;
    height: auto;
  }
}
.special-feature .contents__wrapper {
  width: 48%;
  max-width: 430px;
}
@media screen and (max-width: 768px) {
  .special-feature .contents__wrapper {
    width: 100%;
    max-width: none;
    margin-top: 30px;
  }
}
.special-feature .contents__box {
  width: 100%;
  padding: 25px;
  background-color: #fff;
}
.special-feature .contents__ttl {
  position: relative;
  font-weight: 200;
  font-size: 3.6rem;
  line-height: calc(46 /(3.6 * 10));
  letter-spacing: 0.05em;
  text-align: center;
}
.special-feature .contents__ttl span.contents__ttl_b {
  font-weight: bold;
}
.special-feature .contents__ttl::before {
  -webkit-transform: translateX(-50%);
  position: absolute;
  bottom: -10px;
  left: 50%;
  width: 40px;
  height: 1px;
  transform: translateX(-50%);
  background-color: #000;
  content: "";
}
@media screen and (max-width: 768px) {
  .special-feature .contents__ttl {
    font-size: 2.5rem;
    line-height: calc(35 /(2.5 * 10));
    letter-spacing: 0.1em;
  }
}
.special-feature .contents__img {
  width: 100%;
  margin-top: 40px;
}
.special-feature .contents__img img {
  -o-object-fit: contain;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.special-feature .contents__list-ttl {
  max-width: 380px;
  margin: 0 auto;
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
  font-size: 1.6rem;
  line-height: calc(24 /(1.6 * 10));
  letter-spacing: 0.1em;
}
.special-feature .contents__list-ttl:not(:first-of-type) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .special-feature .contents__list-ttl {
    max-width: 250px;
    font-size: 1.4rem;
    line-height: calc(20 /(1.4 * 10));
    letter-spacing: 0.1em;
  }
}
.special-feature .contents__txt {
  max-width: 380px;
  margin: 0 auto;
  margin-top: 10px;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: calc(24 /(1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .special-feature .contents__txt {
    max-width: 250px;
    font-size: 1.2rem;
    line-height: calc(18 /(1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.special-feature .contents__lists {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  margin-top: 0px;
  gap: 10px;
}
.special-feature .contents .lists__item {
  background-color: #fff;
}
.special-feature .contents .item__link {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: opacity 0.5s;
  align-items: center;
  transition: opacity 0.5s;
}
.special-feature .contents .item__link:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.special-feature .contents .item__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .special-feature .contents .item__img {
    width: 100%;
    height: 100%;
  }
}
.special-feature .contents .item__content {
  width: 80%;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .special-feature .contents .item__content {
    width: calc(100% - 105px);
  }
}
.special-feature .contents .item__ttl {
  font-size: 2rem;
  line-height: calc(21 /(1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .special-feature .contents .item__ttl {
    font-size: 2rem;
    line-height: calc(18 /(1.2 * 10));
    letter-spacing: 0.1em;
  }
}
.special-feature .contents .double_price {
  font-size: 80%;
  position: relative;
}
.special-feature .contents .double_price::before {
  content: "";
  position: absolute;
  border-top: 3px double #000;
  width: 100%;
  top: 50%;
}
@media screen and (max-width: 768px) {
  .special-feature .contents .double_price {
    font-size: 90%;
  }
}
.special-feature .contents .item__price {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .special-feature .contents .item__price {
    font-size: 1.5rem;
    line-height: calc(16 /(1 * 10));
    letter-spacing: 0.1em;
  }
}
.special-feature .sub_fv_wrapper {
  padding: 50px 10px;
  max-width: 980px;
  margin: 0px auto;
}
.special-feature .sub_fv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
}
.special-feature .sub_fv__content {
  width: 100%;
  max-width: 500px;
  padding: 0px;
}
.special-feature .sub_fv__content p {
  text-align: center;
  color: #4c4715;
  font-family: serif;
  letter-spacing: 0.1em;
  font-size: 90%;
}
.special-feature h2.sub_fv_ttl img {
  width: 50%;
  margin: 0px auto;
}
@media screen and (max-width: 768px) {
  .special-feature .sub_fv_wrapper {
    max-width: none;
    padding: 40px;
  }
  .special-feature .sub_fv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    height: auto;
  }
  .special-feature h2.sub_fv_ttl img {
    width: 100%;
  }
  .special-feature .sub_fv__content p {
    font-size: 120%;
  }
}
.special-feature .other_info {
  width: 80%;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 100px;
}
.special-feature .other_info .ranking__product-list {
  height: 358px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 80px auto;
  max-width: 960px;
}
@media screen and (max-width: 768px) {
  .special-feature .other_info .ranking__product-list {
    height: auto;
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .special-feature .other_info {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.special-feature .other_info__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  overflow-x: scroll;
  gap: 20px;
}
.special-feature .other_info .lists__item {
  width: 198px;
}
.special-feature .other_info .item__img {
  width: 198px;
  height: 198px;
}
.special-feature .other_info .item__img img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.special-feature .other_info .item__content {
  -webkit-box-align: center;
  -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.special-feature .other_info .item__number {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #000;
  color: #fff;
  font-weight: 300;
  font-size: 2.4rem;
  line-height: calc(24 /(2.4 * 10));
  font-family: "Ubuntu", sans-serif;
  letter-spacing: 0.1em;
}
.special-feature .other_info .item__ttl {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  width: calc(100% - 55px);
  -webkit-line-clamp: 2;
  margin-left: 15px;
  overflow: hidden;
  font-weight: normal;
  font-size: 1.4rem;
  line-height: calc(24 /(1.4 * 10));
  letter-spacing: 0.1em;
  word-break: break-all;
}
.special-feature .other_info__product-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 420px;
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .special-feature .other_info__product-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    height: auto;
    margin-top: 50px;
  }
}
.special-feature .other_info .r-product-list__content {
  width: 100%;
  max-width: 400px;
  padding: 50px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .special-feature .other_info .r-product-list__content {
    max-width: none;
    padding: 40px;
  }
}
.special-feature .other_info .r-product-list__ttl {
  width: 100%;
  max-width: 300px;
  text-align: center;
  letter-spacing: 0.1em;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .special-feature .other_info .r-product-list__ttl {
    max-width: 220px;
    margin: 0 auto;
  }
}
.special-feature .other_info .r-product-list__ttl img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}
.special-feature .other_info .r-product-list__ttl span {
  font-weight: 200;
  font-size: 1.4rem;
  line-height: calc(26 /(1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .special-feature .other_info .r-product-list__ttl span {
    display: block;
    margin-top: 10px;
    text-align: center;
  }
}
.special-feature .other_info .r-product-list__txt {
  margin-top: 40px;
  font-weight: 300;
  font-size: 1.2rem;
  line-height: calc(26 /(1.4 * 10));
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .special-feature .other_info .r-product-list__txt {
    margin-top: 20px;
    font-size: 1rem;
    line-height: calc(26 /(1 * 10));
    letter-spacing: 0.1em;
    text-align: center;
  }
}
.special-feature .other_info .r-product-list__link {
  -webkit-transition: opacity 0.5s;
  display: block;
  position: relative;
  width: 100%;
  max-width: 210px;
  margin: 50px auto;
  padding: 15px 20px;
  background-color: #000;
  color: #fff;
  font-size: 1.4rem;
  line-height: calc(14 /(1.4 * 10));
  letter-spacing: 0.1em;
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
  .special-feature .other_info .r-product-list__link {
    margin: 20px auto 0;
  }
}
.special-feature .other_info .r-product-list__link:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.special-feature .other_info .r-product-list__img-link {
  -webkit-transition: opacity 0.5s;
  display: block;
  width: 80%;
  height: 100%;
  transition: opacity 0.5s;
}
@media screen and (max-width: 768px) {
  .special-feature .other_info .r-product-list__img-link {
    width: 100%;
  }
}
.special-feature .other_info .r-product-list__img-link:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.special-feature .other_info .r-product-list__img-link img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  /*object-fit: cover;*/
  object-fit: contain;
  background-color: #ffffff;
}
.special-feature .one_set {
  background: #ffffff;
}
.special-feature .disc {
  width: 100%;
  display: flex;
}
.special-feature .disc p {
  font-size: 80%;
  color: #ffffff;
  padding: 5px 10px;
  background-color: darkred;
  align-items: center;
  justify-content: center;
  margin: 10px auto;
}
@media screen and (max-width: 768px) {
  .special-feature .disc p {
    font-size: 120%;
  }
}
.special-feature .detail_wrap {
  background-color: #f8eae1;
  padding: 30px 40px;
  margin: 30px;
  font-size: 90%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .special-feature .detail_wrap {
    font-size: 120%;
  }
}
.special-feature .detail_wrap p.tokuten_icon {
  position: absolute;
  top: -10px;
  left: 10px;
  background-color: #af963d;
  padding: 10px;
  border: 1px solid rgba(67, 71, 72, 0.1);
  font-size: 1.2rem;
  line-height: calc(12 /(1.2 * 10));
  letter-spacing: 0.1em;
  box-sizing: border-box;
  display: block;
  color: #ffffff;
}
.special-feature .detail_wrap p.gentei_icon {
  position: absolute;
  top: 20px;
  right: 10px;
  background-color: #e78b98;
  padding: 10px;
  border: 1px solid rgba(67, 71, 72, 0.1);
  font-size: 1.2rem;
  line-height: calc(12 /(1.2 * 10));
  letter-spacing: 0.1em;
  box-sizing: border-box;
  display: block;
  color: #ffffff;
}
.special-feature .detail_wrap li {
  margin-top: 20px;
  list-style-type: disc;
}
.special-feature .detail_wrap li span.new_icon::after {
  content: url(https://lekarka.co.jp/user_data/packages/original_pc/assets/images/special-holiday/new_icon.png);
  vertical-align: middle;
  padding-right: 5px;
}
.special-feature .detail_wrap li span.sub_detail {
  font-size: 80%;
}
.special-feature .detail_wrap_tokuten {
  padding: 30px 10px;
}
.special-feature .detail_wrap_tokuten .rose {
  position: static;
}
.special-feature .detail_wrap_tokuten .rose h4 {
  text-align: center;
}
.special-feature .detail_wrap_tokuten .rose p {
  position: static;
  text-align: center;
  margin-top: 10px;
  font-size: 80%;
  background-color: #f8eae1;
  border: none;
  color: #000;
  line-height: 2rem;
}
.special-feature .detail_wrap_tokuten .rose p.ctg {
  padding: 5px 25px;
  border: 1px solid rgba(67, 71, 72, 0.1);
  font-size: 1.2rem;
  line-height: calc(12 /(1.2 * 10));
  letter-spacing: 0.1em;
  box-sizing: border-box;
  margin: 20px auto;
  width: 30%;
  min-width: 100px;
}
.special-feature h2.special_gift {
  margin-top: 30px;
}
.special-feature .detail_wrap ul.tokuten {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.special-feature .detail_wrap ul.tokuten li {
  list-style: none;
  width: 120px;
  margin-top: 0px;
  margin-right: 5px;
}
@media screen and (min-width: 1024px) {
  .special-feature .detail_wrap ul.tokuten li {
    width: 150px;
  }
}
@media (min-width: 768px) and (max-width: 820px) {
  .special-feature .detail_wrap ul.tokuten li {
    width: 100px;
  }
}
@media screen and (max-width: 768px) {
  .special-feature .detail_wrap ul.tokuten li {
    width: 140px;
  }
}
@media screen and (max-width: 480px) {
  .special-feature .detail_wrap ul.tokuten li {
    width: 110px;
  }
}
.special-feature .product__link {
  margin: 20px auto 50px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-transition: opacity 0.4s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  align-items: center;
  width: 100%;
  max-width: 300px;
  height: 40px;
  padding: 30px 20px;
  background-color: #000;
  color: #fff;
  font-size: 1.4rem;
  line-height: calc(14 /(1.4 * 10));
  letter-spacing: 0.1em;
  transition: opacity 0.4s;
}
.special-feature .product__link:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.special-feature .product__link::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  width: 7px;
  height: 7px;
  transform: translateY(-50%) rotate(45deg);
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  content: "";
}

/*-- //共通ここまで　--*/

/*--  6th キャンペーン　--*/

.anniversary_campain .contents__wrapper-head {
  height: 680px;
  top: 60px;
}
.anniversary_campain .contents .item__ttl {
  font-size: 1.5rem;
  line-height: calc(21 /(1.4 * 10));
  letter-spacing: 0.1em;
}
.anniversary_campain article {
  background-image: url(../images/anniversary-campain/bg@2x.png);
  background-size: 80%;
}
.anniversary_campain .kv__container {
  max-width: 1000px;
  max-height: 700px;
}
@media screen and (max-width: 768px) {
  .anniversary_campain .kv__container {
    max-height: 1200px;
  }
}
.anniversary_campain .kv p {
  text-align: center;
  color: #333;
  font-family: serif;
  letter-spacing: 0.1em;
  font-size: 80%;
}
@media screen and (max-width: 768px) {
  .anniversary_campain .kv p {
    font-size: 120%;
  }
}
.anniversary_campain .fv__container {
  margin-top: -50px;
  left: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 30px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  padding: 0 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .anniversary_campain .fv__container {
    display: none;
  }
}
.anniversary_campain .fv__container p.cp_day {
  color: #333;
  font-family: Optima;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.anniversary_campain .fv__container p.cp_day span {
  background-color: #333;
  padding: 10px;
  color: #fff;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .anniversary_campain .fv__container p.cp_day {
    line-height: 2em;
  }
  .anniversary_campain .fv__container p.cp_day span {
    padding: 5px;
  }
}
.anniversary_campain .fv__container p.fv_logo {
  width: 43px;
  flex-shrink: 0;
  margin-bottom: -50px;
}
.anniversary_campain .fv__container span.sub_day_txt {
  color: #333;
  font-family: Optima;
  font-size: 21.667px;
  font-style: normal;
  font-weight: 400;
  line-height: 5rem;
}
.anniversary_campain .fv__container span.sub_day_txt:before,.anniversary_campain .fv__container span.sub_day_txt:after {
  content: url("../images/anniversary-campain/line@2x.png");
  padding: 10px;
}
.anniversary_campain .fv__container h2 {
  color: #333;
  font-family: Snell Roundhand;
  font-size: 58.4px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 5.84px;
  vertical-align: baseline;
}
.anniversary_campain .fv__container h2 span {
  font-size: 96px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  vertical-align: baseline;
}
@media screen and (max-width: 480px) {
  .anniversary_campain .fv__container h2 {
    font-size: 40px;
  }
  .anniversary_campain .fv__container h2 span {
    font-size: 50px;
  }
}
.anniversary_campain .sub_fv__content {
  position: relative;
  width: 100%;
  max-width: 1000px;
  padding: 0px;
  margin-top: 20px;
}
.anniversary_campain .sub_fv__content p {
  width: 100%;
  padding: 10px;
  position: absolute;
  top: calc(30% + 10px);
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .anniversary_campain .pc_br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .anniversary_campain .sp_br {
    display: none;
  }
}
.anniversary_campain　span.contents__ttl_opt {
  font-family: Optima;
}
.anniversary_campain .contents__ttl {
  font-size: 3rem;
}
.anniversary_campain .contents__ttl::before {
  display: none;
}
.anniversary_campain .sub_contents_ttl {
  display: flex;
  align-items: center;
  justify-content: center;
}
.anniversary_campain .sub_contents_ttl p {
  font-size: 80%;
  font-family: serif;
}
.anniversary_campain .contents__ttl {
    line-height: 1em;
}
.anniversary_campain .contents p.detail__price {
  font-size: 120%;
  font-weight: normal;
  width: 100%;
}
.anniversary_campain .contents .item__ttl {
  font-size: 100%;
  font-weight: normal;
  text-align: left;
}
.anniversary_campain .contents .item {
  display: flex;
}
.anniversary_campain .contents .item__img {
  width: 50%;
}
.anniversary_campain .contents .item__content {
  display: flex;
  flex-direction: column;
  gap: 10%;
  width: 50%;
  padding-right: 20px;
}
.anniversary_campain ul.tag_wrap {
  display: flex;
  justify-content: flex-end;
  gap: 3%;
  flex-wrap: wrap;
}
.anniversary_campain ul.tag_wrap li {
  border-radius: 20px;
  padding: 5px 10px;
  border: 1px solid #93842F;
  background: rgba(217, 217, 217, 0.00);
  color: #93842F;
  font-size: 10px;
  margin-bottom: 5px;
}
.anniversary_campain .detail_wrap p.tokuten_icon {
  background: none;
  border: none;
  background-image: linear-gradient(2deg, rgba(233, 233, 233, 1), rgba(198, 179, 106, 1));
  color: #281b1b;
}
.anniversary_campain .detail_wrap {
  background-color: #f1f0f0;
}
.anniversary_campain .detail_wrap h4 {
  text-align: center;
}
.anniversary_campain .detail_ttl {
  background: linear-gradient(transparent 60%, #fbfbcb 10%);
}
.anniversary_campain .detail_ttl_white {
  background: linear-gradient(transparent 60%, #fff 10%);
}
.anniversary_campain .detail_wrap ul.detail_list01 {
  width: 80%;
  margin: 0 auto;
}
.anniversary_campain .detail_wrap ul.detail_list02 {
  width: 50%;
  margin: 0 auto;
}
.anniversary_campain .detail_wrap ul.tokuten {
  align-items: center;
  margin-top: 10px;
  letter-spacing: 0.1em;
  font-size: 80%;
}
.anniversary_campain .detail_wrap li {
  margin-top: 10px;
}
.anniversary_campain .detail_wrap ul.tokuten li {
  margin: 10px 10px 0 0;
}
.anniversary_campain .detail_txt {
  color: #93842f;
  margin-top: 10px;
  letter-spacing: 0.1em;
  font-size: 80%;
}
.anniversary_campain p.detail_img img {
  margin: 20px auto;
}
.anniversary_campain .detail_ttl_jp {
  text-align: center;
  color: #333;
  letter-spacing: 0.01em;
  font-size: 40%;
}
.anniversary_campain .dis_icon {
  display: flex;
  justify-content: flex-end;
}
.anniversary_campain .detail_price {
  font-size: 80%;
}
@media screen and (max-width: 768px) {
  .anniversary_campain .contents__wrapper-head {
    height: auto;
  }
  .anniversary_campain .sub_contents_ttl p {
    font-size: 130%;
  }
  .anniversary_campain .contents .item__ttl, .anniversary_campain .contents .item__price {
    font-size: 160%;
  }
  .anniversary_campain .detail_price {
    font-size: 130%;
  }
  .anniversary_campain .detail_txt {
    font-size: 90%;
  }
  .anniversary_campain .detail_ttl_white,.anniversary_campain .detail_ttl {
    font-size: 130%;
  }
  .anniversary_campain .detail_wrap ul.tokuten {
    font-size: 100%;
  }
  .anniversary_campain .detail_wrap {
    padding: 20px 10px;
  }
  .anniversary_campain .detail_wrap h4 {
    margin: 20px 0px;
}
  .anniversary_campain .detail_wrap_top{
    margin-top:90px;   
    }
}
@media screen and (max-width: 480px) {
  .anniversary_campain .detail_price {
    font-size: 100%;
  }
}


/* 20241016 add */
@media screen and (min-width: 768px) {
	.mypaage-hair-sp{
		display: none;

  }
	
	.mypaage-hair-pc-container{
		 width: 100%;
	}
	.mypaage-hair-pc{
		display: block;
    height: auto;
    margin: 0 7px;		
	}
	
	.mypaage-hair-pc img{
        display: block;
        width: 886px;
        object-fit: contain;
        margin: 0 auto;
	}
}

@media screen and (max-width: 767px) {
	.mypaage-hair-pc{
		display: none;
  }
	
	.mypaage-hair-sp{
		display: block;
        width: 100%;
  }
	
		.mypaage-hair-sp img{
	   margin: 0 auto;
	}
}


/* 20240213 add */
.mypage-point-info__rank-banner-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.mypage-point-info__rank-banner-box > a {
  display: block;
  /* width: 50%; */
  height: auto;
  margin: 0 7px;
}

.mypage-point-info__rank-banner-box > a > picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mypage-point-info__rank-banner-box > a > picture > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.mypage-point-info__rank-banner-box > a > picture > source {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 430px) {
  .mypage-point-info__rank-banner-box {
    flex-direction: column;
  }
  .mypage-point-info__rank-banner-box > a {
    width: 100%;
    margin-bottom: 15px;
  }
}

/* 20240215 add */
.-width-adjustment {
  margin-left: -40px;
  margin-right: -40px;
}

@media screen and (max-width: 767px) {
  .-width-adjustment {
    margin-left: 0;
    margin-right: 0;
  }
}

/* 20240219 add */
.special-set {
  display : block;
  width : 100%;
  max-width : 850px;
  height : auto;
  margin : 0 auto;
  padding-top: 120px;
  background-color : #ffffff;
}

.special-set-list {
  display : -webkit-box;
  display : -ms-flexbox;
  display : flex;
  -webkit-box-pack : justify;
  -ms-flex-pack : justify;
  justify-content : space-between;
  padding-top : 29px;
}
.special-set-list__wrap {
  display : block;
  width : calc(50% - 10px);
  height : auto;
  border : 1px solid #000000;
}
.special-set-list__wrap:first-of-type .special-set-list__wrap--inner .special-set-thumbnail {
  width : 77%;
  margin : 0 auto 16px;
}
.special-set-list__wrap:last-of-type .special-set-list__wrap--inner .special-set-thumbnail {
  width : 53%;
  margin : 0 auto 19px;
}
.special-set-list__wrap--inner {
  display : block;
  width : 100%;
  height : auto;
  padding : 43px 10px 26px;
}
.special-set-list__wrap--inner .special-set-thumbnail {
  display : block;
  height : auto;
}
.special-set-list__wrap--inner .special-set-thumbnail > img {
  display : block;
  width : 100%;
  height : 100%;
  -o-object-fit : cover;
  object-fit : cover;
}
.special-set-list__wrap--inner .special-set-tag {
  display : block;
  width : -webkit-fit-content;
  width : -moz-fit-content;
  width : fit-content;
  padding : 4px 10px;
  margin : 0 auto 14px;
  font-size : 12px;
  line-height : 1;
  letter-spacing : .1em;
  border : 1px solid rgba(67, 71, 72, .1);
}
.special-set-list__wrap--inner .special-set-title {
  margin-bottom : 10px;
  font-size : 13px;
  font-weight : 400;
  text-align : center;
  letter-spacing : 1px;
}
.special-set-list__wrap--inner .special-set-title > span {
  display : block;
  font-size : 12px;
}
.special-set-list__wrap--inner .special-set-price {
  font-size : 11px;
  font-weight : 400;
  text-align : center;
  text-align : center;
  letter-spacing : 1px;
}
.special-set-list__wrap--inner .special-set-price > span {
  font-size : 12px;
}
.special-set-list__wrap--inner .special-set-button {
  position : relative;
  display : block;
  width : 54%;
  margin : 20px auto 0;
  background-color : #333333;
}
.special-set-list__wrap--inner .special-set-button > span {
  display : block;
  padding : 9px 17px;
  font-size : 12px;
  line-height : 1.8571428571;
  color : #ffffff;
  text-align : left;
  letter-spacing : .1em;
  transition : -webkit-text-decoration .5s;
  -webkit-transition : -webkit-text-decoration .5s;
  transition : text-decoration .5s;
  transition : text-decoration .5s, -webkit-text-decoration .5s;
}
.special-set-list__wrap--inner .special-set-button .item__next {
  position : absolute;
  top : 50%;
  right : 10px;
  width : 6px;
  pointer-events : none;
  -webkit-transform : translateY(-50%);
  transform : translateY(-50%);
}
.special-set-list__wrap--inner .special-set-button .item__next > img {
  width : 100%;
  height : 100%;
  -o-object-fit : contain;
  object-fit : contain;
  vertical-align : middle;
}
@media screen and (max-width: 767px) {
  .special-set-list {
    -webkit-box-orient : vertical;
    -webkit-box-direction : normal;
    -ms-flex-direction : column;
    flex-direction : column;
    -webkit-box-align : center;
    -ms-flex-align : center;
    align-items : center;
  }
  .special-set-list__wrap {
    width : 100%;
    max-width : 370px;
  }
  .special-set-list__wrap:first-of-type {
    margin-bottom : 20px;
  }
}

/* 20240227 add */
#guidecolumn h2,
div#guidecolumn p,
#guidecolumn h3 {
  font-family: "Noto Sans JP", sans-serif!important;
}

#guidecolumn h2,
#guidecolumn h3 {
  font-weight: 400;
}

/* 20240228 add */
.product-detail .point__txt strong {
  background: rgba(255, 218, 57, .25);
}

/* 20240228 add */
.text-in-annotation {
  color: #909090;
}

.text-in-annotation-number {
  font-size: 11px;
  display: table-cell;
}

.recommend-annotation-list {
  padding-top: 24px;
  margin-left: auto;
  display: block;
  width: fit-content;
  max-width: 400px;
}

.recommend-annotation-list__item {
  font-size: 11px;
  color: #909090;
  display: flex;
}

.recommend-annotation-list__item > .text-in-annotation {
  margin-left: -16px;
  margin-right: 4px;
  display: flex;
  padding-top: 1px;
}

.recommend-annotation-list__item > .text-in-annotation > .text-in-annotation-number {
  margin-top: -2px;
}

.recommend-annotation-list__item:not(:last-of-type) {
  margin-bottom: 10px;
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .cont_wrap {
    padding: 0 40px;
  }
}

@media (min-width: 431px) and (max-width: 1024px) {
  .cont_wrap {
    padding: 0 20px;
  }
}

@media (min-width: 900px) and (max-width: 1280px) {
  .header_wrap header ul {
    right: 40px!important;
  }
}

/* 20240301 add */
.ukomi-load-more-button {
  transition: opacity 0.5s;
}

.ukomi-load-more-button:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}

.ukomi-load-more-button-text {
  font-size: 14px;
}

.-review-title-wrap {
  padding-top: 80px;
  margin-bottom: -24px;
}

/* 20240307 add */
.reviewWidget_title {
  font-weight: 200;
  font-size: 3.2rem;
  line-height: calc(32 /(3.2* 10));
  letter-spacing: 0.1em;
  text-align: center;
}

/* 20240415 add */

.header__sp-menu {
  background-color: #ffffff;
  padding: 22px 16px 25px;
}

.sp-search__ttl {
  color: #333!important;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px!important;
  font-style: normal;
  font-weight: 500!important!important;
  line-height: normal;
  letter-spacing: 1.8px!important;
}

.sp-menu-contents {
  padding: 0 12px;
}

.sp-menu-contents:not(:last-of-type) {
  margin-bottom: 35px;
}

.header .sp-search__lists {
  gap: 12px;
}

.lists__item > a {
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px!important;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.52px!important;
  border-radius: 4px;
}

.lists__item > .-tag-link {
  padding: 0 11px;
}

.item__link.-border {
  border: 1px solid var(--gray-line, #DADADA);
}

.header .sp-search .lists__item {
  width: auto;
}

.header .sp-search .box142 {
  width: 100%;
  padding: 11px 15px 5px;
  border-bottom: 1px solid #333;
  background-color: #fff;
  color: #333;
}

.header .sp-search .box142::placeholder {
  color: #949494;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.6px;
}

.header .sp-search .search__link {
  width: 30px;
  height: 30px;
  position: absolute;
  top: 28px;
  right: 24px;
}

.sp-nav-close {
  display: flex;
  margin: 60px auto 0;
  align-items: center;
  background-color: #fff;
  color: var(--gray-text, #565656);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.8px;
}

.sp-nav-close > img {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  margin-right: 4px;
  margin-bottom: -2px;
}

.header .sp-search__ttl {
  margin-top: 25px;
}

.sp-menu {
  background: var(--gray-base, #F5F5F5);
  padding: 0 0 25px;
}

.sp-menu-header {
  display: flex;
  justify-content: space-between;
  height: 24.72vw;
  max-height: 89px;
  background-color: #fff;
  border-bottom: 1px solid #DADADA;
}

.sp-menu-header__list {
  display: block;
  width: calc(100% / 4);
  height: 100%;
}

.sp-menu-header__list:not(:last-of-type) {
  border-right: 1px solid #DADADA;
}

.sp-menu-header__list > a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.sp-menu-title {
  color: var(--000, #000);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.8px;
  padding: 14px 28px;
}

.header .sp-menu .lists__item {
  width: 100%;
  border-top: 1px solid #DADADA;
  cursor: pointer;
  background-color: #fff;
}

.header .sp-menu .item__ttl {
  color: var(--000, #000);
}

.item__link > span {
  color: var(--000, #000);
}

.header .sp-menu .item__link {
  padding: 15px 0 14px 16px;
}

.header .sp-menu .item__next {
  right: 16px;
  width: 20px;
}

.header .sp-menu .item__ttl {
  color: var(--333, #333);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.56px;
}

.header .sp-menu .item__img {
  margin-right: 16px;
  width: 40px;
  height: 40px;
}

.header .sp-menu .item__img > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.-worries {
  margin: 10px 0;
  padding: 8px 0 8px 12px;
}

.-worries > .item__link > span {
  color: var(--333, #333);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.8px;
}

.-under-line {
  border-bottom: 1px solid #DADADA!important;
}

.sp-menu__nav {
  position: relative;
}

.small-category-container {
  position: absolute;
  top: 0;
  left: 100%;
  display: block;
  width: 100%;
  height: 100%;
  transition: .5s;
  background-color: #fff;
}

.small-category-container.js-open {
  left: 0;
  transition: .5s;
}

.small-category-container__header {
  background: var(--gray-base, #F5F5F5);
  position: relative;
  padding: 14px 0;
  border-bottom: 1px solid #DADADA;
}

.small-category-container__header--title {
  color: var(--000, #000);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 1.8px;
}

.small-category-container__footer{
	background: #f5f5f5;
    padding-top: 1%;
    padding-bottom: 5%;
}

.small-category-container__header--backbutton {
  position: absolute;
  top: 0;
  left: 16px;
  bottom: 0;
  margin: auto 0;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  height: fit-content;
  color: var(--333, #333);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.52px;
}

.small-category-container__header--backbutton > img {
  transform: rotate(180deg);
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 4px;
}

.small-category-container__list-title{
  margin: 4% 0 3% 3%;
}

.small-category-container__list {
  display: flex;
  flex-wrap: wrap;
   border-top: 1px solid #DADADA;
}

.small-category-container__list > li {
  display: block;
  width: 50%;
  height: 90px;
  border-bottom: 1px solid #DADADA;
}

.small-category-container__list > li:nth-of-type(odd) {
  border-right: 1px solid #DADADA;
}

.small-category-container__list > li > a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 100%;
  color: var(--333, #333);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.56px;
  padding-left: 16px;
}

.small-category-container__list > li > a > img {
  display: block;
  width: 40px;
  height: 40px;
  margin-right: 4px;
}

.sp-nav-text-link {
  padding: 30px 16px;
  margin-bottom: 10px;
}

.sp-nav-text-link__item:not(:last-of-type) {
  margin-bottom: 19px;
}

.sp-nav-text-link__item > a {
  color: var(--gray-text, #565656);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.48px;
}

.sp-nav-bunner-container {
  padding: 0 16px;
}

.sp-nav-bunner-container__link {
  display: block;
  width: 100%;
  height: auto;
}

.sp-nav-bunner-container__link > img {
  display: block;
  width: 100%;
  height: 100%;
}

.header_toptext{
    color: #fff;
    background: #333;
    text-align: center;
    padding: 4px 0px;
    font-size: 0.85em;
}

.header__sp-menu {
  left: 0;
  display: none;
}

.sp-menu,
.sp-search {
  transform: translateY(-20px);
  transition: .4s;
}

.sp-menu.sp-nav-main,
.sp-search.sp-nav-main {
  transform: translateY(0px);
  transition: .4s;
}

.header__sp-menu.is-open {
top: 80px;
}

/* 20240416 add */
.header__sp-menu {
  overflow-x: hidden;
}

.header.is-open {
  z-index: 4100;
}

/* 20240502 add */
.footer {
  position: relative;
  z-index: 4000;
}

.acne-uv-powder > .info {
  background-color: #fff;
}

.acne-uv-powder >  *
{
    box-sizing: border-box;
}

.acne-uv-powder a
{
    text-decoration: none;

    outline: none;
}

.acne-uv-powder a:hover
{
    text-decoration: none;
}

.acne-uv-powder a:focus,
.acne-uv-powder *:focus
{
    outline: none;
}

.acne-uv-powder img
{
    vertical-align: top;

    border: none;
    border-style: none;
}

.acne-uv-powder ol,
.acne-uv-powder ul,
.acne-uv-powder li
{
    list-style: none;
}

.acne-uv-powder input[type=submit],
.acne-uv-powder input[type=button]
{
    box-sizing: border-box;

    border: none;
    border-radius: 0;

    -webkit-appearance: button;
       -moz-appearance: button;
            appearance: button;
}
.acne-uv-powder input[type=submit]::-webkit-search-decoration,
.acne-uv-powder input[type=button]::-webkit-search-decoration
{
    display: none;
}
.acne-uv-powder input[type=submit]::focus,
.acne-uv-powder input[type=button]::focus
{
    outline-offset: -2px;
}

.acne-uv-powder .SPshow
{
    display: none;
}

.acne-uv-powder .PCshow
{
    display: block;
}

.fixed-bg
{
    position: absolute;

    display: block;

    width: 100%;
    height: 100vh;
}
.fixed-bg.-fixed
{
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
}
.fixed-bg > img
{
    width: 100%;
    height: 100%;

    -o-object-fit: cover;
       object-fit: cover;
}

.acne-uv-powder {
  font-size: 16px;
    line-height: 1.6;

    position: relative;
    z-index: 1;

    overflow: hidden;

    width: 100%;
    height: auto;

    color: #312c2d;

    -webkit-font-smoothing: antialiased;
}



.acne-uv-powder > .fv
{
    position: relative;

    width: 100%;
    height: auto;

    background-color: #e6ddd9;
    max-height: fit-content!important;
}
.acne-uv-powder > .fv::after
{
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 1271px;

    content: '';

    background-image: url(../images/acneuvpowder/bg_01.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.acne-uv-powder > .fv .kv
{
    display: block;

    width: 100%;
    height: auto;
    margin-bottom: 61px;

    background-color: #f7efec;
}
.acne-uv-powder > .fv .kv__inner
{
    position: relative;
    z-index: 2;

    display: flex;

    width: 100%;
    max-width: 1118px;
    height: auto;
    margin: 0 auto;

    align-items: center;
    justify-content: center;
}
.acne-uv-powder > .fv .kv__inner .kv-text
{
    position: relative;
    right: -84px;

    padding-top: 10px;
}
.acne-uv-powder > .fv .kv__inner .kv-text::after
{
    position: absolute;
    top: 0;
    left: -20px;

    display: block;

    width: 637px;
    height: 358px;

    content: '';

    background-image: url(../images/acneuvpowder/kv_smoke.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.acne-uv-powder > .fv .kv__inner .kv-text__catch
{
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    line-height: normal;

    position: relative;
    z-index: 2;

    margin-bottom: 20px;
    padding-left: 5px;

    letter-spacing: 2.16px;
}
.acne-uv-powder > .fv .kv__inner .kv-text__name
{
    font-family: '游明朝体', 'Yu Mincho', YuMincho, 'ヒラギノ明朝 Pro', 'Hiragino Mincho Pro', 'MS P明朝', 'MS PMincho', serif;
    font-size: 46px;
    font-weight: 400;
    font-style: normal;
    line-height: 71px;

    position: relative;
    z-index: 2;

    margin-bottom: 60px;

    letter-spacing: 3.68px;

    text-shadow: 1px 2px 0 #fff;
}
.acne-uv-powder > .fv .kv__inner .kv-text__name-small
{
    font-family: '游明朝体', 'Yu Mincho', YuMincho, 'ヒラギノ明朝 Pro', 'Hiragino Mincho Pro', 'MS P明朝', 'MS PMincho', serif;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;

    position: relative;
    z-index: 2;

    padding-left: 8px;

    text-align: center;
}
.acne-uv-powder > .fv .kv__inner .kv-text__name-small > span
{
    font-family: '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'MS Pゴシック', 'MS PGothic', sans-serif;
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    line-height: normal;

    letter-spacing: .52px;
}
.acne-uv-powder > .fv .kv__inner .kv-image
{
    position: relative;
    top: -32px;
    right: -10px;

    display: block;

    width: 530px;
    height: 520px;
}
.acne-uv-powder > .fv .kv__inner .kv-image > img
{
    display: block;

    width: 100%;
    height: auto;

    -o-object-fit: contain;
       object-fit: contain;
}
.acne-uv-powder > .fv .lead
{
    position: relative;
    z-index: 2;

    margin-bottom: 91px;

    transition: 1s;
    transform: translateY(40px);

    opacity: 0;
}
.acne-uv-powder > .fv .lead.-anime-on
{
    transition: 1s;
    transform: translateY(0);

    opacity: 1;
}
.acne-uv-powder > .fv .lead__inner
{
    text-align: center;
}
.acne-uv-powder > .fv .lead__inner .lead-title
{
  text-align: center;
    font-family: 'Noto Serif JP', serif;
    font-size: 32px;
    font-weight: 250;
    font-style: normal;
    line-height: 180%;

    margin-bottom: 23px;
    margin-left: -10px;

    letter-spacing: 6.4px;

    font-feature-settings: 'fwid' on;
}
.acne-uv-powder > .fv .lead__inner .lead-title-small
{
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 300;
    font-style: normal;
    line-height: 200%;

    margin-right: -12px;

    text-align: center;
    letter-spacing: 3.6px;

    font-feature-settings: 'halt' on;
}
.acne-uv-powder > .fv .detail
{
    position: relative;

    display: block;

    width: 100%;
    height: auto;
}
.acne-uv-powder > .fv .detail::before
{
    position: absolute;
    z-index: 10;
    top: 425px;
    left: 0;

    display: block;

    width: 345px;
    height: 480px;

    content: '';

    background-image: url(../images/acneuvpowder/powder.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.acne-uv-powder > .fv .detail__inner
{
    position: relative;
    z-index: 2;

    display: block;

    width: 100%;
    height: auto;
    margin: 0 auto;
}
.acne-uv-powder > .fv .detail__inner::before
{
    position: absolute;
    z-index: -1;
    bottom: -500px;
    left: 0;

    display: block;

    width: 100vw;
    height: 900px;
    margin: 0 calc(50% - 50vw);

    content: '';

    background-image: url(../images/acneuvpowder/bg_moya_kira_v2.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.acne-uv-powder > .fv .detail__inner::after
{
    position: absolute;
    z-index: -2;
    bottom: 300px;
    left: 0;

    display: block;

    width: 100vw;
    height: 500px;
    margin: 0 calc(50% - 50vw);

    content: '';

    background-color: #f7efec;
}
.acne-uv-powder > .fv .detail__inner--container
{
    width: 100%;
    max-width: 930px;
    margin: 0 auto;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item
{
    transition: 1s;
    transform: translateY(40px);

    opacity: 0;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item.-anime-on
{
    transition: 1s;
    transform: translateY(0);

    opacity: 1;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item:not(:last-of-type)
{
    margin-bottom: 83px;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item:first-of-type
{
    padding-left: 38px;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item:first-of-type .detail-list__item--inner .detail-description__image
{
    width: 294px;
    margin-bottom: 61px;
    margin-left: -37px;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item:first-of-type .detail-list__item--inner .detail-description__title
{
    margin-bottom: 47px;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item:first-of-type .detail-list__item--inner .detail-image
{
    position: relative;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item:last-of-type .detail-list__item--inner
{
    position: relative;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item:last-of-type .detail-list__item--inner::after
{
    content: '';
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item:last-of-type .detail-list__item--inner .detail-description
{
    position: relative;
    right: -22px;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item:last-of-type .detail-list__item--inner .detail-description__image
{
    width: 365px;
    margin-bottom: 61px;
    margin-left: -37px;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item:last-of-type .detail-list__item--inner .detail-description__title
{
    margin-bottom: 31px;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item:last-of-type .detail-list__item--inner .detail-image
{
    position: relative;
    left: -22px;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner
{
    display: flex;

    justify-content: space-between;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-description
{
    display: block;

    width: -webkit-fit-content;
    width:    -moz-fit-content;
    width:         fit-content;
    height: auto;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-description__image
{
    display: block;

    height: auto;
    margin-bottom: 50px;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-description__image > img
{
    display: block;

    width: 100%;
    height: auto;

    -o-object-fit: contain;
       object-fit: contain;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-description__title
{
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 500;
    font-style: normal;
    line-height: 170%;

    margin-bottom: 40px;

    letter-spacing: 3.36px;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-description__title > span
{
    font-size: 25px;
    font-weight: 400;
    font-style: normal;
    line-height: 170%;

    letter-spacing: 3px;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-description__list--item
{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 17px;
    font-weight: 300;
    font-style: normal;
    line-height: 170%;

    display: flex;

    padding-bottom: 17px;

    letter-spacing: 1.7px;

    border-bottom: 2px dotted #312c2d;

    align-items: center;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-description__list--item .strong-text
{
    font-weight: 500;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-description__list--item:not(:last-of-type)
{
    margin-bottom: 21px;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-description__list--item::before
{
    display: block;

    width: 27px;
    height: 24px;
    margin-right: 9px;

    content: '';

    background-image: url(../images/acneuvpowder/icon_check_box.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-description__image-under
{
    display: block;

    width: 460px;
    height: auto;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-description__image-under > img
{
    display: block;

    width: 100%;
    height: auto;

    -o-object-fit: contain;
       object-fit: contain;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-image
{
    display: block;

    width: 436px;
    height: auto;
}
.acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-image > img
{
    display: block;

    width: 100%;
    height: auto;

    -o-object-fit: contain;
       object-fit: contain;
}
.acne-uv-powder > .fv .detail .cta-middle
{
    position: relative;
    z-index: 2;

    max-width: 1440px;
    margin: 0 auto;
    padding-top: 315px;
    padding-bottom: 100px;
}
.acne-uv-powder > .fv .detail .cta-middle::before
{
    position: absolute;
    z-index: -1;
    bottom: -50%;
    left: 0;

    display: block;

    width: 100vw;
    height: 500px;
    margin: 0 calc(50% - 50vw);

    content: '';

    background-image: url(../images/acneuvpowder/bg_02.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.acne-uv-powder > .fv .detail .cta-middle__inner
{
    display: block;

    width: 100%;
    height: auto;
    margin: 0 auto;
    padding: 0 115px 0 91px;
}
.acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents
{
    position: relative;

    background: linear-gradient(164deg, rgba(255, 255, 255, .8) 30.91%, rgba(255, 255, 255, .4) 92.65%);
}
.acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents::before
{
    position: absolute;
    z-index: -1;
    right: -24px;
    bottom: -24px;

    display: block;

    width: 100%;
    max-width: 1258px;
    height: 525px;

    content: '';

    background-image: url(../images/acneuvpowder/bg_item_01.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents::after
{
    position: absolute;
    z-index: -1;
    top: -64px;
    left: -95px;

    display: block;

    width: 233px;
    height: 787px;

    content: '';

    background-image: url(../images/acneuvpowder/text_white.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner
{
    position: relative;

    display: flex;
    overflow: hidden;

    padding: 20px 50px 30px 92px;
}
.acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner::before
{
    position: absolute;
    top: -64px;
    left: -95px;

    display: block;

    width: 233px;
    height: 787px;

    content: '';

    background-image: url(../images/acneuvpowder/text_grege.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-image
{
    position: relative;
    bottom: -6px;

    display: block;

    width: 527px;
    height: 485px;

    transition: 1s;
    transform: translateY(40px);

    opacity: 0;
}
.acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-image.-anime-on
{
    transition: 1s;
    transform: translateY(0);

    opacity: 1;
}
.acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-image > img
{
    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text
{
    padding-top: 70px;
    padding-left: 20px;
}
.acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text__catch
{
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    line-height: normal;

    margin-bottom: 21px;

    letter-spacing: 2.88px;
}
.acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text__name
{
    font-family: 'Noto Serif JP', serif;
    font-size: 30px;
    font-weight: 300;
    font-style: normal;
    line-height: 160%;

    margin-bottom: 35px;

    letter-spacing: 4.5px;
}
.acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text__name-en
{
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 300;
    font-style: normal;
    line-height: normal;

    margin-bottom: 10px;

    letter-spacing: .4px;
}
.acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text__description
{
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: normal;

    letter-spacing: 1.4px;
}
.acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text__price
{
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: normal;

    margin-bottom: 60px;

    letter-spacing: 1.4px;
}
.acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text__button
{
    position: relative;

    display: flex;

    width: 206px;
    height: 42px;
    padding: 0 20px;

    transition: .6s;

    background-color: #312c2d;

    align-items: center;
}
.acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text__button::after
{
    position: absolute;
    right: 8px;

    display: block;

    width: 12px;
    height: 12px;

    content: '';

    background-image: url(../images/acneuvpowder/icon_white_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text__button > span
{
    font-family: source-sans-pro, sans-serif;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    line-height: normal;

    letter-spacing: 1.4px;

    color: #fff;
}

.header
{
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;

    width: 100%;
    height: 92px;
}
.header__inner
{
    display: flex;

    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 30px;

    align-items: center;
    justify-content: space-between;
}
.header__inner > h1
{
    display: block;

    width: 152px;
    height: auto;
}
.header__inner > h1 > img
{
    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: cover;
       object-fit: cover;
}

.how-to
{
    padding-top: 93px;
    padding-bottom: 40px;

    background-color: #fff;
}
.how-to__title
{
    font-family: ivypresto-display, serif;
    font-size: 32px;
    font-weight: 400;
    font-style: normal;
    line-height: 44px;

    position: relative;
    z-index: 2;

    margin-bottom: 58px;

    text-align: center;
    letter-spacing: 6.4px;
}
.how-to__inner
{
    display: block;

    width: 100%;
    max-width: 892px;
    height: auto;
    margin: 0 auto;
}
.how-to__inner .how-to-list
{
    display: flex;

    margin-bottom: 99px;

    justify-content: space-between;
}
.how-to__inner .how-to-list__item
{
    display: flex;
    flex-direction: column;

    width: 253px;
    height: auto;

    transition: 1s;
    transform: translateY(40px);

    opacity: 0;

    align-items: center;
}
.how-to__inner .how-to-list__item.-anime-on
{
    transform: translateY(0);

    opacity: 1;
}
.how-to__inner .how-to-list__item.-anime-on:first-of-type
{
    transition: 1s 0;
}
.how-to__inner .how-to-list__item.-anime-on:nth-of-type(2)
{
    transition: 1s .4s;
}
.how-to__inner .how-to-list__item.-anime-on:last-of-type
{
    transition: 1s .8s;
}
.how-to__inner .how-to-list__item--image
{
    display: block;

    width: 126px;
    height: auto;
    margin-bottom: 29px;
}
.how-to__inner .how-to-list__item--image > img
{
    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.how-to__inner .how-to-list__item--text
{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: 200%;

    letter-spacing: 1.4px;
}
.how-to__inner .how-to-annotation
{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 180%;

    letter-spacing: 1.44px;

    font-feature-settings: 'halt' on;
}

.acne-uv-powder > .point
{
    position: relative;

    display: block;

    width: 100%;
    height: auto;
    padding-top: 442px;
}
.point__inner
{
    display: block;

    width: 100%;
    max-width: 892px;
    height: auto;
    margin: 0 auto;
}
.point__inner .point-list
{
    margin-bottom: 248px;
}
.point__inner .point-list__item
{
    transition: 1s;
    transform: translateY(40px);

    opacity: 0;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, .5);
}
.point__inner .point-list__item.-anime-on
{
    transition: 1s;
    transform: translateY(0);

    opacity: 1;
}
.point__inner .point-list__item:not(:last-of-type)
{
    margin-bottom: 140px;
}
.point__inner .point-list__item:first-of-type .point-list__item--inner::after
{
    background-image: url(../images/acneuvpowder/point_01.svg);
}
.point__inner .point-list__item:nth-of-type(2) .point-list__item--inner::after
{
    background-image: url(../images/acneuvpowder/point_02.svg);
}
.point__inner .point-list__item:last-of-type .point-list__item--inner .point-lead
{
    margin-bottom: 30px;
}
/* .point__inner .point-list__item:last-of-type .point-list__item--inner::after
{
    background-image: url(../images/acneuvpowder/point_03.svg);
} */
.point__inner .point-list__item--inner
{
    position: relative;

    padding: 84px 80px 97px;
}
.point__inner .point-list__item--inner::before
{
    position: absolute;
    top: -40px;
    right: 0;
    left: 0;

    display: block;

    width: 178px;
    height: 40px;
    margin: 0 auto;

    content: '';

    opacity: .9;
    background-image: url(../images/acneuvpowder/opacity_circle.png);
    background-size: contain;
    background-repeat: no-repeat;
}
.point__inner .point-list__item--inner::after
{
    position: absolute;
    top: -21px;
    right: 0;
    left: 0;

    display: block;

    width: 55px;
    height: 70px;
    margin: 0 auto;

    content: '';

    background-size: contain;
    background-repeat: no-repeat;
}
.point__inner .point-list__item--inner .point-title
{
    font-family: 'Noto Serif JP', serif;
    font-size: 27px;
    font-weight: 400;
    font-style: normal;
    line-height: 190%;

    margin-bottom: 50px;

    text-align: center;
    letter-spacing: 8.1px;
}
.point__inner .point-list__item--inner .point-lead
{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 240%;

    margin-bottom: 20px;

    text-align: center;
    letter-spacing: 1.4px;
}
.point__inner .point-list__item--inner .point-component
{
    display: flex;

    margin-bottom: 56px;

    gap: 20px;
    justify-content: center;
}
.point__inner .point-list__item--inner .point-component__container
{
    position: relative;

    display: block;

    width: 336px;
    padding: 4px 8px 20px;

    text-align: center;

    background-color: #fff;
}
.point__inner .point-list__item--inner .point-component__container::before,
.point__inner .point-list__item--inner .point-component__container::after
{
    position: absolute;

    display: block;

    width: 40px;
    height: 52px;

    content: '';

    background-image: url(../images/acneuvpowder/corner_dott.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.point__inner .point-list__item--inner .point-component__container::before
{
    top: 7px;
    left: 7px;
}
.point__inner .point-list__item--inner .point-component__container::after
{
    right: 7px;
    bottom: 7px;

    transform: rotate(180deg);
}
.point__inner .point-list__item--inner .point-component__container .point-component-sub-title
{
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 44px;

    margin-bottom: -4px;

    letter-spacing: 1.4px;

    color: #f28787;
}
.point__inner .point-list__item--inner .point-component__container .point-component-title
{
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    line-height: 150%;

    margin-bottom: 11px;

    letter-spacing: 2px;

    color: #f28787;
    text-align: center;
}
.point__inner .point-list__item--inner .point-component__container .point-component-description
{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: 150%;

    letter-spacing: 1.4px;
}
.point__inner .point-list__item--inner .point-image
{
    display: block;
}
.point__inner .point-list__item--inner .point-image.-list-01
{
    width: 100%;
    max-width: 650px;
    height: auto;
    margin: 0 auto 73px;
}
.point__inner .point-list__item--inner .point-image.-list-02
{
    max-width: 548px;
    margin: 0 auto;
}
.point__inner .point-list__item--inner .point-image.-list-03
{
    max-width: 408px;
    margin: 0 auto;
}
.point__inner .point-list__item--inner .point-image > img
{
    width: 100%;
    height: auto;

    -o-object-fit: contain;
       object-fit: contain;
}
.point__inner .point-list__item--inner .point-description
{
    position: relative;

    width: 100%;
    max-width: 520px;
    height: 300px;
    margin: 0 auto;
    padding: 30px;

    background-color: rgba(255, 255, 255, .8);
}
.point__inner .point-list__item--inner .point-description::before
{
    position: absolute;
    top: -37px;
    left: -23px;

    display: block;

    width: 195px;
    height: 95px;

    content: '';

    background-image: url(../images/acneuvpowder/message.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.point__inner .point-list__item--inner .point-description::after
{
    position: absolute;
    right: 4px;
    bottom: -9px;

    display: block;

    width: 525px;
    height: 302px;

    content: '';

    background-image: url(../images/acneuvpowder/pink_dott_line.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.point__inner .point-list__item--inner .point-description__title
{
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    line-height: 200%; 
    position: relative;

    margin-bottom: 20px;

    text-align: center;
    letter-spacing: 4px;

    font-feature-settings: 'halt' on;
}
.point__inner .point-list__item--inner .point-description__title::after
{
    display: block;

    width: 96px;
    height: 2px;
    margin: 10px auto 0;

    content: '';

    border-bottom: 2px dotted #474143;
}
.point__inner .point-list__item--inner .point-description__text
{
    
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: 200%; 

    text-align: center;
    letter-spacing: 1.4px;
}
.point__inner .point-list__item--inner .point-description-image
{
    width: 100%;
    height: auto;
}
.point__inner .point-list__item--inner .point-description-image > img
{
    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.point .point-under-appeal
{
    position: relative;

    background-color: #e6ddd9;
}
.point .point-under-appeal::before
{
    position: absolute;
    z-index: -1;
    top: -68%;
    left: 0;

    display: block;

    width: 100vw;
    height: 500px;
    margin: 0 calc(50% - 50vw);

    content: '';
    transform: rotate(-180deg);

    background-image: url(../images/acneuvpowder/bg_02.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.point .point-under-appeal__inner
{
    display: flex;

    width: 100%;
    max-width: 1073px;
    height: auto;
    margin: 0 auto;
    padding: 120px 0;

    transition: 1s;
    transform: translateY(40px);

    opacity: 0;

    justify-content: space-between;
}
.point .point-under-appeal__inner.-anime-on
{
    transition: 1s;
    transform: translateY(0);

    opacity: 1;
}
.point .point-under-appeal__inner .point-appeal-image
{
    display: block;

    width: 547px;
    height: auto;
    margin-right: 40px;
}
.point .point-under-appeal__inner .point-appeal-image > img
{
    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.point .point-under-appeal__inner .point-appeal-text-container
{
    position: relative;
    left: -2px;

    padding-top: 107px;
}
.point .point-under-appeal__inner .point-appeal-text-container__title
{
    font-family: 'Noto Serif JP', serif;
    font-size: 26px;
    font-weight: 300;
    font-style: normal;
    line-height: 180%; 

    margin-bottom: 40px;

    letter-spacing: 5.2px;

    font-feature-settings: 'fwid' on;
}
.point .point-under-appeal__inner .point-appeal-text-container__description
{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    line-height: 230%; 

    letter-spacing: 1.6px;
}

.acne-uv-powder > .product
{
    display: block;

    width: 100%;
    height: auto;
    padding: 92px 0 100px;

    background-image: url(../images/acneuvpowder/bg_item_02.png);
    background-size: cover;
    background-repeat: no-repeat;
}
.product__title
{
    font-family: ivypresto-display, serif;
    font-size: 32px;
    font-weight: 400;
    font-style: normal;
    line-height: 44px; 

    margin-bottom: 40px;

    text-align: center;
    letter-spacing: 6.4px;
}
.product__inner
{
    display: flex;

    width: 100%;
    max-width: 1075px;
    height: auto;
    margin: 0 auto;
    padding: 30px 30px 34px 0;

    background-color: rgba(255, 255, 255, .3);
}
.product__inner--image
{
    display: block;

    width: 527px;
    height: auto;

    transition: 1s;
    transform: translateY(40px);

    opacity: 0;
}
.product__inner--image.-anime-on
{
    transition: 1s;
    transform: translateY(0);

    opacity: 1;
}
.product__inner--image > img
{
    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.product__inner--text
{
    padding-top: 65px;
    padding-left: 20px;
}
.product__inner--text .product-sub-title
{
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    line-height: normal;

    margin-bottom: 21px;

    letter-spacing: 2.88px;
}
.product__inner--text .product-name
{
    font-family: 'Noto Serif JP', serif;
    font-size: 30px;
    font-weight: 300;
    font-style: normal;
    line-height: 160%; 
    margin-bottom: 35px;

    letter-spacing: 4.5px;
}
.product__inner--text .product-name-en
{
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 300;
    font-style: normal;
    line-height: normal;

    margin-bottom: 10px;

    letter-spacing: .4px;
}
.product__inner--text .product-description
{
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: normal;

    letter-spacing: 1.4px;
}
.product__inner--text .product-price
{
    font-family: 'Noto Serif JP', serif;
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: normal;

    margin-bottom: 60px;

    letter-spacing: 1.4px;
}
.product__inner--text .product-button
{
    position: relative;

    display: flex;

    width: 206px;
    height: 42px;
    padding: 0 20px;

    transition: .6s;

    background-color: #312c2d;

    align-items: center;
}
.product__inner--text .product-button::after
{
    position: absolute;
    right: 8px;

    display: block;

    width: 12px;
    height: 12px;

    content: '';

    background-image: url(../images/acneuvpowder/icon_white_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
}
.product__inner--text .product-button > span
{
    font-family: source-sans-pro, sans-serif;
    font-size: 14px;
    font-weight: 600;
    font-style: normal;
    line-height: normal;

    letter-spacing: 1.4px;

    color: #fff;
}

@media print, screen and (min-width: 1025px)
{
  .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text__button:hover
    {
        transition: .6s;

        opacity: .6;
    }
    .product__inner--text .product-button:hover
    {
        transition: .6s;

        opacity: .6;
    }
}

@media (min-width: 768px) and (max-width: 1279px)
{
  .acne-uv-powder > .fv .kv__inner .kv-text
    {
        right: -4vw;
    }
    .acne-uv-powder > .fv .kv__inner .kv-text__name
    {
        font-size: max(3.59vw, 30px);
        line-height: 5.55vw;
    }
    .acne-uv-powder > .fv .kv__inner .kv-image
    {
        width: max(41.41vw, 380px);
        height: auto;
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner
    {
        padding: 20px 10px 30px 92px;
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-image
    {
        left: -42px;

        width: 36.46vw;
        height: auto;
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text
    {
        margin-left: -80px;
        padding-left: 0;
    }
}
@media screen and (max-width: 1024px)
{
  .acne-uv-powder > .fv .detail::before
    {
        display: none;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item:last-of-type .detail-list__item--inner::after
    {
        position: absolute;
        z-index: -1;
        top: -220px;
        left: -51px;

        width: 345px;
        height: 480px;

        background-image: url(../images/acneuvpowder/powder_sp.png);
        background-size: cover;
    }
}
@media (min-width: 768px) and (max-width: 1024px)
{
  .acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-description__title
    {
        font-size: max(2.73vw, 24px);
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-description__image-under
    {
        width: 100%;
        max-width: 390px;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-image
    {
        width: 42.58vw;
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text__catch
    {
        font-size: 1.56vw;
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text__name
    {
        font-size: 2.93vw;
    }
    .how-to__inner
    {
        padding: 0 30px 0;
    }
    .point__inner .point-list
    {
        padding: 0 30px 0;
    }
    .point .point-under-appeal
    {
        padding: 0 30px;
    }
    .product
    {
        padding: 92px 30px 100px;
    }
    .product__inner--image
    {
        width: 51.46vw;
    }
    .product__inner--text .product-sub-title
    {
        font-size: 1.56vw;
    }
    .product__inner--text .product-name
    {
        font-size: 2.93vw;
    }
}

@media screen and (max-width: 767px)
{
  .acne-uv-powder .SPshow
    {
        display: block;
    }
    .acne-uv-powder .PCshow
    {
        display: none;
    }
    .acne-uv-powder .fixed-bg
    {
        width: 100vw;
        margin: 0 calc(50% - 50vw);
    }
    .acne-uv-powder > .fv::after
    {
        height: 1060px;

        background-image: url(../images/acneuvpowder/bg_01_sp.png);
    }
    .acne-uv-powder > .fv .kv
    {
        margin-bottom: 67px;
    }
    .acne-uv-powder > .fv .kv__inner
    {
        flex-direction: column-reverse;
    }
    .acne-uv-powder > .fv .kv__inner .kv-text
    {
        right: 0;

        padding-top: 0;
    }
    .acne-uv-powder > .fv .kv__inner .kv-text::after
    {
        top: -27px;
        right: 0;
        left: -48px;

        width: 180vw;
        max-width: 460px;
    }
    .acne-uv-powder > .fv .kv__inner .kv-text__catch
    {
        font-size: min(3.85vw, 15px);

        text-align: center;
        letter-spacing: 1.2px;
    }
    .acne-uv-powder > .fv .kv__inner .kv-text__name
    {
        font-size: min(8.21vw, 32px);
        line-height: 51px; 

        margin-bottom: 26px;

        text-align: center;
        letter-spacing: .64px;

        text-shadow: .622px 1.243px 0 #fff;
    }
    .acne-uv-powder > .fv .kv__inner .kv-text__name-small
    {
        font-size: min(3.85vw, 15px);
    }
    .acne-uv-powder > .fv .kv__inner .kv-text__name-small > span
    {
        font-size: min(3.33vw, 13px);
    }
    .acne-uv-powder > .fv .kv__inner .kv-image
    {
        top: -29px;
        right: 8px;

        width: 111vw;
        max-width: 432px;
        height: auto;
        margin: 0 calc(50% - 50vw);
    }
    .acne-uv-powder > .fv .lead
    {
        margin-bottom: 69px;
    }
    .acne-uv-powder > .fv .lead__inner .lead-title
    {
        font-size: min(6.15vw, 24px);
        line-height: 156%;

        margin-left: 0;

        text-align: center;
        letter-spacing: 4.8px;
    }
    .acne-uv-powder > .fv .lead__inner .lead-title-small
    {
        font-size: min(4.1vw, 16px);
        line-height: 184%;

        letter-spacing: 3.2px;
    }
    .acne-uv-powder > .fv .detail__inner::before
    {
        bottom: -880px;

        background-size: contain;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list
    {
        background-color: #f7efeb;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item:not(:last-of-type)
    {
        margin-bottom: 86px;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item:first-of-type
    {
        position: relative;
        z-index: 10;

        padding-left: 0;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item:first-of-type .detail-list__item--inner
    {
        flex-direction: column-reverse;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item:first-of-type .detail-list__item--inner .detail-description
    {
        position: relative;
        z-index: 2;

        margin-top: -52px;
        padding: 0 50px;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item:first-of-type .detail-list__item--inner .detail-description__image
    {
        width: 220px;
        margin-bottom: 23px;
        margin-left: -22px;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item:first-of-type .detail-list__item--inner .detail-description__title
    {
        margin-bottom: 18px;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item:first-of-type .detail-list__item--inner .detail-image
    {
        width: 290px;
        margin: 0 auto;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item:last-of-type .detail-list__item--inner::after
    {
        top: -132px !important;
        left: 0 !important;

        width: 183px !important;
        height: 270px !important;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item:last-of-type .detail-list__item--inner
    {
        flex-direction: column;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item:last-of-type .detail-list__item--inner .detail-description
    {
        right: auto;

        margin-top: -37px;
        padding: 0 32px;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item:last-of-type .detail-list__item--inner .detail-description__image
    {
        width: 273px;
        margin-top: -8px;
        margin-bottom: 20px;
        margin-left: -4px;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item:last-of-type .detail-list__item--inner .detail-description__title
    {
        margin-bottom: 19px;
        padding: 0 18px;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item:last-of-type .detail-list__item--inner .detail-image
    {
        left: auto;

        width: 290px;
        margin: 0 auto;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-description
    {
        max-width: 390px;
        margin: 0 auto;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-description__title
    {
        font-size: min(5.38vw, 21px);

        letter-spacing: 2.263px;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-description__title > span
    {
        font-size: min(4.62vw, 18px);

        letter-spacing: 2.263px;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-description__list--item
    {
        font-size: 14px;

        position: relative;

        display: block;

        padding-bottom: 6px;
        padding-left: 23px;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-description__list--item .strong-text
    {
        display: inline;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-description__list--item:not(:last-of-type)
    {
        margin-bottom: 13px;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-description__list--item::before
    {
        position: absolute;
        top: 5px;
        left: 0;

        width: 17px;
        height: 15px;
    }
    .acne-uv-powder > .fv .detail__inner--container .detail-list__item--inner .detail-description__image-under
    {
        width: 100%;
        max-width: 390px;
    }
    .acne-uv-powder > .fv .detail .cta-middle
    {
        max-width: 390px;
        margin: 0 auto;
        padding-top: 141px;
    }
    .acne-uv-powder > .fv .detail .cta-middle::before
    {
        bottom: -200px;

        height: 200px;

        background-size: contain;
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner
    {
        padding: 0 28px 0 20px;
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents::after
    {
        display: none;
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner
    {
        flex-direction: column;

        padding: 0 18px 70px;
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner::before
    {
        display: none;
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-image
    {
        top: -6px;
        bottom: 0;
        left: -11px;

        width: 100%;
        height: auto;
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text
    {
        margin-top: -33px;
        padding-top: 0;
        padding-left: 11px;
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text__catch
    {
        font-size: min(3.59vw, 14px);
        line-height: 160%; 

        margin-bottom: 13px;

        letter-spacing: 2.24px;
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text__name
    {
        font-size: min(6.41vw, 25px);
        line-height: 170%; 

        margin-bottom: 29px;

        letter-spacing: 2px;
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text__name-en
    {
        font-size: min(4.1vw, 16px);

        letter-spacing: .32px;
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text__description
    {
        font-size: min(3.85vw, 15px);

        letter-spacing: 1.5px;
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text__price
    {
        font-size: min(3.85vw, 15px);

        margin-bottom: 31px;

        letter-spacing: 1.5px;
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text__button
    {
        width: 290px;
        height: 65px;
        margin: 0 auto;
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text__button::after
    {
        right: 26px;

        width: 21px;
        height: 21px;
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text__button > span
    {
        font-size: 16px;
    }
    .how-to
    {
        max-width: 390px;
        margin: 0 auto;
        padding-top: 31px;
        padding-right: 28px;
        padding-bottom: 21px;
        padding-left: 28px;
    }
    .how-to__title
    {
        font-size: 28px;
        line-height: 44px; 

        margin-bottom: 39px;

        letter-spacing: 5.6px;
    }
    .how-to__inner .how-to-list
    {
        flex-direction: column;

        margin-bottom: 60px;
    }
    .how-to__inner .how-to-list__item
    {
        flex-direction: row;

        width: 100%;

        align-items: flex-start;
    }
    .how-to__inner .how-to-list__item:not(:last-of-type)
    {
        margin-bottom: 39px;
    }
    .how-to__inner .how-to-list__item--image
    {
        width: min(18.21vw, 71px);
        margin-bottom: 0;
    }
    .how-to__inner .how-to-list__item--text
    {
        line-height: 180%;

        display: block;

        width: calc(100% - 71px);
        padding-left: 20px;
    }
    .how-to__inner .how-to-annotation
    {
        display: block;

        width: 285px;
        margin: 0 auto;
    }
    .acne-uv-powder > .point
    {
        max-width: 390px;
        margin: 0 auto;
        padding: 110px 16px 0;
    }
    .point__inner .point-list
    {
        margin-bottom: 99px;
    }
    .point__inner .point-list__item:not(:last-of-type)
    {
        margin-bottom: 85px;
    }
    .point__inner .point-list__item:nth-of-type(2) .point-list__item--inner
    {
        padding: 72px 20px 52px;
    }
    .point__inner .point-list__item:last-of-type .point-list__item--inner
    {
        padding: 72px 20px 44px;
    }
    .point__inner .point-list__item--inner
    {
        padding: 72px 20px 89px;
    }
    .point__inner .point-list__item--inner .point-title
    {
        font-size: min(5.64vw, 22px);
        line-height: 180%;

        margin-bottom: 30px;

        letter-spacing: 3.96px;
    }
    .point__inner .point-list__item--inner .point-lead
    {
        font-size: min(3.59vw, 14px);
        line-height: 200%; 

        margin-bottom: 0;
        padding: 0 11px;

        letter-spacing: 2.24px;
    }
    .point__inner .point-list__item--inner .point-component
    {
        flex-direction: column;

        margin-bottom: 19px;
        padding-top: 21px;

        gap: 10px;
    }
    .point__inner .point-list__item--inner .point-component__container
    {
        width: 100%;
    }
    .point__inner .point-list__item--inner .point-image.-list-01
    {
        max-width: 290px;
        margin: 0 auto 22px;
    }
    .point__inner .point-list__item--inner .point-image.-list-02
    {
        max-width: 290px;
    }
    .point__inner .point-list__item--inner .point-image.-list-03
    {
        max-width: 290px;
    }
    .point__inner .point-list__item--inner .point-description
    {
        height: auto;
        padding: 30px 26px;
    }
    .point__inner .point-list__item--inner .point-description::after
    {
        right: 8px;
        bottom: -9px;

        width: 81.72vw;
    }
    .point__inner .point-list__item--inner .point-description__title
    {
        font-size: 4.62;
    }
    .point__inner .point-list__item--inner .point-description-image
    {
        position: relative;
        left: -12px;

        width: 100vw;
        max-width: 329px;
        margin: 0 auto;
    }
    .point .point-under-appeal
    {
        width: 100vw;
        margin: 0 calc(50% - 50vw);
    }
    .point .point-under-appeal::before
    {
        top: -120px;

        height: 120px;

        background-size: cover;
    }
    .point .point-under-appeal__inner
    {
        flex-direction: column-reverse;

        max-width: 390px;
        margin: 0 auto;
        padding: 0 0 80px;
        padding-left: 32px;
    }
    .point .point-under-appeal__inner .point-appeal-image
    {
        width: 100%;
        max-width: 350px;
        margin-right: 0;
        margin-left: auto;
    }
    .point .point-under-appeal__inner .point-appeal-text-container
    {
        padding-top: 0;
    }
    .point .point-under-appeal__inner .point-appeal-text-container__title
    {
        font-size: min(5.64vw, 22px);
        line-height: 180%; 

        margin-bottom: 19px;

        letter-spacing: 4.4px;
    }
    .point .point-under-appeal__inner .point-appeal-text-container__description
    {
        font-size: min(3.59vw, 14px);
        line-height: 200%; 

        margin-bottom: 35px;

        letter-spacing: 1.4px;
    }
    .product.-lp
    {
        padding: 92px 16px 50px;

        background-image: url(../images/acneuvpowder/bg_item_02_sp.png);
    }
    .product__title
    {
        font-size: 28px;
        line-height: 44px; 

        margin-bottom: 18px;

        letter-spacing: 5.6px;
    }
    .product__inner
    {
        flex-direction: column;

        max-width: 390px;
        padding: 30px 0 71px 0;
    }
    .product__inner--image
    {
        position: relative;
        top: -29px;
        right: 17px;

        width: 111vw;
        max-width: 432px;
        height: auto;
        margin: 0 calc(50% - 50vw);
    }
    .product__inner--text
    {
        margin-top: -78px;
        padding-top: 0;
        padding-right: 30px;
        padding-left: 30px;
    }
    .product__inner--text .product-sub-title
    {
        font-size: min(3.59vw, 14px);
        line-height: 160%; 

        margin-bottom: 11px;

        letter-spacing: 2.24px;
    }
    .product__inner--text .product-name
    {
        font-size: min(6.41vw, 25px);
        line-height: 170%; 

        margin-bottom: 30px;

        letter-spacing: 2px;
    }
    .product__inner--text .product-name-en
    {
        font-size: min(4.1vw, 16px);

        letter-spacing: .32px;
    }
    .product__inner--text .product-description
    {
        font-size: min(3.85vw, 15px);

        letter-spacing: 1.5px;
    }
    .product__inner--text .product-price
    {
        font-size: min(3.85vw, 15px);

        margin-bottom: 29px;

        letter-spacing: 1.5px;
    }
    .product__inner--text .product-button
    {
        width: 290px;
        height: 65px;
        margin: 0 auto;
    }
    .product__inner--text .product-button::after
    {
        right: 26px;

        width: 21px;
        height: 21px;
    }
    .product__inner--text .product-button > span
    {
        font-size: 16px;
    }
}

@media (min-width: 431px) and (max-width: 767px)
{
  .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents::before
    {
        right: -11px;
        bottom: -15px;

        height: 647px;

        background-image: url(../images/acneuvpowder/bg_item_01_sp.png);
    }
    .how-to
    {
        max-width: 100%;
    }
    .product__inner--image
    {
        width: 100%;
        margin: 0 auto;
    }
}
@media screen and (max-width: 430px)
{
  .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents::before
    {
        right: -11px;
        bottom: -15px;

        height: 735px;

        background-image: url(../images/acneuvpowder/bg_item_01_sp.png);
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-image
    {
        width: 104vw;
        margin: 0 calc(50% - 50vw);
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text__catch
    {
        font-size: 3.26vw;
    }
    .acne-uv-powder > .fv .detail .cta-middle__inner .cta-middle-contents__inner .cta-middle-contents-text__name
    {
        font-size: 5.58vw;
    }
    .how-to
    {
        max-width: 100%;
    }
    .point__inner .point-list__item--inner .point-component__container .point-component-title
    {
        font-size: max(4.65vw, 18px);
    }
    .product__inner--text .product-sub-title
    {
        font-size: 3.26vw;
    }
    .product__inner--text .product-name
    {
        font-size: 5.58vw;
    }
}

/* 20240411 add */
.original_26 {
  border: 1px solid #B4A064;
  margin-top: 55px;
}

.original_26_title {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 230%; /* 32.2px */
  letter-spacing: 3.4px;
  background-color: #B4A064;
  padding: 1px 32px;
}

.original_26_inner {
  display: flex;
  padding-left: 32px;
}

.original_26_description {
  color: #434748;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 230%; /* 32.2px */
  letter-spacing: 3.4px;
  display: block;
  /* max-width: 384px; */
  width: calc(100% - 351px);
  padding-top: 20px;
  padding-bottom: 20px;
}

@media screen and (max-width: 768px) {
  .original_26 {
    margin-top: 25px;
  }

  .original_26_inner {
    flex-direction: column;
    padding-left: 0;
  }

  .original_26_title {
    font-size: 19px;
    padding: 1px 0;
    text-align: center;
  }

  .original_26_description {
    width: 100%;
    padding-left: 19px;
    padding-right: 19px;
    padding-bottom: 0;
  }
}

.subscription .benefit .item__num {
  width: 100px;
  padding-left: 7px;
}

@media screen and (max-width: 768px) {
  .subscription .benefit .item__num {
    width: 100%;
    margin-top: 18px;
    padding-left: 5px;
  }

  .subscription .benefit .item__num::before {
    top: -15px;
  }
}

/* 240514 add */
.sale-label {
  color: #333;
  font-family: YuGothic;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  background: #ffdbdb;
  height: auto;
  width: fit-content;
  padding: 4px 10px 2px;
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}

@media screen and (max-width: 430px) {
  .sale-label {
    font-size: 12px;
    margin-top: -22px;
    margin-bottom: 6px;
    padding: 4px 10px 3px;
  }
}

/* 240520 add */
.SPshow
{
    display: none;
}

.PCshow
{
    display: block;
}

.cart-recommend
{
    display: block;

    width: 100%;
    height: auto;

    background-color: #f9fafa;
}
.cart-recommend__inner
{
    display: block;

    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
    padding: 60px 0 100px;
}
.cart-recommend__inner .cart-recommend-title
{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 36px;
    font-weight: 100;
    font-style: normal;
    line-height: normal;

    margin-bottom: 50px;

    text-align: center;
    letter-spacing: 3.6px;
}
.cart-recommend__inner .cart-recommend-list
{
    display: flex;

    flex-wrap: wrap;
}
.cart-recommend__inner .cart-recommend-list__item
{
    width: calc(33.3333333333% - 14px);
    height: auto;
    margin-right: 20px;
    margin-bottom: 30px;
    padding-bottom: 43px;

    border: 1px solid var(--line-e5, #e5e5e5);
    background: var(--fff, #fff);
}
.cart-recommend__inner .cart-recommend-list__item:nth-of-type(3),
.cart-recommend__inner .cart-recommend-list__item:nth-of-type(10)
{
    margin-right: 0;
}
.cart-recommend__inner .cart-recommend-list__item--inner
{
    display: flex;
    flex-direction: column;

    height: 100%;

    text-align: center;
}
.cart-recommend__inner .cart-recommend-list__item--inner .recommend-category
{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    line-height: normal;

    display: block;

    padding: 10px 4px;

    text-align: center;

    color: var(--black-text, #333);
    border-bottom: 1px solid #e5e5e5;
}
.cart-recommend__inner .cart-recommend-list__item--inner .recommend-category.-chain
{
    display: none;
}
.cart-recommend__inner .cart-recommend-list__item--inner .recommend-data
{
    display: block;

    padding: 11px 24px 0;

    transition: .3s;
}
.cart-recommend__inner .cart-recommend-list__item--inner .recommend-data__image
{
    display: block;

    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
}
.cart-recommend__inner .cart-recommend-list__item--inner .recommend-data__image > img
{
    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.cart-recommend__inner .cart-recommend-list__item--inner .recommend-data__name
{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: normal;

    margin-bottom: 2px;

    text-align: center;

    color: var(--black-text, #333);

    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
}
.cart-recommend__inner .cart-recommend-list__item--inner .recommend-data__price
{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 350;
    font-style: normal;
    line-height: normal;

    margin-bottom: 18px;

    text-align: center;

    color: var(--black-text, #333);
}
.cart-recommend__inner .cart-recommend-list__item--inner .recommend-add-button-container
{
    display: flex;

    margin-top: auto;

    justify-content: center;
}
.cart-recommend__inner .cart-recommend-list__item--inner .recommend-add-button-container > a
{
    font-size: 15px;

    display: flex;

    padding: 2px 12px;

    transition: .3s;

    color: #fff;
    background-color: #131313;

    align-items: center;
    justify-content: center;
}
.cart-recommend__inner .cart-recommend-list__item-chain
{
    display: block;

    width: 100%;
    margin-bottom: 30px;

    border: 1px solid var(--line-e5, #e5e5e5);
    background-color: #fff;
}
.cart-recommend__inner .cart-recommend-list__item-chain.-item02
{
    width: 66%;
}
.cart-recommend__inner .cart-recommend-list__item-chain.-item02 > .cart-recommend-list__item-chain--list > .recommend-chain-item
{
    width: 50%;
}
.cart-recommend__inner .cart-recommend-list__item-chain--category
{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    line-height: normal;

    display: block;

    padding: 10px 4px;

    text-align: center;

    color: var(--black-text, #333);
    border-bottom: 1px solid #e5e5e5;
}
.cart-recommend__inner .cart-recommend-list__item-chain--list
{
    display: flex;
}
.cart-recommend__inner .cart-recommend-list__item-chain--list .recommend-chain-item
{
    position: relative;

    width: 33.3333333333%;
    padding-bottom: 43px;
}
.cart-recommend__inner .cart-recommend-list__item-chain--list .recommend-chain-item:not(:last-of-type)::after
{
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;

    display: block;

    width: 1px;
    height: 326px;
    margin: auto 0;

    content: '';

    background-color: #e5e5e5;
}
@media screen and (max-width: 767px)
{
    .SPshow
    {
        display: block;
    }
    .PCshow
    {
        display: none;
    }
    .cart-recommend__inner
    {
        padding: 40px 15px 50px;
    }
    .cart-recommend__inner .cart-recommend-title
    {
        font-family: 'Noto Sans JP', sans-serif;
        font-size: 30px;
        font-weight: 100;
        font-style: normal;
        line-height: normal;

        margin-bottom: 23px;

        text-align: center;
        letter-spacing: 3px;

        color: var(--black-text, #333);
    }
    .cart-recommend__inner .cart-recommend-list
    {
        justify-content: space-between;
    }
    .cart-recommend__inner .cart-recommend-list__item
    {
        width: calc(50% - 4px);
        margin-right: unset;
        margin-bottom: 20px;
        padding-bottom: 16px;
    }
    .cart-recommend__inner .cart-recommend-list__item--inner .recommend-category
    {
        font-size: 15px;

        padding: 3px 4px;
    }
    .cart-recommend__inner .cart-recommend-list__item--inner .recommend-category.-chain
    {
        display: block;
    }
    .cart-recommend__inner .cart-recommend-list__item--inner .recommend-data
    {
        padding: 11px 17px 0;
    }
    .cart-recommend__inner .cart-recommend-list__item--inner .recommend-data__name
    {
        font-size: 14px;

        text-align: left;
    }
    .cart-recommend__inner .cart-recommend-list__item--inner .recommend-data__price
    {
        font-size: 12px;

        text-align: left;
    }
    .cart-recommend__inner .cart-recommend-list__item--inner .recommend-add-button-container > a
    {
        font-size: 13px;

        padding: 2px 20px;
    }
    .cart-recommend__inner .cart-recommend-list__item-chain
    {
        display: none;
    }
}
@media (min-width: 768px) and (max-width: 1024px)
{
    .cart-recommend__inner
    {
        padding: 60px 40px 100px;
    }
}
@media print, screen and (min-width: 1025px)
{
    .cart-recommend__inner .cart-recommend-list__item--inner .recommend-data:hover
    {
        transition: .3s;

        opacity: .6;
    }
    .cart-recommend__inner .cart-recommend-list__item--inner .recommend-data:hover .recommend-data__name
    {
        -webkit-text-decoration-line: none;
                text-decoration-line: none;
    }
    .cart-recommend__inner .cart-recommend-list__item--inner .recommend-add-button-container > a:hover
    {
        transition: .3s;

        opacity: .6;
    }
}
@media (min-width: 431px) and (max-width: 767px)
{
    .cart-recommend__inner .cart-recommend-list__item--inner .recommend-data__image
    {
        width: min(41.03vw, 160px);
        height: min(41.03vw, 160px);
    }
}
@media screen and (max-width: 430px)
{
    .cart-recommend__inner .cart-recommend-list__item--inner .recommend-data__image
    {
        width: auto;
        height: min(35.9vw, 146px);
        max-height: 146px;
    }
}

/* 240522 add */
.new-my-page-menu,
.new-my-page-menu-bg
{
    display: block;

    width: 100%;
    height: auto;
    padding: 0 0 60px;
}
.new-my-page-menu__inner,
.new-my-page-menu-bg__inner
{
    display: block;

    max-width: 100%;
    margin: 0 auto;
}
.new-my-page-menu__inner .new-menu-under-page-title,
.new-my-page-menu-bg__inner .new-menu-under-page-title
{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 26px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%; /* 26px */

    margin-bottom: 25px;

    color: var(--333, #333);
}
.new-my-page-menu__inner .new-menu-nav,
.new-my-page-menu-bg__inner .new-menu-nav
{
    display: block;

    width: 100%;
    height: auto;

    background-color: #fff;
}
.new-my-page-menu__inner .new-menu-nav__title,
.new-my-page-menu-bg__inner .new-menu-nav__title
{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%; /* 13px */

    position: relative;

    padding: 12px 12px 12px 48px;

    letter-spacing: 2.6px;

    color: #fff;
    background-color: #333;
}
.new-my-page-menu__inner .new-menu-nav__title.-shopping::before,
.new-my-page-menu__inner .new-menu-nav__title.-regular::before,
.new-my-page-menu__inner .new-menu-nav__title.-member::before,
.new-my-page-menu__inner .new-menu-nav__title.-contact::before,
.new-my-page-menu-bg__inner .new-menu-nav__title.-shopping::before,
.new-my-page-menu-bg__inner .new-menu-nav__title.-regular::before,
.new-my-page-menu-bg__inner .new-menu-nav__title.-member::before,
.new-my-page-menu-bg__inner .new-menu-nav__title.-contact::before
{
    position: absolute;
    top: 0;
    left: 8px;

    display: block;

    width: 36px;
    height: 36px;

    content: '';

    background-size: contain;
}
.new-my-page-menu__inner .new-menu-nav__title.-shopping::before,
.new-my-page-menu-bg__inner .new-menu-nav__title.-shopping::before
{
    background-image: url(../images/mypage/icon01.svg);
}
.new-my-page-menu__inner .new-menu-nav__title.-regular::before,
.new-my-page-menu-bg__inner .new-menu-nav__title.-regular::before
{
    background-image: url(../images/mypage/icon02.svg);
}
.new-my-page-menu__inner .new-menu-nav__title.-member::before,
.new-my-page-menu-bg__inner .new-menu-nav__title.-member::before
{
    background-image: url(../images/mypage/icon03.svg);
}
.new-my-page-menu__inner .new-menu-nav__title.-contact::before,
.new-my-page-menu-bg__inner .new-menu-nav__title.-contact::before
{
    background-image: url(../images/mypage/icon04.svg);
}
.new-my-page-menu__inner .new-menu-nav__list,
.new-my-page-menu-bg__inner .new-menu-nav__list
{
    border-right: 1px solid var(--line-gray, rgba(67, 71, 72, .1));
    border-left: 1px solid var(--line-gray, rgba(67, 71, 72, .1));
}
.new-my-page-menu__inner .new-menu-nav__list--item,
.new-my-page-menu-bg__inner .new-menu-nav__list--item
{
    border-bottom: 1px solid var(--line-gray, rgba(67, 71, 72, .1));
}
.new-my-page-menu__inner .new-menu-nav__list--item > a,
.new-my-page-menu-bg__inner .new-menu-nav__list--item > a
{
    /* jp/14px-Regular */
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 14px; /* 100% */

    position: relative;

    display: block;

    padding: 20px 24px;

    letter-spacing: 1.4px;

    color: var(--333, #333);
}
.new-my-page-menu__inner .new-menu-nav__list--item > a::before,
.new-my-page-menu-bg__inner .new-menu-nav__list--item > a::before
{
    position: absolute;
    top: 0;
    right: 11px;
    bottom: 0;

    display: block;

    width: 14px;
    height: 14px;
    margin: auto 0;

    content: '';

    background-image: url(../images/mypage/arrow.svg);
    background-size: contain;
}
.new-my-page-menu__inner .new-menu-nav__list--item > a > span,
.new-my-page-menu-bg__inner .new-menu-nav__list--item > a > span
{
    font-size: 11px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%; /* 11px */

    display: inline-block;

    letter-spacing: 1.1px;
}
.new-my-page-menu__inner .new-menu-nav__list--item > .js-logout-hook > .mypage-nav__link,
.new-my-page-menu-bg__inner .new-menu-nav__list--item > .js-logout-hook > .mypage-nav__link
{
    /* jp/14px-Regular */
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 14px; /* 100% */

    position: relative;

    display: block;

    width: 100%;
    padding: 20px 24px;

    text-align: left;
    letter-spacing: 1.4px;

    color: var(--333, #333);
    background-color: #fff;
}
.new-my-page-menu__inner .new-menu-nav__list--item > .js-logout-hook > .mypage-nav__link::before,
.new-my-page-menu-bg__inner .new-menu-nav__list--item > .js-logout-hook > .mypage-nav__link::before
{
    position: absolute;
    top: 0;
    right: 11px;
    bottom: 0;

    display: block;

    width: 14px;
    height: 14px;
    margin: auto 0;

    content: '';

    background-image: url(../images/mypage/arrow.svg);
    background-size: contain;
}
.new-my-page-menu__inner .new-menu-nav-to-withdrawal,
.new-my-page-menu-bg__inner .new-menu-nav-to-withdrawal
{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 12px;
    font-weight: 350;
    font-style: normal;
    line-height: 10px; /* 83.333% */

    display: block;

    width: -webkit-fit-content;
    width:    -moz-fit-content;
    width:         fit-content;
    margin-top: 12px;
    margin-left: auto;

    text-align: right;
    letter-spacing: 1.2px;

    color: var(--textgray, #434748);

    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
}

.new-my-page-menu-bg
{
    padding: 30px 20px 60px;

    background-color: #f6f6f6;
}

.nav-pc-withdrawal
{
    font-size: 13px;

    display: block;

    width: -webkit-fit-content;
    width:    -moz-fit-content;
    width:         fit-content;
    margin-top: 14px;
    margin-left: auto;

    color: #9b9b9b;
    border-bottom: 1px solid #9b9b9b;
}
.nav-pc-withdrawal:hover
{
    border-bottom: 1px solid rgba(0, 0, 0, 0);
}

.p-mypage .mypage-nav__link
{
    padding-right: 33px;
}

.p-mypage .mypage-nav__link > span
{
    font-size: 12px;

    display: inline-block;
}

@media screen and (max-width: 767px)
{
    .SPshow
    {
        display: block;
    }
    .PCshow
    {
        display: none;
    }
}

@media print, screen and (min-width: 1025px)
{
    .new-my-page-menu,
    .new-my-page-menu-bg
    {
        display: none;
    }
}

@media print, screen and (max-width: 1024px)
{
    .c-mypage-nav
    {
        display: none;
    }
}

@media screen and (max-width: 1024px)
{
    .mypage-contents__aside.-SPnone
    {
        display: none;
    }
}

.p-mypage .sp-row.-sp {
  margin-bottom: 12px;
}

/* 240523 add */
.p-information .infomation__lists {
  justify-content: center;
  gap: 30px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .p-information .infomation__lists .lists__item {
    width: 50%;
  }
}

@media screen and (max-width: 895px) {
.p-information .infomation__lists .lists__item {
    width: 100%;
    max-width: none;
}
}

.tag-kanto,
.tag-kansai,
.tag-chubu,
.tag-kyushu {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3px 10px;
  color: var(--fff, #FFF);
  font-family: "Noto Sans JP";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px; /* 116.667% */
  letter-spacing: 1.8px;
  border-radius: 2px;
}

.tag-kanto {
  background-color: #809FC6;
}

.tag-kansai {
  background-color: #EFA029;
}

.tag-chubu {
  background-color: #67C67C;
}

.tag-kyushu {
  background-color: #FA9191;
}

.p-information .schedule .item__week {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* width: 121px; */
}

.p-information .schedule .item__box {
  grid-template-columns: 121px 3fr;
  gap: 20px;
}

@media screen and (max-width: 767px) {
  .tag-kanto,
  .tag-kansai,
  .tag-chubu,
  .tag-kyushu {
    padding: 1px 7px;
    font-size: 10px;
    margin-left: 7px;
  }
  .p-information .schedule .item__week {
    /* max-width: 65px; */
    width: fit-content;
  }
  .p-information .schedule .item__box {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2px;
  }
  .p-information .schedule .lists__item {
    padding: 15px 0;
  }
  .sp-vertical {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

.button-black {
  background-color: #000!important;
  color: #fff!important;
}

.link-blue-text {
  color: #139ef5!important;
}

/* 240528 newmemberservice add */
.new-member
{
    font-family: 'Noto Sans JP', sans-serif;

    display: block;

    width: 100%;
    height: auto;
    padding: 60px 50px;

    background-color: rgba(67, 71, 72, .08);
    overflow: hidden;
}
.new-member__inner
{
    display: block;

    width: 100%;
    max-width: 1060px;
    height: auto;
    margin: 0 auto;
}
.new-member__inner .new-member-info
{
    display: block;

    width: 100%;
    height: auto;
    margin-bottom: 110px;
    padding: 0 50px;
}
.new-member__inner .new-member-info__contents
{
    max-width: 760px;
    margin: 0 auto;

    background: var(--fff, #fff);
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, .1);
}
.new-member__inner .new-member-info__contents--title
{
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    line-height: 150%; /* 27px */

    padding: 14px 10px;

    text-align: center;

    color: #fff;
    background: #ccba70;
}
.new-member__inner .new-member-info__contents--title > span
{
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    line-height: 150%; /* 30px */

    margin: 0 5px;

    letter-spacing: .8px;
}
.new-member__inner .new-member-info__contents .new-member-info-list
{
    display: block;

    width: 100%;
    max-width: 568px;
    height: auto;
    margin: 0 auto;
    padding: 39px 10px 49px;
}
.new-member__inner .new-member-info__contents .new-member-info-list__item:not(:last-of-type)
{
    margin-bottom: 28px;
}
.new-member__inner .new-member-info__contents .new-member-info-list__item--inner
{
    color: #333;
}
.new-member__inner .new-member-info__contents .new-member-info-list__item--inner > h3
{
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    line-height: 120%; /* 21.6px */

    margin-bottom: 7px;
    padding: 2px 8px 3px;

    letter-spacing: .7px;

    border-left: 4px solid #ccba70;
}
.new-member__inner .new-member-info__contents .new-member-info-list__item--inner > p
{
    font-size: 15px;
    font-weight: 350;
    font-style: normal;
    line-height: 160%; /* 24px */

    padding: 0 12px;

    letter-spacing: .7px;
}
.new-member__inner .new-member-lead
{
    display: block;

    width: 100%;
    height: auto;
    margin-bottom: 80px;
    padding: 0 50px;
}
.new-member__inner .new-member-lead__contents
{
    display: block;

    padding: 42px 40px 48px;

    text-align: center;

    border: 2px solid var(--line, #666a6a);
    border-radius: 8px;
    background: var(--fff, #fff);
}
.new-member__inner .new-member-lead__contents--title
{
    font-size: 32px;
    font-weight: 400;
    font-style: normal;
    line-height: 41.6px; /* 130% */

    margin-bottom: 29px;

    color: var(--black-text, #333);
    text-align: center;
}
.new-member__inner .new-member-lead__contents--description
{
    font-size: 16px;
    font-weight: 350;
    font-style: normal;
    line-height: 24px; /* 150% */

    color: var(--black-text, #333);
}
.new-member__inner .new-member-lead__contents--description:not(:last-of-type)
{
    margin-bottom: 15px;
}
.new-member__inner .new-member-introduction
{
    display: block;

    width: 100%;
    height: auto;
    margin-bottom: 96px;
    padding: 0 50px;
}
.new-member__inner .new-member-introduction__title
{
    font-size: 28px;
    font-weight: 350;
    font-style: normal;
    line-height: 42px; /* 150% */

    margin-bottom: 25px;

    text-align: center;
    letter-spacing: .7px;

    color: var(--black-text, #333);
}
.new-member__inner .new-member-introduction__list
{
    display: flex;

    gap: 8px;
}
.new-member__inner .new-member-introduction__list--item
{
    display: block;

    width: 25%;
    height: 300px;

    border-radius: 12px;
}
.new-member__inner .new-member-introduction__list--item .introduction-list-item-inner
{
    display: block;

    width: 100%;
    height: 100%;
    padding: 25px 10px 19px;

    text-align: center;

    color: #fff;
    background-image: url(../images/newmemberservice/gold-line-vertical.svg);
    background-position: center;
    background-size: contain;
}
.new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__title
{
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 150%; /* 24px */
}
.new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__title.-title-mb01
{
    margin-bottom: 17px;
}
.new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__title.-title-mb02
{
    margin-bottom: 27px;
}
.new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__title.-title-mb03
{
    margin-bottom: 34px;
    padding-top: 12px;
}
.new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__title.-title-mb04
{
    margin-bottom: 35px;
}
.new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__image
{
    display: flex;
    justify-content: center;
}
.new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__image.-image-mb01
{
    margin-bottom: 16px;
}
.new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__image.-image-mb02
{
    margin-bottom: 24px;
}
.new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__image.-image-mb03
{
    margin-bottom: 17px;
}
.new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__image.-image-mb04
{
    margin-bottom: 39px;
}
.new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__contents
{
    display: flex;

    justify-content: center;
}
.new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__contents--description
{
    font-size: 20.7px;
    font-weight: 500;
    font-style: normal;
    line-height: 140%; /* 28.98px */
}
.new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__contents--button
{
    position: relative;

    display: flex;

    width: 100%;
    max-width: 170px;
    height: 44px;
    margin: 0 auto;

    cursor: pointer;
    transition: .3s;

    background-color: #fff;

    align-items: center;
    justify-content: center;
}
.new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__contents--button::before
{
    font-size: 10px;
    font-weight: 500;
    font-style: normal;

    position: absolute;
    top: 1px;
    right: 14px;
    bottom: 0;

    display: block;

    height: -webkit-fit-content;
    height:    -moz-fit-content;
    height:         fit-content;
    margin: auto 0;

    content: '＞';

    color: #333;
}
.new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__contents--button > span
{
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 120%; /* 16.8px */

    margin-left: -8px;

    color: #333;
}
.new-member__inner .new-member-introduction .member-introduction-swiper
{
    position: relative;

    display: none;
}
.new-member__inner .new-member-introduction .member-introduction-swiper .swiper-wrapper
{
    padding-top: 0;
    padding-left: 48px;
}
.new-member__inner .new-member-introduction .member-introduction-swiper .swiper-wrapper .swiper-slide
{
    height: 280px;
}
.new-member__inner .new-member-introduction .member-introduction-swiper .swiper-wrapper .swiper-slide .introduction-list-item-inner
{
    position: relative;

    display: block;

    width: 100%;
    height: 100%;
    padding: 10px 10px 19px;

    text-align: center;

    color: #fff;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
.new-member__inner .new-member-introduction .member-introduction-swiper .swiper-wrapper .swiper-slide .introduction-list-item-inner.-bg01
{
    background-image: url(../images/newmemberservice/gold-line-vertical-sp-01.svg);
}
.new-member__inner .new-member-introduction .member-introduction-swiper .swiper-wrapper .swiper-slide .introduction-list-item-inner.-bg02
{
    background-image: url(../images/newmemberservice/gold-line-vertical-sp-02.svg);
}
.new-member__inner .new-member-introduction .member-introduction-swiper .swiper-wrapper .swiper-slide .introduction-list-item-inner.-bg03
{
    background-image: url(../images/newmemberservice/gold-line-vertical-sp-03.svg);
}
.new-member__inner .new-member-introduction .member-introduction-swiper .swiper-wrapper .swiper-slide .introduction-list-item-inner.-bg04
{
    background-image: url(../images/newmemberservice/gold-line-vertical-sp-04.svg);
}
.new-member__inner .new-member-introduction .member-introduction-swiper .swiper-wrapper .swiper-slide .introduction-list-item-inner__contents
{
    position: absolute;
    right: 0;
    bottom: 60px;
    left: 0;

    display: flex;

    margin: 0 auto;

    justify-content: center;
}
.new-member__inner .new-member-introduction .member-introduction-swiper .swiper-wrapper .swiper-slide .introduction-list-item-inner__contents--description
{
    font-size: 20.7px;
    font-weight: 500;
    font-style: normal;
    line-height: 140%; /* 28.98px */
}
.new-member__inner .new-member-introduction .member-introduction-swiper .swiper-wrapper .swiper-slide .introduction-list-item-inner__contents--button
{
    position: relative;

    display: flex;

    width: 100%;
    max-width: 170px;
    height: 44px;
    margin: 0 auto;

    background-color: #fff;

    align-items: center;
    justify-content: center;
}
.new-member__inner .new-member-introduction .member-introduction-swiper .swiper-wrapper .swiper-slide .introduction-list-item-inner__contents--button::before
{
    font-size: 10px;
    font-weight: 500;
    font-style: normal;

    position: absolute;
    top: 1px;
    right: 14px;
    bottom: 0;

    display: block;

    height: -webkit-fit-content;
    height:    -moz-fit-content;
    height:         fit-content;
    margin: auto 0;

    content: '＞';

    color: #333;
}
.new-member__inner .new-member-introduction .member-introduction-swiper .swiper-wrapper .swiper-slide .introduction-list-item-inner__contents--button > span
{
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 120%; /* 16.8px */

    margin-left: -8px;

    color: #333;
}
.new-member__inner .new-member-rank
{
    display: block;

    width: 100%;
    height: auto;
    margin-bottom: 93px;
    padding: 0 50px;
}
.new-member__inner .new-member-rank__icon-swipe
{
    position: absolute;
    z-index: 100;
    top: 204px;
    right: 0;
    left: 0;

    display: none;

    width: 132px;
    height: 95px;
    margin: 0 auto;
}
.new-member__inner .new-member-rank__icon-swipe.-hide
{
    display: none;
}
.new-member__inner .new-member-rank__icon-swipe > img
{
    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.new-member__inner .new-member-rank__title
{
    font-size: 28px;
    font-weight: 350;
    font-style: normal;
    line-height: 42px; /* 150% */

    margin-bottom: 25px;

    text-align: center;
    letter-spacing: .7px;

    color: var(--black-text, #333);
}
.new-member__inner .new-member-rank__contents
{
    display: flex;
    overflow: hidden;

    min-height: 405px;
    margin-bottom: 50px;

    border: 2px solid var(--line, #666a6a);
    border-radius: 10px;
    background-color: #fff;
}
.new-member__inner .new-member-rank__contents .table-sp-header
{
    display: none;
}
.new-member__inner .new-member-rank__contents .new-member-rank-table-header
{
    display: none;
}
.new-member__inner .new-member-rank__contents .new-member-rank-table-header > tbody
{
    display: block;

    width: 100%;
}
.new-member__inner .new-member-rank__contents .new-member-rank-table-header > tbody > tr
{
    display: block;

    width: 100%;

    color: #333;
}
.new-member__inner .new-member-rank__contents .new-member-rank-table-header > tbody > tr > th
{
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 110%;

    display: block;
    display: flex;

    width: 100%;
    height: 57px;

    border-bottom: 1px solid #b3b3b3;
    background-color: #e1e3e3;

    align-items: center;
    justify-content: center;
}
.new-member__inner .new-member-rank__contents .new-member-rank-table-header > tbody > tr > td
{
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 110%; /* 15.4px */

    display: block;
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 70px;
    padding-top: 15px;

    background-color: #fff;

    align-items: center;
    justify-content: flex-start;
}
.new-member__inner .new-member-rank__contents .new-member-rank-table-header > tbody > tr > td .icon-badge
{
    display: block;

    width: 26px;
    height: 30px;
    margin-top: 4px;
}
.new-member__inner .new-member-rank__contents .new-member-rank-table-header > tbody > tr > td .icon-badge > img
{
    display: block;

    width: 100%;
    height: 100%;
}
.new-member__inner .new-member-rank__contents .new-member-rank-table-header > tbody > tr:not(:last-of-type) > td
{
    border-bottom: 1px solid #b3b3b3;
}
.new-member__inner .new-member-rank__contents--inner
{
    display: flex;
    overflow: hidden;

    width: 100%;
    min-height: 405px;

    border-radius: 10px;
    background-color: #fff;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-header,
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data
{
    display: block;

    height: 100%;

    border-collapse: collapse;

    border-right: 1px solid #b3b3b3;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-header > tbody,
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody
{
    display: block;

    width: 100%;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-header > tbody > tr,
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr
{
    display: block;

    width: 100%;

    color: #333;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-header > tbody > tr > th,
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr > th
{
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 110%;

    display: block;
    display: flex;

    width: 100%;
    height: 57px;

    border-bottom: 1px solid #b3b3b3;
    background-color: #e1e3e3;

    align-items: center;
    justify-content: center;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-header > tbody > tr > td,
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr > td
{
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 110%; /* 15.4px */

    display: block;
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 80px;
    padding-top: 15px;

    align-items: center;
    justify-content: flex-start;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-header > tbody > tr > td .icon-badge,
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr > td .icon-badge
{
    display: block;

    width: 26px;
    height: 30px;
    margin-top: 4px;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-header > tbody > tr > td .icon-badge > img,
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr > td .icon-badge > img
{
    display: block;

    width: 100%;
    height: 100%;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-header > tbody > tr:not(:last-of-type) > td,
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr:not(:last-of-type) > td
{
    border-bottom: 1px solid #b3b3b3;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-header
{
    width: 182px;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data
{
    width: calc(100% - 182px);

    border-right: unset;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr
{
    display: grid;

    grid-template-columns: 320px 1fr 1fr 1fr;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr > th,
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr > td
{
    border-right: 1px solid #b3b3b3;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr > th:last-of-type,
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr > td:last-of-type
{
    border-right: unset;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr > td
{
    font-size: 17px;
    font-weight: 500;
    font-style: normal;
    line-height: 150%; /* 25.5px */

    padding-top: 0;

    letter-spacing: .34px;

    justify-content: center;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr > td:first-of-type
{
    align-items: flex-start;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr > td:first-of-type .rank-price
{
    padding-left: 77px;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr > td:first-of-type .rank-price > span
{
    font-size: 14px;
    font-weight: 350;
    font-style: normal;
    line-height: 120%; /* 16.8px */

    display: block;

    letter-spacing: .7px;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr > td .icon-image
{
    display: block;

    width: 20px;
    height: 20px;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr > td .icon-image > img
{
    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper
{
    width: 100%;
    width: calc(100% - 182px);

    background-color: rgba(67, 71, 72, .08);
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .sp-table
{
    display: none;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .sp-table > img
{
    display: block;

    width: 100%;
    height: auto;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data
{
    display: block;

    width: 100%;
    height: 100%;

    border-collapse: collapse;

    border-right: 1px solid #b3b3b3;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody
{
    display: block;

    width: 100%;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr
{
    display: block;

    width: 100%;

    color: #333;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr > th
{
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 110%;

    display: block;
    display: flex;

    width: 100%;
    height: 57px;

    border-bottom: 1px solid #b3b3b3;
    background-color: #e1e3e3;

    align-items: center;
    justify-content: center;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr > td
{
    font-size: 14px;
    font-weight: 500;
    font-style: normal;
    line-height: 110%; /* 15.4px */

    display: block;
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 80px;
    padding-top: 15px;

    background-color: #fff;

    align-items: center;
    justify-content: flex-start;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr > td .icon-badge
{
    display: block;

    width: 26px;
    height: 30px;
    margin-top: 4px;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr > td .icon-badge > img
{
    display: block;

    width: 100%;
    height: 100%;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr:not(:last-of-type) > td
{
    border-bottom: 1px solid #b3b3b3;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data
{
    border-right: unset;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr
{
    display: grid;

    grid-template-columns: 320px 1fr 1fr 1fr;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr > th,
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr > td
{
    border-right: 1px solid #b3b3b3;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr > th:last-of-type,
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr > td:last-of-type
{
    border-right: unset;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr > td
{
    font-size: 17px;
    font-weight: 500;
    font-style: normal;
    line-height: 150%; /* 25.5px */

    padding-top: 0;

    letter-spacing: .34px;

    justify-content: center;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr > td:first-of-type
{
    align-items: flex-start;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr > td:first-of-type .rank-price
{
    padding-left: 77px;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr > td:first-of-type .rank-price > span
{
    font-size: 14px;
    font-weight: 350;
    font-style: normal;
    line-height: 120%; /* 16.8px */

    display: block;

    letter-spacing: .7px;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr > td .icon-image
{
    display: block;

    width: 20px;
    height: 20px;
}
.new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr > td .icon-image > img
{
    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.new-member__inner .new-member-rank__other-contents .rank-other-benefits
{
    display: flex;

    margin-bottom: 7px;

    gap: 12px;
}
.new-member__inner .new-member-rank__other-contents .rank-other-benefits__item
{
    overflow: hidden;

    height: 263px;

    border-radius: 10px;
}
.new-member__inner .new-member-rank__other-contents .rank-other-benefits__item .benefits-item-inner
{
    display: flex;
    flex-direction: column;

    width: 100%;
    height: 100%;
    padding: 33px 0 26px;

    text-align: center;

    color: #fff;
    background-image: url(../images/newmemberservice/gold-line-wide.svg);
    background-position: center;
    background-size: contain;
}
.new-member__inner .new-member-rank__other-contents .rank-other-benefits__item .benefits-item-inner__title
{
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
    line-height: 36px; /* 150% */

    margin-bottom: 15px;

    color: #747474;
}
.new-member__inner .new-member-rank__other-contents .rank-other-benefits__item .benefits-item-inner__description
{
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    line-height: 24px; /* 133.333% */

    margin: auto 0;

    color: #676767;
}
.new-member__inner .new-member-rank__other-contents .rank-other-benefits__item .benefits-item-inner__annotation
{
    font-size: 13px;
    font-weight: 350;
    font-style: normal;
    line-height: 21px; /* 161.538% */

    margin-top: auto;
    padding: 0 45px;

    text-align: left;

    color: var(--black-text, #333);
}
.new-member__inner .new-member-rank__other-contents .rank-other-benefits-sp
{
    display: none;
}
.new-member__inner .new-member-rank__other-contents .rank-other-annotation__item:not(:last-of-type)
{
    margin-bottom: -5px;
}
.new-member__inner .new-member-rank__other-contents .rank-other-annotation__item > span
{
    font-size: 14px;
    font-weight: 350;
    font-style: normal;
    line-height: 1.7; /* 150% */

    display: inline-block;

    color: #333;
}
.new-member__inner .new-member-rank__other-contents .rank-other-annotation__item > span > a
{
    text-decoration: underline;

    color: #333;
}
.new-member__inner .new-member-structure
{
    display: block;

    border-radius: 8px;
    background: var(--fff, #fff);
}
.new-member__inner .new-member-structure__inner
{
    max-width: 800px;
    margin: 0 auto;
    padding: 35px 0 29px;
}
.new-member__inner .new-member-structure__inner .structure-lead
{
    width: -webkit-fit-content;
    width:    -moz-fit-content;
    width:         fit-content;
    margin: 0 auto;
    padding: 0 0 25px;
}
.new-member__inner .new-member-structure__inner .structure-lead__title
{
    font-size: 28px;
    font-weight: 350;
    font-style: normal;
    line-height: 42px; /* 150% */

    margin-bottom: 25px;

    text-align: center;
    letter-spacing: .7px;

    color: var(--black-text, #333);
}
.new-member__inner .new-member-structure__inner .structure-lead__description
{
    font-size: 14px;
    font-weight: 350;
    font-style: normal;
    line-height: 160%; /* 22.4px */

    letter-spacing: .28px;

    color: var(--black-text, #333);
}
.new-member__inner .new-member-structure__inner .structure-lead__description > span
{
    font-size: 15px;
    font-weight: 700;
    font-style: normal;
    line-height: 160%;

    letter-spacing: .3px;
}
.new-member__inner .new-member-structure__inner .structure-lead__description:last-of-type
{
    display: inline;

    background: linear-gradient(transparent 10%, #faeebc 0%);
}
.new-member__inner .new-member-structure__inner .structure-lead__description:not(:last-of-type)
{
    margin-bottom: 2px;
}
.new-member__inner .new-member-structure__inner .structure-image
{
    display: block;

    width: 100%;
    height: auto;
    margin-bottom: 12px;
}
.new-member__inner .new-member-structure__inner .structure-image > source,
.new-member__inner .new-member-structure__inner .structure-image > img
{
    width: 100%;
    height: 100%;
}
.new-member__inner .new-member-structure__inner .structure-annotation
{
    font-size: 13px;
    font-weight: 350;
    font-style: normal;
    line-height: 140%; /* 18.2px */

    letter-spacing: .26px;

    color: var(--black-text, #333);
}
.new-member__inner .new-member-structure__inner .structure-link
{
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    line-height: 160%; /* 20.8px */

    letter-spacing: .26px;

    color: var(--black-text, #333);

    -webkit-text-decoration-line: underline;
            text-decoration-line: underline;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction
{
    bottom: -52px;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet
{
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 8px);
}

/* .swiper-pagination-bullet
{
    opacity: 1;
    background: #fff;
} */

/* .swiper-pagination-bullet-active
{
    background: #82888a;
} */

@media screen and (max-width: 767px)
{
    .SPshow
    {
        display: block;
    }
    .PCshow
    {
        display: none;
    }
    .new-member
    {
        padding: 20px 20px 50px;
    }
    .new-member__inner
    {
        max-width: 390px;
        margin: 0 auto;
    }
    .new-member__inner .new-member-info
    {
        margin-bottom: 81px;
        padding: 0;
    }
    .new-member__inner .new-member-info__contents--title
    {
        font-size: 15px;

        padding: 9px 10px;
    }
    .new-member__inner .new-member-info__contents--title > span
    {
        font-size: 17px;
        font-weight: 500;
        font-style: normal;
        line-height: 135%; /* 25.5px */

        margin: 0 3px;

        letter-spacing: .68px;
    }
    .new-member__inner .new-member-info__contents .new-member-info-list
    {
        padding: 24px 29px 30px;
    }
    .new-member__inner .new-member-info__contents .new-member-info-list__item:not(:last-of-type)
    {
        margin-bottom: 23px;
    }
    .new-member__inner .new-member-info__contents .new-member-info-list__item--inner > h3
    {
        font-size: 15px;
        line-height: 110%; /* 16.5px */

        margin-bottom: 4px;
        padding: 0 8px 2px;

        letter-spacing: 0;
    }
    .new-member__inner .new-member-info__contents .new-member-info-list__item--inner > p
    {
        font-size: 13px;

        letter-spacing: .26px;
    }
    .new-member__inner .new-member-lead
    {
        margin-bottom: 42px;
        padding: 0;
    }
    .new-member__inner .new-member-lead__contents
    {
        padding: 18px 20px 28px;
    }
    .new-member__inner .new-member-lead__contents--title
    {
        font-size: 22px;
        font-weight: 350;
        font-style: normal;
        line-height: 140%; /* 30.8px */

        margin-bottom: 12px;
    }
    .new-member__inner .new-member-lead__contents--description
    {
        font-size: 13px;
        font-weight: 350;
        font-style: normal;
        line-height: 160%; /* 20.8px */

        letter-spacing: .26px;
    }
    .new-member__inner .new-member-lead__contents--description:not(:last-of-type)
    {
        margin-bottom: 9px;
    }
    .new-member__inner .new-member-introduction
    {
        margin-bottom: 73px;
        padding: 0;
    }
    .new-member__inner .new-member-introduction__title
    {
        font-size: 23px;
        font-weight: 350;
        font-style: normal;
        line-height: 140%; /* 32.2px */

        margin-bottom: 10px;

        letter-spacing: .7px;
    }
    .new-member__inner .new-member-introduction__list
    {
        display: none;
    }
    .new-member__inner .new-member-introduction .member-introduction-swiper
    {
        display: block;
    }
    .new-member__inner .new-member-rank
    {
        position: relative;

        margin-bottom: 39px;
        padding: 0;
    }
    .new-member__inner .new-member-rank__icon-swipe
    {
        display: block;
    }
    .new-member__inner .new-member-rank__title
    {
        font-size: 23px;
        font-weight: 350;
        font-style: normal;
        line-height: 140%; /* 32.2px */

        margin-bottom: 13px;

        letter-spacing: .7px;
    }
    .new-member__inner .new-member-rank__contents
    {
        position: relative;

        width: 100vw;
        margin-bottom: 39px;

        border: none;
    }
    .new-member__inner .new-member-rank__contents .table-sp-header
    {
        position: absolute;
        z-index: 10;
        top: 0;
        left: 0;

        display: block;
        overflow: auto;

        width: 97px;
        height: 100%;

        border-collapse: collapse;

        border-radius: 10px 0 0 10px;
    }
    .new-member__inner .new-member-rank__contents .new-member-rank-table-header
    {
        position: absolute;
        z-index: 10;
        top: 0;
        left: 0;

        display: block;
        overflow: auto;

        width: 95px;
        height: 100%;

        border-collapse: collapse;

        border-right: 1px solid #b3b3b3;
        border-radius: 10px 0 0 10px;
    }
    .new-member__inner .new-member-rank__contents--inner
    {
        position: relative;

        width: 100vw;
    }
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-header > tbody > tr > td,
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr > td
    {
        height: 70px;
    }
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-header
    {
        display: none;
    }
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data
    {
        width: 100%;
        padding-left: 33px;
    }
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr
    {
        grid-template-columns: 250px 92px 92px 152px;
    }
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr > td
    {
        font-size: 16px;
    }
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper
    {
        display: block;
        overflow-x: scroll;

        width: 100%;
    }
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .sp-table
    {
        display: block;

        width: 664px;
        height: 410px;
        padding-right: 40px;
    }
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data
    {
        display: none;
        overflow-x: scroll;
    }
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr > td
    {
        height: 70px;
    }
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data
    {
        width: 100%;
        padding-left: 33px;
    }
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr
    {
        grid-template-columns: 250px 92px 92px 152px;
    }
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr > td
    {
        font-size: 16px;
    }
    .new-member__inner .new-member-rank__other-contents .rank-other-benefits
    {
        display: none;
        flex-direction: column;

        margin-bottom: 15px;

        gap: 7px;
    }
    .new-member__inner .new-member-rank__other-contents .rank-other-benefits-sp
    {
        display: block;

        width: 100%;
        height: auto;
        margin-bottom: 14px;
    }
    .new-member__inner .new-member-rank__other-contents .rank-other-benefits-sp > img
    {
        display: block;

        width: 100%;
        height: 100%;

        -o-object-fit: contain;
           object-fit: contain;
    }
    .new-member__inner .new-member-rank__other-contents .rank-other-annotation__item > span
    {
        font-size: 13px;
    }
    .new-member__inner .new-member-structure__inner
    {
        padding: 20px 12px 20px;
    }
    .new-member__inner .new-member-structure__inner .structure-lead
    {
        padding: 0 4px 16px;
    }
    .new-member__inner .new-member-structure__inner .structure-lead__title
    {
        font-size: 23px;
        font-weight: 350;
        font-style: normal;
        line-height: 140%; /* 32.2px */

        margin-bottom: 19px;

        letter-spacing: .7px;
    }
    .new-member__inner .new-member-structure__inner .structure-lead__description
    {
        font-size: 13px;
        font-weight: 350;
        font-style: normal;
        line-height: 160%; /* 20.8px */

        letter-spacing: .26px;
    }
    .new-member__inner .new-member-structure__inner .structure-lead__description > span
    {
        font-size: 13px;
        font-style: normal;
        line-height: 160%; /* 20.8px */

        letter-spacing: .26px;
    }
    .new-member__inner .new-member-structure__inner .structure-lead__description:not(:last-of-type)
    {
        margin-bottom: 6px;
    }
    .new-member__inner .new-member-structure__inner .structure-image
    {
        margin-bottom: 10px;
    }
    .new-member__inner .new-member-structure__inner .structure-annotation
    {
        margin-bottom: 5px;
    }
}

@media (min-width: 768px) and (max-width: 1024px)
{
    .new-member__inner .new-member-lead
    {
        padding: 0;
    }
    .new-member__inner .new-member-introduction
    {
        padding: 0;
    }
    .new-member__inner .new-member-introduction__list--item
    {
        height: 29.3vw;
    }
    .new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__title
    {
        font-size: 1.4vw;
    }
    .new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__title.-title-mb01
    {
        margin-bottom: 1.66vw;
    }
    .new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__title.-title-mb02
    {
        margin-bottom: 2.64vw;
    }
    .new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__title.-title-mb03
    {
        margin-bottom: 3.32vw;
        padding-top: 1.17vw;
    }
    .new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__title.-title-mb04
    {
        margin-bottom: 3.42vw;
    }
    .new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__image
    {
        width: 12.01vw;
        max-width: 123px;
        margin: 0 auto;
    }
    .new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__image > img
    {
        display: block;

        width: 100%;
        height: 100%;
    }
    .new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__image.-image-mb01
    {
        margin-bottom: 1vw;
    }
    .new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__image.-image-mb02
    {
        margin-bottom: 2vw;
    }
    .new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__image.-image-mb03
    {
        margin-bottom: 1.3vw;
    }
    .new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__image.-image-mb04
    {
        margin-bottom: 3vw;
    }
    .new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__contents--description
    {
        font-size: 1.9vw;
    }
    .new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__contents--button
    {
        width: 90%;
        height: 3.91vw;
        max-height: 44px;
    }
    .new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__contents--button::before
    {
        right: 8px;
    }
    .new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__contents--button > span
    {
        font-size: 1.6vw;
    }
    .new-member__inner .new-member-introduction .member-introduction-swiper .swiper-wrapper .swiper-slide .introduction-list-item-inner__contents--description
    {
        font-size: 1.9vw;
    }
    .new-member__inner .new-member-introduction .member-introduction-swiper .swiper-wrapper .swiper-slide .introduction-list-item-inner__contents--button
    {
        width: 90%;
        height: 3.91vw;
        max-height: 44px;
    }
    .new-member__inner .new-member-introduction .member-introduction-swiper .swiper-wrapper .swiper-slide .introduction-list-item-inner__contents--button::before
    {
        right: 8px;
    }
    .new-member__inner .new-member-introduction .member-introduction-swiper .swiper-wrapper .swiper-slide .introduction-list-item-inner__contents--button > span
    {
        font-size: 1.6vw;
    }
    .new-member__inner .new-member-rank
    {
        padding: 0;
    }
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-header
    {
        width: 17.77vw;
    }
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data
    {
        width: calc(100% - 17.77vw);
        width: 100%;
    }
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr
    {
        grid-template-columns: 31.25vw 1fr 1fr 1fr;
    }
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr > td:first-of-type .rank-price
    {
        padding-left: 7.52vw;
    }
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper
    {
        width: calc(100% - 17.77vw);
    }
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data
    {
        width: 100%;
    }
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr
    {
        grid-template-columns: 31.25vw 1fr 1fr 1fr;
    }
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr > td:first-of-type .rank-price
    {
        padding-left: 7.52vw;
    }
    .new-member__inner .new-member-rank__other-contents .rank-other-benefits__item
    {
        height: 25.68vw;
    }
    .new-member__inner .new-member-rank__other-contents .rank-other-benefits__item .benefits-item-inner
    {
        padding: 3.4vw 0 30px;
    }
    .new-member__inner .new-member-rank__other-contents .rank-other-benefits__item .benefits-item-inner__title
    {
        font-size: 2.34vw;
        line-height: 22px;

        margin-bottom: 1.1vw;
    }
    .new-member__inner .new-member-rank__other-contents .rank-other-benefits__item .benefits-item-inner__description
    {
        font-size: 1.76vw;
        line-height: 1.4;
    }
    .new-member__inner .new-member-rank__other-contents .rank-other-benefits__item .benefits-item-inner__annotation
    {
        font-size: max(1.27vw, 11px);
        line-height: 1.3;
    }
    .new-member__inner .new-member-rank__other-contents .rank-other-annotation__item > span
    {
        font-size: max(1.27vw, 11px);
    }
    .new-member__inner .new-member-structure__inner
    {
        padding: 35px 30px 29px;
    }
}

@media (max-width: 390px)
{
    .new-member__inner .new-member-introduction
    {
        margin-bottom: 60px;
    }
    .new-member__inner .new-member-introduction .member-introduction-swiper .swiper-wrapper
    {
        padding-top: 3px;
    }
    .swiper-horizontal > .swiper-pagination-bullets,
    .swiper-pagination-bullets.swiper-pagination-horizontal,
    .swiper-pagination-custom,
    .swiper-pagination-fraction
    {
        bottom: -5.81vw;
    }
}

@media print, screen and (min-width: 1025px)
{
    .new-member__inner .new-member-introduction__list--item .introduction-list-item-inner__contents--button:hover
    {
        transition: .3s;

        opacity: .6;
    }
    .new-member__inner .new-member-rank__other-contents .rank-other-annotation__item > span > a:hover
    {
        text-decoration: none;
    }
}

@media (min-width: 391px) and (max-width: 430px)
{
    .new-member__inner .new-member-introduction .member-introduction-swiper .swiper-wrapper
    {
        margin-top: 3.26vw;
    }
}

@media (min-width: 321px) and (max-width: 390px)
{
    .new-member__inner .new-member-introduction .member-introduction-swiper .swiper-wrapper .swiper-slide .introduction-list-item-inner
    {
        background-position: center top;
    }
}

@media screen and (max-width: 1024px)
{
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data > tbody > tr > th:first-of-type
    {
        min-width: auto;
    }
    .new-member__inner .new-member-rank__contents--inner .new-member-rank-table-data-wrapper .new-member-rank-table-data > tbody > tr > th:first-of-type
    {
        min-width: auto;
    }
}

.-point-flex-container219 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.-left-text219 {
  width: calc((100% - 280px) - 32px);
}

.-point-right-image-pc-219 {
  width: 280px;
  margin-top: -45px!important;
}

@media screen and (max-width: 767px) {
  .-point-flex-container219 {
    flex-direction: column;
  }

  .-left-text219 {
    width: 100%;
  }
}


.swiper-pagination.-new-member-service > .swiper-pagination-bullet {
  opacity: 1;
  background: #fff;
}

.swiper-pagination.-new-member-service > .swiper-pagination-bullet-active
{
    background: #82888a;
}

/* 20240529 add */
@media screen and (max-width: 767px) {
  .p-mypage .mypage-point-info__box {
    gap: 12px;
    flex-direction: column;
    align-items: flex-start;
  }
}

/* 20240610 add */
.ranking .lists__item:first-of-type > .item__link > .item__content .item__number {
  color: #333333;
  background-color: #D6BD81;
}

.ranking .lists__item:nth-of-type(2) > .item__link > .item__content .item__number {
  color: #333333;
  background-color: #B8B8B8;
}

.ranking .lists__item:nth-of-type(3) > .item__link > .item__content .item__number {
  color: #333333;
  background-color: #A4876B;
}

/* 20240625 add */
.regular-modification
{
    background-color: #f9fafa;
}

.rm-correspondence
{
    display: block;

    width: 100%;
    height: auto;
    padding: 109px 0 58px;

    background-color: #fff;
}
.rm-correspondence__inner
{
    display: block;

    width: 100%;
    max-width: 880px;
    height: auto;
    margin: 0 auto;
}
.rm-correspondence__inner .rm-correspondence-contents
{
    display: block;

    width: 100%;
    height: auto;
    margin-bottom: 100px;
    padding: 26px 46px 50px;

    border: 1px solid #000;
}
.rm-correspondence__inner .rm-correspondence-contents__title
{
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%; /* 18px */

    position: relative;
    top: -39px;
    right: 0;
    left: 0;

    display: block;

    width: -webkit-fit-content;
    width:    -moz-fit-content;
    width:         fit-content;
    margin: 0 auto;
    padding: 2px 30px;

    letter-spacing: 1.8px;

    background-color: #fff;
}
.rm-correspondence__inner .rm-correspondence-contents__lead
{
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: 200%; /* 28px */

    margin-bottom: 12px;

    letter-spacing: 1.4px;
}
.rm-correspondence__inner .rm-correspondence-contents__list
{
    display: flex;

    margin-bottom: 40px;

    gap: 20px;
    justify-content: center;
}
.rm-correspondence__inner .rm-correspondence-contents__list--item
{
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 24px; /* 171.429% */

    display: flex;

    list-style: disc;
}
.rm-correspondence__inner .rm-correspondence-contents__list--item::before
{
    margin-right: 4px;

    content: '⚫︎';
}
.rm-correspondence__inner .rm-correspondence-contents__button
{
    font-size: 15px;
    font-weight: 500;
    font-style: normal;
    line-height: 24px; /* 160% */

    display: flex;

    max-width: 280px;
    height: 52px;
    margin: 0 auto;

    transition: .3s;
    letter-spacing: .6px;

    color: #fff;
    border-radius: 8px;
    background: #171717;

    align-items: center;
    justify-content: center;
}
.rm-correspondence__inner .rm-correspondence-greeting
{
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    line-height: 170%; /* 27.2px */

    text-align: center;
    letter-spacing: 1.6px;
}

.rm-correspondence-greeting
{
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    line-height: 170%; /* 27.2px */

    text-align: center;
    letter-spacing: 1.6px;
}

.rm-detail
{
    display: block;

    width: 100%;
    height: auto;
    padding: 78px 0 60px;

    background-color: #f9fafa;
}
.rm-detail__inner
{
    display: block;

    width: 100%;
    max-width: 880px;
    height: auto;
    margin: 0 auto;
}
.rm-detail__inner .rm-detail-title
{
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    line-height: 44px; /* 183.333% */

    margin-bottom: 30px;

    text-align: center;
    letter-spacing: 2.4px;
}
.rm-detail__inner .rm-detail-contents > li:not(:last-of-type)
{
    margin-bottom: 20px;
}
.rm-detail__inner .rm-detail-contents > li .rm-detail-contents-title
{
    position: relative;

    display: flex;

    height: 40px;

    cursor: pointer;

    background-color: #4d4d4d;

    align-items: center;
    justify-content: center;
}
.rm-detail__inner .rm-detail-contents > li .rm-detail-contents-title::before,
.rm-detail__inner .rm-detail-contents > li .rm-detail-contents-title::after
{
    position: absolute;
    right: 0;

    display: block;

    width: 20px;
    height: 2px;

    content: '';
    transition: .5s;

    background-color: #fff;
}
.rm-detail__inner .rm-detail-contents > li .rm-detail-contents-title::before
{
    right: 24px;
}
.rm-detail__inner .rm-detail-contents > li .rm-detail-contents-title::after
{
    right: 23px;

    transition: .5s;
    transform: rotate(90deg);
}
.rm-detail__inner .rm-detail-contents > li .rm-detail-contents-title.js-icon-transform::after
{
    transition: .5s;
    transform: rotate(0);
}
.rm-detail__inner .rm-detail-contents > li .rm-detail-contents-title > span
{
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 28px; /* 175% */

    text-align: center;
    letter-spacing: 1.6px;

    color: var(--fff, #fff);
}
.rm-detail__inner .rm-detail-contents > li .rm-detail-contents-inner
{
    display: none;

    width: 100%;
    height: auto;
    padding: 20px 96px 25px;

    background-color: #fff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, .15);
}
.rm-detail__inner .rm-detail-contents > li .rm-detail-contents-inner__lead
{
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: 200%; /* 28px */

    letter-spacing: 1.4px;
}
.rm-detail__inner .rm-detail-contents > li .rm-detail-contents-inner__lead > span
{
    font-weight: 500;
}
.rm-detail__inner .rm-detail-contents > li .rm-detail-contents-inner__image-wrap--flow
{
    font-size: 13px;
    font-weight: 350;
    font-style: normal;
    line-height: 160%; /* 20.8px */

    margin-top: 33px;
    margin-bottom: 4px;

    text-align: center;
    letter-spacing: .26px;
}
.rm-detail__inner .rm-detail-contents > li .rm-detail-contents-inner__image-wrap--image
{
    display: block;

    width: 100%;
    max-width: 624px;
    height: auto;
    margin: 0 auto 30px;
}
.rm-detail__inner .rm-detail-contents > li .rm-detail-contents-inner__image-wrap--image > source,
.rm-detail__inner .rm-detail-contents > li .rm-detail-contents-inner__image-wrap--image > img
{
    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.rm-detail__inner .rm-detail-contents > li .rm-detail-contents-inner__annotation
{
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: 200%; /* 28px */

    letter-spacing: 1.4px;
}
.rm-detail__inner .rm-detail-contents > li .rm-detail-contents-inner__button
{
    display: flex;

    width: 328px;
    height: 70px;
    margin: 0 auto 70px;

    transition: .5s;

    background-color: #2c2c2c;

    align-items: center;
    justify-content: center;
}
.rm-detail__inner .rm-detail-contents > li .rm-detail-contents-inner__button > span
{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;

    letter-spacing: 2px;

    color: #fff;
}

.rm-for-user
{
    padding: 76px 0 60px;

    background-color: #fff;
}
.rm-for-user__inner
{
    display: block;

    width: 100%;
    max-width: 980px;
    height: auto;
    margin: 0 auto;
}
.rm-for-user__inner .rm-for-user-contents__title
{
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    line-height: 44px; /* 183.333% */

    margin-bottom: 30px;

    text-align: center;
    letter-spacing: 2.4px;
}
.rm-for-user__inner .rm-for-user-contents__lead
{
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: 200%; /* 28px */

    margin-bottom: 60px;

    text-align: center;
    letter-spacing: 1.4px;
}
.rm-for-user__inner .rm-for-user-contents__sub-title
{
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 170%; /* 30.6px */

    margin-bottom: 41px;

    text-align: center;
    letter-spacing: 1.8px;
}
.rm-for-user__inner .rm-for-user-contents__flow
{
    display: flex;

    margin-bottom: 20px;

    gap: 68px;
    align-items: flex-start;
    justify-content: space-between;
}
.rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-now,
.rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-future
{
    display: block;

    width: calc(100% - 34px);
    height: auto;
}
.rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-now
{
    position: relative;

    padding: 16px 32px 30px 32px;

    border: 2px solid #eceded;
}
.rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-now::after
{
    position: absolute;
    top: 60px;
    right: -50px;

    display: block;

    width: 26px;
    height: 42px;

    content: '';

    background-image: url(../images/regularmodification/icon-arrow-gray.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-now__heading
{
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 170%; /* 27.2px */

    margin-bottom: 16px;

    text-align: center;
    letter-spacing: 4.8px;
}
.rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-now__description
{
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: 200%; /* 28px */

    letter-spacing: 1.4px;
}
.rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-now__description > span
{
    background-image: linear-gradient(transparent 50%, #faeebc 0%);
}
.rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-future
{
    padding: 16px 32px 35px 32px;

    border: 1px solid #333;
}
.rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-future__heading
{
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 170%; /* 27.2px */

    margin-bottom: 16px;

    text-align: center;
    letter-spacing: 4.8px;
}
.rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-future__description
{
    font-size: 14px;
    font-weight: 350;
    font-style: normal;
    line-height: 200%; /* 28px */

    margin-bottom: 25px;

    letter-spacing: 1.4px;
}
.rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-future__description > span
{
    background-image: linear-gradient(transparent 50%, #faeebc 0%);
}
.rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-future__image
{
    display: block;

    width: 100%;
    height: auto;
}
.rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-future__image > source,
.rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-future__image > img
{
    width: 100%;
    height: auto;

    -o-object-fit: contain;
       object-fit: contain;
}
.rm-for-user__inner .rm-for-user-contents__annotation
{
    font-size: 13px;
    font-weight: 300;
    font-style: normal;
    line-height: 160%; /* 20.8px */

    letter-spacing: .26px;
}

.rm-lead
{
    padding: 100px 0 60px;

    background-color: #f9fafa;
}
.rm-lead__inner
{
    display: block;

    width: 100%;
    max-width: 980px;
    height: auto;
    margin: 0 auto;
}
.rm-lead__inner .rm-lead-contents
{
    display: block;

    width: 100%;
    height: auto;
    padding: 78px 10px 65px;

    background-color: #fff;
}
.rm-lead__inner .rm-lead-contents__title
{
    font-size: 24px;
    font-weight: 400;
    font-style: normal;
    line-height: 44px; /* 183.333% */

    margin-bottom: 30px;

    text-align: center;
    letter-spacing: 2.4px;
}
.rm-lead__inner .rm-lead-contents__lead
{
    font-size: 14px;
    font-weight: 300;
    font-style: normal;
    line-height: 200%; /* 28px */

    margin-bottom: 40px;

    text-align: center;
    letter-spacing: 1.4px;
}
.rm-lead__inner .rm-lead-contents__day-time
{
    max-width: 368px;
    height: auto;
    margin: 0 auto;
    margin: 0 auto;
    margin-bottom: 60px;
    padding: 16px 0 22px;

    text-align: center;

    border: 1px solid #333;
}
.rm-lead__inner .rm-lead-contents__day-time--title
{
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%; /* 16px */

    margin-bottom: 8px;

    letter-spacing: .32px;
}
.rm-lead__inner .rm-lead-contents__day-time--day
{
    font-size: 22px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%; /* 22px */

    letter-spacing: .88px;
}
.rm-lead__inner .rm-lead-contents__sub-title
{
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%; /* 18px */

    display: flex;

    margin-bottom: 19px;

    text-align: center;
    letter-spacing: 1.8px;

    align-items: center;
    justify-content: center;
}
.rm-lead__inner .rm-lead-contents__sub-title > span
{
    font-size: 22px;
    font-weight: 500;
    font-style: normal;
    line-height: 44px; /* 200% */

    margin-left: 2px;

    letter-spacing: 2.2px;
}
.rm-lead__inner .rm-lead-contents__image
{
    display: block;

    width: 100%;
    max-width: 686px;
    height: auto;
    margin: 0 auto 13px;
}
.rm-lead__inner .rm-lead-contents__image > source,
.rm-lead__inner .rm-lead-contents__image > img
{
    width: 100%;
    height: 100%;
}
.rm-lead__inner .rm-lead-contents__annotation
{
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 150%; /* 18px */

    display: block;

    width: 100%;
    max-width: 686px;
    height: auto;
    margin: 0 auto 15px;
}
@media screen and (max-width: 767px)
{
    .SPshow
    {
        display: block;
    }
    .PCshow
    {
        display: none;
    }
    .regular-modification
    {
        margin: 0 auto;
    }
    .rm-correspondence
    {
        padding: 58px 15px 58px;
    }
    .rm-correspondence__inner
    {
        max-width: 360px;
        padding: 0 5px;
    }
    .rm-correspondence__inner .rm-correspondence-contents
    {
        margin-bottom: 50px;
        padding: 10px 17px 31px;
    }
    .rm-correspondence__inner .rm-correspondence-contents__title
    {
        font-size: 17px;
        font-weight: 500;
        line-height: 100%; /* 17px */

        top: -21px;

        padding: 2px 18px;

        letter-spacing: .34px;
    }
    .rm-correspondence__inner .rm-correspondence-contents__lead
    {
        font-weight: 350;
        line-height: 150%; /* 21px */

        margin-bottom: 10px;

        letter-spacing: 0;
    }
    .rm-correspondence__inner .rm-correspondence-contents__list
    {
        flex-direction: column;

        margin-bottom: 28px;

        gap: 0;
    }
    .rm-correspondence__inner .rm-correspondence-contents__list--item
    {
        font-weight: 700;
    }
    .rm-correspondence__inner .rm-correspondence-contents__list--item::before
    {
        margin-right: 0;
    }
    .rm-correspondence__inner .rm-correspondence-greeting
    {
        font-size: 15px;
        font-weight: 350;

        letter-spacing: 0;
    }
    .rm-correspondence-greeting
    {
        font-size: 15px;
        font-weight: 350;

        letter-spacing: 0;
    }
    .rm-detail
    {
        padding: 50px 0 31px;
    }
    .rm-detail__inner
    {
        max-width: 390px;
    }
    .rm-detail__inner .rm-detail-title
    {
        font-size: 23px;
        font-weight: 350;
        line-height: 140%; /* 32.2px */

        margin-bottom: 20px;

        letter-spacing: .7px;
    }
    .rm-detail__inner .rm-detail-contents
    {
        padding: 0 20px;
    }
    .rm-detail__inner .rm-detail-contents > li .rm-detail-contents-title
    {
        height: 34px;
    }
    .rm-detail__inner .rm-detail-contents > li .rm-detail-contents-title::before,
    .rm-detail__inner .rm-detail-contents > li .rm-detail-contents-title::after
    {
        width: 17px;
    }
    .rm-detail__inner .rm-detail-contents > li .rm-detail-contents-title::before
    {
        right: 16px;
    }
    .rm-detail__inner .rm-detail-contents > li .rm-detail-contents-title::after
    {
        right: 16px;
    }
    .rm-detail__inner .rm-detail-contents > li .rm-detail-contents-title > span
    {
        font-size: 15px;
        line-height: 15px; /* 100% */

        letter-spacing: .9px;
    }
    .rm-detail__inner .rm-detail-contents > li .rm-detail-contents-inner
    {
        padding: 14px 15px 17px;
    }
    .rm-detail__inner .rm-detail-contents > li .rm-detail-contents-inner__lead
    {
        font-size: 13px;
        font-weight: 350;
        line-height: 160%; /* 20.8px */

        letter-spacing: .26px;
    }
    .rm-detail__inner .rm-detail-contents > li .rm-detail-contents-inner__image-wrap
    {
        margin-top: 21px;
        margin-bottom: 11px;
        padding: 15px 10px;

        border: 1px solid #e8e8e8;
        border-radius: 12px;
    }
    .rm-detail__inner .rm-detail-contents > li .rm-detail-contents-inner__image-wrap--flow
    {
        margin-top: 0;
        margin-bottom: 10px;
        padding: 4px 9px 6px 5px;

        background: #f3f3f3;
    }
    .rm-detail__inner .rm-detail-contents > li .rm-detail-contents-inner__image-wrap--image
    {
        margin: 0 auto 3px;
    }
    .rm-detail__inner .rm-detail-contents > li .rm-detail-contents-inner__annotation
    {
        font-size: 13px;
        font-weight: 350;
        line-height: 160%; /* 20.8px */

        margin-left: unset;

        letter-spacing: .26px;
    }
    .rm-detail__inner .rm-detail-contents > li .rm-detail-contents-inner__button
    {
        width: 100%;
        height: 57px;
        margin: 0 auto 60px;
    }
    .rm-for-user
    {
        padding: 51px 20px 26px;
    }
    .rm-for-user__inner
    {
        max-width: 350px;
    }
    .rm-for-user__inner .rm-for-user-contents__title
    {
        font-size: 23px;
        font-weight: 350;
        line-height: 140%; /* 32.2px */

        margin-bottom: 21px;

        letter-spacing: .7px;
    }
    .rm-for-user__inner .rm-for-user-contents__lead
    {
        font-size: 14px;
        font-weight: 350;
        line-height: 170%; /* 23.8px */

        margin-bottom: 29px;

        letter-spacing: 0;
    }
    .rm-for-user__inner .rm-for-user-contents__sub-title
    {
        font-size: 16px;
        line-height: 150%; /* 24px */

        margin-bottom: 4px;

        letter-spacing: .64px;
    }
    .rm-for-user__inner .rm-for-user-contents__flow
    {
        flex-direction: column;

        margin-bottom: 16px;

        gap: 21px;
    }
    .rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-now,
    .rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-future
    {
        width: 100%;
    }
    .rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-now
    {
        padding: 16px 15px 10px 15px;

        border: none;
    }
    .rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-now::after
    {
        top: unset;
        right: 0;
        bottom: -38px;
        left: 0;

        width: 30px;
        height: 46px;
        margin: 0 auto;

        transform: rotate(90deg);
    }
    .rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-now__heading
    {
        font-size: 14px;

        margin-bottom: 7px;

        letter-spacing: 4.2px;

        border: 1px solid #8e8e8e;
    }
    .rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-now__description
    {
        font-weight: 350;
        line-height: 150%; /* 21px */

        letter-spacing: 0;
    }
    .rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-future
    {
        padding: 16px 0 15px;

        border: none;
    }
    .rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-future__heading
    {
        margin: 0 15px 12px;
        padding: 2px;

        color: #fff;
        background-color: #333;
    }
    .rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-future__description
    {
        font-weight: 350;
        line-height: 150%; /* 21px */

        margin-bottom: 29px;
        padding: 0 15px;

        letter-spacing: 0;
    }
    .rm-for-user__inner .rm-for-user-contents__annotation
    {
        font-weight: 350;
    }
    .rm-for-user__inner .rm-for-user-contents__annotation > span
    {
        display: block;

        margin-bottom: 4px;
        padding-left: 1em;

        text-indent: -1em;
    }
    .rm-lead
    {
        padding: 30px 20px 29px;
    }
    .rm-lead__inner
    {
        max-width: 350px;
    }
    .rm-lead__inner .rm-lead-contents
    {
        padding: 20px 13px 5px;
    }
    .rm-lead__inner .rm-lead-contents__title
    {
        font-size: 23px;
        font-weight: 350;
        line-height: 140%; /* 32.2px */

        margin-bottom: 21px;

        letter-spacing: .7px;
    }
    .rm-lead__inner .rm-lead-contents__lead
    {
        font-weight: 350;
        line-height: 170%; /* 23.8px */

        margin-bottom: 20px;
        padding: 0 10px;

        letter-spacing: 0;
    }
    .rm-lead__inner .rm-lead-contents__day-time
    {
        width: -webkit-fit-content;
        width:    -moz-fit-content;
        width:         fit-content;
        margin-bottom: 40px;
        padding: 7px 35px 13px;
    }
    .rm-lead__inner .rm-lead-contents__day-time--title
    {
        font-size: 15px;
        font-weight: 500;

        letter-spacing: .3px;
    }
    .rm-lead__inner .rm-lead-contents__day-time--day
    {
        font-size: 23px;

        letter-spacing: .92px;
    }
    .rm-lead__inner .rm-lead-contents__sub-title
    {
        font-size: 19px;
        line-height: 150%; /* 28.5px */

        flex-direction: column;

        margin-bottom: 12px;

        letter-spacing: 0;
    }
    .rm-lead__inner .rm-lead-contents__sub-title > span
    {
        font-size: 23px;
        font-weight: 350;
        line-height: 140%; /* 32.2px */

        margin-left: 0;

        letter-spacing: .7px;
    }
    .rm-lead__inner .rm-lead-contents__image
    {
        margin: 0 auto 14px;
    }
    .rm-lead__inner .rm-lead-contents__annotation
    {
        padding-left: 2px;
    }
}
@media (min-width: 768px) and (max-width: 1024px)
{
    .rm-correspondence
    {
        padding: 109px 60px 58px;
    }
    .rm-detail
    {
        padding: 78px 60px 60px;
    }
    .rm-for-user
    {
        padding: 76px 40px 60px;
    }
    .rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-now
    {
        padding: 16px 20px 30px 20px;
    }
    .rm-for-user__inner .rm-for-user-contents__flow .rm-for-user-future
    {
        padding: 16px 20px 35px 20px;
    }
    .rm-lead
    {
        padding: 100px 40px 60px;
    }
    .rm-lead__inner .rm-lead-contents
    {
        padding: 78px 20px 65px;
    }
}
@media print, screen and (min-width: 1025px)
{
    .rm-correspondence__inner .rm-correspondence-contents__button:hover
    {
        transition: .3s;

        opacity: .6;
    }
    .rm-detail__inner .rm-detail-contents > li .rm-detail-contents-inner__button:hover
    {
        transition: .5s;

        background-color: #cbdbe8;
    }
    .rm-detail__inner .rm-detail-contents > li .rm-detail-contents-inner__button:hover > span
    {
        font-weight: 500;
    }
}

/* 20240626 add */
.shopping-guide
{
    padding: 30px 0 100px;
}
.shopping-guide__inner
{
    display: block;

    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
}
.shopping-guide__inner .shopping-guide-title
{
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;

    margin-bottom: 40px;
    padding-bottom: 10px;

    color: #000;
    border-bottom: 1px solid #000;
}
.shopping-guide__inner .shopping-guide-contents__inner
{
    display: block;

    width: 100%;
    max-width: 688px;
    height: auto;
    margin: 0 auto;
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list
{
    display: flex;
    flex-direction: column;

    gap: 16px;
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents
{
    display: block;

    width: 100%;
    height: auto;
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__heading
{
    position: relative;

    display: flex;

    border: 1px solid #e0e0e0;

    align-items: center;
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__heading.js-icon-transform::after
{
    transition: .3s;
    transform: rotate(180deg);
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__heading::after
{
    position: absolute;
    right: 20px;

    display: block;

    width: 24px;
    height: 20px;

    content: '';
    transition: .3s;

    background-image: url(../images/shoppingguide/icon-arrow.svg);
    background-size: contain;
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__heading--icon
{
    display: flex;

    width: 80px;
    height: 80px;

    align-items: center;
    justify-content: center;
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__heading--icon > span
{
    display: block;

    width: 40px;
    height: 40px;
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__heading--icon > span > img
{
    display: block;

    width: 100%;
    height: 100%;
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__heading--title
{
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__description
{
    display: none;

    padding: 32px;

    background-color: #f7f7f7;
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__description--text
{
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    line-height: 24px; /* 150% */
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__description--text > a
{
    text-decoration: underline;

    color: #333;
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__description--text.-mb16
{
    margin-bottom: 16px;
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__description--annotation
{
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 18px; /* 150% */

    padding-left: 1em;

    text-indent: -1em;

    color: #888;
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__description--annotation > a
{
    text-decoration: underline;

    color: #888;
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__description--annotation.-mb16
{
    margin-bottom: 16px;
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__description--title
{
    font-size: 16px;
    font-weight: 600;
    font-weight: 600;
    font-style: normal;
    line-height: 1.2;

    margin-bottom: 8px;
    padding: 6px 8px;

    letter-spacing: .6px;

    border-left: 4px solid #888;
    background-color: #fff;
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__description--sub-title
{
    font-size: 15px;
    font-weight: 600;

    margin-bottom: 6px;

    letter-spacing: .6px;
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__description--list
{
    margin-bottom: 16px;
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__description--list > li
{
    padding-left: 1em;

    text-indent: -1em;
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__description--list > li > span
{
    font-size: 14px;
}
.shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__description--list > li > span > a
{
    text-decoration: underline;

    color: #333;
}
@media screen and (max-width: 767px)
{
    .SPshow
    {
        display: block;
    }
    .PCshow
    {
        display: none;
    }
    .regular-modification
    {
        margin: 0 auto;
    }
    .shopping-guide
    {
        max-width: 390px;
        margin: 0 auto;
        padding: 30px 20px 50px;
    }
    .shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list
    {
        gap: 10px;
    }
    .shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__heading::after
    {
        width: 20px;
        height: 16px;
    }
    .shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__heading--icon
    {
        width: 48px;
        height: 48px;
    }
    .shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__heading--icon > span
    {
        width: 24px;
        height: 24px;
    }
    .shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__heading--title
    {
        font-size: 18px;

        width: calc(100% - 48px);
        padding: 4px 48px 4px 0;
    }
    .shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__description
    {
        padding: 24px;
    }
    .shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__description--list > li
    {
        line-height: 1.2;
    }
}
@media (min-width: 768px) and (max-width: 1024px)
{
    .shopping-guide
    {
        padding: 0 40px 80px;
    }
}
@media print, screen and (min-width: 1025px)
{
    .shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__heading:hover
    {
        cursor: pointer;
    }
    .shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__description--text > a:hover
    {
        text-decoration: none;
    }
    .shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__description--annotation > a:hover
    {
        text-decoration: none;
    }
    .shopping-guide__inner .shopping-guide-contents__inner .shopping-guide-list__item .shopping-guide-list-contents__description--list > li > span > a:hover
    {
        text-decoration: none;
    }
}

/* 20240702 add */
.shopping-guide-to-faq-container
{
    display: flex;

    width: 100%;
    padding: 40px;

    justify-content: center;
}
.shopping-guide-to-faq-container__link
{
    text-decoration: underline;

    color: #333;

    font-size: 16px;
}
.faq
{
    padding: 10px 0 100px;
}
.faq__inner
{
    display: block;

    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
}
.faq__inner .faq-title
{
    font-size: 28px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;

    margin-bottom: 40px;
    padding-bottom: 10px;

    color: #000;
    border-bottom: 1px solid #000;
}
.faq__inner .faq-category
{
    display: flex;

    margin-bottom: 48px;

    flex-wrap: wrap;
    justify-content: flex-start;
}
.faq__inner .faq-category__item
{
    display: flex;

    width: 20%;
    height: 64px;
    margin-bottom: 1px;

    border-right: 1px solid #fff;
    background-color: #e0e0e0;

    align-items: center;
    justify-content: center;
}
.faq__inner .faq-category__item > a
{
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;

    position: relative;

    display: flex;

    width: 100%;
    height: 100%;
    padding-top: 10px;

    transition: .3s;

    color: #333;

    align-items: flex-start;
    justify-content: center;
}
.faq__inner .faq-category__item > a::after
{
    position: absolute;
    right: 0;
    bottom: 8px;
    left: 0;

    display: block;

    width: 16px;
    height: 16px;
    margin: 0 auto;

    content: '';
    transition: .3s;

    background-image: url(../images/faq/icon-arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.faq__inner .faq-contents
{
    padding: 0 24px;
}
.faq__inner .faq-contents__inner
{
    display: block;

    width: 100%;
    height: auto;
    margin: 0 auto;
}
.faq__inner .faq-contents__inner .faq-list
{
    display: flex;
    flex-direction: column;

    gap: 16px;
}
.faq__inner .faq-contents__inner .faq-list__item:not(:last-of-type)
{
    margin-bottom: 48px;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents
{
    display: block;

    width: 100%;
    height: auto;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__category
{
    font-size: 22px;
    font-weight: 700;
    font-style: normal;
    line-height: normal;

    margin-bottom: 24px;
    padding: 0 0 4px 24px;

    letter-spacing: .88px;

    border-left: 8px solid #333;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__heading
{
    position: relative;

    display: flex;

    border-bottom: 1px solid #e0e0e0;

    align-items: center;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__heading.js-icon-transform::after
{
    transition: .3s;
    transform: rotate(0deg);
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__heading::before,
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__heading::after
{
    position: absolute;
    right: 24px;

    display: block;

    width: 20px;
    height: 2px;

    content: '';
    transition: .3s;

    background-color: #333;
    background-size: contain;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__heading::after
{
    transform: rotate(90deg);
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__heading--title
{
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;

    position: relative;

    padding: 16px 56px;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__heading--title::before
{
    font-size: 25px;

    position: absolute;
    top: 8px;
    left: 24px;

    content: 'Q.';

    color: #333;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description
{
    display: none;

    margin-bottom: 8px;

    background-color: #f7f7f7;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description--inner
{
    position: relative;

    padding: 16px 40px 24px 56px;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description--inner::before
{
    font-size: 25px;

    position: absolute;
    top: 8px;
    left: 24px;

    content: 'A.';

    color: #333;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description .faq-description-text
{
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 24px; /* 150% */
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description .faq-description-text > a
{
    text-decoration: underline;

    color: #333;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description .faq-description-text.-mb16
{
    margin-bottom: 16px;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description .faq-description-image
{
    display: block;

    width: 70%;
    height: auto;
    margin: 0 auto;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description .faq-description-image > source,
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description .faq-description-image > img
{
    width: 100%;
    height: 100%;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description .faq-description-sub-title
{
    font-size: 16px;
    font-weight: bold;
    font-style: normal;
    line-height: 24px; /* 150% */

    color: #333;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description .faq-description-sub-title.-mb8
{
    margin-bottom: 8px;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description .faq-description-annotation
{
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 18px; /* 150% */

    padding-left: 1em;

    text-indent: -1em;

    color: #888;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description .faq-description-annotation > a
{
    text-decoration: underline;

    color: #888;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description .faq-description-annotation.-mb16
{
    margin-bottom: 16px;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description .faq-description-list
{
    margin-bottom: 16px;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description .faq-description-list > li
{
    padding-left: 1em;

    text-indent: -1em;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description .faq-description-list > li > span
{
    font-size: 16px;
}
.faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description .faq-description-list > li > span > a
{
    text-decoration: underline;

    color: #333;
}
@media screen and (max-width: 767px)
{
    .SPshow
    {
        display: block;
    }
    .PCshow
    {
        display: none;
    }
    .regular-modification
    {
        margin: 0 auto;
    }
    .faq
    {
        max-width: 390px;
        margin: 0 auto;
        padding: 10px 20px 50px;
    }
    .faq__inner .faq-category__item
    {
        width: 50%;
    }
    .faq__inner .faq-contents
    {
        padding: 0;
    }
    .faq__inner .faq-contents__inner .faq-list
    {
        gap: 10px;
    }
    .faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__heading::before,
    .faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__heading::after
    {
        width: 16px;
    }
    .faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__heading--title
    {
        font-size: 18px;

        width: calc(100% - 48px);
        padding: 10px 0 10px 40px;
    }
    .faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__heading--title::before
    {
        top: 4px;
        left: 8px;
    }
    .faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description--inner
    {
        padding: 16px 24px 24px 40px;
    }
    .faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description--inner::before
    {
        top: 6px;
        left: 8px;
    }
    .faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description .faq-description-image
    {
        width: 100%;
    }
    .faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description .faq-description-list > li
    {
        line-height: 1.2;
    }
}
@media (min-width: 768px) and (max-width: 1024px)
{
    .faq
    {
        padding: 0 40px 80px;
    }
    .faq__inner .faq-category__item > a
    {
        font-size: 1.76vw;

        padding-top: 12px;
    }
}
@media (min-width: 431px) and (max-width: 767px)
{
    .faq__inner .faq-category__item
    {
        height: 56px;
    }
    .faq__inner .faq-category__item > a
    {
        font-size: 14px;
    }
}
@media screen and (max-width: 430px)
{
    .faq__inner .faq-category__item
    {
        height: 13.02vw;
    }
    .faq__inner .faq-category__item > a
    {
        font-size: 3.26vw;
    }
    .faq__inner .faq-category__item > a::after
    {
        bottom: 1.86vw;

        width: 12px;
        height: 12px;
    }
}
@media print, screen and (min-width: 1025px)
{
    .faq__inner .faq-category__item > a:hover
    {
        transition: .3s;

        background-color: #f1f1f1;
    }
    .faq__inner .faq-category__item > a:hover::after
    {
        transition: .3s;
        transform: translateY(4px);
    }
    .faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__heading:hover
    {
        cursor: pointer;
    }
    .faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description .faq-description-text > a:hover
    {
        text-decoration: none;
    }
    .faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description .faq-description-annotation > a:hover
    {
        text-decoration: none;
    }
    .faq__inner .faq-contents__inner .faq-list__item .faq-list-contents__description .faq-description-list > li > span > a:hover
    {
        text-decoration: none;
    }
    .shopping-guide-to-faq-container__link:hover
    {
        text-decoration: none;
    }
}

/* 20240703 add */
.p-lp .c-bundle-combination .c-bundle-product__product-extra-price--align-right {
  display: none;
}

.p-lp .c-bundle-combination .c-bundle-product__product-extra-price--minus {
  display: none;
}

@media print, screen and (max-width: 767px) {
  .footer .nav .lists__item:nth-child(6) {
    border-bottom: none;
  }

  .footer .nav .lists__item:nth-child(7), .footer .nav .lists__item:nth-child(8) {
    border-bottom: 1px solid #fff;
  }

  .p-lp {
    font-size: 16px;
    padding: 30px 20px;
  }
  
  .c-lp-section {
    padding: 0;
  }
  
  .p-lp .c-bundle-combination {
    flex-direction: column;
  }

  .p-lp .c-bundle-combination .c-bundle-product__list-products {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
  }

  .p-lp .c-bundle-combination__product-root {
    margin-right: 0;
  }

  .c-amazon-pay {
    padding: 20px 10px;
    border: 1px solid #666;
    text-align: center;
    margin-top: 60px;
    margin-bottom: 32px;
  }

  .c-amazon-pay__header {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
  }

  .c-amazon-pay__body {
    flex-direction: column;
  }

  .c-amazon-pay__paragraph {
    font-size: 14px;
    margin-top: 0;
    line-height: 1.3;
  }

  .c-checkbox label {
    font-size: 11px;
    margin: 0 auto 20px;
    width: fit-content;
  }

  .amazonpay-button-parent-container-checkout-A1CWHYILQN9C34 {
    width: 100%!important;
  }

  .p-lp__address > .c-lp-section > .c-table > .c-table__align-left > tbody > tr > .c-width-300 {
    width: 100px;
    min-width: 100px;
  }

  .p-lp__address > .c-lp-section > .c-table > .c-table__align-left > tbody > tr > td {
    padding: 4px 16px;
    vertical-align: middle;
  }

  .p-lp__address {
    margin-bottom: 32px;
  }

  .p-lp .c-bundle-combination__cart-root {
    margin-left: auto;
  }

}

/* 20240704 add */
.info__lists {
  justify-content: center;
}

@media print, screen and (max-width: 767px) {
  .p-lp__register > .c-lp-section > .c-table > .c-table__align-left > tbody > tr {
    display: flex;
    flex-direction: column;
  }

  .c-width-300 {
    width: 100%;
    max-width: 100%;
    min-width: 100%;
  }

  .c-date-form {
    width: 150px;
  }

  .c-form-attention.c-form-attention--inline {
    width: calc(100% - 180px);
  }

  .c-select--sm {
    width: 50%;
  }

  .p-lp__login .omit-input {
    width: 100%;
    max-width: 430px;    
  }

  .p-lp__login .omit-input .c-checkbox {
    position: relative;
    width: 100%;
  }

  .p-lp__login .omit-input .annotation {
    position: absolute;
    bottom: 0;
  }

  .c-form-groups--row {
    flex-wrap: wrap;
  }

  .p-lp__login .login-section__contents {
    padding: 20px;
  }

  .p-lp__already > .login-section > .login-section__contents > .login-form > .login-form__input > table {
    width: 100%;
  }

  .p-lp__already > .login-section > .login-section__contents > .login-form > .login-form__input > table > tbody {
    width: 100%;
  }

  .p-lp__already > .login-section > .login-section__contents > .login-form > .login-form__input > table > tbody > tr {
    display: flex;
    flex-direction: column;
  }

  .p-lp__already > .login-section > .login-section__contents > .login-form > .login-form__input > table > tbody > tr > th {
    padding: 0;
  }

  .p-lp__already > .login-section > .login-section__contents > .login-form > .login-form__input > table > tbody > tr > td {
    padding: 0;
    margin-bottom: 10px;
  }
  
  .p-lp__already > .login-section > .login-section__contents > .login-form > .login-form__input > table > tbody > tr > td > .c-password-textbox,
  .p-lp__already > .login-section > .login-section__contents > .login-form > .login-form__input > table > tbody > tr > td > .c-password-textbox > .c-textbox {
    width: 100%!important;
  }

  .p-lp__login .login-section__contents .login-form__submit {
    justify-content: center;
  }

  .p-lp__already > .login-section > .login-section__contents > .login-form > .login-form__input {
    margin-bottom: 14px;
  }

  .p-lp__login .login-section__contents .login-form {
    flex-direction: column;
  }
}

/* 20240705 add */
@media print, screen and (max-width: 767px) {
  .p-lp .c-bundle-combination__cart-root {
    width: 100%!important;
  }

  .c-lp-section > .js-credit-card-area > .c-lp-section__highlight-block > .c-payment-module > .c-payment-module__registerd-card-list > .c-table__align-left > .c-radio-list-group > .c-radio-list-group__item {
    width: 100%;
  }

  .c-lp-section > .js-credit-card-area > .c-lp-section__highlight-block > .c-payment-module > .c-payment-module__card-form > .gp_paygent_select_payment_class > .c-table > table > tbody > .js-toggle-payment-method-for-paygent__payment-class-area,
  .c-lp-section > .js-credit-card-area > .c-lp-section__highlight-block > .c-payment-module > .c-payment-module__card-form > .gp_paygent_securitycode_area > .c-table > table > tbody > tr {
    display: flex;
    flex-direction: column;
  }

  .c-lp-section > .js-credit-card-area > .c-lp-section__highlight-block > .c-payment-module > .c-payment-module__card-form > .gp_paygent_select_payment_class > .c-table > table > tbody > tr > th,
  .c-lp-section > .js-credit-card-area > .c-lp-section__highlight-block > .c-payment-module > .c-payment-module__card-form > .gp_paygent_securitycode_area > .c-table > table > tbody > tr > th {
    width: 100%;
  }

  .p-lp > .c-contents-body > .js-lp-recaptcha-form > .p-lp__other-address > .c-lp-section > .c-table > .c-table__align-left > tbody > tr {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .p-lp > .c-contents-body > .js-lp-recaptcha-form > .p-lp__other-address {
    margin-bottom: 20px;
  }

  .p-lp > .c-contents-body > .js-lp-recaptcha-form > .js-c-bundle-combination__hidden_until_all_requirements_are_fulfilled > .p-lp__payment > .c-lp-section > .js-credit-card-area > .c-lp-section__highlight-block > .c-payment-module > .c-payment-module__card-form > .gp_paygent_entry_new_card > .c-table > .c-table__align-left > tbody > .new_card_info {
    display: flex;
    flex-direction: column;
  }

  .p-lp > .c-contents-body > .js-lp-recaptcha-form > .js-c-bundle-combination__hidden_until_all_requirements_are_fulfilled > .p-lp__payment > .c-lp-section > .js-credit-card-area > .c-lp-section__highlight-block > .c-payment-module > .c-payment-module__card-form > .gp_paygent_entry_new_card > .c-table > .c-table__align-left > tbody > .new_card_info > th {
    width: 100%;
  }

  .p-lp__other-address {
    padding-top: 10px;
  }


}


/* 20240708 add */
.regular-purchase-wrap-pc {
  display: block;
  padding-top: 80px;
}

.regular-purchase-wrap-sp {
  display: none;
  padding: 53px 15px 0;
}

.regular-purchase-image {
  display: block;
  width: 100%;
  max-width: 752px;
  height: auto;
  margin: 0 auto 12px;
}

.regular-purchase-image > img {
  display: block;
  width: 100%;
  height: auto;
}

.regular-purchase-link-wrap {
  display: block;
  width: 100%;
  max-width: 752px;
  height: auto;
  margin: 0 auto;
}

.regular-purchase-link {
  color: "#333";
  font-size: 12px;
  font-weight: 300;
  display: block;
  width: fit-content;
  text-decoration: underline;
  margin-left: auto;
}

@media print, screen and (max-width: 767px) {
  .regular-purchase-wrap-pc {
    display: none;
  }
  
  .regular-purchase-wrap-sp {
    display: block;
  }

  .regular-purchase-image {
    max-width: 100%;
    margin-bottom: 18px;
  }

  .regular-purchase-link {
    font-size: 13px;
  }
}

/* 20240709 add */
.rm-lead-contents__annotation {
  font-size: 14px!important;
  font-weight: bold!important;
}

/* 20240711 add */
.p-lp {
  max-width: 1070px;
  margin: 0 auto;
}

/* 20240717 add */
.fixed-bg.-opacity0 {
  opacity: 0;
}

@media print, screen and (max-width: 767px) {
  .c-payment-module__card-form .c-table {
    padding: 25px;
  }

  .gp_paygent_securitycode_area > .c-table {
    margin-top: -52px;
  }
}

/* 20240718 add */
  .p-lp__confirm > .c-lp-section > .confirm-products > .c-table > table > tbody > tr > th {
    display: none;
  }
  
  .p-lp__confirm > .c-lp-section > .confirm-products > .c-table > table > #js-confirm-products > tr > td {
  
  }

  .p-lp__confirm .confirm-content {
    flex-direction: column-reverse;
  }

  .p-lp__confirm .confirm-payment {
    width: 100%;
  }

  .p-lp__confirm .confirm-customr {
    width: 100%;
  }

  .p-lp__confirm .confirm-customr > .c-table__align-left > tbody > tr {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
  }

  .p-lp__confirm .confirm-customr table th,
  .p-lp__confirm .confirm-customr table td {
    display: block;
    padding: 4px 10px;
  }

  .p-lp__confirm .confirm-customr table {
    border: 1px solid #efefef;
    width: 100%;
  }

  .p-lp__confirm .confirm-customr table th {
    background: #efefef;
    border: 1px solid #efefef;
    display: flex;
  }

  .p-lp__confirm .confirm-customr table th .confirm-change {
    margin-left: auto;
  }

  .p-lp__confirm .confirm-customr table td {
    padding: 15px 10px;
    border-top: none;
    border-bottom: none;
}

.p-lp__confirm .confirm-products {
  border-bottom: 2px solid #efefef;
  padding-bottom: 10px;
}

.p-lp__confirm .confirm-payment__total th, .p-lp__confirm .confirm-payment__total td {
  border-top: none;
}

.c-lp-section__title {
  display: flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color__black);
}

.c-lp-section > .confirm-products > .c-table table td,
.c-lp-section > .confirm-products > .c-table table {
  border: none;
}

.c-lp-section > .confirm-products > .c-table > table > #js-confirm-products > tr {
  display: flex;
  flex-direction: column;
}

.c-lp-section > .confirm-products > .c-table > table > #js-confirm-products > tr > .c-table__align-right,
.c-lp-section > .confirm-products > .c-table > table > #js-confirm-products > tr > .c-table__align-center {
  text-align: left;
}

.c-product-panel__price {
  display: inline-flex;
  align-items: baseline;
}

.c-product-panel__price > small {
  margin-left: 4px;
}

.p-mypage-regular .sp-row th {
  width: 120px;
}


@media print, screen and (max-width: 767px) {
  .p-lp__confirm .confirm-content {
    margin-top: -70px;
  }

  .p-information {
    padding-top: 30px;
  }
}

/* 20240722 add */
@media print, screen and (max-width: 767px) {
  .p-mypage-login #amazon_pay_button_v2 {
    margin: unset;
  }
}

/* 20240729 add */
.campaign-bunner {
  display: block;
  width: 100%;
  height: auto;
  padding-top: 32px;
  margin-bottom: -60px;
}

.campaign-bunner > source,
.campaign-bunner > img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.campaign-bunner.-detail218 {
  padding-left: 60px;
  padding-right: 60px;
}

@media print, screen and (max-width: 767px) {
  .campaign-bunner {
    margin-bottom: -30px;
  }
  .campaign-bunner.-detail218 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .p-lp__point .point-info {
    width: 100%;
  }
  .p-lp__point .point-info__row {
    gap: unset!important;
  }
  .c-lp-section > .point-info > .point-info__row > .point-info__data > .c-width-100 {
    width: 100px!important;
  }
}

/* 20240801 add */
.sns-campaignn
{
    background-color: #fff;
}

.sc-agreement
{
    display: block;

    width: 100%;
    height: auto;
    padding: 59px 0;

    background-image: url(../images/snscampaign/pc/footer_bg_pc.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.sc-agreement__contents
{
    display: block;

    width: 100%;
    max-width: 1000px;
    height: auto;
    margin: 0 auto;
    padding: 46px 116px;

    border-radius: 10px;
    background-color: rgba(255, 255, 255, .9);
    box-shadow: 0 0 10px 0 rgba(67, 91, 109, .1);
}
.sc-agreement__contents .sc-agreement-title
{
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 24px;
    font-weight: 500;
    font-style: normal;
    line-height: normal;

    margin-bottom: 46px;

    text-align: center;

    color: #000;
}
.sc-agreement__contents .sc-agreement-list__item:not(:last-of-type)
{
    margin-bottom: 10px;
}
.sc-agreement__contents .sc-agreement-list__item > span
{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    line-height: 160%; /* 24px */

    position: relative;

    display: inline-block;

    padding-left: 1em;

    text-indent: -1em;

    color: #000;
}
.sc-agreement__contents .sc-agreement-list__item > span::before
{
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    line-height: 160%;

    margin-right: 2px;

    content: '※';

    color: #000;
}
.sc-agreement__contents .sc-agreement-number-list
{
    padding-top: 2px;
    padding-left: 21px;
}
.sc-agreement__contents .sc-agreement-number-list__item:not(:first-of-type)
{
    margin-top: -4px;
}
.sc-agreement__contents .sc-agreement-number-list__item > span
{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;

    display: inline-block;

    padding-left: 1em;

    text-indent: -1em;

    color: #000;
}

.sc-flow
{
    position: relative;

    display: block;

    width: 100%;
    height: auto;
    padding: 96px 0 191px;

    background-color: #faf5ec;
}
.sc-flow::before,
.sc-flow::after
{
    position: absolute;

    display: block;

    width: 2000%;
    height: 57px;

    content: '';

    background-repeat: repeat-x;
}
.sc-flow::before
{
    top: -50px;

    -webkit-animation: wave-slide-top 800s linear infinite;
            animation: wave-slide-top 800s linear infinite;

    background-image: url(../images/snscampaign/common/wave.svg);
}
.sc-flow::after
{
    bottom: -32px;
    left: -1000%;

    -webkit-animation: wave-slide-bottom 800s linear infinite;
            animation: wave-slide-bottom 800s linear infinite;

    background-image: url(../images/snscampaign/common/wave_back.svg);
}
.sc-flow__inner
{
    display: block;

    width: 100%;
    max-width: 1440px;
    height: auto;
    margin: 0 auto;
}
.sc-flow__inner .sc-flow-heading
{
    display: block;

    width: 648px;
    height: auto;
    margin: 0 auto 44px;

    transition: 1.4s;
    transform: translateY(40px);

    opacity: 0;
}
.sc-flow__inner .sc-flow-heading.js-anime-on
{
    transition: 1.4s;
    transform: translateY(0);

    opacity: 1;
}
.sc-flow__inner .sc-flow-heading > source,
.sc-flow__inner .sc-flow-heading > img
{
    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.sc-flow__inner .sc-flow-description
{
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 200%; /* 36px */

    margin-bottom: 58px;

    transition: 1.4s;
    transform: translateY(40px);
    text-align: center;

    opacity: 0;
    color: #000;
}
.sc-flow__inner .sc-flow-description.js-anime-on
{
    transition: 1.4s;
    transform: translateY(0);

    opacity: 1;
}
.sc-flow__inner .sc-flow-list
{
    position: relative;

    display: block;

    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}
.sc-flow__inner .sc-flow-list::before
{
    position: absolute;
    top: -81px;
    right: -20px;

    display: block;

    width: 52px;
    height: 46px;

    content: '';

    background-image: url(../images/snscampaign/common/illust_kani.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.sc-flow__inner .sc-flow-list__item:first-of-type
{
    margin-bottom: 72px;
}
.sc-flow__inner .sc-flow-list__item:first-of-type .flow-step__text
{
    top: 92px;
    right: -170px;

    transition: 1.4s;
    transform: translateX(-40px);

    opacity: 0;
}
.sc-flow__inner .sc-flow-list__item:first-of-type .flow-step__text.js-anime-on
{
    transition: 1.4s;
    transform: translateX(0);

    opacity: 1;
}
.sc-flow__inner .sc-flow-list__item:last-of-type
{
    margin-bottom: 77px;
}
.sc-flow__inner .sc-flow-list__item:last-of-type .flow-step
{
    position: relative;
}
.sc-flow__inner .sc-flow-list__item:last-of-type .flow-step::before
{
    position: absolute;
    right: -220px;
    bottom: -35px;

    display: block;

    width: 400px;
    height: 200px;

    content: '';

    background-image: url(../images/snscampaign/pc/illust_goods_pc.png);
    background-repeat: no-repeat;
    background-size: contain;
}
.sc-flow__inner .sc-flow-list__item:last-of-type .flow-step__text
{
    position: relative;
    z-index: 0;
    top: 49px;
    left: -170px;

    transition: 1.4s;
    transform: translateX(40px);

    opacity: 0;
}
.sc-flow__inner .sc-flow-list__item:last-of-type .flow-step__text.js-anime-on
{
    transition: 1.4s;
    transform: translateX(0);

    opacity: 1;
}
.sc-flow__inner .sc-flow-list__item .flow-step
{
    display: flex;

    justify-content: space-between;
}
.sc-flow__inner .sc-flow-list__item .flow-step__text
{
    position: relative;
    z-index: 1;

    display: block;

    width: 420px;
    height: 267px;
}
.sc-flow__inner .sc-flow-list__item .flow-step__text > source,
.sc-flow__inner .sc-flow-list__item .flow-step__text > img
{
    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.sc-flow__inner .sc-flow-list__item .flow-step__photo
{
    display: block;

    width: 564px;
    height: 380px;
}
.sc-flow__inner .sc-flow-list__item .flow-step__photo > img
{
    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.sc-flow__inner .sc-flow-present
{
    position: relative;

    display: block;

    width: 568px;
    height: 156px;
    margin: 0 auto;

    transition: 1.4s;
    transform: translateY(40px);

    opacity: 0;
}
.sc-flow__inner .sc-flow-present.js-anime-on
{
    transition: 1.4s;
    transform: translateY(0);

    opacity: 1;
}
.sc-flow__inner .sc-flow-present::before
{
    position: absolute;
    top: -19px;
    left: -25px;

    display: block;

    width: 96px;
    height: 96px;

    content: '';

    background-image: url(../images/snscampaign/common/sarani.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.sc-flow__inner .sc-flow-present > source,
.sc-flow__inner .sc-flow-present > img
{
    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}

@-webkit-keyframes wave-slide-top
{
    0%
    {
        transform: translateX(0);
    }
    100%
    {
        transform: translateX(-100%);
    }
}

@keyframes wave-slide-top
{
    0%
    {
        transform: translateX(0);
    }
    100%
    {
        transform: translateX(-100%);
    }
}
@-webkit-keyframes wave-slide-bottom
{
    0%
    {
        transform: translateX(0);
    }
    100%
    {
        transform: translateX(100%);
    }
}
@keyframes wave-slide-bottom
{
    0%
    {
        transform: translateX(0);
    }
    100%
    {
        transform: translateX(100%);
    }
}
.sc-fv
{
    display: flex;

    width: 100%;
    height: 510px;

    background-image: url(../images/snscampaign/pc/fv_bg_pc.jpg);
    background-position: center;
    background-size: cover;

    align-items: center;
    justify-content: center;
}
.sc-fv__copy
{
    position: relative;
    top: -37px;

    display: block;

    width: 477px;
    height: auto;
}
.sc-fv__copy::before
{
    position: absolute;
    top: -61px;
    left: -193px;

    display: block;

    width: 293px;
    height: 112px;

    content: '';

    background-image: url(../images/snscampaign/common/fv_en_text.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.sc-fv__copy > img
{
    display: block;

    width: 100%;
    height: 100%;
}

.sc-lead
{
    display: block;

    width: 100%;
    height: auto;
}
.sc-lead__inner
{
    position: relative;

    display: flex;
    flex-direction: column;

    width: 100%;
    max-width: 1440px;
    height: auto;
    margin: 0 auto;
    padding: 79px 0 221px;

    align-items: center;
    justify-content: center;
}
.sc-lead__inner::before,
.sc-lead__inner::after
{
    position: absolute;

    display: block;

    content: '';

    background-size: contain;
}
.sc-lead__inner::before
{
    top: 72px;
    left: 61px;

    width: 320px;
    height: 398px;

    background-image: url(../images/snscampaign/pc/lead_bg_pc_01.png);
}
.sc-lead__inner::after
{
    top: 351px;
    right: -160px;

    width: 604px;
    height: 457px;

    background-image: url(../images/snscampaign/pc/lead_bg_pc_02.png);
}
.sc-lead__inner .sc-lead-text-01,
.sc-lead__inner .sc-lead-text-02,
.sc-lead__inner .sc-lead-text-03,
.sc-lead__inner .sc-lead-text-04
{
    position: relative;
    z-index: 1;

    display: block;

    height: auto;

    transition: 1.4s;
    transform: translateY(40px);

    opacity: 0;
}
.sc-lead__inner .sc-lead-text-01.js-anime-on,
.sc-lead__inner .sc-lead-text-02.js-anime-on,
.sc-lead__inner .sc-lead-text-03.js-anime-on,
.sc-lead__inner .sc-lead-text-04.js-anime-on
{
    transition: 1.4s;
    transform: translateY(0);

    opacity: 1;
}
.sc-lead__inner .sc-lead-text-01 > source,
.sc-lead__inner .sc-lead-text-01 > img,
.sc-lead__inner .sc-lead-text-02 > source,
.sc-lead__inner .sc-lead-text-02 > img,
.sc-lead__inner .sc-lead-text-03 > source,
.sc-lead__inner .sc-lead-text-03 > img,
.sc-lead__inner .sc-lead-text-04 > source,
.sc-lead__inner .sc-lead-text-04 > img
{
    width: 100%;
    height: auto;
}
.sc-lead__inner .sc-lead-text-01
{
    width: 455px;
    margin-bottom: 51px;
}
.sc-lead__inner .sc-lead-text-02
{
    width: 730px;
    margin-bottom: 30px;
}
.sc-lead__inner .sc-lead-text-03
{
    width: 485px;
    margin-bottom: 69px;
}
.sc-lead__inner .sc-lead-text-04
{
    width: 408px;
}

.sc-period
{
    display: flex;

    width: 100%;
    padding: 10px 0;

    background-color: #304257;

    justify-content: center;
}
.sc-period__text
{
    display: block;

    width: 406px;
    height: 33px;
}
.sc-period__text > img
{
    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}

.sc-requirements
{
    display: block;

    width: 100%;
    height: auto;
    padding: 120px 0 150px;
}
.sc-requirements__inner
{
    display: block;

    width: 100%;
    max-width: 1440px;
    height: auto;
    margin: 0 auto;
}
.sc-requirements__inner .sc-requirements-heading-container
{
    position: relative;

    display: block;

    width: -webkit-fit-content;
    width:    -moz-fit-content;
    width:         fit-content;
    margin: 0 auto;
}
.sc-requirements__inner .sc-requirements-heading-container::before,
.sc-requirements__inner .sc-requirements-heading-container::after
{
    position: absolute;

    display: block;

    content: '';

    background-repeat: no-repeat;
    background-size: contain;
}
.sc-requirements__inner .sc-requirements-heading-container::before
{
    top: 9px;
    left: -296px;

    width: 170px;
    height: 112px;

    background-image: url(../images/snscampaign/pc/illusts_pc_01.svg);
}
.sc-requirements__inner .sc-requirements-heading-container::after
{
    top: 8px;
    right: -244px;

    width: 100px;
    height: 113px;

    background-image: url(../images/snscampaign/common/illusts_hanabi.svg);
}
.sc-requirements__inner .sc-requirements-heading-container .sc-requirements-heading
{
    position: relative;

    display: block;

    width: 160px;
    height: auto;
    margin: 0 auto 70px;

    transition: 1.4s;
    transform: translateY(40px);

    opacity: 0;
}
.sc-requirements__inner .sc-requirements-heading-container .sc-requirements-heading.js-anime-on
{
    transition: 1.4s;
    transform: translateY(0);

    opacity: 1;
}
.sc-requirements__inner .sc-requirements-heading-container .sc-requirements-heading > img
{
    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.sc-requirements__inner .sc-requirements-list
{
    display: block;

    width: 100%;
    max-width: 920px;
    height: auto;
    margin: 0 auto;
}
.sc-requirements__inner .sc-requirements-list__item
{
    transition: 1.4s;
    transform: translateY(40px);

    opacity: 0;
}
.sc-requirements__inner .sc-requirements-list__item.js-anime-on
{
    transition: 1.4s;
    transform: translateY(0);

    opacity: 1;
}
.sc-requirements__inner .sc-requirements-list__item:not(:last-of-type)
{
    margin-bottom: 71px;
}
.sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents
{
    border: 3px solid #3258b9;
    border-radius: 10px;
}
.sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__title
{
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 24px;
    font-weight: 500;
    font-style: normal;
    line-height: normal;

    margin-bottom: 43px;
    padding: 11px 0 14px;

    text-align: center;
    letter-spacing: 2.88px;

    color: #fff;
    background-color: #3258b9;
}
.sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__list
{
    margin-bottom: 58px;
    padding: 0 73px;
}
.sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__list--item
{
    display: flex;
}
.sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__list--item:not(:last-of-type)
{
    margin-bottom: 19px;
}
.sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__list--item .requirements-list-text,
.sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__list--item .requirements-list-number
{
    font-family: 'Zen Kaku Gothic New', sans-serif;
    font-size: 17px;
    font-weight: 500;
    font-style: normal;
    line-height: 150%; /* 25.5px */

    color: #000;
}
.sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__list--item .requirements-list-number
{
    margin-right: 6px;
}
.sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__image-container
{
    display: block;

    margin: 0 73px 44px;
    padding: 26px 0 45px;

    background-color: #f4fafc;
}
.sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__image-container--title
{
    font-size: 18px;
    font-weight: 700;
    font-style: normal;
    line-height: 140%; /* 25.2px */

    margin-bottom: 16px;

    text-align: center;
    letter-spacing: 1.44px;

    color: #1a1a1a;
}
.sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__image-container--image
{
    display: block;

    width: 371px;
    height: 360px;
    margin: 0 auto;
}
.sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__image-container--image > source,
.sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__image-container--image > img
{
    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__image
{
    display: block;

    width: 800px;
    height: 289px;
    margin: 0 auto 43px;
}
.sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__image > source,
.sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__image > img
{
    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
@media screen and (max-width: 767px)
{
    .SPshow
    {
        display: block;
    }
    .PCshow
    {
        display: none;
    }
    .sns-campaignn
    {
        max-width: 390px;
        margin: 0 auto;
    }
    .sc-agreement
    {
        padding: 31px 12px 57px;

        background-image: url(../images/snscampaign/sp/footer_bg_sp.jpg);
    }
    .sc-agreement__contents
    {
        max-width: 366px;
        padding: 35px 17px 30px;
    }
    .sc-agreement__contents .sc-agreement-title
    {
        font-size: 20px;

        margin-bottom: 21px;
    }
    .sc-agreement__contents .sc-agreement-list__item:not(:last-of-type)
    {
        margin-bottom: 11px;
    }
    .sc-agreement__contents .sc-agreement-list__item > span
    {
        font-size: 12px;
    }
    .sc-agreement__contents .sc-agreement-list__item > span::before
    {
        font-size: 12px;

        margin-right: 1px;
    }
    .sc-agreement__contents .sc-agreement-number-list
    {
        padding-top: 5px;
        padding-left: 15px;
    }
    .sc-agreement__contents .sc-agreement-number-list__item
    {
        display: flex;

        margin-bottom: 2px;
    }
    .sc-agreement__contents .sc-agreement-number-list__item:not(:first-of-type)
    {
        margin-top: 0;
    }
    .sc-agreement__contents .sc-agreement-number-list__item > span
    {
        font-size: 10px;
    }
    .sc-flow
    {
        padding: 42px 0 83px;
    }
    .sc-flow::before,
    .sc-flow::after
    {
        height: 33px;

        background-size: contain;
    }
    .sc-flow::before
    {
        top: -30px;

        -webkit-animation: wave-slide-top 1000s linear infinite;
                animation: wave-slide-top 1000s linear infinite;
    }
    .sc-flow::after
    {
        bottom: -10px;

        -webkit-animation: wave-slide-bottom 1000s linear infinite;
                animation: wave-slide-bottom 1000s linear infinite;
    }
    .sc-flow__inner
    {
        max-width: 390px;
    }
    .sc-flow__inner .sc-flow-heading
    {
        width: 100%;
        max-width: 324px;
        margin: 0 auto 24px;
    }
    .sc-flow__inner .sc-flow-description
    {
        font-size: 15px;
        font-weight: 500;
        line-height: 180%;

        padding: 0 32px;

        text-align: left;
    }
    .sc-flow__inner .sc-flow-list
    {
        padding-top: 16px;
    }
    .sc-flow__inner .sc-flow-list::before
    {
        top: -38px;
        right: 14px;

        width: 39px;
        height: 35px;
    }
    .sc-flow__inner .sc-flow-list__item:first-of-type
    {
        margin-bottom: 10px;
    }
    .sc-flow__inner .sc-flow-list__item:first-of-type .flow-step__text
    {
        top: 28px;
        right: auto;
    }
    .sc-flow__inner .sc-flow-list__item:first-of-type .flow-step__photo
    {
        margin-left: auto;
    }
    .sc-flow__inner .sc-flow-list__item:last-of-type .flow-step::before
    {
        right: 0;
        bottom: -80px;

        width: 195px;
        height: 100px;

        background-image: url(../images/snscampaign/sp/illust_goods_sp.png);
    }
    .sc-flow__inner .sc-flow-list__item:last-of-type .flow-step__text
    {
        position: absolute;
        top: 15px;
        right: 0;
        left: auto;
    }
    .sc-flow__inner .sc-flow-list__item .flow-step
    {
        width: 100%;
    }
    .sc-flow__inner .sc-flow-list__item .flow-step__text
    {
        position: absolute;

        width: 220px;
        height: 166px;
    }
    .sc-flow__inner .sc-flow-list__item .flow-step__photo
    {
        overflow: hidden;

        width: 195px;
        height: 208px;
    }
    .sc-flow__inner .sc-flow-list__item .flow-step__photo > img
    {
        -o-object-fit: cover;
           object-fit: cover;
    }
    .sc-flow__inner .sc-flow-present
    {
        width: 282px;
        height: auto;
        margin-top: -14px;
    }
    .sc-flow__inner .sc-flow-present::before
    {
        top: -31px;
        left: -2px;

        width: 68px;
        height: 68px;
    }
    .sc-fv
    {
        height: 180px;

        background-image: url(../images/snscampaign/sp/fv_bg_sp.jpg);
    }
    .sc-fv__copy
    {
        top: -5px;

        width: 271px;
    }
    .sc-fv__copy::before
    {
        top: -37px;
        left: -41px;

        width: 215px;
        height: 61px;
    }
    .sc-lead__inner
    {
        max-width: 390px;
        padding: 34px 0 90px;
    }
    .sc-lead__inner::before
    {
        top: -8px;
        left: -24px;

        width: 133px;
        height: 253px;

        background-image: url(../images/snscampaign/sp/lead_bg_sp_01.png);
    }
    .sc-lead__inner::after
    {
        z-index: -1;
        top: 95px;
        right: -136px;

        width: 355px;
        height: 414px;

        background-image: url(../images/snscampaign/sp/lead_bg_sp_02.png);
    }
    .sc-lead__inner .sc-lead-text-01
    {
        width: 305px;
        margin-bottom: 34px;
    }
    .sc-lead__inner .sc-lead-text-02
    {
        width: 313px;
        margin-bottom: 0;
    }
    .sc-lead__inner .sc-lead-text-03
    {
        width: 319px;
        margin-bottom: 39px;
    }
    .sc-lead__inner .sc-lead-text-04
    {
        width: 306px;
    }
    .sc-period
    {
        position: relative;
        z-index: 1;

        padding: 6px 0;
    }
    .sc-period__text
    {
        width: 267px;
        height: auto;
    }
    .sc-requirements
    {
        padding: 50px 0 70px;
    }
    .sc-requirements__inner
    {
        max-width: 390px;
        padding: 0 12px;
    }
    .sc-requirements__inner .sc-requirements-heading-container::before
    {
        top: -35px;
        left: -119px;

        background-image: url(../images/snscampaign/sp/illusts_sp_01.svg);
    }
    .sc-requirements__inner .sc-requirements-heading-container::after
    {
        top: -28px;
        right: -109px;

        width: 74px;
        height: 85px;
    }
    .sc-requirements__inner .sc-requirements-heading-container .sc-requirements-heading
    {
        width: 104px;
        margin: 0 auto 22px;
    }
    .sc-requirements__inner .sc-requirements-list__item:not(:last-of-type)
    {
        margin-bottom: 31px;
    }
    .sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents
    {
        border: 2px solid #3258b9;
    }
    .sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__title
    {
        font-size: 20px;
        font-style: normal;

        margin-bottom: 25px;
        padding: 8px 0 10px;

        letter-spacing: 2.4px;
    }
    .sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__list
    {
        margin-bottom: 33px;
        padding: 0 16px;
    }
    .sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__list--item:not(:last-of-type)
    {
        margin-bottom: 24px;
    }
    .sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__list--item .requirements-list-text,
    .sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__list--item .requirements-list-number
    {
        font-size: 15px;
    }
    .sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__image-container
    {
        margin: 0 16px 19px;
        padding: 16px 0 13px;
    }
    .sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__image-container--title
    {
        font-size: 14px;
        line-height: 140%; /* 22.4px */

        margin-bottom: 15px;
    }
    .sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__image-container--image
    {
        width: 100%;
        max-width: 285px;
        height: auto;
    }
    .sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__image
    {
        width: 100%;
        max-width: 346px;
        height: auto;
        margin: 0 auto 32px;
    }
}
@media (min-width: 768px) and (max-width: 1024px)
{
    .sc-agreement
    {
        padding: 59px 40px;
    }
    .sc-flow__inner .sc-flow-list::before
    {
        top: -50px;
        right: 20px;
    }
    .sc-flow__inner .sc-flow-list__item:first-of-type .flow-step__text
    {
        top: 8.98vw;
        right: -16.6vw;
    }
    .sc-flow__inner .sc-flow-list__item:last-of-type .flow-step__text
    {
        top: 4.79vw;
        left: -16.6vw;
    }
    .sc-flow__inner .sc-flow-list__item .flow-step__photo
    {
        width: 55.08vw;
        height: 37.11vw;
    }
    .sc-flow__inner .sc-flow-list__item .flow-step__photo > img
    {
        -o-object-fit: cover;
           object-fit: cover;
    }
    .sc-fv__copy::before
    {
        left: -18.85vw;
    }
    .sc-requirements
    {
        padding: 120px 40px 150px;
    }
    .sc-requirements__inner .sc-requirements-list__item .sc-requirements-contents__image
    {
        width: 100%;
        max-width: 800px;
        padding: 0 24px;
    }
}
@media (min-width: 768px) and (max-width: 1279px)
{
    .sc-lead__inner::before
    {
        left: 4.77vw;

        width: 25.02vw;
        height: 31.12vw;
    }
    .sc-lead__inner::after
    {
        right: -12.51vw;

        width: 47.22vw;
        height: 35.73vw;
    }
}

/* 240802 add */
.c-counter .count-button {
  padding: 0 7px 4px;
}

.rose-bunner {
  display: block;
  width: 100%;
  height: auto;
  margin-top: 24px;
}

.rose-bunner > source,
.rose-bunner > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 767px) {
  .rose-bunner {
    margin-top: 16px;
  }
}

/* 20240805 add */
@media screen and (min-width: 768px) {

.header {
  height: auto;
}

.header__container {
  justify-content: center;
  padding: 88px 0 24px;
  height: auto;
  opacity: 1;
  transition: 1s;
}

.header__logo {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 32px;
  filter: blur(0);
  transition: 1s;
  opacity: 1;
}

.header__logo.is-scroll {
  filter: blur(10px);
  transform: translateY(-16px);
  opacity: 0;
  transition: 1s;
}

.header__container.is-scroll {
  justify-content: center;
  padding: 24px 0 24px;
  transition: 1s;
  height: auto;
}

.header__icon-wrapper {
  margin-left: 40px;
  margin-top: unset;
  position: relative;
  top: -4px;
}

.header__nav {
  margin-left: unset!important;
}

.header .nav .item__ttl {
  margin-top: unset;
}

.header .nav__lists {
  align-items: center;
}

.header .nav.is-scroll .item__ttl {
  margin-top: unset;
}

.header .nav .item__wrapper {
	
}

.header .nav.is-scroll .item__wrapper {
  top: 41px;
}

.c-contents-header.-new-header {
  width: 100%;
  max-width: 1070px;
  margin: 40px auto;
  padding-bottom: 0;
  position: relative;
  border-bottom: none;
}

.c-contents-header__title {
  color: #333;
  font-size: 32px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  background-color: #fff;
  position: relative;
  z-index: 2;
  padding-right: 16px;
}

.c-contents-header.-new-header::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

.l-contents {
  padding-top: 160px;
}

.search__lists {
  flex-direction: row;
  height: auto;
}

.card-category-label {
  border: 1px solid #333;
  padding: 2px 10px;
  display: block;
  width: fit-content;
  line-height: 1.2;
  font-size: 11px;
  margin-bottom: 4px;
  color: #333;
}

.card-complaint-label-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  padding-top: 6px;
}

.card-complaint-label-container > span {
  border: 1px solid #333;
  padding: 2px 10px;
  display: block;
  width: fit-content;
  line-height: 1.2;
  font-size: 11px;
  color: #333;
}

.header .icon-wrapper .item__sub-lists {
  bottom: -1px;
}

}

@media screen and (max-width: 767px) {
  .c-contents-header.-new-header {
    width: 100%;
    max-width: 1070px;
    margin: 32px auto;
    padding-bottom: 0;
    position: relative;
    border-bottom: none;
  }

  .c-contents-header__title {
    font-size: 28px;
    padding-left: 16px;
    color: #333;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background-color: #fff;
    position: relative;
    z-index: 2;
    padding-right: 16px;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
  
  .c-contents-header.-new-header::after {
    content: "";
    display: block;
    width: 97%;
    height: 1px;
    background-color: #333;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }

  .card-category-label {
    border: 1px solid #333;
    padding: 2px 10px;
    display: block;
    width: fit-content;
    line-height: 1.2;
    font-size: 11px;
    margin-bottom: 4px;
    color: #333;
  }

  .card-complaint-label-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    padding-top: 6px;
  }

  .card-complaint-label-container > span {
    border: 1px solid #333;
    padding: 2px 10px;
    display: block;
    width: fit-content;
    line-height: 1.2;
    font-size: 11px;
    color: #333;
  }
}

/* 20240808 add */
.faq {
  padding: 50px 0 100px;
}

@media screen and (min-width: 768px) {
  .header .icon-wrapper .item__sub-lists {
      bottom: -5px;
  }
}

@media screen and (max-width: 767px) {
  .header {
    height: 80px!important;
  }
  .l-contents {
    padding-top: 80px;
  }
  .faq {
      max-width: 100%;
      margin: 0 auto;
      padding: 30px 20px 50px;
  }
}

/* 20240819 add */
.card-category-label-container {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}

.card-category-label-container > .product-label {
  padding: 4px 14px;
  font-size: 11px;
}

.card-category-label-container > .product-label.-black-line {
  border: 1px solid #000;
  color: #000;
  background-color: #fff;
}

.card-category-label-container > .product-label.-black-bg {
  background-color: #000;
  color: #fff;
}

.card-category-label-container > .product-label.-pink-bg {
  background-color: #E6756E;
  color: #fff;
}

.card-complaint-label-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding-top: 12px;
}

.card-complaint-label-container > span {
  padding: 3px 8px;
  background-color: #DFDFDF;
  color: #7B7B7B;
  font-size: 10px;
  border: none;
}

.review-summary-container.-list-page {
  padding: 0 0 4px 8px;
}

/* 240828 add */
.product-detail .point .step .f-lists__item:nth-of-type(3) {
  -webkit-clip-path: polygon(84% 0%, 100% 50%, 84% 100%, 0% 100%, 15% 50%, 0% 0%);
  clip-path: polygon(84% 0%, 100% 50%, 84% 100%, 0% 100%, 15% 50%, 0% 0%);
}

.product-detail .point .step .f-lists__item:nth-of-type(4) {
  -webkit-clip-path: polygon(84% 0%, 100% 50%, 84% 100%, 0% 100%, 14% 50%, 0% 0%);
  clip-path: polygon(84% 0%, 100% 50%, 84% 100%, 0% 100%, 14% 50%, 0% 0%);
}

@media screen and (max-width: 767px) {
  .product-detail .point .step .f-lists__item:nth-of-type(3) {
    -webkit-clip-path: polygon(50% 15%, 100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
    clip-path: polygon(50% 15%, 100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
  }
  
  .product-detail .point .step .f-lists__item:nth-of-type(4) {
    -webkit-clip-path: polygon(50% 15%, 100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
    clip-path: polygon(50% 15%, 100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
  }
  
}

/* 240902 add */
.gift-link-text {
  display: flex;
  width: fit-content;
  height: auto;
  color: #000;
  position: relative;
  margin-left: 24px;
  margin-top: 10px;
}

.gift-link-text:hover > span {
  text-decoration-line: none;
}

.gift-link-text::before {
  content: "";
  background-image: url(../images/common/icon-gift.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  width: 17px;
  height: 19px;
  position: absolute;
  left: -24px;
  top: 2px;
}

.gift-link-text > span {
  font-family: "Noto Sans JP";
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.2px;
  text-decoration-line: underline;
}

.new-favorite-text {
  width: fit-content!important;
  padding: 0px!important;
  border: none!important;
  /*  */
  color: #000!important;
  font-family: "Noto Sans JP"!important;
  font-size: 15px!important;
  font-style: normal!important;
  font-weight: 400!important;
  line-height: normal!important;
  letter-spacing: 1.2px!important;
  text-decoration-line: underline!important;
}

.new-favorite-text.js-under-line-none {
  text-decoration-line: none!important;
}

.new-favorite-text:hover {
  text-decoration-line: none!important;
  filter: brightness(100%)!important;
}

.c-button__icon--favorite {
  margin-top: 3px;
}

/* 240912 add point mall page */
.black-bg
{
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;

    display: flex;
    display: none;

    width: 100%;
    height: auto;
    min-height: 100%;

    background-color: rgba(0, 0, 0, .8);

    align-items: center;
    justify-content: center;
}
.black-bg.js-bg-open
{
    display: flex;
}
.black-bg__caution
{
    position: relative;

    display: block;
    display: none;

    width: 100%;
    max-width: 1070px;
    height: auto;
    max-height: 734px;
    padding: 60px 130px 80px;

    border-radius: 8px;
    background-color: #fff;
}
.black-bg__caution.js-bg-open
{
    display: block;
}
.black-bg__caution .bg-caution-close-button
{
    position: absolute;
    top: 10px;
    right: 14px;

    display: block;

    width: 28px;
    height: auto;
    background-color: #fff;
}
.black-bg__caution .bg-caution-close-button > img
{
    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.black-bg__caution .bg-caution-title
{
    font-family: 'Noto Sans JP';
    font-size: 15px;
    font-weight: 500;
    font-style: normal;
    line-height: 140%; /* 21px */

    margin-bottom: 50px;

    text-align: center;

    color: var(--333, #333);
}
.black-bg__caution .bg-caution-list__item:not(:last-of-type)
{
    margin-bottom: 20px;
}
.black-bg__caution .bg-caution-list__item--title
{
    font-size: 13px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%; /* 13px */

    color: var(--333, #333);
}
.black-bg__caution .bg-caution-list__item--description
{
    font-size: 12px;
    font-weight: 300;
    font-style: normal;
    line-height: 160%; /* 19.2px */

    color: var(--333, #333);
}
.black-bg__item
{
    position: relative;

    display: none;

    min-width: 630px;

    background-color: #fff;
}
.black-bg__item.js-bg-open
{
    display: block;
}
.black-bg__item .bg-item-close-button
{
    position: absolute;
    z-index: 10;
    top: 12px;
    right: 16px;

    display: block;

    width: 24px;
    height: 24px;
    background-color: #fff;
}
.black-bg__item .bg-item-close-button > img
{
    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.black-bg__item .pm-item-detail-container__inner
{
    position: relative;

    display: flex;

    padding: 50px;

    gap: 15px;
    align-items: center;
}
.black-bg__item .pm-item-detail-container__inner .item-detail-image
{
    display: block;

    width: 205px;
    height: 205px;
}
.black-bg__item .pm-item-detail-container__inner .item-detail-image > img
{
    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.black-bg__item .pm-item-detail-container__inner .item-detail-text-container .item-detail-label {
  display: inline-block;
  padding: 4px 10px 5px;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%; /* 12px */
  letter-spacing: 0.24px;
  background-color: #B99F32;
  border-radius: 20px;
  margin-bottom: 8px;
}
.black-bg__item .pm-item-detail-container__inner .item-detail-text-container .item-detail-name-en
{
    font-family: Helvetica;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%; /* 18px */

    margin-bottom: 6px;

    color: var(--333, #333);
}
.black-bg__item .pm-item-detail-container__inner .item-detail-text-container .item-detail-name-jp
{
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%; /* 12px */

    margin-bottom: 15px;

    color: var(--333, #333);
}
.black-bg__item .pm-item-detail-container__inner .item-detail-text-container .item-detail-category
{
    font-family: 'Noto Sans JP';
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%; /* 14px */

    display: block;

    width: -webkit-fit-content;
    width:    -moz-fit-content;
    width:         fit-content;
    margin-bottom: 28px;
    padding: 6px 24px 8px;

    letter-spacing: 1.4px;

    color: var(--333, #333);
    border: 1px solid #d9d9d9;
}
.black-bg__item .pm-item-detail-container__inner .item-detail-text-container .item-detail-complaint > li:not(:last-of-type)
{
    margin-bottom: 15px;
}
.black-bg__item .pm-item-detail-container__inner .item-detail-text-container .item-detail-complaint > li > span
{
    font-family: 'Noto Sans JP';
    font-size: 15px;
    font-weight: 300;
    font-style: normal;
    line-height: 100%; /* 15px */

    position: relative;

    display: flex;

    color: var(--333, #333);

    align-items: center;
}
.black-bg__item .pm-item-detail-container__inner .item-detail-text-container .item-detail-complaint > li > span::before
{
    display: block;

    width: 12px;
    height: 8px;
    margin-right: 4px;

    content: '';

    background-image: url(../images/point_mall/icon_check.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.header__inner > h1 > img
{
    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: cover;
       object-fit: cover;
}

.point-mole
{
    /* padding-top: 132px; */

    background-color: #fff;
}

.pm-contents-container
{
    display: block;

    width: 100%;
    height: auto;
    padding: 60px 58px 120px;

    background-color: #fff;
}
.pm-contents-container.-bottom
{
    padding: 60px 58px 106px;
}
.pm-contents-container:not(:last-of-type)
{
    margin-bottom: 100px;
}
.pm-contents-container .contents-point__title
{
    font-size: 24px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%; /* 24px */

    margin-bottom: 51px;

    text-align: center;

    color: var(--gold-text, #b99f32);
}
.pm-contents-container .contents-point__description
{
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    line-height: 180%; /* 28.8px */

    margin-bottom: 41px;

    text-align: center;

    color: var(--333, #333);
}
.pm-contents-container .contents-point__trans-image
{
    display: block;

    width: 100%;
    max-width: 716px;
    height: auto;
    margin: 0 auto 72px;
}
.pm-contents-container .contents-point__trans-image > source,
.pm-contents-container .contents-point__trans-image > img
{
    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.pm-contents-container .contents-point__sub-title
{
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%; /* 20px */

    margin-bottom: 40px;

    text-align: center;

    color: var(--333, #333);
}
.pm-contents-container .contents-point__rank-image
{
    display: block;

    width: 100%;
    max-width: 640px;
    height: auto;
    margin: 0 auto 40px;
}
.pm-contents-container .contents-point__rank-image > source,
.pm-contents-container .contents-point__rank-image > img
{
    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.pm-contents-container .contents-point__example-image
{
    display: block;

    width: 100%;
    max-width: 716px;
    height: auto;
    margin: 0 auto 100px;
}
.pm-contents-container .contents-point__example-image > source,
.pm-contents-container .contents-point__example-image > img
{
    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.pm-contents-container .contents-store__title
{
    display: block;

    width: 100%;
    height: auto;
}
.pm-contents-container .contents-store__title--image
{
    display: block;

    width: 100%;
    height: auto;
    margin: 0 auto 30px;
}
.pm-contents-container .contents-store__title--image > source,
.pm-contents-container .contents-store__title--image > img
{
    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.pm-contents-container .contents-store__description
{
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    line-height: 180%; /* 28.8px */

    margin-bottom: 48px;

    text-align: center;

    color: var(--333, #333);
}
.pm-contents-container .contents-store__list
{
    display: flex;

    width: 700px;
    height: auto;
    margin: 0 auto 89px;
    padding-left: 28px;

    -moz-column-gap: 70px;
         column-gap: 70px;
    align-items: flex-start;
}
.pm-contents-container .contents-store__list--item .store-image
{
    display: block;

    width: 264px;
    height: auto;
    margin-bottom: 10px;
}
.pm-contents-container .contents-store__list--item .store-image > source,
.pm-contents-container .contents-store__list--item .store-image > img
{
    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.pm-contents-container .contents-store__list--item .store-name
{
    font-size: 15px;
    font-weight: 400;
    font-style: normal;
    line-height: normal;

    margin-bottom: 13px;

    color: var(--333, #333);
}
.pm-contents-container .contents-store__list--item .store-data
{
    margin-left: -2px;
}
.pm-contents-container .contents-store__list--item .store-data > tbody > tr
{
    display: flex;

    margin-bottom: 10px;
}
.pm-contents-container .contents-store__list--item .store-data > tbody > tr > th,
.pm-contents-container .contents-store__list--item .store-data > tbody > tr > td
{
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%; /* 12px */

    color: var(--333, #333);
}
.pm-contents-container .contents-store__list--item .store-data > tbody > tr > th > address,
.pm-contents-container .contents-store__list--item .store-data > tbody > tr > td > address
{
    font-style: normal;
}
.pm-contents-container .contents-store__list--item .store-data > tbody > tr > th
{
    min-width: 60px;
}
.pm-contents-container .contents-limit__title
{
    display: block;

    width: 100%;
    height: auto;
}
.pm-contents-container .contents-limit__title--image
{
    display: block;

    width: 100%;
    height: auto;
    margin: 0 auto 30px;
}
.pm-contents-container .contents-limit__title--image > source,
.pm-contents-container .contents-limit__title--image > img
{
    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}
.pm-contents-container .contents-limit__description
{
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    line-height: 180%; /* 28.8px */

    text-align: center;

    color: var(--333, #333);
}
.pm-contents-container .contents-use__title
{
    font-size: 24px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%; /* 24px */

    margin-bottom: 50px;

    text-align: center;

    color: var(--gold-text, #b99f32);
}
.pm-contents-container .contents-use__lead
{
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    line-height: 180%; /* 28.8px */

    margin-bottom: 40px;

    text-align: center;

    color: var(--333, #333);
}
.pm-contents-container .contents-use__flow
{
    display: block;

    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto 24px;
}
.pm-contents-container .contents-use__flow--item
{
    position: relative;

    display: flex;

    min-height: 54px;
    padding: 19px 32px 19px 80px;

    background: var(--gold-usui, #f9f7ee);

    align-items: center;
}
.pm-contents-container .contents-use__flow--item:not(:last-of-type)
{
    margin-bottom: 29px;
}
.pm-contents-container .contents-use__flow--item:not(:last-of-type):after
{
    position: absolute;
    right: 0;
    bottom: -20px;
    left: 0;

    display: block;

    width: 20px;
    height: 12px;
    margin: 0 auto;

    content: '';

    background-image: url(../images/point_mall/icon_triangle.svg);
    background-repeat: no-repeat;
    background-size: contain;
}
.pm-contents-container .contents-use__flow--item:first-of-type::before
{
    content: '1';
}
.pm-contents-container .contents-use__flow--item:nth-of-type(2)::before
{
    content: '2';
}
.pm-contents-container .contents-use__flow--item:nth-of-type(3)::before
{
    content: '3';
}
.pm-contents-container .contents-use__flow--item:nth-of-type(4)::before
{
    content: '4';
}
.pm-contents-container .contents-use__flow--item:last-of-type::before
{
    content: '5';
}
.pm-contents-container .contents-use__flow--item::before
{
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%; /* 20px */

    position: absolute;
    left: 0;

    display: flex;

    width: 50px;
    height: 100%;

    color: var(--333, #333);
    background: var(--gold-normal, #e6d694);

    align-items: center;
    justify-content: center;
}
.pm-contents-container .contents-use__flow--item > span
{
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%; /* 16px */

    position: relative;

    color: var(--333, #333);
}
.pm-contents-container .contents-use__flow--item > span > span
{
    font-family: 'Noto Sans JP';
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 140%; /* 19.6px */

    display: block;

    margin-top: 4px;

    color: var(--333, #333);
}
.pm-contents-container .contents-use__annotation
{
    display: block;

    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto 85px;
}
.pm-contents-container .contents-use__annotation--item
{
    display: block;

    height: -webkit-fit-content;
    height:    -moz-fit-content;
    height:         fit-content;
    margin-top: -7px;
}
.pm-contents-container .contents-use__annotation--item > span
{
    font-size: 12px;
    font-weight: 300;
    font-style: normal;
    line-height: 160%; /* 19.2px */

    color: var(--333, #333);
}
.pm-contents-container .contents-use__caution-button
{
    position: relative;
    left: -23px;

    display: flex;

    margin: 0 auto;

    transition: .5s;

    align-items: center;
}
.pm-contents-container .contents-use__caution-button::before,
.pm-contents-container .contents-use__caution-button::after
{
    position: absolute;
    z-index: 10;
    right: -40px;

    display: block;

    width: 16px;
    height: 2px;

    content: '';

    background-color: #fff;
}
.pm-contents-container .contents-use__caution-button::after
{
    transform: rotate(90deg);
}
.pm-contents-container .contents-use__caution-button > span
{
    font-family: 'Noto Sans JP';
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%; /* 16px */

    position: relative;

    color: var(--333, #333);
    background-color: #fff;
}
.pm-contents-container .contents-use__caution-button > span::after
{
    position: absolute;
    top: 0;
    right: -46px;
    bottom: 0;

    display: block;

    width: 28px;
    height: 28px;
    margin: auto 0;

    content: '';

    border-radius: 50%;
    background-color: #333;
}

.pm-contents
{
    display: block;

    width: 100%;
    height: auto;

    background-color: rgba(67, 71, 72, .08);
}
.pm-contents__inner
{
    display: block;

    width: 100%;
    max-width: 1070px;
    height: auto;
    margin: 0 auto;
    padding: 88px 0 100px;
}

.pm-form
{
    display: block;

    width: 100%;
    max-width: 890px;
    height: auto;
    margin: 0 auto 100px;
}
.pm-form > div > iframe
{
    border: none;
}

.pm-fv
{
    display: block;

    width: 100%;
    height: 583px;

    background-image: url(../images/point_mall/fv_pc.webp);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}
.pm-fv__inner
{
    display: block;

    width: 100%;
    max-width: 856px;
    height: 100%;
    margin: 0 auto;
    padding: 89px 0 90px;
}
.pm-fv__inner .pm-fv-contents
{
    display: flex;
    flex-direction: column;

    height: 100%;
    padding: 78px 0 78px;

    background-color: rgba(255, 255, 255, .8);

    align-items: center;
}
.pm-fv__inner .pm-fv-contents__title
{
    font-size: 36px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%; /* 36px */

    margin-bottom: 40px;

    text-align: center;

    color: var(--333, #333);
}
.pm-fv__inner .pm-fv-contents__title > span
{
    margin-left: 36px;
}
.pm-fv__inner .pm-fv-contents__description
{
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 200%; /* 28px */

    margin-bottom: 60px;

    text-align: center;

    color: var(--333, #333);
}
.pm-fv__inner .pm-fv-contents__button
{
    display: flex;

    width: 309px;
    height: 56px;

    transition: .5s;

    color: #fff;
    background-color: #000;

    align-items: center;
    justify-content: center;
}
.pm-fv__inner .pm-fv-contents__button > span
{
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%; /* 16px */

    letter-spacing: 1.6px;
}

.pm-items
{
    position: relative;

    display: block;

    width: 100%;
    height: auto;
    margin-bottom: 100px;
    padding-bottom: 162px;
}
.pm-items::after
{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 90%;
    height: 1px;
    margin: 0 auto;

    content: '';

    background-color: #ddd;
}
.pm-items__inner
{
    display: block;

    width: 100%;
    max-width: 890px;
    margin: 0 auto;
    padding: 120px 0 0;
}
.pm-items__inner .pm-items-title
{
    font-family: 'Noto Sans JP';
    font-size: 24px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%; /* 24px */

    margin-bottom: 72px;

    text-align: center;

    color: var(--333, #333);
}
.pm-items__inner .pm-items-list
{
    display: flex;

    flex-wrap: wrap;
    row-gap: 50px;
    -moz-column-gap: 40px;
         column-gap: 40px;
}
.pm-items__inner .pm-items-list__item
{
    position: relative;

    display: block;

    width: calc(33.3333333333% - 27px);
}
.pm-items__inner .pm-items-list__item::before
{
    font-size: 20px;
    font-weight: 400;

    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;

    display: flex;

    width: 36px;
    height: 36px;

    color: #fff;
    background-color: #333;

    align-items: center;
    justify-content: center;
}
.pm-items__inner .pm-items-list__item:first-of-type::before
{
    content: '1';
}
.pm-items__inner .pm-items-list__item:nth-of-type(2)::before
{
    content: '2';
}
.pm-items__inner .pm-items-list__item:nth-of-type(3)::before
{
    content: '3';
}
.pm-items__inner .pm-items-list__item:nth-of-type(4)::before
{
    content: '4';
}
.pm-items__inner .pm-items-list__item:nth-of-type(5)::before
{
    content: '5';
}
.pm-items__inner .pm-items-list__item:nth-of-type(6)::before
{
    content: '6';
}
.pm-items__inner .pm-items-list__item:nth-of-type(7)::before
{
    content: '7';
}
.pm-items__inner .pm-items-list__item:nth-of-type(8)::before
{
    content: '8';
}
.pm-items__inner .pm-items-list__item:nth-of-type(9)::before
{
    content: '9';
}
.pm-items__inner .pm-items-list__item:nth-of-type(10)::before
{
    content: '10';
}
.pm-items__inner .pm-items-list__item:nth-of-type(11)::before
{
    content: '11';
}
.pm-items__inner .pm-items-list__item:nth-of-type(12)::before
{
    content: '12';
}
.pm-items__inner .pm-items-list__item:nth-of-type(13)::before
{
    content: '13';
}
.pm-items__inner .pm-items-list__item:nth-of-type(14)::before
{
    content: '14';
}
.pm-items__inner .pm-items-list__item:nth-of-type(15)::before
{
    content: '15';
}
.pm-items__inner .pm-items-list__item:nth-of-type(16)::before
{
    content: '16';
}
.pm-items__inner .pm-items-list__item:nth-of-type(17)::before
{
    content: '17';
}
.pm-items__inner .pm-items-list__item:nth-of-type(18)::before
{
    content: '18';
}
.pm-items__inner .pm-items-list__item:nth-of-type(19)::before
{
    content: '19';
}
.pm-items__inner .pm-items-list__item:nth-of-type(20)::before
{
    content: '20';
}
.pm-items__inner .pm-items-list__item .list-item-image
{
    display: block;
    overflow: hidden;

    width: 100%;
    height: auto;
    margin-bottom: 15px;

    cursor: pointer;
    position: relative;
}
.pm-items__inner .pm-items-list__item .list-item-image > img
{
    display: block;

    width: 100%;
    height: auto;

    transition: .8s;

    -o-object-fit: cover;
       object-fit: cover;
}
.pm-items__inner .pm-items-list__item .list-item-image__label
{
    font-size: 13px;
    font-weight: 500;
    font-style: normal;
    line-height: 100%; /* 13px */

    position: absolute;
    top: 7px;
    right: 7px;

    padding: 3px 10px 5px;

    letter-spacing: .26px;

    color: #fff;
    border-radius: 20px;
    background-color: #b99f32;
}
.pm-items__inner .pm-items-list__item .list-item-name
{
    font-size: 12px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%; /* 12px */

    overflow: hidden;

    margin-bottom: 8px;

    text-overflow: ellipsis;

    color: var(--333, #333);
}
.pm-items__inner .pm-items-list__item .list-item-price
{
    font-size: 10px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%; /* 10px */

    display: flex;

    color: var(--333, #333);

    align-items: center;
}
.pm-items__inner .pm-items-list__item .list-item-price > span
{
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
    line-height: 100%; /* 16px */

    margin-left: 4px;

    letter-spacing: .32px;

    color: var(--gold-text, #b99f32);
}
@media screen and (max-width: 767px)
{
  .pm-items__inner .pm-items-list__item .list-item-image__label
{
    font-size: 10px;
}
    .SPshow
    {
        display: block;
    }
    .PCshow
    {
        display: none;
    }
    .black-bg
    {
        /* min-height: 100svh; */
        min-height: 100vh;
        /* padding: 30px 15px; */
        padding: 86px 15px;
    }
    .black-bg__caution
    {
        overflow: scroll;

        max-width: 360px;
        max-height: 90vh;
        /* padding: 30px 20px 30px; */
        padding: 30px 20px 120px;
    }
    .black-bg__caution .bg-caution-title
    {
        margin-bottom: 26px;
    }
    .black-bg__caution .bg-caution-list__item:not(:last-of-type)
    {
        margin-bottom: 14px;
    }
    .black-bg__caution .bg-caution-list__item--title
    {
        font-size: 12px;
        font-weight: 500;

        margin-bottom: 2px;
    }
    .black-bg__caution .bg-caution-list__item--description
    {
        font-size: 11px;
        font-weight: 400;
        line-height: 150%; /* 16.5px */
    }
    .black-bg__item
    {
        width: 100%;
        min-width: unset;
        max-width: 310px;

        border-radius: 8px;
    }
    .black-bg__item .bg-item-close-button
    {
        top: 10px;
        right: 17px;
    }
    .black-bg__item .pm-item-detail-container__inner
    {
        flex-direction: column;

        padding: 8px 0 45px;

        gap: 0;
    }
    .black-bg__item .pm-item-detail-container__inner .item-detail-image
    {
        width: 124px;
        height: 124px;
        margin-bottom: 2px;
    }
    .black-bg__item .pm-item-detail-container__inner .item-detail-text-container
    {
        display: flex;
        flex-direction: column;

        align-items: center;
    }
    .black-bg__item .pm-item-detail-container__inner .item-detail-text-container .item-detail-name-en
    {
        font-size: 13px;
    }
    .black-bg__item .pm-item-detail-container__inner .item-detail-text-container .item-detail-name-jp
    {
        font-size: 10px;

        margin-bottom: 11px;
    }
    .black-bg__item .pm-item-detail-container__inner .item-detail-text-container .item-detail-category
    {
        font-size: 13px;

        margin-bottom: 14px;
        padding: 4px 30px 5px;
    }
    .black-bg__item .pm-item-detail-container__inner .item-detail-text-container .item-detail-complaint > li:not(:last-of-type)
    {
        margin-bottom: 8px;
    }
    .black-bg__item .pm-item-detail-container__inner .item-detail-text-container .item-detail-complaint > li > span
    {
        font-size: 12px;
    }
    .point-mole
    {
        margin: 0 auto;
        /* padding-top: 60px; */
    }
    .pm-contents-container
    {
        padding: 41px 15px 48px;
    }
    .pm-contents-container.-bottom
    {
        padding: 40px 12px 54px;
    }
    .pm-contents-container:not(:last-of-type)
    {
        margin-bottom: 21px;
    }
    .pm-contents-container .contents-point__title
    {
        font-size: 20px;

        margin-bottom: 28px;
    }
    .pm-contents-container .contents-point__description
    {
        font-size: 14px;

        margin-bottom: 24px;
        padding: 0 10px 0 15px;

        text-align: left;
    }
    .pm-contents-container .contents-point__trans-image
    {
        margin: 0 auto 40px;
    }
    .pm-contents-container .contents-point__sub-title
    {
        font-size: 16px;
        line-height: 140%;

        margin-bottom: 19px;
    }
    .pm-contents-container .contents-point__rank-image
    {
        max-width: 97%;
        margin: 0 auto 36px;
    }
    .pm-contents-container .contents-point__example-image
    {
        margin: 0 auto 60px;
    }
    .pm-contents-container .contents-store__description
    {
        font-size: 13px;
        font-weight: 400;

        margin-bottom: 28px;
    }
    .pm-contents-container .contents-store__list
    {
        flex-direction: column;

        width: 100%;
        margin: 0 auto 50px;
        padding: 0 10px;
        padding-left: unset;

        row-gap: 30px;
    }
    .pm-contents-container .contents-store__list--item .store-image
    {
        width: 100%;
    }
    .pm-contents-container .contents-store__list--item .store-name
    {
        font-size: 15px;

        margin-bottom: 9px;
    }
    .pm-contents-container .contents-store__list--item .store-data > tbody > tr
    {
        margin-bottom: 8px;
    }
    .pm-contents-container .contents-store__list--item .store-data > tbody > tr > th,
    .pm-contents-container .contents-store__list--item .store-data > tbody > tr > td
    {
        font-size: 12px;
    }
    .pm-contents-container .contents-limit__description
    {
        font-size: 13px;
        font-weight: 400;
    }
    .pm-contents-container .contents-use__title
    {
        font-size: 20px;

        margin-bottom: 28px;
    }
    .pm-contents-container .contents-use__lead
    {
        font-size: 14px;

        margin-bottom: 25px;
        padding: 0 16px 0 30px;

        text-align: left;
    }
    .pm-contents-container .contents-use__flow
    {
        margin: 0 auto 31px;
    }
    .pm-contents-container .contents-use__flow--item
    {
        padding: 15px 8px 16px 43px;
    }
    .pm-contents-container .contents-use__flow--item:not(:last-of-type)
    {
        margin-bottom: 21px;
    }
    .pm-contents-container .contents-use__flow--item:not(:last-of-type):after
    {
        bottom: -16px;

        width: 25px;
        height: 14px;
    }
    .pm-contents-container .contents-use__flow--item::before
    {
        font-size: 16px;

        width: 35px;
    }
    .pm-contents-container .contents-use__flow--item > span
    {
        font-size: 13px;
        line-height: 150%;
    }
    .pm-contents-container .contents-use__flow--item > span > span
    {
        font-size: 10px;

        margin-top: 2px;
    }
    .pm-contents-container .contents-use__annotation
    {
        margin: 0 auto 55px;
        padding: 0 8px;
    }
    .pm-contents-container .contents-use__annotation--item
    {
        margin-top: 0;
    }
    .pm-contents-container .contents-use__annotation--item > span
    {
        line-height: 1.5;

        display: inline-block;
    }
    .pm-contents-container .contents-use__caution-button
    {
        left: -14px;
    }
    .pm-contents-container .contents-use__caution-button::before,
    .pm-contents-container .contents-use__caution-button::after
    {
        right: -32px;

        width: 14px;
    }
    .pm-contents-container .contents-use__caution-button > span
    {
        font-size: 15px;
    }
    .pm-contents-container .contents-use__caution-button > span::after
    {
        right: -37px;

        width: 24px;
        height: 24px;
    }
    .pm-contents__inner
    {
        max-width: 390px;
        padding: 40px 20px 50px;
    }
    .pm-form
    {
        padding: 0 20px;
    }
    .pm-form > div
    {
        /* height: 2300px !important; */
    }
    .pm-fv
    {
        height: 101.2820512821vw;

        background-image: url(../images/point_mall/fv_sp.webp);
    }
    .pm-fv__inner
    {
        padding: 6.4102564103vw 5.1282051282vw 7.6923076923vw;
    }
    .pm-fv__inner .pm-fv-contents
    {
        padding: 7.6923076923vw 0 10.7692307692vw;
    }
    .pm-fv__inner .pm-fv-contents__title
    {
        font-size: 7.1794871795vw;
        line-height: 150%;

        margin-bottom: 5.1282051282vw;
    }
    .pm-fv__inner .pm-fv-contents__title > span
    {
        margin-left: 0;
    }
    .pm-fv__inner .pm-fv-contents__description
    {
        font-size: 3.5897435897vw;
        line-height: 170%;

        margin-bottom: 10.2564102564vw;
    }
    .pm-fv__inner .pm-fv-contents__button
    {
        width: 60.7692307692vw;
        height: 13.3333333333vw;
    }
    .pm-fv__inner .pm-fv-contents__button > span
    {
        font-size: 4.1025641026vw;

        letter-spacing: .4102564103vw;
    }
    .pm-items
    {
        margin-bottom: 61px;
        padding-bottom: 80px;
    }
    .pm-items__inner
    {
        max-width: 390px;
        padding: 61px 35px 0;
    }
    .pm-items__inner .pm-items-title
    {
        font-size: 20px;

        margin-bottom: 41px;
    }
    .pm-items__inner .pm-items-list
    {
        row-gap: 48px;
        -moz-column-gap: 20px;
             column-gap: 20px;
        justify-content: space-between;
    }
    .pm-items__inner .pm-items-list__item
    {
        width: calc(50% - 10px);
    }
    .pm-items__inner .pm-items-list__item::before
    {
        font-size: 18px;

        width: 28px;
        height: 26px;
    }
    .pm-items__inner .pm-items-list__item .list-item-image
    {
        position: relative;
    }
    .pm-items__inner .pm-items-list__item .list-item-image::before
    {
        position: absolute;
        z-index: 10;
        right: 4px;
        bottom: 2px;

        display: block;

        width: 32px;
        height: 32px;

        content: '';

        background-image: url(../images/point_mall/icon_more_look_sp.svg);
        background-repeat: no-repeat;
        background-size: contain;
    }
    .pm-items__inner .pm-items-list__item .list-item-image > img
    {
        transform: scale(1.1);
    }
    .pm-items__inner .pm-items-list__item .list-item-name
    {
        font-size: 11px;
        line-height: 120%;
    }
    .pm-items__inner .pm-items-list__item .list-item-price
    {
        font-weight: 500;
    }
    .pm-items__inner .pm-items-list__item .list-item-price > span
    {
        font-size: 17px;
    }
}
@media screen and (max-width: 390px)
{
    .pm-contents-container
    {
        padding: 10.5128205128vw 3.8461538462vw 12.3076923077vw;
    }
    .pm-contents-container.-bottom
    {
        padding: 10.2564102564vw 3.0769230769vw 13.8461538462vw;
    }
    .pm-contents-container:not(:last-of-type)
    {
        margin-bottom: 5.3846153846vw;
    }
    .pm-contents-container .contents-point__title
    {
        font-size: 5.1282051282vw;

        margin-bottom: 7.1794871795vw;
    }
    .pm-contents-container .contents-point__description
    {
        font-size: 3.5897435897vw;

        margin-bottom: 6.1538461538vw;
        padding: 0 2.5641025641vw 0 3.8461538462vw;
    }
    .pm-contents-container .contents-point__trans-image
    {
        margin: 0 auto 10.2564102564vw;
    }
    .pm-contents-container .contents-point__sub-title
    {
        font-size: 4.1025641026vw;

        margin-bottom: 4.8717948718vw;
    }
    .pm-contents-container .contents-point__rank-image
    {
        margin: 0 auto 9.2307692308vw;
    }
    .pm-contents-container .contents-point__example-image
    {
        margin: 0 auto 15.3846153846vw;
    }
    .pm-contents-container .contents-store__title--image
    {
        margin: 0 auto 7.6923076923vw;
    }
    .pm-contents-container .contents-store__description
    {
        font-size: 3.3333333333vw;

        margin-bottom: 7.1794871795vw;
    }
    .pm-contents-container .contents-store__list
    {
        margin: 0 auto 12.8205128205vw;
        padding: 0 2.5641025641vw;

        row-gap: 7.6923076923vw;
    }
    .pm-contents-container .contents-store__list--item .store-image
    {
        margin-bottom: 1.7948717949vw;
    }
    .pm-contents-container .contents-store__list--item .store-name
    {
        font-size: 3.8461538462vw;

        margin-bottom: 2.3076923077vw;
    }
    .pm-contents-container .contents-store__list--item .store-data > tbody > tr
    {
        margin-bottom: 2.0512820513vw;
    }
    .pm-contents-container .contents-store__list--item .store-data > tbody > tr > th,
    .pm-contents-container .contents-store__list--item .store-data > tbody > tr > td
    {
        font-size: 3.0769230769vw;
    }
    .pm-contents-container .contents-limit__description
    {
        font-size: 3.3333333333vw;
    }
    .pm-contents-container .contents-use__title
    {
        font-size: 5.1282051282vw;

        margin-bottom: 7.1794871795vw;
    }
    .pm-contents-container .contents-use__lead
    {
        font-size: 3.5897435897vw;

        margin-bottom: 6.4102564103vw;
        padding: 0 4.1025641026vw 0 7.6923076923vw;
    }
    .pm-contents-container .contents-use__flow
    {
        margin: 0 auto 7.9487179487vw;
    }
    .pm-contents-container .contents-use__flow--item
    {
        padding: 3.8461538462vw 2.0512820513vw 4.1025641026vw 11.0256410256vw;
    }
    .pm-contents-container .contents-use__flow--item:not(:last-of-type)
    {
        margin-bottom: 5.3846153846vw;
    }
    .pm-contents-container .contents-use__flow--item::before
    {
        font-size: 4.1025641026vw;

        width: 8.9743589744vw;
    }
    .pm-contents-container .contents-use__flow--item > span
    {
        font-size: 3.3333333333vw;
    }
    .pm-contents-container .contents-use__flow--item > span > span
    {
        font-size: 2.5641025641vw;

        margin-top: .5128205128vw;
    }
    .pm-contents-container .contents-use__annotation
    {
        margin: 0 auto 14.1025641026vw;
        padding: 0 2.0512820513vw;
    }
    .pm-contents-container .contents-use__caution-button
    {
        left: -3.5897435897vw;
    }
    .pm-contents-container .contents-use__caution-button::before,
    .pm-contents-container .contents-use__caution-button::after
    {
        right: -8.2051282051vw;

        width: 3.5897435897vw;
    }
    .pm-contents-container .contents-use__caution-button > span
    {
        font-size: 0 3.8461538462vw;
    }
    .pm-contents-container .contents-use__caution-button > span::after
    {
        right: -9.4871794872vw;

        width: 6.1538461538vw;
        height: 6.1538461538vw;
    }
    .pm-contents__inner
    {
        padding: 10.2564102564vw 5.1282051282vw 12.8205128205vw;
    }
    .pm-items__inner
    {
        padding: 15.641025641vw 8.9743589744vw 0;
    }
    .pm-items__inner .pm-items-title
    {
        font-size: 5.1282051282vw;

        margin-bottom: 10.5128205128vw;
    }
    .pm-items__inner .pm-items-list
    {
        row-gap: 12.3076923077vw;
        -moz-column-gap: 5.1282051282vw;
             column-gap: 5.1282051282vw;
    }
    .pm-items__inner .pm-items-list__item
    {
        width: calc(50% - 2.5641025641vw);
    }
    .pm-items__inner .pm-items-list__item::before
    {
        font-size: 4.6153846154vw;

        width: 7.1794871795vw;
        height: 6.6666666667vw;
    }
    .pm-items__inner .pm-items-list__item .list-item-name
    {
        font-size: 2.8205128205vw;
    }
    .pm-items__inner .pm-items-list__item .list-item-price
    {
        font-size: 2.5641025641vw;
    }
    .pm-items__inner .pm-items-list__item .list-item-price > span
    {
        font-size: 4.358974359vw;
    }
}
@media (min-width: 768px) and (max-width: 1024px)
{
    .pm-contents-container .contents-store__list
    {
        width: 100%;

        -moz-column-gap: 40px;
             column-gap: 40px;
        justify-content: center;
    }
    .pm-contents__inner
    {
        padding: 88px 40px 100px;
    }
    .pm-fv__inner
    {
        padding: 89px 40px 90px;
    }
    .pm-items__inner
    {
        padding: 120px 40px 0;
    }
    .pm-items__inner .pm-items-list
    {
        row-gap: 40px;
        -moz-column-gap: 32px;
             column-gap: 32px;
    }
    .pm-items__inner .pm-items-list__item
    {
        width: calc(33.3333333333% - 22px);
    }
}
@media print, screen and (min-width: 1025px)
{
    .pm-contents-container .contents-use__caution-button:hover
    {
        transition: .5s;

        opacity: .7;
    }
    .pm-fv__inner .pm-fv-contents__button:hover
    {
        transition: .5s;

        background-color: #818181;
    }
    .pm-items__inner .pm-items-list__item .list-item-image:hover > img
    {
        transition: .8s;
        transform: scale(1.2);
    }
}
@media screen and (max-width: 767px) and (max-width: 390px)
{
    .pm-items__inner .pm-items-list__item .list-item-image::before
    {
        right: 1.0256410256vw;
        bottom: .5128205128vw;

        width: 8.2051282051vw;
        height: 8.2051282051vw;
    }
}

/* 240913 add top page */
.media-container
{
    display: flex;

    width: 100%;
    max-width: 1150px;
    height: auto;
    margin: 0 auto;
    padding: 0 40px;

    gap: 30px;
}
.media-container .media__wrapper
{
    display: block;

    width: calc(50% - 15px);
    padding: 37px 54px 48px;

    border: 2px solid rgba(67, 71, 72, .1);
}
.media-container .media__wrapper .media__img
{
    display: block;

    width: 164px;
    height: auto;
    margin: 0 auto 32px;
}
.media-container .media__wrapper .media__img > img
{
    display: block;

    width: 100%;
    height: 100%;

    -o-object-fit: contain;
       object-fit: contain;
}

.media-container .media__wrapper .media__content {
  width: 100%;
    padding-left: unset;
}

.media-container .media__wrapper .media__content .media__ttl
{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    font-weight: 700;
    font-style: normal;
    line-height: 16px; /* 100% */

    margin-bottom: 18px;

    letter-spacing: 1.6px;

    color: #333;
}
.media-container .media__wrapper .media__content .media__txt
{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 26px; /* 185.714% */

    margin-bottom: 38px;

    letter-spacing: 1.4px;

    color: #333;
}
.media-container .media__wrapper .media__content .media__link
{
    display: flex;

    width: 210px;
    height: 44px;
    padding: 0 10px 0 20px;

    background-color: #000;

    align-items: center;
    justify-content: space-between;

    margin-left: unset;
}
.media-container .media__wrapper .media__content .media__link > span
{
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    font-weight: 400;
    font-style: normal;
    line-height: 14px; /* 100% */

    letter-spacing: 1.4px;

    color: #fff;
}
.media-container .media__wrapper .media__content .media__link .media__next
{
    display: flex;

    align-items: center;
}
@media screen and (max-width: 767px)
{
    .SPshow
    {
        display: block;
    }
    .PCshow
    {
        display: none;
    }
    .main
    {
        margin: 0 auto;
    }
    .media-container
    {
        flex-direction: column;

        max-width: 390px;
        padding: 0 15px;
    }
    .media-container .media__wrapper
    {
        width: 100%;
    }
}
@media screen and (max-width: 390px)
{
    .media-container
    {
        gap: 21px;
    }
    .media-container .media__wrapper
    {
        padding: 4.1025641026vw 5.1282051282vw 15.3846153846vw;
    }
    .media-container .media__wrapper:last-of-type
    {
        padding: 11.7948717949vw 6.1538461538vw 15.3846153846vw;
    }
    .media-container .media__wrapper:last-of-type .media__img
    {
        width: 42.5641025641vw;
        margin: 0 auto 11.7948717949vw;
    }
    .media-container .media__wrapper:last-of-type .media__content .media__ttl
    {
        margin-bottom: 19px;
    }
    .media-container .media__wrapper .media__img
    {
        width: 40.7692307692vw;
        margin: 0 auto 3.5897435897vw;
    }
    .media-container .media__wrapper .media__content .media__ttl
    {
        margin-bottom: 15px;
    }
    .media-container .media__wrapper .media__content .media__txt
    {
        margin-bottom: 15px;
    }
    .media-container .media__wrapper .media__content .media__link
    {
        margin: 0 auto;
    }
}
@media (min-width: 768px) and (max-width: 1024px)
{
    .media-container .media__wrapper
    {
        padding: 3.61328125vw 5.2734375vw 4.6875vw;
    }
    .media-container .media__wrapper .media__img
    {
        width: 16.015625vw;
        margin: 0 auto 3.125vw;
    }
}

.section__en-ttl {
  display: block;
  font-weight: lighter;
  font-size: 4.2rem;
  line-height: calc(42 /(4.2* 10));
  letter-spacing: 0.1em;
  text-align: center;
}
.section__ttl {
  margin-top: 15px;
  font-weight: lighter;
  font-size: 1.4rem;
  line-height: calc(14 /(1.4* 10));
  letter-spacing: 0.1em;
  text-align: center;
}
.special-set {
display : block;
width : 100%;
max-width : 850px;
height : auto;
margin : 0 auto;
padding-top: 120px;
background-color : #ffffff;
}

.special-set-list {
display : -webkit-box;
display : -ms-flexbox;
display : flex;
/* -webkit-box-pack : justify;
-ms-flex-pack : justify;
justify-content : space-between; */
justify-content : center;
padding-top : 29px;
}
.special-set-list__wrap {
display : block;
width : calc(50% - 10px);
height : auto;
border : 1px solid #cbcbcb;
}
.special-set-list__wrap:first-of-type .special-set-list__wrap--inner .special-set-thumbnail {
width : 77%;
margin : 0 auto 16px;
}
.special-set-list__wrap:last-of-type .special-set-list__wrap--inner .special-set-thumbnail {
width : 53%;
margin : 0 auto 19px;
}
.special-set-list__wrap--inner {
display : block;
width : 100%;
height : auto;
padding : 43px 10px 26px;
}
.special-set-list__wrap--inner .special-set-thumbnail {
display : block;
height : auto;
}
.special-set-list__wrap--inner .special-set-thumbnail > img {
display : block;
width : 100%;
height : 100%;
-o-object-fit : cover;
object-fit : cover;
}
.special-set-list__wrap--inner .special-set-tag {
display : block;
width : -webkit-fit-content;
width : -moz-fit-content;
width : fit-content;
padding : 4px 10px;
margin : 0 auto 14px;
font-size : 12px;
line-height : 1;
letter-spacing : .1em;
border : 1px solid rgba(67, 71, 72, .1);
}
.special-set-list__wrap--inner .special-set-title {
margin-bottom : 10px;
font-size : 13px;
font-weight : 400;
text-align : center;
letter-spacing : 1px;
}
.special-set-list__wrap--inner .special-set-title > span {
display : block;
font-size : 12px;
}
.special-set-list__wrap--inner .special-set-price {
font-size : 11px;
font-weight : 400;
text-align : center;
text-align : center;
letter-spacing : 1px;
}
.special-set-list__wrap--inner .special-set-price > span {
font-size : 12px;
}
.special-set-list__wrap--inner .special-set-button {
position : relative;
display : block;
width : 54%;
margin : 20px auto 0;
background-color : #333333;
text-decoration: none;
transition: opacity 0.5s;
}
.special-set-list__wrap--inner .special-set-button:hover {
  -webkit-transition: opacity 0.5s;
  opacity: 0.5;
  transition: opacity 0.5s;
}
.special-set-list__wrap--inner .special-set-button > span {
display : block;
padding : 9px 17px;
font-size : 12px;
line-height : 1.8571428571;
color : #ffffff;
text-align : left;
letter-spacing : .1em;
transition : -webkit-text-decoration .5s;
-webkit-transition : -webkit-text-decoration .5s;
transition : text-decoration .5s;
transition : text-decoration .5s, -webkit-text-decoration .5s;
}
.special-set-list__wrap--inner .special-set-button .item__next {
position : absolute;
top : 50%;
right : 10px;
width : 6px;
pointer-events : none;
-webkit-transform : translateY(-50%);
transform : translateY(-50%);
}
.special-set-list__wrap--inner .special-set-button .item__next > img {
width : 100%;
height : 100%;
-o-object-fit : contain;
object-fit : contain;
vertical-align : middle;
}
@media screen and (max-width: 767px) {
.special-set-list {
  -webkit-box-orient : vertical;
  -webkit-box-direction : normal;
  -ms-flex-direction : column;
  flex-direction : column;
  -webkit-box-align : center;
  -ms-flex-align : center;
  align-items : center;
}
.special-set-list__wrap {
  width : 100%;
  max-width : 370px;
}
.special-set-list__wrap:first-of-type {
  margin-bottom : 20px;
}
}
  
  .top-bunner {
    display: block;
    width: 100%;
    margin-bottom: 50px;
  }
  
  .top-bunner > .bunner-link {
    display: block;
    width: 100%;
    height: auto;
  }
  
  .top-bunner > .bunner-link > img {
    width: 100%;
    height: auto;
  }
  
  .bunner-pc {
    display: block;
  }
  
  .bunner-sp {
    display: none;
  }
  
  @media screen and (max-width: 767px) {
    .top-bunner {
    margin-bottom: 30px;
  }
    
    .bunner-pc {
    display: none;
  }
  
  .bunner-sp {
    display: block;
  }
  }

  .feature {
    padding-top: 118px;
    padding-bottom: 100px;
  }

  .push-item__container {
    margin-bottom: 81px;
  }

  .special-set-list__wrap {
    width: calc(36% - 10px);
    background-color: #fff;
  }




.r-product-list__content {
  width: 100%;
  max-width: 410px;
  padding: 50px;
  background: #fff;
}

.r-product-list__ttl {
  width: 100%;
  max-width: 300px;
}

.r-product-list__ttl img {
  -o-object-fit: contain;
  width: 100%;
  object-fit: contain;
}

.r-product-list__ttl span {
  font-weight: 200;
  font-size: 1.4rem;
  line-height: calc(26 /(1.4* 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.1em;
}

.r-product-list__txt {
  margin-top: 80px;
  font-weight: 300;
  font-size: 1.4rem;
  line-height: calc(26 /(1.4* 10));
  letter-spacing: 0.1em;
  letter-spacing: 0.1em;
}

.r-product-list__link {
  -webkit-transition: opacity 0.5s;
  display: block;
  position: relative;
  width: 100%;
  max-width: 210px;
  margin-top: 80px;
  padding: 15px 20px;
  background-color: #000;
  color: #fff;
  font-size: 1.4rem;
  line-height: calc(14 /(1.4* 10));
  letter-spacing: 0.1em;
  transition: opacity 0.5s;
}

.r-product-list__img-link {
  -webkit-transition: opacity 0.5s;
  display: block;
  width: calc(100% - 410px);
  height: 100%;
  transition: opacity 0.5s;
}

.r-product-list__img-link img {
  -o-object-fit: cover;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ranking {
  background-color: #fff;
  padding-bottom: 0;
}

.push-item {
  padding-bottom: 102px;
}

.search {
  padding-bottom: 100px;
}

.special-set-list__wrap {
  border: none;
}

@media screen and (max-width: 767px) {
  .feature {
    padding-bottom: 51px;
  }
  .special-set-list__wrap {
    width: 100%;
  }
  .push-item {
    padding-bottom: 32px;
  }
  .r-product-list__img-link {
    width: 100%;
    height: auto;
  }
  .r-product-list__content {
    padding: 36px 69px 40px;
    max-width: 100%;
  }
  .r-product-list__ttl {
    text-align: center;
  }
  .r-product-list__ttl span {
    margin-top: 10px;
    display: block;
  }
  .r-product-list__txt {
    display: block;
    margin-top: 24px;
    text-align: center;
    font-size: 10px;
  }
  .r-product-list__link {
    margin: 24px auto 0;
  }
  .search {
    padding-bottom: 50px;
  }
  .media__wrapper {
    margin-top: 0;
  }
  .media-container {
    margin-top: 30px;
  }
}

/* 240919 add */
.filter_wrap {
  justify-content: flex-end!important;
  gap: 24px;
}

@media screen and (max-width: 767px) {
  .filter_wrap {
    justify-content: space-between!important;
    gap: unset;
  }
  .filter_wrap > div.dropdown {
    width: 48.5%!important;
    margin-bottom: unset!important;
  }
}

.regular-stop {
  display: block;
  width: 100%;
  height: auto;
  background-color: #FBDBDB;
  margin: 24px auto 0;
  padding: 25px 124px 25px 187px;
}

.regular-stop > p {
  color: #000;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1.12px;
}

.regular-stop > p:first-of-type {
  margin-bottom: 14px;
}

@media screen and (max-width: 767px) {
  .regular-stop {
    padding: 32px 15px 29px 15px;
    width: 92%;
  }
}

/* 240920 add */
.header-above-contents {
  display: block;
  width: 100%;
  max-width: 1070px;
  height: auto;
  margin: 0 auto;
}

.header-above-contents__bunner {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}

.header-above-contents__bunner > source,
.header-above-contents__bunner > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-above-contents__description-image {
  display: block;
  width: 100%;
  max-width: 912px;
  height: auto;
  margin: 0 auto 100px;
}

.header-above-contents__description-image > source,
.header-above-contents__description-image > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.normal-text {
  display: block!important;
  font-size: 11px!important;
  color: #333!important;
  background-color: unset!important;
  padding: unset!important;
}

@media screen and (max-width: 1024px) {
  .header-above-contents {
    padding: 0 40px;
  }

  .header-above-contents__description-image {
    max-width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .header-above-contents {
    max-width: 390px;
    padding: 0 20px;
  }

  .header-above-contents__bunner {
    margin-bottom: 40px;
  }

  .header-above-contents__description-image {
    margin: 0 auto 80px;
  }
}

/* 241001 */
.ap-floating-button,
.ill-floating-button {
  display: table;
  width: 64px;
  height: 180px;
  position: fixed;
  right: 0;
  bottom: 90px;
  z-index: 5000;
}

.ill-floating-button {
  width: 72px;
  height: 190px;
  right: -8px;
}

.ap-floating-button__image,
.ill-floating-button__image {
  display: block;
  width: 100%;
  height: 100%;
}

.ap-floating-button__image > source,
.ap-floating-button__image > img,
.ill-floating-button__image > source,
.ill-floating-button__image > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.point .point-under-appeal__inner {
  justify-content: flex-start;
  gap: 56px;
}

.illuminateporder .point__spacer {
  height: auto;
}

.illuminateporder .point__wrapper {
  height: auto;
}

.illuminateporder .point__container {
  height: auto;
  padding: 140px 40px 150px;
}

@media screen and (max-width: 767px) {
  .point .point-under-appeal__inner {
    gap: 0;
  }
  .ap-floating-button,
  .ill-floating-button {
    display: table;
    width: 100%;
    padding: 0 8px;
    max-width: 390px;
    height: 56px;
    position: fixed;
    right: 0;
    left: 0;
    bottom: 12px;
    z-index: 5000;
    margin: 0 auto;
  }
  .ill-floating-button {
    bottom: 2px;
    padding: 0 2px;
  }
  .pagetop.-floating {
    bottom: 64px;
  }
  .illuminateporder .point__container {
    padding: 55px 25px 70px;
  }
  .ill-floating-button__image > source,
  .ill-floating-button__image > img {
    display: inline-block;
  }
}



.review-guide{
    text-align: right;
    margin-right: 15px;
}

.review-guide a{
	color: #d1d1d1;
    font-size: 0.7em;	
}


@media screen and (min-width: 767px) {

    .search {
       margin-top: 50px!important;
	   padding-top:25px!important;
    }
    .news,.salon{
		margin-bottom: 50px;
	}
}

@media screen and (min-width: 768px) {
    .search {
        margin-top: 100px!important;
		padding-top:50px!important;
    }
    .news,.salon{
		margin-bottom: 50px;
	}
}


.promoted-product-container{
	    margin-bottom: 50px;
}	

.news{
	padding-bottom: 50px;
}

.media__img{
	height: 240px!important;
}


.c-button-sycle-attention{
	color:red;
	font-size: 0.7em;
	display: block;
	clear: both;
	line-height: 1.5;
    margin-top: 13px;
	text-align: justify;
}


.list-item-special{
	font-size: 0.8em;
    text-align: right;
    padding-top: 4%;
}

.order-cartback-sample{
	margin-bottom: 10%;
}

.order-cartback-sample-title{
    background: #968B42;
    color: #fff;
    padding: 2.5%;
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 0.1em;
	    margin-bottom: 2%;
}

.order-cartback-sample-text{
	text-align: center;
}
.order-cartback-sample-text span{
color: red;
    font-weight: bold;
    font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
.order-cartback-sample-title{
        background: #968B42;
        color: #fff;
        padding: 1.2%;
        text-align: center;
        font-size: 2rem;
        font-weight: bold;
        letter-spacing: 0.1em;
        margin-bottom: 1%;
}
.order-cartback-sample-text span{
color: red;
    font-weight: bold;
    font-size: 1.9rem;
}	
}

.c-attention-wrap{
	background-color: #f2f2f2;
    padding: 7% 5%;
    margin-bottom: 20%;
}

.c-attention{
	    margin-bottom: 4%;
}

.c-attention ul{
list-style: disc;
    width: 95%;
    margin: 0 auto;
    text-align: justify;
}

.c-attention ul li{
	padding: 2% 0;
}
.c-attention-titleWRAP{
	    background: #f2f2f2;
    padding: 3%;
    margin-bottom: 6%;
}

.c-contents-paragraph{
	padding: 5% 0;
}


.c-contact-wrap{
	    margin-bottom: 15%;
}


.js-required-field-validation{
	margin-bottom: 20%;
}


.c-contact-wrap  a img{
	    width: 50%;
    margin: 0 auto;
    padding-top: 4%;
}


.timerHidden{ display: none;}
.timerVisible{ display: block;}

.swiper-slide.timerHidden {
  opacity: 0 !important;
  pointer-events: none;
  visibility: hidden;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}