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

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
address,
img,
small,
strong,
sub,
sup,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
figure,
figcaption,
footer,
header,
main,
nav,
section {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article,
aside,
figure,
figcaption,
footer,
header,
main,
nav,
section {
  display: block;
}

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  border: none;
}

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

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

input,
textarea,
select {
  font: inherit;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 64px;
  }
}

body {
  font-family: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", YuMincho, serif;
  color: #352815;
  background-color: #faf8f4;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  body {
    padding-bottom: 56px;
  }
}

.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.br-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .br-sp {
    display: inline;
  }
}

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

.contact__submit, .contact__home, .footer__btn, .fv__cta, .floating-nav__btn, .header__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #e8630a;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 6px 10px rgba(218, 91, 0, 0.45);
  transition: opacity 0.3s;
}
.contact__submit:hover, .contact__home:hover, .footer__btn:hover, .fv__cta:hover, .floating-nav__btn:hover, .header__btn:hover {
  opacity: 0.8;
}

.footer__btn-badge, .fv__cta-badge {
  position: absolute;
  top: 0;
  background: #af4900;
  color: #fff;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 999px;
  transform: translateY(-50%);
}
.footer__btn-badge::after, .fv__cta-badge::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 7px solid #af4900;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  transform: translateX(-50%);
}

.footer__tel, .fv__tel, .floating-nav__tel, .header__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid #e8630a;
  border-radius: 999px;
  box-shadow: 0 6px 10px rgba(218, 91, 0, 0.25);
}

.footer__tel-icon, .fv__tel-icon, .floating-nav__tel-icon, .header__tel-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.footer__tel-number, .fv__tel-number, .floating-nav__tel-number, .header__tel-number {
  color: #e8630a;
  font-weight: 700;
}

.footer__tel-time, .fv__tel-time, .floating-nav__tel-time, .header__tel-time {
  color: #e8630a;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 96px;
  background: transparent;
  box-shadow: none;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}
.header.is-scrolled {
  background: rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 20px rgba(53, 40, 21, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.header.is-open {
  background: #fff;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
@media screen and (max-width: 1023px) {
  .header {
    height: 64px;
    transition: background 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
  }
  .header.is-open {
    height: 100dvh;
  }
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
  padding: 0 40px;
}
@media screen and (max-width: 1023px) {
  .header__inner {
    padding: 0 20px;
  }
}
.header__logo {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.header__logo img {
  display: block;
  height: auto;
  width: clamp(110px, 11vw, 200px);
}
@media screen and (max-width: 1023px) {
  .header__logo img {
    height: 34px;
  }
}
@media screen and (max-width: 1023px) {
  .header__nav {
    display: none;
    width: 100%;
    order: 3;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1vw, 28px);
}
@media screen and (max-width: 1023px) {
  .header__nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
}
.header__nav a {
  font-size: clamp(1.25rem, 1vw, 1.5rem);
  font-weight: 700;
  color: #352815;
  white-space: nowrap;
}
.header__nav a:hover {
  color: #e8630a;
}
@media screen and (max-width: 1023px) {
  .header__nav a {
    font-size: 1.6rem;
    display: block;
    padding: 16px 4px;
    border-bottom: 1px solid rgba(53, 40, 21, 0.1);
  }
}
.header__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .header__cta {
    display: none;
    order: 4;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-top: 20px;
  }
}
.header__trigger {
  display: none;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  width: 32px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
}
.header__trigger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #352815;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media screen and (max-width: 1023px) {
  .header__trigger {
    display: flex;
  }
}
.header.is-open .header__trigger span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.header.is-open .header__trigger span:nth-child(2) {
  opacity: 0;
}
.header.is-open .header__trigger span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}
.header.is-open .header__nav, .header.is-open .header__cta {
  display: flex;
}
@media screen and (max-width: 1023px) {
  .header.is-open .header__inner {
    align-items: stretch;
    flex-wrap: wrap;
    height: auto;
    min-height: 100%;
    padding-top: 20px;
    padding-bottom: 24px;
    overflow-y: auto;
  }
}
.header__btn {
  width: clamp(150px, 13vw, 210px);
  height: 52px;
  padding: 0 20px;
  font-size: 1.5rem;
  border-radius: 5px;
}
@media screen and (max-width: 1023px) {
  .header__btn {
    width: 240px;
  }
}
.header__btn-arrow {
  font-size: 1rem;
}
.header__tel {
  width: clamp(150px, 13vw, 210px);
  height: 52px;
  padding: 0 16px 0 8px;
  border-radius: 5px;
}
@media screen and (max-width: 1023px) {
  .header__tel {
    width: 240px;
  }
}
.header__tel-icon {
  width: 36px;
  height: 36px;
}
.header__tel-icon img {
  width: 18px;
  height: 18px;
}
.header__tel-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.header__tel-number {
  font-size: 2rem;
  white-space: nowrap;
}
.header__tel-time {
  font-size: 0.8rem;
}

.floating-nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .floating-nav {
    display: flex;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 90;
    transform: translateY(100%);
    box-shadow: 0 -4px 16px rgba(53, 40, 21, 0.12);
    transition: transform 0.3s ease;
  }
  .floating-nav.is-scrolled {
    transform: translateY(0);
  }
  .floating-nav.is-hidden {
    transform: translateY(100%);
  }
}
.floating-nav__btn {
  flex: 1;
  gap: 6px;
  height: 56px;
  font-size: 1.4rem;
  border-radius: 0;
}
.floating-nav__btn-arrow {
  font-size: 1rem;
}
.floating-nav__tel {
  flex: 1;
  justify-content: center;
  gap: 10px;
  height: 56px;
  border-radius: 0;
  border-width: 1px 0 0;
  box-shadow: none;
}
.floating-nav__tel-icon {
  width: 30px;
  height: 30px;
}
.floating-nav__tel-icon img {
  width: 100%;
  height: 100%;
}
.floating-nav__tel-text {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
  text-align: left;
}
.floating-nav__tel-number {
  font-size: 1.6rem;
  white-space: nowrap;
}
.floating-nav__tel-time {
  font-size: 1.2rem;
}

