@charset "UTF-8";
.c-accordion__head {
  position: relative;
  display: block;
  background: #fff;
  font-size: 1.6rem;
  font-weight: 300;
  letter-spacing: 0.07em;
  padding: 1.5rem 2.5rem;
  border-radius: 0.8rem;
}
.c-accordion__head:before, .c-accordion__head:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 2.5rem;
  width: 1.4rem;
  height: 0.2rem;
  background-color: #886911;
  transition: transform 0.3s;
}
.c-accordion__head:after {
  transform: translateY(-50%) rotate(90deg);
}
.c-accordion__head.is-active::after {
  transform: translateY(-50%) rotate(0deg);
}
.c-accordion__body {
  display: none;
  position: absolute;
  left: 0;
  width: 100%;
  background: #FCFBF6;
  border: 2px solid #DFD3B0;
  border-radius: 1rem;
  padding: 2rem;
  box-sizing: border-box;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
}
.c-accordion__body-item-link {
  font-size: 1.3rem;
  font-weight: 500;
  padding: 1.6rem 0.9rem;
  display: block;
  position: relative;
}
.c-accordion__body:before, .c-accordion__body:after {
  content: "";
  position: absolute;
  left: var(--triangle-position);
  transform: translateX(-50%);
  width: 0;
  height: 0;
}
.c-accordion__body:before {
  top: -14px;
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-bottom: 14px solid #DFD3B0;
}
.c-accordion__body:after {
  top: -11px;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid #FCFBF6;
}
.c-accordion__pref {
  font-size: 2rem;
}
.c-accordion__pref:not(:first-child) {
  margin-top: 2rem;
}
.c-accordion__pref-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.c-accordion__pref-list:nth-child(n+2) {
  margin-top: 2rem;
}
.c-accordion__pref-list-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-accordion__pref-list-item {
    width: 27.3rem;
  }
}
.c-accordion__pref-list-item-link {
  padding: 1.2rem 1.5rem;
  border-radius: 0.8rem;
  border-width: 2px;
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-accordion__pref-list-item-link {
    font-size: 1.4rem;
    border-radius: 7rem;
    width: 28rem;
  }
}
.c-accordion.is-open .c-accordion__body {
  opacity: 1;
  visibility: visible;
  display: block;
}

.c-market__accordion {
  padding-block: 5rem 6.5rem;
  background: #FCFBF6;
}
@media screen and (min-width: 768px) {
  .c-market__accordion {
    margin-top: 4.8rem;
    padding-block: 5.6rem 5.6rem;
    border-radius: 1.6rem;
  }
}
.c-market__accordion .c-wrapper {
  padding-inline: 2rem;
}
@media screen and (min-width: 768px) {
  .c-market__accordion .c-wrapper {
    width: auto;
    padding-inline: 4rem;
  }
}
.c-market__accordion .c-select__achievement-title-text {
  letter-spacing: 0.18rem;
}
.c-market__accordion-list {
  display: grid;
  grid-template-columns: 1fr;
  margin-block: 3rem 2.4rem;
}
@media screen and (min-width: 768px) {
  .c-market__accordion-list {
    grid-template-columns: 1fr;
    margin-block: 2.9rem 2.4rem;
    gap: 2.4rem;
  }
}
.c-market__accordion-list-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-radius: 0.8rem;
  border: 0.1rem solid #DFD3B0;
  background: #FFF;
  padding: 1rem 2rem;
}
.c-market__accordion-list-item.is-disabled {
  pointer-events: none;
  cursor: default;
}
.c-market__accordion-list-item.is-disabled .c-market__accordion-list-items-text-title {
  color: #333;
  text-decoration: none;
}
.c-market__accordion-list-item:hover {
  opacity: 0.6;
}
.c-market__accordion-list-items-img {
  width: 6rem;
}
.c-market__accordion-list-items-img img {
  height: auto;
  border-radius: 0.4rem;
}
@media screen and (min-width: 768px) {
  .c-market__accordion-list-items-img img {
    position: relative;
  }
}
.c-market__accordion-list-items-text-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex: 1;
}
.c-market__accordion-list-items-text-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
@media screen and (min-width: 768px) {
  .c-market__accordion-list-items-text-wrap {
    gap: 1rem;
  }
}
.c-market__accordion-list-items-text-gold {
  color: #886911;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03rem;
  display: inline-flex;
  padding: 0.3rem 0.7rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.4rem;
  border: 0.1rem solid #886911;
  line-height: 1;
  width: 7.5rem;
}
@media screen and (min-width: 768px) {
  .c-market__accordion-list-items-text-gold {
    font-size: 1.2rem;
    letter-spacing: 0.036rem;
    padding: 0.4rem 1rem;
    width: 9rem;
  }
}
.c-market__accordion-list-items-text-title {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.07rem;
  color: #1958B7;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .c-market__accordion-list-items-text-title {
    font-size: 1.6rem;
    letter-spacing: 0.08rem;
  }
}
.c-market__accordion-list-items-text-price {
  text-align: right;
  flex-shrink: 0;
  font-family: "Hiragino Sans";
  font-size: 1.6rem;
  font-weight: 600;
  line-height: normal;
  color: #E31A1A;
  margin-bottom: -0.4rem;
}
.c-market__accordion-list-items-text-price-bold {
  color: #E31A1A;
  text-align: right;
  font-family: "Helvetica Neue";
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 4rem;
}
.c-market__accordion-item {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-market__accordion-item {
    padding-inline: 4rem;
    border-radius: 1.0816rem;
    border: 0.108rem solid #DFD3B0;
    background: #FFF;
  }
}
@media screen and (max-width: 767px) {
  .c-market__accordion-item::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #886911 0, #886911 3rem, #DEDEDE 3rem, #DEDEDE 100%);
    width: 100%;
    height: 0.1rem;
  }
}
@media screen and (min-width: 768px) {
  .c-market__accordion-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(to right, #886911 0, #886911 3rem, #DEDEDE 3rem, #DEDEDE 100%);
    width: 100%;
    height: 0.1rem;
    display: none;
  }
}
.c-market__accordion-item.is-opened .p-kimono__accordion-header::after {
  transform: translateY(-50%) rotate(0deg);
}
.c-market__accordion-item.is-opened .p-kimono__accordion-content {
  opacity: 1;
}
.c-market__accordion-header {
  display: flex;
  align-items: center;
  column-gap: 1.5rem;
  padding-block: 2rem;
  cursor: pointer;
  position: relative;
  padding-right: 3.4rem;
}
@media screen and (min-width: 768px) {
  .c-market__accordion-header {
    padding-block: 2.5rem;
  }
}
.c-market__accordion-header::before, .c-market__accordion-header::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.5rem;
  width: 1.4rem;
  height: 0.2rem;
  background-color: #886911;
  transition: transform 0.3s;
}
.c-market__accordion-header::after {
  transform: translateY(-50%) rotate(90deg);
}
.c-market__accordion-header.is-active::after {
  transform: translateY(-50%) rotate(0deg);
}
.c-market__accordion-header-img {
  width: 4.1rem;
  height: 4.1rem;
}
@media screen and (min-width: 768px) {
  .c-market__accordion-header-img {
    width: 4.3rem;
    height: 4.3rem;
  }
}
.c-market__accordion-title-text {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.08rem;
  position: relative;
  color: #886911;
}
@media screen and (min-width: 768px) {
  .c-market__accordion-title-text {
    font-size: 2.4rem;
    font-weight: 600;
    letter-spacing: 0.12rem;
  }
}
.c-market__accordion-content {
  display: none;
  overflow: hidden;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  grid-row-gap: 0.8rem;
  padding-bottom: 1.6rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-market__accordion-content {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 1.6rem;
    grid-row-gap: 2.4rem;
    padding-bottom: 3.2rem;
    padding-top: 2.4rem;
  }
  .c-market__accordion-content::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    background: linear-gradient(to right, #886911 0, #886911 6rem, #DEDEDE 6rem, #DEDEDE 100%);
    width: 100%;
    height: 0.1rem;
  }
}

.c-care__accordion {
  background: #F7EFDB;
  padding-block: 5rem 6.5rem;
}
@media screen and (min-width: 768px) {
  .c-care__accordion {
    padding-block: 4.2rem;
    border-radius: 1.6rem;
    margin-top: 4.8rem;
  }
}
.c-care__accordion .c-wrapper {
  width: auto;
  padding-inline: 2rem;
}
@media screen and (min-width: 768px) {
  .c-care__accordion .c-wrapper {
    padding-inline: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-care__accordion .c-desc-sub {
    margin-top: 1.8rem;
  }
}
.c-care__accordion-title {
  letter-spacing: 0.1rem;
  line-height: 1.3;
}
.c-care__accordion-title:nth-of-type(n + 2) {
  margin-top: 4rem;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .c-care__accordion-title:nth-of-type(n + 2) {
    margin-top: 5rem;
  }
}
.c-care__accordion-list {
  margin-top: 1.4rem;
  display: flex;
  flex-direction: column;
  row-gap: 0.8rem;
}
@media screen and (min-width: 768px) {
  .c-care__accordion-list {
    row-gap: 1.8rem;
    margin-top: 2.4rem;
  }
}
.c-care__accordion-list .c-desc-sub {
  margin-top: 1.6rem;
}
.c-care__accordion-list-item {
  border-radius: 0.8rem;
  border: 0.1rem solid #DFD3B0;
  background: #FFF;
  position: relative;
  padding: 2.4rem 1.9rem 0.6rem 1.9rem;
}
@media screen and (min-width: 768px) {
  .c-care__accordion-list-item {
    padding: 2.1rem 1.9rem 0rem;
  }
}
.c-care__accordion-list-item.is-opened .p-kimono__faq-accordion-list-item-header::after {
  transform: translateY(-50%) rotate(0deg);
}
.c-care__accordion-list-item.is-opened .p-kimono__faq-accordion-list-item-content {
  opacity: 1;
}
.c-care__accordion-list-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  color: #473933;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.07rem;
}
@media screen and (min-width: 768px) {
  .c-care__accordion-list-item-header {
    padding-bottom: 1.9rem;
  }
}
.c-care__accordion-list-item-header::before, .c-care__accordion-list-item-header::after {
  content: "";
  position: absolute;
  top: 32%;
  right: 0;
  width: 1.4rem;
  height: 0.2rem;
  background-color: #886911;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
}
.c-care__accordion-list-item-header::after {
  transform: translateY(-50%) rotate(90deg);
}
.c-care__accordion-list-item-header-title {
  padding-right: 3.4rem;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.07rem;
  padding-bottom: 1.8rem;
}
@media screen and (min-width: 768px) {
  .c-care__accordion-list-item-header-title {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.08rem;
    padding-bottom: 0;
  }
}
.c-care__accordion-list-item-content {
  display: none;
  padding-block: 1.6rem;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 0.065rem;
  border-top: 0.1rem solid #DEDEDE;
}
@media screen and (min-width: 768px) {
  .c-care__accordion-list-item-content {
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.07rem;
  }
}
.c-care__accordion-list-item-content-block {
  margin-bottom: 2rem;
}
.c-care__accordion-list-item-content-title {
  padding: 1rem;
  line-height: 1;
  background-color: #E5DEC8;
  font-size: 1.3rem;
  font-weight: 500;
}
.c-care__accordion-list-item-content-text {
  margin-top: 1.6rem;
  font-size: 1.3rem;
  font-weight: 300;
}
.c-care__accordion-list-item-content-box {
  margin-top: 1rem;
  padding: 1.5rem;
  border: 1px solid #E5DEC8;
  border-radius: 1rem;
}
.c-care__accordion-list-item-content-box-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
}
.c-care__accordion-list-item-content-box-list-item {
  padding-left: 3rem;
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-care__accordion-list-item-content-box-list-item {
    width: calc((100% - 4rem) / 3);
  }
}
.c-care__accordion-list-item-content-box-list-item:before {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  background: url(../../img/new/common/check-box.svg) 50% 50%/contain no-repeat;
}

