@charset "UTF-8";

/* ========================================
  全ページ共通
======================================== */

:root {
  --c_base: #444952;
  --c_text: #fff;
  --c_sub: rgba(255, 255, 255, 0.55);
  --c_border: rgba(255, 255, 255, 0.6);
  --c_blue: #444952;
  --c_note_dark: rgba(68, 73, 82, 0.62);
  --c_label_dark: rgba(68, 73, 82, 0.72);
  --c_desc_dark: rgba(68, 73, 82, 0.68);
  --c_price_dark: rgba(68, 73, 82, 0.58);
  --c_meta_dark: rgba(68, 73, 82, 0.65);
  --c_remove_dark: rgba(68, 73, 82, 0.56);
  --font_base: "Zen Kaku Gothic New", sans-serif;
  --font_mincho: "Shippori Mincho", serif;
}

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

html {
  margin: 0;
  scroll-behavior: auto;
}

body {
  margin: 0;
  height: 100svh;
  font-family: var(--font_base);
  color: var(--c_base);
  background: #fff;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.flx {
  display: flex;
}

#wrapper {
  min-height: 100svh;
  position: relative;
  overflow-x: clip;
}

.inner {
  width: 1186px;
  max-width: calc(100% - 180px);
  margin: 0 auto;
}

#container {
  position: relative;
}

.contents {
  padding: 100px 0 120px;
}

/* =====================
  title
===================== */

.copy_heading {
  font-family: var(--font_mincho);
  font-weight: 400;
  letter-spacing: 0.1em;
}

.copy_en {
  font-size: 10px;
  line-height: 2.4;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section_label {
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 80px;
  text-align: center;
}

.section_mark {
  width: 9px;
  height: 13px;
  position: relative;
}

.section_mark:before {
  content: "";
  width: 1px;
  height: 13px;
  background: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: .5;
  transform-origin: center center;
  transform: rotate(34deg) translate(-50%, -50%);
}

.section_label.dark {
  color: var(--c_base);
}

.section_head {
  margin-bottom: 60px;
  text-align: center;
}

.section_head .section_label {
  margin: 0 auto 6px;
}

.section_head_sub {
  margin: 0;
  font-size: 24px;
  line-height: 1.8;
  letter-spacing: 0.12em;
  font-family: var(--font_mincho);
  font-weight: 400;
}

/* =====================
  btn
===================== */

.btns {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 30px;
}

.btn {
  margin: 0;
  position: relative;
  display: inline-block;
}

.btn:before {
  content: "";
  width: 20px;
  height: 1px;
  background: currentColor;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: rotate(-55deg);
  transform-origin: left center;
  opacity: .5;
  z-index: 2;
  pointer-events: none;
  transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .25s ease;
}

.btn a {
  width: 150px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 0 20px 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.1em;
  overflow: hidden;
  transition: .45s;
}

.btn._black a {
  border-color: #909090;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* =====================
  common_form
===================== */

.common_form {
  width: 100%;
  background: #fff;
  color: var(--c_base);
  caret-color: #444952;
  border: 1px solid rgba(68, 73, 82, 0.16);
  font-family: var(--font_base);
  font-size: 15px;
  line-height: 1.8;
}

input.common_form,
select.common_form {
  height: 48px;
  padding: 0 16px;
}

textarea.common_form {
  padding: 14px 16px;
}

input.common_form:focus,
input.common_form:focus-visible,
select.common_form:focus,
select.common_form:focus-visible,
textarea.common_form:focus,
textarea.common_form:focus-visible {
  outline: none;
  border-color: rgba(68, 73, 82, 0.42);
  box-shadow: 0 0 0 3px rgba(68, 73, 82, 0.12);
}

/* =====================
  common_form_parts
===================== */

.form_row {
  display: grid;
}

.form_row + .form_row {
  margin-top: 25px;
}

.form_label {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  padding-top: 12px;
}

.form_label span {
  color: #d24a3d;
}

.form_field {
  width: 100%;
}

.form_note {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--c_note_dark);
}

.form_ttl {
  text-align: center;
  margin: 0 0 30px;
  font-size: 20px;
  line-height: 1.6;
}

.form_error_text {
  margin: 8px 0 0;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: #d24a3d;
}

.is_form_error .form_label,
.is_form_error .check_label {
  color: #d24a3d;
}

.is_form_error .common_form {
  border-color: rgba(210, 74, 61, 0.56);
  background: rgba(210, 74, 61, 0.03);
}

.is_form_error .check_mark {
  border-color: rgba(210, 74, 61, 0.56);
  background: rgba(210, 74, 61, 0.03);
}

.is_form_error .check_input:checked + .check_mark {
  background: #d24a3d;
  border-color: #d24a3d;
}

.form_select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--c_base) 50%), linear-gradient(135deg, var(--c_base) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form_textarea {
  min-height: 160px;
  resize: vertical;
}

/* =====================
  common_button
===================== */

.common_button {
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.common_button a {
  width: 100%;
  max-width: 400px;
  min-height: 60px;
  background: var(--c_blue);
  color: var(--c_text);
  border-radius: 0 24px 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 0.12em;
  position: relative;
  transition: .45s;
  overflow: hidden;
}

.common_button a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(11, 22, 92, 0.15),
    rgba(11, 22, 92, 0)
  );
  transition: width .45s cubic-bezier(.22,1,.36,1);
  z-index: 0;
  pointer-events: none;
}

.common_button._small {
  width: auto;
  margin: 0;
}

.common_button._small a {
  width: auto;
  max-width: none;
  min-width: 112px;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 0 18px 0 18px;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.common_button.is_disabled a,
.btn.is_disabled a {
  pointer-events: none;
  opacity: .35;
  cursor: default;
}

.common_button.is_disabled a:after {
  display: none;
}

.btn.is_disabled:before {
  opacity: .18;
}

/* =====================
  common_check
===================== */

.check_label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  cursor: pointer;
  color: var(--c_label_dark);
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.check_input {
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check_mark {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: #fff;
  border: 1px solid rgba(68, 73, 82, 0.34);
  border-radius: 3px;
  position: relative;
  transition: border-color .2s ease, background-color .2s ease, box-shadow .2s ease;
}

.check_mark:before {
  content: "";
  width: 5px;
  height: 10px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  opacity: 0;
  transform: translate(-50%, -58%) rotate(45deg);
  transition: opacity .2s ease;
}

.check_input:checked + .check_mark {
  background: var(--c_base);
  border-color: var(--c_base);
}

.check_input:checked + .check_mark:before {
  opacity: 1;
}

.check_input:focus-visible + .check_mark {
  box-shadow: 0 0 0 3px rgba(68, 73, 82, 0.16);
}

.check_label a {
  position: relative;
  z-index: 1;
  pointer-events: auto;
  text-decoration: underline;
}

/* =====================
  common_entry_form
===================== */

.form_wrap {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

.form_intro {
  margin-bottom: 20px;
}

.form_required_note {
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--c_note_dark);
}

.form_required_note span {
  color: #d24a3d;
}

.form_section {
  padding: 46px 0;
  border-top: 1px solid rgba(68, 73, 82, 0.12);
}

.form_wrap .form_section:first-of-type {
  margin-top: 46px;
}

.form_wrap .form_section:last-of-type {
  border-bottom: 1px solid rgba(68, 73, 82, 0.12);
}

.form_section_ttl {
  margin: 0 0 30px;
  font-size: 20px;
  line-height: 1.6;
}

.form_list .form_row {
  grid-template-columns: 285px 1fr;
  gap: 24px;
  align-items: start;
}

.form_birth {
  align-items: center;
  gap: 10px;
}

.form_birth .form_select {
  width: 94px;
}

.form_zipcode {
  align-items: center;
  gap: 10px;
}

.form_zipcode_mark {
  width: 16px;
  flex-shrink: 0;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.form_zipcode .common_form {
  width: calc(100% - 26px);
}

.form_check .check_label {
  align-items: flex-start;
}

.form_check .check_mark {
  margin-top: 2px;
}

.form_submit {
  margin-top: 50px;
}

.form_submit a {
  max-width: 256px;
  min-height: 60px;
  padding: 0 24px;
  line-height: 1.8;
  text-align: center;
}

.form_submit.form_signin_link {
  margin-top: 0;
  max-width: 260px;
  margin-bottom: 20px;
}

.form_submit.form_signin_link a {
  max-width: 100%;
}

/* =====================
  common_ec
===================== */

.ec_step_nav {
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  position: relative;
  counter-reset: ec_step;
  margin-bottom: 60px;
}

.ec_step_item {
  width: 100%;
  min-height: 0;
  padding: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  text-align: center;
}

.ec_step_item:before {
  content: counter(ec_step);
  width: 28px;
  height: 28px;
  border: 1px solid rgba(68, 73, 82, 0.22);
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font_mincho);
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
  counter-increment: ec_step;
  position: relative;
  z-index: 2;
}

.ec_step_item:after {
  content: "";
  width: calc(100% + 20px);
  height: 1px;
  background: rgba(68, 73, 82, 0.12);
  position: absolute;
  top: 14px;
  left: calc(50% + 14px);
}

.ec_step_item:last-child:after {
  display: none;
}

.ec_step_item .copy_en {
  display: none;
}

.ec_step_item p {
  margin: 0;
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: rgba(68, 73, 82, 0.6);
}

.ec_step_item.is_current {
  background: transparent;
}

.ec_step_item.is_current:before {
  border-color: var(--c_blue);
  background: var(--c_blue);
  color: var(--c_text);
}

.ec_step_item.is_current p {
  color: var(--c_base);
}

/* =====================
  common_sub_text
===================== */

.contact_note,
.category_count,
.review_date {
  color: var(--c_note_dark);
}

.contact_agree label,
.signup_text,
.cart_summary_row,
.review_text p {
  color: var(--c_label_dark);
}

.product_archive_desc,
.cart_empty_text,
.products_desc {
  color: var(--c_desc_dark);
}

.product_archive_price span,
.products_price .product_type {
  color: var(--c_price_dark);
}

.cart_item_meta {
  color: var(--c_meta_dark);
}

.cart_remove {
  color: var(--c_remove_dark);
}

/* =====================
  scrolldown
===================== */

.scrolldown {
  position: absolute;
  bottom: 115px;
  left: 50%;
  transform: translateX(-50%);
  opacity: .8;
  z-index: 3;
}

.scrolldown::before {
  content: '';
  width: 1px;
  height: 100px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  position: absolute;
  bottom: -115px;
  left: 50%;
  right: 0;
  animation: scrolldown 2s infinite;
  margin-left: -0.5px;
}

@keyframes scrolldown {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}

.scrolldown a {
  transition: .3s;
  display: inline-block;
  white-space: nowrap;
}

.scrolldown span {
  font-family: var(--font_mincho);
  font-size: 12px;
}

/* =====================
  header
===================== */

#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

#header.is_hide {
  opacity: 0;
  visibility: hidden;
}

#header a {
  pointer-events: auto;
  transition: .3s;
}

#header button {
  pointer-events: auto;
  transition: .3s;
}

#header .inner {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 50px 0;
  transition: padding-top .35s ease;
}

#header.is_scrolled .inner {
  padding-top: 50px;
}

.header_news {
  height: 35px;
  background: #212121;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.05em;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
}

.header_news a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  color: var(--c_text);
}

.news_label {
  position: relative;
  padding-right: 14px;
}

.news_label::after {
  content: "";
  width: 1px;
  height: 13px;
  background: #dddddd;
  opacity: .5;
  position: absolute;
  top: -1px;
  right: 0;
  transform: rotate(34deg);
}

.site_logo {
  margin: 0;
}

.site_logo a {
  width: 100px;
  display: block;
  position: relative;
}

.site_logo img {
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.site_logo .logo_white {
  opacity: 0;
  visibility: hidden;
}

.site_logo .logo_black {
  position: absolute;
  inset: 0;
  opacity: 1;
  visibility: visible;
}

:is(#page_home, #page_about, #page_campaign, #page_products) #header:not(.is_dark) .site_logo .logo_white,
:is(#page_home, #page_about, #page_campaign, #page_products) #header:not(.is_dark) .header_tools .icon_white {
  opacity: 1;
  visibility: visible;
}

:is(#page_home, #page_about, #page_campaign, #page_products) #header:not(.is_dark) .site_logo .logo_black,
:is(#page_home, #page_about, #page_campaign, #page_products) #header:not(.is_dark) .header_tools .icon_black {
  opacity: 0;
  visibility: hidden;
}

#g_nav {
  display: flex;
  justify-content: center;
}

#g_nav ul {
  gap: 34px;
}

#g_nav a {
  font-size: 10px;
  line-height: 24px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.header_tools {
  justify-content: flex-end;
  align-items: flex-start;
  gap: 25px;
}

.header_tools p {
  margin: 0;
}

.header_tools a,
.header_tools button {
  display: block;
  position: relative;
}

.header_tools img {
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.header_tools .icon_white {
  opacity: 0;
  visibility: hidden;
}

.header_tools .icon_black {
  position: absolute;
  inset: 0;
  opacity: 1;
  visibility: visible;
}

#header.is_dark .site_logo .logo_white,
#header.is_dark .header_tools .icon_white {
  opacity: 0;
  visibility: hidden;
}

#header.is_dark .site_logo .logo_black,
#header.is_dark .header_tools .icon_black {
  opacity: 1;
  visibility: visible;
}

.tool_mypage {
  width: 23px;
}

.tool_cart {
  width: 23px;
}

.tool_menu {
  width: 25px;
  padding-top: 3px;
}

body.is_menu_open {
  overflow: hidden;
}

body.is_menu_open .fullpage_scroll {
  overflow: hidden !important;
}

/* =====================
  header_menu
===================== */

.header_menu {
  position: fixed;
  inset: 0;
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .35s ease, visibility .35s ease;
}

.header_menu.is_open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.header_menu_overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.52);
}

.header_menu_panel {
  width: min(560px, calc(100% - 36px));
  height: 100svh;
  background: #212121;
  color: var(--c_text);
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  transform: translate3d(100%, 0, 0);
  transition: transform .45s cubic-bezier(.22,1,.36,1);
  box-shadow: -24px 0 56px rgba(17, 17, 17, 0.26);
}

.header_menu.is_open .header_menu_panel {
  transform: translate3d(0, 0, 0);
}

.header_menu_head {
  align-items: center;
  justify-content: space-between;
  padding: 34px 36px 24px;
  flex-shrink: 0;
}

.header_menu_label {
  margin: 0;
  color: var(--c_text);
  justify-content: flex-start;
  gap: 12px;
}

.header_menu_close {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.header_menu_close:before,
.header_menu_close:after {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--c_text);
  position: absolute;
  top: 50%;
  left: 50%;
}

.header_menu_close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.header_menu_close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.header_menu_scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 0 36px 46px;
  -webkit-overflow-scrolling: touch;
}

.header_menu_block + .header_menu_block {
  margin-top: 58px;
}

.header_menu_primary,
.header_menu_list {
  padding: 0 20px;
}

.header_menu_list {
  margin-top: 20px;
}

.header_menu_groups {
  margin-top: 36px;
}

.header_menu_subgroup + .header_menu_subgroup {
  margin-top: 34px;
}

.header_menu_subhead {
  margin: 0 20px 12px;
}

.header_menu_subhead a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.header_menu_subhead span {
  min-height: 30px;
  padding: 5px 15px 5px;
  border-radius: 0 12px 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c_sub);
  color: #212121;
  font-size: 12px;
  line-height: 1.7;
  letter-spacing: 0.14em;
  font-weight: 600;
}

.header_menu_nested {
  margin-top: 0;
}

.header_menu_primary li + li,
.header_menu_list li + li {
  margin-top: 2px;
}

.header_menu_primary a,
.header_menu_list a {
  display: block;
  padding: 12px 0;
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  color: var(--c_sub);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.header_menu_products {
  margin-top: 24px;
}

.header_menu_column {
  width: 100%;
}

.header_menu_banner {
  display: block;
  margin: 0 20px;
  padding: 20px 20px 25px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0 20px 0 20px;
  transition: border-radius .45s cubic-bezier(.22,1,.36,1);
  position: relative;
  overflow: hidden;
}

.header_menu_banner:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.15),
    rgba(255,255,255,0)
  );
  transition: width .45s cubic-bezier(.22,1,.36,1);
  z-index: 0;
  pointer-events: none;
}

.header_menu_banner_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.header_menu_banner_title {
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.1em;
  color: var(--c_text);
  width: 130px;
  text-align: center;
  position: relative;
  padding-right: 10px;
}

.header_menu_banner_title::before {
  content: "";
  width: 1px;
  height: 13px;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: 5px;
  opacity: .2;
  transform-origin: center center;
  transform: rotate(34deg) translate(0, -50%);
}

.header_menu_banner_text {
  margin: 0;
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: var(--c_sub);
  width: calc(100% - 150px);
}

.header_menu_column + .header_menu_column {
  margin-top: 58px;
}

.header_menu_actions {
  gap: 14px;
  padding: 18px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: #212121;
  flex-shrink: 0;
}

.header_menu_button {
  width: 100%;
  margin: 0;
}

.header_menu_button a {
  width: 100%;
  min-height: 58px;
  font-size: 14px;
}

/* =====================
  footer
===================== */

#footer {
  width: 100%;
  min-height: auto;
  background: #212121;
  color: var(--c_text);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

#footer .inner {
  width: 100%;
  max-width: 100%;
  padding: 80px 90px;
}

#footer a {
  transition: .3s;
}

#footer .footer_info {
  display: flex;
  justify-content: space-between;
  align-items: start;
}

.footer_nav_wrap {
  width: auto;
  margin-left: auto;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 100px;
}

.foot_logo {
  width: 100px;
}

.foot_nav_block {
  flex: 0 1 auto;
  min-width: 0;
}

.foot_nav_block .copy_en {
  margin: 0 0 25px;
  position: relative;
}

.foot_nav_block .copy_en:before {
  content: "";
  width: 1px;
  height: 13px;
  background: currentColor;
  position: absolute;
  top: 50%;
  transform-origin: center center;
  opacity: .5;
  left: -18px;
  transform: rotate(34deg) translateY(-50%);
}

.foot_nav_block_select {
  flex: 0 1 auto;
  max-width: 100%;
}

.foot_nav_groups {
  display: flex;
  align-items: flex-start;
  gap: 80px;
}

.foot_nav_group {
  flex: 0 1 auto;
  min-width: 0;
  max-width: 200px;
}

.foot_nav_subhead {
  margin: 0 0 16px;
}

.foot_nav_subhead a {
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.foot_nav_subhead span {
  min-height: 30px;
  padding: 4px 15px 4px;
  border-radius: 0 12px 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c_sub);
  color: #212121;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: 0.14em;
  font-weight: 600;
}

@media screen and (min-width:900px) and (max-width:1500px) {

  #footer .inner {
    padding: 80px 48px;
  }

  .footer_nav_wrap {
    gap: 56px;
  }

  .foot_nav_block_select {
    max-width: 200px;
  }

  .foot_nav_groups {
    display: block;
  }

  .foot_nav_group + .foot_nav_group {
    margin-top: 28px;
  }

}

@media screen and (min-width:900px) and (max-width:1100px) {

  #footer .inner {
    padding: 72px 32px;
  }

  .footer_nav_wrap {
    gap: 40px;
  }

}

.foot_nav li + li {
  margin-top: 8px;
}

.foot_nav a {
  color: var(--c_sub);
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.1em;
}

.footer_bottom {
  width: 100%;
  margin-top: 100px;
  align-items: center;
  justify-content: space-between;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.footer_sns {
  gap: 15px;
  align-items: center;
}

.footer_sns a {
  display: block;
}

.footer_sns li:first-child {
  width: 20px;
}

.footer_sns li:last-child {
  width: 20px;
}

.copyright {
  font-size: 12px;
  line-height: 24px;
  letter-spacing: 0.1em;
  font-style: normal;
}

/* =====================
  fv
===================== */
  
#fv {
  padding: 120px 0 0;
  text-align: center;
}

#fv .section_head {
  margin-bottom: 0;
}

/* =====================
  chip_box
===================== */

.chip_box {
  width: fit-content;
  max-width: 100%;
  position: relative;
}

.chip_label {
  display: inline-flex;
  text-decoration: underline;
  align-items: center;
  gap: 4px;
  position: relative;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--c_note_dark);
  cursor: pointer;
  transition: color .3s ease, opacity .3s ease;
}

.chip_label::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background: url("images/icon_chip.svg") center center / contain no-repeat;
  position: relative;
  z-index: 1;
  margin-top: 1px;
}

.chip_text {
  width: 260px;
  max-width: min(320px, calc(100vw - 64px));
  padding: 15px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid rgba(68, 73, 82, 0.14);
  box-shadow: 0 16px 34px rgba(68, 73, 82, 0.12);
  position: absolute;
  left: -10px;
  bottom: calc(100% + 10px);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease, transform .3s ease;
  font-size: 12px;
  line-height: 1.5;
  letter-spacing: 0.06em;
  color: var(--c_base);
}

.chip_text:before,
.chip_text:after {
  content: "";
  position: absolute;
  left: 18px;
}

.chip_text:before {
  bottom: -11px;
  left: 1px;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid rgba(68, 73, 82, 0.14);
  display: none;
}

.chip_text:after {
  bottom: -9px;
  left: 12px;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 10px solid rgba(255, 255, 255, 0.97);
}

.chip_box.is_show .chip_label,
.chip_box:focus-within .chip_label {
  color: var(--c_base);
}

.chip_box.is_show .chip_text,
.chip_box:focus-within .chip_text {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* ========================================
  page_home
======================================== */

:is(#page_home, #page_about) {
  color: var(--c_text);
  overflow: hidden;
}

#page_home #fv,
#page_home .contents,
#page_home #footer,
#page_about #fv,
#page_about .contents,
#page_about #footer {
  min-height: 100svh;
  position: relative;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

#page_home #wrapper,
#page_about #wrapper {
  height: 100svh;
}

#page_home #fv {
  padding-bottom: 120px;
}

#page_home .contents,
#page_about .contents {
  display: flex;
  align-items: center;
  justify-content: center;
}

#hero_group {
  position: relative;
}

.hero_bg {
  width: 100%;
  height: 100svh;
  margin-bottom: -100svh;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 0;
  isolation: isolate;
  transform: translateZ(0);
  will-change: transform;
}

.hero_bg img {
  width: 100%;
  height: 100vh;
  object-position: center;
  object-fit: cover;
}

.hero_bg:before,
.hero_bg:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero_bg:before {
  background-color: transparent;
  opacity: 0;
  mix-blend-mode: color;
  transition: background-color 1.15s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: background-color, opacity;
}

.hero_bg:after {
  background-color: rgba(0, 0, 0, 0.34);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 120px 120px;
  opacity: 0;
  transition: opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.fullpage_scroll {
  height: auto;
  overflow: visible;
  scroll-snap-type: none;
}

body:not(#page_home):not(#page_about) .fullpage_scroll {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

body:not(#page_home):not(#page_about) #footer {
  margin-top: auto;
}

#page_home .contents > .inner,
#page_home #fv > .inner,
#page_about .contents > .inner,
#page_about #fv > .inner {
  position: relative;
  z-index: 2;
}

/* =====================
  fv
===================== */

#page_home #fv {
  display: flex;
  align-items: center;
  justify-content: center;
}

#page_home #fv:before,
#select:before,
#series::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#select:before,
#series::before {
  background: linear-gradient(
    180deg,
    rgba(10, 13, 26, 0) 0%,
    rgba(10, 13, 26, 0.2) 18%,
    rgba(10, 13, 26, 0.38) 36%,
    rgba(10, 13, 26, 0.38) 64%,
    rgba(10, 13, 26, 0.2) 82%,
    rgba(10, 13, 26, 0) 100%
  );
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

#select.is_current:before,
#series.is_current:before {
  opacity: 1;
}

.fv_copy {
  position: relative;
  z-index: 2;
  text-align: center;
  font-weight: 400;
  margin-bottom: 60px;
}

.fv_copy .copy_heading {
  margin: 0;
  font-size: 38px;
  line-height: 2.35;
  letter-spacing: 0.15em;
  font-weight: 400;
}

.fv_copy .copy_heading span {
  display: block;
}

.fv_copy .copy_heading span:last-child {
  font-size: 17px;
  letter-spacing: 0.15em;
}

.skincare_text {
  text-align: center;
}

.skincare_text .copy_heading {
  margin: 0 0 70px;
  font-size: 30px;
  line-height: 1.5;
}

.skincare_img {
  max-width: 450px;
  margin: 0 auto 70px;
}

.skincare_text .text {
  font-size: 16px;
  line-height: 2.5;
  letter-spacing: 0.05em;
}

/* =====================
  series
===================== */

#page_home #series {
  display: block;
  padding: 0;
}

#page_home #series .section_label {
  margin-bottom: 40px;
}

#series.is_series_scroll .inner,
#series.is_series_scroll .series_scroll {
  height: 100%;
}

.series_scroll,
.series_sticky,
.series_view {
  width: 100%;
}

#series .copy_heading {
  margin: 0 0 100px;
  font-size: 30px;
  line-height: 1.7;
  letter-spacing: 0.1em;
  text-align: center;
}