.fv {
  position: relative;
  overflow: hidden;
  padding: 0 0 100px;
  background: #faf8f4;
}
@media screen and (max-width: 767px) {
  .fv {
    padding: 64px 0 60px;
  }
}
.fv__image {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  max-width: 60%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .fv__image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}
.fv__decoration {
  position: absolute;
  inset: 0;
  left: -10%;
  width: 70%;
  height: 100%;
  object-fit: contain;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .fv__decoration {
    display: none;
  }
}
.fv__inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: calc(96px + 40px) 40px 0;
  padding-top: 28rem;
}
@media screen and (max-width: 767px) {
  .fv__inner {
    padding-top: clamp(14rem, 42vw, 24rem);
    padding-inline: 5%;
  }
}
.fv__body {
  position: relative;
}
.fv__catch {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.4;
  color: #352815;
  margin-bottom: 22px;
  text-shadow: 0.45px 0 currentColor, -0.45px 0 currentColor, 0 0.45px currentColor, 0 -0.45px currentColor;
}
@media screen and (max-width: 767px) {
  .fv__catch {
    font-size: clamp(2.4rem, 6.2vw, 3.2rem);
    margin-bottom: 14px;
  }
}
.fv__dots {
  display: block;
  width: 140px;
  height: 4px;
  margin: 16px 0;
  background-image: radial-gradient(circle, #999 1.5px, transparent 1.5px);
  background-size: 12px 4px;
  background-repeat: repeat-x;
}
.fv__lead {
  font-size: 2.2rem;
  font-weight: 700;
  color: #352815;
  margin-bottom: 32px;
  text-shadow: 0.45px 0 currentColor, -0.45px 0 currentColor, 0 0.45px currentColor, 0 -0.45px currentColor;
}
@media screen and (max-width: 767px) {
  .fv__lead {
    line-height: 2;
    font-size: clamp(1.4rem, 3vw, 1.6rem);
    margin-bottom: 20px;
  }
}
.fv__lead-divider {
  margin: 0 8px;
}
.fv__kenten {
  display: inline-flex;
}
.fv__kenten span {
  position: relative;
}
.fv__kenten span::before {
  content: "";
  position: absolute;
  top: -0.25em;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #352815;
  border-radius: 50%;
  transform: translateX(-50%);
}
.fv__points {
  display: flex;
  gap: 12px;
  max-width: 620px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .fv__points {
    flex-wrap: wrap;
    max-width: 100%;
  }
}
.fv__points-item {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 18px 12px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .fv__points-item {
    flex: 0 0 calc(50% - 6px);
    padding: 14px 8px;
  }
}
.fv__points-item img {
  width: 44px;
  height: 44px;
  margin: 0 auto 10px;
}
@media screen and (max-width: 767px) {
  .fv__points-item img {
    width: 34px;
    height: 34px;
  }
}
.fv__points-item span {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: #e8630a;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .fv__points-item span {
    font-size: 1.35rem;
  }
}
.fv__points-note {
  color: #e8630a;
  font-size: 1rem;
  font-style: normal;
}
.fv__annotation {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 28px;
}
.fv__actions {
  display: flex;
  align-items: end;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .fv__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
}
.fv__cta {
  width: 300px;
  height: 72px;
  border-radius: 999px;
  padding: 0 40px;
  font-size: 1.8rem;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .fv__cta {
    width: 100%;
    margin-top: 26px;
  }
}
.fv__cta-badge {
  left: 50%;
  padding: 5px 16px;
  font-size: 1.2rem;
  transform: translate(-50%, -50%);
}
.fv__cta-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fv__cta-arrow {
  font-size: 1rem;
}
.fv__tel {
  gap: 12px;
  width: 300px;
  height: 72px;
  padding: 0 24px 0 10px;
}
@media screen and (max-width: 767px) {
  .fv__tel {
    width: 100%;
  }
}
.fv__tel-icon {
  width: 35px;
  height: 35px;
}
.fv__tel-icon img {
  width: 100%;
  height: 100%;
}
.fv__tel-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.fv__tel-number {
  font-size: 2.8rem;
}
.fv__tel-time {
  font-size: 1.15rem;
}

