﻿@charset "UTF-8";
/* ========================================
 base
======================================== */
:root {
  --font-en: YakuHanJP, "Shippori Mincho", serif;
  --font-common: YakuHanJP, "Shippori Mincho", serif;
  --font-ttl: "Zen Old Mincho", serif;
  --color-blue: #000073;
  --color-gray-b: #333;
  --color-gray-c: #666;
  --color-gray-e: #F2F2F2;
  --color-gray-d: #dddddd;
  --color-gold: #CBAA66;
  --color-pink: #FF0076;
  --color-green: #00B900;
}
body {
  font-family: var(--font-common);
  color: var(--color-gray-b);
  letter-spacing: 0.1em;
}
main p {
  line-height: 1.8;
  letter-spacing: 0.1em;
}
a {
  transition: all 0.3s;
  opacity: 1;
}
a:hover {
  opacity: 0.7;
}

/* ========================================
 common
======================================== */
.font_noto {
  font-family: "Noto Sans JP", sans-serif;
}
.pc_none {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc_none {
    display: block;
  }
}
.sp_none {
  display: block;
}
@media screen and (max-width: 767px) {
  .sp_none {
    display: none;
  }
}
.txt_required {
  color: var(--color-gold);
}

/*  breadcrumb
-------------------- */
.c-breadcrumb-item:not(:last-child):after {
    content: "";
    margin-inline: 12px;
    padding: 0;
    width: 12px;
    height: 1px;
    background: #1a1a1a;
}
.c-breadcrumb-item:last-child {
  color: #1a1a1a;
}
.c-breadcrumb-item__link {
  opacity: 1;
  transition: all 0.3s;
}
.c-breadcrumb-item__link:hover {
  text-decoration: none;
  opacity: 0.7;
}
/* m-breadcrumb--dark */
.m-breadcrumb--dark {
  color: #fff;
}
.m-breadcrumb--dark .m-breadcrumb a {
  color: #fff;
}
.m-breadcrumb--dark .c-breadcrumb-item__current  {
  color: #fff;
}
.m-breadcrumb--dark .c-breadcrumb-item:not(:last-child):after {
    background: #fff;
}
.l-container-wrap__head .l-container {
  padding-left: 0;
  padding-right: 0;
  max-width: initial;
}
@media screen and (min-width: 768px) {
.l-container-wrap__head .l-container {
  padding-left: 0;
  padding-right: 0;
  max-width: 1440px;
}
}
.l-container-wrap__head .m-breadcrumb {
  margin: 0 0 54px;
  padding: 15px 40px;
  background: var(--color-gray-e);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 767px) {
.l-container-wrap__head .m-breadcrumb {
  margin-top: 40px;
  margin-bottom: 20px;
}
}
.c-breadcrumb-list {
  font-size: 1.2rem;
}
.c-breadcrumb-item:not(:last-child):after {
    content: "";
    margin-inline: 12px;
    padding: 0;
    width: 12px;
    height: 1px;
    background: #1a1a1a;
}
.c-breadcrumb-item:last-child {
  color: #1a1a1a;
}
.c-breadcrumb-item__link {
  opacity: 1;
  transition: all 0.3s;
}
.c-breadcrumb-item__link:hover {
  text-decoration: none;
  opacity: 0.7;
}