.series_list {
  align-items: stretch;
  justify-content: space-between;
  counter-reset: number 0;
}

.series_item {
  width: 25%;
  padding: 0 34px;
  position: relative;
  text-align: center;
  counter-increment: number 1;
}

.series_item:before {
  content: "";
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.28);
  position: absolute;
  top: 0;
  left: 0;
}

.series_item:first-child:before {
  display: none;
}

.series_item .copy_en::before {
  content: counter(number,decimal-leading-zero) '.';
}

.series_name {
  margin: 0 0 14px;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  font-weight: 400;
  font-family: var(--font_mincho);
}

.series_name a {
  color: inherit;
  text-decoration: none;
}

.series_catch {
  margin: 0 0 15px;
  font-family: var(--font_mincho);
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.series_img {
  height: 200px;
  margin: 0 0 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.series_img a {
  height: 100%;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
}

.series_img img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.series_desc {
  margin: 0;
  font-size: 14px;
  line-height: 2.05;
  letter-spacing: 0.08em;
  text-align: left;
}

#series.is_series_scroll .series_sticky {
  min-height: 100svh;
  padding: 100px 0 120px;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#series.is_series_scroll .series_view {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
}

#series.is_series_scroll .series_list {
  width: max-content;
  padding: 0 max(calc((100vw - 1186px) / 2), 90px);
  justify-content: flex-start;
  flex-wrap: nowrap;
}

#series.is_series_scroll .series_item {
  width: 600px;
  padding: 0 100px;
  flex-shrink: 0;
}

/* =====================
  select
===================== */

.select_box {
  max-width: 900px;
  margin: 0 auto;
}

.select_group + .select_group {
  margin-top: 80px;
}

.select_group .copy_heading {
  margin: 0 0 34px;
  font-size: 18px;
  line-height: 1;
}

.select_list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.select_list li a,
.select_list._nolink li {
  min-height: 38px;
  padding: 10px 25px 11px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 0 20px 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

/* =====================
  lineup
===================== */

#lineup {
  position: relative;
}

.lineup_conts {
  z-index: 2;
  background: transparent;
}

#hero_group.is_lineup01 .hero_bg:before {
  background-color: #505278;
  opacity: 1;
}

#hero_group.is_lineup02 .hero_bg:before {
  background-color: #c6c1ac;
  opacity: 1;
}

#hero_group.is_set .hero_bg:before {
  background-color: #7d8089;
  opacity: 1;
}

#hero_group.is_skincare .hero_bg:before {
  background-color: #D2ACA4;
  opacity: 1;
}

#hero_group.is_lineup01 .hero_bg:after,
#hero_group.is_lineup02 .hero_bg:after,
#hero_group.is_set .hero_bg:after,
#hero_group.is_skincare .hero_bg:after {
  opacity: 0.92;
}

.lineup_wrap {
  align-items: center;
  justify-content: space-between;
}

#lineup02 .lineup_wrap {
  flex-direction: row-reverse;
}

/* =====================
  set
===================== */

#set .section_label {
  margin-bottom: 36px;
}

#set.is_set_scroll .inner,
#set.is_set_scroll .set_scroll {
  height: 100%;
}

.set_scroll,
.set_sticky,
.set_view {
  width: 100%;
}

.set_text {
  text-align: center;
}

.set_text .copy_heading {
  margin: 0 0 100px;
  font-size: 30px;
  line-height: 1.6;
  letter-spacing: 0.1em;
}

.set_list {
  align-items: stretch;
  justify-content: flex-start;
  gap: 0;
}

.set_item {
  width: calc(100% / 3);
  padding: 0 42px;
  position: relative;
  text-align: center;
}

.set_item:before {
  content: "";
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.28);
  position: absolute;
  top: 0;
  left: 0;
}

.set_item:first-child:before {
  display: none;
}

.set_item a {
  display: block;
  color: var(--c_text);
}

.set_skin {
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.03em;
  font-weight: 400;
  font-family: var(--font_mincho);
}

.set_visual {
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.set_img {
  width: 100%;
  max-width: 280px;
  height: 250px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.set_img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(8, 12, 29, 0.22));
  transition: transform .35s ease, opacity .35s ease;
}

.set_body {
  padding-top: 14px;
}

.set_name {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: var(--font_mincho);
  font-weight: 400;
}

.set_desc {
  margin: 0;
  font-size: 14px;
  line-height: 2.05;
  letter-spacing: 0.08em;
  text-align: left;
}

.set_price {
  margin: 26px 0 0;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-align: right;
}

.set_price span {
  font-size: 10px;
  letter-spacing: 0.08em;
}

#set.is_set_scroll .set_sticky {
  min-height: 100svh;
  padding: 100px 0 120px;
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lineup_img {
  width: 34%;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lineup_img img {
  width: auto;
  max-width: 252px;
  max-height: 378px;
}

.lineup_text {
  max-width: 513px;
  width: 57%;
}

.lineup_head {
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 31px;
}

.lineup_text .lineup_copy {
  font-size: 30px;
  font-weight: 400;
  font-family: var(--font_mincho);
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}

.lineup_text .copy_heading {
  margin: 0;
  font-size: 18px;
  line-height: 27px;
}

.lineup_price {
  margin: 0;
  font-size: 22px;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-align: right;
}

.lineup_price span {
  font-size: 10px;
  line-height: 1;
}

.lineup_desc {
  margin: 0;
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.1em;
}

.lineup_text .btn {
  margin-top: 40px;
  text-align: right;
}

/* =====================
  about
===================== */

#about {
  background: transparent;
}

.about_text {
  text-align: center;
}

.about_text .copy_heading {
  margin: 0 0 50px;
  font-size: 30px;
  line-height: 1.5;
}

.about_text .text {
  margin: 0 0 78px;
  font-size: 16px;
  line-height: 2.5;
  letter-spacing: 0.05em;
}

/* =====================
  category
===================== */

#category {
  background: #fff;
  color: var(--c_base);
}

#category .inner {
  width: 100%;
  max-width: 100%;
  padding: 80px 50px;
}

.category_list {
  width: fit-content;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(70px,4vw);
  align-items: flex-start;
}

.category_item {
  max-width: 349px;
  width: 100%;
}

.category_item.middle {
  padding-top: 0;
}

.category_item a {
  display: block;
  position: relative;
  color: #fff;
}

.category_img {
  margin: 0;
  width: 100%;
  aspect-ratio: 349 / 450;
  overflow: hidden;
  position: relative;
  border-radius: 0 50px 0 50px;
  transition: .3s;
}

.category_item a:hover .category_img {
  border-radius: 0;
}

.category_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category_img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0));
}

.category_name {
  width: 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  text-align: center;
  padding: 0 12px;
}

.category_name .copy_heading {
  margin: 0;
  font-size: min(18px,1.6vw);
  line-height: 27px;
}

.category_name .copy_en {
  margin-top: 0;
}

/* =====================
  voice
===================== */

#voice {
  background: #fff;
  color: var(--c_base);
  overflow: hidden;
}

.voice_slider {
  position: relative;
  overflow: visible;
}

.voice_list {
  width: fit-content;
  margin: 0 auto;
  gap: 70px;
}

.voice_item {
  width: 349px;
}

.voice_card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 20px;
  text-align: center;
}

.voice_img {
  width: 150px;
  height: 150px;
  margin: 0 auto 10px;
}

.voice_img img {
  height: 100%;
  object-fit: contain;
}

.voice_name {
  margin: 0;
  font-family: var(--font_mincho);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 35px;
  letter-spacing: 0.1em;
}

.voice_heading {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 25px;
  font-family: var(--font_mincho);
}

.voice_text {
  margin-bottom: 35px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: left;
  color: #99a0aa;
}

.read-more-check {
  display: none;
}

.voice_text .read-more-content {
  display: block;
  overflow: hidden;
}

.voice_text.is-expandable .read-more-content {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.voice_text .read-more-label {
  display: none;
  margin-top: 10px;
  color: var(--c_base);
  cursor: pointer;
  font-size: 12px;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.voice_text.is-expandable .read-more-label {
  display: block;
}

.voice_text .read-more-label::after {
  content: "続きを見る ▼";
}

.voice_text .read-more-check:checked ~ .read-more-content {
  display: block;
  -webkit-line-clamp: unset;
}

.voice_text .read-more-check:checked ~ .read-more-label::after {
  content: "閉じる ▲";
}

.voice_card .voice_btn {
  margin-top: auto;
}

.voice_nav {
  display: none;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
}

.voice_nav_btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(20, 21, 26, 0.35);
  border-radius: 50%;
  background: #fff;
  color: var(--c_base);
  -webkit-appearance: none;
  appearance: none;
  position: relative;
  transition: opacity .3s ease, background-color .3s ease, border-color .3s ease;
  cursor: pointer;
}

.voice_nav_btn:before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
}

.voice_prev:before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.voice_next:before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.voice_nav_btn:disabled {
  opacity: .3;
  pointer-events: none;
}

#voice.is_voice_carousel .voice_slider {
  width: calc(100% - 50px);
  max-width: none;
  overflow: visible;
  touch-action: pan-y;
}

#voice.is_voice_carousel .voice_list {
  width: auto;
  margin: 0;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  transition: transform .5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

#voice.is_voice_carousel .voice_item {
  flex: 0 0 auto;
}

#voice.is_voice_carousel .voice_slider.is_dragging {
  cursor: grabbing;
}

#voice.is_voice_carousel .voice_nav {
  display: flex;
  width: calc(100% - 50px);
  justify-content: flex-start;
}

/* =====================
  news
===================== */

#news {
  background: linear-gradient(rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.65)), url("images/news_bg.jpg") center center / cover no-repeat;
}

#news .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.news_list {
  margin: 0 auto;
}

.news_list li + li {
  margin-top: 25px;
}

.news_list li {
  display: grid;
  grid-template-columns: 80px 120px 1fr;
  align-items: baseline;
  gap: 35px;
}

.news_date {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.05em;
  color: rgba(243, 243, 241, 0.64);
}

.news_cat {
  width: 120px;
  font-size: 14px;
  line-height: 17px;
  position: relative;
  padding-right: 18px;
  color: rgba(243, 243, 241, 0.64);
}

.news_cat:after {
  content: "";
  width: 1px;
  height: 13px;
  opacity: .5;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: 0;
  transform: rotate(34deg) translateY(-50%);
}

.news_title {
  font-size: 14px;
  line-height: 24px;
}

.news_title a:hover {
  text-decoration: underline;
}

.news_btn {
  margin-top: 80px;
  text-align: center;
}

/* =====================
  concept
===================== */

.concept_copy {
  text-align: center;
}

.concept_copy p {
  margin: 0;
  font-family: var(--font_mincho);
  font-size: 14px;
  line-height: 2.5;
  letter-spacing: 0.05em;
}

/* =====================
  banner
===================== */

.banner {
  width: 280px;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 300;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: opacity .45s ease, visibility .45s ease, transform .45s ease;
}

.banner.is_show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.banner.is_hide {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}

.banner a {
  min-height: 120px;
  padding: 24px 24px 22px;
  background: #ffff;
  color: var(--c_base);
  border-radius: 0 24px 0 24px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  display: block;
}

.banner_ttl {
  margin: 0 0 10px;
  font-family: var(--font_mincho);
  font-size: 16px;
  line-height: 1.6;
}

.banner_text {
  margin: 0;
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.banner_close {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #212121;
  position: absolute;
  top: -12px;
  right: -12px;
  z-index: 2;
  cursor: pointer;
}

.banner_close:before,
.banner_close:after {
  content: "";
  width: 12px;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}

.banner_close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.banner_close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* ========================================
  page_about
======================================== */

#page_about #fv,
#page_about .contents,
#page_about #footer {
  overflow: hidden;
}

#page_home .fullpage_scroll,
#page_about .fullpage_scroll {
  height: 100svh;
  overflow-y: auto;
  overflow-x: hidden;
  scroll-snap-type: y mandatory;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

#page_home .fullpage_scroll.is_series_active,
#page_home .fullpage_scroll.is_set_active,
#page_home .fullpage_scroll.is_select_active {
  scroll-snap-type: none !important;
}

#page_home .fullpage_scroll.is_anchor_scrolling,
#page_about .fullpage_scroll.is_anchor_scrolling {
  scroll-snap-type: none !important;
}

#page_home.is_series_active #fv,
#page_home.is_series_active .contents,
#page_home.is_series_active #footer,
#page_home.is_set_active #fv,
#page_home.is_set_active .contents,
#page_home.is_set_active #footer,
#page_home.is_select_active #fv,
#page_home.is_select_active .contents,
#page_home.is_select_active #footer {
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

#page_home.is_anchor_scrolling #fv,
#page_home.is_anchor_scrolling .contents,
#page_home.is_anchor_scrolling #footer,
#page_about.is_anchor_scrolling #fv,
#page_about.is_anchor_scrolling .contents,
#page_about.is_anchor_scrolling #footer {
  scroll-snap-align: none;
  scroll-snap-stop: normal;
}

#page_about .contents {
  text-align: center;
}

#page_about .contents .copy_heading {
  margin: 0 0 50px;
  font-size: 30px;
  line-height: 1.5;
}

#page_about .contents .copy_heading + .text {
  font-size: 16px;
  line-height: 2.5;
  letter-spacing: 0.05em;
}

#page_about .contents .copy_heading + .text > p:not([class]) {
  margin-top: 2em;
}

/* =====================
  about_bg
===================== */

.about_bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  isolation: isolate;
}

.about_bg img {
  width: 110%;
  height: 110%;
  position: absolute;
  top: -5%;
  left: -5%;
  z-index: 0;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transform: scale(1);
  transition: transform 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

#page_about #fv.is_current .about_bg img,
#page_about .contents.is_current .about_bg img,
#page_home #about.is_current .about_bg img {
  transform: scale(1.035);
}

.about_bg:before,
.about_bg:after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.about_bg:before {
  background-color: #000;
  opacity: 0;
  mix-blend-mode: color;
  transition: background-color 1.15s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

.about_bg:after {
  background-color: rgba(0, 0, 0, 0.6);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 120px 120px;
  opacity: 0;
  transition: opacity 1.15s cubic-bezier(0.22, 1, 0.36, 1);
}

#page_about #fv.is_current .about_bg:before,
#page_about .contents.is_current .about_bg:before,
#page_home #about.is_current .about_bg:before {
  opacity: 1;
}

#page_about #fv.is_current .about_bg:after,
#page_about .contents.is_current .about_bg:after,
#page_home #about.is_current .about_bg:after {
  opacity: 0.92;
}

/* =====================
  about_nav
===================== */

.about_nav {
  position: fixed;
  top: 50%;
  right: 28px;
  z-index: 998;
  transform: translateY(-50%);
}

.about_nav_dot {
  width: 7px;
  height: 7px;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: transparent;
  display: block;
  cursor: pointer;
  transition: transform .35s ease, background-color .35s ease, border-color .35s ease, opacity .35s ease;
}

.about_nav_dot + .about_nav_dot {
  margin-top: 12px;
}

.about_nav_dot.is_current {
  background: #fff;
  border-color: #fff;
  transform: scale(1.55);
}

/* =====================
  fv
===================== */

#page_about #fv {
  display: flex;
  align-items: center;
  padding-bottom: 120px;
}

#page_about #fv .about_bg::before {
  display: none;
}

#page_home #about .about_bg::before {
  display: none;
}

#page_about .fv_conts {
  text-align: center;
}

#page_about .fv_conts .section_label {
  margin: 0 auto 40px;
  flex-wrap: wrap;
}

.about_logo {
  width: 100%;
  margin-top: 10px;
}

.about_logo img {
  width: 120px;
  height: auto;
  display: block;
  margin: 0 auto;
}

#page_about .fv_copy .copy_heading {
  margin-bottom: 40px;
}

#page_about .fv_copy p {
  font-size: 17px;
  line-height: 2.35;
  letter-spacing: 0.15em;
  font-weight: 400;
  font-family: var(--font_mincho);
}

/* =====================
  ourstory
===================== */

#ourstory:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#ourstory:before {
  background: linear-gradient(180deg, rgba(10, 13, 26, 0) 0%, rgba(10, 13, 26, 0.2) 18%, rgba(10, 13, 26, 0.38) 36%, rgba(10, 13, 26, 0.38) 64%, rgba(10, 13, 26, 0.2) 82%, rgba(10, 13, 26, 0) 100%);
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

#ourstory.is_current:before {
  opacity: 1;
}

/* =====================
  philosophy
===================== */

.philosophy_in {
  margin-top: 80px;
  justify-content: center;
}

.hilosophy_out {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.hilosophy_out li {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 20px;
}

.hilosophy_out li::before {
  content: '';
  width: 1px;
  height: 13px;
  background: currentColor;
  position: absolute;
  top: 50%;
  left: 0;
  opacity: .5;
  transform-origin: center center;
  transform: rotate(34deg) translate(-50%, -50%);
}

.hilosophy_out li:first-child::before {
  display: none;
}

/* =====================
  thenumbers
===================== */

.thenumbers_list {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.thenumbers_item {
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.thenumbers_num {
  font-family: var(--font_mincho);
  font-size: 70px;
  line-height: 1;
  letter-spacing: 0.02em;
}

.thenumbers_num span {
  margin-left: 4px;
  font-size: 24px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.thenumbers_title {
  margin: 15px 0 25px;
  font-family: var(--font_mincho);
  font-size: 18px;
  line-height: 1.8;
  font-weight: 400;
}

.thenumbers_list {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.thenumbers_note {
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 20px;
}

/* =====================
  honestguide
===================== */

.honestguide_column {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 72px;
  position: relative;
}

.honestguide_column .column_item {
  min-width: 0;
  text-align: left;
  position: relative;
  padding: 35px 40px 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.honestguide_column .column_item::before {
  content: "";
  position: absolute;
  left: 0;
  top: -1px;
  width: 40px;
  height: 1px;
  background: rgba(255, 255, 255, 0.65);
}

.honestguide_column .column_ttl {
  font-family: var(--font_mincho);
  font-size: 18px;
  line-height: 1.7;
  letter-spacing: 0.08em;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 20px;
}

.honestguide_list {
  margin-top: 28px;
}

.honestguide_list li {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
  line-height: 2.3;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.84);
}

.honestguide_list._ok li:before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 13px;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
}

.honestguide_list._no li:before {
  content: "";
  width: 8px;
  height: 1px;
  position: absolute;
  top: 16px;
  left: 0;
  background: rgba(255, 255, 255, 0.5);
}

.honestguide_list li + li {
  margin-top: 10px;
}

/* =====================
  promise
===================== */

#promise:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#promise:before {
  background: linear-gradient(180deg, rgba(10, 13, 26, 0) 0%, rgba(10, 13, 26, 0.2) 18%, rgba(10, 13, 26, 0.38) 36%, rgba(10, 13, 26, 0.38) 64%, rgba(10, 13, 26, 0.2) 82%, rgba(10, 13, 26, 0) 100%);
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

#promise.is_current:before {
  opacity: 1;
}

/* =====================
  firststep
===================== */

#firststep .about_bg::before {
  display: none;
}

.firststep_text .btn {
  margin-top: 60px;
}

/* =====================
  fadein
===================== */

.fadein {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s ease, transform .9s ease;
}

#page_about #fv.is_current .fadein,
#page_about .contents.is_current .fadein {
  opacity: 1;
  transform: translateY(0);
}

.fadein._d1 {
  transition-delay: .08s;
}

.fadein._d2 {
  transition-delay: .18s;
}

.fadein._d3 {
  transition-delay: .3s;
}

.fadein._d4 {
  transition-delay: .42s;
}

.fadein._d5 {
  transition-delay: .54s;
}

.fadein._d6 {
  transition-delay: .66s;
}

/* ========================================
  page_privacy
======================================== */

/* =====================
  privacy
===================== */

.privacy_wrap {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

.privacy_intro {
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(68, 73, 82, 0.08);
}

.privacy_section {
  padding: 34px 0;
  border-bottom: 1px solid rgba(68, 73, 82, 0.08);
}

#terms .privacy_section:first-of-type {
  padding-top: 0;
}

.privacy_ttl {
  margin-bottom: 18px;
  font-size: 20px;
}

.privacy_text {
  margin: 0;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: var(--c_label_dark);
}

.privacy_text + .privacy_text {
  margin-top: 1em;
}

.privacy_list {
  margin-top: 14px;
}

.privacy_list li {
  padding-left: 1.4em;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: var(--c_label_dark);
  position: relative;
}

.privacy_list li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.terms_number_list,
.terms_paren_list {
  margin-top: 14px;
  counter-reset: item;
}

.terms_number_list > li,
.terms_paren_list > li {
  position: relative;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: var(--c_label_dark);
}

.terms_number_list > li {
  padding-left: 1.8em;
}

.terms_number_list > li:before {
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  top: 0;
  left: 0;
}

.terms_paren_list {
  margin-top: 0.35em;
}

.terms_paren_list > li {
  padding-left: 2.2em;
}

.terms_paren_list > li:before {
  content: "(" counter(item) ")";
  counter-increment: item;
  position: absolute;
  top: 0;
  left: 0;
}

.terms_number_list > li + li,
.terms_paren_list > li + li {
  margin-top: 0.2em;
}

.terms_number_list + .privacy_text,
.terms_number_list + .privacy_list,
.privacy_text + .terms_number_list,
.privacy_list + .terms_number_list {
  margin-top: 14px;
}

.privacy_date {
  text-align: right;
  margin-top: 40px;
}

/* ========================================
  page_guide
======================================== */

/* =====================
  guide
===================== */

.guide_wrap {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

.guide_section {
  padding: 34px 0;
  border-bottom: 1px solid rgba(68, 73, 82, 0.08);
}

.guide_section:first-of-type {
  padding-top: 0;
}

.guide_ttl {
  margin-bottom: 18px;
  font-size: 20px;
}

.guide_text,
.guide_list > li,
.guide_sub_list li {
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: var(--c_label_dark);
}

.guide_list > li {
  padding-left: 1.4em;
  position: relative;
}

.guide_list > li:before {
  content: "◯";
  position: absolute;
  top: 0;
  left: 0;
}

.guide_list > li + li {
  margin-top: 1em;
}

.guide_sub_list {
  margin-top: 8px;
}

.guide_sub_list li + li {
  margin-top: 2px;
}

.guide_list .guide_text {
  margin-top: 8px;
}

.guide_text a {
  text-decoration: underline;
}

/* ========================================
  page_law_info
======================================== */

/* =====================
  law_info
===================== */

.law_info_table_wrap {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

.law_info_table {
  width: 100%;
  table-layout: fixed;
}

.law_info_table tr + tr th,
.law_info_table tr + tr td {
  border-top: 1px solid rgba(68, 73, 82, 0.08);
}

.law_info_table th,
.law_info_table td {
  padding: 24px 0;
  vertical-align: top;
}

.law_info_table th {
  width: 220px;
  padding-right: 32px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: left;
  font-weight: 600;
}

.law_info_table td {
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 0.08em;
  color: var(--c_label_dark);
}

.law_info_table td a {
  text-decoration: underline;
}

/* ========================================
  page_news
======================================== */

/* =====================
  news_main
===================== */

#news_main {
  padding-top: 40px;
}

#news_main .inner {
  width: 900px;
}

.news_tools {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%), #eef2f4;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: 18px 0;
  margin-bottom: 50px;
}

.news_filter {
  justify-content: center;
  gap: 10px;
}

.news_filter.is_filter_pending {
  visibility: hidden;
}

.news_filter li a {
  border: none;
  background: #fff;
}

#page_news .news_list {
  width: 100%;
}

#page_news .news_list li {
  display: block;
  border-bottom: 1px solid rgba(68, 73, 82, 0.08);
}

#page_news .news_list li > a {
  display: grid;
  grid-template-columns: 80px 120px 1fr;
  align-items: baseline;
  gap: 35px;
  padding: 26px 0;
  transition: opacity .35s ease;
}

#page_news .news_list li:first-child > a {
  padding-top: 0;
}

#page_news .news_list li + li {
  margin-top: 0;
}

#page_news .news_date {
  color: rgba(68, 73, 82, 0.55);
}

#page_news .news_cat {
  color: rgba(68, 73, 82, 0.55);
}

#page_news .news_title {
  color: var(--c_base);
}

#page_news .news_list li > a:hover .news_title {
  text-decoration: underline;
}

.news_pager {
  margin-top: 50px;
}

.news_pager_list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
}

.news_pager_list li {
  margin: 0;
}

.news_pager_list a {
  min-width: 38px;
  height: 38px;  
  border: 1px solid rgba(68, 73, 82, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.12em;
  transition: .35s ease;
}

.news_pager_list .is_current a {
  background: var(--c_base);
  color: var(--c_text);
  border-color: var(--c_base);
}

.news_pager_prev a,
.news_pager_next a {
  height: 48px;
  min-width: 86px;
  border-radius: 0 18px 0 18px;
  padding: 0 18px;
}

/* =====================
  page_news_detail
===================== */

/* =====================
  fv
===================== */

#page_news_detail #fv .inner {
  width: 940px;
}

/* =====================
  news_detail
===================== */

#news_detail {
  padding-top: 50px;
}