.introduction {
  position: relative;
  background: #faf8f4;
  padding: 100px 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .introduction {
    padding: 60px 0;
  }
}
.introduction__inner {
  position: relative;
  padding-left: max(40px, (100% - 1400px) / 2 + 40px);
}
@media screen and (max-width: 767px) {
  .introduction__inner {
    padding: 0 20px;
  }
}
.introduction__decoration {
  position: absolute;
  right: -20px;
  bottom: -100px;
  z-index: 2;
  width: 180px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .introduction__decoration {
    width: 100px;
    bottom: -20px;
  }
}
.introduction__box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 56px;
  background: #fff;
  border-radius: 32px;
  padding-inline: 38px;
}
@media screen and (max-width: 767px) {
  .introduction__box {
    flex-direction: column;
    gap: 28px;
    padding: 28px 20px;
    border-radius: 20px;
  }
}
.introduction__line {
  position: absolute;
  top: -70px;
  left: 56%;
  width: 1px;
  height: 140px;
  background: #352815;
}
@media screen and (max-width: 767px) {
  .introduction__line {
    display: none;
  }
}
.introduction__line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 8px;
  height: 8px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #352815;
}
.introduction__media {
  flex: 0 0 45%;
}
@media screen and (max-width: 767px) {
  .introduction__media {
    flex: none;
    width: 100%;
  }
}
.introduction__media img {
  display: block;
  width: 100%;
  height: auto;
}
.introduction__content {
  flex: 1;
}
.introduction__title {
  margin-bottom: 32px;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.6;
  color: #352815;
}
@media screen and (max-width: 767px) {
  .introduction__title {
    margin-bottom: 16px;
    font-size: 2rem;
  }
}
.introduction__text {
  margin-bottom: 20px;
  font-size: 1.5rem;
  line-height: 1.9;
  color: #352815;
}
@media screen and (max-width: 767px) {
  .introduction__text {
    font-size: 1.4rem;
  }
}
.introduction__text:last-child {
  margin-bottom: 0;
}
.introduction__text--bold {
  font-weight: 700;
}