/*  btn
-------------------- */
.btn {
  margin-top: 20px;
  text-align: center;
}
.btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 0 40px;
  height: 55px;
  color: var(--color-blue);
  font-size: 2rem;
  white-space: nowrap;
  border: 1px solid var(--color-blue);
  border-radius: 100px;
  background-color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.btn a::after {
  content: "";
  margin-left: 20px;
  width: 20px;
  height: 11px;
  background: url("/Contents/Feature/icon_arrow.svg") no-repeat;
}
.btn a:hover {
  color: #fff;
  background-color: var(--color-blue);
  opacity: 1;
}
.btn a:hover::after {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
@media screen and (max-width: 991px) {
  .btn a {
    position: relative;
    width: 100%;
    max-width: 350px;
    min-width: 240px;
    height: 52px;
    font-size: 1.6rem;
    padding: 0 40px;
  }
  .btn a::after {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
  }
}
@media screen and (max-width: 360px) {
  .btn a {
    width: 90%;
  }
}
.btn__no-arrow {
  margin-top: 0;
  text-align: center;
}
.btn__no-arrow a {
  padding: 0 29px;
  height: 34px;
  font-size: 1.6rem;
}
@media screen and (max-width: 991px) {
.btn__no-arrow a {
  height: 40px;
}
}
.btn__no-arrow a::after {
  content: none;
}

/* c-btn */
.c-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 10px 40px;
  max-width: 426px;
  min-width: 240px;
  color: var(--color-blue) !important;
  font-size: 2rem;
  white-space: nowrap;
  border: 1px solid var(--color-blue);
  border-radius: 100px;
  background-color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.c-btn::after {
  content: "";
  margin-left: 20px;
  width: 20px;
  height: 11px;
  background: url("/Contents/Feature/icon_arrow.svg") no-repeat;
}
.c-btn:hover {
  color: #fff !important;
  background-color: var(--color-blue);
  opacity: 1;
}
.c-btn:hover::after {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
@media screen and (max-width: 991px) {
  .c-btn {
    position: relative;
    width: 100%;
    max-width: 350px;
    min-width: 240px;
    font-size: 1.6rem;
    padding: 10px 40px;
  }
  .c-btn::after {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
  }
}
@media screen and (max-width: 360px) {
  .c-btn {
    width: 90%;
  }
}

/* c-btn-progress */
.c-btn-progress {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding-block: 10px;
  max-width: 426px;
  min-width: 240px;
  height: 55px;
  color: #fff !important;
  font-size: 2rem;
  white-space: nowrap;
  border: 1px solid var(--color-blue);
  border-radius: 100px;
  background-color: var(--color-blue);
  transition: all 0.3s;
}
@media screen and (max-width: 991px) {
.c-btn-progress {
  font-size: 1.6rem;
}
}
@media screen and (max-width: 767px) {}
.c-btn-progress::after {
  content: "";
  margin-left: 20px;
  width: 20px;
  height: 11px;
  background: url("/Contents/Feature/icon_arrow_white.svg") no-repeat;
}
.c-btn-progress:hover {
  color: var(--color-blue) !important;
  background-color: #fff;
  opacity: 1;
}
.c-btn-progress:hover::after {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
.c-btn-progress input[type="button"] {
  appearance: none;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  font-family: inherit;
  display: block;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
.c-btn-progress input[type="button"] {
  font-size: 1.6rem;
}
}
.c-btn-progress:hover input[type="button"] {
  color: var(--color-blue);
}

/* .c-btn-cart */
.c-btn-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 0 10px !important;
  height: 55px;
  color: var(--color-blue) !important;
  font-size: 2rem;
  font-weight: normal;
  white-space: nowrap;
  border: 1px solid var(--color-blue);
  border-radius: 100px !important;
  background-color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
  column-gap: 0;
}
.c-btn-cart::before {
  content: none;
}
.c-btn-cart::after {
  content: "";
  margin-left: 20px;
  width: 20px;
  height: 11px;
  background: url("/Contents/Feature/icon_arrow.svg") no-repeat;
}
.c-btn-cart:hover {
  color: #fff !important;
  background-color: var(--color-blue);
  opacity: 1;
}
.c-btn-cart:hover::after {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
@media screen and (max-width: 991px) {
  .c-btn-cart {
    position: relative;
    width: 100%;
    max-width: 350px;
    min-width: 240px;
    height: 52px;
    font-size: 1.6rem;
    padding: 0 40px;
  }
  .c-btn-cart::after {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
  }
}
@media screen and (max-width: 360px) {
  .c-btn-cart {
    width: 90%;
  }
}

/* c-btn-fluid--gray */
.c-btn-fluid--gray {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 10px 40px;
  max-width: 426px;
  min-width: 240px;
  color: var(--color-blue) !important;
  font-size: 2rem;
  white-space: nowrap;
  border: 1px solid var(--color-blue) !important;
  border-radius: 100px;
  background-color: #fff !important;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.c-btn-fluid--gray::after {
  content: "";
  margin-left: 20px;
  width: 20px;
  height: 11px;
  background: url("/Contents/Feature/icon_arrow.svg") no-repeat;
}
.c-btn-fluid--gray:hover {
  color: #fff !important;
  background-color: var(--color-blue);
  opacity: 1;
}
.c-btn-fluid--gray:hover::after {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
@media screen and (max-width: 991px) {
  .c-btn-fluid--gray {
    position: relative;
    width: 100%;
    max-width: 350px;
    min-width: 240px;
    font-size: 1.6rem;
    padding: 10px 40px;
  }
  .c-btn-fluid--gray::after {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
  }
}
@media screen and (max-width: 360px) {
  .c-btn-fluid--gray {
    width: 90%;
  }
}
.c-btn-fluid:disabled {
  color: var(--color-blue) !important;
}

/* c-btn-fluid--border */
.c-btn-fluid--border {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 10px 40px;
  max-width: 426px;
  min-width: 240px;
  height: 55px;
  color: var(--color-blue) !important;
  font-size: 2rem;
  white-space: nowrap;
  border: 1px solid var(--color-blue);
  border-radius: 100px;
  background-color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.c-btn-fluid--border::after {
  content: "";
  margin-left: 20px;
  width: 20px;
  height: 11px;
  background: url("/Contents/Feature/icon_arrow.svg") no-repeat;
}
.c-btn-fluid--border:hover {
  color: #fff !important;
  background-color: var(--color-blue);
  opacity: 1;
}
.c-btn-fluid--border:hover::after {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
@media screen and (max-width: 991px) {
  .c-btn-fluid--border {
    position: relative;
    width: 100%;
    max-width: 350px;
    min-width: 240px;
    font-size: 1.6rem;
    padding: 10px 40px;
  }
  .c-btn-fluid--border::after {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
  }
}
@media screen and (max-width: 360px) {
  .c-btn-fluid--border {
    width: 90%;
  }
}
/* c-btn-anchor */
.c-btn-anchor {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 10px 40px;
  max-width: 426px;
  color: var(--color-blue) !important;
  font-size: 2rem;
  white-space: nowrap;
  border: 1px solid var(--color-blue);
  border-radius: 100px !important;
  background-color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.c-btn-anchor:hover {
  color: #fff !important;
  background-color: var(--color-blue);
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .c-btn-anchor {
    position: relative;
    width: 100%;
    max-width: 350px;
    font-size: 1.6rem;
    padding: 10px 40px !important;
  }
}
@media screen and (max-width: 360px) {
  .c-btn-anchor {
    width: 90%;
  }
}

/* c-btn-fluid--red */
.c-btn-fluid--red {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 0 10px;
  max-width: 130px;
  height: 40px;
  color: var(--color-blue) !important;
  font-size: 1.6rem;
  white-space: nowrap;
  border: 1px solid var(--color-blue);
  border-radius: 100px;
  background-color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
.c-btn-fluid--red {
  max-width: none;
  min-width: 130px;
}
}
.c-btn-fluid--red:hover {
  color: #fff !important;
  background-color: var(--color-blue);
  opacity: 1;
}

/* .c-btn-progress:disabled */
.c-btn-progress:disabled::after {
  content: none;
}
.c-btn-progress:disabled:hover {
  border-color: var(--color-gray-light);
  background-color: var(--color-gray-light);
  color: var(--color-gray-middle) !important;
  cursor: default;
}
.c-btn-progress:disabled:hover::after {
  content: none;
}

/* btn--back */
.btn--back {}
.btn--back a::after {
  content: none;
}
.btn--back a::before {
  content: "";
  margin-right: 20px;
  width: 20px;
  height: 11px;
  background: url("/Contents/Feature/icon_arrow_back.svg") no-repeat;
}
.btn--back a:hover::before {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}


/*  link
-------------------- */
.link_txt {
  display: inline;
  position: relative;
  color: var(--color-blue);
  font-size: 1.6rem;
}
.link_txt::after {
  content: "";
  position: absolute;
  left: 0;
  height: 2px;
  bottom: -4px;
  background-color: var(--color-blue);
  width: 100%;
  transition: all 0.3s;
}
.link_txt:hover::after {
  content: none;
}

/*  ttl
-------------------- */
.c-page-ttl {
  margin-bottom: 40px;
  font-family: var(--font-ttl);
  font-size: 4rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 991px) {
.c-page-ttl {
  margin-bottom: 20px;
  font-size: 2.4rem;
  text-align: center;
}
}
.c-page-ttl-sup {
  display: block;
  margin-bottom: 3px;
  color: var(--color-gold);
  font-size: 1.6rem;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.08em;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media screen and (max-width: 991px) {
.c-page-ttl-sup {
  margin-bottom: 5px;
  font-size: 1.4rem;
}
}
.sec_ttl {
  margin-bottom: 60px;
  font-family: var(--font-ttl);
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 991px) {
.sec_ttl {
  margin-bottom: 40px;
  font-size: 3.6rem;
  letter-spacing: 0.04em;
}
}
.sec_ttl_sup {
  display: block;
  margin-bottom: 3px;
  color: var(--color-gold);
  font-size: 1.6rem;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 991px) {
.sec_ttl_sup {
  font-size: 1.4rem;
}
}
.sub_ttl {
  margin-bottom: 60px;
  padding: 5px 0;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.04em;
  background: var(--color-gray-e);
  border-radius: 10px;
}
@media screen and (max-width: 991px) {
.sub_ttl {
  margin-bottom: 30px;
  padding: 8px 0;
  font-size: 2rem;
  border-radius: 5px;
}
}
.sec_lead {
  margin-bottom: 10px;
  font-size: 1.6rem;
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 991px) {
.sec_lead {
  font-size: 1.4rem;
}
}

/*  layout
-------------------- */
.c-layout-m {
  margin-inline: auto;
  width: 78.2%;
}
@media screen and (max-width: 1225px) {
.c-layout-m {
  margin-inline: 40px;
  width: auto;
}
}
@media screen and (max-width: 991px) {
.c-layout-m {
  margin-inline: auto;
  width: 90%;
}
}
@media screen and (min-width: 768px) {
  .l-container-sm {
    width: 100%;
    max-width: 1126px;
    padding: 0;
  }
}
@media screen and (max-width: 1126px) {
.l-container-sm {
    padding-inline: 2%;
}
}
@media screen and (min-width: 768px) {
  .l-container-fluid-md.l-container {
    width: 100%;
    max-width: 1360px;
    padding: 0;
  }
}
@media screen and (max-width: 1360px) {
.l-container-fluid-md.l-container {
    padding-inline: 2%;
}
}
@media screen and (min-width: 768px) {
    .l-container {
        padding-left: 2rem;
        padding-right: 2rem;
        max-width: 1360px;
    }
}
@media screen and (min-width: 768px) {
    .l-container-wrap__body {
        padding-top: 0;
        padding-bottom: 8rem;
    }
}

/*  c-two-column
-------------------- */
.c-two-column {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
.c-two-column {
  flex-direction: column;
}
}
.c-two-column--align-center {
  align-items: center;
}
.c-two-column__item {
  width: 48.2%;
}
@media screen and (max-width: 991px) {
.c-two-column__item {
  margin-bottom: 30px;
  width: 100%;
}
.c-two-column__item:last-of-type {
  margin-bottom: 0;
}
}
.c-two-column__img {
  width: 100%;
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
.c-two-column__img {
  border-radius: 10px;
}
}
.c-two-column__ttl {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media screen and (max-width: 991px) {
.c-two-column__ttl {
  margin-bottom: 12px;
  font-size: 2rem;
}
}
.c-two-column__img + .c-two-column__ttl {
  margin: 20px 0 5px;
}
.c-two-column__desc {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 991px) {
.c-two-column__desc {
  font-size: 1.4rem;
}
}

/*  form
-------------------- */
input[type=text],
input[type=password],
input[type=tel],
input[type=email],
input[type=text],
input[type=number] {
  background: none;
  box-sizing: border-box;
  display: flex;
  padding: 5px 10px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: inset 0px 3px 0px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}
select {
  box-sizing: border-box;
  padding: 7px 10px;
  background:
    url(../../assets/img/common/icon/icon-arrow-select.svg) no-repeat calc(100% - 1.2rem) center / 15px 15px,
    linear-gradient(180deg, #fff 0%, #F2F2F2 100%);
  border: 1px solid #ddd;
  border-radius: 5px;
}
textarea {
  background: none;
  box-sizing: border-box;
  display: flex;
  padding: 5px 10px;
  background: #fff;
  border: 1px solid #ddd;
  box-shadow: inset 0px 3px 0px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}
textarea::placeholder {
  color: #ccc;
  opacity: 1;
}
@media screen and (max-width: 767px) {
.c-formInput-item__col2,
.c-formInput-item__zipcode {
  flex-direction: column;
}
}
.c-formInput-item:not(:last-of-type) {
  margin-bottom: 10px;
}
input[type=radio] {
    width: 20px;
    height: 20px;
}
input[type=radio]:checked {
    border: 5px solid var(--color-blue);
    background: none;
}
input[type=radio]:checked:after {
    background: none;
}
input[type=checkbox] {
  border-radius: 5px;
  border-color: var(--color-gray-d);
}
input[type=checkbox]:checked {
  background-color: var(--color-blue);
  border-color: var(--color-blue);
}

/*  stepbar
-------------------- */
@media screen and (min-width: 768px) {
.m-formHeading-head__stepBar {
    margin-top: 13px;
}
}
.m-formHeading-head__stepBar {
    border: none;
}
@media screen and (min-width: 768px) {
    .c-stepbar-five {
        min-width: 30rem;
    }
}
.c-stepbar-three,
.c-stepbar-four,
.c-stepbar-five {
  align-items: end;
}
.c-stepbar-three__text,
.c-stepbar-four__text,
.c-stepbar-five__text {
  padding-bottom: 24px;
  color: var(--color-blue);
  line-height: 1.5;
}
.c-stepbar-three__text:before,
.c-stepbar-four__text:before,
.c-stepbar-five__text:before {
  width: 16px;
  height: 16px;
  border: solid 2px var(--color-blue);
}
.c-stepbar-three__text--active:before,
.c-stepbar-four__text--active:before,
.c-stepbar-five__text--active:before {
  border-color: var(--color-blue);
  background-color: var(--color-blue);
}
.c-stepbar-four__item:after,
.c-stepbar-five__item:after {
  height: 2px;
  width: 30px;
  left: 75%;
  background-color: var(--color-gray-d);
}
.c-stepbar-four__item:first-child:after,
.c-stepbar-five__item:first-child:after {
  width: 30px;
  left: 73%;
}
.c-stepbar-three__item:after {
  height: 2px;
  width: 30px;
  left: 86%;
  background-color: var(--color-gray-d);
}
.c-stepbar-three__item:first-child:after {
  width: 30px;
  left: 60%;
}
@media screen and (max-width: 767px) {
.m-formHeading-head__stepBar {
    padding-bottom: 0;
    margin-bottom: 16px;
    border-bottom: none;
}
}
@media screen and (max-width: 767px) {
.m-formHeading-head__stepBar-inner {
    width: 86%;
}
}

/* ========================================
 header
======================================== */
.s-header {
  height: 7rem;
}
@media screen and (min-width: 992px) {
    .s-header {
        height: 8rem;
    }
}
.s-header-wrap {
  justify-content: flex-start;
  height: 7rem;
}
@media screen and (min-width: 992px) {
    .s-header-wrap {
        padding: 0 4rem;
        height: 8rem;
    }
}
.s-header-navBlok__openBtn {
  position: relative;
  top: 0;
  left: 3px;
  width: 2.6rem;
  height: 2.6rem;
}
.s-header-navBlok__openBtn.active {
  width: 2.4rem;
  height: 3rem;
}
.s-header-navBlok__openBtn .menu_txt {
  position: absolute;
  bottom: -18px;
  transform: scale(0.8);
  color: var(--color-blue);
  font-size: 1rem;
  font-family: "Noto Sans JP", sans-serif;
  white-space: nowrap;
}
.s-header-navBlok__openBtn.active  .menu_txt {
  bottom: -14px;
}
.s-header-navBlok__openBtn .text-close {
  display: none;
}
.s-header-navBlok__openBtn.active .text-menu {
  display: none;
}
.s-header-navBlok__openBtn.active .text-close {
  display: block;
}
#global_freeWordSearch {
  color: var(--color-blue);
}
.s-header-wrap__utility {
  width: 15em;
}
@media screen and (min-width: 1200px) {
.s-header-wrap__utility {
    column-gap: 2.5rem;
}
}
@media screen and (max-width: 991px) {
.s-header-wrap__utility {
  margin-right: 13px;
}
}
.s-header-utilityList {
  align-items: center;
  gap: 0 24px;
}
@media screen and (max-width: 991px) {
.s-header-utilityList {
  margin-top: 2px;
  gap: 0 20px;
}
}
@media screen and (max-width: 389px) {
.s-header-utilityList {
  gap: 0 10px;
}
}
.s-header-utilityList__item {
  width: 24px;
}
.s-header-utilityList__item:last-of-type {
  width: 140px;
}
@media screen and (max-width: 991px) {
.s-header-utilityList__item:last-of-type {
  width: 72px;
}
}
@media screen and (min-width: 1200px) {
    .s-header-freeWordSearch {
        max-width: 24rem;
    }
}
@media screen and (max-width: 1200px) {
    .s-header-freeWordSearch {
        display: none;
    }
}
.s-header-utilityList__icon {
  opacity: 1;
  transition: all 0.3s ease;
  will-change: color, opacity;
}
.s-header-utilityList__icon:hover {
  opacity: 0.5;
}
.s-header-utilityList__icon--cart {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  height: 60px;
  background: var(--color-blue);
  border: 2px solid var(--color-blue);
  border-radius: 100px;
  transition: background 0.3s ease;
}
.s-header-utilityList__icon--cart:hover {
  background: #fff;
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .s-header-utilityList__icon--cart {
    width: 70px;
    height: 40px;
  }
}
.s-header-utilityList__icon--cart img {
  opacity: 0 !important;
  width: 100%;
  height: 100%;
}
.s-header-utilityList__icon--cart::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  bottom: 0;
  width: 24px;
  height: 24px;
  background: url("/Contents/Feature/icon_header_cart.svg") no-repeat center / contain;
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(235deg) brightness(109%) contrast(104%);
  z-index: 1;
}
.s-header-utilityList__icon--cart:hover::before {
  filter: invert(9%) sepia(75%) saturate(5603%) hue-rotate(243deg) brightness(69%) contrast(128%);
}
@media screen and (max-width: 991px) {
  .s-header-utilityList__icon--cart::before {
    top: 7px;
  }
}
.s-header-utilityList__icon--cart::after {
  content: "カート";
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-weight: bold;
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  transition: color 0.3s ease;
}
.s-header-utilityList__icon--cart:hover::after {
  color: var(--color-blue);
}
@media screen and (max-width: 991px) {
  .s-header-utilityList__icon--cart::after {
    content: none;
  }
}
.s-header-utilityList__icon--pc {
  display: block;
}
.s-header-utilityList__icon--sp {
  display: none;
}
@media screen and (max-width: 991px) {
.s-header-utilityList__icon--pc {
  display: none;
}
.s-header-utilityList__icon--sp {
  display: block;
}
}
.s-header__cartCnt {
  top: 0.2rem;
  right: 0.2rem;
  width: 28px;
  height: 28px;
  color: var(--color-blue);
  font-size: 1rem;
  background: #fff;
  border: 2px solid var(--color-blue);
  transition: all 0.3s ease;
}
.s-header-utilityList__icon--cart:hover .s-header__cartCnt {
  color: #fff;
  background: var(--color-blue);
}
@media screen and (max-width: 991px) {
  .s-header__cartCnt {
    top: -5px;
    right: -10px;
    transform: scale(0.714);
  }
}
.s-header-navBlok__nav {
  top: 7rem;
  padding-top: 0;
}

@media screen and (min-width: 992px) {
.s-header-userNav {
  top: 8rem;
}
}
.nav_box_sp {
  top: 7rem;
  padding: 40px 40px;
  color: #fff;
  background: var(--color-blue);
}
.nav_list_sp > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  padding-bottom: 10px;
  font-size: 1.6rem;
  border-bottom: 1px solid #fff;
}
.nav_list_sp > li > a::after {
  content: "";
  margin-left: 20px;
  width: 20px;
  height: 11px;
  background: url("/Contents/Feature/icon_arrow_white.svg") no-repeat;
}
.nav_list_sub_sp {
  margin: -20px 0 40px;
}
.nav_list_sub_sp li {
  margin-bottom: 10px;
}
.nav_list_sub_sp li ul {
  margin: 0.5em 0 0.5em 1em;
}
.nav_list_sub_sp li ul li {
  margin-bottom: 5px;
}
.nav_list_sub_sp a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav_list_sub_sp a::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: #fff;
}
@media screen and (min-width: 992px) {
    .s-header-miniCart.active {
        top: 120px;
    }
}
@media screen and (max-width: 991px) {
  .s-header-userNav {
    display: none;
  }
}

/*  s-headerModalBox__outer
-------------------- */
.s-headerModalBoxHeding__closeBtn {
  color: var(--color-blue);
}

/*  logo
-------------------- */
.s-header-wrap__logo {
  position: relative;
  left: 60px;
  width: 128px;
}
@media screen and (min-width: 992px) {
.s-header-wrap__logo {
  left: 0;
  width: 128px;
}
}
@media screen and (max-width: 389px) {
.s-header-wrap__logo {
  width: 25vw;
}
}

/*  header_link
-------------------- */
.header_link {
  padding-inline: 20px;
  color: var(--color-blue);
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.header_link a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  font-size: 1.4rem;
  border-bottom: 1px solid #fff;
}
.header_link a::after {
  content: "";
  margin-left: 20px;
  width: 20px;
  height: 11px;
  background: url("/Contents/Feature/icon_arrow.svg") no-repeat;
  filter: invert(9%) sepia(75%) saturate(5603%) hue-rotate(243deg) brightness(69%) contrast(128%);
}


/*  pc nav dropdown
-------------------- */
@media screen and (min-width: 992px) {
  .s-header-contentsNavBlock {
    padding-top: 1px;
    height: 79px;
  }
  .s-header-categoryNav__body {
    top: 80px;
    padding: 93px 0 102px;
    background: #eee;
  }
  .s-header-categoryNav:hover {
    border-color: #fff;
  }
}
@media screen and (max-width: 1200px) {
  .s-header-contentsNavBlock__item {
    font-size: 0.95vw;
  }
}
.s-header-contentsNavBlock__item a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-decoration: none;
}
.s-header-categoryNav__head {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 1.4rem;
  cursor: pointer;
}
.s-header-contentsNavBlock__item > a::after {
  content: "";
  position: absolute;
  left: 0;
  top: 67px;
  width: 0;
  height: 2px;
  background: var(--color-blue);
  transition: width 0.3s ease;
}
.s-header-contentsNavBlock__item:hover > a::after {
  width: 100%;
}
.s-header-categoryNav__head::after {
  content: "";
  position: absolute;
  left: 0;
  top: 67px;
  margin-left: 0;
  width: 0;
  height: 2px;
  background: var(--color-blue);
  transition: width 0.3s ease;
}
.s-header-contentsNavBlock__item.dropdown:hover .s-header-categoryNav__head::after {
  width: 100%;
}
@media screen and (min-width: 992px) {
.s-header-categoryNav__body {
  color: #fff;
  background: var(--color-blue);
}
}
.nav_dropdown_box {
  display: flex;
  justify-content: space-between;
  margin: 0 2.8%;
}
.nav_dropdown_list {
  width: 22.8%;
}
.nav_dropdown_list > li {
  margin-bottom: 34px;
}

.nav_dropdown_list > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 12px;
  font-size: 1.6rem;
  font-weight: bold;
  border-bottom: 1px solid #fff;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.nav_dropdown_list > li > a:hover {
  opacity: 0.5;
}
.nav_dropdown_list > li > a::after {
  content: "";
  margin-left: 20px;
  width: 20px;
  height: 11px;
  background: url("/Contents/Feature/icon_arrow_white.svg") no-repeat;
}
.nav_dropdown_list_sub a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.4rem;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.nav_dropdown_list_sub a:hover {
  opacity: 0.5;
}
.nav_dropdown_list_sub a::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: #fff;
}
.nav_dropdown_img_box {
  width: 22.8%;
  text-align: center;
}
.nav_dropdown_img_box a {
  display: block;
  padding-top: 5px;
  text-align: center;
  transition: opacity 0.3s ease;
  opacity: 1;
}
.nav_dropdown_img_box a:hover {
  opacity: 0.5;
}
.nav_dropdown_img_box img {
  display: block;
  width: 100%;
  border-radius: 5%;
}
.nav_dropdown_img_box p {
  margin-top: 10px;
}
.s-header-miniCart-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 0 10px !important;
  color: #fff;
  height: 40px;
  font-size: 1.6rem;
  font-weight: normal;
  white-space: nowrap;
  border: 1px solid var(--color-blue);
  border-radius: 100px !important;
  background-color: var(--color-blue);
  transition: background-color 0.3s ease, color 0.3s ease;
  column-gap: 0;
}
.s-header-miniCart-button a:hover {
  color: var(--color-blue) !important;
  background-color: #fff;
  opacity: 1;
}
@media screen and (max-width: 991px) {
  .s-header-miniCart-button a {
    position: relative;
    width: 100%;
    font-size: 1.6rem;
    padding: 0 40px;
  }
}
/* ========================================
 footer
======================================== */
.s-footer {
  padding: 82px 0 90px;
  color: #fff;
  background: var(--color-blue);
  border-radius: 40px 40px 0 0;
}
@media screen and (max-width: 991px) {
  .s-footer {
    padding: 51px 0 90px;
  }
}
.s-footer_inner {
  margin-inline: auto;
  max-width: 1222px;
}
@media screen and (max-width: 1222px) {
.s-footer_inner {
  padding-inline: 20px;
}
}
.s-footer a {
  display: block;
  transition: opacity 0.3s ease;
}
.s-footer a:hover {
  opacity: 0.5;
}
.footer_top_box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
.footer_top_box {
  flex-direction: column;
  padding-inline: 20px;
}
}
.footer_top_box .footer_logo {
  margin: 9px 9% 0 0;
  width: 158px;
  flex-shrink: 0;
}
@media screen and (max-width: 1439px) {
.footer_top_box .footer_logo {
  margin: 9px 3% 0 0;
}
}
@media screen and (max-width: 991px) {
.footer_top_box .footer_logo {
  margin: 10px auto 34px;
  width: 138px;
}
}
.footer_top_box .footer_top_layout {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}
@media screen and (max-width: 991px) {
.footer_top_box .footer_top_layout {
  flex-direction: column;
  gap: 0;
}
}
.footer_top_box .footer_top_nav01 {}
@media screen and (max-width: 991px) {
  .footer_top_box .footer_top_nav01 {
    margin-bottom: 24px;
  }
}
.footer_top_nav01 .nav_ttl {
  margin-bottom: 9px;
  font-family: var(--font-ttl);
}
.footer_top_nav01 .nav_ttl a {
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 991px) {
.footer_top_nav01 .nav_ttl a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 12px;
  font-size: 1.6rem;
  border-bottom: 1px solid #fff;
}
.footer_top_nav01 .nav_ttl a::after {
  content: "";
  margin-left: 20px;
  width: 20px;
  height: 11px;
  background: url("/Contents/Feature/icon_arrow_white.svg") no-repeat;
}
}
.footer_top_nav01 .nav_ttl a:hover {
  opacity: 0.5;
}
.footer_top_nav01 .nav_list li {
  margin-bottom: 7px;
}
@media screen and (max-width: 991px) {
  .footer_top_nav01 .nav_list li {
    margin-bottom: 2px;
  }
}
.footer_top_nav01 .nav_list a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 1.2rem;
}
@media screen and (max-width: 991px) {
  .footer_top_nav01 .nav_list a {
    gap: 9px;
    font-size: 1.4rem;
  }
}
.footer_top_nav01 .nav_list a::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: #fff;
}
.footer_top_nav01 .nav_list li ul {
  margin: 5px 0 0.5em 1em;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.footer_top_nav01 .nav_list li ul li {
  margin-bottom: 0;
}
@media screen and (max-width: 991px) {
  .footer_top_box .footer_top_nav02 {
    margin-top: 2px;
    letter-spacing: 0.03em;
  }
}
.footer_top_nav02 li {
  margin-bottom: 10px;
}
.footer_top_nav02 a {
  font-size: 1.6rem;
  font-weight: bold;
}
@media screen and (max-width: 991px) {
.footer_top_nav02 a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  padding-bottom: 10px;
  font-size: 1.6rem;
  border-bottom: 1px solid #fff;
}
.footer_top_nav02 a::after {
  content: "";
  margin-left: 20px;
  width: 20px;
  height: 11px;
  background: url("/Contents/Feature/icon_arrow_white.svg") no-repeat;
}
}
.footer_sns_nav {
  margin: 0 0 0 3%;
}
@media screen and (max-width: 1439px) {
  .footer_sns_nav {
    margin: 0 0 0 3%;
  }
}
@media screen and (max-width: 991px) {
  .footer_sns_nav {
    margin: 23px 0 0 0;
  }
}
.footer_sns_nav .txt_ttl {
  margin-bottom: 3px;
  font-size: 1.4rem;
  text-align: center;
  font-weight: bold;
}
.footer_sns_nav .customer_tel_box {
  margin-bottom: 20px;
  padding: 11px 10px;
  width: 100%;
  min-width: 200px;
}
@media screen and (max-width: 991px) {
.footer_sns_nav .customer_tel_box {
  margin-inline: auto;
  width: 100%;
  max-width: 310px;
}
}
.footer_sns_nav .customer_tel_box .txt_tel {
  font-size: 1.8rem;
}
@media screen and (max-width: 991px) {
.footer_sns_nav .customer_tel_box .txt_tel {
  font-size: 2.4rem;
}
}
.footer_sns_nav .customer_tel_box .txt_tel::before {
  margin-right: 10px;
  width: 26px;
  height: 18px;
}
.footer_sns_nav .customer_tel_box .txt_time {
  font-size: 1.2rem;
  text-align: center;
}
.footer_sns_nav .nav_list {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 991px) {
.footer_sns_nav .nav_list {
  justify-content: center;
}
}
.footer_sns_nav .nav_list img {
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(235deg) brightness(109%) contrast(104%);
}
.footer_sns_nav li {
  flex-shrink: 0;
  width: 24px;
}
@media screen and (max-width: 991px) {
  .footer_sns_nav li {
    width: 32px;
  }
}
.s-footer .footer_bottom_box {
  display: flex;
  justify-content: space-between;
  margin-top: 107px;
  padding-top: 53px;
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 991px) {
.s-footer .footer_bottom_box {
  flex-direction: column;
  margin-top: 60px;
  padding-top: 25px;
}
}
.s-footer .footer_bottom_nav .nav_list {
  display: flex;
}
@media screen and (max-width: 991px) {
.s-footer .footer_bottom_nav .nav_list {
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
}
.s-footer .footer_bottom_nav a {
  display: block;
  font-size: 1.2rem;
  line-height: 1.6;
  position: relative;
  padding-right: 10px;
  margin-right: 10px;
}
@media screen and (max-width: 991px) {
.s-footer .footer_bottom_nav a {
  padding-right: 8px;
  margin-right: 8px;
  margin-bottom: 10px;
}
}
.s-footer .footer_bottom_nav a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 1.2rem;
  background-color: #fff;
}
@media screen and (max-width: 991px) {
.s-footer .footer_bottom_nav li:nth-of-type(3)::after {
  content: "";
  flex-basis: 100%;
  height: 10px;
}
}
.s-footer .footer_bottom_nav li:last-of-type a::after {
  content: none;
}
.s-footer .footer_copy {
  font-size: 1.2rem;
}
@media screen and (max-width: 991px) {
.s-footer .footer_copy {
  text-align: center;
  letter-spacing: 0.14em;
}
}
@media screen and (max-width: 540px) {
.s-footer .footer_bottom_nav li:nth-of-type(3) a::after {
  display: none;
}
}