#news_detail .inner {
  width: 940px;
}

.news_detail_head {
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(68, 73, 82, 0.08);
}

.news_detail_meta {
  align-items: center;
  gap: 0 18px;
  margin-bottom: 30px;
}

.news_detail_meta .news_date {
  color: var(--c_label_dark);
}

.news_detail_meta .news_cat {
  width: auto;
  padding: 0 0 0 18px;
  color: var(--c_label_dark);
}

.news_detail_meta .news_cat::after {
  right: auto;
  left: 0;
}

.news_share {
  align-items: center;
  gap: 0 14px;
  justify-content: flex-end;
  margin-top: 80px;
  border-top: 1px solid rgba(68, 73, 82, 0.08);
  padding-top: 30px;
}

.news_share_label {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: rgba(68, 73, 82, 0.68);
  margin-bottom: 5px;
}

.news_detail_ttl {
  margin: 0;
  font-size: 30px;
  line-height: 1.8;
  text-align: left;
}

.news_detail_body p {
  margin: 0;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: var(--c_label_dark);
}

.news_detail_body p + p {
  margin-top: 1em;
}

.news_detail_body p strong {
  font-family: var(--font_mincho);
  font-size: 19px;
  line-height: 2;
  color: var(--c_base);
  font-weight: 500;
}

.news_detail_nav {
  margin: 100px auto 0;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.news_detail_prev,
.news_detail_next {
  width: 150px;
}

.news_detail_prev a,
.news_detail_next a {
  max-width: 150px;
}

.news_detail_back {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.news_detail_back a {
  text-decoration: underline;
}

/* ========================================
  page_faq
======================================== */

/* =====================
  faq_main
===================== */

.faq_list {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

.faq_item {
  border: 1px solid rgba(68, 73, 82, 0.1);
  border-radius: 0 28px 0 28px;
  overflow: hidden;
}

.faq_item + .faq_item {
  margin-top: 18px;
}

.faq_question {
  list-style: none;
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 26px 72px 26px 28px;
  position: relative;
  cursor: pointer;
}

.faq_question::-webkit-details-marker {
  display: none;
}

.faq_question:before,
.faq_question:after {
  content: "";
  width: 14px;
  height: 1px;
  background: var(--c_base);
  position: absolute;
  top: 50%;
  right: 28px;
  transform-origin: center center;
  transition: transform .35s ease, opacity .35s ease;
}

.faq_question:after {
  transform: rotate(90deg);
}

.faq_item[open] .faq_question:after {
  opacity: 0;
}

.faq_item.is_animating .faq_question {
  pointer-events: none;
}

.faq_mark {
  width: 24px;
  flex: 0 0 24px;
  margin: 0;
  font-family: var(--font_mincho);
  font-size: 20px;
  line-height: 1.6;
}

.faq_question_text {
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.faq_answer {
  padding: 0 28px 28px;
  will-change: height, opacity;
}

.faq_answer_inner {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding-top: 22px;
  border-top: 1px solid rgba(68, 73, 82, 0.08);
}

.faq_answer_text {
  flex: 1;
}

.faq_answer_text p,
.faq_answer_list li {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: var(--c_label_dark);
}

.faq_answer_text p {
  margin: 0;
}

.faq_answer_text p + p {
  margin-top: 1em;
}

.faq_answer_list {
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
}

.faq_answer_list li {
  padding-left: 1.4em;
  position: relative;
}

.faq_answer_list._disc li:before,
.faq_answer_list._kome li:before,
.faq_answer_list._num li:before {
  position: absolute;
  left: 0;
  top: 0;
}

.faq_answer_list._disc li:before {
  content: "・";
}

.faq_answer_list._kome li {
  padding-left: 1.6em;
}

.faq_answer_list._kome li:before {
  content: "※";
}

.faq_answer_list._num {
  counter-reset: faq_num;
}

.faq_answer_list._num li {
  padding-left: 1.8em;
}

.faq_answer_list._num li:before {
  counter-increment: faq_num;
  content: counter(faq_num) ".";
}

/* ========================================
  page_contact
======================================== */

/* =====================
  fv
===================== */

.contact_faq_btn {
  margin-top: 42px;
}

.contact_faq_btn a,
.contact_submit a {
  max-width: 256px;
  min-height: 60px;
  padding: 0 24px;
  line-height: 1.8;
  text-align: center;
}

/* =====================
  contact_main
===================== */

.contact_form_wrap {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

.contact_intro {
  margin-bottom: 22px;
}

.contact_note {
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.contact_note span {
  color: #d24a3d;
}

.contact_form_list .form_row {
  grid-template-columns: 170px 1fr;
  gap: 22px;
  align-items: start;
}

.contact_agree {
  margin-top: 20px;
  padding-left: 192px;
}

.contact_agree a {
  text-decoration: underline;
}

.contact_submit {
  margin-top: 50px;
  text-align: center;
}

/* ========================================
  page_contact_confirm
======================================== */

/* =====================
  contact_confirm
===================== */

.contact_confirm_submit a {
  max-width: 240px;
  min-height: 60px;
  padding: 0 24px;
  line-height: 1.8;
  text-align: center;
}

/* ========================================
  page_order
======================================== */

/* =====================
  order_main
===================== */

.order_delivery_cycle {
  align-items: center;
  gap: 10px;
}

.order_delivery_cycle .form_select {
  width: 120px;
}

.order_delivery_cycle span {
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.order_delivery_dates p {
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: var(--c_label_dark);
}

.order_delivery_dates p + p {
  margin-top: 2px;
}

.order_shipping_new {
  margin-top: 34px;
}

.order_shipping_new.is_hide {
  display: none;
}

.order_back {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.order_back a {
  text-decoration: underline;
  color: var(--c_blue);
}

/* ========================================
  page_order_confirm
======================================== */

/* =====================
  order_confirm
===================== */

.order_confirm_wrap {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

.order_confirm_layout {
  align-items: flex-start;
  justify-content: space-between;
  gap: 0 56px;
}

.order_confirm_main {
  width: calc(100% - 356px);
}

.order_confirm_side {
  width: 300px;
  flex-shrink: 0;
}

.order_confirm_block {
  padding: 60px 0 0;
}

.order_confirm_block:first-of-type {
  padding-top: 0;
}

.order_confirm_ttl {
  margin: 0 0 18px;
  font-size: 20px;
  line-height: 1.6;
}

.order_confirm_table {
  width: 100%;
  border-top: 1px solid rgba(68, 73, 82, 0.12);
}

.order_confirm_table th,
.order_confirm_table td {
  padding: 18px 0;
  border-bottom: 1px solid rgba(68, 73, 82, 0.12);
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: left;
  vertical-align: top;
}

.order_confirm_table th {
  width: 180px;
  font-weight: 500;
}

.order_confirm_table td {
  color: var(--c_label_dark);
}

.order_confirm_action {
  padding-top: 42px;
  text-align: center;
}

.order_confirm_submit a {
  max-width: 256px;
  min-height: 60px;
  padding: 0 24px;
}

.order_confirm_back {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.order_confirm_back a {
  color: var(--c_blue);
  text-decoration: underline;
}

.order_confirm_tax {
  margin-top: 8px;
  padding: 10px 0 0;
}

.order_confirm_tax_ttl {
  font-size: 12px;
  line-height: 1.7;
  font-weight: 500;
}

.order_confirm_tax_list {
  margin-top: 4px;
}

.order_confirm_tax_row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-size: 12px;
  line-height: 1.8;
}

.order_confirm_cart {
  padding-top: 0;
}

.order_confirm_cart_head {
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 14px;
}

.order_confirm_cart_head .cart_side_ttl {
  margin-bottom: 0;
  text-align: left;
}

.order_confirm_cart_link {
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.order_confirm_cart_link a {
  color: var(--c_blue);
  text-decoration: underline;
}

.order_confirm_cart_list {
  border-top: 1px solid rgba(68, 73, 82, 0.08);
}

.order_confirm_cart_item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(68, 73, 82, 0.08);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.order_confirm_cart_img {
  width: 56px;
  flex-shrink: 0;
  margin: 0;
}

.order_confirm_cart_img img {
  width: 100%;
  height: auto;
  display: block;
}

.order_confirm_cart_text {
  min-width: 0;
  flex: 1;
}

.order_confirm_cart_name {
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.06em;
}

.order_confirm_cart_meta {
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--c_label_dark);
}

/* =====================
  common_confirm
===================== */

.confirm_wrap {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

.confirm_intro {
  margin-bottom: 40px;
}

.confirm_note {
  font-size: 14px;
  line-height: 1.8;
  text-align: center;
  letter-spacing: 0.08em;
  color: var(--c_note_dark);
}

.confirm_block {
  border-top: 1px solid rgba(68, 73, 82, 0.12);
}

.confirm_table {
  width: 100%;
}

.confirm_table th,
.confirm_table td {
  padding: 20px 0;
  border-bottom: 1px solid rgba(68, 73, 82, 0.12);
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: left;
  vertical-align: top;
}

.confirm_table th {
  width: 210px;
  font-weight: 500;
}

.confirm_table td {
  color: var(--c_label_dark);
}

.confirm_action {
  margin-top: 50px;
  text-align: center;
}

.confirm_back {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.confirm_back a {
  color: var(--c_blue);
  text-decoration: underline;
}

/* ========================================
  page_login
======================================== */

/* =====================
  login_main
===================== */

.login_layout {
  align-items: stretch;
  justify-content: center;
  gap: 0 100px;
}

.login_box,
.signup_box {
  width: 45%;
  max-width: 450px;
}

.login_panel,
.signup_panel {
  min-height: 100%;
}

.login_panel_text,
.signup_text {
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 0.08em;
  color: var(--c_label_dark);
  text-align: center;
}

.login_panel_text {
  margin-bottom: 34px;
}

.login_panel .form_row {
  grid-template-columns: 110px 1fr;
  gap: 20px;
}

.login_panel .form_row + .form_row {
  margin-top: 20px;
}

.login_check {
  margin-top: 20px;
  padding-left: 130px;
}

.login_btn,
.signup_btn {
  margin-top: 34px;
}

.login_btn a,
.login_btn input,
.signup_btn a {
  max-width: 100%;
}

.login_link {
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: center;
}

.login_link a {
  text-decoration: underline;
  color: var(--c_blue);
}

.signup_text {
  margin-bottom: 28px;
}

.signup_list {
  display: grid;
  gap: 12px;
}

.signup_list li {
  min-height: 54px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(68, 73, 82, 0.1);
  border-radius: 0 20px 0 20px;
  display: flex;
  align-items: center;
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.08em;
}

.signup_note {
  margin: 14px 0 0;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--c_note_dark);
}

/* ========================================
  page_password_new
======================================== */

/* =====================
  password_new
===================== */

.password_new_wrap {
  max-width: 760px;
}

.password_new_intro {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.password_new_lead {
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 0.08em;
  color: var(--c_label_dark);
  text-align: center;
}

#password_new .form_list .form_row {
  grid-template-columns: 190px 1fr;
  gap: 20px;
}

.password_new_submit a {
  max-width: 420px;
}

.password_new_back {
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: center;
}

.password_new_back a {
  color: var(--c_blue);
  text-decoration: underline;
}

  /* ========================================
    page_customer
  ======================================== */

  /* =====================
    customer_main
  ===================== */

  .customer_layout {
    justify-content: space-between;
    flex-direction: row-reverse;
  }

  .customer_nav {
    width: 290px;
    flex-shrink: 0;
    text-align: center;
    padding: 28px 26px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%), #eef2f4;
  }

  .customer_nav_block {
    padding: 25px 0 30px;
    border-bottom: 1px solid rgba(68, 73, 82, 0.12);
    text-align: left;
  }

  .customer_nav_block:first-of-type {
    padding-top: 0;
  }

  .customer_nav_ttl {
    font-family: var(--font_mincho);
    font-size: 18px;
    line-height: 1.7;
  }

  .customer_nav_ttl a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .customer_nav_ttl img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    object-fit: contain;
    object-position: center;
  }

  .customer_nav_list {
    margin-top: 14px;
    padding-left: 26px;
    gap: 10px;
  }

  .customer_nav_list li {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: var(--c_label_dark);
    margin-bottom: 12px;
  }

  .customer_nav_list li:last-child {
    margin-bottom: 0;
  }

  .customer_nav .btn._logout {
    margin-top: 25px;
  }

  .customer_body {
    width: calc(100% - 290px - 80px);
    min-height: 540px;
  }

  .customer_name {
    font-size: 16px;
    line-height: 2;
    letter-spacing: 0.08em;
    margin-bottom: 36px;
  }

  .customer_block + .customer_block {
    margin-top: 80px;
  }

  .customer_block_ttl {
    margin-bottom: 18px;
    font-size: 20px;
  }

  .customer_intro {
    margin-bottom: 80px;
  }

  .customer_coupon_block {
    margin-top: 42px;
  }

  .customer_stage_card,
  .customer_coupon_card {
    padding: 22px 22px 24px;
    border: 1px solid rgba(68, 73, 82, 0.12);
    background: #fff;
  }

  .customer_coupon_card + .customer_coupon_card {
    margin-top: 14px;
  }

  .customer_stage_card {
    padding-bottom: 22px;
  }

  /* 会員ステージ名の色切り替え
    is_blue / is_silver / is_gold / is_premium
    HTML側の customer_stage_card と customer_stage_tier に同じclassを付けて使用
  */
  .customer_stage_tier.is_blue {
    color: #3143ae;
  }

  .customer_stage_tier.is_silver {
    color: #7f8794;
  }

  .customer_stage_tier.is_gold {
    color: #b58a34;
  }

  .customer_stage_tier.is_premium {
    color: #7751a9;
  }

  .customer_stage_head {
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }

  .customer_stage_current,
  .customer_stage_next {
    min-width: 0;
  }

  .customer_stage_label,
  .customer_stage_next_label {
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: var(--c_note_dark);
  }

  .customer_stage_name_text {
    margin-top: 6px;
    font-family: var(--font_mincho);
    font-size: 26px;
    line-height: 1.35;
    letter-spacing: 0.04em;
  }

  .customer_stage_tier {
    display: inline;
    margin-right: 0;
    font-size: 32px;
    line-height: inherit;
    letter-spacing: 0.08em;
  }

  .customer_stage_rate {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }

  .customer_stage_next {
    text-align: right;
  }

  .customer_stage_next_value {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: var(--c_base);
  }

  .customer_stage_detail {
    margin-top: 22px;
    border: 0;
  }

  .customer_stage_detail summary {
    list-style: none;
  }

  .customer_stage_detail summary::-webkit-details-marker {
    display: none;
  }

  .customer_stage_summary {
    padding: 15px 56px 15px 18px;
    position: relative;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    background: #eef2f4;
  }

  .customer_stage_summary:before,
  .customer_stage_summary:after {
    content: "";
    position: absolute;
    top: 50%;
    transition: transform .25s ease, opacity .25s ease;
    z-index: 2;
  }

  .customer_stage_summary:before {
    width: 24px;
    height: 24px;
    right: 16px;
    margin-top: -12px;
    border-radius: 50%;
    background: var(--c_base);
  }

  .customer_stage_summary:after {
    right: 23px;
    width: 10px;
    height: 10px;
    margin-top: -5px;
    background:
      linear-gradient(#fff, #fff) center / 10px 1px no-repeat,
      linear-gradient(#fff, #fff) center / 1px 10px no-repeat;
  }

  .customer_stage_detail[open] .customer_stage_summary:after {
    background: linear-gradient(#fff, #fff) center / 10px 1px no-repeat;
  }

  .customer_stage_detail_body {
    margin-top: 14px;
    padding: 5px 10px;
    background: none;
  }

  .customer_stage_detail_body > p,
  .customer_stage_detail_list li p {
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 0.08em;
  }

  .customer_stage_detail_body > p + p {
    margin-top: 10px;
  }

  .customer_stage_detail_list {
    list-style: none;
    padding-left: 0;
    margin: 18px 0;
  }

  .customer_stage_detail_item {
    padding: 14px 0 12px;
    border-top: 1px solid rgba(68, 73, 82, 0.12);
  }

  .customer_stage_detail_item:last-child {
    border-bottom: 1px solid rgba(68, 73, 82, 0.12);
  }

  .customer_stage_detail_name {
    margin-bottom: 6px;
    font-family: var(--font_mincho);
    font-size: 17px;
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: var(--c_base);
  }

  .customer_stage_detail_tier.is_blue {
    color: #3143ae;
  }

  .customer_stage_detail_tier.is_silver {
    color: #7f8794;
  }

  .customer_stage_detail_tier.is_gold {
    color: #b58a34;
  }

  .customer_stage_detail_tier.is_premium {
    color: #7751a9;
  }

  .customer_coupon_head {
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
  }

  .customer_coupon_discount {
    font-family: var(--font_mincho);
    font-size: 24px;
    line-height: 1.4;
    letter-spacing: 0.04em;
  }

  .customer_coupon_expiration {
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: var(--c_note_dark);
    text-align: right;
  }

  .customer_coupon_desc {
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }

  .customer_coupon_foot {
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-top: 16px;
    padding: 16px 18px;
    background: #eef2f4;
  }

  .customer_coupon_code_label {
    display: block;
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: var(--c_note_dark);
  }

  .customer_coupon_code_value {
    display: block;
    margin-top: 2px;
    font-family: var(--font_mincho);
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.04em;
  }

  .customer_coupon_copy a {
  min-width: 92px;
}

  .p-mypage__coupon-modal {
    border: 1px solid rgba(68, 73, 82, 0.12);
    background: #fff;
  }

  .p-mypage__coupon-modal .c-modal__content {
    padding: 38px 32px 18px;
    text-align: center;
  }

  .p-mypage__coupon-modal .customer_coupon_modal_message {
    font-family: inherit;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }

  .p-mypage__coupon-modal .js-coupon__code {
    margin-top: 10px;
    color: var(--c_base);
    word-break: break-all;
    font-family: var(--font_mincho);
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0.04em;
  }

  .p-mypage__coupon-modal .c-modal__control {
    padding: 0 32px 32px;
    justify-content: center;
  }

  .customer_coupon_modal_button {
    max-width: 220px;
  }

  .customer_coupon_modal_button button {
    max-width: 220px;
    min-height: 52px;
    border-radius: 0 20px 0 20px;
  }

.order_coupon_row {
  align-items: start;
}

.order_coupon_list {
  display: grid;
  gap: 14px;
}

.order_coupon_list .coupon_box {
  display: block;
  margin: 0;
  border-radius: 0;
}

.order_coupon_card .coupon_name {
  padding: 0;
  white-space: normal;
  overflow: visible;
  text-overflow: clip;
}

.order_coupon_head {
  display: flex;
}

.order_coupon_foot {
  align-items: center;
}

.order_coupon_code {
  min-width: 0;
}

.order_coupon_apply {
  flex-shrink: 0;
}

.order_coupon_apply.common_button._small button {
  width: auto;
  max-width: none;
  min-width: 112px;
  min-height: 34px;
  padding: 0 18px;
  border-radius: 0 18px 0 18px;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.order_coupon_apply .btn_apply_coupon {
  margin-left: 0;
  background: var(--c_blue);
  color: var(--c_text);
}

.order_coupon_apply.common_button._small button:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(11, 22, 92, 0.15),
    rgba(11, 22, 92, 0)
  );
  transition: width .45s cubic-bezier(.22,1,.36,1);
  z-index: 0;
  pointer-events: none;
}

.order_coupon_empty {
  margin: 0;
  padding: 20px 22px;
  border: 1px solid rgba(68, 73, 82, 0.12);
  background: #fff;
}

.customer_history_item {
  padding: 18px 18px 20px;
  border: 1px solid rgba(68, 73, 82, 0.12);
    margin-top: 14px;
  }

  .customer_history_head {
    align-items: flex-start;
    justify-content: space-between;
  }

  .customer_history_meta {
    display: block;
  }

  .customer_history_id,
  .customer_history_date {
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }

  .customer_history_id {
    font-family: var(--font_mincho);
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0.04em;
  }

  .customer_history_date {
    margin-top: 2px;
    color: var(--c_note_dark);
  }

  .customer_history_status {
    justify-content: flex-end;
    gap: 8px;
    margin-left: 20px;
    flex-wrap: wrap;
  }

  .customer_history_payment,
  .customer_history_shipping {
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1.7;
    letter-spacing: 0.08em;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%),
    #eef2f4;
  }

  .customer_history_body {
    padding: 16px 0 0;
  }

  .customer_history_product {
    align-items: flex-start;
    gap: 16px;
  }

  .customer_history_img {
    width: 68px;
    flex-shrink: 0;
  }

  .customer_history_img a {
    display: block;
  }

  .customer_history_img img {
    width: 100%;
    height: auto;
    display: block;
  }

  .customer_history_text {
    flex: 1;
    min-width: 0;
  }

  .customer_history_name {
    font-size: 14px;
    line-height: 1.9;
    letter-spacing: 0.08em;
  }

  .customer_history_foot {
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 5px;
  }

  .customer_history_total {
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: var(--c_note_dark);
    white-space: nowrap;
  }

  .customer_subscription {
    padding: 18px 18px 20px;
    border: 1px solid rgba(68, 73, 82, 0.12);
    margin-top: 14px;
  }

  .customer_subscription_head {
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
  }

  .customer_subscription_label {
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: var(--c_note_dark);
  }

  .customer_subscription_date {
    margin-top: 6px;
    font-family: var(--font_mincho);
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0.04em;
  }

  .customer_subscription_text {
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: var(--c_note_dark);
  }

  .customer_empty {
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.08em;
    color: var(--c_note_dark);
  }

  /* ========================================
    page_customer_edit
  ======================================== */

  /* =====================
    customer_edit
  ===================== */

  .customer_edit_form {
    max-width: none;
  }

  .customer_edit_form .form_intro {
    margin-bottom: 18px;
  }

  .customer_edit_form.form_wrap .form_section:first-of-type {
    margin-top: 0;
  }

  .customer_edit_form .form_section,
  .customer_edit_form.form_wrap .form_section:last-of-type {
    padding: 0;
    border: 0;
  }

  .customer_edit_form .form_birth {
    align-items: center;
  }

  .customer_edit_birth_unit {
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.08em;
  }

  .customer_edit_subs {
    margin: 34px 0;
  }

  .customer_edit_subs_ttl {
    margin: 0 0 16px;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }

  .customer_edit_subs_all {
    margin-bottom: 16px;
  }

  .customer_edit_subs_all .check_label,
  .customer_edit_table .check_label {
    align-items: center;
  }

  .customer_edit_table_note {
    margin-top: 8px;
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: var(--c_note_dark);
    text-align: right;
  }

  .customer_edit_table_wrap {
    width: 100%;
    overflow-x: auto;
    border: 1px solid rgba(68, 73, 82, 0.12);
    position: relative;
    background: #fff;
  }

  .customer_edit_table {
    width: 100%;
    min-width: 0;
    table-layout: fixed;
  }

  .customer_edit_table th,
  .customer_edit_table td {
    padding: 11px 8px;
    border-top: 1px solid rgba(68, 73, 82, 0.08);
    vertical-align: top;
    font-size: 12px;
    line-height: 1.65;
    letter-spacing: 0.04em;
    text-align: left;
    word-break: break-word;
  }

  .customer_edit_table td {
    line-height: 1.8;
    white-space: nowrap;
  }

  .customer_edit_table thead th {
    border-top: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%), #eef2f4;
    font-size: 12px;
    color: var(--c_note_dark);
    font-weight: 500;
    white-space: nowrap;
  }

  .customer_edit_table th:first-child,
  .customer_edit_table td:first-child {
    padding-right: 0;
    padding-left: 12px;
  }

  .customer_edit_table td:nth-child(5),
  .customer_edit_table td:nth-child(7) {
    white-space: normal;
  }

  .customer_edit_table a {
    text-decoration: underline;
  }

  .customer_edit_form .form_submit {
    margin-top: 44px;
  }

  .customer_edit_form .form_submit a {
    max-width: 150px;
    min-height: 54px;
  }

  /* ========================================
    page_customer_orders_shipping_address
  ======================================== */

  /* =====================
    customer_orders_shipping_address
  ===================== */

  .customer_orders_shipping_form {
    max-width: none;
  }

  .customer_orders_shipping_label {
    font-size: 10px;
    line-height: 1.8;
    letter-spacing: 0.12em;
    color: var(--c_note_dark);
  }

  .customer_orders_shipping_form .customer_edit_ttl {
    font-family: var(--font_mincho);
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0.04em;
    margin-bottom: 40px;
  }

  .customer_orders_shipping_lead {
    margin-bottom: 10px;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }

  .customer_orders_shipping_cancel {
    margin-top: 14px;
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .customer_orders_shipping_cancel a {
    text-decoration: underline;
  }

  /* ========================================
    page_customer_subs_orders_shipping_address_edit
  ======================================== */

  /* =====================
    customer_subs_orders_shipping_address_edit
  ===================== */

  .customer_subs_shipping_form {
    max-width: none;
  }

  .customer_subs_shipping_form .customer_edit_ttl {
    font-family: var(--font_mincho);
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0.04em;
    margin-bottom: 40px;
  }

  .customer_subs_shipping_lead {
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }

  .customer_subs_shipping_copy {
    margin-bottom: 30px;
  }

  .customer_subs_shipping_copy .form_field {
    max-width: 520px;
  }

  .customer_subs_shipping_copy_btn.common_button._small {
    margin-top: 12px;
    text-align: left;
  }

  .customer_subs_shipping_copy_btn a {
    max-width: 136px;
    min-height: 42px;
  }

  .customer_subs_shipping_copy + .form_required_note {
    margin-top: 22px;
  }

  .customer_subs_shipping_cancel {
    margin-top: 14px;
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .customer_subs_shipping_cancel a {
    text-decoration: underline;
  }

  /* ========================================
    page_customer_shipping_addresses
  ======================================== */

  /* =====================
    customer_shipping_addresses
  ===================== */

  .customer_shipping_wrap .customer_edit_ttl {
    font-family: var(--font_mincho);
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0.04em;
    margin-bottom: 22px;
  }

  .customer_shipping_lead {
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }

  .customer_shipping_add {
    margin: 32px 0 28px;
    text-align: left;
  }

  .customer_shipping_add a {
    max-width: 200px;
    min-height: 54px;
  }

  .customer_shipping_table {
    min-width: 0;
    table-layout: auto;
  }

  .customer_shipping_table th,
  .customer_shipping_table td {
    padding-right: 6px;
    padding-left: 6px;
  }

  .customer_shipping_table td:nth-child(4) {
    white-space: normal;
  }

  .customer_shipping_table td:nth-child(1),
  .customer_shipping_table td:nth-child(2),
  .customer_shipping_table td:nth-child(3),
  .customer_shipping_table td:nth-child(5),
  .customer_shipping_table td:nth-child(6),
  .customer_shipping_table td:nth-child(7) {
    white-space: nowrap;
  }

  .customer_shipping_action {
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    text-decoration: underline;
  }

  .customer_shipping_action._delete:before {
    content: "× ";
  }

  /* ========================================
    page_customer_shipping_addresses_new
  ======================================== */

  /* =====================
    customer_shipping_addresses_new
  ===================== */

  .customer_shipping_new_form {
    max-width: none;
  }

  .customer_shipping_new_lead {
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }

  .customer_shipping_new_copy {
    margin: 0 0 28px;
    text-align: left;
  }

  .customer_shipping_new_copy a {
    max-width: 170px;
    min-height: 42px;
  }

  .customer_shipping_new_copy + .form_required_note {
    margin-top: 30px;
  }

  .customer_shipping_new_cancel {
    margin-top: 14px;
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .customer_shipping_new_cancel a {
    text-decoration: underline;
  }

  /* ========================================
    page_customer_cards
  ======================================== */

  /* =====================
    customer_cards
  ===================== */

  .customer_cards_lead,
  .customer_cards_note {
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }

  .customer_cards_note {
    margin-top: 8px;
  }

  .customer_cards_note a {
    text-decoration: underline;
  }

  .customer_cards_add {
    margin: 28px 0 28px;
    text-align: left;
  }

  .customer_cards_add a,
  .customer_cards_add .p-payment_list__add__btn {
    max-width: 256px;
    min-height: 60px;
  }

  .customer_cards_add .p-payment_list__add__btn {
    padding: 0 24px;
    border: 0;
    background: var(--c_blue);
    color: var(--c_text);
    border-radius: 0 24px 0 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    line-height: 1.6;
    letter-spacing: 0.12em;
    position: relative;
    overflow: hidden;
    transition: .45s;
    font-family: inherit;
    cursor: pointer;
    appearance: none;
    opacity: 1;
  }

  .customer_cards_add .p-payment_list__add__btn:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(11, 22, 92, 0.15),
      rgba(11, 22, 92, 0)
    );
    transition: width .45s cubic-bezier(.22,1,.36,1);
    z-index: 0;
    pointer-events: none;
  }

  .customer_cards_add .p-payment_list__add__btn span {
    position: relative;
    z-index: 1;
  }

  .customer_cards_add .p-payment_list__add__btn:hover {
    border-radius: 0;
    opacity: 1;
  }

  .customer_cards_add .p-payment_list__add__btn:hover:after {
    width: 100%;
  }

  .customer_cards_table {
    min-width: 0;
    table-layout: auto;
  }

  .customer_cards_table th,
  .customer_cards_table td {
    padding-right: 6px;
    padding-left: 6px;
  }

  .customer_cards_table td:nth-child(1),
  .customer_cards_table td:nth-child(2),
  .customer_cards_table td:nth-child(3),
  .customer_cards_table td:nth-child(4),
  .customer_cards_table td:nth-child(5),
  .customer_cards_table td:nth-child(6),
  .customer_cards_table td:nth-child(7) {
    white-space: nowrap;
  }

  .customer_cards_default {
    text-align: center;
  }

  /* ========================================
    page_customer_points
  ======================================== */

  /* =====================
    customer_points
  ===================== */

  .customer_points_wrap {
    max-width: none;
  }

  .customer_points_subttl {
    margin: 34px 0 18px;
  }

  .customer_points_table {
    min-width: 0;
    table-layout: auto;
  }

  .customer_points_table th,
  .customer_points_table td {
    padding-right: 12px;
    padding-left: 12px;
  }

  .customer_points_table th,
  .customer_points_table td {
    white-space: nowrap;
  }

  .customer_points_add {
    margin-top: 42px;
    text-align: left;
  }

  /* ========================================
    page_customer_subs_order
  ======================================== */

  /* =====================
    customer_subs_order
  ===================== */

  .customer_subs_table {
    min-width: 0;
    table-layout: auto;
  }

  .customer_subs_table th,
  .customer_subs_table td {
    padding-right: 8px;
    padding-left: 8px;
  }

  .customer_subs_table td:nth-child(1),
  .customer_subs_table td:nth-child(2),
  .customer_subs_table td:nth-child(4),
  .customer_subs_table td:nth-child(5),
  .customer_subs_table td:nth-child(6),
  .customer_subs_table td:nth-child(7) {
    white-space: nowrap;
  }

  .customer_subs_table td:nth-child(3) {
    white-space: normal;
  }

  .customer_subs_product {
    align-items: flex-start;
    gap: 12px;
    min-width: 0;
  }

  .customer_subs_product .customer_history_img {
    width: 54px;
  }

  .customer_subs_product_text {
    min-width: 0;
  }

  .customer_subs_product_name {
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }

  .customer_subs_product_meta {
    margin-top: 4px;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: var(--c_note_dark);
  }

  .customer_subs_more {
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .customer_subs_more a {
    text-decoration: underline;
  }

  /* ========================================
    page_customer_subs_orders
  ======================================== */

  /* =====================
    customer_subs_orders
  ===================== */

  .customer_subs_detail_head {
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
  }

  .customer_subs_detail_head .customer_block_ttl {
    margin-bottom: 0;
  }

  .customer_subs_detail .customer_order_items .customer_block_ttl {
    margin-bottom: 18px;
  }

  .customer_subs_detail_btn {
    width: auto;
    margin: 0;
    text-align: right;
  }

  .customer_subs_detail_btn a {
    min-width: 104px;
  }

  /* ========================================
    page_customer_subs_orders_edit
  ======================================== */

  /* =====================
    customer_subs_orders_edit
  ===================== */

  .customer_subs_orders_edit {
    max-width: none;
  }

  .customer_subs_orders_edit .customer_edit_ttl {
    margin-bottom: 12px;
    font-size: 22px;
  }

  .customer_subs_orders_edit_lead {
    margin-bottom: 38px;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }

  .customer_subs_orders_edit_group + .customer_subs_orders_edit_group {
    margin-top: 56px;
  }

  .customer_subs_orders_edit_block {
    padding-top: 34px;
    border-top: 1px solid rgba(68, 73, 82, 0.12);
  }

  .customer_subs_orders_edit_block + .customer_subs_orders_edit_block {
    margin-top: 40px;
  }

  .customer_subs_orders_edit_block_ttl {
    margin-bottom: 14px;
  }

  .customer_subs_orders_edit_block_lead {
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.9;
    letter-spacing: 0.08em;
  }

  .customer_subs_orders_edit_block .form_intro {
    margin-bottom: 18px;
  }

  .customer_subs_orders_edit_block .form_section {
    padding: 0;
    border: 0;
  }

  .customer_subs_orders_edit.customer_edit_form.form_wrap .customer_subs_orders_edit_block .form_section:last-of-type {
    border: 0;
  }

  .customer_subs_orders_edit_block .form_field {
    max-width: 520px;
  }

  .customer_subs_orders_edit_cycle {
    align-items: center;
    gap: 10px;
  }

  .customer_subs_orders_edit_link {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }

  .customer_subs_orders_edit_link a {
    text-decoration: underline;
  }

  .customer_subs_orders_edit_notes {
    padding-top: 4px;
  }

  .customer_subs_orders_edit_note {
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: var(--c_note_dark);
  }

  .customer_subs_orders_edit_note + .customer_subs_orders_edit_note {
    margin-top: 4px;
  }

  .customer_subs_orders_edit_block .form_submit {
    margin-top: 34px;
  }

  .customer_subs_orders_edit_block .form_submit a {
    max-width: 150px;
    min-height: 54px;
  }

  #skip-next-delivery-view.customer_subs_orders_edit_block .form_submit a {
    max-width: 256px;
  }

  .customer_subs_orders_edit_cancel {
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .customer_subs_orders_edit_cancel._single {
    margin-top: 24px;
  }

  .customer_subs_orders_edit_cancel a {
    text-decoration: underline;
  }

  /* ========================================
    page_customer_cards_edit
  ======================================== */

  /* =====================
    customer_cards_edit
  ===================== */

  .customer_cards_edit_form {
    max-width: none;
  }

  .customer_cards_edit_lead {
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.08em;
  }

  .customer_cards_edit_form .form_field {
    max-width: 520px;
  }

  .customer_cards_edit_expiry {
    gap: 10px;
  }

  .customer_cards_edit_note {
    margin-top: 12px;
    font-size: 11px;
    line-height: 1.9;
    letter-spacing: 0.08em;
  }

  .customer_cards_edit_image {
    width: 100%;
    margin-top: 16px;
  }

  .customer_cards_edit_image img {
    width: 100%;
    height: auto;
    display: block;
  }

  .customer_cards_edit_default .check_label {
    align-items: center;
  }

  .customer_cards_edit_cancel {
    margin-top: 14px;
    font-size: 11px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    text-align: center;
  }

  .customer_cards_edit_cancel a,
  .customer_cards_edit_cancel .customer_cards_edit_cancel_btn {
    text-decoration: underline;
  }

  .customer_cards_edit_cancel .customer_cards_edit_cancel_btn {
    margin-top: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    cursor: pointer;
    appearance: none;
  }

  /* ========================================
    page_password_edit
  ======================================== */

  /* =====================
    customer_password_edit
  ===================== */

  .customer_password_form {
    max-width: none;
  }

  .customer_password_form .customer_edit_ttl {
    margin-bottom: 34px;
  }

  .customer_password_form .form_section,
  .customer_password_form.form_wrap .form_section:first-of-type,
  .customer_password_form.form_wrap .form_section:last-of-type {
    margin-top: 0;
    padding: 0;
    border: 0;
  }

  .customer_password_form .form_field {
    max-width: 560px;
  }

  .customer_password_form .form_submit {
    margin-top: 44px;
  }

  .customer_password_form .form_submit a {
    max-width: 150px;
    min-height: 54px;
  }

  /* ========================================
    page_customer_favorites
  ======================================== */

  /* =====================
    customer_favorites
  ===================== */

  .customer_count {
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: var(--c_note_dark);
    text-align: right;
    margin-bottom: 30px;
  }

  /* ========================================
    page_customer_orders
  ======================================== */

  /* =====================
    customer_orders
  ===================== */

  .customer_orders_result {
    margin-top: 28px;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.08em;
    color: var(--c_note_dark);
    text-align: center;
  }

  /* ========================================
    page_customer_orders_detail
  ======================================== */

  /* =====================
    customer_orders_detail
  ===================== */

  .customer_order_detail {
    max-width: none;
  }

  .customer_order_detail .customer_edit_ttl {
    margin-bottom: 34px;
    font-size: 22px;
  }

  .customer_order_block + .customer_order_block {
    margin-top: 46px;
  }

  .customer_order_summary {
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
  }

  .customer_order_items {
    width: calc(100% - 320px - 32px);
  }

  .customer_order_item {
    padding: 20px 0;
    border-top: 1px solid rgba(68, 73, 82, 0.12);
  }

  .customer_order_item:last-of-type {
    border-bottom: 1px solid rgba(68, 73, 82, 0.12);
  }

  .customer_order_total {
    width: 320px;
    flex-shrink: 0;
  }

  .customer_order_table {
    min-width: 0;
    table-layout: auto;
  }

  .customer_order_table thead th,
  .customer_order_table td {
    white-space: normal;
  }

  .customer_order_table th,
  .customer_order_table td {
    padding-right: 6px;
    padding-left: 6px;
  }

  .customer_order_table td:nth-child(2),
  .customer_order_table td:nth-child(4),
  .customer_order_table td:nth-child(8) {
    white-space: normal;
  }

  .customer_order_address_table {
    min-width: 0;
  }

  .customer_order_address_table td:nth-child(4) {
    white-space: normal;
  }

  .common_button.customer_order_back {
    margin-top: 36px;
    text-align: center;
  }

  .common_button.customer_subs_stop {
    margin-top: 36px;
    text-align: center;
  }

  .customer_subs_stop + .common_button.customer_order_back {
    margin-top: 16px;
  }

  #page_customer_favorites .products_list {
    justify-content: flex-start;
    gap: 30px 24px;
  }

  #page_customer_favorites .products_list::before,
  #page_customer_favorites .products_list::after {
    display: none;
  }

  #page_customer_favorites .products_item {
    width: calc((100% - 48px) / 3);
    max-width: none;
  }

  #page_customer_favorites .products_text {
    padding-top: 10px;
  }

  #page_customer_favorites .products_name {
    font-size: 16px;
  }

/* ========================================
  page_category
======================================== */

/* =====================
  fv
===================== */

.category_count {
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: right;
}

/* =====================
  category_main
===================== */

#category_main {
  padding-top: 50px;
}

.products_list {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 34px;
}

.products_list::before,
.products_list::after {
  content: '';
  width: calc((100% - 102px) / 4);
  max-width: 295px;
}

.products_list::before {
  order: 1;
}

.products_item {
  width: calc((100% - 102px) / 4);
  max-width: 295px;
}

.products_item a {
  display: block;
  padding: 24px;
  border-radius: 0 40px 0 40px;
  transition: background-color .35s ease, box-shadow .35s ease, transform .35s ease;
}

.products_img {
  margin: 0;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.products_img img {
  height: 100%;
  object-fit: contain;
}

.products_text {
  padding-top: 18px;
}

.products_cat {
  margin-bottom: 8px;
}

.products_name {
  margin: 0 0 10px;
  font-family: var(--font_mincho);
  font-size: 18px;
  line-height: 1.8;
}

.products_price {
  font-size: 16px;
  line-height: 1.8;
}

.products_price .product_tax {
  font-size: 11px;
}

.products_price .product_type {
  font-size: 11px;
  display: inline-block;
}

.products_desc {
  margin-top: 12px;
  font-size: 12px;
  line-height: 2;
}

/* ========================================
  page_cart
======================================== */

/* =====================
  fv
===================== */

.page_notice,
.cart_notice {
  width: 100vw;
  margin: 0 calc( 50% - 50vw );
  padding: 20px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%),
    #eef2f4;
  text-align: center;
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.12em;
  margin-bottom: 40px;
}

#page_cart #fv .btn._back {
  margin-top: 20px;
}

/* =====================
  cart_main
===================== */

.cart_layout {
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}

.cart_items {
  width: calc(100% - 290px - 80px);
}

.cart_item {
  padding: 30px 0;
  border-bottom: 1px solid rgba(68, 73, 82, 0.12);
  position: relative;
}

.cart_item:first-of-type {
  border-top: 1px solid rgba(68, 73, 82, 0.12);
}

.cart_remove {
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  position: absolute;
  top: 20px;
  right: 0;
}

.cart_item_inner {
  align-items: center;
}

.cart_item_img {
  flex-shrink: 0;
}

.cart_item_img a {
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart_item_img img {
  height: 100%;
  object-fit: contain;
}

.cart_item_body {
  width: calc(100% - 130px - 120px);
  padding: 0 20px;
}

.cart_item_name {
  margin: 0;
  font-family: var(--font_mincho);
  font-size: 18px;
  line-height: 1.7;
}

.cart_item_meta {
  margin-top: 5px;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.cart_item_tools {
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}

.cart_qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(68, 73, 82, 0.18);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
}

.cart_qty_btn,
.cart_qty_input {
  width: 32px;
  height: 32px;
  border: 0;
  background: transparent;
  text-align: center;
  color: var(--c_base);
  font-size: 14px;
}

.cart_qty_btn {
  cursor: pointer;
}

.cart_qty_input {
  border-left: 1px solid rgba(68, 73, 82, 0.14);
  border-right: 1px solid rgba(68, 73, 82, 0.14);
}

.cart_update_btn {
  min-width: 40px;
  height: 32px;
  padding: 0 16px;
  border: 0;
  background: var(--c_base);
  color: var(--c_text);
  font-size: 11px;
  line-height: 1;
  letter-spacing: 0.12em;
  cursor: pointer;
  border-radius: 4px;
}

.cart_item_price {
  width: 120px;
  margin: 0;
  text-align: right;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

.cart_empty {
  padding: 60px 0;
  text-align: center;
}

.cart_empty .copy_heading {
  font-size: 18px;
  line-height: 1.6;
}

.cart_empty_text {
  margin: 12px 0 28px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.cart_empty.is_hide {
  display: none;
}

.cart_side {
  width: 290px;
}

.cart_side_conts {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(68, 73, 82, 0.12);
}

.cart_side_conts:first-of-type {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}

.cart_summary {
  padding: 28px 26px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%),
    #eef2f4;
}

.cart_sub_link {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: center;
}

.cart_sub_link a {
  text-decoration: underline;
  color: var(--c_blue);
}

.cart_side_ttl {
  margin: 0 0 15px;
  font-family: var(--font_mincho);
  font-size: 20px;
  line-height: 1.7;
  text-align: center;
}

.cart_login_form {
  margin-bottom: 15px;
}

.cart_login_form .form_row + .form_row {
  margin-top: 8px;
}

.cart_login_form .form_error_text {
  margin-top: 6px;
}

.cart_summary_list {
  border-top: 1px solid rgba(68, 73, 82, 0.08);
  padding: 15px 0;
}

.cart_summary_row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 5px;
}

.cart_summary_row:last-of-type {
  margin-bottom: 0;
}

.cart_summary_row dd {
  font-size: 14px;
}

.cart_summary_row._total {
  border-top: 1px solid rgba(68, 73, 82, 0.08);
  margin-top: 15px;
  padding: 10px 0;
  color: var(--c_base);
  font-size: 17px;
}

.cart_summary_row._total dd {
  font-size: 24px;
}

.cart_summary_row._point {
  align-items: center;
  line-height: 1;
}

.cart_summary_row._point dt,
.cart_summary_row._point dd {
  font-size: 12px;
}

.postage {
  font-size: 12px;
  line-height: 1.7;
  margin-top: 15px;
}

/* ========================================
  page_products
======================================== */

/* =====================
  fv
===================== */

#page_products #fv {
  position: relative;
  z-index: 0;
  background: transparent;
  overflow: hidden;
  color: var(--c_text);
  padding-bottom: 120px;
}

.product_bg {
  width: 110%;
  height: 110%;
  position: fixed;
  top: -5%;
  left: -5%;
  margin: 0;
  pointer-events: none;
  z-index: -1;
}

#page_products #fv > .inner {
  position: relative;
  z-index: 1;
}

.product_bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: blur(8px) saturate(0.9) brightness(0.6);
}

.product_breadcrumb {
  display: flex;
  gap: 0 22px;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
  white-space: nowrap;
  overflow-x: auto;
}

.product_breadcrumb li {
  position: relative;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--c_text);
}

