@charset "UTF-8";
html {
  font-size: 65.25%;
}
@media (max-width: 768px) {
  html {
    font-size: 56.25%;
  }
}

body {
  font-size: 2rem;
  color: #51391b;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.08em;
}

header {
  position: sticky;
  padding: 20px 0;
  width: 95%;
  margin: 0 auto;
  text-align: center;
}
header h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: #52330e;
}

a {
  display: inline-block;
}

img {
  max-width: 100%;
  height: auto;
}

.inner {
  width: 90%;
  max-width: 1400px;
  margin-inline: auto;
}

section {
  padding-block: 100px;
}

.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 80px;
  font-weight: 700;
  color: #8b5a3c;
  position: relative;
}
.section-title::before {
  content: attr(data-en);
  display: block;
  font-size: 8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #52330e;
  line-height: 1.2;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(20px, 4vw, 40px);
}
.flex-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.fw700 {
  font-weight: 700;
}

/* ==================================================
  cta button
================================================== */
.btn-wrap {
  margin: 15px 0 5px;
  margin-top: 50px;
  display: inline-block;
}

.btn {
  font-weight: 700;
  line-height: 1.5;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  border-radius: 100vh;
  font-size: clamp(2rem, 3vw, 3rem);
  position: relative;
  padding: 0.15em 1.5em 0.5em 2em;
  color: #fff;
  background-image: linear-gradient(135deg, #fbe578 10%, #f072b6 100%);
  -webkit-box-shadow: 0 5px 0 #ec5b84;
          box-shadow: 0 5px 0 #ec5b84;
}
.btn span {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  position: absolute;
  top: -15px;
  left: 10%;
  display: block;
  width: 80%;
  padding: 0.2em 0;
  color: #ec5b84;
  border: 2px solid #ec5b84;
  border-radius: 100vh;
  background: #fff;
  -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}
.btn span:before, .btn span:after {
  position: absolute;
  left: calc(50% - 0.8em);
  content: "";
}
.btn span:before {
  bottom: -0.8em;
  border-width: 0.8em 0.8em 0 0.8em;
  border-style: solid;
  border-color: #ec5b84 transparent transparent transparent;
}
.btn span:after {
  bottom: -0.7em;
  border-width: 0.8em 0.8em 0 0.8em;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
.btn i {
  margin-right: 0.2em;
}
.btn:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);
  color: #fff;
  background-image: linear-gradient(135deg, #fbe578 10%, #f072b6 100%);
  -webkit-box-shadow: 0 2px 0 #ec5b84;
  box-shadow: 0 2px 0 #ec5b84;
}

/* ==================================================
  scroll down
================================================== */
/* スクロールダウンのスタイル */
.scroll {
  border: 1px solid #52330e;
  border-radius: 50%;
  display: inline-block;
  height: clamp(40px, 5vw, 50px);
  margin-top: 30px;
  position: relative;
  width: clamp(40px, 5vw, 50px);
}

/* 矢印 */
.scroll span {
  border-bottom: 1px solid #52330e;
  border-left: 1px solid #52330e;
  height: 10px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 33%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 10px;
}

/* アニメーション部分 */
.scroll::before {
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
  border-radius: 50%;
  -webkit-box-shadow: 0 0 0 0 rgba(108, 82, 32, 0.5);
          box-shadow: 0 0 0 0 rgba(108, 82, 32, 0.5);
  content: "";
  height: clamp(40px, 5vw, 50px);
  left: 0;
  margin: auto;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: clamp(40px, 5vw, 50px);
}

/* アニメーション */
@-webkit-keyframes scroll {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    -webkit-box-shadow: 0 0 0 clamp(15px, 2vw, 20px) rgba(108, 82, 32, 0.5);
            box-shadow: 0 0 0 clamp(15px, 2vw, 20px) rgba(108, 82, 32, 0.5);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes scroll {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    -webkit-box-shadow: 0 0 0 clamp(15px, 2vw, 20px) rgba(108, 82, 32, 0.5);
            box-shadow: 0 0 0 clamp(15px, 2vw, 20px) rgba(108, 82, 32, 0.5);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
/* ==================================================
  fv
================================================== */
.fv {
  padding-block: 50px 100px;
  background: url(../img/29414616_m.jpg) no-repeat 50% 50%/cover;
  position: relative;
}
.fv::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(52, 38, 19, 0.3);
  z-index: 1;
}
.fv__content {
  position: relative;
  z-index: 2;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.fv__catch {
  display: inline-block;
  font-size: clamp(3rem, 4vw, 4rem);
  text-align: center;
  margin-bottom: 30px;
  line-height: 1.4;
}
.fv .text-gradient {
  font-size: clamp(3.2rem, 4.4vw, 4.4rem);
}
.fv .scroll {
  position: absolute;
  bottom: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}

.text-gradient {
  background: -webkit-gradient(linear, left top, right top, color-stop(10%, #f6e8a3), to(#f1a9d0));
  background: linear-gradient(90deg, #f6e8a3 10%, #f1a9d0 100%);
  padding: 0.2em 0.5em 0.1em 0.6em;
  display: inline-block;
  margin-block: 0.4em;
}

.reason__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.price__table {
  width: 100%;
}
.price__table th,
.price__table td {
  padding: 10px;
}

/* ===============================================
  badge
=============================================== */
.badge-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(10px, 2vw, 20px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}

.badge {
  position: relative;
  width: clamp(150px, 22vw, 250px);
  height: clamp(150px, 22vw, 250px);
  border-radius: 50%;
  background: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  padding: 12px;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.badge::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 50%;
  background-image: linear-gradient(135deg, #c6ac77 10%, #4e2b11 100%);
  z-index: 0;
}
@media (width < 768px) {
  .badge::before {
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: 8px;
  }
}
.badge::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border-radius: 50%;
  background: #ffffff;
  z-index: 1;
}
@media (width < 768px) {
  .badge::after {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
}
.badge > * {
  position: relative;
  z-index: 2;
}

.badge-title {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: #9c896e;
  line-height: 1.3;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.badge-subtitle {
  font-size: clamp(1.6rem, 2vw, 2rem);
  font-weight: 600;
  color: #52330e;
  line-height: 1.2;
  letter-spacing: 0.5px;
}

.badge-subtitle-large {
  font-size: clamp(3rem, 4vw, 4.6rem);
  color: #52330e;
  line-height: 1.1;
  margin-bottom: 6px;
  letter-spacing: normal;
  font-weight: 600;
}

.badge-subtitle-small {
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  letter-spacing: 0.5px;
}

.badge-size-text {
  font-size: 24px;
  font-weight: 600;
  color: #333333;
  line-height: 1.2;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.badge-size-highlight {
  font-size: 34px;
  font-weight: 700;
  color: #52330e;
  letter-spacing: 0.5px;
}

/* ==================================================
  trouble
================================================== */
.trouble__catch {
  text-align: center;
}

.trouble-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.trouble-pricing-card {
  text-align: center;
}

.balloon4 {
  position: relative;
  margin: 10px 40px 10px 0;
  padding: 15px;
  background: #ae8655;
  border-radius: 20px;
}
.balloon4:before {
  content: "";
  position: absolute;
  right: -38px;
  width: 13px;
  height: 12px;
  bottom: 0;
  background: #ae8655;
  border-radius: 50%;
}
.balloon4:after {
  content: "";
  position: absolute;
  right: -24px;
  width: 20px;
  height: 18px;
  bottom: 3px;
  background: #ae8655;
  border-radius: 50%;
}
.balloon4 p {
  margin: 0;
  padding: 0;
}

/* ==================================================
  feature
================================================== */
.feature__list li:nth-of-type(n + 2) {
  margin-top: 80px;
}
.feature__list li h3 {
  font-size: 3rem;
}
.feature__list li p {
  margin-top: 20px;
}
.feature__text {
  width: 60%;
}
.feature__image {
  width: 40%;
}

/* ===============================================
  price
=============================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pricing-card {
  background: white;
  padding: clamp(20px, 4vw, 40px);
  border-radius: 20px;
  text-align: center;
  -webkit-box-shadow: 0 8px 30px rgba(139, 87, 60, 0.15);
          box-shadow: 0 8px 30px rgba(139, 87, 60, 0.15);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.pricing-card.popular {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  border: 3px solid #d4af8c;
}
.pricing-card.popular:before {
  content: "人気";
  position: absolute;
  top: -0.9em;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #8b5a3c;
  color: white;
  padding: 0.5rem 2rem;
  border-radius: 20px;
  font-size: 1.6rem;
  font-weight: bold;
}
.pricing-card.popular:hover {
  -webkit-transform: translateY(-5px) scale(1.05);
          transform: translateY(-5px) scale(1.05);
}
.pricing-card:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

.plan-name {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: bold;
  color: #8b5a3c;
  margin-bottom: 1rem;
}

.plan-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.3rem;
  font-size: clamp(2rem, 4vw, 4rem);
  font-weight: bold;
  color: #d4af8c;
  margin-bottom: 1.5rem;
}

.plan-period {
  color: #8b5a3c;
  font-size: 2rem;
}

.plan-features {
  list-style: none;
  text-align: left;
}

.plan-features li {
  margin: 0.5rem 0;
}
.plan-features li i {
  margin-right: 5px;
}

.cta-button {
  background: linear-gradient(45deg, #d4af8c, #c19d70);
  color: #4a3728;
  padding: 1rem 3rem;
  border: none;
  border-radius: 50px;
  font-size: 1.2rem;
  font-weight: bold;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  display: inline-block;
}

.cta-button:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
          box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background: linear-gradient(45deg, #c19d70, #d4af8c);
}

/* ===============================================
  feature
=============================================== */
.reason-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (width < 1000px) {
  .reason-list {
    grid-template-columns: 1fr;
  }
}
.reason-list li {
  background: #fff;
  padding: 40px;
}
.reason-list li span {
  display: block;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
}
.reason-list li h3 {
  text-align: center;
  font-weight: 600;
  margin-block: 10px;
}

/* ===============================================
  uservoice
=============================================== */
.uservoice__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (width < 1000px) {
  .uservoice__list {
    grid-template-columns: 1fr;
  }
}
.uservoice__list li {
  background: #fff;
  padding: clamp(20px, 4vw, 40px);
  border-radius: 1em;
  -webkit-box-shadow: 0 8px 30px rgba(139, 87, 60, 0.1);
          box-shadow: 0 8px 30px rgba(139, 87, 60, 0.1);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (width < 600px) {
  .uservoice__list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.uservoice__list .testimonial-quote {
  font-size: 6rem;
  color: #d4af8c;
  position: absolute;
  top: 0.2em;
  left: 0.4em;
  opacity: 0.3;
}
.uservoice__image {
  margin-top: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.uservoice__image img {
  display: block;
  width: 40px;
}
.uservoice__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/* ==================================================
  FAQ
================================================== */
.faq__list dt {
  cursor: pointer;
  padding: 1em;
  border: 2px solid #ddd;
  border-radius: 0 0.6em 0 0.6em;
}
.faq__list dd {
  overflow: hidden;
  max-height: 0;
  -webkit-transition: max-height 0.4s ease;
  transition: max-height 0.4s ease;
  margin: 1em;
}

/* ==================================================
  copyright
================================================== */
.copyright {
  font-size: 1rem;
}

/* ==================================================
  contact
================================================== */
.form {
  margin-block: 100px;
}
.form .p-country-name {
  display: none;
}

.form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1.8em 0;
  border-top: 1px solid #ddd;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (width < 1000px) {
  .form-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.form-item:last-of-type {
  border-bottom: 1px solid #ddd;
}
.form-item__title {
  width: 100%;
  max-width: 300px;
  font-size: 2rem;
}
.form-item__title label.required {
  display: inline-block;
  position: relative;
}
.form-item__title label.required::after {
  content: "必須";
  color: #fff;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: calc(100% + 10px);
  background-color: firebrick;
  border-radius: 0.4em;
  padding: 0.3em 0.6em;
  font-size: 1.2rem;
  line-height: 1.2;
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 0;
}
.form-item__input {
  width: calc(100% - 300px);
}
@media (width < 1000px) {
  .form-item__input {
    margin-top: 0.8em;
    width: 100%;
  }
}
.form-item__input input::-webkit-input-placeholder {
  color: #c2c2c2;
}
.form-item__input input::-moz-placeholder {
  color: #c2c2c2;
}
.form-item__input input:-ms-input-placeholder {
  color: #c2c2c2;
}
.form-item__input input::-ms-input-placeholder {
  color: #c2c2c2;
}
.form-item__input input::placeholder {
  color: #c2c2c2;
}
.form-item__input [type=text],
.form-item__input [type=email],
.form-item__input [type=tel] {
  border: 2px solid #ddd;
  border-radius: 0.4em;
  background: #fff;
  padding: 0.8em 1em;
  width: 100%;
}
.form-item__input [type=text]:focus,
.form-item__input [type=email]:focus,
.form-item__input [type=tel]:focus {
  outline: none;
}
.form-item__input textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 0.8em 1em;
  background-color: #fff;
  border-radius: 0.4em;
  resize: vertical;
  border: 2px solid #ddd;
}
.form-item__input textarea::-webkit-input-placeholder {
  color: #c2c2c2;
}
.form-item__input textarea::-moz-placeholder {
  color: #c2c2c2;
}
.form-item__input textarea:-ms-input-placeholder {
  color: #c2c2c2;
}
.form-item__input textarea::-ms-input-placeholder {
  color: #c2c2c2;
}
.form-item__input textarea::placeholder {
  color: #c2c2c2;
}
.form-item__input textarea:focus {
  outline: none;
}
.form-item__input [type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.5em;
  height: 1.5em;
  border: 1px solid #51391b;
  background-color: #fff;
  position: relative;
}
.form-item__input [type=checkbox]::after {
  border-bottom: 0.25em solid #52330e;
  border-left: 0.25em solid #52330e;
  content: "";
  position: absolute;
  height: 1em;
  width: 1.5em;
  margin-top: -0.2em;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  display: none;
}
.form-item__input [type=checkbox]:checked::after {
  display: block;
}
.form-item__input [type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 1.5em;
  height: 1.5em;
  border: 1px solid #51391b;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
}
.form-item__input [type=radio]::after {
  content: "";
  width: 0.75em;
  height: 0.75em;
  background-color: #333;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  display: none;
}
.form-item__input [type=radio]:checked::after {
  display: block;
}
.form-item__input .wpcf7-list-item {
  margin-left: 0;
}
.form-item__input .wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
}
.form-item__input .wpcf7-checkbox,
.form-item__input .wpcf7-radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}

.select-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.8em;
}
.select-item .select-item__input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 0.5em;
}
@media (width < 1000px) {
  .select-item .select-item__input {
    margin-top: 0.8em;
  }
}
.select-item .select-item__input [type=text],
.select-item .select-item__input select {
  border: none;
  border-radius: 0.4em;
  background: #fff;
  padding: 0.8em 1em;
  border: 2px solid #ddd;
}

.postalcode {
  display: inline-block;
}
.postalcode .wpcf7-form-control-wrap {
  width: auto;
  position: relative;
  display: inline-block;
}
.postalcode .wpcf7-form-control-wrap::before {
  position: absolute;
  content: "〒";
  color: #333;
  font-size: 1.6rem;
  height: 50px;
  top: 12px;
  left: 15px;
}
.postalcode input[type=text] {
  padding-left: 40px;
}

.address {
  margin-top: 10px;
}

.submit-button {
  margin-top: clamp(40px, 7.5vw, 80px);
  text-align: center;
}
.submit-button [type=submit] {
  display: inline-block;
  cursor: pointer;
  color: #fff;
  border-radius: 0.2em;
  border: 1px solid #52330e;
  padding: 1em 6em;
  letter-spacing: 0.08em;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  background-color: #52330e;
  font-size: 2rem;
  font-weight: 700;
}
.submit-button [type=submit]:hover {
  background-color: #fff;
  color: #52330e;
}
.submit-button [type=submit]:focus {
  outline: none;
}

.wpcf7-spinner {
  display: none !important;
}

.wpcf7-form.sent .wpcf7-response-output {
  display: none;
}

.wpcf7-not-valid-tip {
  margin-top: 5px;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  text-align: center;
  color: #ee5a6d;
  border: 2px solid #ee5a6d;
  margin-top: clamp(20px, 4vw, 40px);
  margin-inline: auto;
  width: 80%;
}

@-webkit-keyframes onAutoFillStart {}

@keyframes onAutoFillStart {}
input:-webkit-autofill {
  -webkit-animation-name: onAutoFillStart;
          animation-name: onAutoFillStart;
  -webkit-transition: background-color 50000s ease-in-out 0s;
  transition: background-color 50000s ease-in-out 0s;
}

.grecaptcha-badge {
  bottom: 120px !important;
}

/* ===============================================
  thanksページ
=============================================== */
.thanks__head {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}
.thanks__button {
  margin-top: 40px;
  text-align: center;
}
.thanks__link {
  display: inline-block;
  padding: 1em 4em;
  color: #999999;
  background: #eee;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.thanks__link:hover {
  background: #ddd;
}