/* ========================================
   top
======================================== */
@media screen and (max-width: 991px) {
.p-page-home {
    padding-bottom: 60px;
}
}

/*  top_sp_link
-------------------- */
.top_sp_link {
  width: 98%;
  max-width: 600px;
  margin: 40px auto 40px;
  padding: 16px;
  box-sizing: border-box;
}
.top_sp_link .link_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border: 2px solid var(--color-blue);
  border-radius: 10px;
  overflow: hidden;
}
.top_sp_link li {
  box-sizing: border-box;
  border-top: 2px solid var(--color-blue);
  border-left: 2px solid var(--color-blue);
}
.top_sp_link li:nth-child(1),
.top_sp_link li:nth-child(2) {
  border-top: none;
}
.top_sp_link li:nth-child(1),
.top_sp_link li:nth-child(3) {
  border-left: none;
}
.top_sp_link a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 39px;
  color: var(--color-blue);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4rem;
  background-color: #fff;
  transition: background-color 0.2s ease;
}
.top_sp_link a:active {
  background-color: #f0f2ff;
}

/*  top_recommend_sec
-------------------- */
.top_recommend_sec {
  margin: 120px 0 100px;
  border-radius: 80px 80px 0 0;
}
@media screen and (max-width: 1439px) {
.top_recommend_sec {
  margin: 120px 20px 100px;
}
}
@media screen and (max-width: 767px) {
.top_recommend_sec {
  margin: 40px 0 70px;
}
}
.top_recommend_sec_inner {
  margin-inline: auto;
  width: 80.6%;
}
@media screen and (max-width: 1225px) {
.top_recommend_sec_inner {
  margin-inline: 40px;
  width: auto;
}
}
@media screen and (max-width: 767px) {
.top_recommend_sec_inner {
  margin-inline: inherit;
}
}
.top_recommend_sec .sec_ttl {
  margin-bottom: 52px;
}
@media screen and (max-width: 991px) {
.top_recommend_sec .sec_ttl {
  margin-bottom: 34px;
}
}
.recommend_bnr_list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
}
@media screen and (max-width: 991px) {
.recommend_bnr_list {
  flex-direction: column;
  margin: 0 auto 20px;
  width: 90%;
}
}
.recommend_bnr_list li {
  width: 48%;
}
@media screen and (max-width: 991px) {
.recommend_bnr_list li {
  margin-bottom: 20px;
  width: 100%;
}
}
.recommend_bnr_list img {
  width: 100%;
}
.top_recommend_sec .c-productUser-body__title-name {
  margin-bottom: 5px;
  font-size: 1.6rem;
}
@media screen and (max-width: 991px) {
.top_recommend_sec .c-productUser-body__title-name {
  margin: 11px 0 5px;
}
}
.m-productLineUser-col3-md4 {
  gap: 2.5rem 3.46%;
}
@media screen and (max-width: 767px) {
  .m-productLineUser-col3-md4 {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-left: 19px;
    padding-bottom: 20px;
  }
  .m-productLineUser-col3-md4::-webkit-scrollbar {
    display: none;
  }
}
.m-productLineUser-col3-md4 .c-productUser-head {
  display: block;
  opacity: 1;
  transition: all 0.3s ease;
}
.m-productLineUser-col3-md4 .c-productUser-head:hover {
  opacity: 0.5;
}
.m-productLineUser-col3-md4__item {
  width: 22.4%;
}
@media screen and (max-width: 767px) {
  .m-productLineUser-col3-md4__item {
    flex-shrink: 0;
    width: 70.1%;
    margin-right: 20px;
    scroll-snap-align: start;
  }
}
.c-productUser-head__status {
  top: 10px;
}
.c-productUser-sIcon {
  justify-content: flex-end;
  margin: 0 10px;
}
.c-productUser-sIcon__item {
  background: #E7E7E7;
}
.c-productUser-sIcon__item img {
  width: auto;
  height: 20px;
}
.top_recommend_sec .btn {
  margin-top: 55px;
}
@media screen and (max-width: 991px) {
.top_recommend_sec .btn {
  margin-top: 16px;
}
}
.c-productUser-head__picture::before {
  padding-top: 100%;
}
.c-productUser-head__image {
  border-radius: 20px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/*  top_about_sec
-------------------- */
.top_about_sec {
  margin-bottom: 134px;
}
@media screen and (max-width: 991px) {
.top_about_sec {
  margin-bottom: 60px;
}
}
.top_about_sec .top_about_sec_inner {
  margin: 0 40px;
  padding: 107px 118px 65px;
  background: var(--color-gray-e);
  border-radius: 40px;
}
@media screen and (max-width: 1439px) {
.top_about_sec .top_about_sec_inner {
  padding: 107px 40px 65px;
}
}
@media screen and (max-width: 991px) {
.top_about_sec .top_about_sec_inner {
  margin: 0;
  padding: 0 10% 14%;
  border-radius: 30px;
}
}
.top_about_sec .about_box01 {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: flex-start;
  margin-bottom: 102px;
}
@media screen and (max-width: 991px) {
.top_about_sec .about_box01 {
  flex-direction: column;
  margin-bottom: 54px;
}
}
.top_about_sec .about_img01 {
  margin: -125px -41px 0 0;
  width: 51.7%;
}
@media screen and (max-width: 1439px) {
.top_about_sec .about_img01 {
  margin: -125px 0 0 0;
}
}
@media screen and (max-width: 991px) {
.top_about_sec .about_img01 {
  margin: -10px 0 23px;
  width: 100%;
}
}
.top_about_sec .about_txt_box01 {
  width: 41%;
}
@media screen and (max-width: 1439px) {
.top_about_sec .about_txt_box01 {
  width: 45%;
}
}
@media screen and (max-width: 991px) {
.top_about_sec .about_txt_box01 {
  width: 100%;
}
}
.top_about_sec .about_txt_box01 .about_ttl {
  margin-bottom: 21px;
  font-family: var(--font-ttl);
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 1439px) {
.top_about_sec .about_txt_box01 .about_ttl {
  font-size: 4vw;
}
}
@media screen and (max-width: 991px) {
.top_about_sec .about_txt_box01 .about_ttl {
  margin-bottom: 12px;
  font-size: 3.2rem;
}
}
.top_about_sec .about_txt_box01 .about_ttl_sup {
  display: block;
  margin-bottom: 6px;
  color: var(--color-gold);
  font-size: 1.6rem;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 991px) {
.top_about_sec .about_txt_box01 .about_ttl_sup {
  margin-bottom: 2px;
  font-size: 1.4rem;
}
}
.top_about_sec .about_txt_box01 p {
  font-size: 1.6rem;
}
@media screen and (max-width: 991px) {
.top_about_sec .about_txt_box01 p {
  font-size: 1.4rem;
}
}
.top_about_sec .about_box02 {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 40px;
}
@media screen and (max-width: 991px) {
.top_about_sec .about_box02 {
  flex-direction: column;
}
}
.top_about_sec .about_img02 {
  position: absolute;
  bottom: -124px;
  left: -158px;
  width: 55.4%;
}
@media screen and (max-width: 1439px) {
.top_about_sec .about_img02 {
  width: 60%;
}
}
@media screen and (max-width: 991px) {
.top_about_sec .about_img02 {
  position: relative;
  bottom: 0;
  left: 0;
  margin-left: calc(50% - 50vw);
  margin-bottom: 30px;
  width: 113%;
  max-width: none;
}
}
.top_about_sec .about_txt_box02 {
  width: 48.3%;
}
@media screen and (max-width: 991px) {
.top_about_sec .about_txt_box02 {
  width: 50%;
}
}
@media screen and (max-width: 991px) {
.top_about_sec .about_txt_box02 {
  width: 100%;
}
}
.top_about_sec .about_txt_box02 .about_ttl {
  margin-bottom: 26px;
  font-family: var(--font-ttl);
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 991px) {
.top_about_sec .about_txt_box02 .about_ttl {
  margin-bottom: 15px;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
}
.top_about_sec .about_txt_box02 .about_ttl_sup {
  display: table;
  margin-bottom: 10px;
  padding: 5px 21px;
  color: #fff;
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.08em;
  background: var(--color-gold);
  border-radius: 4px 99px 99px 4px;
}
@media screen and (max-width: 991px) {
.top_about_sec .about_txt_box02 .about_ttl_sup {
  margin-bottom: 12px;
}
}
.top_about_sec .about_txt_box02  p {
  font-size: 1.6rem;
  letter-spacing: 0;
}
@media screen and (max-width: 991px) {
.top_about_sec .about_txt_box02  p {
  font-size: 1.4rem;
}
}
/*  top_features_sec
-------------------- */
.top_features_sec {
  margin: 0 auto 71px;
  width: 81.5%;
  background: url("/Contents/Feature/top_features_bg_pc.png") no-repeat;
  background-position: left 10px bottom 10px;
  background-size: 265px auto;
}
@media screen and (max-width: 1439px) {
.top_features_sec {
  width: 90%;
}
}
@media screen and (max-width: 991px) {
.top_features_sec {
  margin-bottom: 40px;
  width: 95%;
  background: url("/Contents/Feature/top_features_bg_sp.png") no-repeat;
  background-position: left 0 top 0;
  background-size: 160px auto;
}
}
.top_features_sec .sec_ttl {
  /* padding-right: 24px; */
  margin: 0 24px 0 0;
  font-size: 5.4rem;
  text-align: right;
}
@media screen and (max-width: 991px) {
.top_features_sec .sec_ttl {
  margin-bottom: 56px;
  padding: 25px 0 0 0;
  font-size: 3.6rem;
}
}
@media screen and (max-width: 991px) {
.top_features_sec .sec_ttl_sup {
  margin-bottom: 5px;
}
}
.top_features_list {
  display: flex;
  justify-content: space-between;
  margin-top: -93px;
}
@media screen and (max-width: 991px) {
.top_features_list {
  flex-direction: column;
  margin-top: 0;
}
}
.top_features_list li {
  width: 33.3%;
  text-align: center;
}
@media screen and (max-width: 991px) {
.top_features_list li {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-left: 5.5%;
  width: 100%;
  text-align: left;
}
}
.top_features_list li:nth-of-type(2) {
  margin-top: 120px;
}
@media screen and (max-width: 991px) {
.top_features_list li:nth-of-type(2) {
  margin: 0 0 20px 0;
}
}
.top_features_list li:nth-of-type(3) {
  margin-top: 211px;
  margin-right: -27px;

}
@media screen and (max-width: 991px) {
.top_features_list li:nth-of-type(3) {
  margin: 0 0 20px 0;
}
}
.top_features_list .features_img {
  margin-inline: auto;
  width: 70.3%;
}
@media screen and (max-width: 991px) {
.top_features_list .features_img {
  width: 31.5%;
}
}
@media screen and (max-width: 991px) {
.top_features_list .txt_box {
  margin-left: 5.5%;
  width: 63%;
}
}
.top_features_list .features_ttl {
  margin: 20px auto 10px;
  font-family: var(--font-ttl);
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 991px) {
.top_features_list .features_ttl {
  margin: 0 auto 2px;
  font-size: 2.4rem;
}
}
.top_features_list .features_txt {
  font-size: 1.6rem;
}
@media screen and (max-width: 991px) {
.top_features_list .features_txt {
  font-size: 1.4rem;
}
}

/*  top_news_sec
-------------------- */
.top_news_sec {
  margin: 0 auto 80px;
  padding: 60px 0 79px;
  width: 78%;
  background: var(--color-gray-e);
  border-radius: 20px;
}
@media (max-width: 1126px) {
.top_news_sec {
  margin-bottom: 39px;
  padding: 42px 0 79px;
  width: 90%;
}
}
.top_news_sec_inner {
  padding: 0 76px;
}
@media screen and (max-width: 991px) {
.top_news_sec_inner {
  padding: 0 26px;
}
}
.top_news_sec .p-homeSection__title {
  margin-bottom: 46px;
  font-size: 4rem;
}
@media screen and (max-width: 991px) {
.top_news_sec .p-homeSection__title {
  margin-bottom: 15px;
  font-size: 3.2rem;
}
}
.p-homeNewsList {
  margin-bottom: 40px;
}
.p-homeNewsList-body {
  align-items: flex-start;
}
@media screen and (max-width: 991px) {
.p-homeNewsList-body {
  flex-direction: column;
    padding: 2.3rem 0 2.3rem;
}
}
.p-homeNewsList-body__time {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 991px) {
.p-homeNewsList-body__time {
  font-size: 1.2rem;
}
}
@media screen and (max-width: 991px) {
.p-homeNewsList-body__title {
    max-width: 100%;
    width: 100%;
}
}
@media screen and (max-width: 991px) {
.top_news_sec .btn a {
  width: 88%;
}
}

/*  top_features_sec
-------------------- */
.top_featured_sec {
  margin-bottom: 158px;
}
@media screen and (max-width: 991px) {
.top_featured_sec {
  margin-bottom: 60px;
}
}
.top_featured_sec .featured_ttl_box {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 58px;
  width: 78%;
}
@media screen and (max-width: 991px) {
.top_featured_sec .featured_ttl_box {
  justify-content: center;
  margin-bottom: 35px;
}
}
.top_featured_sec .btn {
  margin-top: 0;
}
.top_featured_sec .sec_ttl {
  margin-bottom: 0;
  font-family: var(--font-ttl);
  font-size: 3.2rem;
  text-align: left;
  line-height: 1;
}
@media screen and (max-width: 991px) {
.top_featured_sec .sec_ttl {
  font-size: 3.6rem;
  text-align: center;
}
}
.top_featured_sec .sec_ttl_sup {
  margin-bottom: 13px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 991px) {
.top_featured_sec .sec_ttl_sup {
  margin-bottom: 14px;
}
}
.top_featured_sec .page_ttl {
  margin-top: 10px;
  font-family: var(--font-ttl);
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 991px) {
.top_featured_sec .page_ttl {
  margin-top: 10px;
  margin: 10px auto 38px;
}
}
.top_featured_sec .p-homeSection {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  .top_featured_sec .p-homeSection {
    padding-top: 0;
  }
}
.top_featured_sec .m-homeFeatureSlide-slider {
  left: 50px;
}
@media screen and (max-width: 991px) {
.top_featured_sec .m-homeFeatureSlide-slider {
  left: 10px;
}
}
.top_featured_sec .swiper-android .swiper-slide {
  margin-right: 10px !important;
}
@media screen and (min-width: 768px) {
.top_featured_sec .m-homeFeatureSlide-slider__item {
    width: 30rem;
}
}
.top_featured_sec .m-homeFeatureSlide-slider__picture img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}
@media screen and (min-width: 768px) {
.top_featured_sec .m-homeFeatureSlide-slideController {
    display: block;
}
}
.m-homeFeatureSlide-slideController__prev, .m-homeFeatureSlide-slideController__next {
    top: calc(50% - 5rem);
    width: 6rem;
    height: 6rem;
    background: #fff;
    border: 1px solid var(--color-gray-d);
}
@media screen and (max-width: 991px) {
.m-homeFeatureSlide-slideController__prev, .m-homeFeatureSlide-slideController__next {
    top: calc(50% - 7.1rem);
}
}
@media screen and (min-width: 768px) {
    .m-homeFeatureSlide-slideController__prev {
        left: 15.6%;
    }
}
@media screen and (min-width: 768px) {
    .m-homeFeatureSlide-slideController__next {
        right: 15.6%;
    }
}
.m-homeFeatureSlide-slideController__prev > img,
.m-homeFeatureSlide-slideController__next > img {
  width: 20px;
  height: 11px;
}
.top_featured_sec .m-homeFeatureSlide-slidePagination {
  display: none;
}


/*  top_system_sec
-------------------- */
.top_system_sec {
  padding: 115px 0 20px;
  border-radius: 80px 80px 0 0;
  background: var(--color-gray-e) url("/Contents/Feature/top_system_bg01.png") no-repeat left 0px top 57px / 457px auto;
}
@media screen and (max-width: 991px) {
.top_system_sec {
  padding: 74px 0 20px;
  border-radius: 30px 30px 0 0;
  background-position: 0 1%;
  background-size: 47% auto;
}
}
@media screen and (max-width: 650px) {
.top_system_sec {
  background-position: 0 4%;
  background-size: 47% auto;
}
}
@media screen and (max-width: 450px) {
.top_system_sec {
  background-position: 0 6.9%;
  background-size: 47% auto;
}
}
.top_system_inner {
  margin-inline: auto;
  width: 84%;
}
@media screen and (max-width: 1439px) {
.top_system_inner {
  width: 90%;
}
}
@media screen and (max-width: 991px) {
.top_system_inner {
  width: 89%;
}
}
.top_system_sec .sec_ttl {
  margin: 0 3% 175px 0;
  font-family: var(--font-ttl);
  font-size: 5.4rem;
  font-weight: bold;
  text-align: right;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 991px) {
.top_system_sec .sec_ttl {
  margin: 0 0 70px 0;
  font-size: 3.6rem;
  letter-spacing: 0.03em;
}
}
.top_system_sec .sec_ttl_sup {
  display: block;
  color: var(--color-gold);
  font-size: 1.6rem;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 991px) {
.top_system_sec .sec_ttl_sup {
  margin-bottom: 11px;
  font-size: 1.4rem;
}
}
.top_system_sec .system_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 991px) {
.top_system_sec .system_box {
  flex-direction: column;
}
}
.top_system_sec .system_box .txt_box {
  width: 41.5%;
}
.top_system_sec .system_box .system_ttl {
  margin-bottom: 22px;
  font-family: var(--font-ttl);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media screen and (max-width: 991px) {
.top_system_sec .system_box .system_ttl {
  margin-bottom: 14px;
  font-size: 2rem;
  letter-spacing: 0.09em;
}
}
.top_system_sec .system_box .txt_box p {
  font-size: 1.6rem;
  letter-spacing: 0;
}
@media screen and (max-width: 991px) {
.top_system_sec .system_box .txt_box p {
  font-size: 1.4rem;
}
}
.top_system_sec .system_box01 {
  justify-content: flex-end;
  margin-bottom: 17.9%;
}
@media screen and (max-width: 991px) {
.top_system_sec .system_box01 {
  margin-bottom: 15.5%;
}
}
.top_system_sec .system_box01 .txt_box {
  margin-right: 2.9%;
  width: 39%;
}
@media screen and (max-width: 1439px) {
.top_system_sec .system_box01 .txt_box {
  margin-right: 0;
  width: 42%;
}
}
@media screen and (max-width: 991px) {
.top_system_sec .system_box01 .txt_box {
  margin-right: 0;
  width: 100%;
}
}
.top_system_sec .system_box01 .system_img {
  position: absolute;
  left: calc(50% - 50vw);
  bottom: -40px;
  width: 48.6vw;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 991px) {
.top_system_sec .system_box01 .system_img {
  position: relative;
  bottom: 0;
  left: 0;
  margin-left: calc(50% - 50vw);
  margin-bottom: 20px;
  width: 106.5%;
  max-width: none;
}
}
.top_system_sec .system_box02 {
  position: relative;
  padding-bottom: 21.4%;
}
@media screen and (max-width: 991px) {
.top_system_sec .system_box02 {
  padding-bottom: 15.2%;
}
}
.top_system_sec .system_box02 .txt_box {
  width: 38.4%;
}
@media screen and (max-width: 1439px) {
.top_system_sec .system_box02 .txt_box {
  width: 42%;
}
}
@media screen and (max-width: 991px) {
.top_system_sec .system_box02 .txt_box {
  width: 100%;
}
}
.top_system_sec .system_box02 .system_img {
  position: absolute;
  right: calc(50% - 50vw);
  width: 48.6vw;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 991px) {
.top_system_sec .system_box02 .system_img {
  position: relative;
  bottom: 0;
  right: 0;
  margin-right: calc(50% - 50vw);
  margin-bottom: 20px;
  width: 106.5%;
  max-width: none;
}
}
.top_system_sec .system_box02 .system_img_bg {
  position: absolute;
  bottom: 8.5%;
  left: -4.9%;
  width: 17.9%;
}
.top_system_sec .system_box03 {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 20px;
  padding: 106px 9.5% 158px;
  background: url("/Contents/Feature/top_system_bg03.png") no-repeat;
  background-position: center top;
  background-size: cover;
  border-radius: 40px;
}
@media screen and (max-width: 1439px) {
.top_system_sec .system_box03 {
  padding: 106px 5% 158px;
}
}
@media screen and (max-width: 991px) {
.top_system_sec .system_box03 {
  flex-direction: column;
  padding: 74px 5% 53px;
  border-radius: 30px;
}
}
.top_system_sec .system_box03 .system_img {
  margin-top: 13px;
  width: 37.8%;
}
@media screen and (max-width: 991px) {
.top_system_sec .system_box03 .system_img {
  margin: 0 auto 62px;
  width: 90.6%;

}
}
.top_system_sec .system_box03 .txt_box {
  width: 37.8%;
  color: #fff;
}
@media screen and (max-width: 1439px) {
.top_system_sec .system_box03 .txt_box {
  width: 55%;
}
}
@media screen and (max-width: 991px) {
.top_system_sec .system_box03 .txt_box {
  width: 100%;
}
}
.top_system_sec .system_box03 .system_ttl {
  font-family: var(--font-ttl);
  font-size: 3.2rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
}
@media screen and (max-width: 991px) {
.top_system_sec .system_box03 .system_ttl {
  font-size: 2.4rem;
  line-height: 1.6;
}
}
.top_system_sec .system_box03 .system_ttl_sub {
  margin-bottom: 30px;
  margin: 61px 0 22px;
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
@media screen and (max-width: 991px) {
.top_system_sec .system_box03 .system_ttl_sub {
  margin: 41px 0 14px;
  font-size: 2rem;
}
}
.top_system_sec .system_box03 p {
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 991px) {
.top_system_sec .system_box03 p {
  font-size: 1.4rem;
}
}

/*  top_instagram_sec
-------------------- */
.top_instagram_sec {
  margin: 80px auto 120px;
}
@media screen and (max-width: 991px) {
.top_instagram_sec {
  margin: 60px auto 89px;
}
}
.top_instagram_sec .instagram_ttl_box {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 894px;
  margin: 36px auto 60px;
}
@media screen and (max-width: 991px) {
.top_instagram_sec .instagram_ttl_box {
  margin: 20px auto 60px;
  width: 90%;
}
}
.top_instagram_sec .btn_pc {
  margin-top: 8px;
}
@media screen and (max-width: 991px) {
.top_instagram_sec .btn_pc {
  margin-top: 0;
}
}
.top_instagram_sec .sec_ttl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
  font-family: var(--font-ttl);
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 991px) {
.top_instagram_sec .sec_ttl {
  font-size: 2rem;
  letter-spacing: 0.12em;
}
}
.top_instagram_sec .sec_ttl::before {
  content: "";
  margin-right: 20px;
  width: 44px;
  height: 44px;
  background: url("/Contents/Feature/icon_instagram_color.svg") no-repeat;
}
@media screen and (max-width: 991px) {
  .top_instagram_sec .sec_ttl::before {
    margin-right: 11px;
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
  }
}
.top_instagram_sec .sec_ttl_sup {
  display: block;
  margin-bottom: 5px;
  color: var(--color-gold);
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 991px) {
.top_instagram_sec .sec_ttl_sup {
  font-size: 1.4rem;
}
}
.top_instagram_sec .btn a {
  padding: 0 14px 3px;
  height: 32px;
  color: var(--color-pink);
  font-size: 1.6rem;
  border: 1px solid var(--color-pink);
  background-color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (max-width: 991px) {
.top_instagram_sec .btn a {
  width: 116px;
  min-width: 116px;
  letter-spacing: 0.01em;
}
}
.top_instagram_sec .btn a:hover {
  color: #fff;
  background-color: var(--color-pink);
}
.top_instagram_sec .btn a::after {
  content: none;
}

/*  top_line_sec
-------------------- */
.top_line_sec {
  margin: 0 auto;
  max-width: 1222px;
  width: 84.8%;
  border: 2px solid var(--color-green);
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
.top_line_sec {
  width: 90%;
}
}
.top_line_sec a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 58px 60px;
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 991px) {
.top_line_sec a {
  display: block;
  padding: 12% 5% 6%;
}
}
.top_line_sec a:hover {
  opacity: 0.7;
}
.top_line_sec a::after {
  content: "";
  width: 120px;
  height: 120px;
  background: url("/Contents/Feature/icon_line_color.svg") no-repeat;
  background-size: 120px 120px;
}
@media screen and (max-width: 991px) {
.top_line_sec a::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  right: auto;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background-size: 60px 60px;
}
}
@media screen and (max-width: 991px) {
.top_line_sec .txt_box {
  text-align: center;
}
}
.top_line_sec .sec_ttl {
  margin-bottom: 5px;
  font-family: var(--font-ttl);
  font-size: 4rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 991px) {
.top_line_sec .sec_ttl {
  font-size: 3.2rem;
  text-align: center;
  letter-spacing: 0.05em;
}
}
.top_line_sec .sec_ttl_sup {
  display: block;
  color: var(--color-green);
  font-size: 2rem;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.09em;
}
@media screen and (max-width: 991px) {
.top_line_sec .sec_ttl_sup {
  font-size: 1.6rem;
}
}
.top_line_sec p {
  font-size: 1.6rem;
}
@media screen and (max-width: 991px) {
.top_line_sec p {
  font-size: 1.4rem;
}
}