.product_breadcrumb li + li:before {
  content: "";
  width: 5px;
  height: 5px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: absolute;
  top: 8px;
  left: -14px;
  opacity: .5;
  transform: rotate(45deg);
}

.product_intro {
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
  position: relative;
  z-index: 2;
}

.product_gallery {
  width: 54%;
}

.product_main_img {
  margin: 0;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product_main_img img {
  height: 100%;
  object-fit: contain;
}
/*
.product_main_img.is_before_change_img img {
  width: 300px;
  height: auto;
  max-height: 100%;
  max-width: 60%;
  background: none;
  border-radius: 0;
}
*/
.product_thumb_wrap {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  align-items: center;
  gap: 14px;
}

.product_thumb_nav {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  position: relative;
  color: var(--c_text);
  cursor: pointer;
}

.product_thumb_nav:before {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
}

.product_thumb_nav._prev:before {
  transform: translate(-35%, -50%) rotate(-135deg);
}

.product_thumb_nav._next:before {
  transform: translate(-65%, -50%) rotate(45deg);
}

.product_thumb_list {
  min-width: 0;
  gap: 12px;
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 4px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.product_thumb_list::-webkit-scrollbar {
  display: none;
}

.product_thumb_list li {
  flex: 0 0 68px;
  width: 68px;
  height: 68px;
}

.product_thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  cursor: pointer;
  padding: 0;
}

.product_thumb img {
  height: 100%;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.66);
  transition: .45s;
}

.product_thumb_list li.is_current .product_thumb img {
  border-radius: 0 26.5% 0 26.5%;
}

.product_info {
  width: 39%;
  padding: 12px 0 0;
  text-align: left;
}

.product_meta {
  margin: 0 0 22px;
  gap: 10px;
}