.worries {
  position: relative;
  background: linear-gradient(to right, #c2e9ff, #e4f7ff);
}
.worries__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 80px 40px;
}
@media screen and (max-width: 767px) {
  .worries__inner {
    padding: 50px 20px;
  }
}
.worries__heading {
  margin-bottom: 60px;
  text-align: center;
}
.worries__eyebrow {
  margin-bottom: 4px;
  font-family: "Dancing Script", cursive;
  font-size: 2.8rem;
  font-weight: 700;
  color: #352815;
}
.worries__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #352815;
}
@media screen and (max-width: 767px) {
  .worries__title {
    font-size: 1.9rem;
  }
}
.worries__list {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .worries__list {
    flex-direction: column;
    gap: 60px;
  }
}
.worries__item {
  position: relative;
  flex: 1;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .worries__item {
    margin-bottom: 100px;
  }
}
.worries__item--green {
  --accent: #95c78f;
}
.worries__item--blue {
  --accent: #8fc2e9;
}
.worries__media {
  width: 50%;
  border-radius: 16px;
  overflow: hidden;
  transform: rotate(-4deg);
}
@media screen and (max-width: 767px) {
  .worries__media {
    width: 72%;
  }
}
.worries__media img {
  display: block;
  width: 100%;
  height: auto;
}
.worries__card {
  position: absolute;
  right: -20px;
  bottom: 0;
  z-index: 1;
  width: 60%;
  min-width: 320px;
  padding: 18px 26px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(53, 40, 21, 0.12);
  border-bottom: 5px solid var(--accent, #95c78f);
}
@media screen and (max-width: 767px) {
  .worries__card {
    right: 0;
    bottom: -110px;
    width: 82%;
    min-width: 0;
    padding: 16px 18px;
  }
}
.worries__card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.worries__card-icon {
  width: 40px;
  height: 40px;
}
.worries__card-title {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
  color: #352815;
}
@media screen and (max-width: 767px) {
  .worries__card-title {
    font-size: 1.6rem;
  }
}
.worries__card-divider {
  display: block;
  height: 1px;
  margin-bottom: 20px;
  background-image: linear-gradient(to right, var(--accent, #95c78f) 50%, transparent 0%);
  background-position: bottom;
  background-size: 8px 1px;
  background-repeat: repeat-x;
}
.worries__card-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 14px;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #352815;
}
@media screen and (max-width: 767px) {
  .worries__card-list li {
    font-size: 1.3rem;
  }
}
.worries__card-list li:last-child {
  margin-bottom: 0;
}
.worries__card-list mark {
  color: inherit;
  font-weight: 700;
  background: linear-gradient(to top, #fffa00 35%, transparent 35%);
}
.worries__check {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  margin-top: 2px;
  margin-right: 10px;
  background: var(--accent, #95c78f);
  color: #fff;
  font-size: 1.6rem;
  line-height: 1;
  border-radius: 50%;
}
.worries__footer {
  padding: 28px 20px;
  background: #352815;
  text-align: center;
}
.worries__footer-dots {
  display: inline-block;
  width: 70px;
  height: 4px;
  margin-bottom: 14px;
  background-image: radial-gradient(circle, #ffbf00 1.5px, transparent 1.5px);
  background-repeat: repeat-x;
  background-size: 14px 4px;
}
.worries__footer-text {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .worries__footer-text {
    font-size: clamp(1.8rem, 5vw, 2.2rem);
    line-height: 2;
  }
}
.worries__highlight-wrap {
  color: #ffbf00;
  font-weight: 700;
}
.worries__kenten {
  display: inline-flex;
}
.worries__kenten span {
  position: relative;
}
.worries__kenten span::before {
  content: "";
  position: absolute;
  top: -0.25em;
  left: 50%;
  width: 4px;
  height: 4px;
  background: #ffbf00;
  border-radius: 50%;
  transform: translateX(-50%);
}

.service {
  position: relative;
  overflow: hidden;
  background: #faf8f4;
}
.service__bg {
  position: absolute;
  top: 0;
  z-index: 0;
  width: 42%;
  height: auto;
  pointer-events: none;
}
.service__bg--left {
  left: 0;
}
@media screen and (max-width: 767px) {
  .service__bg--left {
    width: 110%;
    opacity: 0.35;
  }
}
.service__bg--right {
  right: 0;
}
.service__decoration {
  position: absolute;
  z-index: 1;
  pointer-events: none;
}
.service__decoration--yellow {
  top: 38%;
  right: -60px;
  width: 220px;
}
@media screen and (max-width: 767px) {
  .service__decoration--yellow {
    top: 22%;
    right: 0px;
    width: 120px;
  }
}
.service__decoration--blue {
  right: -70px;
  bottom: -90px;
  width: 300px;
}
@media screen and (max-width: 767px) {
  .service__decoration--blue {
    right: -20px;
    width: 200px;
  }
}
.service__decoration--green {
  bottom: -60px;
  left: -70px;
  width: 240px;
}
@media screen and (max-width: 767px) {
  .service__decoration--green {
    bottom: 1070px;
    left: 0px;
    width: 100px;
  }
}
.service__inner {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 130px 40px 120px;
}
@media screen and (max-width: 767px) {
  .service__inner {
    padding: 90px 20px 70px;
  }
}
.service__heading {
  margin-bottom: 70px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service__heading {
    margin-bottom: 40px;
  }
}
.service__eyebrow {
  margin-bottom: 4px;
  font-family: "Dancing Script", cursive;
  font-size: 2.6rem;
  font-weight: 700;
  color: #352815;
}
@media screen and (max-width: 767px) {
  .service__eyebrow {
    font-size: 2rem;
  }
}
.service__title {
  margin-bottom: 24px;
  font-size: 3.2rem;
  font-weight: 700;
  color: #352815;
}
@media screen and (max-width: 767px) {
  .service__title {
    font-size: 2.1rem;
  }
}
.service__lead {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #352815;
}
@media screen and (max-width: 767px) {
  .service__lead {
    font-size: 1.3rem;
  }
}
.service__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 48px;
}
@media screen and (max-width: 767px) {
  .service__list {
    grid-template-columns: 1fr;
    gap: 38px;
  }
}
.service__item {
  text-align: center;
}
.service__item-title {
  margin-bottom: 20px;
  font-size: 2.1rem;
  font-weight: 700;
  color: #352815;
}
@media screen and (max-width: 767px) {
  .service__item-title {
    margin-bottom: 10px;
  }
}
.service__item-media {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .service__item-media {
    margin-bottom: 10px;
  }
}
.service__item-media img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .service__item-media img {
    height: 220px;
  }
}
.service__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .service__tags {
    gap: 5px;
    margin-bottom: 10px;
  }
}
.service__tags li {
  padding: 8px 18px;
  background: #352815;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 999px;
}
.service__item-text {
  font-size: 1.4rem;
  line-height: 1.9;
  color: #352815;
  text-align: left;
}

.flow {
  position: relative;
  background: #ffe0a3;
}
.flow__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 100px 40px 90px;
}
@media screen and (max-width: 767px) {
  .flow__inner {
    padding: 60px 20px 50px;
  }
}
.flow__heading {
  margin-bottom: 70px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow__heading {
    margin-bottom: 40px;
  }
}
.flow__eyebrow {
  margin-bottom: 4px;
  font-family: "Dancing Script", cursive;
  font-size: 2.4rem;
  font-weight: 700;
  color: #352815;
}
@media screen and (max-width: 767px) {
  .flow__eyebrow {
    font-size: 2rem;
  }
}
.flow__title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #352815;
}
@media screen and (max-width: 767px) {
  .flow__title {
    font-size: 2.1rem;
  }
}
.flow__list {
  display: flex;
  justify-content: center;
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .flow__list {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}
.flow__item {
  flex: 1;
  max-width: 260px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow__item {
    max-width: 280px;
    width: 100%;
  }
}
.flow__media {
  position: relative;
  width: 220px;
  height: 220px;
  margin: 0 auto 28px;
}
@media screen and (max-width: 767px) {
  .flow__media {
    margin-bottom: 16px;
  }
}
.flow__number {
  position: absolute;
  top: -10px;
  left: 50%;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #ff9000;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  box-shadow: 0 6px 12px rgba(53, 40, 21, 0.25);
}
.flow__circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 24px 40px rgba(53, 40, 21, 0.28);
}
.flow__circle img {
  width: 100%;
  height: auto;
}
.flow__item-title {
  margin-bottom: 12px;
  font-size: 1.9rem;
  font-weight: 700;
  color: #352815;
}
@media screen and (max-width: 767px) {
  .flow__item-title {
    margin-bottom: 6px;
  }
}
.flow__item-text {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #352815;
}
.flow__footer {
  background: #ff9000;
  padding: 28px 0;
}
.flow__footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .flow__footer-inner {
    flex-direction: column;
    padding: 0 20px;
  }
}
.flow__footer-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .flow__footer-contact {
    flex-direction: column;
    width: 100%;
  }
}
.flow__footer-badge {
  padding: 12px 22px;
  background: #fff;
  color: #ff9000;
  font-size: 1.4rem;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 999px;
}
.flow__footer-tel {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}
.flow__footer-tel-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}
.flow__footer-tel-icon img {
  width: 100%;
  height: 100%;
}
.flow__footer-tel-text {
  line-height: 1.3;
  display: flex;
  flex-direction: column;
}
.flow__footer-tel-number {
  font-size: 4.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .flow__footer-tel-number {
    font-size: clamp(3.2rem, 9vw, 4.6rem);
  }
}
.flow__footer-tel-time {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .flow__footer-tel-time {
    font-size: clamp(1.3rem, 3vw, 1.8rem);
  }
}
.flow__footer-divider {
  width: 1px;
  height: 60px;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 50%, transparent 0%);
  background-repeat: repeat-y;
  background-size: 1px 8px;
}
@media screen and (max-width: 767px) {
  .flow__footer-divider {
    display: none;
  }
}
.flow__footer-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 28px;
  background: #fff;
  color: #352815;
  border-radius: 999px;
}
@media screen and (max-width: 767px) {
  .flow__footer-cta {
    width: 100%;
    justify-content: center;
  }
}
.flow__footer-cta-text {
  font-size: 1.4rem;
  line-height: 1.6;
  text-align: left;
}
.flow__footer-cta-text strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}
.flow__footer-cta-arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #ff9000;
  color: #fff;
  font-size: 1.1rem;
  border-radius: 50%;
}