.c-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s;
  z-index: 5;
  height: 100vh;
}
.c-menu__overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.c-wrapper {
  padding: 0 2rem;
}
@media screen and (min-width: 768px) {
  .c-wrapper {
    margin: 0 auto;
    padding: 0;
    width: 120rem;
  }
}
@media screen and (min-width: 768px) {
  .c-wrapper__sub {
    margin: 0 auto;
    width: 100rem;
  }
}

.c-common__btn {
  padding: 1.5rem 0;
  background-color: #1958b7;
  border-radius: 6rem;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 4px 4px 0 rgba(25, 88, 183, 0.25);
  display: block;
}
.c-common__btn-text {
  position: relative;
  padding-left: 4rem;
  padding-right: 4rem;
}
.c-common__btn-text:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 3rem;
  height: 2rem;
  background: url(../../img/new/common/mail2.svg) 50% 50%/contain no-repeat;
}
.c-common__btn-text:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 3rem;
  height: 2rem;
  background: url(../../img/new/common/arrow-right-white.svg) 50% 50%/contain no-repeat;
  transition: transform 0.2s;
}
.c-common__btn-text:hover:after {
  transform: translate(0.4rem, -50%);
}
.c-common__btn--orange {
  padding: 2rem 0 1rem;
  border-radius: 7rem;
  background-color: #FF7601;
  color: #fff;
  font-weight: 700;
  font-size: 1.4rem;
  text-align: center;
  box-shadow: 0 0.4rem 0 #BE5700;
  transition: box-shadow 0.15s, transform 0.15s;
  display: block;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-common__btn--orange {
    font-size: 1.8rem;
  }
}
.c-common__btn--orange:hover {
  box-shadow: 0 0 0 #BE5700;
  transform: translateY(0.4rem);
}
.c-common__btn--orange-sub {
  padding: 0.2rem 0.5rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18.3rem;
  text-align: center;
  border-radius: 3.8rem;
  border: 2px solid #FF7601;
  background-color: #fff;
  color: #FF7601;
  font-size: 1.2rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .c-common__btn--orange-sub {
    font-size: 1.3rem;
    width: 18.2rem;
  }
}
.c-common__btn--green {
  padding: 2.1rem 0 2rem;
  border-radius: 7rem;
  background-color: #01AA01;
  color: #fff;
  font-weight: 800;
  font-size: 1.4rem;
  text-align: center;
  box-shadow: 0 0.3rem 0 #006700;
  transition: box-shadow 0.15s, transform 0.15s;
  display: block;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-common__btn--green {
    box-shadow: 0 0.4rem 0 #006700;
    padding: 2.7rem 0 2rem;
  }
}
.c-common__btn--green:hover {
  box-shadow: 0 0 0 #006700;
  transform: translateY(0.4rem);
}
.c-common__btn--green-sub {
  padding: 0.2rem 0.5rem;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 14.5rem;
  text-align: center;
  border-radius: 3.8rem;
  border: 2px solid #01AA01;
  background-color: #fff;
  color: #01AA01;
  font-size: 1.2rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .c-common__btn--green-sub {
    width: 17rem;
    font-size: 1.4rem;
  }
}
.c-common__btn--green-main {
  display: inline-block;
  padding-left: 2.3rem;
  font-size: 1.8rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-common__btn--green-main {
    padding-left: 2rem;
  }
}
.c-common__btn--green-main:before {
  content: "";
  position: absolute;
  bottom: 0.2rem;
  left: 0;
  width: 1.3rem;
  height: 2rem;
  background: url(../../img/new/common/tel.svg) 50% 50%/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .c-common__btn--green-main:before {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
  }
}
.c-common__btn--green-main-small {
  margin-left: -0.5rem;
  font-size: 1.4rem;
}
.c-common__btn--gold {
  padding: 1.6rem 0;
  border-radius: 0.6rem;
  background-color: #fff;
  border: 1px solid #E7DDC4;
  font-weight: 600;
  font-size: 1.4rem;
  text-align: center;
  box-shadow: 0 0.4rem 0 #DFD3B2;
  transition: box-shadow 0.15s, transform 0.15s;
  display: block;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-common__btn--gold {
    font-size: 1.6rem;
  }
}
.c-common__btn--gold:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 1.5rem;
  background: url(../../img/new/common/arrow-right-orange.svg) 50% 50%/contain no-repeat;
}
.c-common__btn--gold:hover {
  box-shadow: 0 0 0 #DFD3B2;
  transform: translateY(0.4rem);
}
.c-common__btn--gold-border {
  padding: 2.1rem 0;
  background-color: #fff;
  color: #886911;
  border: 3px solid #886911;
  border-radius: 7rem;
  font-size: 1.6rem;
  font-weight: 600;
  box-shadow: 3px 3px 8px rgba(137, 105, 17, 0.16);
  text-align: center;
  display: block;
  position: relative;
  transition: color 0.2s, border-color 0.2s, box-shadow 0.2s;
}
@media screen and (max-width: 767px) {
  .c-common__btn--gold-border {
    width: 28rem;
    margin-inline: auto;
    padding: 1.45rem 0;
  }
}
.c-common__btn--gold-border:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 0.7rem;
  height: 1.2rem;
  background: url(../../img/new/common/arrow-right-gold.svg) 50% 50%/contain no-repeat;
  transition: transform 0.2s;
}
.c-common__btn--gold-border:hover {
  color: #6f5410;
  border-color: #6f5410;
  box-shadow: 1px 1px 4px rgba(137, 105, 17, 0.2);
}
.c-common__btn--gold-border:hover::after {
  transform: translate(0.4rem, -50%);
}

/* ===============================================
# 以下を相談してみるボタン
=============================================== */
.c-contact-tel-flex-wrap {
  text-align: center;
  padding: 2.4rem 2rem 2rem 2rem;
  border-radius: 8px;
  background: #FFF;
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.16);
}

.c-contact-tel-flex-wrap-title {
  color: #01AA01;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.09rem;
  position: relative;
  display: inline-block;
}

.c-contact-tel-flex-wrap-title:before,
.c-contact-tel-flex-wrap-title:after {
  content: "";
  position: absolute;
  top: 13%;
  transform: translateY(50%);
  width: 0.1rem;
  height: 1.6rem;
  background-color: #01aa01;
}

.c-contact-tel-flex-wrap-title:before {
  left: -1.5rem;
  transform: rotate(135deg);
}

.c-contact-tel-flex-wrap-title:after {
  right: -1.5rem;
  transform: rotate(-135deg);
}

.c-contact-tel-flex-wrap-item {
  margin-top: 1.6rem;
  display: flex;
  justify-content: space-between;
  column-gap: 0.8rem;
  width: fit-content;
}

.c-contact-tel-flex-wrap-item-link {
  min-width: 9rem;
  border-radius: 0.7086rem;
  border: 0.0886rem solid #01AA01;
  background: #01AA01;
  box-shadow: 0 0.3543rem 0 0 #038303;
  color: #FFF;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5; /* 18px */
  letter-spacing: 0.06rem;
  padding: 1.6rem 1.2rem;
}

body.is-active {
  overflow: hidden;
}