.product_meta li a {
  min-height: 30px;
  padding: 7px 15px 8px;
  font-size: 11px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.product_name {
  margin: 0 0 25px;
  font-size: 30px;
  line-height: 1.6;
}

.product_size {
  margin: -12px 0 25px;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: rgba(243, 243, 241, 0.64);
}

.product_lead {
  margin: 0 0 28px;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.08em;
}

.product_lead .title {
  font-size: 1.2em;
  margin: 0 0 10px;
}

.product_review_line {
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.product_star {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.12em;
}

.product_star_icons {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.product_star_icons img {
  width: 25px;
  height: 25px;
  margin: 0 -2px;
}

.product_star_text {
  letter-spacing: 0.05em;
}

.product_review_link {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.product_review_link a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.product_review_link img {
  width: 27px;
  flex-shrink: 0;
  margin-top: 3px;
}

.product_review_link a {
  text-decoration: underline;
}

.product_share {
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px;
}

.product_fav {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.product_fav a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: underline;
}

.product_fav img {
  width: 30px;
  flex-shrink: 0;
  margin-top: 3px;
}

.product_fav .icon_on {
  display: none;
}

.product_fav a.is_active .icon_default {
  display: none;
}

.product_fav a.is_active .icon_on {
  display: block;
}

.product_share_list {
  gap: 12px;
  align-items: center;
}

.product_share_list li a {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity .3s ease, background-color .3s ease;
}

.product_share_list li a:hover {
  opacity: .6;
}

.product_option {
  margin-bottom: 30px;
}

.product_option_btn {
  width: 50%;
  height: 52px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  background: transparent;
  color: rgba(243, 243, 241, 0.56);
  font-size: 12px;
  letter-spacing: 0.12em;
  cursor: pointer;
}

.product_option_btn.is_current {
  color: var(--c_text);
  background: rgba(243, 243, 241, 0.12);
  border-color: rgba(243, 243, 241, 0.12);
}

.product_course {
  margin: 0 0 12px;
  font-family: var(--font_mincho);
  font-size: 16px;
  line-height: 1.8;
}

.product_price {
  margin: 0;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.product_price_unit {
  font-size: .62em;
  margin-left: 4px;
}

.product_price .product_tax {
  margin-left: 6px;
  font-size: 11px;
}

.product_badge {
  width: fit-content;
  margin: 16px 0 0;
  padding: 4px 8px;
  border: 1px solid #cc4338;
  color: #cc4338;
  font-size: 10px;
  line-height: 1;
  letter-spacing: 0.12em;
}

.product_badge.is_hide {
  display: none;
}

.product_quantity {
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
}

.product_label {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

.product_qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.product_qty_btn,
.product_qty_input {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  text-align: center;
  color: var(--c_text);
  font-size: 14px;
  cursor: pointer;
}

.product_qty_input {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.product_purchase .common_button {
  margin: 24px 0 0;
}

.product_purchase .common_button a {
  min-height: 70px;
  gap: 10px;
}

.product_purchase .common_button img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* =====================
  review
===================== */

#review {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%),
    #eef2f4;
}

.review_item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  padding: 34px 38px;
  background: rgba(255, 255, 255, 0.62);
  border-top: 0;
}

.review_item + .review_item {
  margin-top: 18px;
}

.review_item.is_hide {
  display: none;
}

.review_name {
  margin-top: 12px;
  font-family: var(--font_mincho);
  font-size: 16px;
  line-height: 1.7;
}

.review_date {
  margin-top: 10px;
  font-size: 11px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.review_title {
  margin-bottom: 14px;
  font-family: var(--font_mincho);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 500;
}

.review_text p {
  margin: 0;
  font-size: 13px;
  line-height: 2;
}

.review_more {
  margin-top: 56px;
  text-align: center;
}

/* =====================
  recommend
===================== */

#recommend {
  background: #fff;
}

/* ========================================
  page_products-2
======================================== */

/* =====================
  fv
===================== */

#page_products.products-2 #fv {
  color: var(--c_base);
}

.products-2 .product_bg {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.products-2 .product_bg img {
  filter: none;
}

.products-2 .product_bg::before {
  content: '';
  background-color: rgba(255, 255, 255, 0.2);
  inset: 0;
  position: absolute;
  z-index: 1;
}

.products-2 .product_breadcrumb li {
  color: var(--c_base);
}

.products-2 #fv .select_list li a {
  border-color: rgba(68, 73, 82, 0.18);
  color: var(--c_base);
}

.products-2 #fv .product_size {
  color: rgba(68, 73, 82, 0.74);
}

.products-2 .product_thumb_nav {
  border-color: rgba(68, 73, 82, 0.18);
  background: none;
  color: var(--c_base);
}

.products-2 .product_option_btn {
  border-bottom-color: rgba(68, 73, 82, 0.16);
  background: rgba(255, 255, 255, 0.28);
  color: rgba(68, 73, 82, 0.52);
}

.products-2 .product_option_btn.is_current {
  color: var(--c_base);
  background: rgba(68, 73, 82, 0.08);
  border-color: rgba(68, 73, 82, 0.08);
}

.products-2 .product_label {
  color: rgba(68, 73, 82, 0.74);
}

.products-2 .product_qty {
  border-color: rgba(68, 73, 82, 0.18);
  box-shadow: 0 10px 24px rgba(68, 73, 82, 0.08);
}

.products-2 .product_qty_btn,
.products-2 .product_qty_input {
  color: var(--c_base);
}

.products-2 .product_qty_input {
  border-left-color: rgba(68, 73, 82, 0.14);
  border-right-color: rgba(68, 73, 82, 0.14);
}

.products-2 .product_purchase .common_button a {
  box-shadow: 0 18px 32px rgba(68, 73, 82, 0.12);
}

/*-------------------------------------------*/
/*  PC
/*-------------------------------------------*/

@media screen and (min-width:900px) {

  /* =====================
    common
  ===================== */

  .pc_none {
    display: none !important;
  }

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

  /* =====================
    scrolldown
  ===================== */

  .scrolldown a:hover {
    transform: translateY(5px);
    opacity: .6;
  }

  /* =====================
    header
  ===================== */

  #header a:hover {
    opacity: .6;
  }

.header_menu_primary a:hover,
.header_menu_list a:hover {
  opacity: 1;
  color: var(--c_text);
}

.header_menu_banner:hover {
  opacity: 1;
  border-radius: 0;
}

.header_menu_banner:hover:after {
  width: 100%;
}

.header_menu_close:hover {
  opacity: .65;
}

  /* =====================
    btn
  ===================== */

  .btn:hover:before {
    transform: rotate(-55deg) translateX(12px);
    opacity: 0;
  }

  .btn a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(255,255,255,0.15),
      rgba(255,255,255,0)
    );
    transition: width .45s cubic-bezier(.22,1,.36,1);
    z-index: 0;
    pointer-events: none;
  }

  .btn a:hover {
    border-radius: 0;
  }

  .btn a:hover:after {
    width: 100%;
  }

  /* =====================
    chip_box
  ===================== */

  .chip_box:hover .chip_label {
    color: var(--c_base);
  }

  .chip_box:hover .chip_text {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* =====================
    common_button
  ===================== */
    
  .common_button a:hover {
    border-radius: 0;
  }

  .common_button a:hover:after {
    width: 100%;
  }

  /* =====================
    set
  ===================== */

  .set_item a:hover .set_img img {
    transform: translateY(-6px);
    opacity: .78;
  }

  .set_list {
    width: calc(100% + 84px);
    margin-left: -42px;
  }

  /* ========================================
    footer
  ======================================== */

  #footer a:hover {
    opacity: .6;
  }

  /* ========================================
    page_products
  ======================================== */

  .product_thumb:hover,
  .products_item a:hover {
    opacity: .7;
  }

  .product_cart_btn a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(11, 22, 92, 0.15),
      rgba(11, 22, 92, 0)
    );
    transition: width .45s cubic-bezier(.22,1,.36,1);
    z-index: 0;
    pointer-events: none;
  }

  .product_cart_btn a:hover {
    border-radius: 0;
  }

  .product_cart_btn a:hover:after {
    width: 100%;
  }

  .products_item a:hover {
    opacity: 1;
    box-shadow: 0 18px 40px rgba(68, 73, 82, 0.08);
    transform: translateY(-6px);
  }

  .product_thumb,
  .product_qty_btn {
    transition: .35s;
  }

  .product_option_btn {
    transition: background-color .15s ease, color .15s ease, border-color .15s ease;
  }

  .product_thumb_nav {
    transition: background-color .35s ease, border-color .35s ease, transform .35s ease;
  }

  .product_thumb_nav:hover {
    background: rgba(243, 243, 241, 0.14);  }

  /* =====================
    select
  ===================== */
  
  .select_list li a {
    transition: .45s;
    position: relative;
    overflow: hidden;
  }

  .select_list li a:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(
      90deg,
      rgba(255,255,255,0.15),
      rgba(255,255,255,0)
    );
    transition: width .45s cubic-bezier(.22,1,.36,1);
    z-index: 0;
    pointer-events: none;
  }

  .select_list li a:hover {
    border-radius: 0;
  }

  .select_list li a:hover:after {
    width: 100%;
  }

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

    /* ========================================
      PC調整用
    ======================================== */

    /* =====================
      page_cart
    ===================== */
    
    .cart_item_inner {
      flex-wrap: wrap;
    }

    .cart_item_body {
      width: calc( 100% - 130px );
    }

    .cart_item_price {
      width: 100%;
      text-align: right;
    }
    
    /* =====================
      category
    ===================== */
    
    .products_list::after {
      content: '';
      width: calc((100% - 102px) / 3);
    }

    .products_list::before {
      display: none;
    }

    .products_item {
      width: calc((100% - 102px) / 3);
      max-width: 295px;
    }

  }

}

/*-------------------------------------------*/
/*  900px - 1200px
/*-------------------------------------------*/

@media screen and (min-width:900px) and (max-width:1200px) {

  /* =====================
    customer_main
  ===================== */

  .customer_layout {
    display: block;
  }

  .customer_body {
    width: 100%;
    min-height: 0;
  }

  .customer_nav {
    width: 100%;
    max-width: 100%;
    margin: 56px 0 0;
  }

}

/*-------------------------------------------*/
/*  SP
/*-------------------------------------------*/

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

  /* =====================
    common
  ===================== */

  body {
    min-width: 100%;
    font-size: 14px;
    line-height: 1.8;
  }

  .inner {
    max-width: calc(100% - 32px);
  }

  .sp_none {
    display: none !important;
  }

  .contents {
    padding: 50px 0;
  }

  /* =====================
    wrapper
  ===================== */

  #wrapper {
    min-height: 100svh;
  }
  
  /* =====================
    scrolldown
  ===================== */

  .scrolldown {
    bottom: 50px;
  }

  .scrolldown::before {
    height: 35px;
    bottom: -50px;
  }

  .scrolldown span {
    font-size: 11px;
  }

  /* =====================
    header
  ===================== */

  #header .inner {
    padding: 52px 16px 0;
    align-items: flex-start;
  }

  #header.is_scrolled .inner {
    padding-top: 20px;
  }

  .site_logo a {
    width: 67px;
  }

  .header_tools {
    gap: 15px;
  }

  .tool_mypage,
  .tool_cart {
    width: 18px;
  }

  .tool_menu {
    width: 22px;
    padding-top: 2px;
  }

  .header_menu_panel {
    width: min(100%, 420px);
  }

  .header_menu_head {
    padding: 22px 16px 18px;
  }

  .section_label.header_menu_label {
    gap: 10px;
    margin: 0;
  }

  .header_menu_close {
    width: 38px;
    height: 38px;
  }

  .header_menu_scroll {
    padding: 0 16px 36px;
  }

  .header_menu_block + .header_menu_block {
    margin-top: 42px;
  }

  .header_menu_primary,
  .header_menu_list {
    padding: 0 17px;
  }

  .header_menu_list {
    margin-top: 14px;
  }

  .header_menu_subgroup + .header_menu_subgroup {
    margin-top: 28px;
  }

  .header_menu_groups {
    margin-top: 28px;
  }

  .header_menu_subhead {
    margin: 0 17px 10px;
  }

  .header_menu_subhead span {
    min-height: 26px;
    padding: 4px 12px 4px;
    border-radius: 0 10px 0 10px;
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .header_menu_primary a,
  .header_menu_list a {
    padding: 10px 0;
    font-size: 13px;
  }

  .header_menu_products {
    display: block;
    margin-top: 0;
  }

  .header_menu_column {
    width: 100%;
  }

  .header_menu_column + .header_menu_column {
    margin-top: 42px;
  }

  .header_menu_banner {
    margin: 0;
    padding: 15px 10px;
  }

  .header_menu_banner_title {
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.5;
    width: 120px;
  }

  .header_menu_banner_title::before {
    right: 10px;
  }

  .header_menu_banner_text {
    font-size: 10px;
    line-height: 1.8;
    width: calc(100% - 130px);
  }

  .header_menu_actions {
    padding: 16px;
  }

  .btn.header_menu_button a {
    font-size: 13px;
    width: 100%;
    min-height: 50px;
    font-size: 12px;
  }

  #g_nav {
    display: none;
  }

  .header_news {
    height: 32px;
    font-size: 10px;
    letter-spacing: 0.08em;
    overflow: hidden;
    white-space: nowrap;
  }

  .header_news a {
    padding: 0 16px;
  }

  .news_label {
    padding-right: 12px;
  }

  /* =====================
    fv
  ===================== */

  #fv {
    padding: 80px 0 0;
  }

  .fv_conts {
    width: 100%;
  }

  .fv_copy .copy_heading {
    font-size: 24px;
    line-height: 2.1;
    letter-spacing: 0.12em;
  }

  .fv_copy .copy_heading span:last-child {
    font-size: 13px;
    line-height: 2;
    letter-spacing: 0.1em;
  }

  .fv_en {
    font-size: 12px;
    line-height: 1.8;
  }

  .btns {
    flex-direction: column;
  }

  .btns .btn + .btn {
    margin: 16px auto 0;
  }

  .btn a {
    width: 136px;
    height: 44px;
    font-size: 11px;
  }

  /* =====================
    title
  ===================== */
  
  .section_label {
    gap: 8px;
    margin-bottom: 48px;
  }

  .copy_en {
    font-size: 9px;
  }

  .section_head .section_label {
    margin-bottom: 0;
  }
  
  .section_head {
    margin-bottom: 34px;
  }

  .section_head_sub {
    font-size: 20px;
  }

  /* =====================
    common_form_parts
  ===================== */  

  .form_label {
    font-size: 12px;
    padding-top: 0;
  }

  .form_row + .form_row {
    margin-top: 18px;
  }

  /* =====================
    common_entry_form
  ===================== */

  .form_wrap {
    max-width: 700px;
  }

  .form_required_note {
    font-size: 11px;
  }

  .form_section {
    padding: 32px 0;
  }

  .form_wrap .form_section:first-of-type {
    margin-top: 34px;
  }

  .form_section_ttl {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .form_list .form_row {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: start;
  }

  .form_birth {
    gap: 8px;
  }

  .form_birth .form_select {
    width: calc((100% - 16px) / 3);
  }

  .form_zipcode {
    gap: 8px;
  }

  .form_zipcode_mark {
    width: 14px;
    font-size: 12px;
  }

  .form_zipcode .common_form {
    width: calc(100% - 22px);
  }

  .form_submit {
    margin-top: 36px;
  }

  .form_submit a {
    max-width: 220px;
    min-height: 52px;
    font-size: 12px;
  }
  
  /* ========================================
    page_home
  ======================================== */

  #page_home {
    overflow: hidden;
  }

  /* =====================
    skincare
  ===================== */
  
  #page_home #skincare .section_label {
    margin-bottom: 20px;
  }

  #skincare .copy_heading {
    font-size: 22px;
    line-height: 1.7;
    text-indent: 1em;
    margin-bottom: 30px;
  }

  .skincare_img {
    max-width: 300px;
    width: 55%;
    margin: 0 auto 30px;
  }

  .skincare_text .text {
    margin-bottom: 30px;
    font-size: 14px;
    line-height: 2.2;
  }

  /* =====================
    series
  ===================== */

  #page_home #series .section_label {
    margin-bottom: 20px;
  }

  #series .copy_heading {
    font-size: 22px;
    line-height: 1.7;
    text-indent: 1em;
    margin-bottom: 20px;
  }

  #series:not(.is_series_scroll) .series_list {
    display: block;
  }

  #series:not(.is_series_scroll) .series_item:before {
    display: none;
  }

  #series:not(.is_series_scroll) .series_item {
    width: 100%;
    padding: 0;
  }

  #page_home  #series .series_item .section_label {
    margin-bottom: 10px;
  }

  #series:not(.is_series_scroll) .series_name {
    margin-bottom: 10px;
    font-size: 22px;
  }

  #series:not(.is_series_scroll) .series_catch {
    font-size: 16px;
  }

  #series:not(.is_series_scroll) .series_img {
    height: 150px;
    margin-bottom: 20px;
  }

  #series:not(.is_series_scroll) .series_desc {
    font-size: 13px;
    line-height: 2;
    max-width: 90%;
    margin: 0 auto;
  }

  #series.is_series_scroll .inner,
  #series.is_series_scroll .series_scroll {
    height: 100%;
  }

  #series.is_series_scroll .series_sticky {
    min-height: 100svh;
    padding: 50px 0 0;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  #series.is_series_scroll .series_view {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0%,
      #000 10%,
      #000 100%
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0%,
      #000 10%,
      #000 100%
    );
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
  }

  #series.is_series_scroll .series_list {
    width: 100%;
    max-width: none;
    margin: 0;
    display: block;
    padding: 0;
  }

  #series.is_series_scroll .series_item {
    width: 100%;
    padding: 0 16px 50px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  #series.is_series_scroll .series_item:before {
    display: none;
  }

  #series.is_series_scroll .series_name {
    margin-bottom: 10px;
    font-size: 22px;
  }

  #series.is_series_scroll .series_catch {
    font-size: 16px;
    margin-bottom: 10px;
  }

  #series.is_series_scroll .series_img {
    height: 150px;
    margin-bottom: 25px;
  }

  #series.is_series_scroll .series_desc {
    font-size: 14px;
    line-height: 2;
    max-width: 90%;
    margin: 0 auto;
  }

  /* ========================================
    page_privacy
  ======================================== */

  /* =====================
    privacy
  ===================== */

  .privacy_wrap {
    max-width: 700px;
  }
  
  .privacy_intro {
    padding-bottom: 24px;
  }

  .privacy_section {
    padding: 24px 0;
  }

  .privacy_ttl {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .privacy_text,
  .privacy_list li {
    font-size: 13px;
    line-height: 2.1;
  }

  .terms_number_list > li,
  .terms_paren_list > li {
    font-size: 13px;
    line-height: 2.1;
  }

  .privacy_list {
    margin-top: 10px;
  }

  .privacy_date {
    margin-top: 20px;
  }

  /* ========================================
    page_guide
  ======================================== */

  /* =====================
    guide
  ===================== */

  .guide_wrap {
    max-width: 700px;
  }

  .guide_section {
    padding: 24px 0;
  }

  .guide_ttl {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .guide_text,
  .guide_list > li,
  .guide_sub_list li {
    font-size: 13px;
    line-height: 2.1;
  }

  .guide_sub_list {
    margin-top: 6px;
  }

  .guide_subsection {
    margin-top: 22px;
    padding-top: 22px;
  }

  .guide_sub_ttl {
    margin-bottom: 10px;
    font-size: 16px;
  }

  /* ========================================
    page_law_info
  ======================================== */

  /* =====================
    law_info
  ===================== */

  .law_info_table_wrap {
    max-width: 700px;
  }

  .law_info_table,
  .law_info_table tbody,
  .law_info_table tr,
  .law_info_table th,
  .law_info_table td {
    display: block;
    width: 100%;
  }

  .law_info_table th,
  .law_info_table td {
    padding: 0;
  }

  .law_info_table tr {
    padding: 18px 0;
    border-top: 1px solid rgba(68, 73, 82, 0.08);
  }

  .law_info_table tr:last-of-type {
    border-bottom: 1px solid rgba(68, 73, 82, 0.08);
  }

  .law_info_table tr + tr th,
  .law_info_table tr + tr td {
    border-top: none;
  }

  .law_info_table th {
    margin-bottom: 6px;
    padding-right: 0;
    font-size: 13px;
  }

  .law_info_table td {
    font-size: 13px;
    line-height: 2;
  }

  /* ========================================
    page_news
  ======================================== */

  /* =====================
    news_main
  ===================== */

  #news_main {
    padding-top: 20px;
  }

  .news_tools {
    padding: 10px 0;
    margin-bottom: 25px;
  }

  .news_filter {
    width: 100%;
    max-width: none;
    justify-content: flex-start;
    gap: 5px;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .news_filter::-webkit-scrollbar {
    display: none;
  }

  .news_filter li {
    flex: 0 0 auto;
  }

  .news_filter li:first-child {
    margin-left: 10px;
  }

  .news_filter li:last-child {
    margin-right: 10px;
  }

  .select_list.news_filter li a {
    font-size: 11px;
    min-height: 30px;
  }
  
  #page_news .news_list {
    width: 100%;
    max-width: none;
  }

  #page_news .news_list li {
    display: block;
  }

  #page_news .news_list li > a {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    gap: 5px;
    padding: 20px 2% 25px;
  }
  
  .news_pager {
    margin-top: 30px;
  }

  .news_pager_prev a,
  .news_pager_next a {
    height: 50px;
  }

  /* ========================================
    page_news_detail
  ======================================== */

  /* =====================
    fv
  ===================== */
  
  #page_news_detail #fv .inner {
    width: 700px;
  }

  /* =====================
    news_detail
  ===================== */

  #news_detail {
    padding-top: 30px;
  }

  #news_detail .inner {
    width: 700px;
  }

  .news_detail_head {
    padding-bottom: 24px;
  }

  .news_detail_meta {
    gap: 8px 14px;
    margin-bottom: 15px;
  }

  .news_detail_meta .news_cat {
    width: auto;
  }

  .news_share {
    justify-content: flex-end;
    margin-top: 50px;
    padding-top: 20px;
  }

  .news_share .product_share_list li a {
    width: 18px;
  }

  .news_detail_ttl {
    font-size: 22px;
    line-height: 1.9;
  }

  .news_detail_body p {
    font-size: 14px;
    line-height: 2;
  }

  .news_detail_body p strong {
    font-size: 18px;
  }

  .news_detail_nav {
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 0;
  }

  .news_detail_prev,
  .news_detail_next {
    width: auto;
  }

  .news_detail_back {
    width: 100%;
    margin: 20px 0 0;
    text-align: center;
    order: 3;
  }

  /* ========================================
    page_faq
  ======================================== */

  /* =====================
    faq_main
  ===================== */

  .faq_item {
    border-radius: 0 20px 0 20px;
  }

  .faq_item + .faq_item {
    margin-top: 10px;
  }

  .faq_question {
    gap: 12px;
    padding: 20px 52px 20px 18px;
  }

  .faq_question:before,
  .faq_question:after {
    width: 12px;
    right: 18px;
  }

  .faq_mark {
    width: 20px;
    flex-basis: 20px;
    font-size: 18px;
  }

  .faq_question_text {
    font-size: 13px;
    line-height: 1.9;
  }

  .faq_answer {
    padding: 0 18px 20px;
  }

  .faq_answer_inner {
    gap: 12px;
    padding-top: 18px;
  }

  .faq_answer_text p,
  .faq_answer_list li {
    font-size: 13px;
    line-height: 2;
  }

  .faq_answer_list {
    margin-top: 10px;
  }

  /* =====================
    select
  ===================== */

  .select_box,
  .lineup_text,
  .news_list {
    width: auto;
    max-width: 90%;
    margin: 0 auto;
  }

  .select_group + .select_group {
    margin-top: 50px;
  }

  .select_group .copy_heading {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .select_list {
    gap: 8px;
  }

  .select_list li a,
  .select_list._nolink li {
    padding: 7px 15px 8px;
    font-size: 12px;
  }

  .set_item:before {
    display: none;
  }

  /* ========================================
    page_products
  ======================================== */

  /* =====================
    fv
  ===================== */

  #page_home #fv {
    padding-bottom: 60px;
  }

  /* ========================================
    page_contact
  ======================================== */

  /* =====================
    fv
  ===================== */

  .contact_faq_btn {
    margin-top: 28px;
  }

  .contact_faq_btn a,
  .contact_submit a {
    max-width: 220px;
    min-height: 52px;
    font-size: 12px;
  }

  /* =====================
    contact_main
  ===================== */

  .contact_form_wrap {
    max-width: 700px;
  }

  .form_ttl {
    margin-bottom: 20px;
    font-size: 18px;
  }

  .contact_form_list .form_row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .contact_form_list .form_label {
    padding-top: 0;
  }

  .form_note {
    margin-top: 6px;
    font-size: 10px;
  }

  .form_error_text {
    margin-top: 6px;
    font-size: 10px;
  }

  #contact_main input.common_form,
  #contact_main .form_select {
    height: 44px;
  }

  #contact_main .form_textarea {
    min-height: 140px;
  }

  .contact_agree {
    padding-left: 0;
  }

  .contact_submit {
    margin-top: 36px;
  }

  /* ========================================
    page_contact_confirm
  ======================================== */

  /* =====================
    contact_confirm
  ===================== */

  .confirm_wrap {
    max-width: 700px;
  }

  .confirm_intro {
    margin-bottom: 20px;
  }

  .confirm_note {
    font-size: 13px;
  }

  .confirm_table th,
  .confirm_table td {
    display: block;
    width: 100%;
    padding: 15px 0;
    font-size: 13px;
  }

  .confirm_table th {
    padding-bottom: 0;
    border-bottom: none;
  }

  .confirm_table td {
    padding-top: 4px;
  }

  .confirm_action {
    margin-top: 36px;
  }

  .contact_confirm_submit a {
    max-width: 220px;
    min-height: 52px;
    font-size: 12px;
  }

  /* ========================================
    page_order
  ======================================== */

  /* =====================
    order_main
  ===================== */

  .ec_step_nav {
    max-width: 100%;
    gap: 8px;
  }

  .ec_step_item {
    gap: 8px;
  }

  .ec_step_item:before {
    width: 24px;
    height: 24px;
    font-size: 11px;
  }

  .ec_step_item:after {
    width: calc(100% + 8px);
    top: 12px;
    left: calc(50% + 12px);
  }

  .ec_step_item p {
    font-size: 10px;
    line-height: 1.7;
    letter-spacing: 0.04em;
  }

  .order_delivery_cycle {
    gap: 8px;
  }

  .order_delivery_cycle .form_select {
    width: 100px;
  }

  .order_delivery_cycle span,
  .order_delivery_dates p {
    font-size: 12px;
  }

  .order_shipping_new {
    margin-top: 24px;
  }

  /* ========================================
    page_order_confirm
  ======================================== */

  /* =====================
    order_confirm
  ===================== */

  .order_confirm_wrap {
    max-width: 700px;
  }

  .order_confirm_layout {
    flex-direction: column-reverse;
  }

  .order_confirm_main,
  .order_confirm_side {
    width: 100%;
  }

  .order_confirm_block {
    padding-top: 30px;
  }

  .order_confirm_ttl {
    margin-bottom: 16px;
    font-size: 18px;
  }

  .order_confirm_table th,
  .order_confirm_table td {
    display: block;
    width: 100%;
    padding: 12px 0;
    font-size: 12px;
  }

  .order_confirm_table th {
    padding-bottom: 0;
    border-bottom: none;
  }

  .order_confirm_table td {
    padding-top: 4px;
  }

  .order_confirm_action {
    padding-top: 32px;
  }

  .order_confirm_submit a {
    max-width: 220px;
    min-height: 52px;
    font-size: 12px;
  }

  .order_confirm_side {
    display: flex;
    flex-direction: column-reverse;
    margin-bottom: 40px;
  }

  .order_confirm_tax_row,
  .order_confirm_cart_name,
  .order_confirm_cart_meta {
    font-size: 12px;
  }

  .order_confirm_cart_img {
    width: 48px;
  }

  .cart_side_conts.order_confirm_cart {
    margin-top: 0;
    margin-bottom: 20px;
  }

  /* ========================================
    page_login
  ======================================== */

  /* =====================
    login_main
  ===================== */

  #login_main .inner {
    max-width: 100%;
  }

  .login_layout {
    display: block;
    max-width: none;
  }

  .login_box,
  .signup_box {
    width: 100%;
    padding: 0 10px;
    margin: 0 auto;
  }

  .login_panel,
  .signup_panel {
    max-width: calc(100% - 32px);
    margin: 0 auto;
    padding: 30px 0 40px;
  }

  .login_box {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%),
    #eef2f4;
  }

  .signup_box {
    margin-top: 22px;
  }

  .login_panel_text,
  .signup_text {
    font-size: 12px;
    line-height: 2;
  }

  .login_panel_text,
  .signup_text {
    margin-bottom: 24px;
  }

  .login_panel .form_row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .login_check {
    padding-left: 0;
  }

  .login_btn,
  .signup_btn {
    margin-top: 28px;
  }

  .login_btn a,
  .login_btn input,
  .signup_btn a {
    min-height: 52px;
    font-size: 12px;
  }

  .signup_list {
    gap: 10px;
  }

  .signup_list li {
    min-height: 48px;
    padding: 12px 14px;
    font-size: 11px;
    line-height: 1.8;
  }

  .signup_note {
    margin-top: 10px;
    font-size: 10px;
  }

  /* ========================================
    page_password_new
  ======================================== */

  /* =====================
    password_new
  ===================== */

  .password_new_wrap {
    max-width: 700px;
  }

  .password_new_intro {
    max-width: 520px;
  }

  .password_new_lead {
    font-size: 12px;
    line-height: 2;
  }

  #password_new .form_list .form_row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .password_new_submit a {
    max-width: 320px;
  }

  .password_new_back {
    margin-top: 16px;
    font-size: 11px;
  }