.price {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 100px 0 120px;
}
@media screen and (max-width: 767px) {
  .price {
    padding: 60px 0 70px;
  }
}
.price__bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}
.price__inner {
  position: relative;
  z-index: 1;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .price__inner {
    padding: 0 20px;
  }
}
.price__inner::after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: -26px;
  left: 40px;
  z-index: 0;
  height: 72px;
  background: linear-gradient(to right, rgba(255, 144, 0, 0) 0%, rgba(255, 144, 0, 0.85) 55%, rgba(255, 144, 0, 0.95) 100%);
  border-radius: 50%;
  filter: blur(18px);
}
.price__card {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: #fff;
  border-radius: 14px;
}
.price__card-head {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 26px 40px;
  background: #ff9000;
}
@media screen and (max-width: 767px) {
  .price__card-head {
    padding: 18px 20px;
  }
}
.price__card-head-dots {
  flex: 1;
  height: 1px;
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.8) 50%, transparent 0%);
  background-position: center;
  background-repeat: repeat-x;
  background-size: 8px 1px;
}
.price__card-title {
  flex-shrink: 0;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .price__card-title {
    font-size: 1.8rem;
  }
}
.price__card-body {
  padding: 44px 56px 40px;
  border: 1px solid #ff9000;
  border-radius: 0 0 14px 14px;
}
@media screen and (max-width: 767px) {
  .price__card-body {
    padding: 24px 16px 30px;
  }
}
.price__lead {
  margin-bottom: 22px;
  color: #352815;
  font-size: 1.5rem;
  line-height: 1.9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .price__lead {
    font-size: 1.3rem;
  }
}
.price__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #ff9000;
}
@media screen and (max-width: 767px) {
  .price__table {
    display: block;
    border: none;
  }
}
@media screen and (max-width: 767px) {
  .price__table tbody {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .price__table tr {
    display: block;
    margin-bottom: 12px;
    border: 1px solid #ff9000;
    border-radius: 6px;
    overflow: hidden;
  }
  .price__table tr:last-child {
    margin-bottom: 0;
  }
}
.price__table th,
.price__table td {
  padding: 18px 24px;
  border: 1px solid #ff9000;
  font-weight: 400;
  text-align: left;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .price__table th,
  .price__table td {
    display: block;
    width: auto;
    padding: 12px 16px;
    border: none;
  }
}
.price__table th {
  width: 260px;
  background: #ffe9ce;
  color: #352815;
  font-size: 1.75rem;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .price__table th {
    width: auto;
    font-size: 1.4rem;
  }
}
.price__table th img {
  width: 36px;
  height: 36px;
  margin-right: 10px;
  vertical-align: middle;
  background-color: #fff;
  border-radius: 50%;
  padding: 5px;
}
@media screen and (max-width: 767px) {
  .price__table th img {
    width: 28px;
    height: 28px;
  }
}
.price__table td {
  color: #352815;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .price__table td {
    font-size: 1.3rem;
  }
}
.price__table td strong {
  color: #da5b00;
  font-size: 3rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .price__table td strong {
    font-size: 2.2rem;
  }
}
.price__note {
  margin-left: 4px;
  color: #666;
  font-size: 1.2rem;
}
.price__annotation {
  margin-top: 20px;
  color: #666;
  font-size: 1.2rem;
  text-align: right;
}