/* ========================================
 about
======================================== */
.about_l-container-wrap__body {
  padding-top: 0;
}
.about_page_kv_box {
  position: relative;
  margin-bottom: 74px;
  padding: 142px 11% 0;
  width: 100%;
  height: 400px;
  background: #aaa;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 17.5%),
    url("/Contents/Feature/about_kv2.png") no-repeat center/cover;
  border-radius: 0 0 75px 75px;
}
@media screen and (max-width: 991px) {
.about_page_kv_box {
  margin-bottom: 56px;
  padding: 145px 5.1% 0;
  height: 390px;
  border-radius: 0 0 40px 40px;
}
}
.about_page_kv_box .m-breadcrumb {
  position: absolute;
  top: 17px;
  margin-top: 0;
}
@media screen and (max-width: 991px) {
.about_page_kv_box .m-breadcrumb {
  left: 0;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 19px;
  width: 100vw;
}
}
.about_page_ttl {
  margin-bottom: 10px;
  color: #fff;
  font-family: var(--font-ttl);
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 991px) {
.about_page_ttl {
  font-size: 3.2rem;
  letter-spacing: 0.04em;
  text-align: center;
}
}
.about_page_ttl span {
  display: block;
  font-size: 1.6rem;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 991px) {
.about_page_ttl span {
  font-size: 1.4rem;
}
}

@media screen and (max-width: 991px) {
  .about_page_ttl .ttl_sup {
    margin-bottom: 5px;
  }
}
.about_page_ttl .ttl_sub {
  margin-top: 10px;
  font-size: 2rem;
}
@media screen and (max-width: 991px) {
.about_page_ttl .ttl_sub {
  font-size: 1.6rem;
}
}

/*  about_foryou_sec
-------------------- */
.about_foryou_sec {
  margin-bottom: 98px;
}
@media screen and (max-width: 991px) {
.about_foryou_sec {
  margin-bottom: 42px;
}
}
.about_foryou_sec .sec_ttl {
  margin-bottom: 50px;
}
@media screen and (max-width: 991px) {
.about_foryou_sec .sec_ttl {
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}
}
@media screen and (max-width: 991px) {
  .about_foryou_sec .c-two-column__item {
    margin-bottom: 21px;
  }
}

/*  about_features_sec
-------------------- */
.about_features_sec {
  margin-bottom: 135px;
}
@media screen and (max-width: 991px) {
.about_features_sec {
  margin-bottom: 54px;
}
}

/*  about_plan_sec
-------------------- */
.about_plan_sec {
  margin: 0 auto 133px;
  padding: 114px 0 62px;
  background: var(--color-gray-e);
  border-radius: 80px;
}
@media screen and (max-width: 991px) {
.about_plan_sec {
  margin: 0 auto 56px;
  padding: 54px 0 39px;
  border-radius: 30px;
}
}
.about_plan_sec .sec_ttl {
  margin-bottom: 39px;
}
@media screen and (max-width: 991px) {
.about_plan_sec .sec_ttl {
  margin-bottom: 12px;
}
}
.about_plan_sec .sec_lead {
  margin-bottom: 54px;
}
@media screen and (max-width: 991px) {
.about_plan_sec .sec_lead {
  margin-bottom: 54px;
  font-size: 1.4rem;
  text-align: left;
  letter-spacing: 0.04em;
}
}
.about_plan_box {
  margin-bottom: 64px;
  padding: 38px 40px 40px;
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
.about_plan_box {
  margin-bottom: 20px;
  padding: 18px 20px 20px;
  border-radius: 10px;
}
}
.about_plan_box .sub_ttl {
  margin-bottom: 22px;
}
.about_plan_box:nth-of-type(2) .sub_ttl {
  margin-bottom: 33px;
}
@media screen and (max-width: 991px) {
.about_plan_box:nth-of-type(2) .sub_ttl {
  margin-bottom: 20px;
}
}
.about_plan_box .lead {
  margin-bottom: 21px;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 991px) {
.about_plan_box .lead {
  margin-bottom: 10px;
  font-size: 1.6rem;
}
}
.about_plan_box img {
  width: 100%;
}

/*  about_commitment_sec
-------------------- */
.about_commitment_sec {
  margin-bottom: 130px;
}
@media screen and (max-width: 991px) {
.about_commitment_sec {
  margin-bottom: 30px;
}
}
.about_commitment_box {
  margin-bottom: 70px;
}
@media screen and (max-width: 991px) {
.about_commitment_box {
  margin-bottom: 30px;
}
}
.about_commitment_sec .c-two-column {
  margin-bottom: 60px;
}
.about_commitment_sec .sec_ttl {
  margin-bottom: 48px;
}
.about_commitment_sec .sub_ttl {
  margin-bottom: 60px;
}
@media screen and (max-width: 991px) {
.about_commitment_sec .sub_ttl {
  margin-bottom: 30px;
}
}
@media screen and (max-width: 991px) {
  .about_commitment_sec .c-two-column {
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 991px) {
  .about_commitment_sec .c-two-column__item {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 991px) {
  .about_commitment_sec .c-two-column__ttl {
    margin-bottom: 10px;
  }
}

/*  about_howto_sec
-------------------- */
.about_howto_sec {
  margin: 0 auto 132px;
  padding: 115px 0 50px;
  background: var(--color-gray-e);
  border-radius: 80px;
}
@media screen and (max-width: 991px) {
.about_howto_sec {
  margin: 0 auto 55px;
  padding: 56px 0 20px;
  border-radius: 30px;
}
}
@media screen and (max-width: 991px) {
.about_howto_inner {
  width: 90%;
}
}
.about_howto_sec .sec_ttl {
  margin-bottom: 41px;
}
@media screen and (max-width: 991px) {
.about_howto_sec .sec_ttl {
  margin-bottom: 12px;
}
}
.about_howto_sec .sec_lead_box {
  margin-bottom: 52px;
}
@media screen and (max-width: 991px) {
.about_howto_sec .sec_lead_box {
    text-align: left;
}
}
.about_howto_sec .sec_lead {
  letter-spacing: 0.01em;
}
.about_howto_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-bottom: 70px;
  padding: 20px;
  background: #fff;
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
.about_howto_box {
  flex-direction: column;
  margin-bottom: 39px;
  padding: 5px;
}
}
.about_howto_box::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -50px;
  content: "";
  width: 80px;
  height: 30px;
  background: url("/Contents/Feature/about_icon_arrow.svg") no-repeat;
}
@media screen and (max-width: 991px) {
.about_howto_box::after {
  bottom: -33px;
  width: 60px;
  height: 22px;
  background-size: 100% auto;
}
}
.about_howto_box:last-of-type::after {
  content: none;
}
.about_howto_box img {
  width: 37.5%;
  border-radius: 10px;
}
@media screen and (max-width: 991px) {
.about_howto_box img {
  width: 100%;
  border-radius: 15px 15px 0 0;
}
}
.about_howto_column {
  margin: -1% 2% 0 0;
  width: 55%;
}
@media screen and (max-width: 991px) {
.about_howto_column {
  margin: 20px auto 20px;
  width: 90%;
}
}
.about_howto_column .howto_ttl {
  margin-bottom: 6px;
  font-family: var(--font-ttl);
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 991px) {
.about_howto_column .howto_ttl {
  margin-bottom: 8px;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
}
.about_howto_column .howto_ttl_sup {
  display: table;
  margin-bottom: 10px;
  padding: 4px 19px;
  color: #fff;
  font-size: 1.4rem;
  text-transform: uppercase;
  line-height: 1.6;
  letter-spacing: 0.08em;
  background: var(--color-blue);
  border-radius: 4px 99px 99px 4px;
}
@media screen and (max-width: 991px) {
.about_howto_column .howto_ttl_sup {
  margin-bottom: 14px;
}
}
.about_howto_column .howto_txt {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 991px) {
.about_howto_column .howto_txt {
  font-size: 1.2rem;
}
}

/*  about_varieties_sec
-------------------- */
.about_varieties_sec {
  margin-bottom: -29px;
}
@media screen and (max-width: 991px) {
.about_varieties_sec {
  margin-bottom: 60px;
  width: 90%;
}
}
.about_varieties_sec .sec_ttl {
  margin-bottom: 50px;
}
@media screen and (max-width: 991px) {
.about_varieties_sec .sec_ttl {
  margin-bottom: 17px;
}
}
.about_varieties_list {
  margin-bottom: 60px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 991px) {
.about_varieties_list {
  flex-direction: column;
  margin-bottom: 0;
}
}
.about_varieties_list li {
  display: flex;
  flex-direction: column;
  padding: 20px;
  width: 30.9%;
  border: 1px solid var(--color-gray-d);
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
.about_varieties_list li {
  margin-bottom: 20px;
  width: 100%;
}
}
.about_varieties_list img {
  width: 100%;
  border-radius: 10px;
}
.about_varieties_list .varieties_ttl {
  margin: 20px 0 7px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 991px) {
.about_varieties_list .varieties_ttl {
  margin: 12px 0 3px;
  font-size: 2rem;
  text-align: left;
}
}
.about_varieties_list .varieties_txt {
  margin-bottom: 22px;
  font-size: 1.6rem;
  letter-spacing: 0.01em;
}
@media screen and (max-width: 991px) {
.about_varieties_list .varieties_txt {
  margin-bottom: 13px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}
}
.about_varieties_list .btn {
  margin-top: auto;
}
.about_varieties_list .btn a {
  position: relative;
  padding: 0 40px;
  width: 100%;
  height: 52px;
  font-size: 1.6rem;
  letter-spacing: 0;
}
.about_varieties_list .btn a::after {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 0;
}
.about_set_sec {
  padding: 51px 10.4% 60px;
  background: var(--color-gray-e);
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
.about_set_sec {
  padding: 50px 5.8% 60px;
}
}
.about_set_sec .sec_ttl {
  margin-bottom: 51px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 991px) {
.about_set_sec .sec_ttl {
  margin-bottom: 23px;
  font-size: 2rem;
  line-height: 1.6;
}
}
.about_set_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 991px) {
.about_set_box {
  flex-direction: column;
}
}
.about_set_box img {
  width: 47.8%;
  border-radius: 10px;
}
@media screen and (max-width: 991px) {
.about_set_box img {
  width: 100%;
}
}
.about_set_box .txt_box {
  width: 47.8%;
}
@media screen and (max-width: 991px) {
.about_set_box .txt_box {
  margin-top: 12px;
  width: 100%;
}
}
.about_set_box .set_ttl {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 991px) {
.about_set_box .set_ttl {
  margin-bottom: 5px;
  font-size: 1.6rem;
}
}
.about_set_box .set_txt {
  font-size: 1.6rem;
}
@media screen and (max-width: 991px) {
.about_set_box .set_txt {
  font-size: 1.4rem;
}
}
.about_set_box .btn {
  margin-top: 18px;
  text-align: left;
}
@media screen and (max-width: 991px) {
.about_set_box .btn {
  margin-top: 14px;
}
}
.about_set_box .btn a {
  position: relative;
  width: 100%;
  max-width: 308px;
  height: 52px;
  font-size: 1.6rem;
  padding: 0 40px;
  text-align: left;
}
.about_set_box .btn a::after {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 0;
}