/* ========================================
  page_customer
======================================== */

/* =====================
  customer_main
===================== */

  #customer_main {
    padding-top: 25px;
    padding-bottom: 0;
  }

  .customer_layout {
    display: block;
  }

  .customer_body {
    width: 100%;
  }

  .customer_nav {
    width: 100vw;
    margin: 50px calc( 50% - 50vw ) 0;
    padding: 30px 16px;
  }

  .customer_nav_block {
    padding: 14px 0 16px;
  }

  .customer_nav_ttl {
    font-size: 16px;
  }

  .customer_nav_ttl img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    object-position: center;
  }

  .customer_nav_list {
    margin-top: 10px;
  }

  .customer_nav_list li {
    font-size: 12px;
    margin-top: 10px;
  }

  .customer_nav_list li:before {
    left: -12px;
  }

  .customer_logout {
    margin-top: 14px;
  }

  .customer_logout a {
    min-height: 48px;
    gap: 8px;
  }

  .customer_logout img {
    width: 15px;
  }

  .customer_body {
    min-height: 0;
  }

  .customer_name {
    margin-bottom: 28px;
  }

  .customer_block + .customer_block {
    margin-top: 50px;
  }

  .customer_block_ttl {
    margin-bottom: 14px;
    font-size: 18px;
  }

  .customer_history_item {
    padding: 14px 14px 16px;
  }

  .customer_intro {
    margin-bottom: 50px;
  }

  .customer_coupon_block {
    margin-top: 30px;
  }

  .customer_stage_card,
  .customer_coupon_card {
    padding: 16px 16px 18px;
  }

  .customer_coupon_card + .customer_coupon_card {
    margin-top: 10px;
  }

  .customer_stage_head,
  .customer_coupon_head {
    display: block;
  }

  .customer_stage_current,
  .customer_stage_next {
    padding: 0;
  }

  .customer_stage_name_text {
    margin-top: 4px;
    font-size: 22px;
  }

  .customer_stage_tier {
    font-size: 28px;
  }

  .customer_stage_rate,
  .customer_stage_next_value {
    font-size: 11px;
  }

  .customer_stage_next {
    margin-top: 12px;
    text-align: left;
    display: flex;
    gap: 10px;
  }

  .customer_stage_next_value {
    margin-top: 0;
  }

  .customer_stage_detail {
    margin-top: 10px;
  }

  .customer_stage_summary {
    margin-top: 0;
    padding: 14px 50px 14px 14px;
    font-size: 12px;
  }

  .customer_stage_detail_body > p,
  .customer_stage_detail_list li p {
    font-size: 11px;
  }

  .customer_stage_detail_list {
    margin: 14px 0;
  }

  .customer_stage_detail_item {
    padding: 12px 0 10px;
  }

  .customer_stage_detail_name {
    font-size: 15px;
  }

  .customer_coupon_discount {
    font-size: 20px;
  }

  .customer_coupon_expiration {
    margin-top: 0;
    padding: 0;
    font-size: 10px;
    text-align: left;
  }

  .customer_coupon_desc {
    margin-top: 0;
    font-size: 12px;
  }

  .customer_coupon_foot {
    margin-top: 10px;
    padding: 14px;
  }

  .p-mypage__coupon-modal .c-modal__content {
    padding: 30px 20px 16px;
  }

  .p-mypage__coupon-modal .customer_coupon_modal_message {
    font-size: 16px;
  }

  .p-mypage__coupon-modal .js-coupon__code {
    font-size: 19px;
  }

  .p-mypage__coupon-modal .c-modal__control {
    padding: 0 20px 24px;
  }

  .customer_coupon_modal_button button {
    min-height: 48px;
    font-size: 12px;
  }

  .customer_coupon_code_value {
    font-size: 16px;
  }

  .customer_coupon_copy {
    margin-top: 12px;
    text-align: left;
  }

  .order_coupon_list {
    gap: 10px;
  }

  .order_coupon_foot {
    align-items: flex-end;
  }

  .order_coupon_apply {
    margin-top: 12px;
    text-align: left;
  }

  .customer_history_head {
    display: flex;
    gap: 12px;
  }

  .customer_history_status {
    margin-left: 0;
    justify-content: flex-start;
    margin-top: 3px;
  }

  .customer_history_more,
  .customer_subscription_btn {
    margin-top: 12px;
  }

  .common_button._small a {
    min-height: 34px;
    font-size: 10px;
    min-width: 104px;
  }

  .customer_history_body {
    padding-top: 10px;
  }

  .customer_history_product {
    align-items: flex-start;
    gap: 14px;
  }

  .customer_history_img {
    width: 62px;
  }

  .customer_history_payment,
  .customer_history_shipping,
  .customer_history_total,
  .customer_subscription_text {
    font-size: 11px;
  }

  .customer_history_name {
    font-size: 14px;
    line-height: 1.8;
  }

  .customer_block + .customer_block {
    margin-top: 40px;
  }

  .customer_block_ttl {
    margin-bottom: 12px;
    font-size: 18px;
  }

  .customer_name {
    font-size: 14px;
    margin-bottom: 40px;
  }

  .customer_empty {
    font-size: 12px;
  }

  .customer_subscription .common_button._small {
    margin-top: 10px;
    text-align: right;
  }

  .customer_subscription_date {
    margin-top: 0;
  }

  /* ========================================
    page_customer_edit
  ======================================== */

  /* =====================
    customer_edit
  ===================== */

  .customer_edit_ttl {
    margin-top: 10px;
    font-size: 20px;
  }

  .customer_edit_form {
    margin-top: 0;
  }

  .customer_edit_form .form_intro {
    margin-bottom: 16px;
  }

  .customer_edit_form .form_list .form_row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .customer_edit_form .form_row + .form_row {
    margin-top: 16px;
  }

  .customer_edit_form .form_label {
    padding-top: 0;
  }

  .customer_edit_form .form_field {
    max-width: none;
  }

  .customer_edit_form .form_birth {
    gap: 8px;
  }

  .customer_edit_subs {
    margin: 28px 0;
  }

  .customer_edit_table_note {
    font-size: 10px;
  }

  .customer_edit_table {
    min-width: 720px;
  }

  .customer_edit_form .form_submit {
    margin-top: 36px;
  }

  .customer_edit_form .form_submit a {
    max-width: 180px;
    min-height: 50px;
  }

  /* ========================================
    page_customer_orders_shipping_address
  ======================================== */

  /* =====================
    customer_orders_shipping_address
  ===================== */

  .customer_orders_shipping_form .customer_edit_ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .customer_orders_shipping_lead {
    margin-bottom: 8px;
    font-size: 11px;
  }

  .customer_orders_shipping_cancel {
    margin-top: 12px;
    font-size: 10px;
  }

  /* ========================================
    page_customer_subs_orders_shipping_address_edit
  ======================================== */

  /* =====================
    customer_subs_orders_shipping_address_edit
  ===================== */

  .customer_subs_shipping_form .customer_edit_ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .customer_subs_shipping_lead {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .customer_subs_shipping_copy {
    margin-bottom: 24px;
  }

  .customer_subs_shipping_copy .form_field {
    max-width: none;
  }

  .customer_subs_shipping_copy_btn.common_button._small {
    margin-top: 8px;
  }

  .customer_subs_shipping_copy_btn a {
    max-width: 180px;
    min-height: 40px;
  }

  .customer_subs_shipping_copy + .form_required_note {
    margin-top: 18px;
  }

  .customer_subs_shipping_cancel {
    margin-top: 12px;
    font-size: 10px;
  }

  /* ========================================
    page_customer_shipping_addresses
  ======================================== */

  /* =====================
    customer_shipping_addresses
  ===================== */

  .customer_shipping_wrap .customer_edit_ttl {
    margin-top: 10px;
    font-size: 20px;
    margin-bottom: 14px;
  }

  .customer_shipping_lead {
    font-size: 11px;
  }

  .customer_shipping_add {
    margin: 24px 0 18px;
  }

  .customer_shipping_add a {
    max-width: 180px;
    min-height: 50px;
  }

  .customer_shipping_table {
    min-width: 860px;
    table-layout: fixed;
  }

  .customer_shipping_action {
    font-size: 11px;
  }

  /* ========================================
    page_customer_shipping_addresses_new
  ======================================== */

  /* =====================
    customer_shipping_addresses_new
  ===================== */

  .customer_shipping_new_lead {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .customer_shipping_new_copy {
    margin-bottom: 24px;
  }

  .customer_shipping_new_copy a {
    max-width: 180px;
    min-height: 40px;
  }

  .customer_shipping_new_copy + .form_required_note {
    margin-top: 10px;
  }

  .customer_shipping_new_cancel {
    margin-top: 12px;
    font-size: 10px;
  }

  /* ========================================
    page_customer_cards
  ======================================== */

  /* =====================
    customer_cards
  ===================== */

  .customer_cards_lead,
  .customer_cards_note {
    font-size: 11px;
  }

  .customer_cards_add {
    margin: 24px 0 18px;
  }

  .customer_cards_add a,
  .customer_cards_add .p-payment_list__add__btn {
    max-width: 220px;
    min-height: 52px;
  }

  .customer_cards_table {
    min-width: 760px;
    table-layout: fixed;
  }

  /* ========================================
    page_customer_points
  ======================================== */

  /* =====================
    customer_points
  ===================== */

  .customer_points_subttl {
    margin: 28px 0 14px;
    font-size: 20px;
  }

  .customer_points_table {
    min-width: 520px;
    table-layout: fixed;
  }

  .customer_points_table th,
  .customer_points_table td {
    padding-right: 10px;
    padding-left: 10px;
  }

  .customer_points_add {
    margin-top: 34px;
    text-align: left;
  }

  .customer_points_add a {
    max-width: 220px;
    min-height: 52px;
  }

  /* ========================================
    page_customer_subs_order
  ======================================== */

  /* =====================
    customer_subs_order
  ===================== */

  .customer_subs_table {
    min-width: 960px;
    table-layout: fixed;
  }

  .customer_subs_table th,
  .customer_subs_table td {
    padding-right: 6px;
    padding-left: 6px;
  }

  .customer_subs_table th:nth-child(1),
  .customer_subs_table td:nth-child(1) {
    width: 104px;
  }

  .customer_subs_table th:nth-child(2),
  .customer_subs_table td:nth-child(2) {
    width: 62px;
  }

  .customer_subs_table th:nth-child(3),
  .customer_subs_table td:nth-child(3) {
    width: 284px;
  }

  .customer_subs_table th:nth-child(4),
  .customer_subs_table td:nth-child(4) {
    width: 132px;
  }

  .customer_subs_table th:nth-child(5),
  .customer_subs_table td:nth-child(5) {
    width: 118px;
  }

  .customer_subs_table th:nth-child(6),
  .customer_subs_table td:nth-child(6) {
    width: 70px;
  }

  .customer_subs_table th:nth-child(7),
  .customer_subs_table td:nth-child(7) {
    width: 86px;
  }

  .customer_subs_product {
    gap: 12px;
  }

  .customer_subs_product .customer_history_img {
    width: 52px;
  }

  .customer_subs_product_name {
    font-size: 12px;
    line-height: 1.7;
  }

  .customer_subs_product_meta {
    margin-top: 2px;
    font-size: 11px;
  }

  .customer_subs_more {
    font-size: 11px;
  }

  /* ========================================
    page_customer_subs_orders
  ======================================== */

  /* =====================
    customer_subs_orders
  ===================== */

  .customer_subs_detail_head {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
  }

  .customer_subs_detail_head .customer_block_ttl {
    flex: 1;
  }

  .customer_subs_detail .customer_order_items .customer_block_ttl {
    margin-bottom: 14px;
  }

  .customer_subs_detail_btn a {
    min-width: 96px;
  }

  /* ========================================
    page_customer_subs_orders_edit
  ======================================== */

  /* =====================
    customer_subs_orders_edit
  ===================== */

  .customer_subs_orders_edit .customer_edit_ttl {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 20px;
  }

  .customer_subs_orders_edit_lead {
    margin-bottom: 28px;
    font-size: 11px;
  }

  .customer_subs_orders_edit_group + .customer_subs_orders_edit_group {
    margin-top: 44px;
  }

  .customer_subs_orders_edit_block {
    padding-top: 24px;
    border-top: 1px solid rgba(68, 73, 82, 0.12);
  }

  .customer_subs_orders_edit_block + .customer_subs_orders_edit_block {
    margin-top: 34px;
  }

  .customer_subs_orders_edit_block_ttl {
    margin-bottom: 12px;
  }

  .customer_subs_orders_edit_block_lead {
    margin-bottom: 14px;
    font-size: 11px;
  }

  .customer_subs_orders_edit_block .form_intro {
    margin-bottom: 14px;
  }

  .customer_subs_orders_edit_block .form_section,
  .customer_subs_orders_edit.customer_edit_form.form_wrap .customer_subs_orders_edit_block .form_section:last-of-type {
    padding: 0;
    border: 0;
  }

  .customer_subs_orders_edit_block .form_field {
    max-width: none;
  }

  .customer_subs_orders_edit_cycle {
    gap: 8px;
    flex-wrap: wrap;
  }

  .customer_subs_orders_edit_link {
    margin-top: 6px;
    font-size: 10px;
  }

  .customer_subs_orders_edit_notes {
    padding-top: 0;
  }

  .customer_subs_orders_edit_note {
    font-size: 10px;
  }

  .customer_subs_orders_edit_block .form_submit {
    margin-top: 28px;
  }

  .customer_subs_orders_edit_block .form_submit a {
    max-width: 180px;
    min-height: 50px;
  }

  #skip-next-delivery-view.customer_subs_orders_edit_block .form_submit a {
    max-width: 180px;
  }
  
  .customer_subs_orders_edit_cancel {
    margin-top: 10px;
    font-size: 10px;
  }

  .customer_subs_orders_edit_cancel._single {
    margin-top: 20px;
  }

  /* ========================================
    page_customer_cards_edit
  ======================================== */

  /* =====================
    customer_cards_edit
  ===================== */

  .customer_cards_edit_lead {
    margin-bottom: 16px;
    font-size: 11px;
  }

  .customer_cards_edit_form .form_field {
    max-width: none;
  }

  .customer_cards_edit_expiry {
    gap: 8px;
  }

  .customer_cards_edit_note {
    margin-top: 10px;
    font-size: 10px;
    line-height: 1.8;
  }

  .customer_cards_edit_image {
    margin-top: 14px;
  }

  .customer_cards_edit_cancel {
    margin-top: 12px;
    font-size: 10px;
  }

  /* ========================================
    page_password_edit
  ======================================== */

  /* =====================
    customer_password_edit
  ===================== */

  #customer_password_edit {
    padding-top: 20px;
  }

  .customer_password_form {
    margin-top: 22px;
  }

  .customer_password_form .customer_edit_ttl {
    margin-top: 10px;
    margin-bottom: 22px;
    font-size: 20px;
  }

  .customer_password_form .form_list .form_row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .customer_password_form .form_row + .form_row {
    margin-top: 16px;
  }

  .customer_password_form .form_label {
    padding-top: 0;
  }

  .customer_password_form .form_field {
    max-width: none;
  }

  .customer_password_form .form_submit {
    margin-top: 36px;
  }

  .customer_password_form .form_submit a {
    max-width: 180px;
    min-height: 50px;
  }

  /* ========================================
    page_customer_favorites
  ======================================== */

  /* =====================
    customer_favorites
  ===================== */

  #customer_favorites {
    padding-top: 20px;
  }

  .customer_count {
    font-size: 11px;
    margin-bottom: 20px;
  }

  /* ========================================
    page_customer_orders
  ======================================== */

  /* =====================
    customer_orders
  ===================== */

  #customer_orders {
    padding-top: 20px;
  }

  .customer_orders_result {
    margin-top: 20px;
    font-size: 11px;
  }

  /* ========================================
    page_customer_orders_detail
  ======================================== */

  /* =====================
    customer_orders_detail
  ===================== */

  .customer_order_detail .customer_edit_ttl {
    margin-top: 10px;
    margin-bottom: 22px;
    font-size: 20px;
  }

  .customer_order_block + .customer_order_block {
    margin-top: 34px;
  }

  .customer_order_summary {
    display: block;
  }

  .customer_order_items,
  .customer_order_item,
  .customer_order_total {
    width: 100%;
  }

  .customer_order_item {
    padding-top: 14px;
  }

  .customer_order_total {
    margin-top: 18px;
  }

  .customer_order_table {
    min-width: 960px;
    table-layout: fixed;
  }

  .customer_order_address_table {
    min-width: 860px;
  }

  .common_button.customer_order_back {
    margin-top: 28px;
    font-size: 11px;
  }

  .common_button.customer_subs_stop {
    margin-top: 28px;
    font-size: 11px;
  }

  .customer_subs_stop + .common_button.customer_order_back {
    margin-top: 12px;
  }

  #page_customer_favorites .products_list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 15px;
  }

  #page_customer_favorites .products_item {
    width: auto;
    max-width: 100%;
  }