.c-hamburger {
  position: fixed;
  top: 2.4rem;
  right: 2rem;
  width: 4rem;
  height: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  justify-content: center;
  cursor: pointer;
  background-color: #fff;
  border-radius: 0.5rem;
}
.c-hamburger__line {
  display: block;
  margin: 0 auto;
  width: 2.4rem;
  height: 1px;
  background-color: #333;
}
@media (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger.is-open {
  background-color: #FCFBF6;
}
.c-hamburger.is-scroll {
  border: 1px solid #000;
}

.c-fixed_btn {
  padding: 2.5rem 0 2rem;
  background-color: #E6F3EF;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.c-fixed_btn.is-show {
  transform: translateY(0);
}
@media screen and (min-width: 768px) {
  .c-fixed_btn {
    display: none;
  }
}
.c-fixed_btn .c-common__btn--green {
  margin: 0 auto;
  padding: 2rem 0 1.2rem;
  width: 31rem;
}
.c-fixed_btn .c-common__btn--green-sub {
  width: 19rem;
}

.c-contact {
  padding: 1.6rem 0 2.4rem;
}
@media screen and (min-width: 768px) {
  .c-contact {
    padding: 3.6rem 0 4.2rem;
  }
}
@media screen and (min-width: 768px) {
  .c-contact .c-wrapper {
    width: 100%;
    background-color: #E6F3EF;
  }
}
.c-contact-title {
  color: #E31A1A;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.1rem;
  text-align: center;
  letter-spacing: 1;
}
@media screen and (min-width: 768px) {
  .c-contact-title {
    font-size: 2.1rem;
    font-weight: 700;
  }
}
.c-contact-title-text {
  padding: 0 1.5rem;
  position: relative;
}
.c-contact-title-text:before, .c-contact-title-text:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%) rotate(135deg);
  width: 0.2rem;
  height: 1.5rem;
  background-color: #E31A1A;
  border-radius: 1rem;
}
.c-contact-title-text:after {
  transform: translateY(-50%) rotate(-135deg);
  left: auto;
  right: 0;
}
.c-contact__detail {
  padding: 2rem 1rem 3.2rem;
  background-color: #E6F3EF;
  border-radius: 1.6rem;
}
@media screen and (min-width: 768px) {
  .c-contact__detail {
    margin: 0 auto;
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    border-radius: 0;
    width: 120rem;
    justify-content: center;
  }
}
.c-contact__detail-tel {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-contact__detail-tel {
    padding-right: 2rem;
  }
}
.c-contact__detail-tel-link-num {
  font-size: 3.1rem;
  color: #00A040;
  font-family: "Oswald", sans-serif;
  font-weight: 600;
  letter-spacing: 0.093rem;
  position: relative;
  padding-left: 5rem;
}
@media screen and (min-width: 768px) {
  .c-contact__detail-tel-link-num {
    letter-spacing: 0.03rem;
    font-size: 4rem;
    padding-left: 8.5rem;
  }
}
.c-contact__detail-tel-link-num-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 700;
  background-color: #fff;
  color: #01aa01;
  border-radius: 0.8rem;
  line-height: 1.2;
  padding: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-contact__detail-tel-link-num-text {
    line-height: 1;
    width: 7.5rem;
  }
}
.c-contact__detail-tel-link-text {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-contact__detail-tel-link-text {
    display: block;
    font-size: 1.4rem;
    color: #01AA01;
  }
}
@media screen and (min-width: 768px) {
  .c-contact__detail-tel-link {
    padding-right: 2rem;
    width: 32.2rem;
  }
}
.c-contact__detail-btns {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .c-contact__detail-btns {
    margin-top: 0;
    padding: 2rem;
    border-right: 1px dashed #ccc;
    border-left: 1px dashed #ccc;
  }
}
.c-contact__detail-btns-tel {
  margin: 0 1rem;
}
@media screen and (min-width: 768px) {
  .c-contact__detail-btns-tel {
    display: none;
  }
}
.c-contact__detail-btns-hr {
  margin: 1rem 1rem 2rem;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 300;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-contact__detail-btns-hr {
    display: none;
  }
}
.c-contact__detail-btns-hr:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to left, #ccc 0, #ccc 3px, #E6F3EF 3px, #E6F3EF 6px);
  z-index: 0;
}
.c-contact__detail-btns-hr-text {
  display: inline-block;
  padding: 0 1rem;
  background-color: #E6F3EF;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .c-contact__detail-btns-list {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    width: 31rem;
  }
}
.c-contact__detail-btns-list-item {
  margin: 0 auto;
  width: 31rem;
}
@media screen and (min-width: 768px) {
  .c-contact__detail-btns-list-item-link-sub {
    width: 20rem;
  }
}
.c-contact__detail-btns-list-item-link-main {
  padding-left: 3rem;
  position: relative;
}
.c-contact__detail-btns-list-item-link-main:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2rem;
  height: 1.6rem;
  background: url(../../img/new/common/mail.svg) 50% 50%/contain no-repeat;
}
.c-contact__detail-btns-list-item-link-main-small {
  margin-left: -0.8rem;
  font-size: 1.5rem;
}
.c-contact__voice {
  margin-top: 2.2rem;
  padding: 0 1rem;
}
@media screen and (min-width: 768px) {
  .c-contact__voice {
    margin-top: 0;
    padding: 0 0 0 2rem;
    width: 33.5rem;
  }
}
.c-contact__voice-item {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media screen and (min-width: 768px) {
  .c-contact__voice-item:first-child {
    margin-top: 0;
  }
}
.c-contact__voice-item-img {
  width: 4.2rem;
  height: 4.2rem;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
}
.c-contact__voice-item-text {
  padding: 1rem 0.5rem;
  width: 26.4rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  position: relative;
  background-color: #E6F3EF;
  font-weight: 300;
  font-size: 1.2rem;
  text-align: center;
}
.c-contact__voice-item-text:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.57rem;
  transform: translateY(-50%);
  width: 0.6rem;
  height: 0.7rem;
  background: #ccc;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.c-contact__voice-item-text:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.37rem;
  transform: translateY(-50%);
  width: 0.5rem;
  height: 0.6rem;
  background: #E6F3EF;
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
}
.c-contact__voice-item-text strong {
  font-weight: 800;
}
.c-contact__voice-item-text-bold {
  font-weight: 800;
}
@media screen and (min-width: 768px) {
  .c-contact--ver2 .c-wrapper {
    margin: 0 auto;
    width: 100rem;
    background-color: transparent;
  }
}
@media screen and (min-width: 768px) {
  .c-contact--ver2__detail {
    padding: 1.5rem 6rem;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 0.8rem;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .c-contact--ver2__detail-tel {
    width: 31.2rem;
  }
}
@media screen and (min-width: 768px) {
  .c-contact--ver2__detail-btns {
    padding-right: 0;
    border-right: none;
  }
}
@media screen and (min-width: 768px) {
  .c-contact--ver2__voice {
    margin-top: 1rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .c-contact--ver2__voice-item {
    margin-top: 0;
  }
}

.c-contact__tel {
  padding: 3rem 0;
}
@media screen and (min-width: 768px) {
  .c-contact__tel {
    padding: 2.6rem 0;
  }
}
@media screen and (min-width: 768px) {
  .c-contact__tel--ver1 {
    padding: 4.8rem 0 4.8rem;
  }
}
@media screen and (min-width: 768px) {
  .c-contact__tel .c-wrapper {
    width: 100rem;
  }
}
.c-contact__tel-wrap {
  background-color: #f7efdb;
  border-radius: 0.8rem;
  padding: 2rem 4rem 3.6rem;
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap {
    position: relative;
  }
}
.c-contact__tel-wrap-title {
  padding-bottom: 0.8rem;
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-title {
    border-bottom: 0.15rem solid rgba(0, 0, 0, 0.2);
  }
}
.c-contact__tel-wrap-title-sub {
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  color: #886911;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 500;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-title-sub {
    font-size: 1.8rem;
  }
}
.c-contact__tel-wrap-title-sub:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 0.1rem;
  background-color: rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-title-sub:before {
    height: 0.15rem;
  }
}
.c-contact__tel-wrap-title-sub-text {
  padding: 0 1rem;
  display: inline-block;
  background-color: #f7efdb;
  position: relative;
  letter-spacing: 0.09rem;
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-title-sub-text {
    padding: 0 2rem;
  }
}
.c-contact__tel-wrap-title-sub-text-partition {
  padding: 0 1rem;
  display: inline-block;
  color: rgba(0, 0, 0, 0.2);
  position: relative;
  top: -0.2rem;
}
.c-contact__tel-wrap-title-main {
  margin-top: 0.5rem;
  color: #886911;
  font-size: 2.1rem;
  font-weight: 800;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-title-main {
    font-size: 3.4rem;
  }
}
.c-contact__tel-wrap-title-main-text {
  padding-left: 3rem;
  position: relative;
  letter-spacing: 0.34rem;
}
.c-contact__tel-wrap-title-main-text:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.3rem;
  height: 2rem;
  background: url(../../img/new/common/tel2.svg) 50% 50%/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-title-main-text:before {
    width: 1.95rem;
    height: 3rem;
  }
}
.c-contact__tel-wrap-detail {
  margin-top: 3.3rem;
  display: flex;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-detail {
    justify-content: center;
  }
}
.c-contact__tel-wrap-detail-text {
  width: 13rem;
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-detail-text {
    position: absolute;
    top: 4.4rem;
    right: 6.2rem;
    display: flex;
    width: 19.6rem;
    gap: 0.2rem;
  }
}
.c-contact__tel-wrap-detail-text-speech {
  padding: 0.8rem 0 1.4rem;
  background: url(../../img/new/common/c-tel-speech-bubble.png) 50% 50%/contain no-repeat;
  font-size: 1.1rem;
  font-weight: 300;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-detail-text-speech {
    padding: 1rem 0;
    background: url(../../img/new/common/c-tel-speech-bubble-pc.png) 50% 50%/contain no-repeat;
    width: 13.4rem;
    font-size: 1.26rem;
  }
}
.c-contact__tel-wrap-detail-text-img {
  margin: 0 auto;
  width: 10.4rem;
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-detail-text-img {
    width: 5.3rem;
    height: 5.7rem;
  }
}
.c-contact__tel-wrap-detail-btns {
  width: 16.1rem;
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-detail-btns {
    width: 75.5rem;
  }
}
.c-contact__tel-wrap-detail-btns-title {
  text-align: center;
}
.c-contact__tel-wrap-detail-btns-title-text {
  color: #01aa01;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  padding: 0 0.06rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-detail-btns-title-text {
    font-size: 1.8rem;
    font-weight: 500;
    padding: 0 1.5rem;
  }
}
.c-contact__tel-wrap-detail-btns-title-text:before, .c-contact__tel-wrap-detail-btns-title-text:after {
  content: "";
  position: absolute;
  bottom: 0.4rem;
  width: 1px;
  height: 1.6rem;
  background-color: #01aa01;
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-detail-btns-title-text:before, .c-contact__tel-wrap-detail-btns-title-text:after {
    height: 2.3rem;
    bottom: 0;
  }
}
.c-contact__tel-wrap-detail-btns-title-text:before {
  left: -0.6rem;
  transform: rotate(135deg);
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-detail-btns-title-text:before {
    left: 0;
  }
}
.c-contact__tel-wrap-detail-btns-title-text:after {
  right: -0.6rem;
  transform: rotate(-135deg);
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-detail-btns-title-text:after {
    right: 0;
  }
}
.c-contact__tel-wrap-detail-btns-list {
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-detail-btns-list {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 2rem;
  }
}
.c-contact__tel-wrap-detail-btns-list-item:not(:first-child) {
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-detail-btns-list-item:not(:first-child) {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-detail-btns-list-item {
    width: 24rem;
  }
}
.c-contact__tel-wrap-detail-btns-list-item-link {
  padding: 0.7rem 0;
  font-size: 1.4rem;
  font-weight: 600;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-detail-btns-list-item-link {
    padding: 1.1rem 0;
    font-size: 1.8rem;
  }
}
.c-contact__tel-wrap-detail-btns-list-item-link-icon {
  position: absolute;
  top: 50%;
  left: 0.6rem;
  transform: translateY(-50%);
  display: inline-block;
  background-color: #fff;
  width: 2.59rem;
  height: 2.59rem;
  line-height: 2.59rem;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-detail-btns-list-item-link-icon {
    width: 3.89rem;
    height: 3.89rem;
  }
}
.c-contact__tel-wrap-detail-btns-list-item-link-icon-img {
  margin: 0.5rem auto 0;
  width: 1.6rem;
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-detail-btns-list-item-link-icon-img {
    margin-top: 0.8rem;
    width: 2.4rem;
  }
}
.c-contact__tel-wrap-detail-btns-list-item:first-child .c-contact__tel-wrap-detail-btns-list-item-link {
  padding-left: 1.6rem;
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-detail-btns-list-item:first-child .c-contact__tel-wrap-detail-btns-list-item-link {
    padding-left: 1.2rem;
  }
}
.c-contact__tel-wrap-detail-btns-list-item:first-child .c-contact__tel-wrap-detail-btns-list-item-link-icon-img {
  width: 1.6rem;
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-detail-btns-list-item:first-child .c-contact__tel-wrap-detail-btns-list-item-link-icon-img {
    width: 2.25rem;
  }
}
.c-contact__tel-wrap-detail-btns-list-item:last-child .c-contact__tel-wrap-detail-btns-list-item-link {
  padding-left: 2.4rem;
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-detail-btns-list-item:last-child .c-contact__tel-wrap-detail-btns-list-item-link {
    padding-left: 1.2rem;
  }
}
.c-contact__tel-wrap-detail-btns-list-item:last-child .c-contact__tel-wrap-detail-btns-list-item-link-icon-img {
  width: 1.6rem;
}
@media screen and (min-width: 768px) {
  .c-contact__tel-wrap-detail-btns-list-item:last-child .c-contact__tel-wrap-detail-btns-list-item-link-icon-img {
    width: 2.25rem;
  }
}

.c-select__achievement {
  margin-top: 5rem;
}
.c-select__achievement-title {
  text-align: center;
}
.c-select__achievement-title-text {
  padding: 0 1rem;
  color: #E31A1A;
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
}
.c-select__achievement-title-text:before, .c-select__achievement-title-text:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.2rem;
  height: 1.55rem;
  background-color: #E31A1A;
}
.c-select__achievement-title-text:before {
  left: 0;
  transform: translateY(-50%) rotate(135deg);
}
.c-select__achievement-title-text:after {
  right: 0;
  transform: translateY(-50%) rotate(-135deg);
}
.c-select__achievement-detail {
  margin-top: 1rem;
  padding: 3rem 2rem;
  background-color: #fff;
  border: 1px solid #886911;
  border-radius: 1.6rem;
}
@media screen and (min-width: 768px) {
  .c-select__achievement-detail {
    padding: 3rem 2rem 3rem 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
  }
}
.c-select__achievement-detail-wrap {
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-select__achievement-detail-wrap {
    width: 63.4rem;
  }
}
.c-select__achievement-detail-wrap-select {
  padding: 1.7rem 2rem;
  width: 100%;
  background-color: #F2F2F2;
  border-radius: 0.6rem;
  font-size: 1.6rem;
  font-weight: 300;
}
.c-select__achievement-detail-wrap:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 1.4rem;
  height: 0.7rem;
  background-color: #886911;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  transform: translateY(-50%);
  pointer-events: none;
}
.c-select__achievement-detail-btn {
  margin: 2rem auto 0;
  width: 27rem;
}
@media screen and (min-width: 768px) {
  .c-select__achievement-detail-btn {
    margin: 0 auto;
    width: 23rem;
  }
}