/* ========================================
   account/register/input
======================================== */
@media screen and (max-width: 991px) {
.p-page-easyRegistInput .s-formContent-head {
  padding-bottom: 17px;
}
}
.p-page-easyRegistInput .c-page-ttl {
  margin-bottom: 42px;
}
@media screen and (max-width: 991px) {
.p-page-easyRegistInput .c-page-ttl {
  margin-bottom: 26px;
}
}
.p-page-easyRegistInput .m-formHeading-title__lead {
  font-size: 1.6rem;
}
@media screen and (max-width: 991px) {
.p-page-easyRegistInput .m-formHeading-title__lead {
  font-size: 1.4rem;
}
}
.p-userinfo__input-area-content {
  border: 10px solid var(--color-gray-e);
  border-radius: 20px;
}
@media screen and (max-width: 991px) {
.p-userinfo__input-area-content {
  border-radius: 10px;
}
}
@media screen and (min-width: 768px) {
.p-userinfo__input-area-content {
    margin-bottom: 40px;
}
}
@media screen and (max-width: 767px) {
    .p-userinfo__input-area-content {
      padding: 10px;
      margin-bottom: 30px;
      border: 10px solid var(--color-gray-e);
    }
}
.p-page-easyRegistInput .p-userinfo__input-area > div:last-of-type {
  border: 10px solid var(--color-gray-e);
}
.p-page-easyRegistInput .s-formContent-body {
  margin-top: 19px;
}
.m-userSectForm-wrap {
  background: #fff;
}
@media screen and (min-width: 768px) {
.m-userSectForm-wrap {
    padding: 30px 29px 1rem;
}
}
.p-page-easyRegistInput .m-userSectForm-body > dl:first-of-type {
  padding-top: 0;
  border-top: none;
}
@media screen and (min-width: 768px) {
.m-userSectForm .c-userSectHeading {
    padding: 0;
}
}
@media screen and (max-width: 991px) {
  .p-page-easyRegistInput .m-userSectForm-body > dl {
    margin: 0 10px;
    padding: 22px 0 25px;
  }
}
.c-userSectHeading__title {
  margin-bottom: 44px;
  padding: 5px 20px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: left;
  line-height: 1.6;
  letter-spacing: 0.04em;
  background: var(--color-gray-e);
  border-radius: 10px;
}
@media screen and (max-width: 991px) {
.c-userSectHeading__title {
  margin-bottom: 24px;
  padding: 5px 10px;
  padding: 10px 0;
  font-size: 2rem;
  border-radius: 5px;
  line-height: 1.1;
}
}
.c-userSect-entry {
  padding-top: 15px;
  border-top: 1px solid var(--color-gray);
}
@media screen and (min-width: 992px) {
.m-userSectForm-body--wide .c-userSect-entry__title {
    width: 26.8%;
}
}
@media screen and (min-width: 992px) {
.m-userSectForm-body--wide .c-userSect-entry__form {
    width: 70.5%;
}
}
.m-userSectForm-body--wide .c-userSect-entry__form--full {
  width: 70.5%;
}
.m-userSectForm-body--wide .c-userSect-entry__form--birth {
  width: 60%;
}
.m-userSectForm-body--wide .c-userSect-entry__form--zipcode {
  width: 55%;
}
.p-page-easyRegistInput input[type=text].input_zipcode {
  width: 100%;
}
.p-page-easyRegistInput .select_address {
  width: 58%;
}
.p-page-easyRegistInput .c-formInput-item__zipcode .btn {
  text-align: left;
}
@media screen and (max-width: 767px) {
  .m-userSectForm-body--wide .c-userSect-entry__form--full,
  .m-userSectForm-body--wide .c-userSect-entry__form--birth,
  .m-userSectForm-body--wide .c-userSect-entry__form--zipcode,
  .p-page-easyRegistInput input[type=text].input_zipcode,
  .p-page-easyRegistInput .select_address {
  width: 100%;
}
}
@media screen and (max-width: 767px) {
  .p-page-easyRegistInput input[type=text].input_zipcode {
    margin-bottom: 10px;
}
}
.p-page-easyRegistInput input[type=text],
.p-page-easyRegistInput input[type=password] {
  width: 58%;
}
@media screen and (max-width: 991px) {
.p-page-easyRegistInput input[type=text],
.p-page-easyRegistInput input[type=password] {
  width: 100%;
}
}
@media screen and (max-width: 991px) {
input[name="name1"],
input[name="nameKana1"] {
  margin-bottom: 10px;
}
}
@media screen and (min-width: 768px) {
.m-userSectForm-body--wide .c-userSect-entry {
    padding: 41px 0 32px;
}
}
@media screen and (min-width: 768px) {
.c-userSect-entry__title {
  width: 36.5%;
  margin-top: 0;
  line-height: 1.3;
}
}
@media screen and (min-width: 768px) {
.p-page-easyRegistInput .m-progress-button-wrap__group {
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
}
@media screen and (min-width: 768px) {
.p-page-easyRegistInput .m-progress-button-wrap__item {
  margin-bottom: 11px;
  max-width: 426px;
  text-align: center;
}
}
.c-userSect-entry__title {
  font-size: 1.6rem;
}
@media screen and (max-width: 991px) {
.c-userSect-entry__title {
  margin-bottom: 3px;
}
}
.c-userSectHeading__title .txt_note {
  font-size: 1.6rem;
}
@media screen and (max-width: 991px) {
.c-userSectHeading__title .txt_note {
  font-size: 1.2rem;
}
}
.p-page-easyRegistInput .txt_regulation {
  margin: -6px 0 100px;
}
@media screen and (max-width: 991px) {
.p-page-easyRegistInput .txt_regulation {
  margin-bottom: 20px;
}
}
.p-page-easyRegistInput .p-regulation-terms__title {
  margin-bottom: 40px;
  font-size: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 991px) {
.p-page-easyRegistInput .p-regulation-terms__title {
  margin-bottom: 32px;
  font-size: 2rem;
}
}
@media screen and (min-width: 768px) {
.p-regulation-terms {
    padding: 2.8rem 1.6rem 3rem 2.5rem;
}
}
@media screen and (min-width: 768px) {
.p-regulation-terms__lead {
  padding-right: 0;
}
}
.p-regulation-terms__lead {
  font-size: 1.4rem;
  line-height: 1.8;
}
.s-formContent-progress {
  margin-bottom: 40px;
  padding-top: 57px;
}
@media screen and (min-width: 768px) {
.s-formContent-progress {
    padding-top: 76px;
}
}
.m-progress-button-wrap__item {
  text-align: center;
}
@media screen and (max-width: 991px) {
.m-progress-button-wrap__item {
  margin-bottom: 11px;
}
}
.c-formInput-item__annotation {
  letter-spacing: 0;
}

/* ========================================
   cart
======================================== */
.p-page-cartList .c-page-ttl {
  margin-bottom: 33px;
}
@media screen and (max-width: 767px) {
.p-page-cartList .c-page-ttl {
  margin-bottom: 14px;
}
}
.p-page-cartList .m-formHeading-body {
  margin-inline: 0;
  border-bottom: none;
}
@media screen and (min-width: 992px) {
    .m-formHeading-body__lead {
        width: 100%;
        font-size: 1.6rem;
    }
}
@media screen and (max-width: 991px) {
    .m-formHeading-body__lead {
        font-size: 1.4rem;
    }
}
@media screen and (min-width: 768px) {
    .s-orderContent-head {
        margin-bottom: 20px;
        padding-top: 20px;
    }
}
.s-orderContent-head {
  margin-bottom: 20px;
}
.m-cartNum-title {
  justify-content: center;
  margin-bottom: 5px;
  padding: 5px 0;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.04em;
  background: var(--color-gray-e);
  border-radius: 10px;
}
@media screen and (max-width: 991px) {
.m-cartNum-title {
  margin-bottom: 24px;
  padding: 10px 0;
  font-size: 2rem;
  border-radius: 5px;
  line-height: 1.1;
}
}
@media screen and (min-width: 768px) {
    .m-orderProductSect-item__pictureWrap {
        flex: 0 0 10.7%;
    }
}
.m-orderProductSect-item__pictureWrap {
    flex: 0 0 10rem;
}
.m-orderProductSect-item__inner {
    gap: 0 20px;
}

.m-orderProductSect-item__picture {
    min-width: 100px;
}
@media screen and (min-width: 768px) {
    .m-orderProductSect-item__info {
        flex: 0 1 85.7%;
    }
}
.m-orderProductSect-item__info {
  position: relative;
}
@media screen and (min-width: 768px) {
    .m-orderProductSect-itemDetail__title {
        font-size: 1.6rem;
    }
}
@media screen and (min-width: 768px) {
.m-orderProductSect-title {
  padding: 0.9rem 0 11px 0;
  color: var(--color-gray-b);
  font-size: 1.6rem;
  border-top: none;
}
}
@media screen and (min-width: 768px) {
.m-orderProductSect-item {
    padding: 2rem 0 2rem 0;
}
}
.c-changeQuantity {
  border: none;
  gap: 10px;
  width: 50%;
}
.c-changeQuantity__delete,
.c-changeQuantity__add {
  width: 20px;
  height: 20px;
  background: var(--color-blue);
  border-radius: 100px;
}
.c-changeQuantity__delete-button,
.c-changeQuantity__add-button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
@media screen and (min-width: 768px) {
    .m-orderProductSect-item {
        padding: 2rem 0 5px 0;
    }
}
@media screen and (max-width: 767px) {
.m-orderProductSect-itemRemove {
    display: inline-block;
    position: absolute;
    top: auto;
    bottom: -5px;
}
}
@media screen and (max-width: 389px) {
.m-orderProductSect-itemRemove {
    bottom: -35px;
}
}
@media screen and (min-width: 768px) {
.m-orderProductSect-itemRemove__text {
    color: var(--color-gray-c);
    font-size: 1.2rem;
    line-height: 1.6;
    margin-top: 10px;
}
}
.m-orderProductSect-itemRemove__text {
  display: block;
}
@media screen and (min-width: 768px) {
.m-orderProductSect-itemRemove__button {
  flex-direction: column;
}
}
@media screen and (max-width: 767px) {
.m-orderProductSect-itemRemove__button {
  display: flex;
  flex-direction: row-reverse;
  width: 150px;
  aspect-ratio: auto;

  background: none;
  border-radius: 0;
}
}

@media screen and (min-width: 768px) {
.m-orderProductSect-itemRemove__button::before {
  position: static;
  transform: none;
  flex-shrink: 0;
  z-index: 99;
}
}
.m-orderProductSect-itemRemove__button::before {
  z-index: 99;
  width: 11px;
  height: auto;
}
@media screen and (max-width: 767px) {
.m-orderProductSect-itemRemove__button::before {
  width: 7px;
}
}
.m-orderProductSect-itemRemove__button::after {
  content: "";
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid var(--color-gray-c);
  border-radius: 100px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
.m-orderProductSect-itemRemove__button::after {
  top: 12px;
  width: 20px;
  height: 20px;
}
}
.m-orderProductSect-item__image {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.m-orderProductSect-item__picture::before {
  padding-top: 100%;
}
@media screen and (min-width: 768px) {
    .m-orderProductSect-title__info {
        flex: 0 0 35%;
    }
}
@media screen and (min-width: 991px) {
    .m-orderProductSect-title__info {
        flex: 0 0 46%;
    }
}
@media screen and (min-width: 768px) {
    .m-orderProductSect-itemDetail {
        flex: 0 0 23%;
        padding-right: 5%;
    }
}
@media screen and (min-width: 991px) {
    .m-orderProductSect-itemDetail {
        flex: 0 0 37%;
    }
}
@media screen and (min-width: 992px) {
    .m-orderProductSect-title__price {
        flex: 0 0 16%;
    }
}
@media screen and (max-width: 991px) {
    .m-orderProductSect-title__price {
        flex: 0 0 14.5rem;
    }
}
@media screen and (min-width: 992px) {
    .m-orderProductSect-itemPrice {
        flex: 0 0 18.5%;
    }
}
@media screen and (min-width: 992px) {
    .m-orderProductSect-title__quantity {
        flex: 0 0 13.8%;
    }
}
@media screen and (max-width: 991px) {
  .m-orderProductSect-title p {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 992px) {
    .m-orderProductSect-itemQuantity {
        flex: 0 0 13%;
        padding-right: 4%;
    }
}
@media screen and (min-width: 992px) {
    .m-orderProductSect-itemQuantity + .m-orderProductSect-itemSubtotal {
        flex: 0 0 15%;
    }
}
@media screen and (min-width: 768px) {
    .m-orderProductSect-itemRemove {
        margin-top: 20px;
    }
}
@media screen and (min-width: 1260px) {
    .m-orderProductSect-itemRemove {
        margin-left: 5.5%;
    }
}
@media screen and (min-width: 992px) {
    .m-orderProductSect-itemPrice__price {
        font-size: 2rem;
    }
}
@media screen and (min-width: 992px) {
    .m-orderProductSect-itemSubtotal {
        font-size: 2rem;
    }
}
@media screen and (min-width: 768px) {
    .p-cartNoveltySelect {
        padding: 9px 0;
        border-bottom: none;
    }
}
.p-cartNoveltySelect {
  padding: 5px 0 5px;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
    .s-orderContent-sepWrap--cartUseDiscount {
        padding-top: 12px;
        gap: 2%;
    }
}
.s-orderContent-sepWrap--cartUseDiscount {
    padding-top: 10px;
}
@media screen and (min-width: 768px) {
    .s-orderContent-sepWrap__entry--cartUseDiscount {
        padding-bottom: 20px;
    }
}
@media screen and (min-width: 992px) {
    .s-orderContent-sepWrap__entry {
        width: 48.2%;
    }
}
.m-orderUseDiscount__title {
    font-size: 2rem;
}
.m-orderUseDiscount__input {
    margin-top: 28px;
}
@media screen and (max-width: 767px) {
.m-orderUseDiscount__input {
    margin-top: 20px;
}
}
@media screen and (min-width: 992px) {
    .s-orderContent-sepWrap__info {
        width: 48.2%;
        margin-top: 9px;
    }
}
@media screen and (max-width: 767px) {
.c-formInput-item__inline-text {
    font-size: 1.4rem;
}
}
.s-orderContent-cartGroup-body {
  padding-inline: 0;
}
.m-orderPriceSummary {
    padding: 2.4rem 3rem 2.4rem;
    border: 10px solid var(--color-gray-e);
    border-radius: 10px;
}
@media screen and (min-width: 768px) {
    .m-orderPriceSummary-item {
        padding-bottom: 8px;
    }
}
@media screen and (min-width: 768px) {
    .m-orderPriceSummary-list {
        gap: 9px;
    }
}
.m-orderPriceSummary-list {
    border-top: none;
}
@media screen and (max-width: 767px) {
.m-orderPriceSummary-total__price--tax {
    display: block;
}
}
@media screen and (min-width: 768px) {
    .m-orderPriceSummary-total {
        padding: 9px 0 0;
    }
}
.m-orderPriceSummary-item__price.u-text-red {
  color: var(--color-gray-b) !important;
}
.s-orderContent-btnGroup {
    margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .s-orderContent-btnGroup {
    margin-top: 30px;
    padding-inline: 0;
  }
}
@media screen and (min-width: 768px) {
    .m-progress-button-wrap__item {
        max-width: 350px;
        margin-inline: auto;
    }
}
@media screen and (min-width: 768px) {
    .m-progress-button-wrap__group {
        flex-direction: column;
    }
}
.cart_amazon_txt {
  margin-top: 10px;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
    .s-orderContent-foot {
        margin-top: 80px;
        padding: 73px 1.6rem 0;
    }
}
.m-productRecommend-wrap__title {
  margin-bottom: 40px;
  font-family: var(--font-ttl);
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 991px) {
.m-productRecommend-wrap__title {
  margin-bottom: 20px;
  font-size: 3.6rem;
  text-align: center;
}
}
@media screen and (max-width: 389px) {
.m-productRecommend-wrap__title {
  font-size: 9.2vw;
}
}
.m-productRecommend-wrap__title-sup {
  display: block;
  margin-bottom: 3px;
  color: var(--color-gold);
  font-size: 1.6rem;
  text-transform: uppercase;
  line-height: 1.4;
  letter-spacing: 0.08em;
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media screen and (max-width: 991px) {
.m-productRecommend-wrap__title-sup {
  margin-bottom: 5px;
  font-size: 1.4rem;
}
}
.m-orderUseDiscount-selectBox__couponBox {
  width: 124px;
}
.m-orderUseDiscount-selectBox__couponBox .c-btn {
  display: inline-flex;
  max-width: initial;
  min-width: initial;
  width: 124px;
  height: 34px;
  font-size: 1.6rem;
}
.m-orderUseDiscount-selectBox__couponBox .c-btn::after {
  content: none;
}
.c-couponBox-item__button {
  text-align: center;
}
.m-orderUseDiscount-selectBox__couponBox .c-btn.m-modalBoxFooterBtn__close {
  max-width: 426px;
  min-width: 240px;
  width: 100%;
  height: 55px;
}
.m-modalBoxFooterBtn__close {
  text-align: center;
}
.m-modalBoxHeding__closeBtn {
  color: var(--color-blue);
}
@media screen and (max-width: 1160px) {
    .m-orderUseDiscount-inputSelect {
        display: grid;
        grid-template-columns: 50% 50%;
        grid-template-areas: "gridA gridB" "gridC gridC";
    }
}
@media screen and (max-width: 991px) {
    .m-orderUseDiscount-inputSelect {
        grid-template-columns: 50% 50%;
    }
}
@media screen and (min-width: 1161px) {
    .m-orderUseDiscount__input select {
      max-width: 400px;
      min-width: initial;
      width: 72%;
    }
}
@media screen and (max-width: 1160px) {
.m-orderUseDiscount__input select {
  width: 60%;
}
}
@media screen and (max-width: 767px) {
.m-orderUseDiscount__input select {
  width: 60%;
}
}
@media screen and (max-width: 389px) {
.m-orderUseDiscount__input select {
  width: 100%;
}
}
.m-orderUseDiscount-selectBox + .m-orderUseDiscount-inputSelect__select, .m-orderUseDiscount-inputBox + .m-orderUseDiscount-inputSelect__select {
    padding-top: 0;
    margin-top: 0;
    border-top: none;
    position: relative;
    left: -70px;
}
@media screen and (max-width: 1160px) {
.m-orderUseDiscount-selectBox + .m-orderUseDiscount-inputSelect__select, .m-orderUseDiscount-inputBox + .m-orderUseDiscount-inputSelect__select {
    left: 0;
}
}
.m-orderUseDiscount-selectBox {
    grid-area: gridC;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 15px;
}
.c-product-head__picture::before {
    padding-top: 100%;
}
@media screen and (min-width: 768px) {
    .c-product-body__title-name {
        margin-bottom: 10px;
    }
}
.js-ga4-select-item {
  font-size: 1.6rem;
}
.c-product-head__status {
  top: 10px;
  padding-right: 0;
}
.c-product-sIcon {
  justify-content: flex-end;
  margin: 0 10px;
}
.c-product-sIcon__item {
  background: #E7E7E7;
}
.c-product-sIcon__item img {
  width: auto;
  height: 20px;
}
.c-sIcon {
  padding: 0;
}
.c-sIcon--soldout {
  display: block;
  width: 78px;
  height: 20px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  background-image: url("/Contents/Feature/product_icon_soldout.png");
  background-repeat: no-repeat;
  background-position: center;
  background-color: #E7E7E7;
  background-size: contain;
  vertical-align: middle;
}
.c-product-head__picture::before {
  padding-top: 100%;
}
.c-product-head__image {
  border-radius: 20px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.p-page-cartList .btn {
  margin-inline: auto;
  width: 100%;
}
.m-productLine-col3-md6__item {
    width: calc(16.6666% - 1.6416666667rem);
}
@media screen and (max-width: 991px) {
.m-productLine-col3-md6__item {
    width: calc(50% - 10px);
}
}
@media screen and (min-width: 768px) {
    .p-page-cartList .m-progress-button-wrap__item {
        max-width: 100%;
    }
}

/* ========================================
   cart pages
======================================== */

/*  cart/shipping
-------------------- */
.m-orderProductSectBox-item__picture img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}
.m-orderSect-button button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 0 40px;
  max-width: 426px;
  min-width: 240px;
  height: 55px;
  color: var(--color-blue) !important;
  font-size: 2rem;
  white-space: nowrap;
  border: 1px solid var(--color-blue);
  border-radius: 100px;
  background-color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.m-orderSect-button button::after {
  content: "";
  margin-left: 20px;
  width: 20px;
  height: 11px;
  background: url("/Contents/Feature/icon_arrow.svg") no-repeat;
}
.m-orderSect-button button:hover {
  color: #fff !important;
  background-color: var(--color-blue);
  opacity: 1;
}
.m-orderSect-button button:hover::after {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(93deg) brightness(103%) contrast(103%);
}
@media screen and (max-width: 991px) {
  .m-orderSect-button button {
    position: relative;
    width: 100%;
    max-width: 350px;
    min-width: 240px;
    height: 52px;
    font-size: 1.6rem;
    padding: 0 40px;
  }
  .m-orderSect-button button::after {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0;
  }
}
@media screen and (max-width: 360px) {
  .m-orderSect-button button {
    width: 90%;
  }
}
@media screen and (min-width: 768px) {
    .m-orderSect__button-wrap {
        width: auto;
    }
}

/* ========================================
   maypege common
======================================== */
.m-userNav__sections {
    border: none;
}
.m-userNav-section__title {
  margin-bottom: 34px;
  padding: 0;
  border: none;
}
@media screen and (min-width: 992px) {
    .m-userNav-section__title {
      margin-bottom: 36px;
    }
}
.m-userNav-section:first-child .m-userNav-section__title {
    padding-top: 0;
}
.c-userNav-title__text {
  font-size: 2rem;
}
@media screen and (min-width: 992px) {
    .c-userNav-title__text {
        font-size: 2rem;
    }
}
.m-userNav-section__menu {
    padding-bottom: 0;
    margin-top: 0;
}
@media screen and (min-width: 992px) {
    .m-userNav-section__menu {
        padding-bottom: 0;
        margin-top: 0;
    }
}
.m-userNav-section--account {
  margin-top: 53px;
}
@media screen and (min-width: 768px) {
.m-userNav-section--account {
  margin-top: 74px;
}
}
.m-userNav-menu__item {
  margin-bottom: 8px;
}
.c-userNav-link {
  justify-content: flex-start;
    padding: 14px 8px 13px;
    line-height: 1.2;
    font-size: 1.4rem;
    background: var(--color-gray-e);
    gap: 20px;
    border-radius: 5px;
}
@media screen and (min-width: 992px) {
    .c-userNav-link {
        padding: 12px 8px 13px;
        font-size: 1.6rem;
        gap: 10px;
    }
}
.c-userNav-link::before {
    content: "";
    width: 20px;
    height: 11px;
    background: url("/Contents/Feature/icon_arrow.svg") no-repeat;
}
.c-userNav-link:hover,
.c-userNav-link.c-userNav-link--active {
    background: var(--color-blue);
    color: #fff;
    opacity: 1;
}
.c-userNav-link:hover::before,
.c-userNav-link.c-userNav-link--active::before {
    background: url("/Contents/Feature/icon_arrow_white.svg") no-repeat;
}
.c-userNav-link::after {
  content: none;
}
.p-myPage-navWrap {
  margin-bottom: 0;
  padding: 0;
}
@media screen and (min-width: 992px) {
    .p-myPage-navWrap {
        width: 22.5%;
    }
}

/* ========================================
   maypege
======================================== */
.p-myPage-infoWrap__title {
  margin-top: 18px;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
.p-myPage-infoWrap__title {
  margin-top: 0;
}
}
.p-myPage-infoWrap__title .c-page-ttl {
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
.p-myPage-infoWrap__title .c-page-ttl {
  margin-bottom: 31px;
}
}
.p-myPage-navWrap {
    order: 5;
}
.p-myPage-infoWrap {
    margin-bottom: 30px;
    padding-inline: 0;
}
@media screen and (min-width: 992px) {
    .p-myPage-infoWrap {
      margin-bottom: 40px;
        width: 74.2%;
    }
}
.p-myPage-info {
    padding: 2.5rem;
    border-radius: 1rem;
    background-color: var(--color-gray-e);
}
.p-page-myPage .s-myPageContent-infoWrap {
  order: 3;
  padding-inline: 0;
}
@media screen and (min-width: 992px) {
    .p-myPage-recommendWrap {
        width: 74.2%;
    }
}
@media screen and (min-width: 992px) {
.p-page-myPage .s-myPageContent-infoWrap {
    float: right;
    padding-top: 0;
    width: 74.2%;
    border: none;
}
}
.p-myPage-infoWrap .c-userSectHeading__title {
  margin-bottom: 15px;
  padding: 0;
  text-align: left;
  background: none;
  border-radius: 0;
}
.p-myPage-pointInfo + .p-myPage-userRankInfo {
  border: none;
}
.subsc_infoWrap {
  order: 2;
  margin-bottom: 52px;
  padding: 24px 20px 40px;
  border: none;
  background: var(--color-gray-e);
  border-radius: 20px;
}
@media screen and (min-width: 992px) {
.subsc_infoWrap {
    float: right;
    margin-bottom: 40px;
    padding: 26px 40px 40px;
    width: 74.2%;
}
}
.subsc_infoWrap .subsc_ttl {
  margin-bottom: 30px;
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 389px) {
.subsc_infoWrap .subsc_ttl {
  font-size: 5vw;
}
}
@media screen and (min-width: 768px) {
.subsc_infoWrap .subsc_ttl {
  margin-bottom: 28px;
  font-size: 2.4rem;
  text-align: left;
}
}

.subsc_infoWrap .subsc_notes{
    margin-bottom:0.2em;
    display: block;
	font-size: 13px;
}

.subsc_infoWrap .subsc_layout {
	margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .subsc_infoWrap .subsc_layout {
    display: flex;
    align-items: flex-start;
  }
}



.subsc_infoWrap .subscList{
	width: 100%;
}
.subsc_infoWrap .subscList > li{
	width: 100%;
	padding: 15px 0;
	display: flex;
	justify-content: space-between;
	gap: 0 5%;
	border-top: solid 1px var(--color-gray-d);
}
.subsc_infoWrap .subscList > li:last-child{
	padding-bottom: 0;
}

.subsc_infoWrap .subsc_title{

}
.subsc_infoWrap .subsc_title .head{
	margin-bottom: 0.5em;
	display: block;
}
.subsc_infoWrap .subsc_title .name{
	display: block;
	font-size: 16px;
	font-weight: 700;
}
@media screen and (min-width: 768px) {
.subsc_infoWrap .subsc_title .name{
	font-size: 18px;
}
}

.subsc_infoWrap .num_box {
  min-width: 140px;
  padding: 10px;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--color-gray-d);
}
@media screen and (min-width: 768px) {
.subsc_infoWrap .num_box {
  margin: 0;
  padding: 15px;
  min-width: 160px;
  width: 19.3%;
  aspect-ratio: 11 / 10;
}
}
.subsc_infoWrap .num_ttl {
  max-width: 270px;
  width: 100%;
  color: #fff;
  font-size: 1.3rem;
  text-align: center;
  background: var(--color-blue);
  border-radius: 99px;
}
@media screen and (min-width: 768px) {
.subsc_infoWrap .num_ttl {
  max-width: none;
}
}
.subsc_infoWrap .num_txt {
  color: var(--color-blue);
  font-size: 5rem;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}
@media screen and (min-width: 768px) {
.subsc_infoWrap .num_txt {
  font-size: 6rem;
}
}
.subsc_infoWrap .num_txt--big {
  font-size: 8rem;
}
@media screen and (min-width: 768px) {
.subsc_infoWrap .num_txt--big {
  font-size: 9rem;
}
}
.subsc_infoWrap .info_txt01 {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
.subsc_infoWrap .info_txt01 {
  margin-top: -9px;
  font-size: 1.6rem;
}
}
.subsc_infoWrap .btn {
  margin-top: 13px;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
.subsc_infoWrap .btn {
  margin-top: 12px;
  margin-bottom: 11px;
  text-align: left;
}
}
.subsc_infoWrap .info_txt02 {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
.subsc_infoWrap .info_txt02 {
  font-size: 1.4rem;
}
}
.p-page-myPage .s-myPageContent-infoWrap .s-myPageContent-infoWrap__title {
  padding-bottom: 0;
}
.p-page-myPage .s-myPageContent-infoWrap .m-formHeading-title {
  margin-bottom: 28px;
  padding-bottom: 0;
  border: none;
}
@media screen and (min-width: 768px) {
.p-page-myPage .s-myPageContent-infoWrap .m-formHeading-title {
  margin-bottom: 35px;
}
}
.p-page-myPage .s-myPageContent-infoWrap .c-form-title {
  font-size: 1.9rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
.p-page-myPage .s-myPageContent-infoWrap .c-form-title {
  font-size: 2.4rem;
  text-align: left;
}
}
.p-fixedPurchaseList-content__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.p-fixedPurchaseList-content__list .m-userSect-wrap {
  margin-bottom: 20px;
  padding: 27px 20px 30px;
  width: 100%;
  border: 10px solid var(--color-gray-e);
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
    .p-fixedPurchaseList-content__list .m-userSect-wrap {
        margin-bottom: 20px;
        padding: 20px 30px 30px;
        width: 49%;
    }
}
.p-fixedPurchaseList-content__list .m-userSect-wrap:first-child {
    border-top: 10px solid var(--color-gray-e);
    padding-top: 27px;
}
.m-userSect--products:not(:last-of-type) {
  margin-bottom: 0;
  padding-top: 20px;
}

/* sp Scroll */
@media screen and (max-width: 767px) {
  .p-fixedPurchaseList-content__list {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
    flex-wrap: nowrap;
  }
  .p-fixedPurchaseList-content__list .m-userSect-wrap {
    flex-shrink: 0;
    width: 90%;
    margin-right: 10px;
    scroll-snap-align: start;
  }
  .p-fixedPurchaseList-content__list .m-userSect-wrap:last-child {
    margin-right: 0;
  }
}
.m-userSect__info {
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
.m-userSect__info {
  margin-bottom: 25px;
}
}
.m-userSect--typeSep {
    gap: 0;
}
@media screen and (min-width: 768px) {
    .m-userSect--typeSep {
        flex-direction: column;
    }
}
.m-userSect-wrap .c-userSectHeading__title {
    margin-bottom: 17px;
    padding: 0;
    font-size: 1.5rem;
    background: none;
}
@media screen and (min-width: 768px) {
.m-userSect-wrap .c-userSectHeading__title {
    margin-bottom: 22px;
    font-size: 1.8rem;
}
}
.m-userSect-wrap .c-userSectHeading__title-primary {
  color: var(--color-gray-b);
}
.c-userSect-info:first-of-type {
    border-top: 1px solid var(--color-gray-d);
}
.c-userSect-info:not(:first-child) {
    margin-top: 0;
}
.c-userSect-info {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--color-gray-d);
    padding: 10px 0 6px;
}
    .p-fixedPurchaseList-content__list .c-userSect-info__title {
        font-size: 1.4rem;
    }
@media screen and (min-width: 768px) {
    .p-fixedPurchaseList-content__list .c-userSect-info__title {
        width: 60%;
        font-size: 1.6rem;
    }
}
.c-userSect-info__text {
    font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
    .c-userSect-info__text {
      font-size: 1.4rem;
    }
}

.m-userSect__button-wrap {
  width: 100%;
}
@media screen and (min-width: 991px) {
.m-userSect__button-wrap {
  margin-left: auto;
  max-width: 130px;
}
}
.m-userSect-button {
  text-align: center;
}
.p-page-myPage .m-userSect-button {
  width: 100%;
  text-align: right;
}
@media screen and (min-width: 768px) {
.p-page-myPage .m-userSect-button {
  text-align: center;
}
}
.m-userSect-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  padding: 0 10px;
  max-width: 130px;
  height: 40px;
  color: var(--color-blue) !important;
  font-size: 1.6rem;
  white-space: nowrap;
  border: 1px solid var(--color-blue);
  border-radius: 100px;
  background-color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 768px) {
.m-userSect-button a {
  max-width: none;
  min-width: 130px;
}
}
.m-userSect-button a:hover {
  color: #fff;
  background-color: var(--color-blue);
  opacity: 1;
}
@media screen and (max-width: 767px) {
.p-page-login .p-login-foot {
  display: none;
}
}

/*  order-history
-------------------- */
.p-page-orderHistoryList .m-userSect__products {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
    .p-historyListChange__item {
        width: 25rem;
    }
}

/*  buy-again
-------------------- */
@media screen and (min-width: 768px) {
    .p-page-orderHistoryList .m-userProductSectCol-item__button-wrap {
        width: 35%;
    }
}
@media screen and (max-width: 767px) {
.m-userProductSectCol-buttonList {
    flex-direction: column;
    align-items: center;
}
}
@media screen and (max-width: 767px) {
.m-userProductSectCol-buttonList__item {
  width: auto;
}
}
/*  subscription detail
-------------------- */
@media screen and (min-width: 992px) {
    .m-userProductSect-selectVariation__button {
        max-width: 426px;
    }
}
@media screen and (min-width: 768px) {
    .m-userProductSect-selectVariation__button {
        width: 43.5%;
    }
}
.p-page-fixedPurchaseDetail .m-modalBoxSet {
  text-align: center;
}
/*  account address
-------------------- */
.p-page-shippingList .c-userSectHeading__title .c-btn-fluid {
    padding: 10px 40px;
    max-width: 426px;
    min-width: 160px;
    height: 40px;
    padding: 10px 10px;
    font-size: 1.6rem;
    font-weight: normal;
    border-radius: 100px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.p-page-shippingList .c-userSectHeading__title .c-btn-fluid::after {
  content: none;
}
.p-page-shippingList .c-userSectHeading__title .c-btn-fluid--gray-border {
    color: #fff !important;
    white-space: nowrap;
    border: 1px solid var(--color-blue);
    background-color: var(--color-blue);
}
.p-page-shippingList .c-userSectHeading__title .c-btn-fluid::before {
  content: none;
}
@media screen and (max-width: 767px) {
.p-page-shippingList .p-shippingList-info__progress {
  text-align: center;
}
}
/*  account address list
-------------------- */
.p-page-shippingList .m-userSect__button-wrap {
  max-width: 240px;
}
@media screen and (max-width: 991px) {
.p-page-shippingList .m-userSect__button-wrap {
  margin-inline: auto;
}
}
.p-page-shippingList .c-btn-fluid--gray::after {
  content: none;
}
@media screen and (max-width: 767px) {
  .p-page-shippingList .m-userSect-button {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
.p-page-shippingList .c-btn-fluid--red {
  max-width: none;
}
}

/*  account favorite
-------------------- */
@media screen and (max-width: 767px) {
  .p-page-favoriteList .m-productLineUser-col2-md3 {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
    flex-wrap: nowrap;
  }
  .p-page-favoriteList .m-productLineUser-col2-md3 .m-productLineUser-col2-md3__item {
    flex-shrink: 0;
    width: 75%;
    margin-right: 10px;
    scroll-snap-align: start;
  }
  .p-page-favoriteList .m-productLineUser-col2-md3 .m-productLineUser-col2-md3__item:last-child {
    margin-right: 0;
  }
  .p-page-favoriteList .c-btn-cart {
    min-width: 100%;
  }
}

/*  account payment
-------------------- */
.p-page-creditCardList .c-userSectHeading__title .c-btn-fluid {
    padding: 10px 40px;
    max-width: 426px;
    min-width: 160px;
    height: 40px;
    padding: 10px 10px;
    font-size: 1.6rem;
    border-radius: 100px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.p-page-creditCardList .c-userSectHeading__title .c-btn-fluid::after {
  content: none;
}
.p-page-creditCardList .c-userSectHeading__title .c-btn-fluid--gray-border {
    color: #fff !important;
    white-space: nowrap;
    border: 1px solid var(--color-blue);
    background-color: var(--color-blue);
}
.p-page-creditCardList .c-userSectHeading__title .c-btn-fluid::before {
  content: none;
}
@media screen and (max-width: 767px) {
.p-page-creditCardList .p-shippingList-info__progress {
  text-align: center;
}
}
/*  account mail-magazine register
-------------------- */
@media screen and (max-width: 767px) {
.p-page-mailMagazineRegistInput .p-mailMagazineRegistInput-foot {
  margin-bottom: 40px;
}
}
/*  account edit
-------------------- */
@media screen and (max-width: 767px) {
  .p-page-modifyInput .c-userSect-entry__form--zipcode .btn a {
    min-width: 120px;
  }
}
/*  account social-login
-------------------- */
@media screen and (min-width: 768px) {
    .p-page-socialLoginCooperation .p-socialLogin-item__status {
        display: block;
        width: 25%;
    }
}
@media screen and (min-width: 768px) {
    .p-page-socialLoginCooperation .p-socialLogin-item__button {
        width: 30%;
    }
}
@media screen and (max-width: 767px) {
    .p-page-socialLoginCooperation .p-socialLogin-item__button {
        width: 39%;
    }
}
@media screen and (max-width: 599px) {
    .p-page-socialLoginCooperation .p-socialLogin-item__button {
        width: 100%;
    }
}
@media screen and (min-width: 768px) {
    .p-page-socialLoginCooperation .p-socialLogin-item__button .c-btn-fluid {
        min-width: 200px;
    }
}
@media screen and (max-width: 767px) {
    .p-page-socialLoginCooperation .p-socialLogin-item__button .c-btn-fluid {
        min-width: 160px;
    }
}
@media screen and (max-width: 767px) {
.p-page-socialLoginCooperation .p-socialLogin-item__media {
  width: 58%;
}
}
@media screen and (max-width: 599px) {
.p-page-socialLoginCooperation .p-socialLogin-item__media {
  margin-bottom: 20px;
  width: 100%;
  max-width: 350px;
}
}
@media screen and (max-width: 599px) {
.p-page-socialLoginCooperation .p-socialLogin-item {
  flex-direction: column;
  text-align: center;
}
}

/* ========================================
   product list
======================================== */

/*  layout
-------------------- */
@media screen and (min-width: 768px) {
  .p-page-productList {
    width: 100%;
    max-width: 1360px;
    margin-inline: auto;
    padding: 0;
  }
}
@media screen and (max-width: 1360px) {
.p-page-productList {
    padding-inline: 2%;
}
}
.p-productListWrap__sideNav {
  margin-bottom: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
    .p-productListWrap__sideNav {
        width: 22.5%;
    }
}
@media screen and (min-width: 768px) {
    .p-productListWrap__sideNav + .p-productListWrap__main {
        width: 74.2%;
    }
}

/*  side
-------------------- */
/* side title */
.p-productListWrap__sideNav {
  margin-bottom: 40px;
  padding: 0;
  font-size: 2rem;
}
@media screen and (min-width: 992px) {
    .p-productListWrap__sideNav {
      margin-bottom: 40px;
      padding: 0;
      font-size: 2rem;
    }
}
.m-productNavTitleList__title {
  margin-bottom: 31px;
  padding-left: 0;
  font-size: 2rem;
}
/* side link */
.m-productNavTitleList {
  border-bottom: none;
}
.m-productNavList-category,
.m-productNavList-hasChildeCategories {
  margin-bottom: 8px;
}
.m-productNavList-category__link,
.m-productNavList-hasChildeCategories__title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
    padding: 14px 8px 13px;
    line-height: 1.2;
    font-size: 1.4rem;
    background: var(--color-gray-e);
    gap: 20px;
    border-radius: 5px;
}
@media screen and (min-width: 992px) {
    .m-productNavList-category__link,
    .m-productNavList-hasChildeCategories__title {
        padding: 12px 8px 13px;
        font-size: 1.6rem;
        gap: 10px;
    }
}
.m-productNavList-category__link::before,
.m-productNavList-hasChildeCategories__title::before {
    flex-shrink: 0;
    content: "";
    width: 20px;
    height: 11px;
    background: url("/Contents/Feature/icon_arrow.svg") no-repeat;
}
.m-productNavList-hasChildeCategories__title::after {
    position: relative;
    top: auto;
    right: 10px;
    margin-left: auto;
}
.m-productNavList-category__link:hover,
.m-productNavList-hasChildeCategories__title:hover {
    background: var(--color-blue);
    color: #fff;
    opacity: 1;
}
.m-productNavList-category__link:hover::before,
.m-productNavList-hasChildeCategories__title:hover::before {
    background: url("/Contents/Feature/icon_arrow_white.svg") no-repeat;
}
.m-productNavList-hasChildeCategories.open > .m-productNavList-hasChildeCategories__title {
  background: var(--color-blue);
  color: #fff;
}
.m-productNavList-hasChildeCategories.open > .m-productNavList-hasChildeCategories__title::before {
  background: url("/Contents/Feature/icon_arrow_white.svg") no-repeat;
}
.m-productNavList-categories {
  margin-top: 10px;
}

.m-productNavList-category__link.is-current,
.m-productNavList-categories__itemLink.is-current,
.m-productNavList-hasChildeCategories__title.is-current {
  background: var(--color-blue);
  color: #fff;
  opacity: 1;
}
.m-productNavList-category__link.is-current::before,
.m-productNavList-hasChildeCategories__title.is-current::before {
  background: url("/Contents/Feature/icon_arrow_white.svg") no-repeat;
}

/* side_link_box */
.side_link_box {
  margin-top: 45px;
  text-align: center;
}
.side_link_box a {
  display: block;
}
.side_link_box img {
  margin-bottom: 6px;
  width: 100%;
  border-radius: 10px;
}
.side_link_box .txt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--color-blue);
  font-size: 1.6rem;
  letter-spacing: 0.01em;
  transition: all 0.3s;
  opacity: 1;
}
@media screen and (max-width: 1360px) {
.side_link_box .txt {
  font-size: 1.18vw;
}
}
.side_link_box .txt::before {
  content: "";
  margin-right: 10px;
  width: 20px;
  height: 11px;
  background: url("/Contents/Feature/icon_arrow.svg") no-repeat;
}
.side_link_box a:hover .txt {
  opacity: 0.5;
}

/*  top head
-------------------- */
@media screen and (min-width: 768px) {
    .p-productListHeading-head {
      margin-bottom: 27px;
      padding-bottom: 23px;
    }
}
.p-productListHeading-head__title {
    font-size: 2.4rem;
    font-weight: bold;
}
@media screen and (min-width: 768px) {
    .p-productListHeading-head__title {
        font-size: 4rem;
        margin-bottom: 0;
    }
}
@media screen and (max-width: 359px) {
    .p-productListHeading-head__title {
        width: 60%;
    }
}
/*  top pager
-------------------- */
.p-productListHeadPager {
  display: none !important;
}
/*  top select
-------------------- */
@media screen and (min-width: 768px) {
    .m-productListSort {
        gap: 1rem 30px;
    }
}
.m-productListSort-selectBox__currentItem {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  font-weight: 600;
  box-sizing: border-box;
  padding: 9px 10px;
  background: linear-gradient(180deg, #FFFFFF 0%, #F2F2F2 100%);
  border: 1px solid #DDDDDD;
  border-radius: 5px;
}
.m-productListSort-item {
  margin-bottom: 15px;
}
/*  top view icon
-------------------- */
@media screen and (max-width: 767px) {
  .p-productListHeading-body {
    margin-top: -54px;
  }
}
.p-productListHeading-body__pageChange {
    position: relative;
    top: -7px;
    width: 80px;
}
@media screen and (min-width: 768px) {
.p-productListHeading-body__pageChange {
    width: 120px;
}
}

.p-productChangeView {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--color-blue);
  border-radius: 5px;
  width: 80px;
  height: 40px;
  background: #fff;
}
@media screen and (min-width: 768px) {
.p-productChangeView {
  width: 120px;
}
}
.p-productChangeView__item {
  width: 50%;
  height: 100%;
}
.p-productChangeView__item + .p-productChangeView__item {
    margin-left: 0;
}
.p-productChangeView__item--line::after {
  content: none;
}

.p-productChangeView__item a {
  position: relative;
  cursor: pointer;
}
.p-productChangeView__item a::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 20px;
  height: 20px;
}
.p-productChangeView__item--line::before {
    background: url("/Contents/Feature/icon_view_list.svg") no-repeat;
}
.p-productChangeView__item--window::before {
    background: url("/Contents/Feature/icon_view_window.svg") no-repeat;
}
.p-productChangeView__item a.current {
  background: var(--color-blue);
}
.p-productChangeView__item--line.current::before {
    background: url("/Contents/Feature/icon_view_list_white.svg") no-repeat;
}
.p-productChangeView__item--window.current::before {
    background: url("/Contents/Feature/icon_view_window_white.svg") no-repeat;
}
/*  bottom pager
-------------------- */
.p-productListBody__pager {
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
.p-productListBody__pager {
  margin-bottom: 20px;
}
}
.c-pager {
  padding: 15px 0;
  background: var(--color-gray-e);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
.c-pager {
  gap: 10px;
}
}
.c-pager-list-item {
  width: 32px;
  height: 32px;
  color: var(--color-gray-b);
  font-size: 1.6rem;
}
.c-pager-list-item--active {
    border-radius: 50%;
    font-weight: 600;
    background: none;
    border: 1px solid var(--color-blue);
}
.c-pager__prev,
.c-pager__next {
    position: static;
}
/*  window view
-------------------- */
@media screen and (min-width: 992px) {
    .m-productLine__item {
        margin-bottom: 10px;
    }
}