/* ========================================
  page_category
======================================== */

  /* =====================
    category_main
  ===================== */

  #category_main {
    padding-top: 25px;
  }

  .products_list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 16px;
  }

  .products_list::before,
  .products_list::after {
    display: none;
  }

  .products_item {
    width: auto;
    max-width: 100%;
  }

  .products_img {
    border-radius: 0 30px 0 30px;
    border: 1px solid #eef2f4;
    overflow: hidden;
  }

  .products_item a {
    padding: 0;
    border-radius: 0;
  }

  .products_text {
    padding-top: 10px;
  }

  .products_name {
    font-size: 16px;
  }

  .products_cat {
    margin-bottom: 2px;
  }  

  .products_price {
    line-height: 1.5;
  }

  .products_price .product_tax {
    font-size: 10px;
  }

  /* ========================================
    page_cart
  ======================================== */

  /* =====================
    fv
  ===================== */

  .page_notice,
  .cart_notice {
    padding: 15px;
    margin-bottom: 30px;
    font-size: 11px;
  }

  #page_cart #fv .btn._back {
    margin-top: 10px;
  }

  /* =====================
    cart_main
  ===================== */

  .cart_layout {
    display: block;
  }

  .cart_items,
  .cart_side {
    width: 100%;
  }

  .cart_item {
    padding: 10px 0 15px;
  }

  .cart_side_ttl {
    font-size: 18px;
  }

  .cart_remove {
    position: static;
    text-align: right;
  }

  .cart_item_inner {
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  .cart_item_img a {
    width: 80px;
    height: 80px;
  }

  .cart_item_body {
    width: calc( 100% - 80px - 20px);
    padding: 0;
  }

  .cart_item_name {
    margin-bottom: 0;
    font-size: 16px;
  }

  .cart_item_meta {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .cart_item_tools {
    margin-top: 12px;
    gap: 8px;
  }

  .cart_item_price {
    width: 100%;
    margin-top: 10px;
    text-align: right;
    font-size: 20px;
  }

  .cart_side {
    margin-top: 24px;
  }

  .cart_side_conts {
    padding-top: 25px;
    margin-top: 25px;
  }

  /* ========================================
    page_products
  ======================================== */

  /* =====================
    fv
  ===================== */

  #page_products #fv {
    padding-bottom: 60px;
  }

  .product_breadcrumb {
    margin-bottom: 15px;
    gap: 6px 22px;
  }

  .product_intro {
    display: block;
  }

  .product_gallery,
  .product_info {
    width: 100%;
  }

  .product_gallery {
    border-radius: 0 30px 0 30px;
  }

  .product_main_img {
    width: 100vw;
    max-width: 500px;
    margin: 0 calc( 50% - 50vw );
  }

  .product_main_img.is_before_change_img img {
    width: 170px;
  }
  
  .product_thumb_wrap {
    margin-top: 14px;
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 8px;
  }

  .product_thumb_nav {
    width: 34px;
    height: 34px;
  }

  .product_thumb_nav:before {
    width: 7px;
    height: 7px;
  }

  .product_thumb_list {
    gap: 8px;
    padding: 0 2px;
  }

  .product_thumb_list li {
    flex-basis: 56px;
    width: 56px;
    height: 56px;
  }

  .product_info {
    margin-top: 36px;
    padding-top: 0;
  }

  .product_meta {
    gap: 6px;
  }

  .product_meta li a {
    font-size: 10px;
  }

  .product_name {
    font-size: 24px;
  }

  .product_size {
    margin-top: -18px;
  }

  .product_lead {
    font-size: 13px;
  }

  .product_share {
    margin-bottom: 40px;
  }

  .product_share_list li a {
    width: 20px;
  }
  
  .product_course {
    margin-bottom: 2px;
  }

  .product_review_link a {
    font-size: 11px;
  }

  .product_review_link img {
    font-size: 25px;
  }

  .product_fav {
    font-size: 11px;
  }

  .product_fav img {
    font-size: 28px;
  }

  /* =====================
    review
  ===================== */

  .review_item {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .review_title {
    font-size: 16px;
  }

  .review_more {
    margin-top: 36px;
  }

  /* =====================
    lineup
  ===================== */

  .lineup_wrap {
    display: block;
  }

  .lineup_img,
  .about_text,
  .category_item,
  .category_img {
    width: 100%;
  }

  .lineup_img {
    margin-bottom: 28px;
  }

  .lineup_img img {
    max-width: 100px;
    max-height: 150px;
  }

  .lineup_text {
    text-align: center;
  }

  .lineup_head {
    margin-bottom: 20px;
  }

  .lineup_text .lineup_copy {
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 1.6;
  }

  .lineup_text .copy_heading {
    font-size: 17px;
    line-height: 1.8;
  }

  .lineup_price,
  .lineup_text .btn {
    text-align: left;
  }

  .lineup_price {
    font-size: 18px;
    line-height: 1.4;
  }

  .lineup_desc {
    font-size: 14px;
    line-height: 2;
    text-align: left;
  }

  .lineup_text .btn {
    margin-top: 30px;
    text-align: center;
  }

  /* =====================
    set
  ===================== */

  #set {
    padding: 0;
  }

  #set .section_label {
    margin-bottom: 20px;
  }

  .set_text .copy_heading {
    font-size: 22px;
    line-height: 1.7;
    text-indent: 1em;
    margin-bottom: 20px;
  }

  .set_list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 16px;
  }

  .set_item {
    width: auto;
  }

  .set_visual {
    min-height: 132px;
  }

  .set_img {
    height: 132px;
  }

  .set_body {
    padding-top: 14px;
  }

  .set_skin {
    font-size: 20px;
  }

  .set_name {
    margin-bottom: 12px;
    font-size: 17px;
    line-height: 1.7;
  }

  .set_desc {
    font-size: 14px;
    line-height: 2;
    max-width: 90%;
    margin: 0 auto;
  }

  .set_price {
    margin-top: 18px;
    font-size: 18px;
  }

  .set_price span {
    font-size: 10px;
  }

  #set.is_set_scroll .inner,
  #set.is_set_scroll .set_scroll {
    height: 100%;
  }

  #set.is_set_scroll .set_sticky {
    min-height: 100svh;
    padding: 50px 0 0;
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  #set.is_set_scroll .set_view {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
      180deg,
      transparent 0%,
      #000 10%,
      #000 100%
    );
    mask-image: linear-gradient(
      180deg,
      transparent 0%,
      #000 10%,
      #000 100%
    );
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  
  #set.is_set_scroll .set_list {
    width: 100%;
    max-width: none;
    margin: 0;
    display: block;
    padding: 0;
    padding-top: 50px;
  }

  #set.is_set_scroll .set_item {
    width: 100%;
    padding: 0 16px 80px 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  #set.is_set_scroll .set_visual {
    min-height: 150px;
  }

  #set.is_set_scroll .set_img {
    height: 150px;
  }

  /* =====================
    about
  ===================== */

  .about_text {
    padding: 0;
  }

  .about_text .copy_heading {
    margin-bottom: 30px;
    font-size: 24px;
  }

  .about_text .text {
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 2.2;
  }

  /* ========================================
    page_about
  ======================================== */

  /* =====================
    fv
  ===================== */
  
  /*
  .about_nav {
    right: 10px;
  }

  .about_nav_dot {
    width: 6px;
    height: 6px;
  }

  .about_nav_dot + .about_nav_dot {
    margin-top: 10px;
  }
  */

  #page_about #fv {
    padding-bottom: 60px;
  }

  .about_logo {
    margin-top: 6px;
  }

  .about_logo img {
    width: 85px;
  }

  #page_about .fv_copy .copy_heading {
    margin-bottom: 24px;
    font-size: 24px;
    line-height: 1.75;
  }

  #page_about .fv_copy p {
    font-size: 14px;
    line-height: 2.15;
    letter-spacing: 0.08em;
  }

  /* =====================
    contents_common
  ===================== */

  #page_about .contents {
    padding-bottom: 150px;
  }

  #page_about .contents .section_label {
    margin-bottom: 20px;
  }

  #page_about .contents .copy_heading {
    font-size: 22px;
    line-height: 1.7;
    margin-bottom: 30px;
    padding-left: 0.5em;
  }

  #page_about .contents .copy_heading + .text {
    font-size: 14px;
    line-height: 2.15;
    letter-spacing: 0.06em;
  }

  #page_about .contents .copy_heading + .text > p:not([class]) {
    margin-top: 1.5em;
  }

  .about_bg img {
    width: 116%;
    height: 116%;
    top: -8%;
    left: -8%;
  }

  /* =====================
    ourstory
  ===================== */
  
  #ourstory .text {
    text-align: left;
    max-width: 90%;
    margin: 0 auto;
  }

  /* =====================
    philosophy
  ===================== */

  .philosophy_in {
    margin-top: 40px;
  }

  .hilosophy_out {
    margin-top: 30px;
    flex-wrap: wrap;
    gap: 10px 16px;
  }

  .hilosophy_out li {
    font-size: 12px;
    line-height: 1.8;
    padding-left: 14px;
  }

  .hilosophy_out li::before {
    height: 10px;
  }

  /* =====================
    thenumbers
  ===================== */

  .thenumbers_list {
    margin-top: 0;
    display: block;
  }

  .thenumbers_item {
    padding: 20px 0 25px;
    border-bottom: none;
  }

  .thenumbers_item:last-of-type {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .thenumbers_num {
    font-size: 48px;
  }

  .thenumbers_num span {
    font-size: 18px;
  }

  .thenumbers_title {
    margin: 10px 0 16px;
    font-size: 16px;
  }

  .thenumbers_list {
    font-size: 13px;
    line-height: 2;
  }

  .thenumbers_note {
    margin-top: 14px;
    font-size: 10px;
  }

  /* =====================
    honestguide
  ===================== */

  .honestguide_column {
    margin-top: 0;
    display: block;
  }

  .honestguide_column:before {
    display: none;
  }

  .honestguide_column .column_item {
    width: 100%;
    padding: 20px 20px 25px
  }

  .honestguide_column .column_item:before {
    width: 20px;
  }

  .honestguide_column .column_ttl {
    font-size: 16px;
    line-height: 1.7;
    padding-bottom: 15px;
  }

  .honestguide_list {
    margin-top: 18px;
  }

  .honestguide_list li {
    font-size: 13px;
    line-height: 2.1;
  }

  .honestguide_list li + li {
    margin-top: 5px;
  }

  .honestguide_list._ok li:before {
    top: 10px;
  }

  .honestguide_list._no li:before {
    top: 13px;
  }
  
  .honestguide_column .column_item + .column_item {
    margin-top: 24px;
  }

  /* =====================
    firststep
  ===================== */

  #page_about #firststep {
    padding-bottom: 50px;
  }

  .firststep_text .btn {
    margin-top: 40px;
    text-align: center;
  }

  /* ========================================
    page_home
  ======================================== */

  /* =====================
    category
  ===================== */

  #category .inner {
    padding: 0 16px;
  }

  .category_list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .category_item + .category_item {
    margin-top: 0;
  }

  .category_item {
    width: auto;
    max-width: 100%;
  }

  .category_img {
      border-radius: 0 30px 0 30px;
  }

  .category_name .copy_heading {
    font-size: 15px;
    line-height: 1.7;
    letter-spacing: 0;
  }

  .category_name .copy_en {
    font-size: 9px;
  }

  /* =====================
    voice
  ===================== */

  .voice_list {
    display: block;
    width: 100%;
  }

  .voice_item {
    width: 100%;
  }

  .voice_item + .voice_item {
    margin-top: 24px;
  }

  .voice_card {
    min-height: auto;
    width: auto;
    padding: 0 16px 0;
  }

  .voice_img {
    width: 130px;
    height: 130px;
  }

  .voice_name {
    margin-bottom: 24px;
    font-size: 13px;
  }

  .voice_heading {
    margin-bottom: 18px;
  }

  .voice_text {
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.9;
  }

  #voice.is_voice_carousel .voice_slider {
    width: 100%;
    margin: 0 auto;
  }

  #voice.is_voice_carousel .voice_list {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    justify-content: flex-start;
    padding: 0 max(12px, calc((100% - 320px) / 2));
  }

  #voice.is_voice_carousel .voice_item {
    width: calc(100vw - 56px);
    max-width: 320px;
    flex: 0 0 auto;
  }

  #voice.is_voice_carousel .voice_item + .voice_item {
    margin-top: 0;
  }

  #voice.is_voice_carousel .voice_nav {
    display: flex !important;
    width: 100%;
    padding: 0 4px;
    position: absolute;
    top: 10px;
    left: 0;
    transform: translateY(-50%);
    justify-content: space-between;
    pointer-events: none;
  }

  #voice.is_voice_carousel .voice_nav_btn {
    width: 40px;
    height: 40px;
    pointer-events: auto;
  }

  .category_name {
    top: 50%;
    transform: translateY(-50%);
  }

  /* =====================
    news
  ===================== */

  .news_list li {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 5px 10px;
  }

  .news_list li + li {
    margin-top: 25px;
  }
  
  .news_date {
    font-size: 13px;
  }

  .news_cat {
    width: auto;
    padding: 0 0 0 17px;
    font-size: 11px;
  }

  .news_cat::after {
    left: 0;
    right: auto;
  }

  .news_title {
    width: 100%;
    margin-top: 5px;
  }

  .news_btn {
    margin-top: 48px;
  }

  /* =====================
    concept
  ===================== */

  .concept_copy p {
    font-size: 13px;
    line-height: 2.4;
  }

  /* =====================
    banner
  ===================== */

  .banner {
    width: 200px;
    right: 16px;
    bottom: 16px;
  }

  .banner a {
    min-height: auto;
    padding: 16px;
  }

  .banner_ttl {
    margin-bottom: 5px;
    font-size: 14px;
  }

  .banner_text {
    font-size: 10px;
    line-height: 1.8;
  }

  .banner_close {
    width: 24px;
    height: 24px;
    top: -10px;
    right: -2px;
  }

  /* =====================
    footer
  ===================== */

  #footer {
    min-height: auto;
    padding: 60px 0;
  }

  #footer .inner {
    display: block;
    padding: 0 16px;
  }

  .foot_logo {
    width: 67px;
    margin: 0 auto 40px;
  }

  .footer_info {
    display: block !important;
  }

  .footer_nav_wrap {
    display: block;
    width: 90%;
    margin: 0 auto;
  }

  .foot_nav_groups {
    display: block;
  }

  .foot_nav_subhead {
    margin-bottom: 12px;
  }

  .foot_nav_subhead span {
    min-height: 26px;
    padding: 3px 12px 3px;
    border-radius: 0 10px 0 10px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .foot_nav_block + .foot_nav_block {
    margin-top: 30px;
  }

  .foot_nav_group + .foot_nav_group {
    margin-top: 28px;
  }

  .footer_bottom {
    flex-direction: column-reverse;
    margin-top: 48px;
    padding-top: 24px;
  }

  .footer_sns {
    margin-bottom: 24px;
  }

  .copyright {
    width: auto;
    max-width: 100%;
    font-size: 10px;
  }
  
  @media screen and (min-width:500px) {

    /* =====================
      SP調整
    ===================== */
      
    .product_main_img {
      width: 100%;
      margin: 0 auto;
    }

    
  }

}

/* ==============================================================
   ↑↑↑ ここまで HTML/css/style.css の完全コピー（原本ゾーン）
   ↓↓↓ ここから下は EC Force テーマ化のための独自追記（編集ゾーン）

   原本ゾーンには手を加えないでください。HTML/css/style.css が更新されたら、
   このファイル先頭から区切り線までを丸ごと差し替えてください。
   ============================================================== */

.btn {
  margin: 0;
  position: relative;
  display: inline-block;

  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  text-align: inherit;
  vertical-align: baseline;
  white-space: normal;
  background: transparent;
  cursor: auto;
}

.btn:hover, .btn:focus, .btn.focus {
  color: inherit;
  text-decoration: none;
}

.form_label {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.formErrorContent, .formErrorArrow, .greenPopup, .blackPopup {
  display: none !important;
}

.form_select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--c_base) 50%), linear-gradient(135deg, var(--c_base) 50%, transparent 50%);
  background-position: calc(100% - 18px) calc(50% - 3px), calc(100% - 12px) calc(50% - 3px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

#header button {
  pointer-events: auto;
}

.header_tools button {
  display: block;
  position: relative;
}

.header_tools img {
  display: block;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

#news .news_btn {
  margin-top: 80px;
  text-align: center;
}

#news .news_btn a {
  margin-inline: auto;
}

@media screen and (max-width: 899px) {
  #news .news_btn {
    margin-top: 48px;
  }
}

.cart_count {
  position: absolute;
  top: -4px;
  right: -6px;
  background: #d24a3d;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  min-width: 16px;
  height: 16px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

.tool_cart {
  position: relative;
}

.tool_cart a {
  position: relative;
}

.banner a {
  min-height: 120px;
  padding: 24px 24px 22px;
  background: #ffff;
  color: var(--c_base);
  border-radius: 0;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  display: block;
}

.privacy_list, #page_privacy .privacy_text ul, #page_privacy .privacy_section ul, #privacy ul {
  margin-top: 14px;
  list-style: none;
  padding-left: 0;
}

.privacy_list li, #page_privacy .privacy_text ul > li, #page_privacy .privacy_section ul > li, #privacy ul > li {
  padding-left: 1.4em;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: var(--c_label_dark);
  position: relative;
}

.privacy_list li:before, #page_privacy .privacy_text ul > li:before, #page_privacy .privacy_section ul > li:before, #privacy ul > li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.contact_form_list .form_label {
  padding-top: 14px;
}

.form_group_split {
  display: grid;
  gap: 12px;
}

.form_group_split.is_two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form_group_split.is_three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact_value {
  min-height: 48px;
  padding: 12px 0;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: var(--c_base);
}

.contact_actions {
  margin-top: 50px;
}

.contact_actions .contact_submit {
  margin-top: 0;
}

.contact_back_link {
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: center;
}

.contact_back_link a, .contact_support_mail a {
  text-decoration: underline;
  color: var(--c_blue);
}

.contact_complete_message, .contact_support_mail {
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 0.08em;
  text-align: center;
}

.contact_support_mail {
  margin-top: 18px;
}

.contact_complete_actions {
  margin-top: 42px;
}

#customers-registrations-sign-up-view > .l-container__row:first-child {
  margin-top: 0;
}

#customers-registrations-sign-up-view > .l-container__row:first-child .p-account_form__inner__bottom {
  margin-top: 0;
  margin-bottom: 42px;
}

.login_panel .form_row {
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: center;
}

.amazon_login_wrap {
  margin-top: 20px;
  text-align: center;
}

.amazon_login_wrap #AmazonPayLoginBtnMainArea {
  display: none;
  justify-content: center;
}

.customer_nav_list li.is_current a {
  color: var(--c_base);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;

}

.customer_history_list, .customer_subscription_list {
  display: grid;
  gap: 16px;

}

.customer_history_item, .customer_subscription_item {
  padding: 24px 26px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(68, 73, 82, 0.12);
  border-radius: 0;

}

.customer_history_head, .customer_pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;

}

.customer_history_number, .customer_subscription_date {
  font-family: var(--font_mincho);
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.04em;

}

.customer_history_date, .customer_subscription_label, .customer_subscription_number, .customer_pager_status {
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--c_note_dark);

}

/* === HTML/css/style.css の最新 .customer_history_status / _payment / _shipping / _body 等の
       原本定義をそのまま効かせるため、独自追記ゾーンの旧定義（statuses 複数形 / status / body / line）を削除しました。 === */

.customer_history_link, .customer_action_btn {
  margin-top: 18px;

}

.customer_history_link a, .customer_pager_link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.12em;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;

}

.customer_pager {
  justify-content: center;
  margin-top: 40px;

}

.customer_subpage_lead, .customer_panel_note {
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: var(--c_note_dark);

}

.customer_panel_note--spaced {
  margin-top: 10px;

}

.customer_inline_link, .customer_text_link, .customer_danger_link {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;

}

.customer_inline_link {
  display: inline-block;
  margin-top: 6px;

}

.customer_panel {
  padding: 30px 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(68, 73, 82, 0.12);
  border-radius: 0;

}

.customer_panel + .customer_panel {
  margin-top: 24px;

}

.customer_panel .p-account__inner__content__form__text, .customer_panel .p-payment_list__add__win__form__text {
  margin-bottom: 20px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;

}

.customer_panel .c-form_table {
  width: 100%;

}

.customer_panel .c-form_table th, .customer_panel .c-form_table td {
  padding-top: 18px;
  padding-bottom: 18px;
  background: transparent;

}

.customer_panel .c-form_table th {
  width: 32%;

}

.customer_panel .c-form_table td {
  width: 68%;

}

.customer_panel .c-form_table img {
  max-width: 220px;
  height: auto;
  margin-top: 14px;

}

.customer_actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;

}

.customer_actions--split {
  justify-content: space-between;

}

.customer_actions .btn._black, .p-payment_list__add__btn.btn._black {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
  min-height: 54px;
  padding: 0 30px;
  border: 0;
  background: #444952;
  color: #fff;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.14em;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;

}

.customer_actions .btn._black:hover, .p-payment_list__add__btn.btn._black:hover {
  opacity: 0.9;

}

.customer_text_link, .customer_danger_link, .customer_panel .p-account__inner__content__form__bottom__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  padding: 0;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.12em;
  color: var(--c_label_dark);
  cursor: pointer;

}

.customer_danger_link {
  color: #a35f5f;

}

.customer_table_wrap {
  overflow-x: auto;

}

.customer_table_wrap .c-account_table {
  min-width: 760px;

}

.customer_table_panel {
  margin-top: 20px;

}

.customer_panel .c-account_table th {
  white-space: nowrap;

}

.customer_panel .c-account_table td {
  white-space: normal;

}

.customer_panel .c-account_table__edit, .customer_panel .c-account_table__delete {
  display: inline-flex;
  align-items: center;
  gap: 6px;

}

.customer_panel .p-payment_list__add__win {
  margin-top: 22px;

}

body.is_customer_shell .p-account {
  width: 100%;

}

body.is_customer_shell .p-account__inner {
  display: flex;
  align-items: flex-start;
  gap: 48px;

}

body.is_customer_shell .p-account__inner__menu {
  width: 280px;
  flex-shrink: 0;

}

body.is_customer_shell .p-account__inner__content {
  width: calc(100% - 280px - 48px);
  min-width: 0;

}

body.is_customer_shell .p-account__inner__content__title, body.is_customer_shell .p-list_header__inner__title {
  margin: 0;
  font-family: var(--font_mincho);
  font-size: 40px;
  line-height: 1.45;
  letter-spacing: 0.08em;
  color: var(--c_text);

}

body.is_customer_shell .p-account__inner__content__lead, body.is_customer_shell .p-smaregi__header, body.is_customer_shell .p-account__inner__content__form__text {
  margin-top: 14px;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: var(--c_note_dark);

}

body.is_customer_shell .p-subscription_edit__block, body.is_customer_shell .p-smaregi, body.is_customer_shell .p-account__inner__content > .control-alert, body.is_customer_shell .p-account__inner__content > .alert {
  padding: 30px 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(68, 73, 82, 0.12);
  border-radius: 0;

}

body.is_customer_shell .p-subscription_edit__block + .p-subscription_edit__block {
  margin-top: 24px;

}

body.is_customer_shell .p-subscription_edit__block__title, body.is_customer_shell .p-subscription_detail__block__head__title {
  font-family: var(--font_mincho);
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.08em;

}

body.is_customer_shell .p-subscription_edit__block__lead {
  margin-top: 12px;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: var(--c_note_dark);

}

body.is_customer_shell .p-account__inner__content__form__bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;

}

body.is_customer_shell .p-account__inner__content__form__bottom__btn, body.is_customer_shell .p-subscription_detail__block__head__btn, body.is_customer_shell .p-smaregi .p-account__inner__content__form__bottom__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 0 24px 0 24px;
  background: var(--c_blue);
  color: var(--c_text);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.12em;

}

body.is_customer_shell .p-account__inner__content__form__bottom__link, body.is_customer_shell .p-account__inner__content__form__bottom__link--deletebtn {
  display: inline-flex;
  align-items: center;
  text-decoration: underline;
  text-underline-offset: 4px;

}

body.is_customer_shell .p-smaregi___barcode, body.is_customer_shell .smaregi_barcode {
  margin-top: 24px;
  text-align: center;

}

body.is_customer_shell .smaregi_barcode img {
  max-width: 100%;
  height: auto;

}

body.is_auth_shell .p-page_header {
  text-align: center;

}

body.is_auth_shell .p-account_form {
  max-width: 980px;
  margin: 0 auto;

}

body.is_auth_shell .p-account_form__inner {
  padding: 30px 34px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(68, 73, 82, 0.12);
  border-radius: 0;

}

body.is_auth_shell .p-account_form__inner__bottom {
  margin-top: 24px;
  text-align: center;

}

body.is_auth_shell .p-account_form__inner__bottom__btn, body.is_auth_shell .p-account_form__inner__bottom__mailbtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 28px;
  border: 0;
  border-radius: 0 24px 0 24px;
  background: var(--c_blue);
  color: var(--c_text);
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.12em;

}

body.is_auth_shell .p-account_form__inner__bottom__link {
  display: inline-flex;
  margin-top: 16px;
  text-decoration: underline;
  text-underline-offset: 4px;

}

body.is_marketing_shell .p-list_header__inner__title {
  font-family: var(--font_mincho);
  font-size: 40px;
  line-height: 1.45;
  letter-spacing: 0.08em;
  color: var(--c_text);

}

body.is_marketing_shell .p-list_header, body.is_marketing_shell .p-set_list, body.is_marketing_shell .p-set_selection {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;

}

/* === マイページの customer_body / customer_nav サイズ上書きはユーザー指示で削除（SP レイアウト崩れ対策）。
       原本ゾーンの幅指定をそのまま使う。 === */

#page_customer_shipping_addresses .customer_actions--split, #page_customer_cards .customer_actions--split {
  align-items: flex-end;

}

#page_customer_shipping_addresses .customer_table_wrap .c-account_table, #page_customer_cards .customer_table_wrap .c-account_table {
  width: 100%;
  min-width: 0;

}

#page_customer_shipping_addresses .customer_table_wrap .c-account_table th, #page_customer_cards .customer_table_wrap .c-account_table th {
  padding: 14px 12px;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.08em;

}

#page_customer_shipping_addresses .customer_table_wrap .c-account_table td, #page_customer_cards .customer_table_wrap .c-account_table td {
  padding: 14px 12px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  vertical-align: top;

}

#page_customer_shipping_addresses .customer_table_wrap .c-account_table th:nth-child(4), #page_customer_shipping_addresses .customer_table_wrap .c-account_table td:nth-child(4) {
  min-width: 230px;

}

#page_customer_shipping_addresses .customer_table_wrap .c-account_table th:last-child, #page_customer_shipping_addresses .customer_table_wrap .c-account_table td:last-child, #page_customer_cards .customer_table_wrap .c-account_table th:nth-last-child(-n + 2), #page_customer_cards .customer_table_wrap .c-account_table td:nth-last-child(-n + 2) {
  width: 72px;
  white-space: nowrap;
  text-align: center;

}

#page_customer_cards .customer_table_panel .c-account_table th:first-child, #page_customer_cards .customer_table_panel .c-account_table td:first-child {
  min-width: 150px;

}

#page_customer_cards .customer_table_panel .c-account_table th:nth-child(4), #page_customer_cards .customer_table_panel .c-account_table td:nth-child(4), #page_customer_cards .customer_table_panel .c-account_table th:nth-child(5), #page_customer_cards .customer_table_panel .c-account_table td:nth-child(5) {
  white-space: nowrap;

}

.customer_copy_btn {
  margin-top: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(68, 73, 82, 0.18);
  background: #eef2f4;
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.08em;
  cursor: pointer;

}

.customer_order_detail .p-history_detail__block {
  overflow-x: auto;

}

.customer_order_detail .c-account_table, .customer_order_detail .p-history_detail__block__wrapper {
  min-width: 760px;

}

#page_customer_subs_orders .p-subscription_list {
  margin-top: 24px;

}

#page_customer_subs_orders .p-subscription_list__item {
  margin: 0;

}

#page_customer_subs_orders .c-account_table {
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(68, 73, 82, 0.12);

}

#page_customer_subs_orders .c-account_table th, #page_customer_subs_orders .c-account_table td {
  padding: 16px 12px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  vertical-align: middle;

}

#page_customer_subs_orders .c-account_table th {
  white-space: normal;

}

#page_customer_subs_orders .c-account_table td:first-child {
  word-break: break-all;

}

#page_customer_subs_orders .c-account_table__product {
  align-items: center;

}

#page_customer_subs_orders .c-account_table__edit {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;

}

#category_index_main {
  padding-top: 50px;
}

#guide_main .inner, #static_page_main .inner, #customer_term_main .inner {
  max-width: 100%;
}

.static_page_wrap {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

.static_page_text {
  margin: 0;
  font-size: 14px;
  line-height: 2.2;
  letter-spacing: 0.08em;
  color: var(--c_label_dark);
}

.static_page_content > :first-child {
  margin-top: 0;
}

.static_page_content > :last-child {
  margin-bottom: 0;
}

.static_page_content table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  margin-top: 28px;
}

.static_page_content table th, .static_page_content table td {
  border-top: 1px solid rgba(68, 73, 82, 0.08);
  padding: 18px 16px;
  font-size: 14px;
  line-height: 2;
  vertical-align: top;
}

.static_page_content table tr:last-child th, .static_page_content table tr:last-child td {
  border-bottom: 1px solid rgba(68, 73, 82, 0.08);
}

.static_page_content table th {
  width: 220px;
  font-weight: 600;
  text-align: left;
}

.static_page_content img {
  max-width: 100%;
  height: auto;
}

.static_page_content iframe {
  max-width: 100%;
}

#page_cart #header .site_logo .logo_white, #page_cart #header .header_tools .icon_white {
  opacity: 0;
  visibility: hidden;
}

#page_cart #header .site_logo .logo_black, #page_cart #header .header_tools .icon_black {
  opacity: 1;
  visibility: visible;
}

.product_fav :is(a, button) {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-decoration: underline;
  cursor: pointer;
}

.product_fav :is(a, button).is_active .icon_default {
  display: none;
}

.product_fav :is(a, button).is_active .icon_on {
  display: block;
}

.review_empty_text {
  margin-top: 32px;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.08em;
  text-align: center;
}

.review_post_block {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(68, 73, 82, 0.12);
}

.review_post_block .control-alert {
  margin-bottom: 16px;
}

.review_post_block .p-review__inner__entry {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.review_post_block .p-review__inner__entry__content {
  max-width: none;
  margin-top: 0;
  padding: 40px 44px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(68, 73, 82, 0.12);
  border-radius: 0;
}

.review_post_block .p-review__inner__entry.is_open .p-review__inner__entry__btn {
  display: none;
}

.review_post_block .p-review__inner__entry__btn, .review_post_block .p-review__inner__entry__content__form__submit {
  width: 100%;
  max-width: 400px;
  min-height: 60px;
  border: 0;
  background: var(--c_blue);
  color: var(--c_text);
  border-radius: 0 24px 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: .45s;
  cursor: pointer;
}

.review_post_block .p-review__inner__entry__btn:after, .review_post_block .p-review__inner__entry__content__form__submit:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(11, 22, 92, 0.15),
    rgba(11, 22, 92, 0)
  );
  transition: width .45s cubic-bezier(.22,1,.36,1);
  z-index: 0;
  pointer-events: none;
}

.review_post_block .p-review__inner__entry__btn {
  font-size: 13px;
  text-decoration: none;
}

.review_post_block .p-review__inner__entry__content__form__submit {
  margin-top: 20px;
}