.c-contact--ver3 .c-wrapper {
  border-radius: 1.6rem;
}
.c-contact--ver3 .c-contact__detail-tel-wrapper {
  display: flex;
  align-items: center;
  min-width: 0;
}
.c-contact--ver3 .c-contact__detail-tel {
  flex-shrink: 0;
  width: 37.4rem;
}
.c-contact--ver3 .c-contact--ver2__detail {
  padding: 1.5rem 3rem 2.8rem;
}
.c-contact--ver3 .c-contact__detail-btns-list-item {
  width: 31rem;
}
.c-contact--ver3 .c-contact__detail-tel {
  padding-right: 0;
}
.c-contact--ver3 .c-common__btn--orange {
  font-size: 1.4rem;
  padding: 1.2rem 0 0.7rem;
}
.c-contact--ver3 .c-common__btn--orange-sub {
  font-size: 1rem;
  padding: 0.2rem 0.5rem;
  width: 20rem;
}
.c-contact--ver3 .c-contact__detail-btns-list {
  margin-top: 1.8rem;
}
.c-contact--ver3 .c-contact__detail-btns {
  border-right: none;
  padding: 0;
  padding-left: 2rem;
}
.c-contact--ver3 .c-contact__detail-tel-link-num {
  padding-left: 9rem;
  font-size: 3.6rem;
  position: relative;
  top: 1.6rem;
  left: 1.6rem;
  letter-spacing: 0.1rem;
}
.c-contact--ver3 .c-contact__detail-tel-link-num::before {
  width: 4.4rem;
  height: 2.6rem;
  bottom: 1.2rem;
  left: -5.4rem;
}
.c-contact--ver3 .c-contact__detail-tel-link-text {
  letter-spacing: -0.08rem;
  position: relative;
  top: 1.1rem;
  left: 2.2rem;
}

html {
  font-size: 62.5%;
  height: 100%;
}

@media screen and (max-width: 1370px) and (min-width: 768px) {
  html {
    font-size: 0.7299270073vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 2.5641025641vw;
  }
}
img {
  display: block;
  width: 100%;
  height: auto;
}

.u-pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}

.u-sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .u-sp {
    display: block !important;
  }
}