.document {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 90px 0 120px;
}
@media screen and (max-width: 767px) {
  .document {
    padding: 60px 0 70px;
  }
}
.document__decoration {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}
.document__decoration--blue {
  top: 90px;
  right: 80px;
  width: 200px;
}
@media screen and (max-width: 767px) {
  .document__decoration--blue {
    top: auto;
    right: auto;
    bottom: 10px;
    left: -10px;
    width: 90px;
  }
}
.document__decoration--green {
  bottom: 30px;
  left: 20px;
  width: 220px;
}
@media screen and (max-width: 767px) {
  .document__decoration--green {
    bottom: auto;
    left: auto;
    right: -30px;
    top: 130px;
    width: 130px;
  }
}
.document__inner {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .document__inner {
    padding: 0 20px;
  }
}
.document__heading {
  margin-bottom: 44px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .document__heading {
    margin-bottom: 30px;
  }
}
.document__badge {
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
  padding: 8px 22px;
  background: #78a074;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 999px;
}
.document__badge::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: #78a074;
  transform: translateX(-50%) rotate(45deg);
  border-radius: 0 0 3px;
}
.document__title {
  font-size: 3rem;
  font-weight: 700;
  color: #352815;
}
@media screen and (max-width: 767px) {
  .document__title {
    font-size: 2.1rem;
  }
}
.document__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .document__list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.document__card {
  padding: 16px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(53, 40, 21, 0.08);
}
.document__card-inner {
  display: flex;
  gap: 24px;
  padding: 20px;
  border-radius: 16px;
}
@media screen and (max-width: 767px) {
  .document__card-inner {
    flex-direction: column;
    gap: 0;
  }
}
.document__card-inner--green {
  background: #f3ffe6;
}
.document__card-inner--blue {
  background: #f3f7ff;
}
.document__card-media {
  display: flex;
  flex: 0 0 38%;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .document__card-media {
    flex: none;
    width: 60%;
    max-width: 220px;
    margin: 0 auto;
  }
}
.document__card-media img {
  width: 100%;
  height: auto;
  box-shadow: 0 12px 24px rgba(53, 40, 21, 0.18);
  border-radius: 4px;
}
.document__card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  text-align: center;
}
.document__card-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .document__card-icon {
    margin-bottom: 6px;
  }
}
.document__card-title {
  margin-bottom: 12px;
  font-size: 2rem;
  font-weight: 700;
  color: #352815;
}
@media screen and (max-width: 767px) {
  .document__card-title {
    margin-bottom: 6px;
  }
}
.document__card-text {
  margin-bottom: 20px;
  font-size: 1.4rem;
  line-height: 1.8;
  color: #352815;
}
.document__card-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding: 14px 28px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
  border-radius: 999px;
}
.document__card-btn img {
  width: 16px;
  height: 16px;
}
.document__card-btn--green {
  background: #78a074;
  box-shadow: 0 8px 16px rgba(120, 160, 116, 0.5);
}
.document__card-btn--blue {
  background: #5b9dd1;
  box-shadow: 0 8px 16px rgba(91, 157, 209, 0.5);
}

.faq {
  position: relative;
  background: #fff;
  padding: 100px 0 120px;
}
@media screen and (max-width: 767px) {
  .faq {
    padding: 60px 0 70px;
  }
}
.faq__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .faq__inner {
    padding: 0 20px;
  }
}
.faq__heading {
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .faq__heading {
    margin-bottom: 30px;
  }
}
.faq__eyebrow {
  margin-bottom: 4px;
  font-family: "Dancing Script", cursive;
  font-size: 2.4rem;
  font-weight: 700;
  color: #352815;
}
@media screen and (max-width: 767px) {
  .faq__eyebrow {
    font-size: 2rem;
  }
}
.faq__title {
  font-size: 3rem;
  font-weight: 700;
  color: #352815;
}
@media screen and (max-width: 767px) {
  .faq__title {
    font-size: 2.1rem;
  }
}
.faq__card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(53, 40, 21, 0.08);
  padding: 50px 60px;
}
@media screen and (max-width: 767px) {
  .faq__card {
    padding: 28px 20px;
    border-radius: 16px;
  }
}
.faq__item {
  margin-bottom: 36px;
}
.faq__item:last-child {
  margin-bottom: 0;
}
.faq__question {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding: 16px 24px;
  background: #ffe9ce;
  color: #352815;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 12px;
}
@media screen and (max-width: 767px) {
  .faq__question {
    padding: 12px 16px;
    font-size: 1.4rem;
  }
}
.faq__q {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #ff9000;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  border-radius: 50%;
}
.faq__answer {
  padding: 0 24px;
  color: #352815;
  font-size: 1.4rem;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .faq__answer {
    padding: 0 4px;
    font-size: 1.3rem;
  }
}