.review_post_block .p-review__inner__entry__content__form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.review_post_block .p-review__inner__entry__content__form .c-form_table {
  width: 100%;
  order: 1;
}

.review_post_block .p-review__inner__entry__content__form__submit {
  order: 2;
}

.review_post_block .p-review__inner__entry__content__form__cancel {
  order: 3;
  margin-top: 18px;
}

.products-2 #header .site_logo .logo_white, .products-2 #header .header_tools .icon_white {
  opacity: 0;
  visibility: hidden;
}

.products-2 #header .site_logo .logo_black, .products-2 #header .header_tools .icon_black {
  opacity: 1;
  visibility: visible;
}

@media screen and (min-width:900px) {
  .review_post_block .p-review__inner__entry__btn:hover, .review_post_block .p-review__inner__entry__content__form__submit:hover {
    border-radius: 0;

  }

  .review_post_block .p-review__inner__entry__btn:hover:after, .review_post_block .p-review__inner__entry__content__form__submit:hover:after {
    width: 100%;

  }

  #page_customer_favorites .products_item {
    width: calc((100% - 24px) / 2);

  }

}

.order_steps_row .c-steps_to_order {
  max-width: 560px;
  margin: 0 auto;
}

.order_header_row .control-alert {
  max-width: 860px;
  margin: 0 auto 18px;
}

.order_page_head {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.order_page_head .section_label {
  justify-content: center;
}

.order_page_lead {
  margin-top: 16px;
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.order_body_row .p-checkout__bottom, .order_body_row .p-checkout_confirm__static, .order_body_row .p-checkout_confirm__form.p-checkout_confirm__inner__list__block--bottom {
  text-align: center;
}

.order_body_row .p-checkout__bottom__submit, .order_body_row .p-checkout_confirm__inner__list__block__submit, .order_body_row .p-checkout_confirm__submit {
  width: 100%;
  max-width: 400px;
  min-height: 60px;
  margin: 24px auto 0;
  padding: 18px 24px;
  border: 0;
  border-radius: 0 24px 0 24px;
  background: var(--c_blue);
  color: var(--c_text) !important;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.12em;
  cursor: pointer;
  transition: background .45s, opacity .45s;
  appearance: none;
  -webkit-appearance: none;
}

.order_body_row .p-checkout_confirm__submit {
  max-width: 320px;
  min-height: 52px;
  margin-top: 0;
}

.order_body_row .p-checkout__bottom__submit:hover, .order_body_row .p-checkout_confirm__inner__list__block__submit:hover, .order_body_row .p-checkout_confirm__submit:hover {
  background: rgba(74, 80, 92, 0.9);
}

.order_body_row > .p-checkout, .order_body_row > .p-checkout_confirm, .order_body_row > .order_complete_body, .order_body_row > .alert, .order_body_row > .line_new_ec, .order_body_row > #AmazonPayOneClickOrderArea {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.order_complete_head {
  max-width: 720px;
}

.order_complete_meta {
  margin-top: 24px;
  padding: 26px 30px;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%), #eef2f4;
}

.order_complete_meta_label {
  font-size: 10px;
  line-height: 1.8;
  letter-spacing: 0.18em;
}

.order_complete_meta_number {
  margin-top: 6px;
  font-family: var(--font_mincho);
  font-size: 30px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.order_complete_button {
  margin-top: 24px;
}

.order_complete_button a {
  max-width: 340px;
}

@media screen and (max-width:899px) {
  .form_label {
    font-size: 12px;

  }

  .order_steps_row .c-steps_to_order {
    max-width: 100%;

  }

  .order_header_row .control-alert {
    margin-bottom: 14px;

  }

  .order_page_head, .order_complete_head, .order_body_row > .p-checkout, .order_body_row > .p-checkout_confirm, .order_body_row > .order_complete_body, .order_body_row > .alert, .order_body_row > .line_new_ec, .order_body_row > #AmazonPayOneClickOrderArea {
    max-width: 100%;

  }

  .order_page_lead {
    margin-top: 12px;
    font-size: 12px;
    line-height: 1.9;

  }

  .order_body_row .p-checkout__bottom__submit, .order_body_row .p-checkout_confirm__inner__list__block__submit, .order_body_row .p-checkout_confirm__submit {
    max-width: 100%;
    min-height: 56px;
    margin-top: 18px;
    font-size: 12px;

  }

  .order_complete_meta {
    margin-top: 18px;
    padding: 18px 20px;
    border-radius: 0;

  }

  .order_complete_meta_number {
    font-size: 22px;

  }

  .order_complete_button {
    margin-top: 18px;

  }

  .order_complete_button a {
    max-width: 100%;

  }

  .privacy_text, .privacy_list li, #page_privacy .privacy_text ul > li, #page_privacy .privacy_section ul > li {
    font-size: 13px;
    line-height: 2.1;

  }

  .privacy_list, #page_privacy .privacy_text ul, #page_privacy .privacy_section ul {
    margin-top: 10px;

  }

  .form_group_split.is_two, .form_group_split.is_three {
    grid-template-columns: 1fr;

  }

  .contact_value {
    min-height: auto;
    padding: 4px 0 0;
    font-size: 12px;

  }

  .contact_actions {
    margin-top: 36px;

  }

  .contact_back_link {
    margin-top: 14px;
    font-size: 11px;

  }

  .contact_complete_message, .contact_support_mail {
    font-size: 12px;
    line-height: 2;

  }

  .contact_complete_actions {
    margin-top: 30px;

  }

  #customers-registrations-sign-up-view > .l-container__row:first-child .p-account_form__inner__bottom {
    margin-bottom: 28px;

  }

  .amazon_login_wrap {
    margin-top: 16px;

  }

  .customer_history_item, .customer_subscription_item {
    padding: 18px 16px;
    border-radius: 0;

  }

  .customer_history_head, .customer_pager {
    display: block;

  }

  .customer_history_number, .customer_subscription_date {
    font-size: 18px;

  }

  .customer_history_date, .customer_subscription_label, .customer_subscription_number, .customer_pager_status {
    font-size: 11px;

  }

  .customer_history_link, .customer_action_btn {
    margin-top: 14px;

  }

  .customer_history_link a, .customer_pager_link {
    font-size: 11px;

  }

  .customer_pager {
    margin-top: 30px;
    text-align: center;

  }

  .customer_pager_status + .customer_pager_link, .customer_pager_link + .customer_pager_status {
    margin-top: 10px;

  }

  .customer_subpage_lead, .customer_panel_note {
    font-size: 12px;

  }

  .customer_panel {
    padding: 20px 16px;
    border-radius: 0;

  }

  .customer_panel + .customer_panel {
    margin-top: 16px;

  }

  .customer_panel .p-account__inner__content__form__text, .customer_panel .p-payment_list__add__win__form__text {
    margin-bottom: 14px;
    font-size: 11px;

  }

  .customer_panel .c-form_table th, .customer_panel .c-form_table td {
    display: block;
    width: 100%;
    padding-top: 10px;
    padding-bottom: 10px;

  }

  .customer_panel .c-form_table img {
    max-width: 180px;

  }

  .customer_actions, .customer_actions--split {
    display: block;
    margin-top: 18px;

  }

  .customer_actions .btn._black, .p-payment_list__add__btn.btn._black {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    font-size: 12px;

  }

  .customer_text_link, .customer_danger_link, .customer_panel .p-account__inner__content__form__bottom__link {
    margin-top: 14px;
    font-size: 11px;

  }

  .customer_table_wrap {
    margin: 0 calc(50% - 50vw);
    padding: 0 16px;

  }

  .customer_table_wrap .c-account_table {
    min-width: 680px;

  }

  .customer_table_panel {
    margin-top: 16px;

  }

  #page_customer_subs_orders .p-subscription_list {
    margin-top: 18px;

  }

  #page_customer_subs_orders .c-account_table {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;

  }

  #page_customer_subs_orders .c-account_table > tbody {
    display: block;

  }

  #page_customer_subs_orders .c-account_table > tbody > tr {
    display: block;
    padding: 16px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(68, 73, 82, 0.12);

  }

  #page_customer_subs_orders .c-account_table > tbody > tr:first-child {
    display: none;

  }

  #page_customer_subs_orders .c-account_table > tbody > tr > td {
    display: grid;
    grid-template-columns: minmax(92px, 38%) minmax(0, 1fr);
    gap: 10px;
    align-items: start;
    padding: 8px 0;
    border: 0;
    font-size: 12px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    word-break: normal;

  }

  #page_customer_subs_orders .c-account_table > tbody > tr > td::before {
    content: attr(data-title);
    font-size: 11px;
    line-height: 1.8;
    color: var(--c_note_dark);

  }

  #page_customer_subs_orders .c-account_table > tbody > tr > td:last-child {
    display: block;
    margin-top: 10px;
    padding-top: 14px;
    border-top: 1px solid rgba(68, 73, 82, 0.12);

  }

  #page_customer_subs_orders .c-account_table > tbody > tr > td:last-child::before {
    display: none;

  }

  #page_customer_subs_orders .c-account_table__product {
    min-width: 0;
    align-items: flex-start;
    gap: 10px;

  }

  #page_customer_subs_orders .c-account_table__product__img {
    width: 48px;
    flex: 0 0 48px;

  }

  #page_customer_subs_orders .c-account_table__product__info {
    min-width: 0;
    padding-left: 0;

  }

  #page_customer_subs_orders .c-account_table__product__info__title {
    line-height: 1.7;
    word-break: normal;
    overflow-wrap: anywhere;

  }

  #page_customer_subs_orders .c-account_table__edit {
    justify-content: center;
    width: 100%;
    min-height: 44px;
    border: 1px solid rgba(68, 73, 82, 0.18);
    text-align: center;
    text-decoration: none;

  }

  .customer_panel .p-payment_list__add__win {
    margin-top: 16px;

  }

  body.is_customer_shell .p-account__inner {
    display: block;

  }

  body.is_customer_shell .p-account__inner__menu, body.is_customer_shell .p-account__inner__content {
    width: 100%;

  }

  body.is_customer_shell .p-account__inner__menu {
    margin-bottom: 28px;

  }

  body.is_customer_shell .p-account__inner__content__title, body.is_customer_shell .p-list_header__inner__title, body.is_marketing_shell .p-list_header__inner__title {
    font-size: 28px;

  }

  body.is_customer_shell .p-subscription_edit__block, body.is_customer_shell .p-smaregi, body.is_auth_shell .p-account_form__inner {
    padding: 22px 18px;

  }

  body.is_customer_shell .p-subscription_edit__block__title, body.is_customer_shell .p-subscription_detail__block__head__title {
    font-size: 22px;

  }

  body.is_customer_shell .p-account__inner__content__form__bottom, body.is_auth_shell .p-account_form__inner__bottom {
    display: block;

  }

  body.is_customer_shell .p-account__inner__content__form__bottom__btn, body.is_customer_shell .p-subscription_detail__block__head__btn, body.is_auth_shell .p-account_form__inner__bottom__btn, body.is_auth_shell .p-account_form__inner__bottom__mailbtn {
    width: 100%;
    justify-content: center;

  }

  body.is_customer_shell .p-account__inner__content__form__bottom__link, body.is_customer_shell .p-account__inner__content__form__bottom__link--deletebtn {
    margin-top: 14px;

  }

  #category_index_main {
    padding-top: 25px;

  }

  .static_page_wrap {
    max-width: 700px;

  }

  .static_page_text {
    font-size: 13px;
    line-height: 2.1;

  }

  .static_page_content table, .static_page_content tbody, .static_page_content tr, .static_page_content th, .static_page_content td {
    display: block;
    width: 100%;

  }

  .static_page_content table {
    margin-top: 20px;

  }

  .static_page_content table th, .static_page_content table td {
    padding: 0;

  }

  .static_page_content table tr {
    padding: 18px 0;
    border-top: 1px solid rgba(68, 73, 82, 0.08);

  }

  .static_page_content table tr:last-child {
    border-bottom: 1px solid rgba(68, 73, 82, 0.08);

  }

  .static_page_content table tr:last-child th, .static_page_content table tr:last-child td {
    border-bottom: none;

  }

  .static_page_content table th, .static_page_content table td {
    border-top: none;

  }

  .static_page_content table th {
    width: 100%;
    margin-bottom: 6px;
    font-size: 13px;

  }

  .static_page_content table td {
    font-size: 13px;
    line-height: 2;

  }

  .review_post_block {
    margin-top: 32px;
    padding-top: 24px;

  }

  .review_post_block .p-review__inner__entry {
    padding: 0;

  }

  .review_post_block .p-review__inner__entry__content {
    padding: 28px 20px;

  }

  .review_post_block .p-review__inner__entry__btn, .review_post_block .p-review__inner__entry__content__form__submit {
    min-height: 54px;
    max-width: 100%;

  }

}

.common_button button, .form_submit button, .common_button input[type="submit"], .form_submit input[type="submit"] {
  width: 100%;
  max-width: 400px;
  min-height: 60px;
  background: var(--c_blue);
  color: var(--c_text);
  border-radius: 0 24px 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 0.12em;
  position: relative;
  transition: .45s;
  overflow: hidden;
  border: 0;
  font-family: inherit;
  cursor: pointer;
  appearance: none;
}

.common_button button:after, .form_submit button:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(11, 22, 92, 0.15), rgba(11, 22, 92, 0));
  transition: width .45s cubic-bezier(.22,1,.36,1);
  z-index: 0;
  pointer-events: none;
}

.common_button.is_disabled button, .common_button.is_disabled input[type="submit"] {
  pointer-events: none;
  opacity: .35;
  cursor: default;
}

@media screen and (max-width: 899px) {
  .form_label {
    padding-top: 0;

  }

}

.customer_points_table th, .customer_points_table td {
  padding-right: 12px;
  padding-left: 12px;
  white-space: nowrap;
}

.customer_invite_link {
  margin: 0 0 6px;
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  word-break: break-all;
}

.customer_invite_copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 28px;
  padding: 0 12px;
  background: var(--c_base);
  color: var(--c_text);
  border: 0;
  border-radius: 0 12px 0 12px;
  font-size: 11px;
  letter-spacing: 0.08em;
  cursor: pointer;
  font-family: inherit;
  appearance: none;
}

.customer_points_limit_note {
  margin-top: 18px;
  font-size: 12px;
  line-height: 1.8;
  letter-spacing: 0.08em;
  color: var(--c_note_dark);
}

@media screen and (max-width: 899px) {
  .customer_points_limit_note {
    font-size: 11px;

  }

}

.customer_pagination {
  margin-top: 18px;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
}

.customer_pagination_prev, .customer_pagination_next, .customer_pagination_item {
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.customer_pagination_prev a, .customer_pagination_next a, .customer_pagination_item a, .customer_pagination_item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  min-height: 32px;
  padding: 0 6px;
  border: 1px solid rgba(68, 73, 82, 0.16);
  background: #fff;
  color: var(--c_base);
}

.customer_pagination_item.is_current span {
  background: var(--c_base);
  color: var(--c_text);
  border-color: var(--c_base);
}

.customer_subs_orders_edit_block .form_submit a, .customer_subs_orders_edit_block .form_submit button {
  max-width: 150px;
  min-height: 54px;
}

#skip-next-delivery-view.customer_subs_orders_edit_block .form_submit a, #skip-next-delivery-view.customer_subs_orders_edit_block .form_submit button {
  max-width: 256px;
}

.customer_subs_orders_edit_radio_group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.customer_subs_orders_edit_all_point {
  margin-bottom: 8px;
}

@media screen and (max-width: 899px) {
  .customer_subs_orders_edit_block {
    padding-top: 24px;

  }

  .customer_subs_orders_edit_block .form_submit a, .customer_subs_orders_edit_block .form_submit button {
    max-width: 180px;
    min-height: 50px;

  }

  #skip-next-delivery-view.customer_subs_orders_edit_block .form_submit a, #skip-next-delivery-view.customer_subs_orders_edit_block .form_submit button {
    max-width: 180px;

  }

}

/* === 注文入力ページ：bundle.css の #view-payment-information > * { max-width:720px } を打消し === */
#view-payment-information > * {
  max-width: none;
}

/* === bundle.css の jquery-validation-engine 用 .formError スタイルが
       OCQUA の .form_row.formError と衝突して非表示化するのを防ぐ safety。
       display は元の値を維持するため override しない（.form_row は display:grid のまま）。 === */
.form_row.formError,
.form_check.formError,
.check_agree.formError,
.contact_agree.formError,
.login_check.formError {
  width: auto !important;
  height: auto !important;
  background: none !important;
  color: inherit !important;
  padding: inherit !important;
  margin: inherit !important;
  inset: auto !important;
  position: relative !important;
  opacity: 1 !important;
  z-index: auto !important;
  visibility: visible !important;
}

/* === お問い合わせ完了ページのみ：メールアドレス枠の下に余白を確保（他ページには影響させない） === */
#page_contact_complete .order_complete_lead {
  text-align: center;
}

#page_contact_complete .order_complete_meta {
  text-align: center;
  margin-bottom: 30px;
}

#page_contact_complete .order_complete_action {
  display: flex;
  justify-content: center;
  gap: 16px;
}

#page_contact_complete .order_complete_action .common_button {
  margin: 0;
}

/* === クレジットカード追加フォームの「追加をキャンセル」リンクの下に余白を追加 === */
#page_customer_cards .customer_cards_edit_cancel {
  margin-bottom: 30px;
}

@media screen and (max-width:899px) {
  #page_contact_complete .order_complete_lead {
    text-align: left;
  }

  #page_contact_complete .order_complete_action {
    flex-direction: column;
    gap: 12px;
  }
}

/* === カテゴリ詳細：肌の悩みから選ぶ モーダル === */
#page_category .section_head_sub {
  margin-bottom: 24px;
}

#page_category .category_head_actions {
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  text-align: left;
}

#page_category .category_count {
  margin-left: auto;
  text-align: left;
}

.category_concern_button.common_button._small {
  flex-shrink: 0;
}

.category_concern_button.common_button._small button {
  width: 100%;
  max-width: none;
  min-width: 260px;
  min-height: 48px;
  padding: 0 18px 0 20px;
  border: 1px solid rgba(68, 73, 82, 0.24);
  background: transparent;
  color: var(--c_base);
  border-radius: 0 18px 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

.category_concern_button.common_button._small button:after {
  display: none;
}

.category_concern_button_text {
  display: block;
  text-align: left;
}

.category_concern_button_icon {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  position: relative;
}

.category_concern_button_icon:before,
.category_concern_button_icon:after {
  content: "";
  background: currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.category_concern_button_icon:before {
  width: 10px;
  height: 1px;
}

.category_concern_button_icon:after {
  width: 1px;
  height: 10px;
}

.p-category_concern_modal .c-modal__content {
  width: min(100%, 760px);
  max-width: 760px;
  max-height: calc(100svh - 64px);
  padding: 52px 40px 50px;
  border: 1px solid rgba(68, 73, 82, 0.12);
  background: #fff;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.p-category_concern_modal .c-modal__close {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(68, 73, 82, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  position: absolute;
  top: 18px;
  right: 18px;
  cursor: pointer;
}

.p-category_concern_modal__body {
  display: block;
}

.p-category_concern_modal .c-modal__close:before,
.p-category_concern_modal .c-modal__close:after {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--c_base);
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  -webkit-mask-image: none;
          mask-image: none;
}

.p-category_concern_modal .c-modal__close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.p-category_concern_modal .c-modal__close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.p-category_concern_modal[open] .c-modal__content {
  animation: categoryConcernModalFadeIn .24s ease;
}

.p-category_concern_modal[open]::backdrop {
  animation: fade-in .24s ease;
}

.p-category_concern_modal__group + .p-category_concern_modal__group {
  margin-top: 40px;
}

.p-category_concern_modal__subhead {
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1;
  text-align: left;
}

.p-category_concern_modal__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.p-category_concern_modal__list.select_list {
  gap: 12px;
}

.p-category_concern_modal__list.select_list li a {
  border-color: rgba(68, 73, 82, 0.2);
  color: var(--c_base);
}

@media screen and (max-width:899px) {
  #page_category .section_head_sub {
    margin-bottom: 18px;
  }

  #page_category .category_head_actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: left;
  }

  #page_category .category_count {
    margin-bottom: 0;
    margin-left: 0;
    grid-row: 1;
    justify-self: end;
    text-align: right;
  }

  .category_concern_button.common_button._small {
    display: block;
    min-width: 0;
    grid-row: 2;
  }

  .category_concern_button.common_button._small button {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 16px 0 18px;
    border-radius: 0 16px 0 16px;
    font-size: 13px;
  }

  .category_concern_button_icon {
    width: 10px;
    height: 10px;
  }

  .category_concern_button_icon:before {
    width: 10px;
  }

  .category_concern_button_icon:after {
    height: 10px;
  }

  .p-category_concern_modal .c-modal__content {
    width: calc(100vw - 20px);
    max-width: none;
    max-height: calc(100svh - 24px);
    padding: 30px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .p-category_concern_modal .c-modal__close {
    top: 12px;
    right: 12px;
  }

  .p-category_concern_modal__body {
    display: block;
  }

  .p-category_concern_modal__group + .p-category_concern_modal__group {
    margin-top: 28px;
  }

  .p-category_concern_modal__subhead {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .p-category_concern_modal__list.select_list {
    gap: 10px;
  }

  .p-category_concern_modal__list.select_list li a {
    padding: 7px 15px 8px;
    font-size: 12px;
  }
}

@keyframes categoryConcernModalFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* =====================
  campaign
===================== */

.campaign_wrap {
  width: 100%;
  max-width: 930px;
  margin: 0 auto;
  position: relative;
}

#page_campaign #container {
  position: relative;
}

#page_campaign #fv .section_label.dark,
#page_campaign #fv .section_head_sub {
  color: var(--c_text);
}

.campaign_bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.campaign_bg img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  object-position: center;
}

.campaign_bg:before,
.campaign_bg:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.campaign_bg:before {
  display: none;
}

.campaign_bg:after {
  background-color: rgba(0, 0, 0, 0.34);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.1' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='120' height='120' filter='url(%23n)' opacity='0.12'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 120px 120px;
  opacity: 1;
}

.campaign_inner {
  position: relative;
}

.campaign_intro {
  max-width: none;
  margin: 0 auto 88px;
  padding: 0;
  text-align: center;
  position: relative;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.campaign_intro:before {
  display: none;
}

.campaign_lead {
  margin: 0;
  font-family: var(--font_mincho);
  font-size: 30px;
  line-height: 2.05;
  letter-spacing: 0.12em;
  font-weight: 400;
  color: var(--c_text);
}

.campaign_lead span {
  display: inline-block;
  margin: 0 5px;
  padding: 2px 8px 8px 10px;
  color: var(--c_text);
  position: relative;
  line-height: 1;
  background: rgba(238, 242, 244, 0.2);
}

.campaign_flow {
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.campaign_flow_title {
  margin: 0 0 36px;
  text-align: center;
  font-size: 21px;
  line-height: 1.9;
  position: relative;
  color: var(--c_text);
}

.campaign_flow_title:after {
  display: none;
}

.campaign_flow_list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.campaign_step {
  display: flex;
  align-items: stretch;
  box-shadow: 0 20px 38px rgba(8, 12, 29, 0.18);
  position: relative;
  overflow: hidden;
  padding: 35px 40px 45px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.campaign_step + .campaign_step {
  margin-top: 20px;
}

.campaign_step_label {
  width: 126px;
  padding: 24px 22px;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 400;
  flex-shrink: 0;
  position: relative;
  display: block;
}

.campaign_step_label:before,
.campaign_step_label:after {
  display: none;
}

.campaign_step_body {
  flex: 1;
  padding: 22px 34px 24px;
}

.campaign_step_title {
  margin: 0 0 10px;
  font-family: var(--font_mincho);
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.1em;
  font-weight: 400;
  color: var(--c_text);
  text-shadow: 0 1px 14px rgba(8, 12, 29, 0.18);
}

.campaign_step_text,
.campaign_step_note {
  margin: 0;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 1px 12px rgba(8, 12, 29, 0.14);
}

.campaign_step_note {
  color: rgba(255, 255, 255, 0.72);
}

.campaign_step_text + .campaign_step_note {
  margin-top: 10px;
}

@media screen and (max-width: 1280px) {
  .campaign_wrap {
    padding-top: 8px;
  }

  .campaign_step_body {
    min-height: 112px;
  }
}

@media screen and (max-width: 899px) {
  .campaign_wrap {
    max-width: 100%;
    padding-top: 0;
  }

  .campaign_intro {
    margin-bottom: 56px;
  }

  .campaign_lead {
    font-size: 22px;
    line-height: 1.9;
  }

  .campaign_flow_title {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.8;
  }

  .campaign_step {
    display: block;
    box-shadow: 0 14px 28px rgba(68, 73, 82, 0.06);
    padding: 10px 15px 20px;
  }

  .campaign_step + .campaign_step {
    margin-top: 14px;
  }

  .campaign_step_label {
    width: 100%;
    padding: 16px 18px 0;
    background: transparent;
  }

  .campaign_step_body {
    padding: 6px 18px 18px;
  }

  .campaign_step_title {
    font-size: 16px;
    line-height: 1.75;
  }
}