/*  list view
-------------------- */
.c-typeListProduct-pictureBox__picture {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 10px;
}
.c-typeListProduct-pictureBox__image {
    object-fit: cover;
}
@media screen and (min-width: 992px) {
    .c-typeListProduct-skuList-item__btnList {
        max-width: 100%;
        width: 100%;
    }
}
@media screen and (min-width: 1200px) {
    .c-typeListProduct-skuList-item__btnList {
        max-width: 100%;
        width: 100%;
    }
}
@media screen and (min-width: 992px) {
    .c-typeListProduct-skuList-item__btnList-btn {
        width: 100%;
        max-width: 300px;
        min-width: 200px;
    }
}
@media screen and (max-width: 991px) {
    .c-typeListProduct-skuList-item__btnList .c-btn-cart {
        position: relative;
        padding: 0 10px;
        width: 100%;
        max-width: 350px;
        min-width: 220px;
        height: 52px;
        font-size: 1.6rem;
    }
}
@media screen and (min-width: 768px) {
    .c-typeListProduct-skuList-head {
        display: none;
    }
}
@media screen and (min-width: 992px) {
    .c-typeListProduct-skuList-head {
        display: flex;
    }
}
/* skuList */
@media screen and (min-width: 768px) {
.c-typeListProduct-skuList-item__info {
  width: 100%;
}
}
.c-typeListProduct-skuList-item__btnList {
  margin-top: 20px;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
.c-typeListProduct-skuList-item__btnList {
  margin-top: 0;
}
}
.c-typeListProduct-skuList-item {
  flex-direction: column;
}
@media screen and (min-width: 768px) {
    .c-typeListProduct-skuList-item {
        flex-direction: column;
    }
}
.c-typeListProduct-skuList-item__btnList {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-typeListProduct-skuList-item__btnList-btn {
    text-align: center;
  }
}