.p-top__section {
  padding: 5rem 0 6.5rem;
}
@media screen and (min-width: 768px) {
  .p-top__section {
    padding: 9.6rem 0;
  }
}
@media screen and (min-width: 768px) {
  .p-top__mv {
    position: relative;
  }
}
.p-top__mv .c-wrapper {
  padding: 33rem 0 0;
  background: #F8F1DC url(../../img/new/top/mv-sp.png) 50% 0/contain no-repeat;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top__mv .c-wrapper {
    padding: 31rem 0 0;
    background: #F8F1DC url(../../img/new/top/mv.png) 50% 0/contain no-repeat;
    border-radius: 2.4rem;
  }
}
.p-top__mv-title {
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 3.8rem;
  font-weight: 600;
  text-align: center;
  width: 100%;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  .p-top__mv-title {
    padding: 0;
    font-size: 6rem;
  }
}
.p-top__mv-title-supplement {
  letter-spacing: 0.08em;
  padding-left: 2.1rem;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-top__mv-title-supplement {
    padding-left: 6rem;
  }
}
.p-top__mv-title-sub {
  font-size: 2.9rem;
}
@media screen and (min-width: 768px) {
  .p-top__mv-title-sub {
    font-size: 4.6rem;
  }
}
.p-top__mv-title-sub-strong {
  margin-right: 1rem;
  font-size: 4.7rem;
}
@media screen and (min-width: 768px) {
  .p-top__mv-title-sub-strong {
    font-size: 6.8rem;
  }
}
.p-top__mv-title-em {
  color: #886911;
  font-style: normal;
}
.p-top__mv-products {
  padding: 0 2rem;
}
@media screen and (min-width: 768px) {
  .p-top__mv-products {
    padding: 0;
  }
}
.p-top__mv-products-top-list {
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top__mv-products-top-list {
    width: 49rem;
    margin-left: 15rem;
  }
}
.p-top__mv-products-bottom {
  padding-bottom: 2rem;
}
.p-top__mv-products-bottom-list {
  width: 20rem;
  margin: 1rem 0 0 8.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-top__mv-products-bottom-list {
    width: 58rem;
  }
}
.p-top__mv-products-bottom-list-item:first-child {
  width: 10.4rem;
}
.p-top__mv-products-bottom-list-item:nth-child(2) {
  width: 8.3rem;
}
.p-top__mv-products-bottom-list-item:last-child {
  margin-top: -2rem;
  width: 10.4rem;
}
@media screen and (min-width: 768px) {
  .p-top__mv-products-bottom-list-item:last-child {
    margin-left: -2rem;
  }
}
.p-top__mv-imgs-date {
  position: absolute;
  bottom: 10rem;
  left: 0.5rem;
  width: auto;
  height: 15.2rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-top__mv-imgs-date {
    height: 24.4rem;
    bottom: 0;
    left: -3rem;
  }
}
.p-top__mv-imgs-tomizawa {
  position: absolute;
  bottom: 10rem;
  right: 1rem;
  width: auto;
  height: 15.2rem;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-top__mv-imgs-tomizawa {
    height: 25.2rem;
    bottom: 0;
    right: 36.1rem;
  }
}
.p-top__mv-annotation {
  margin: 0 auto;
  padding: 0.5rem 2rem 0;
  text-align: right;
  font-size: 0.8rem;
  color: #888;
}
@media screen and (min-width: 768px) {
  .p-top__mv-annotation {
    padding: 0.5rem 0 0;
    font-size: 1.2rem;
    width: 120rem;
  }
}
.p-top__banner-img {
  border-radius: 0.8rem;
}
.p-top__products {
  background-color: rgb(252, 251, 246);
}
.p-top__products-modal {
  display: none;
}
.p-top__products-modal.is-open {
  display: block;
}
.p-top__products-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 99;
}
.p-top__products-modal__content {
  position: fixed;
  width: 35rem;
  height: 80dvh;
  background: #fff;
  border-radius: 1.6rem;
  overflow: hidden;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .p-top__products-modal__content {
    width: min(92%, 112rem);
    height: 100%;
    max-height: 90vh;
    border-radius: 2.4rem;
  }
}
.p-top__products-modal__content-scroll {
  overflow-y: auto;
  height: 100%;
  padding: 9.2rem 2rem 4.8rem;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .p-top__products-modal__content-scroll {
    padding: 8rem 4rem 4rem;
  }
}
.p-top__products-modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 4rem;
  height: 4rem;
  border: none;
  border-radius: 50%;
  background: #886911;
  cursor: pointer;
}
.p-top__products-modal__close::before, .p-top__products-modal__close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2.2rem;
  height: 0.3rem;
  background: #fff;
}
.p-top__products-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-top__products-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.p-top__products-modal__title {
  display: inline-block;
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  padding-bottom: 1rem;
  border-bottom: 0.2rem solid #896911;
}
@media screen and (min-width: 768px) {
  .p-top__products-modal__title {
    font-size: 3.2rem;
  }
}
.p-top__products-modal__section {
  padding-block: 3.2rem;
  border-bottom: 0.1rem dashed #ccc;
}
.p-top__products-modal__section:last-of-type {
  border-bottom: none;
}
.p-top__products-modal__head {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 0.2rem;
}
.p-top__products-modal__head img {
  width: 4rem;
  height: auto;
  flex-shrink: 0;
}
.p-top__products-modal__head p {
  color: #9B7410;
  font-size: 1.8rem;
  letter-spacing: 0.09rem;
}
@media screen and (min-width: 768px) {
  .p-top__products-modal__head p {
    font-size: 2rem;
  }
}
.p-top__products-modal__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.2rem;
  line-height: 1.9;
}
.p-top__products-modal__links a {
  display: inline-block;
  color: #1E63D4;
  text-decoration: underline;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.075rem;
  padding-inline: 0.8rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top__products-modal__links a {
    font-size: 1.6rem;
    padding-inline: 1.2rem;
  }
}
.p-top__products-modal__links a:last-child::after {
  content: none;
  width: 0;
  height: 0;
  background: none;
}
.p-top__products-modal__links a::after {
  position: absolute;
  top: 50%;
  right: -0.7rem;
  transform: translate(0, -50%);
  content: "";
  background: url(../../img/new/common/modal-link.svg) no-repeat center center/cover;
  width: 1rem;
  height: 1.6rem;
}
.p-top__products-modal__links:last-child::after {
  content: none;
  width: 0rem;
}
.p-top__products-contents {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 1rem;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .p-top__products-contents {
    gap: 1.5rem 2rem;
    justify-content: flex-start;
  }
}
.p-top__products-contents-item {
  width: 16.5rem;
}
.p-top__products-contents-item:nth-child(n+20) {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-top__products-contents-item {
    width: 22.4rem;
  }
}
.p-top__products-contents-item-link {
  padding: 1.6rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  position: relative;
  border: none;
  cursor: pointer;
  text-align: left;
  height: 7.2rem;
}
.p-top__products-contents-item-link-icon {
  width: 4rem;
  height: 4rem;
}
.p-top__products-contents-item-link-icon-img {
  object-fit: cover;
  height: 100%;
}
.p-top__products-contents-item-link-text {
  width: 9rem;
}
.p-top__products-btn {
  margin: 5rem auto 0;
  width: 19rem;
}
@media screen and (min-width: 768px) {
  .p-top__products-btn {
    width: 24rem;
  }
}
.p-top__products-btn-link {
  width: 100%;
  padding: 1.45rem 0;
  background-color: #886911;
  border: none;
  border-radius: 7rem;
  box-shadow: 3px 3px 8px rgba(137, 105, 17, 0.16);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  display: block;
  position: relative;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .p-top__products-btn-link {
    font-size: 1.6rem;
  }
}
.p-top__products-btn-link:before, .p-top__products-btn-link:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 0.2rem;
  background-color: #fff;
}
.p-top__products-btn-link:after {
  transform: translateY(-50%) rotate(90deg);
}
.p-top__reason {
  background-color: #F7EFDB;
}
.p-top__reason-detail-item {
  margin-top: 2rem;
}
.p-top__reason-detail-item:not(:first-child) {
  margin-top: 5rem;
}
.p-top__reason-detail-item-contents {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-contents {
    margin-top: 0;
  }
}
.p-top__reason-detail-item-wrap {
  margin-top: 3rem;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-wrap {
    margin-top: 0;
  }
}
.p-top__reason-detail-item-title {
  color: #886911;
  font-size: 2.1rem;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-title {
    font-size: 3.6rem;
    margin-bottom: 4.2rem;
  }
}
.p-top__reason-detail-item-title-num {
  display: block;
  margin-bottom: 1.5rem;
  background: linear-gradient(to bottom, #9E8439 0, #9E8439 50%, #886911 50%, #886911 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 4.3rem;
  font-weight: 700;
  letter-spacing: 0;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-title-num {
    font-size: 6.45rem;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-contents {
    margin: 0 auto;
    width: 48.1rem;
  }
}
.p-top__reason-detail-item-contents-content {
  padding: 1.5rem 2rem;
  border: 1px solid #DFD3B0;
  background-color: #fff;
  border-radius: 0.8rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-contents-content {
    padding: 4rem 3.2rem;
  }
}
.p-top__reason-detail-item-contents-content-title {
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-contents-content-title {
    font-size: 2.2rem;
  }
}
.p-top__reason-detail-item-contents-content-title-text {
  display: block;
  padding-bottom: 1rem;
  position: relative;
  letter-spacing: 0.105rem;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-contents-content-title-text {
    padding-bottom: 2rem;
  }
}
.p-top__reason-detail-item-contents-content-title-text:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}
.p-top__reason-detail-item-contents-content-graph-item {
  margin-top: 1.5rem;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  gap: 4.4rem;
  position: relative;
  z-index: 1;
}
.p-top__reason-detail-item-contents-content-graph-item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 3.6rem;
  background-image: linear-gradient(to left, #FBB209 0, #FBB209 24rem, transparent 24rem, transparent 100%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-contents-content-graph-item:before {
    height: 3.8rem;
    background-image: linear-gradient(to left, #FBB209 0, #FBB209 31.7rem, transparent 31.7rem, transparent 100%);
  }
}
.p-top__reason-detail-item-contents-content-graph-item:after {
  content: "";
  position: absolute;
  bottom: -0.8rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #ccc 0, #ccc 2px, transparent 2px, transparent 4.6px);
}
.p-top__reason-detail-item-contents-content-graph-item:nth-child(2):before {
  background-image: linear-gradient(to left, transparent 0, transparent 11rem, #D5CBB2 11rem, #D5CBB2 24rem, transparent 24rem, transparent 100%);
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-contents-content-graph-item:nth-child(2):before {
    background-image: linear-gradient(to left, transparent 0, transparent 17rem, #D5CBB2 17rem, #D5CBB2 31.7rem, transparent 31.7rem, transparent 100%);
  }
}
.p-top__reason-detail-item-contents-content-graph-item:last-child:before {
  background-image: linear-gradient(to left, transparent 0, transparent 19rem, #D5CBB2 19rem, #D5CBB2 24rem, transparent 24rem, transparent 100%);
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-contents-content-graph-item:last-child:before {
    background-image: linear-gradient(to left, transparent 0, transparent 27rem, #D5CBB2 27rem, #D5CBB2 31.7rem, transparent 31.7rem, transparent 100%);
  }
}
.p-top__reason-detail-item-contents-content-graph-item:last-child:after {
  background-image: none;
}
.p-top__reason-detail-item-contents-content-graph-item-text {
  text-align: right;
  width: 6.3rem;
  font-size: 1.5rem;
  font-weight: 600;
  color: #886911;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-contents-content-graph-item-text {
    width: 8.2rem;
  }
}
.p-top__reason-detail-item-contents-content-graph-item-text-big {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-contents-content-graph-item-text-big {
    font-size: 2rem;
  }
}
.p-top__reason-detail-item-contents-content-graph-item-text-small {
  font-size: 1.2rem;
}
.p-top__reason-detail-item-contents-content-graph-item-num {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: 700;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-contents-content-graph-item-num {
    font-size: 2.6rem;
  }
}
.p-top__reason-detail-item-contents-content-graph-item-num-yen {
  font-size: 1.2rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-contents-content-graph-item-num-yen {
    font-size: 1.56rem;
  }
}
.p-top__reason-detail-item-contents-content-graph-item-num-ng {
  display: block;
  font-size: 1rem;
  font-weight: 500;
}
.p-top__reason-detail-item-wrap-img {
  padding: 1.9rem 2rem;
  background: url(../../img/new/top/reason2-img.png) 50% 50%/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-wrap-img {
    padding: 6rem 4.5rem;
    background: url(../../img/new/top/reason2-img-pc.png) 50% 50%/contain no-repeat;
  }
}
.p-top__reason-detail-item-wrap-img-list {
  padding: 0 1.5rem;
  width: 17.3rem;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0.8rem;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-wrap-img-list {
    width: 28.2rem;
  }
}
.p-top__reason-detail-item-wrap-img-list-item {
  padding: 1.2rem 0 1.2rem 2rem;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-wrap-img-list-item {
    padding: 2rem 3rem;
    font-size: 1.8rem;
  }
}
.p-top__reason-detail-item-wrap-img-list-item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1rem;
  background: url(../../img/new/common/check-icon.svg) 50% 50%/contain no-repeat;
}
.p-top__reason-detail-item-wrap-img-list-item:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -1.5rem;
  width: 17.3rem;
  height: 1px;
  background-color: #DEDEDE;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-wrap-img-list-item:after {
    width: 28.2rem;
    left: -1.5rem;
  }
}
.p-top__reason-detail-item-wrap-img-list-item-text {
  color: #886911;
  font-weight: 600;
}
.p-top__reason-detail-item-wrap-img-list-item:last-child:after {
  background-color: transparent;
}
.p-top__reason-detail-item-wrap-btns {
  padding: 2rem 2rem 2.5rem;
  background-color: #fff;
  border-radius: 0 0 0.8rem 0.8rem;
}
.p-top__reason-detail-item-wrap-btns-title {
  text-align: center;
  color: #01AA01;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-wrap-btns-title {
    font-size: 2.1rem;
  }
}
.p-top__reason-detail-item-wrap-btns-title-text {
  padding: 0 1.5rem;
  position: relative;
}
.p-top__reason-detail-item-wrap-btns-title-text:before, .p-top__reason-detail-item-wrap-btns-title-text:after {
  content: "";
  position: absolute;
  top: 0;
  width: 1px;
  height: 1.556rem;
  background-color: #01AA01;
}
.p-top__reason-detail-item-wrap-btns-title-text:before {
  left: 0;
  transform: rotate(135deg);
}
.p-top__reason-detail-item-wrap-btns-title-text:after {
  right: 0;
  transform: rotate(-135deg);
}
.p-top__reason-detail-item-wrap-btns-list {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-wrap-btns-list {
    margin: 0 auto;
    width: 72.9rem;
  }
}
.p-top__reason-detail-item-wrap-btns-list-item {
  width: calc((100% - 2rem) / 3);
}
.p-top__reason-detail-item-wrap-btns-list-item-link {
  padding: 1.5rem 0 1.3rem;
  border-radius: 0.7rem;
  font-size: 1.2rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-wrap-btns-list-item-link {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-box {
    display: flex;
    gap: 1rem;
  }
}
.p-top__reason-detail-item-box-wrap {
  margin-top: 1.4rem;
  border: 1px solid #DFD3B0;
  border-radius: 0.8rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-box-wrap {
    display: flex;
    flex-direction: column;
    width: 32.5rem;
    margin-top: 1rem;
  }
}
.p-top__reason-detail-item-box-wrap-title {
  text-align: center;
  padding: 1rem 0;
  font-size: 1.6rem;
  font-weight: 700;
  background-color: #A9841D;
  color: #fff;
  border-radius: 0.7rem 0.7rem 0 0;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-box-wrap-title {
    font-size: 2rem;
  }
}
.p-top__reason-detail-item-box-wrap-contents {
  padding: 2rem;
  display: flex;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-box-wrap-contents {
    flex-direction: column;
    flex: 1;
  }
}
.p-top__reason-detail-item-box-wrap-contents-text {
  margin-top: -0.5rem;
  width: 17rem;
  line-height: 1.8;
  font-size: 1.3rem;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-box-wrap-contents-text {
    width: 100%;
    font-size: 1.6rem;
    font-weight: 600;
    flex: 1;
  }
}
.p-top__reason-detail-item-box-wrap-contents-text-gold {
  color: #886911;
  font-weight: 600;
}
.p-top__reason-detail-item-box-wrap-contents-img {
  width: 12rem;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-box-wrap-contents-img {
    margin-top: auto;
    width: 100%;
  }
}
.p-top__reason-detail-item-attention {
  margin-top: 1rem;
  text-align: right;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  .p-top__reason-detail-item-attention {
    font-size: 1.5rem;
  }
}
.p-top__flow {
  background-color: #FCFBF6;
}
.p-top__flow-desc {
  margin-top: 3rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
.p-top__flow-step {
  margin-top: 2rem;
}
.p-top__flow-step-title {
  color: #886911;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-top__flow-step-title {
    font-size: 2.4rem;
  }
}
.p-top__flow-step-title-text {
  padding: 0 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top__flow-step-title-text {
    padding: 0 1.5rem;
  }
}
.p-top__flow-step-title-text:before, .p-top__flow-step-title-text:after {
  content: "";
  position: absolute;
  top: 50%;
  width: 0.26rem;
  height: 1.556rem;
  background-color: #886911;
}
@media screen and (min-width: 768px) {
  .p-top__flow-step-title-text:before, .p-top__flow-step-title-text:after {
    height: 2rem;
  }
}
.p-top__flow-step-title-text:before {
  left: 0;
  transform: translateY(-50%) rotate(135deg);
}
.p-top__flow-step-title-text:after {
  right: 0;
  transform: translateY(-50%) rotate(-135deg);
}
.p-top__flow-step-title-text-num {
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .p-top__flow-step-title-text-num {
    font-size: 3.2rem;
  }
}
.p-top__flow-step-box {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top__flow-step-box {
    display: flex;
  }
}
.p-top__flow-step-box-item {
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top__flow-step-box-item {
    text-align: center;
    flex-direction: column-reverse;
    width: 25rem;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .p-top__flow-step-box-item:before {
    content: "";
    padding: 3rem 0;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    width: 2rem;
    height: 3.845rem;
    background: #FCFBF6 url(../../img/new/common/arrow-right-gray.svg) 50% 50%/contain no-repeat;
    z-index: 1;
  }
}
@media screen and (min-width: 768px) {
  .p-top__flow-step-box-item:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-image: repeating-linear-gradient(to bottom, #ccc 0, #ccc 1.5px, transparent 1.5px, transparent 4px);
  }
}
@media screen and (min-width: 768px) {
  .p-top__flow-step-box-item:last-child:before {
    background: none;
  }
}
@media screen and (min-width: 768px) {
  .p-top__flow-step-box-item:last-child:after {
    background-image: none;
  }
}
.p-top__flow-step-box-item-img {
  text-align: center;
  width: 7.2rem;
  height: 7.2rem;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top__flow-step-box-item-img {
    width: 10.8rem;
    height: 10.8rem;
  }
}
.p-top__flow-step-box-item-img:after {
  content: "";
  position: absolute;
  bottom: -2.8rem;
  left: 52%;
  transform: translateX(-50%);
  width: 3.2rem;
  height: 1rem;
  background: url(../../img/new/common/arrow-bottom-gray.svg) 50% 50%/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .p-top__flow-step-box-item-img:after {
    background: none;
    left: 50%;
    bottom: -2.5rem;
  }
}
.p-top__flow-step-box-item-img-icon {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 4.4rem;
}
@media screen and (min-width: 768px) {
  .p-top__flow-step-box-item-img-icon {
    width: 6.6rem;
  }
}
.p-top__flow-step-box-item:nth-child(2) .p-top__flow-step-box-item-img-icon {
  top: 50%;
  width: 3.5rem;
}
@media screen and (min-width: 768px) {
  .p-top__flow-step-box-item:nth-child(2) .p-top__flow-step-box-item-img-icon {
    width: 5.3rem;
  }
}
.p-top__flow-step-box-item:nth-child(3) .p-top__flow-step-box-item-img-icon {
  top: 50%;
  width: 2.8rem;
}
@media screen and (min-width: 768px) {
  .p-top__flow-step-box-item:nth-child(3) .p-top__flow-step-box-item-img-icon {
    width: 4.2rem;
  }
}
.p-top__flow-step-box-item:last-child .p-top__flow-step-box-item-img-icon {
  top: 50%;
  width: 3.6rem;
}
@media screen and (min-width: 768px) {
  .p-top__flow-step-box-item:last-child .p-top__flow-step-box-item-img-icon {
    width: 5.4rem;
  }
}
.p-top__flow-step-box-item:last-child .p-top__flow-step-box-item-img:after {
  width: 0;
  background: none;
}
.p-top__flow-step-box-item-text {
  padding: 1rem 0;
  width: 26.2rem;
  color: #45322B;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top__flow-step-box-item-text {
    font-size: 2.1rem;
  }
}
.p-top__flow-step-box-item-text:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #ccc 0, #ccc 1.5px, transparent 1.5px, transparent 4px);
}
@media screen and (min-width: 768px) {
  .p-top__flow-step-box-item-text:after {
    background-image: none;
  }
}
.p-top__flow-step-box-item-text-num {
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
  display: inline-block;
  margin-bottom: 1.6rem;
  padding: 0.1rem 0.3rem;
  background-color: #E5DEC8;
  border-radius: 0.4rem;
  color: #886911;
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-top__flow-step-box-item-text-num {
    font-size: 1.56rem;
    margin-bottom: 2.4rem;
  }
}
.p-top__flow-step-btn {
  margin: 0 auto;
  width: 31rem;
}
.p-top__flow-step-btn-link {
  padding: 1.8rem 0;
  margin-top: 1.4rem;
}
.p-top__flow-select {
  margin-top: 5.4rem;
}
.p-top__flow-select-title {
  padding: 1rem 0;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: #886911;
  border-radius: 0.4rem 0.4rem 0 0;
  position: relative;
}
.p-top__flow-select-title::after {
  content: "";
  position: absolute;
  bottom: -1.3rem;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../../img/new/top/flow-select-polygon.svg) 50% 50%/contain no-repeat;
  width: 1.9rem;
  height: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top__flow-select-title {
    font-size: 2rem;
  }
}
.p-top__flow-select-box {
  padding: 2.4rem 2rem;
  border: 1px solid #886911;
  border-radius: 0 0 0.4rem 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top__flow-select-box {
    justify-content: center;
    flex-direction: row;
    padding: 3.2rem 4.2rem 3.2rem 3.2rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top__flow-select-box-item {
    width: 29.7rem;
  }
}
.p-top__flow-select-box-item-link {
  padding: 1.6rem 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top__flow-select-box-item-link {
    padding: 2.1rem 1.9rem;
  }
}
.p-top__flow-select-box-item-link:before {
  right: 1.5rem;
}
.p-top__flow-select-box-item-link-img {
  width: 3.4rem;
}
@media screen and (min-width: 768px) {
  .p-top__flow-select-box-item-link-img {
    width: 4.4rem;
  }
}
.p-top__flow-select-box-item-link-text {
  text-align: left;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .p-top__flow-select-box-item-link-text {
    font-size: 1.8rem;
  }
}
.p-top__flow-select-box-item-link-text-small {
  font-size: 1.2rem;
  font-weight: 300;
  color: #888;
}
@media screen and (min-width: 768px) {
  .p-top__flow-select-box-item-link-text-small {
    font-size: 1.4rem;
  }
}
.p-top__flow-select-box-item:nth-child(2) .p-top__flow-select-box-item-link-img-icon {
  margin: 0 auto;
  width: 2.4rem;
}
@media screen and (min-width: 768px) {
  .p-top__flow-select-box-item:nth-child(2) .p-top__flow-select-box-item-link-img-icon {
    width: 3.12rem;
  }
}
.p-top__flow-select-box-item:last-child .p-top__flow-select-box-item-link-img-icon {
  margin: 0 auto;
  width: 2.2rem;
}
@media screen and (min-width: 768px) {
  .p-top__flow-select-box-item:last-child .p-top__flow-select-box-item-link-img-icon {
    width: 2.8rem;
  }
}
.p-top__achievement {
  background-color: #FCFBF6;
}
.p-top__achievement-desc {
  margin-top: 3rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
.p-top__achievement-list {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top__achievement-list {
    flex-direction: row;
  }
}
.p-top__achievement-list-item {
  padding: 2.5rem 2rem 3.5rem;
  border: 1px solid #DFD3B0;
  border-radius: 1rem;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top__achievement-list-item {
    width: 37.8rem;
  }
}
.p-top__achievement-list-item-tag {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 6.4rem;
  height: 2.8rem;
  border-radius: 0.9rem 0 0.9rem 0;
  color: #fff;
  background-color: #886911;
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-top__achievement-list-item-tag {
    font-size: 1.4rem;
  }
}
.p-top__achievement-list-item-title {
  padding: 1rem 0;
  font-size: 1.8rem;
  font-weight: 600;
  flex-grow: 1;
  position: relative;
}
.p-top__achievement-list-item-title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #000 0, #000 1.8px, transparent 1.8px, transparent 7.2px);
}
.p-top__achievement-list-item-detail {
  padding: 2rem 0;
  display: flex;
  gap: 2rem;
  position: relative;
}
.p-top__achievement-list-item-detail-img {
  width: 14rem;
}
.p-top__achievement-list-item-detail-text {
  width: 15.2rem;
  position: relative;
}
.p-top__achievement-list-item-detail-text-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.p-top__achievement-list-item-detail-text-list-item {
  padding-left: 1.5rem;
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 0;
  position: relative;
}
.p-top__achievement-list-item-detail-text-list-item:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1.2rem;
  height: 1rem;
  background: url(../../img/new/common/check-green.svg) 50% 50%/contain no-repeat;
}
.p-top__achievement-list-item-detail-text-price {
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  font-size: 1.6rem;
  font-weight: 600;
  color: #E31A1A;
  letter-spacing: 0;
  line-height: 1;
}
.p-top__achievement-list-item-detail-text-price-num {
  font-size: 4rem;
  font-weight: 700;
  font-family: "Helvetica Neue", "Helvetica", sans-serif;
}
.p-top__achievement-list-item .c-contact__detail-btns-tel {
  display: block;
  margin: 2rem 0 0;
}
.p-top__achievement-list-item .c-contact__detail-btns-tel-link {
  padding: 2rem 0 1.3rem;
}
.p-top__achievement .c-common__btn--green-main {
  font-size: 1.5rem;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .p-top__achievement .c-common__btn--green-main {
    font-size: 1.8rem;
  }
}
.p-top__achievement .c-common__btn--green-main-small {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-top__achievement .c-common__btn--green-main-small {
    font-size: 1.4rem;
    margin-left: -1.4rem;
  }
}
.p-top__voice {
  background-color: #FCFBF6;
}
.p-top__voice-desc {
  margin-top: 2.6rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-top__voice-desc {
    margin-top: 3rem;
  }
}
.p-top__voice-list {
  margin-top: 2.6rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-top__voice-list {
    flex-direction: row;
    margin-top: 5.8rem;
  }
}
.p-top__voice-list-item {
  padding: 0 2rem 2rem;
  border: 1px solid #DFD3B0;
  border-top: 1rem solid #A9841D;
  border-radius: 0.8rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .p-top__voice-list-item {
    width: 58rem;
    display: flex;
    flex-direction: column;
    padding: 0 3.2rem 4.6rem;
  }
}
.p-top__voice-list-item-title {
  margin-top: -2rem;
  display: flex;
  column-gap: 2.4rem;
  align-items: center;
}
.p-top__voice-list-item-title-img {
  width: 7.8rem;
}
@media screen and (min-width: 768px) {
  .p-top__voice-list-item-title-img {
    width: 9.1rem;
  }
}
.p-top__voice-list-item-title-text {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 768px) {
  .p-top__voice-list-item-title-text-1line {
    margin-top: 4rem;
  }
  .p-top__voice-list-item-title-text-2line {
    margin-top: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .p-top__voice-list-item-title-text {
    font-size: 2.1rem;
  }
}
.p-top__voice-list-item-text {
  margin-top: 1rem;
  padding-bottom: 2rem;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.8;
  position: relative;
  flex: 1;
  letter-spacing: 0.1rem;
}
@media screen and (min-width: 768px) {
  .p-top__voice-list-item-text {
    font-size: 1.6rem;
  }
}
.p-top__voice-list-item-text:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background: url(../../img/new/top/top-border.png) repeat center center/cover;
  background-repeat: repeat-x;
  background-position: left bottom;
  background-size: auto 100%;
}
.p-top__voice-list-item-info {
  margin-top: 2rem;
  padding-left: 1.9rem;
  font-size: 1.2rem;
  font-weight: 300;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-top__voice-list-item-info {
    font-size: 1.4rem;
  }
}
.p-top__voice-list-item-info:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 0.8rem;
  height: 1.18rem;
  background: url(../../img/new/top/map-icon.svg) 50% 50%/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .p-top__voice-list-item-info:before {
    width: 0.95rem;
    height: 1.4rem;
  }
}
.p-top__voice-text {
  margin-top: 1.6rem;
  padding-left: 0.6rem;
}
@media screen and (min-width: 768px) {
  .p-top__voice-text {
    margin-top: 4.8rem;
  }
}
.p-top__voice-text-item {
  list-style-type: disc;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 2;
  letter-spacing: 0.02rem;
  list-style: none;
  position: relative;
  padding-left: 2rem;
}
.p-top__voice-text-item::after {
  content: "・";
  position: absolute;
  top: 4%;
  left: 0;
  transform: translateY(-50%);
  width: 0.2rem;
  height: 0.2rem;
}
.p-top__voice-btn {
  margin: 5.6rem auto 0;
  width: 40rem;
}
@media screen and (max-width: 767px) {
  .p-top__voice-btn {
    width: 100%;
    margin: 2.4rem auto 0;
  }
}
.p-top__helpful {
  background-color: #FCFBF6;
  padding-block: 6.4rem;
}
@media screen and (min-width: 768px) {
  .p-top__helpful {
    padding-block: 9.6rem 10.4rem;
  }
}
.p-top__helpful-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
@media screen and (min-width: 768px) {
  .p-top__helpful-list {
    flex-wrap: wrap;
    flex-direction: row;
  }
}
.p-top__helpful-list-item-link {
  display: flex;
  gap: 2rem;
}
@media screen and (min-width: 768px) {
  .p-top__helpful-list-item-link {
    width: 55.9rem;
    gap: 1.5rem;
  }
}
.p-top__helpful-list-item-link-img {
  width: 14.5rem;
}
@media screen and (min-width: 768px) {
  .p-top__helpful-list-item-link-img {
    width: 22rem;
  }
}
.p-top__helpful-list-item-link-text {
  margin-top: 0.5rem;
  width: 18.5rem;
}
@media screen and (min-width: 768px) {
  .p-top__helpful-list-item-link-text {
    width: 31.5rem;
  }
}
.p-top__helpful-list-item-link-text-title {
  font-size: 1.6rem;
  font-weight: 600;
}
.p-top__helpful-list-item-link-text-date {
  display: inline-block;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 300;
  color: #888;
}
.p-top__helpful-btn {
  margin: 4rem auto 0;
  width: 31rem;
}
@media screen and (min-width: 768px) {
  .p-top__helpful-btn {
    margin: 5.6rem auto 0;
    width: 40rem;
  }
}
.p-top__news-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-top__news-list {
    gap: 2.4rem;
  }
}
.p-top__news-list-item-link {
  padding: 1rem;
  border: 0.1rem solid #DFD3B0;
  border-radius: 0.8rem;
  position: relative;
  transition: border-color 0.2s;
  display: block;
}
@media screen and (min-width: 768px) {
  .p-top__news-list-item-link {
    padding: 2rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
}
.p-top__news-list-item-link:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 1rem;
  height: 1.2rem;
  background: url(../../img/new/common/arrow-right-orange.svg) 50% 50%/contain no-repeat;
  transition: transform 0.2s;
}
.p-top__news-list-item-link:hover {
  color: #6f5410;
  border-color: #6f5410;
  box-shadow: 1px 1px 4px rgba(137, 105, 17, 0.2);
}
.p-top__news-list-item-link:hover::after {
  transform: translate(0.4rem, -50%);
}
.p-top__news-list-item-link-date {
  font-size: 1rem;
  font-weight: 300;
  color: #888;
  letter-spacing: 0;
}
.p-top__news-list-item-link-tag {
  margin-left: 1rem;
  padding: 0.24rem 0.8rem;
  border: 1px solid #886911;
  border-radius: 0.4rem;
  color: #886911;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.03rem;
}
@media screen and (min-width: 768px) {
  .p-top__news-list-item-link-tag {
    padding: 0.1rem 1.2rem;
    margin-left: 0;
  }
}
.p-top__news-list-item-link-title {
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: 600;
  width: 29.5rem;
}
@media screen and (min-width: 768px) {
  .p-top__news-list-item-link-title {
    margin-top: 0;
    width: auto;
  }
}

