@charset "UTF-8";
/** @format */
/** @format */
body {
  font-size: 1rem;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Serif JP", serif;
}

.serif {
  font-family: "Noto Serif JP", serif;
}

a {
  text-decoration: none;
}
a img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
a:hover {
  text-decoration: underline;
}
a:hover img {
  opacity: 0.6;
}

.container {
  width: 100%;
  max-width: 1140px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}
.container--header {
  max-width: 1100px;
  padding-left: 0;
  padding-right: 0;
}

.container_s {
  width: 100%;
  max-width: 750px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

img {
  max-width: 100%;
}

.products {
  background-color: #f5f1eb;
  padding: 3.75rem 0 8.25rem;
}
@media screen and (max-width: 767px) {
  .products {
    padding: 2rem 0 3.75rem;
  }
}
.products__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .products__header {
    margin-bottom: 3.75rem;
  }
}
.products__notice {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #4a403a;
}
.products__notice p {
  margin: 0;
}
.products__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .products__tabs {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.products__tab {
  background-color: white;
  border: none;
  padding: 1rem 1.5rem;
  height: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4998125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 21px;
  letter-spacing: 0.8px;
  color: #db5331;
  text-decoration: none;
}
.products__tab:hover {
  opacity: 0.8;
  text-decoration: none;
}
.products__tab:hover img {
  opacity: 1;
}
.products__tab:active, .products__tab:focus {
  outline: none;
}
.products__tab img {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}
.products__category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 5rem;
  scroll-margin-top: 8.75rem;
}
.products__category:last-child {
  margin-bottom: 0;
}
.products__category-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.products__category-title {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0.8px;
  color: #4a403a;
  margin: 0;
}
.products__category-description {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #4a403a;
}
.products__category-description p {
  margin: 0;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.5rem;
  width: 100%;
  max-width: 68.75rem;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .products__grid {
    gap: 1.5rem;
    row-gap: 3.5rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .products__grid {
    gap: 1.5rem;
    row-gap: 3.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

.product-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.product-card__image {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  background-color: #4a403a;
  overflow: hidden;
}
.product-card__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.product-card__badge {
  position: absolute;
  top: 0.5rem;
  left: 0.4375rem;
  padding: 0.3125rem 0.5625rem;
  border-radius: 999px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  line-height: 21px;
  letter-spacing: 0.8px;
  white-space: nowrap;
  z-index: 10;
}
.product-card__badge--normal {
  background-color: white;
  border: 1px solid #4b362e;
  color: #4b362e;
}
.product-card__badge--light {
  background-color: #fff6e8;
  border: 1px solid #db5331;
  color: #db5331;
}
.product-card__badge--dark {
  background-color: #4b362e;
  border: 1px solid #333;
  color: white;
}
.product-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.product-card__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.product-card__name {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.8px;
  color: #4a403a;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .product-card__name {
    font-size: 16px;
  }
}
.product-card__price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
}
.product-card__price--discount {
  color: #db5331;
}
.product-card__price--sold-out {
  color: #db5331;
  font-weight: 700;
}
.product-card__price--bold {
  font-weight: 700;
}
.product-card__price--bold .product-card__price-main,
.product-card__price--bold .product-card__price-tax,
.product-card__price--bold .product-card__price-old {
  font-weight: 700;
}
.product-card__price--custom-color .product-card__price-main,
.product-card__price--custom-color .product-card__price-tax,
.product-card__price--custom-color .product-card__price-old {
  color: inherit;
}
.product-card__price-main {
  font-size: 1rem;
  color: #4a403a;
  letter-spacing: 0.8px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .product-card__price-main {
    font-size: 14px;
  }
}
.product-card__price--discount .product-card__price-main {
  color: #db5331;
}
.product-card__price--sold-out .product-card__price-main {
  color: #db5331;
  font-size: 1rem;
}
.product-card__price-tax {
  font-size: 0.75rem;
  color: #4a403a;
  letter-spacing: 0.8px;
  margin: 0;
}
.product-card__price--discount .product-card__price-tax {
  color: #db5331;
}
.product-card__price--sold-out .product-card__price-tax {
  color: #db5331;
  font-size: 0.75rem;
}
.product-card__price-old {
  text-decoration: line-through;
}
.product-card__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.product-card__quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-card__quantity-label {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.8px;
  color: #4a403a;
}
.product-card__quantity-input {
  position: relative;
  background-color: white;
  border: 1px solid #ded9cc;
  width: 2.75rem;
  height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5625rem 0.5rem;
}
.product-card__quantity-input::after {
  content: "";
  position: absolute;
  right: 0.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 1rem;
  height: 1rem;
  background: url("../images/common/icon-arrow-down.svg") no-repeat center/contain;
  pointer-events: none;
}
.product-card__quantity-value {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0.8px;
  color: #4a403a;
  border: none;
  background: transparent;
  width: 100%;
  padding-right: 0.75rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: center;
}
.product-card__cart-button {
  background-color: #db5331;
  border: none;
  padding: 0.5rem 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4998125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.product-card__cart-button:hover {
  background-color: #c44a2a;
}
@media screen and (max-width: 767px) {
  .product-card__cart-button {
    padding: 0.5rem 0.5rem;
  }
}
.product-card__cart-text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 21px;
  letter-spacing: 0.8px;
  color: white;
}
@media screen and (max-width: 767px) {
  .product-card__cart-text {
    font-size: 12px;
  }
}
.product-card__cart-icon {
  width: 0.9995625rem;
  height: 0.9995625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.product-card__cart-icon-image {
  width: 100%;
  height: 100%;
  display: block;
}

.page-content {
  background-color: #f5f1eb;
  padding: 3.75rem 0 8.25rem;
}
@media screen and (max-width: 767px) {
  .page-content {
    padding: 2rem 0 5rem;
  }
}
.page-content__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .page-content__header {
    margin-bottom: 3.75rem;
  }
}
.page-content__description {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #4a403a;
  margin: 0;
}
.page-content__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .page-content__tabs {
    gap: 1rem;
  }
}
.page-content__tab {
  background-color: white;
  border: none;
  padding: 1rem 1.5rem;
  height: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4998125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 21px;
  letter-spacing: 0.8px;
  color: #db5331;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .page-content__tab {
    padding: 1rem;
  }
}
.page-content__tab:hover {
  opacity: 0.8;
  text-decoration: none;
}
.page-content__tab:active, .page-content__tab:focus {
  outline: none;
}
.page-content__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .page-content__content {
    gap: 1.5rem;
  }
}
.page-content__section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.page-content__section[id] {
  margin-bottom: 5rem;
  scroll-margin-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .page-content__section[id] {
    margin-bottom: 3.75rem;
  }
}
.page-content__section[id]:last-child {
  margin-bottom: 0;
}
.page-content__method {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 5rem;
  scroll-margin-top: 8.75rem;
}
@media screen and (max-width: 767px) {
  .page-content__method {
    margin-bottom: 3.75rem;
    gap: 1.5rem;
  }
}
.page-content__method:last-child {
  margin-bottom: 0;
}
.page-content__method-title, .page-content__section-title,
.page-content .wp-block-heading:is(h2, h3) {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0.8px;
  color: #4a403a;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .page-content__method-title, .page-content__section-title,
  .page-content .wp-block-heading:is(h2, h3) {
    font-size: 24px;
  }
}
.page-content .wp-block-heading:is(h2, h3) {
  margin-bottom: 1.5rem;
}
.page-content__method-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.page-content__method-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.page-content__method-subtitle,
.page-content .wp-block-heading:is(h4, h5, h6) {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #4a403a;
  margin: 0;
}
.page-content .wp-block-heading:is(h4, h5, h6) {
  margin-top: 3rem;
}
.page-content__method-text, .page-content__text,
.page-content .wp-block-paragraph {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #4a403a;
  margin: 0;
}
.page-content__method-text p, .page-content__text p,
.page-content .wp-block-paragraph p {
  margin: 0 0 1rem 0;
}
.page-content__method-text p:last-child, .page-content__text p:last-child,
.page-content .wp-block-paragraph p:last-child {
  margin-bottom: 0;
}
.page-content__method-text strong, .page-content__text strong,
.page-content .wp-block-paragraph strong {
  font-weight: 700;
}
.page-content .wp-block-paragraph {
  margin-bottom: 1rem;
}
.page-content .wp-block-paragraph:last-child {
  margin-bottom: 0;
}
.page-content__text:has(.page-content__method-section) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
}
.page-content__text:has(.page-content__method-section) > h4:not([class]) {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #4a403a;
  margin: 0;
}
.page-content__text:has(.page-content__method-section) > ul:not([class]) {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #4a403a;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 1.5rem;
}
.page-content__text:has(.page-content__method-section) > ul:not([class]) li {
  margin-bottom: 0;
  position: relative;
}
.page-content__text:has(.page-content__method-section) > ul:not([class]) li::before {
  content: "・";
  position: absolute;
  left: -1.5rem;
}
.page-content__text:has(.page-content__method-section) > ul:not([class]) li > div {
  display: inline;
}
.page-content__text:has(.page-content__method-section) > ul:not([class]) li:last-child {
  margin-bottom: 0;
}
.page-content__text:has(.page-content__method-section) > p:not([class]) {
  margin: 0;
}
.page-content__method-list, .page-content__list, .page-content__card-list,
.page-content .wp-block-list {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #4a403a;
  list-style: none;
  margin: 0;
  padding: 0;
  padding-left: 1.5rem;
}
.page-content__method-list li, .page-content__list li, .page-content__card-list li,
.page-content .wp-block-list li {
  margin-bottom: 0;
  position: relative;
}
.page-content__method-list li::before, .page-content__list li::before, .page-content__card-list li::before,
.page-content .wp-block-list li::before {
  content: "・";
  position: absolute;
  left: -1.5rem;
}
.page-content__method-list li:last-child, .page-content__list li:last-child, .page-content__card-list li:last-child,
.page-content .wp-block-list li:last-child {
  margin-bottom: 0;
}
.page-content .wp-block-list {
  margin-bottom: 1rem;
}
.page-content .wp-block-list:last-child {
  margin-bottom: 0;
}
.page-content__method-list--no-dots {
  list-style: none;
  padding-left: 0;
}
.page-content__method-list--no-dots li {
  list-style: none;
}
.page-content__method-list--no-dots li::before {
  content: none;
}
.page-content__method-note {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #4a403a;
  margin: 0;
}
.page-content__card-logos {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.page-content__card-logo {
  background-color: white;
  width: 5.5rem;
  height: 4.3125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.page-content__card-logo-image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.page-content__method-link, .page-content__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.249875rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.page-content a.link-text[href]:not([href="#"]):not([href=""]) {
  gap: 0.5rem;
}
.page-content a.link-text[href]:not([href="#"]):not([href=""]) .link-text__icon {
  display: none;
}
.page-content a.link-text[href]:not([href="#"]):not([href=""])::after {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  background-image: url("../images/common/arrow-right.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.contact-page {
  background-color: #f5f1eb;
  padding: 3.75rem 0 8.25rem;
}
@media screen and (max-width: 767px) {
  .contact-page {
    padding: 2rem 0 5rem;
  }
}
.contact-page__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .contact-page__header {
    margin-bottom: 2.5rem;
  }
}
.contact-page__description {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #4a403a;
  margin: 0;
}
.contact-page__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3rem;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  max-width: 50rem;
}
@media screen and (max-width: 767px) {
  .contact-page__content {
    gap: 2rem;
  }
}

.contact-form {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 767px) {
  .contact-form {
    gap: 1.5rem;
  }
}
.contact-form__field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.contact-form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.contact-form__label-text {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #4a403a;
}
.contact-form__required {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.125rem 0.5rem;
  background-color: #4a403a;
  color: white;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  line-height: 1.5;
  letter-spacing: 0.6px;
  border-radius: 0.125rem;
}
.contact-form__input-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.contact-form__input-icon {
  position: absolute;
  left: 1rem;
  width: 1.25rem;
  height: 1.25rem;
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}
.contact-form__input {
  width: 100%;
  max-width: 33.75rem;
  height: 3.5rem;
  padding: 1rem 1rem 1rem 3rem;
  background-color: white;
  border: 1px solid #ded9cc;
  border-radius: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.8px;
  color: #4a403a;
  border-radius: 6px;
}
.contact-form__input::-webkit-input-placeholder {
  color: #999;
}
.contact-form__input::-moz-placeholder {
  color: #999;
}
.contact-form__input:-ms-input-placeholder {
  color: #999;
}
.contact-form__input::-ms-input-placeholder {
  color: #999;
}
.contact-form__input::placeholder {
  color: #999;
}
.contact-form__input:focus {
  outline: none;
  border-color: #db5331;
}
.contact-form__textarea {
  width: 100%;
  min-height: 12.5rem;
  padding: 1rem;
  background-color: white;
  border: 1px solid #ded9cc;
  border-radius: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.8;
  letter-spacing: 0.8px;
  color: #4a403a;
  resize: vertical;
  border-radius: 6px;
}
.contact-form__textarea::-webkit-input-placeholder {
  color: #999;
}
.contact-form__textarea::-moz-placeholder {
  color: #999;
}
.contact-form__textarea:-ms-input-placeholder {
  color: #999;
}
.contact-form__textarea::-ms-input-placeholder {
  color: #999;
}
.contact-form__textarea::placeholder {
  color: #999;
}
.contact-form__textarea:focus {
  outline: none;
  border-color: #db5331;
}
.contact-form__submit_wrap {
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .contact-form__submit_wrap {
    margin-top: 0.25rem;
  }
}
.contact-form__submit {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5rem;
}
.contact-form__submit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(6.25rem + 1.75rem);
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1rem;
  height: 1rem;
  background: url("../images/common/arrow-right-white.svg") no-repeat center/contain;
  pointer-events: none;
}
.contact-form__submit .wpcf7-spinner {
  margin: 0;
}
.contact-form__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 1rem 2.5rem;
  background-color: #db5331;
  border: none;
  border-radius: 0;
  cursor: pointer;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 200px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.8px;
  color: white;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: center;
  padding-left: 30px;
}
.contact-form__button:hover {
  opacity: 0.8;
}
.contact-form__button:active, .contact-form__button:focus {
  outline: none;
}