.message {
  position: relative;
  background: #faf8f4;
  padding: 90px 0 60px;
}
@media screen and (max-width: 767px) {
  .message {
    padding: 60px 0 40px;
  }
}
.message__bg {
  position: absolute;
  top: 0;
  z-index: 0;
  width: 44%;
  height: auto;
  pointer-events: none;
}
.message__bg--left {
  left: 0;
  width: 420px;
}
.message__bg--right {
  right: 0;
  width: 760px;
}
@media screen and (max-width: 767px) {
  .message__bg {
    display: none;
  }
}
.message__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .message__inner {
    flex-direction: column;
    gap: 32px;
    padding: 0 20px;
  }
}
.message__content {
  flex: 1;
}
.message__eyebrow {
  margin-bottom: 4px;
  font-family: "Dancing Script", cursive;
  font-size: 2rem;
  font-weight: 700;
  color: #352815;
}
.message__title {
  margin-bottom: 24px;
  font-size: 3rem;
  font-weight: 700;
  color: #352815;
}
@media screen and (max-width: 767px) {
  .message__title {
    font-size: 2.1rem;
    margin-bottom: 16px;
  }
}
.message__catch {
  margin-bottom: 28px;
  color: #e8630a;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .message__catch {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
.message__text p {
  margin-bottom: 24px;
  color: #352815;
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .message__text p {
    font-size: 1.3rem;
  }
}
.message__text p:last-child {
  margin-bottom: 0;
}
.message__profile {
  position: relative;
  flex: 0 0 300px;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .message__profile {
    flex: none;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
}
.message__photo {
  overflow: hidden;
  border-radius: 16px;
}
.message__photo img {
  display: block;
  width: 100%;
  height: auto;
}
.message__nameplate {
  position: absolute;
  left: 14px;
  bottom: 16px;
}
.message__company {
  display: inline-block;
  padding: 6px 16px;
  background: #fff;
  color: #352815;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 -4px 10px rgba(53, 40, 21, 0.08);
  margin-bottom: 5px;
}
.message__name {
  display: inline-block;
  padding: 3px 16px;
  background: #fff;
  color: #352815;
  text-align: center;
  font-family: "Yomogi", cursive;
  font-size: 2.6rem;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(53, 40, 21, 0.15);
}

.footer {
  position: relative;
  background: #faf8f4;
}
.footer__top {
  position: relative;
  height: 110px;
  background: #faf8f4;
}
@media screen and (max-width: 767px) {
  .footer__top {
    height: 60px;
  }
}
.footer__wave {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
.footer__wave path {
  fill: #fff2dc;
}
.footer__body {
  background: #fff2dc;
}
.footer__body-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px 40px 60px;
}
@media screen and (max-width: 767px) {
  .footer__body-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 28px;
    padding: 20px 20px 50px;
  }
}
.footer__logo {
  flex-shrink: 0;
}
.footer__logo img {
  display: block;
  height: 40px;
  width: auto;
}
.footer__info {
  flex: 1;
  min-width: 320px;
}
.footer__info li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  color: #352815;
  font-size: 1.4rem;
  border-bottom: 1px dashed #ff9000;
}
.footer__info li:first-child {
  padding-top: 0;
}
.footer__info li img {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.footer__cta {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .footer__cta {
    align-items: stretch;
    margin-top: 12px;
  }
}
.footer__btn {
  width: 300px;
  padding: 16px 36px;
  font-size: 1.7rem;
  border-radius: 999px;
}
@media screen and (max-width: 767px) {
  .footer__btn {
    width: 100%;
  }
}
.footer__btn-badge {
  left: 50%;
  padding: 5px 16px;
  font-size: 1.1rem;
  transform: translate(-50%, -50%);
}
.footer__btn-arrow {
  font-size: 1rem;
}
.footer__tel {
  gap: 10px;
  width: 300px;
  padding: 8px 20px 8px 8px;
}
@media screen and (max-width: 767px) {
  .footer__tel {
    width: 100%;
  }
}
.footer__tel-icon {
  width: 36px;
  height: 36px;
}
.footer__tel-icon img {
  width: 16px;
  height: 16px;
}
.footer__tel-text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.footer__tel-number {
  font-size: 1.9rem;
}
.footer__tel-time {
  font-size: 1.1rem;
}
.footer__nav {
  background: #352815;
}
.footer__nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 26px 40px;
}
@media screen and (max-width: 767px) {
  .footer__nav ul {
    padding: 20px;
  }
}
.footer__nav li {
  position: relative;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  .footer__nav li {
    padding: 6px 12px;
  }
}
.footer__nav li:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .footer__nav li:not(:first-child)::before {
    display: none;
  }
}
.footer__nav a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .footer__nav a {
    font-size: 1.3rem;
  }
}
.footer__copyright {
  background: #352815;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.1rem;
  text-align: center;
  padding: 0 0 24px;
}