.l-header {
  position: relative;
  margin-bottom: 0;
  padding: 2rem 0;
  z-index: 100;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .l-header {
    padding: 2rem 0 0;
    position: relative;
    transition: transform 0.3s ease;
  }
}
@media screen and (min-width: 768px) {
  .l-header.is-sticky {
    position: sticky;
    top: 0;
    z-index: 10;
  }
}
@media screen and (min-width: 768px) {
  .l-header.is-hide {
    transform: translateY(-100%);
  }
}
.l-header__common {
  padding: 2rem 0 4rem;
}
@media screen and (min-width: 768px) {
  .l-header__common {
    padding: 2rem 0 0;
  }
}
@media screen and (min-width: 768px) {
  .l-header__common .l-header__logo {
    align-items: flex-start;
  }
}
.l-header .c-wrapper {
  display: flex;
  justify-content: space-between;
  position: static;
}
@media screen and (min-width: 768px) {
  .l-header .c-wrapper {
    margin: 0 auto;
    padding: 0 3rem;
    width: 137rem;
    align-items: center;
  }
}
.l-header__logo {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  position: static;
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 36.2rem;
    position: relative;
  }
}
.l-header__logo-img {
  margin-bottom: 0 !important;
  width: 9.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-header__logo-img {
    width: 13rem;
  }
}
.l-header__logo-sub {
  width: 18.3rem;
  position: static;
}
@media screen and (min-width: 768px) {
  .l-header__logo-sub {
    display: block;
    width: 21rem;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .l-header__logo-sub-img {
    margin-top: -1rem;
    width: 21.2rem;
  }
}
.l-header__logo-sub-text {
  position: absolute;
  top: 6.5rem;
  left: 2rem;
  width: calc(100% - 4rem);
  font-size: 0.8rem;
  margin-bottom: 0 !important;
  font-weight: 400;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .l-header__logo-sub-text {
    top: auto;
    bottom: -2rem;
    left: 0;
    white-space: nowrap;
    font-size: 1.1rem !important;
  }
}
.l-header__logo-sub-text-top {
  top: 5.5rem;
}
@media screen and (min-width: 768px) {
  .l-header__logo-sub-text-top {
    top: auto;
  }
}
.l-header__logo-text {
  display: block;
  font-size: 0.8rem;
  font-weight: 300;
  letter-spacing: 0.04rem;
  border: 0.05rem solid #333;
  position: absolute;
  top: 5rem;
  left: 2rem;
  width: 9.5rem;
  text-align: center;
  z-index: 10;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .l-header__logo-text {
    font-size: 1.1rem;
    letter-spacing: -0.07rem;
    width: 13rem;
    top: 3.3rem;
    left: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-header-_page-copy {
    position: relative;
    display: flex;
  }
}
.l-header__pc-contact {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__pc-contact {
    display: flex;
    align-items: center;
    gap: 2rem;
    width: 64rem;
  }
}
.l-header__pc-contact-tel-wrap-img-num {
  font-family: "Oswald", sans-serif;
  font-size: 3.2rem;
  font-weight: 500;
  color: #00A040;
  position: relative;
  padding-left: 8rem;
}
.l-header__pc-contact-tel-wrap-img-num-text {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 700;
  background-color: #01aa01;
  color: #fff;
  border-radius: 0.8rem;
  line-height: 1;
  padding: 0.5rem 0.5rem 0.6rem 0.6rem;
  width: 7.5rem;
  text-align: center;
}
.l-header__pc-contact-tel-wrap-text {
  font-size: 1.2rem;
  color: #01AA01;
  margin-left: 8rem;
}
.l-header__pc-contact-btns {
  width: 33rem;
  display: flex;
  gap: 1rem;
}
.l-header__pc-contact-btns-item-link {
  width: 31rem;
}
@media screen and (min-width: 768px) {
  .l-header__pc-contact-btns-item-link.c-common__btn--orange {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .l-header__pc-contact-btns-item-link-sub.c-common__btn--orange-sub {
    padding: 0.2rem 0;
    width: 20rem;
    font-size: 1.3rem;
  }
}
.l-header__pc-contact-btns-item-link-main {
  padding-left: 3rem;
  position: relative;
}
.l-header__pc-contact-btns-item-link-main:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2rem;
  height: 1.6rem;
  background: url(../../img/new/common/mail.svg) 50% 50%/contain no-repeat;
}
.l-header__pc-contact-btns-item-link-small {
  margin-left: -0.8rem;
  font-size: 1.5rem;
}
.l-header__nav {
  position: fixed;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #FCFBF6;
  overflow-y: auto;
  transform: translateY(-108%);
  transition: transform 0.3s ease;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .l-header__nav {
    position: static;
    display: block;
    width: 120rem;
    margin: 0 auto;
    transform: translateY(0);
    margin-top: 0rem;
    height: auto;
    background-color: #fff;
    overflow: visible;
  }
}
.l-header__nav .c-hamburger {
  top: 1.5rem;
}
.l-header__nav .l-header__logo {
  margin: 2rem;
}
@media screen and (min-width: 768px) {
  .l-header__nav .l-header__logo {
    display: none;
  }
}
.l-header__nav-wrapper {
  position: static;
  padding: 0 2rem 2rem;
}
@media screen and (min-width: 768px) {
  .l-header__nav-wrapper {
    padding: 1.75rem 0;
  }
}
.l-header__nav-list {
  position: static;
}
@media screen and (min-width: 768px) {
  .l-header__nav-list {
    display: flex;
  }
}
.l-header__nav-list-item {
  position: static;
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item {
    width: 16.6666666667%;
  }
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item:last-child .l-header__nav-list-item-link {
    border-right: 1px solid #E7E8E7;
  }
}
.l-header__nav-list-item-link {
  padding: 2.4rem 0;
  border-bottom: 1px solid rgba(136, 105, 16, 0.2);
  position: relative;
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item-link {
    padding: 1.1rem 0;
    border-bottom: none;
    border-left: 1px solid #E7E8E7;
    text-align: center;
  }
}
.l-header__nav-list-item-link:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.3rem;
  transform: translateY(-50%);
  width: 0.65rem;
  height: 1.3rem;
  background: url(../../img/new/common/arrow-hamburger-menu.svg) 50% 50%/contain no-repeat;
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item-link:after {
    background: none;
  }
}
.l-header__nav-list-item-parent .js-menu-trigger:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  width: 1.3rem;
  height: 0.15rem;
  background-color: #886911;
  transition: transform 0.3s;
  transform: translateY(-50%) rotate(90deg);
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item-parent .js-menu-trigger:after {
    background: none;
  }
}
.l-header__nav-list-item-parent .js-menu-trigger:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  width: 1.3rem;
  height: 0.15rem;
  background-color: #886911;
  transition: transform 0.3s;
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item-parent .js-menu-trigger:before {
    background: none;
  }
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item-parent-text {
    padding-right: 2rem;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item-parent-text:after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1.45rem;
    height: 0.9rem;
    transform: translateY(-50%);
    transition: transform 0.3s;
    background: url(../../img/new/common/arrow-bottom-black.svg) 50% 50%/contain no-repeat;
  }
}
.l-header__nav-list-item-parent.is-open .js-menu-trigger:after {
  transform: translateY(-50%) rotate(0);
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item-parent.is-open .js-menu-trigger:after {
    background: none;
  }
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item-parent.is-open .l-header__nav-list-item-parent-text {
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item-parent.is-open .l-header__nav-list-item-parent-text:after {
    transform: translateY(-50%) scale(1, -1);
  }
}
.l-header__nav-list-item-child {
  margin-top: 2rem;
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item-child {
    margin-top: 0;
    padding: 5.6rem 0;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    width: 120rem;
    background-color: #F7EFDB;
    border-radius: 0 0 4.8rem 4.8rem;
  }
}
.l-header__nav-list-item-child .p-top__products-contents {
  margin: 0;
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item-child .p-top__products-contents {
    margin: 0 auto;
    width: 100rem;
  }
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item-child .p-top__products-contents-item {
    width: calc((100% - 8rem) / 5);
  }
}
.l-header__nav-list-item-child .p-top__flow-select-box {
  padding: 0;
  border: none;
}
.l-header__nav-list-item-child-btn {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item-child-btn {
    display: block;
    margin: 5rem auto 0;
    width: 20rem;
  }
}
.l-header__nav-list-item-child-btn-link {
  font-size: 1.6rem;
  padding: 1.45rem 0;
  background-color: #886911;
  border-radius: 7rem;
  box-shadow: 3px 3px 8px rgba(137, 105, 17, 0.16);
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  display: block;
  position: relative;
}
.l-header__nav-list-item-child-site {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item-child-site {
    flex-direction: row;
    align-items: stretch;
  }
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item-child-site-item {
    width: 49.2rem;
    display: flex;
  }
}
.l-header__nav-list-item-child-site-item-link {
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item-child-site-item-link {
    padding: 2rem;
    display: flex;
    flex-direction: column;
  }
}
.l-header__nav-list-item-child-site-item-link:before {
  background: none;
}
.l-header__nav-list-item-child-site-item-link-img {
  margin: 0 auto;
  width: 17.6rem;
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item-child-site-item-link-img {
    width: 24rem;
    height: 6rem;
  }
}
.l-header__nav-list-item-child-site-item-link-text {
  text-align: left;
  margin-top: 0.5rem;
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item-child-site-item-link-text {
    margin-top: 1rem;
  }
}
.l-header__nav-list-item-child-site-item-link-text-title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
}
.l-header__nav-list-item-child-site-item-link-text-title-small {
  font-size: 1.5rem;
}
.l-header__nav-list-item-child-site-item-link-text-desc {
  font-size: 1.4rem;
  font-weight: 300;
}
.l-header__nav-list-item-child-site-item-link-content {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.l-header__nav-list-item-child-site-item-link-content-title {
  font-size: 1.4rem;
  font-weight: 400;
  color: #888;
  width: 10rem;
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item-child-site-item-link-content-title {
    width: 8.6rem;
  }
}
.l-header__nav-list-item-child-site-item-link-content-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 22.4rem;
}
@media screen and (min-width: 768px) {
  .l-header__nav-list-item-child-site-item-link-content-list {
    width: auto;
  }
}
.l-header__nav-list-item-child-site-item-link-content-list-item {
  padding: 0 0.5rem;
  font-size: 1.4rem;
  font-weight: 400;
  color: #886911;
  border: 1px solid #DFD3B0;
  border-radius: 0.4rem;
}
.l-header__nav-list-item-child--area {
  padding: 0 0 0 1rem;
}
.l-header__nav-list-item-child--area .p-top__products-contents {
  flex-direction: column;
}
.l-header__nav-list-item-child--area .p-top__products-contents-item {
  padding: 0 0 2rem;
  width: 100%;
  border-bottom: 1px solid rgba(136, 105, 16, 0.2);
}
.l-header__nav-list-item-child--area-title {
  margin-bottom: 1rem;
  font-size: 1.4rem;
  font-weight: 600;
}
.l-header__nav-list-item-child--area-box {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 1rem;
}
.l-header__nav-list-item-child--area-box .p-top__products-contents-item-link {
  width: 10.5rem;
}
.l-header__nav-list-item-column {
  margin-bottom: 1rem;
}
.l-header__nav-list-item-column-search-title {
  padding-left: 3rem;
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
}
.l-header__nav-list-item-column-search-title:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 2.4rem;
  background: url(../../img/new/common/search.svg) 50% 50%/contain no-repeat;
}
.l-header__nav-list-item-column-search-form-text {
  margin-top: 1rem;
  padding: 1.1rem 1.5rem;
  width: 100%;
  border: 1px solid #ebebeb;
  border-radius: 0.2rem;
  background-color: #fff;
}
.l-header__nav-list-item-column-search-form-btn {
  display: block;
  margin: 1rem auto 0;
  padding: 0.6rem 0;
  width: 14.1rem;
  background-color: #333;
  border-radius: 0.2rem;
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
}
.l-header__nav-contact-wrap-title {
  background-color: #265441;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 2rem 0;
}
.l-header__nav-contact-wrap-detail {
  margin-top: 2.4rem;
  margin-left: 0;
  padding: 0 2rem;
}
.l-header__nav-contact-wrap-detail-list {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.l-header__nav-contact-wrap-detail-list-item-link {
  position: relative;
  padding: 1.6rem 0;
  border-radius: 7.2rem;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 800;
  display: block;
  text-align: center;
  width: 16.676rem;
}
.l-header__nav-contact-wrap-detail-list-item-link-text {
  position: relative;
}
.l-header__nav-contact-wrap-detail-list-item-link-text:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.l-header__nav-contact-wrap-detail-list-item-link--tel {
  background-color: #01AA01;
  box-shadow: 0 0.4rem 0 #006700;
  transition: box-shadow 0.3s;
}
.l-header__nav-contact-wrap-detail-list-item-link--tel:hover {
  box-shadow: 0 0 0 #006700;
}
.l-header__nav-contact-wrap-detail-list-item-link--tel-text {
  padding-left: 2rem;
}
.l-header__nav-contact-wrap-detail-list-item-link--tel-text:before {
  width: 1.17rem;
  height: 1.84rem;
  background: url(../../img/new/common/tel.svg) 50% 50%/contain no-repeat;
}
.l-header__nav-contact-wrap-detail-list-item-link--mail {
  background-color: #FF7601;
  box-shadow: 0 0.4rem 0 #be5700;
  transition: box-shadow 0.3s;
}
.l-header__nav-contact-wrap-detail-list-item-link--mail:hover {
  box-shadow: 0 0 0 #be5700;
}
.l-header__nav-contact-wrap-detail-list-item-link--mail-text {
  padding-left: 2.5rem;
}
.l-header__nav-contact-wrap-detail-list-item-link--mail-text:before {
  width: 1.9rem;
  height: 1.5rem;
  background: url(../../img/new/common/mail.svg) 50% 50%/contain no-repeat;
}
.l-header__nav-banner {
  margin-top: 4rem;
  padding: 2rem 2rem 13rem;
  background-color: #F7EFDB;
}
.l-header__nav-banner-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.l-header.is-open {
  transform: translateX(0);
  background-color: #FCFBF6;
}
.l-header.is-open .l-header__nav {
  transform: translateY(0);
}
.l-header.is-open .c-hamburger__line {
  position: absolute;
}
.l-header.is-open .c-hamburger__line:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%) rotate(30deg);
}
.l-header.is-open .c-hamburger__line:nth-child(2) {
  opacity: 0;
}
.l-header.is-open .c-hamburger__line:nth-child(3) {
  bottom: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%) rotate(-30deg);
}