/* ========================================
   product detail
======================================== */

/*  layout
-------------------- */
@media screen and (max-width: 767px) {
.l-container-wrap--product-detail .l-container-wrap__body {
  order: 4;
  margin-inline: auto;
  width: 90%;
}
.l-container-wrap--product-detail .product_detail_contents_wrap {
  order: 3;
}
.l-container-wrap--product-detail .p-productDetail-foot {
  order: 1;
}
}
@media screen and (max-width: 1126px) {
.l-container-wrap--product-detail .p-page-productDetail .l-container-fluid-md.l-container {
  padding: 0;
}
}
@media screen and (min-width: 768px) {
  .p-page-productDetail .l-container-fluid-md.l-container {
    max-width: 1126px;
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 1126px) {
.p-page-productDetail .l-container-fluid-md.l-container {
    padding-inline: 2%;
}
}
@media screen and (min-width: 992px) {
    .p-productDetailWrap {
        grid-template-columns: 48.2% 48.2%;
    }
}

/*  product img
-------------------- */
.m-productDetailImg {
  border: none;
}
.m-productDetailImg-slider__image,
.m-productDetailImg-thumsList__image,
.c-productSkuImgSelect-selectList__image {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.m-productDetailImg-slider__image {
  border-radius: 20px;
}
.m-productDetailImg-thumsList__image {
  border-radius: 5px;
}
.productSkuImgSelect-selectList__image {
  border-radius: 10px;
}
.m-productDetailImg-slideController__prev,
.m-productDetailImg-slideController__next {
  padding: 0 11px;
  width: 34px;
  height: 54px;
  background: #fff;
}
.m-productDetailImg-slideController__prev {
    left: 0 !important;
    border-radius: 0 5px 5px 0;
}
.m-productDetailImg-slideController__next {
    right: 0 !important;
    border-radius: 5px 0 0 5px;
}

.m-productDetailImg .swiper-slide-thumb-active .m-productDetailImg-thumsList__image {
  padding: 1px;
  border: 1px solid var(--color-blue);
  border-radius: 5px;
}

/*  product info
-------------------- */
.p-productDetailWrap {
  margin-top: 0;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
.p-productDetailWrap {
  margin-top: 40px;
}
}
.p-productDetaiMain-body {
    padding-inline: 0;
}
@media screen and (min-width: 768px) {
    .p-productDetaiMain-body {
        padding: 0 0 30px;
    }
}
@media screen and (max-width: 767px) {
  .p-productDetaiMain {
    padding: 0 0 10px;
  }
}
.p-productDetaiMain-head.p-productDetaiMain-title {
  padding-left: 0;
}
.p-productDetaiMain-head__title-name {
  margin-top: -10px;
  font-size: 3.2rem;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
.p-productDetaiMain-head__title-name {
  margin-top: 0;
  font-size: 2.4rem;
}
}
.p-productDetaiMain-head {
    padding-inline: 0;
}
@media screen and (min-width: 768px) {
    .p-productDetaiMain-head {
        padding: 0 0 20px;
    }
}
.c-productSkuImgSelect {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .m-productSkuDropdown-buyStep + .m-productSkuDropdown-buyStep {
    margin-top: 10px;
  }
  .m-productSkuDropdown-buyStep + .m-productStockStatus {
    margin-top: 10px;
  }
}
.p-productDetaiMain-body .txt01 {
  font-size: 1.2rem;
}
.m-productSkuDropdown {
  border-top: none;
  padding-top: 30px;
}
.product-detail_txt_box {}
.product-detail_txt_box .ttl {
  margin-bottom: 13px;
  font-size: 2rem;
  font-weight: bold;
}
.product-detail_txt_box .txt {}

/* btn */
.p-productSkuBottomBtn {
    align-items: center;
}
@media screen and (min-width: 768px) {
    .p-productSkuBottomBtn__cart {
      max-width: 220px;
      width: 100%;
    }
}
.p-productSkuBottomBtn .c-btn-cart {
    padding: 0 10px;
    min-width: 220px;
    font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-productSkuBottomBtn .c-btn-cart {
      min-width: 250px;
  }
}
/* favorit */
.p-productSkuBottomBtn__favorit {
  width: 24px;
}
.c-btn-favorit {
  padding: 0;
  width: 24px;
  font-size: 0;
  border: none;
  column-gap: 0;
}
.p-productSkuBottomBtn .c-btn-favorit {
  padding: 0;
  width: 24px;
  font-size: 0;
  column-gap: 0;
}
.c-btn-favorit::before {
    width: 24px;
    height: 24px;
    background: url("/Contents/Feature/icon_favorit.svg") center center no-repeat;
}
.c-btn-favorit--active::before {
    background: url("/Contents/Feature/icon_favorit_active.svg") center center no-repeat;
}

/* product-detail_note_box */
.product-detail_subscription_box .ss_ttl {
  margin-top: 23px;
  margin-bottom: 8px;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
.product-detail_subscription_box .ss_ttl {
  margin-top: 13px;
  font-size: 1.6rem;
}
}
.product-detail_subscription_box .txt {
  margin-bottom: 20px;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
.product-detail_subscription_box .txt {
  margin-bottom: 20px;
  font-size: 1.4rem;
}
}
.customer_tel_box {
  padding: 11px 0;
  width: 308px;
  color: #fff;
  background: var(--color-blue);
  border: 1px solid #fff;
}
@media screen and (max-width: 389px) {
.customer_tel_box {
  width: 100%;
}
}
.customer_tel_box .txt_tel {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 2.6rem;
}
.customer_tel_box .txt_tel::before {
  content: "";
  display: inline-block;
  margin-right: 15px;
  width: 36px;
  height: 25px;
  background: url("/Contents/Feature/icon_tel.png") no-repeat;
  background-size: contain;
}
.customer_tel_box .txt_time {
  font-size: 1.2rem;
  text-align: center;
}
.product-detail_volume_box .txt {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
.product-detail_volume_box .txt {
  margin-top: -5px;
  font-size: 1.2rem;
}
}

/*  review
-------------------- */
.product-detail_review_sec {
  margin: 80px auto 80px;
  max-width: 894px;
}
.p-productDetaiMain-guideTabBox-item__head {
  position: static;
}
.p-productDetaiMain-guideTabBox-item__body {
  display: block;
}
@media screen and (max-width: 991px) {
.p-productDetaiMain-guideTabBox-item__body {
  margin-inline: auto;
  width: 90%;
}
}
@media screen and (max-width: 991px) {
.p-productDetaiMain-guideTabBox-reviewList {
  padding: 0;
}
}
.p-productDetaiMain-guideTabBox-reviewList__item {
  padding: 20px 30px 26px;
  border: 10px solid var(--color-gray-e);
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
.p-productDetaiMain-guideTabBox-reviewList__item {
  padding: 20px 26px 26px;
}
}
.c-productReview__name {
  margin-bottom: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--color-gray-d);
  font-size: 2rem;
}
.c-productReview__time {
    margin-top: 6px;
    font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
    .c-productReview__time {
        display: block;
        margin-top: 10px;
        margin-left: 0;
        font-size: 1.4rem;
    }
}
.c-productReview {
  display: flex;
  flex-direction: column;
}
.c-productReview__starList {
  margin-bottom: 2px;
  order: -1;
  gap: 0;
}
.c-productReview__star {
  width: auto;
  height: auto;
  background: none;
}
.c-productReview__star--active {
  background: none;
}
.c-productReview__star::before {
  content: "\2606";
  font-size: 2rem;
}
.c-productReview__star--active::before {
  content: "\2605";
}
.p-productDetaiMain-guideTabBox-reviewList__addReviewBtn {
  margin: 60px auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
.p-productDetaiMain-guideTabBox-reviewList__addReviewBtn {
  margin-top: 30px;
}
}
.p-productDetaiMain-guideTabBox-reviewList__addReviewBtn .c-btn--addReview {
  padding: 0 10px;
  max-width: 245px;
  height: 52px;
  text-align: center;
}

/*  product_detail_contents_wrap
-------------------- */
.product_detail_contents_wrap {
  margin: 0 auto 100px;
  width: 100%;
}
@media screen and (max-width: 991px) {
.product_detail_contents_wrap {
  margin: 20px auto 0;
}
}
@media screen and (max-width: 991px) {
  .product_detail_contents_wrap .about_varieties_sec {
    margin-bottom: 0;
  }
}
.product_detail_contents_wrap .c-layout-m {
  max-width: 1126px;
}
@media screen and (max-width: 767px) {
.product_detail_contents_wrap .about_varieties_sec .sec_ttl {
  margin-bottom: 50px;
}
}

/*  table
-------------------- */
.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table th,
.c-table td {
  border: 1px solid var(--color-gray-d);
  padding: 13px 5px;
  font-size: 1.6rem;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 991px) {
.c-table th,
.c-table td {
  padding: 8px 5px;
  font-size: 1.4rem;
}
}
.c-table thead th,
.c-table tbody th {
  background-color: var(--color-gray-e);
  font-weight: bold;
}
.c-table--col4 th,
.c-table--col4 td {
  width: 23.6%;
}
@media screen and (max-width: 767px) {
.c-table--col4 th,
.c-table--col4 td {
  width: 23.2%;
}
}
.c-table--col5 th,
.c-table--col5 td {
  width: 17.7%;
}
@media screen and (max-width: 767px) {
.c-table--col5 th,
.c-table--col5 td {
  width: 17.3%;
}
}
.c-table--col4 th:first-of-type,
.c-table--col5 th:first-of-type {
  width: 28.7%;
}
@media screen and (max-width: 767px) {
.c-table--col4 th:first-of-type,
.c-table--col5 th:first-of-type {
  width: 29.2%;
}
}

.l-container-wrap--product-detail .c-table {
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
.l-container-wrap--product-detail .c-table {
  margin-bottom: 20px;
}
}

/*  detail_related_container
-------------------- */
.l-container-fluid-md.l-container.detail_related_container {
  margin-top: 4rem;
  padding-top: 3.7rem;
  order: 2;
}

@media screen and (min-width: 768px) {
  .l-container-fluid-md.l-container.detail_related_container {
    margin-top: 4rem;
    padding-inline: 2rem;
    order: 0;
  }
}
/*  detail_recommend_container
-------------------- */
.detail_recommend_container {
  border: none;
}


/* ========================================
   feature
======================================== */
.p-page-feature {
  margin: auto;
  max-width: 1100px;
}
@media screen and (max-width: 1100px) {
.p-page-feature {
  padding-inline: 20px;
}
}
@media screen and (max-width: 767px) {
.p-page-feature {
  padding-inline: 0;
  max-width: 90%;
}
}
.p-page-feature .l-container {
  padding-inline: 0;
}
.p-page-feature .s-featureContent-item {
  margin-bottom: 50px;
}
@media screen and (max-width: 991px) {
.p-page-feature .s-featureContent-item {
  margin-bottom: 27px;
}
}
.p-page-feature .c-page-title {
  margin-bottom: 10px;
  padding-bottom: 0;
  font-size: 4rem;
  letter-spacing: 0.11em;
  border-bottom: none;
}
@media screen and (max-width: 991px) {
.p-page-feature .c-page-title {
  font-size: 2.4rem;
}
}

.p-page-feature .feature_ttl_date {
  font-size: 1.6rem;
  text-align: right;
}
@media screen and (max-width: 991px) {
.p-page-feature .feature_ttl_date {
  font-size: 1.4rem;
}
}
.s-featureContent-item__headerImage {
  margin-bottom: 10px;
  width: 100%;
  border-radius: 10px;
}
@media screen and (max-width: 991px) {
.s-featureContent-item__headerImage {
  margin-bottom: 5px;
}
}
#feature-parts-header-banner {
  margin-bottom: 26px;
}
@media screen and (max-width: 991px) {
#feature-parts-header-banner {
  margin-bottom: 5px;
}
}
.p-page-feature #upper-contents-area h2,
.p-page-feature #lower-contents-area h2 {
  margin: 80px auto 40px;
  padding: 5px 10px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.04em;
  background: var(--color-gray-e);
  border-radius: 10px;
}
@media screen and (max-width: 991px) {
.p-page-feature #upper-contents-area h2,
.p-page-feature #lower-contents-area h2 {
  margin: 50px auto 30px;
  padding: 8px 10px;
  font-size: 2rem;
  border-radius: 5px;
}
}
.p-page-feature #upper-contents-area h3,
.p-page-feature #lower-contents-area h3 {
  margin: 1em 0 0.5em;
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width: 991px) {
.p-page-feature #upper-contents-area h3,
.p-page-feature #lower-contents-area h3 {
  font-size: 2rem;
}
}
.p-page-feature #upper-contents-area p,
.p-page-feature #lower-contents-area p {
  margin: 1em 0;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