.contact {
  position: relative;
  background: #faf8f4;
  padding: 100px 0 120px;
}
@media screen and (max-width: 767px) {
  .contact {
    padding: 60px 0 70px;
  }
}
.contact__inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .contact__inner {
    padding: 0 20px;
  }
}
.contact__heading {
  margin-bottom: 40px;
  text-align: center;
}
.contact__eyebrow {
  margin-bottom: 4px;
  font-family: "Dancing Script", cursive;
  font-size: 2.4rem;
  font-weight: 700;
  color: #352815;
}
.contact__title {
  margin-bottom: 20px;
  font-size: 3rem;
  font-weight: 700;
  color: #352815;
}
@media screen and (max-width: 767px) {
  .contact__title {
    font-size: 2.1rem;
  }
}
.contact__lead {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #352815;
}
@media screen and (max-width: 767px) {
  .contact__lead {
    font-size: 1.3rem;
  }
}
.contact__steps {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .contact__steps {
    gap: 16px;
    margin-bottom: 30px;
  }
}
.contact__step {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .contact__step {
    font-size: 1.2rem;
  }
}
.contact__step span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #ddd;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 50%;
}
.contact__step.is-current, .contact__step.is-done {
  color: #e8630a;
}
.contact__step.is-current span, .contact__step.is-done span {
  background: #e8630a;
}
.contact__form {
  background: #fff;
  border-radius: 24px;
  padding: 50px 60px;
  box-shadow: 0 20px 50px rgba(53, 40, 21, 0.08);
}
@media screen and (max-width: 767px) {
  .contact__form {
    padding: 28px 20px;
    border-radius: 16px;
  }
}
.contact__row {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(53, 40, 21, 0.08);
}
@media screen and (max-width: 767px) {
  .contact__row {
    flex-direction: column;
    gap: 10px;
    padding: 18px 0;
  }
}
.contact__row:first-child {
  padding-top: 0;
}
.contact__row:last-of-type {
  border-bottom: none;
}
.contact__label {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #352815;
  font-size: 1.5rem;
  font-weight: 700;
}
.contact__badge {
  padding: 2px 10px;
  background: #e8630a;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  border-radius: 4px;
}
.contact__badge--any {
  background: #999;
}
.contact__field {
  flex: 1;
}
.contact__field input[type=text],
.contact__field input[type=email],
.contact__field input[type=tel],
.contact__field textarea {
  width: 100%;
  padding: 14px 16px;
  background: #fff;
  color: #352815;
  font-size: 1.5rem;
  font-family: inherit;
  border: 1px solid #ddd;
  border-radius: 8px;
}
.contact__field input[type=text]:focus,
.contact__field input[type=email]:focus,
.contact__field input[type=tel]:focus,
.contact__field textarea:focus {
  border-color: #e8630a;
  outline: none;
}
.contact__field input[type=text][aria-invalid=true],
.contact__field input[type=email][aria-invalid=true],
.contact__field input[type=tel][aria-invalid=true],
.contact__field textarea[aria-invalid=true] {
  border-color: #d32f2f;
}
.contact__field textarea {
  min-height: 140px;
  resize: vertical;
}
.contact__error {
  margin-top: 6px;
  color: #d32f2f;
  font-size: 1.3rem;
}
.contact__actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .contact__actions {
    flex-direction: column;
  }
}
.contact__submit-arrow {
  font-size: 1rem;
}
.contact__submit {
  min-width: 260px;
  padding: 0 40px;
  height: 64px;
  font-size: 1.7rem;
  border-radius: 999px;
}
@media screen and (max-width: 767px) {
  .contact__submit {
    min-width: 0;
    width: 100%;
  }
}
.contact__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  height: 64px;
  padding: 0 40px;
  background: #fff;
  color: #352815;
  font-size: 1.6rem;
  font-weight: 700;
  border: 1px solid #352815;
  border-radius: 999px;
}
@media screen and (max-width: 767px) {
  .contact__back {
    min-width: 0;
    width: 100%;
  }
}
.contact__value {
  padding: 4px 0;
  color: #352815;
  font-size: 1.5rem;
  line-height: 1.8;
  white-space: pre-wrap;
}
.contact__thanks {
  padding: 40px 0;
  text-align: center;
}
.contact__thanks-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: #e8630a;
  color: #fff;
  font-size: 3.2rem;
  border-radius: 50%;
}
.contact__thanks-text {
  margin-bottom: 40px;
  color: #352815;
  font-size: 1.5rem;
  line-height: 1.9;
}
.contact__home {
  display: inline-flex;
  min-width: 260px;
  padding: 0 40px;
  height: 64px;
  font-size: 1.6rem;
  border-radius: 999px;
}