.l-footer {
  background-color: #42382F !important;
}
.l-footer__navi-top-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-footer__navi-top-pc {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__navi-top-pc .c-wrapper {
    width: 100rem;
    margin: 0 auto;
    padding: 8rem 0 5rem;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8.5rem;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__navi-top-cta {
    width: 30rem;
  }
}
.l-footer__navi-top-cta-btns-item {
  margin-bottom: 1.5rem;
}
.l-footer__navi-top-cta-btns-item-link {
  font-weight: 700;
  line-height: 1.6;
  font-size: 1.6rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  background-color: #fff;
  display: block;
  position: relative;
}
.l-footer__navi-top-cta-btns-item-link:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 1.5rem;
  height: 2rem;
  background: url(../../img/new/common/arrow-right-orange.svg) 50% 50%/contain no-repeat;
  transition: transform 0.2s;
}
.l-footer__navi-top-cta-btns-item-link:hover::after {
  transform: translate(0.4rem, -50%);
}
.l-footer__navi-top-cta-contact {
  margin-top: 3rem;
  padding: 2rem 2rem 2.5rem;
  border-radius: 1rem;
  background-color: #fff;
}
.l-footer__navi-top-cta-contact-title {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  font-size: 2rem;
  font-weight: 700;
  background-image: linear-gradient(to right, #000 2px, transparent 2px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.l-footer__navi-top-cta-contact-tel {
  margin-bottom: 2rem;
}
.l-footer__navi-top-cta-contact-tel-text {
  padding-left: 4rem;
  font-size: 3rem;
  font-weight: 700;
  color: #E31A1A;
  display: block;
  position: relative;
}
.l-footer__navi-top-cta-contact-tel-text:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 3.5rem;
  height: 2.1rem;
  background: url(../../img/new/common/freedial2.svg) 50% 50%/contain no-repeat;
}
.l-footer__navi-top-cta-contact-tel-detail {
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .l-footer__navi-top-cta-contact .c-contact__detail-tel {
    margin-bottom: 2.5rem;
    padding-right: 0;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__navi-top-cta-contact .c-contact__detail-tel-link {
    padding-right: 0;
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__navi-top-cta-contact .c-contact__detail-tel-link-num {
    padding-left: 4.5rem;
    font-size: 3.6rem;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__navi-top-cta-contact .c-contact__detail-tel-link-num-text {
    width: 3.8rem;
    background-color: #E6F3EF;
    border-radius: 0.6rem;
    font-size: 1.3rem;
    line-height: 1.2;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__navi-top-lists {
    width: 61.5rem;
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__navi-top-lists-list {
    width: 33.3333333333%;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__navi-top-lists-list-item:not(:first-child) {
    margin-top: 5rem;
  }
}
.l-footer__navi-top-lists-list-item-link {
  padding: 2rem 0;
  color: #fff;
  border-bottom: 1px solid #fff;
  font-size: 1.6rem;
  display: block;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-footer__navi-top-lists-list-item-link {
    padding: 0;
    border-bottom: none;
    font-weight: 700;
  }
}
.l-footer__navi-top-lists-list-item-link:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  background: url(../../img/new/common/arrow-right-white.svg) 50% 50%/contain no-repeat;
  transition: right 0.15s;
}
@media screen and (min-width: 768px) {
  .l-footer__navi-top-lists-list-item-link:after {
    width: 0;
    background: none;
  }
}
.l-footer__navi-top-lists-list-item-link:hover {
  opacity: 0.6;
}
.l-footer__navi-top-lists-list-item-link:hover:after {
  right: -1rem;
}
.l-footer__navi-top-lists-list-sub-item {
  margin-top: 1.5rem;
}
.l-footer__navi-top-lists-list-sub-item-link {
  font-size: 1.3rem;
  color: #fff;
}
.l-footer__navi-top-lists-list-sub-item-link:hover {
  opacity: 0.6;
}
.l-footer__navi-top-lists-list-sub-item-link-text {
  padding-right: 1.8rem;
  position: relative;
}
.l-footer__navi-top-lists-list-sub-item-link-text:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.3rem;
  height: 1.3rem;
  background: url(../../img/new/common/blank.svg) 50% 50%/contain no-repeat;
}
.l-footer__navi-top-info {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-footer__navi-top-info {
    padding: 5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    background-image: linear-gradient(to right, #fff 2px, transparent 2px);
    background-size: 8px 2px;
    background-repeat: repeat-x;
    background-position: left top;
  }
}
.l-footer__navi-top-info-logo {
  width: 10rem;
}
.l-footer__navi-top-info-list {
  display: flex;
  justify-content: flex-end;
  gap: 2rem;
  width: 80rem;
}
.l-footer__navi-top-info-list-item {
  white-space: nowrap;
}
.l-footer__navi-top-info-list-item-link {
  color: #fff;
  font-size: 1.3rem;
}
.l-footer__navi-top-info-list-item-link:hover {
  opacity: 0.6;
}
.l-footer__navi-bottom {
  margin-top: 3rem;
  padding-bottom: 3rem;
}
.l-footer__navi-bottom-wrap-title {
  color: #fff;
}
.l-footer__navi-bottom-wrap-detail-list {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.l-footer__navi-bottom-wrap-detail-list-item {
  width: calc((100% - 4rem) / 3);
}
.l-footer__navi-bottom-wrap-detail-list-item-link {
  color: #fff;
  font-size: 1.3rem;
}
.l-footer__navi-bottom-wrap-detail-list-item-link-text {
  padding-right: 1rem;
  position: relative;
}
.l-footer__navi-bottom-wrap-detail-list-item-link-text:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
  width: 1.3rem;
  height: 1.3rem;
  background: url(../../img/new/common/blank.svg) 50% 50%/contain no-repeat;
}
.l-footer__company {
  padding: 1rem 0;
  background-color: #FCFBF5;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  .l-footer__company {
    padding: 3rem 0;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__company .c-wrapper {
    padding-bottom: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100rem;
    background: repeating-linear-gradient(to right, #000 0 2px, transparent 2px 8px) left bottom/auto 2px repeat-x;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__company-text {
    padding-left: 10rem;
    position: relative;
  }
}
@media screen and (min-width: 768px) {
  .l-footer__company-text:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    aspect-ratio: 20/9;
    width: 8rem;
    height: 8rem;
    background: url(../../img/new/common/logo-corporate.svg) 50% 50%/contain no-repeat;
  }
}
.l-footer__company-imgs {
  margin-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  background: repeating-linear-gradient(to right, #000 0 2px, transparent 2px 8px) left bottom/auto 2px repeat-x;
}
@media screen and (min-width: 768px) {
  .l-footer__company-imgs {
    margin-top: 0;
    padding-bottom: 0;
    background: none;
  }
}
.l-footer__company-imgs-item:first-child {
  width: 4rem;
}
.l-footer__company-imgs-item:last-child {
  width: 5rem;
}
.l-footer__company-imgs-item-img {
  height: 5rem;
}
.l-footer__company-copyright {
  padding: 2rem 0;
  text-align: center;
}/*# sourceMappingURL=header-footer.css.map */