.p-page-feature #upper-contents-area p,
.p-page-feature #lower-contents-area p {
  font-size: 1.4rem;
}
}
.p-page-feature #upper-contents-area p a,
.p-page-feature #lower-contents-area p a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 0.5em;
  color: var(--color-blue);
  font-size: 1.6rem;
  transition: all 0.3s;
  opacity: 1;
}
.p-page-feature #upper-contents-area p a::before,
.p-page-feature #lower-contents-area p a::before {
  content: "";
  margin-right: 10px;
  width: 20px;
  height: 11px;
  background: url("/Contents/Feature/icon_arrow.svg") no-repeat;
}
.p-page-feature #upper-contents-area p a::after,
.p-page-feature #lower-contents-area p a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background-color: var(--color-blue);
}
.p-page-feature #upper-contents-area p a:hover,
.p-page-feature #lower-contents-area p a:hover {
  opacity: 0.5;
}
.p-page-feature #upper-contents-area ul li,
.p-page-feature #lower-contents-area ul li {
  display: flex;
  align-items: center;
  gap: 5px;
  position: relative;
  margin-bottom: 15px;
  padding-bottom: 10px;
  font-size: 1.6rem;
  border-bottom: 1px solid var(--color-gray-d);
}
.p-page-feature #upper-contents-area ul li::before,
.p-page-feature #lower-contents-area ul li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  border: 3px solid var(--color-blue);
}

/* img txt layout */
.layout-img-r,
.layout-img-l {
  display: grid;
  grid-template-columns: 48.2% 48.2%;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 40px;
}
.layout-img-r .image,
.layout-img-l .image {
  margin: 0;
}
.layout-img-r .image img,
.layout-img-l .image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}
.layout-img-r > h3,
.layout-img-r > p {
  grid-column: 1;
}
.layout-img-r > .image {
  grid-column: 2;
  grid-row: 1 / 5;
}
.layout-img-l > h3,
.layout-img-l > p {
  grid-column: 2;
}
.layout-img-l > .image {
  grid-column: 1;
  grid-row: 1 / 5;
}
.layout-img-r h3,
.layout-img-l h3 {
  margin: -0.5em 0 0.5em !important;
}
@media screen and (max-width: 767px) {
.layout-img-r h3,
.layout-img-l h3 {
  margin: 18px 0 13px !important;
}
}
.layout-img-r p,
.layout-img-l p {
  margin: 0 0 0.5em !important;
}
@media screen and (max-width: 767px) {
  .layout-img-r,
  .layout-img-l {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .layout-img-r > h3,
  .layout-img-r > p,
  .layout-img-l > h3,
  .layout-img-l > p {
    margin-bottom: 15px;
  }
  .layout-img-r > .image,
  .layout-img-l > .image {
    order: -1;
  }
}

/*  table
-------------------- */
.p-page-feature figure.table {
  margin-bottom: 40px;
  width: 100% !important;
}
@media screen and (max-width: 767px) {
.p-page-feature figure.table {
  margin-bottom: 30px;
}
}
.p-page-feature figure table {
  width: 100%;
  border-collapse: collapse;
}
.p-page-feature figure table th,
.p-page-feature figure table td {
  border: 1px solid var(--color-gray-d);
  padding: 13px 20px;
  font-size: 1.6rem;
  vertical-align: middle;
}
@media screen and (max-width: 991px) {
.p-page-feature figure table th,
.p-page-feature figure table td {
  padding: 10px 5px;
}
}
@media screen and (max-width: 991px) {
.p-page-feature figure table th,
.p-page-feature figure table td,
.p-page-feature figure table th strong,
.p-page-feature figure table td strong,
.p-page-feature figure table th span,
.p-page-feature figure table td span {
  font-size: 1.4rem !important;
}
}
.p-page-feature figure table th {
  background-color: var(--color-gray-e);
  font-weight: bold;
  text-align: center;
}
.p-page-feature figure table col {
  width: auto !important;
}
.p-page-feature figure table th:first-of-type {
  width: 28.3% !important;
}
/*  feature list
-------------------- */
.c-feature-head__image {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  border-radius: 20px;
}
.m-formHeading-body__tagListItemLink {
  color: #fff;
  background: var(--color-blue);
}
@media screen and (max-width: 767px) {
  .p-page-featureList .p-featureListCnt {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-page-featureList .m-formHeading-head__title {
    padding-inline: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-page-featureList .m-formHeading-body--border-md-none {
    margin-inline: 0;
  }
}
.m-formHeading-body__tagListItem a:visited,
.m-formHeading-body__tagListItem a:hover,
.m-formHeading-body__tagListItem a:active,
.m-formHeading-body__tagListItem a:focus-visible {
  color: #fff;
}

/* ========================================
   login
======================================== */
@media screen and (min-width: 992px) {
    .p-login-body {
        grid-template-columns: 49.5% 49.5%;
    }
}
@media screen and (min-width: 992px) {
    .p-login-body__social {
        max-width: none;
    }
}
.m-socialLogin__list {
    margin-inline: auto;
    max-width: 300px;
}
@media screen and (min-width: 768px) {
    .m-socialLogin__list {
        justify-content: center;
    }
}
@media screen and (min-width: 768px) {
    .m-socialLogin__item {
        width: 100%;
    }
}
.p-login-form__body-button {
    text-align: center;
}
.p-login-form__body-button-entry {
  text-align: center;
}
.p-login-form__body-link {
    padding: 0;
    border: none;
    background: none;
    color: var(--color-blue) !important;
    font-size: 1.4rem;
    font-weight: 300;
    line-height: 1.6;
    text-decoration: underline;
}

/* ========================================
 news list
======================================== */
.p-page-newsList .p-newsList-content__article {
  font-size: 1.6rem;
  line-height: 1.8;
}
.p-page-newsList .p-newsList-content__article-date-posted {
  margin-bottom: 20px;
  color: var(--color-gray-b);
  font-size: 1.6rem;
  font-weight: bold;
}

/* ========================================
 error
======================================== */
.p-page-error .p-error-content__returnTop-btn,
.p-page-error .p-error-inquiry__btn {
  text-align: center;
  width: 100%;
}
/* ========================================
 page guide
======================================== */
.p-page-guide .p-guide-title {
  font-size: 1.8rem;
}
@media screen and (min-width: 992px) {
    .p-page-guide .p-guide-title {
      margin-bottom: 20px;
      padding-bottom: 10px;
      font-size: 2.4rem;
    }
}
.p-page-guide .p-guide-title--sub {
    padding: 5px 20px;
    font-size: 2rem;
    background: var(--color-gray-e);
    border-radius: 10px;
}
@media screen and (max-width: 767px) {
.p-page-guide .p-guide-title--sub {
    font-size: 1.6rem;
}
}
.p-page-guide .p-guide-description {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
.p-page-guide .p-guide-description {
  font-size: 1.4rem;
}
}
.p-page-guide .link-text {
  color: var(--color-blue);
}

/* ========================================
 page company
======================================== */
.p-page-company {
  margin: 0 auto 40px;
  max-width: 1100px;
}
.p-page-company .c-page-subtitle {
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 2.4rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
.p-page-company .c-page-subtitle {
  font-size: 1.8rem;
}
}
.p-page-company .c-page-textcontent {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
.p-page-company .c-page-textcontent {
  font-size: 1.4rem;
}
}
/* ========================================
 page law
======================================== */
.p-page-law {
  margin: 0 auto 40px;
  max-width: 1100px;
}
.p-page-law .c-page-subtitle {
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 2.4rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
.p-page-law .c-page-subtitle {
  font-size: 1.8rem;
}
}
.p-page-law .c-page-textcontent {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
.p-page-law .c-page-textcontent {
  font-size: 1.4rem;
}
}
.p-page-law .c-page-textlink {
  color: var(--color-blue) !important;
}

/* ========================================
 page privacy
======================================== */
.p-page-privacy {
  margin: 0 auto 40px;
  max-width: 1100px;
}
.p-page-privacy .p-privacy-content__lead {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
.p-page-privacy .p-privacy-content__lead {
  font-size: 1.4rem;
  line-height: 1.8;
}
}
.p-page-privacy .p-privacy-content__item-title {
  margin-bottom: 20px;
  padding-bottom: 10px;
  font-size: 2.4rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
.p-page-privacy .p-privacy-content__item-title {
  font-size: 1.8rem;
}
}
.p-page-privacy .p-privacy-content__item-text {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
.p-page-privacy .p-privacy-content__item-text {
  font-size: 1.4rem;
}
}
.p-page-privacy .p-privacy-content__inquiry-text--link {
  color: var(--color-blue) !important;
}
/* ========================================
  page faq
======================================== */
.p-page-faq .p-faq-title {
  font-size: 1.8rem;
}
@media screen and (min-width: 992px) {
    .p-page-faq .p-faq-title {
      margin-bottom: 20px;
      padding-bottom: 10px;
      font-size: 2.4rem;
    }
}
.p-page-faq .p-faq-title--sub {
    padding: 5px 20px;
    font-size: 2rem;
    background: var(--color-gray-e);
    border-radius: 10px;
}
@media screen and (max-width: 767px) {
.p-page-faq .p-faq-title--sub {
    font-size: 1.6rem;
}
}
.p-page-faq .p-faq-description {
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
.p-page-faq .p-faq-description {
  font-size: 1.4rem;
}
}
.p-page-faq .link-text {
  color: var(--color-blue);
}
/* ========================================
   inquiry
======================================== */

/*  inquiry confirm
-------------------- */
@media screen and (max-width: 767px) {
.p-inqruiry-customerSupport__inquiry {
  text-align: center;
  max-width: none;
}
}
/* ========================================
   raw
======================================== */
.raw_tb_box {
  margin: 20px auto 20px;
}
@media screen and (max-width: 991px) {
  .raw_tb_box {
    margin: 20px auto;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.raw_tb {
  width: 100%;
  border-collapse: collapse;
}
@media screen and (max-width: 991px) {
  .raw_tb {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
  }
}
.raw_tb th,
.raw_tb td {
  border: 1px solid var(--color-gray-d);
  padding: 13px 5px;
  font-size: 1.4rem;
  text-align: center;
  vertical-align: middle;
}
@media screen and (max-width: 991px) {
.raw_tb th,
.raw_tb td {
  padding: 8px 5px;
  font-size: 1.4rem;
}
}
.raw_tb thead th,
.raw_tb tbody th {
  background-color: var(--color-gray-e);
  font-weight: bold;
}