@charset "UTF-8";

/* ============================================
   Reset & Base
   ============================================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #333;
  background-color: #faf7f5;
}

main,
.footer {
  overflow-x: hidden;
}

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

ul, ol {
  list-style: none;
}

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

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

/* ============================================
   SP Fixed Bar (mobile only)
   ============================================ */
.sp-fixed-bar {
  display: none;
}

/* ============================================
   Header
   ============================================ */
.header {
  background: #fffbfa;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 6px rgba(0,0,0,0.04);
  overflow-x: hidden;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 92px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0;
  position: relative;
}

.header-logo img {
  width: 102px;
  height: auto;
  margin-right: -85px;
  position: relative;
  z-index: 0;
}

.header-logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  position: relative;
  z-index: 1;
}

.header-logo-text .sub {
  font-size: 1.5rem;
  font-weight: bold;
  color: #5c4b48;
  letter-spacing: 0.06em;
  line-height: 1;
}

.header-logo-text .main {
  font-size: 3.0rem;
  color: #5c4b48;
  letter-spacing: 0.18em;
  font-weight: bold;
  line-height: 1;
}

.header-contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-phone {
  text-align: right;
}

.header-phone .freedial {
  font-size: 1.5rem;
  font-weight: bold;
  color: #5c4b48;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
  line-height: 1;
}

.header-phone .number {
  font-size: 3.6rem;
  font-weight: bold;
  color: #de7a7d;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
}

.header-phone .number img {
  width: 27px;
  height: auto;
}

.header-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 5px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #fef3f3;
  line-height: 1.6;
  transition: opacity 0.3s;
  white-space: nowrap;
  height: 46px;
}

.header-btn:hover {
  opacity: 0.85;
}

.header-btn.urgent {
  background: #c51812;
}

.header-btn.mail {
  background: #a3a05b;
  border: none;
}

.header-btn img {
  height: auto;
}

/* Navigation */
.header-nav {
  border-top: 3px solid #e5dbda;
  background: #faf5f1;
}

.header-nav ul {
  display: flex;
}

.header-nav li {
  flex: 1;
  text-align: center;
  position: relative;
}

.header-nav li + li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 52px;
  background: #e3dbd8;
}

.header-nav li:first-child::after {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 52px;
  background: #e3dbd8;
}

.header-nav li:last-child::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 52px;
  background: #e3dbd8;
}

.header-nav li a {
  display: block;
  padding: 33px 10px 33px;
  font-size: 1.5rem;
  color: #5c4b48;
  line-height: 1;
  transition: background 0.3s, color 0.3s;
  letter-spacing: 0.1em;
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}

.header-nav li a:hover {
  background: rgba(0,0,0,0.02);
  color: #8b2d2d;
}

.header-nav li a.active::after {
  content: '';
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  width: 170px;
  height: 8px;
  background: #de7a7c;
}

/* ============================================
   Footer
   ============================================ */
.footer {
  background: #fffbfb;
  padding: 62px 0 30px;
}

.footer > .inner > dl {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 82px;
}

/* Logo */
.footer > .inner > dl > dt > a {
  display: block;
  position: relative;
  padding-left: 34px;
}

.footer > .inner > dl > dt > a > img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 87px;
}

.footer > .inner > dl > dt > a > p:first-of-type {
  font-size: 0.8rem;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
  margin-bottom: 1px;
  position: relative;
  z-index: 1;
}

.footer > .inner > dl > dt > a > p:last-of-type {
  font-size: 2.3rem;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
  position: relative;
  z-index: 1;
}

/* Nav + Contact */
.footer > .inner > dl > dd > dl {
  display: flex;
  align-items: flex-start;
}

.footer > .inner > dl > dd > dl > dt {
  margin-right: 60px;
}

.footer > .inner > dl > dd > dl > dd {
  margin-right: 40px;
}

/* Nav column 1 */
.footer > .inner > dl > dd > dl > dt ul {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 150px;
}

.footer > .inner > dl > dd > dl > dt li a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
}

/* Nav column 2 */
.footer > .inner > dl > dd > dl > dd > a {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  color: #5c4b48;
  line-height: 2;
}

.footer > .inner > dl > dd > dl > dd li a {
  font-size: 1.5rem;
  font-weight: bold;
  color: #5c4b48;
  line-height: 2;
  white-space: nowrap;
}

.footer > .inner > dl > dd > dl > dd li a::before {
  content: '▶';
  margin-right: 2px;
}

/* Contact */
.footer > .inner > dl > dd > dl > div {
  text-align: center;
}

.footer > .inner > dl > dd > dl > div > p:first-of-type {
  font-size: 1.5rem;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
  margin-bottom: 16px;
}

.footer > .inner > dl > dd > dl > div > p:nth-of-type(2) {
  font-size: 1.5rem;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
  margin-bottom: 7px;
}

.footer > .inner > dl > dd > dl > div > a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 14px;
}

.footer > .inner > dl > dd > dl > div > a > img {
  width: 30px;
}

.footer > .inner > dl > dd > dl > div > a > p {
  font-size: 4.3rem;
  font-weight: bold;
  color: #de7a7d;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}

.footer > .inner > dl > dd > dl > div > ul {
  display: flex;
  gap: 11px;
  justify-content: center;
}

.footer > .inner > dl > dd > dl > div > ul a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 20px;
  border-radius: 5px;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.footer > .inner > dl > dd > dl > div > ul a:hover {
  opacity: 0.85;
}

.footer > .inner > dl > dd > dl > div > ul li:first-child a {
  background: #c51813;
  color: #fef3f3;
}

.footer > .inner > dl > dd > dl > div > ul li:last-child a {
  background: #a2a05b;
  color: #fef3f3;
}

/* Copyright */
.footer__copy {
  text-align: center;
  font-size: 1.4rem;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
  padding-bottom: 15px;
  border-bottom: 2px solid #ffffff;
}

/* ============================================
   Top - Main Visual
   ============================================ */
.top__mainvis {
  position: relative;
  background: url("hero_bg.png") no-repeat center top / auto 742px;
  padding: 106px 0 0;
  overflow: hidden;
}

/* Flower decorations */
.top__mainvis::before {
  content: '';
  position: absolute;
  left: -30px;
  top: 380px;
  width: 140px;
  height: 139px;
  background: url("flower_deco1.png") no-repeat center / contain;
  z-index: 2;
  pointer-events: none;
}

.top__mainvis::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 450px;
  width: 140px;
  height: 139px;
  background: url("flower_deco2.png") no-repeat center / contain;
  z-index: 2;
  pointer-events: none;
}

.top__mainvis .inner {
  position: relative;
  z-index: 1;
}

/* Flower decorations on features area */
.top__mainvis__features::before {
  content: '';
  position: absolute;
  right: -280px;
  top: -60px;
  width: 79px;
  height: 78px;
  background: url("flower_deco7.png") no-repeat center / contain;
  pointer-events: none;
}

.top__mainvis__features::after {
  content: '';
  position: absolute;
  left: -340px;
  bottom: -120px;
  width: 79px;
  height: 78px;
  background: url("flower_deco5.png") no-repeat center / contain;
  pointer-events: none;
}

/* Flower on link area */
.top__mainvis__link::before {
  content: '';
  position: absolute;
  right: -260px;
  top: -30px;
  width: 79px;
  height: 78px;
  background: url("flower_deco6.png") no-repeat center / contain;
  pointer-events: none;
}

.top__mainvis__link::after {
  content: '';
  position: absolute;
  left: -120px;
  top: 20px;
  width: 87px;
  height: 87px;
  background: url("flower_deco3.png") no-repeat center / contain;
  pointer-events: none;
}

.top__mainvis__info {
  padding-bottom: 107px;
}

.top__mainvis__title {
  font-family: "Noto Serif JP", serif;
  font-size: 3.6rem;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
  margin-left: 77px;
  margin-bottom: 46px;
}

.top__mainvis__title .accent {
  color: #db6670;
}

.top__mainvis__title .small {
  font-size: 2.5rem;
}

.top__mainvis__catch {
  display: flex;
  align-items: flex-start;
  margin-bottom: 61px;
}

.top__mainvis__catch-left {
  padding-top: 18px;
}

.top__mainvis__catch-left p {
  font-family: "Noto Serif JP", serif;
  font-size: 3.6rem;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
}

.top__mainvis__catch-left p + p {
  margin-top: 28px;
  padding-left: 34px;
}

.top__mainvis__catch-left .accent {
  color: #db6670;
}

.top__mainvis__catch-left .small {
  font-size: 2.8rem;
  color: #5c4b48;
}

.top__mainvis__catch-right {
  margin-left: 73px;
}

.top__mainvis__desc {
  font-family: "Noto Serif JP", serif;
  font-size: 2.7rem;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
  margin-top: 0;
  margin-left: 38px;
  margin-bottom: 59px;
}

.top__mainvis__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 312px;
  height: 68px;
  margin-left: 118px;
  background: #db6670;
  border-radius: 4px;
  box-shadow: 0 8px 12px rgba(62, 62, 62, 0.15);
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: bold;
  color: #fef3f3;
  line-height: 1;
  transition: opacity 0.3s;
}

.top__mainvis__btn:hover {
  opacity: 0.85;
}

/* Features */
.top__mainvis__features {
  display: flex;
  justify-content: center;
  gap: 34px;
  margin-bottom: 57px;
  position: relative;
}

.top__mainvis__features li {
  width: 265px;
  height: 151px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 12px rgba(62, 62, 62, 0.15);
  text-align: center;
  position: relative;
}

.top__mainvis__features-icon {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  box-shadow: 0 8px 12px rgba(62, 62, 62, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -26px auto 15px;
}

.top__mainvis__features-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
  margin-bottom: 24px;
}

.top__mainvis__features-detail {
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
}

.top__mainvis__features-detail.has-price {
  text-align: left;
  padding-left: 30px;
  padding-top: 7px;
}

.top__mainvis__features-price {
  position: absolute;
  top: 92px;
  left: 90px;
  width: 155px;
  height: auto;
}


/* Link (Plan) */
.top__mainvis__link {
  text-align: center;
  padding-bottom: 79px;
  position: relative;
}

.top__mainvis__link-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 12px;
}

.top__mainvis__link-title::after {
  content: '';
  display: block;
  width: 368px;
  height: 6px;
  margin: 9px auto 0;
  background: url("link_deco_line1.png") no-repeat center / contain;
}

.top__mainvis__link-sub {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: #d8645e;
  line-height: 1;
  margin-top: 0;
  margin-bottom: 14px;
}

.top__mainvis__link-sub::after {
  content: '';
  display: block;
  width: 249px;
  height: 6px;
  margin: 7px auto 0;
  background: url("link_deco_line2.png") no-repeat center / contain;
}

.top__mainvis__link-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 506px;
  height: 109px;
  margin: 0 auto;
  background: url("link_btn_bg.png") no-repeat center / cover;
  border-radius: 8px;
  box-shadow: 0 8px 12px rgba(62, 62, 62, 0.15);
  padding: 17px 0 8px;
  transition: opacity 0.3s;
}

.top__mainvis__link-btn:hover {
  opacity: 0.85;
}

.top__mainvis__link-btn-text {
  font-family: "Noto Serif JP", serif;
  font-size: 2.5rem;
  font-weight: bold;
  color: #fffbfb;
  line-height: 1;
  margin-bottom: 10px;
}

.top__mainvis__link-btn-text .num {
  font-family: "Noto Serif JP", serif;
  font-size: 4.1rem;
  font-weight: bold;
}

.top__mainvis__link-btn-more {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 286px;
  min-height: 39px;
  padding: 12px 0;
  background: #fffbfb;
  border-radius: 4px;
  box-shadow: 0 8px 12px rgba(62, 62, 62, 0.15);
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
}

.top__mainvis__link-btn-more .arrow {
  position: absolute;
  right: 26px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: auto;
}

/* ============================================
   Section 01 - 安心3ポイント・相談誘導・CTA
   ============================================ */
.top__sec01 {
  background: url("section_bg2.png") no-repeat center top / 100% auto;
  padding: 81px 0 95px;
}

/* Title */
.top__sec01__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 43px;
}

.top__sec01__title p,
.top__sec01__title h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

.top__sec01__title .accent {
  color: #de7a7d;
}

.top__sec01__title-deco.left {
  align-self: flex-start;
  margin-top: 4px;
}

.top__sec01__title-deco.right {
  align-self: flex-start;
  margin-top: 0;
}

/* Circle badges */
.top__sec01__circle {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 51px;
}

.top__sec01__circle li {
  position: relative;
  width: 198px;
  height: 198px;
}

.top__sec01__circle li img {
  display: block;
}

.top__sec01__circle li p {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.67;
  text-align: center;
  white-space: nowrap;
}

/* Description */
.top__sec01__desc {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.67;
  text-align: center;
  margin-bottom: 50px;
}

/* Checklist */
.top__sec01__list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin: 0 auto 70px;
  width: fit-content;
}

.top__sec01__list li {
  display: flex;
  align-items: center;
  gap: 15px;
}

.top__sec01__list li p {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
}

/* CTA area */
.top__sec01__cta {
  width: 670px;
  margin: 0 auto;
}

.top__sec01__cta-row {
  display: flex;
  align-items: flex-start;
}

.top__sec01__cta-left {
  width: 488px;
}

/* Balloon */
.top__sec01__balloon {
  width: 488px;
  height: 67px;
  background: url("banner_consultation.png") no-repeat center / contain;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 15px;
  box-sizing: border-box;
  margin-bottom: 25px;
}

.top__sec01__balloon p {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
}

/* CTA text */
.top__sec01__cta-text p {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.67;
}

.top__sec01__cta-text p + p {
  margin-top: 25px;
}

.top__sec01__cta-text .underline {
  text-decoration: underline;
  text-decoration-color: #a2a05b;
  text-underline-offset: 4px;
  text-decoration-thickness: 3px;
}

/* Human illustration */
.top__sec01__human {
  flex-shrink: 0;
  margin-top: 40px;
}

/* CTA bottom text */
.top__sec01__cta-bottom {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.67;
  margin-top: 27px;
}


/* ============================================
   Responsive
   ============================================ */
@media (max-width: 768px) {

  /* --- 全体 overflow 防止 --- */
  .inner {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header {
    position: static;
  }

  /* --- SP Fixed Bar --- */
  .sp-fixed-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 200;
  }

  .sp-fixed-bar__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    height: 44px;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #fff;
  }

  .sp-fixed-bar__btn--contact {
    background-color: #de7a7d;
  }

  .sp-fixed-bar__btn--tel {
    background-color: #5c4b48;
  }

  /* --- Header Top --- */
  .header-top {
    flex-direction: column;
    height: auto;
    padding: 10px 0;
    gap: 8px;
  }

  .header-logo {
    justify-content: center;
  }

  .header-logo img {
    width: 60px;
    margin-right: -50px;
  }

  .header-logo-text .sub {
    font-size: 1.0rem;
  }

  .header-logo-text .main {
    font-size: 2.0rem;
  }

  .header-contact {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .header-phone {
    text-align: center;
    width: 100%;
  }

  .header-phone .freedial {
    font-size: 1.1rem;
  }

  .header-phone .number {
    font-size: 2.4rem;
    justify-content: center;
    gap: 6px;
  }

  .header-phone .number img {
    width: 20px;
  }

  .header-btn {
    font-size: 1.2rem;
    padding: 10px 14px;
    height: 38px;
    gap: 6px;
  }

  .header-btn.urgent img {
    width: 18px;
  }

  .header-btn.mail img {
    width: 20px;
  }

  /* --- Header Nav --- */
  .header-nav .inner {
    padding-left: 0;
    padding-right: 0;
  }

  .header-nav {
    border-top-width: 2px;
  }

  .header-nav ul {
    flex-wrap: wrap;
  }

  .header-nav li {
    flex: none;
    width: 33.333%;
  }

  .header-nav li + li::before,
  .header-nav li:first-child::after,
  .header-nav li:last-child::after {
    height: 30px;
  }

  .header-nav li a {
    padding: 14px 6px;
    font-size: 1.2rem;
    letter-spacing: 0;
  }

  .header-nav li a.active::after {
    width: 80%;
    height: 4px;
    bottom: 6px;
  }

  /* --- Footer --- */
  .footer {
    padding: 30px 0 64px;
  }

  .footer > .inner > dl {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
  }

  /* Footer Logo */
  .footer > .inner > dl > dt {
    text-align: center;
    width: 100%;
  }

  .footer > .inner > dl > dt {
    text-align: center;
  }

  .footer > .inner > dl > dt > a {
    display: inline-block;
    padding-left: 10px;
    position: relative;
  }

  .footer > .inner > dl > dt > a > img {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: auto;
    z-index: 0;
  }

  .footer > .inner > dl > dt > a > p {
    position: relative;
    z-index: 1;
    text-align: left;
  }

  /* Footer Nav + Contact */
  .footer > .inner > dl > dd {
    width: 100%;
  }

  .footer > .inner > dl > dd > dl {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    text-align: center;
  }

  .footer > .inner > dl > dd > dl > dt {
    margin-right: 0;
  }

  .footer > .inner > dl > dd > dl > dt ul {
    height: auto;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 20px;
  }

  .footer > .inner > dl > dd > dl > dt li a {
    font-size: 1.4rem;
  }

  .footer > .inner > dl > dd > dl > dd {
    margin-right: 0;
    text-align: center;
  }

  .footer > .inner > dl > dd > dl > dd > a {
    display: block;
    margin-bottom: 4px;
  }

  .footer > .inner > dl > dd > dl > dd ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 12px;
  }

  .footer > .inner > dl > dd > dl > dd li {
    list-style: none;
    text-align: center;
  }

  .footer > .inner > dl > dd > dl > dd li a {
    font-size: 1.3rem;
    white-space: nowrap;
  }

  /* Footer Contact */
  .footer > .inner > dl > dd > dl > div > a > p {
    font-size: 2.6rem;
  }

  .footer > .inner > dl > dd > dl > div > a > img {
    width: 22px;
  }

  .footer > .inner > dl > dd > dl > div > ul {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .footer > .inner > dl > dd > dl > div > ul a {
    font-size: 1.3rem;
    padding: 10px 20px;
    width: 220px;
    justify-content: center;
  }

  /* Footer Copyright */
  .footer__copy {
    font-size: 1.1rem;
  }

  /* --- Top Mainvis --- */
  .top__mainvis {
    padding: 40px 0 0;
    background-size: 150% auto;
  }

  .top__mainvis::before,
  .top__mainvis::after {
    display: none;
  }

  .top__mainvis__features::before,
  .top__mainvis__features::after,
  .top__mainvis__link::before,
  .top__mainvis__link::after {
    display: none;
  }

  .top__mainvis__info {
    padding-bottom: 40px;
  }

  .top__mainvis__title {
    font-size: 2.2rem;
    margin-left: 0;
    margin-bottom: 20px;
  }

  .top__mainvis__title .small {
    font-size: 1.6rem;
  }

  .top__mainvis__catch {
    flex-direction: column;
    margin-bottom: 24px;
  }

  .top__mainvis__catch-left {
    padding-top: 0;
  }

  .top__mainvis__catch-left p {
    font-size: 2.2rem;
  }

  .top__mainvis__catch-left p + p {
    margin-top: 12px;
    padding-left: 0;
  }

  .top__mainvis__catch-left .small {
    font-size: 1.8rem;
  }

  .top__mainvis__catch-right {
    margin-left: 0;
    margin-top: 16px;
  }

  .top__mainvis__catch-right img {
    width: 200px;
  }

  .top__mainvis__desc {
    font-size: 1.5rem;
    margin-left: 0;
    margin-bottom: 24px;
  }

  .top__mainvis__btn {
    display: flex;
    width: 100%;
    height: 50px;
    margin-left: 0;
    font-size: 1.6rem;
  }

  /* 特徴カード */
  .top__mainvis__features {
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    margin-bottom: 30px;
  }

  .top__mainvis__features li {
    width: 100%;
    max-width: none;
    height: auto;
    padding: 28px 16px 16px;
  }

  .top__mainvis__features-icon {
    width: 50px;
    height: 50px;
    margin: -38px auto 10px;
  }

  .top__mainvis__features-icon img {
    width: 24px;
  }

  .top__mainvis__features-title {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }

  .top__mainvis__features-detail {
    font-size: 1.3rem;
  }

  .top__mainvis__features-detail.has-price {
    text-align: center;
    padding-left: 0;
    padding-top: 0;
  }

  .top__mainvis__features-price {
    position: static;
    display: block;
    margin: 6px auto 0;
    width: 110px;
  }

  /* プランリンク */
  .top__mainvis__link {
    padding-bottom: 40px;
  }

  .top__mainvis__link-title {
    font-size: 1.6rem;
  }

  .top__mainvis__link-title::after {
    width: 80%;
    max-width: 260px;
  }

  .top__mainvis__link-sub {
    font-size: 1.3rem;
  }

  .top__mainvis__link-sub::after {
    width: 60%;
    max-width: 180px;
  }

  .top__mainvis__link-btn {
    width: 100%;
    height: 80px;
    padding: 12px 0 8px;
  }

  .top__mainvis__link-btn-text {
    font-size: 1.6rem;
  }

  .top__mainvis__link-btn-text .num {
    font-size: 2.6rem;
  }

  .top__mainvis__link-btn-more {
    width: 80%;
    max-width: 220px;
    min-height: 32px;
    font-size: 1.2rem;
    padding: 8px 0;
  }

  .top__mainvis__link-btn-more .arrow {
    right: 14px;
  }

  /* ===== Section 01 ===== */
  .top__sec01 {
    padding: 40px 0 50px;
  }

  .top__sec01__title {
    gap: 10px;
    margin-bottom: 24px;
  }

  .top__sec01__title p,
.top__sec01__title h2 {
    font-size: 20px;
  }

  .top__sec01__title-deco.left {
    width: 40px;
  }

  .top__sec01__title-deco.right {
    width: 32px;
  }

  /* 円バッジ */
  .top__sec01__circle {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
  }

  .top__sec01__circle li {
    width: 100px;
    height: 100px;
  }

  .top__sec01__circle li img {
    width: 100%;
    height: auto;
  }

  .top__sec01__circle li p {
    font-size: 12px;
    line-height: 1.4;
  }

  .top__sec01__desc {
    font-size: 14px;
    text-align: left;
    margin-bottom: 24px;
    line-height: 1.8;
  }

  .top__sec01__desc br {
    display: none;
  }

  /* チェックリスト */
  .top__sec01__list {
    width: auto;
    margin: 0 0 30px;
    gap: 12px;
  }

  .top__sec01__list li {
    gap: 10px;
  }

  .top__sec01__list li p {
    font-size: 14px;
  }

  .top__sec01__list li img {
    width: 20px;
    flex-shrink: 0;
  }

  /* CTA */
  .top__sec01__cta {
    width: 100%;
  }

  .top__sec01__cta-row {
    flex-direction: column;
    align-items: center;
  }

  .top__sec01__cta-left {
    width: 100%;
  }

  .top__sec01__balloon {
    width: 100%;
    height: auto;
    background: #db6670;
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 16px;
  }

  .top__sec01__balloon p {
    font-size: 14px;
    color: #fff;
    text-align: center;
  }

  .top__sec01__cta-text p {
    font-size: 14px;
    line-height: 1.8;
  }

  .top__sec01__cta-text .underline {
    text-decoration-thickness: 2px;
  }

  .top__sec01__human {
    margin-top: 16px;
  }

  .top__sec01__human img {
    width: 120px;
  }

  .top__sec01__cta-bottom {
    font-size: 14px;
    margin-top: 12px;
  }

}

/* ============================================
   Section 02 - 4プランカード
   ============================================ */
.top__sec02 {
  padding: 88px 0 134px;
}

.top__sec02__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 89px;
  margin-bottom: 60px;
}

.top__sec02__title p,
.top__sec02__title h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

.top__sec02__title .accent {
  color: #de7a7d;
}

.top__sec02__title-deco.left {
  opacity: 0.8;
  align-self: flex-start;
  margin-top: 4px;
}

.top__sec02__title-deco.right {
  opacity: 0.8;
  align-self: flex-start;
  margin-top: 0;
}

.top__sec02__cards {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.top__sec02__cards li {
  width: 274px;
  background-color: #fffbfb;
  border-radius: 8px;
  box-shadow: 0px 8px 12px rgba(62, 62, 62, 0.15);
  overflow: hidden;
}

.top__sec02__cards li a {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s;
}

.top__sec02__cards li a:hover {
  opacity: 0.8;
}

.top__sec02__cards h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: bold;
  color: #5c4b48;
  text-align: center;
  padding-top: 22px;
}

.top__sec02__cards h3::after {
  content: "";
  display: block;
  width: 221px;
  height: 1px;
  background: linear-gradient(to right, transparent, #c8b4ae, transparent);
  margin: 7px auto 0;
}

.top__sec02__cards p {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: bold;
  color: #5c4b48;
  text-align: center;
  padding-top: 10px;
}

.top__sec02__card-img {
  margin: 14px 23px 16px;
  height: 128px;
  border-radius: 4px;
  overflow: hidden;
}

.top__sec02__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   Section 03 - セレモニーほの香とは
   ============================================ */
.top__sec03 {
  background: url("section_bg2.png") no-repeat center center / cover;
  padding: 110px 0 139px;
}

/* Title */
.top__sec03__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 75px;
  margin-bottom: 69px;
}

.top__sec03__title p,
.top__sec03__title h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

.top__sec03__title .accent {
  color: #de7a7d;
}

.top__sec03__title-deco.left {
  align-self: flex-start;
  margin-top: 4px;
}

.top__sec03__title-deco.right {
  align-self: flex-start;
  margin-top: 0;
}

/* Block (dl) */
.top__sec03__block {
  display: flex;
  align-items: flex-start;
  gap: 77px;
}

.top__sec03__block + .top__sec03__block {
  margin-top: 110px;
}

.top__sec03__block--reverse {
  flex-direction: row-reverse;
}

/* Text column */
.top__sec03__block dd {
  flex: 1;
  padding-top: 5px;
}

.top__sec03__block dd p,
.top__sec03__block dd h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.67;
  margin: 0;
}

.top__sec03__block dd p + p,
.top__sec03__block dd h3 + h3 {
  margin-top: 60px;
}

.top__sec03__block--reverse dd p + p,
.top__sec03__block:last-of-type dd p + p,
.top__sec03__block--reverse dd h3 + h3,
.top__sec03__block:last-of-type dd h3 + h3 {
  margin-top: 30px;
}

.top__sec03__lead {
  font-size: 18px;
  line-height: 1;
}

/* Image column */
.top__sec03__block dt {
  flex-shrink: 0;
  width: 433px;
  height: 289px;
  border-radius: 8px;
  box-shadow: 0px 8px 12px rgba(62, 62, 62, 0.15);
  overflow: hidden;
}

.top__sec03__block dt img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   Section 04 - 対応エリア＋お役立ちカード
   ============================================ */
.top__sec04 {
  padding: 146px 0 99px;
}

/* Title */
.top__sec04__title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 105px;
  margin-bottom: 74px;
}

.top__sec04__title p,
.top__sec04__title h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

.top__sec04__title .accent {
  color: #de7a7d;
}

.top__sec04__title-deco.left {
  opacity: 0.8;
  align-self: flex-start;
  margin-top: 4px;
}

.top__sec04__title-deco.right {
  opacity: 0.8;
  align-self: flex-start;
  margin-top: 0;
}

/* Area map + info */
.top__sec04__area {
  display: flex;
  align-items: flex-start;
  gap: 69px;
  margin-bottom: 62px;
  padding-left: 91px;
}

.top__sec04__area > dt {
  flex-shrink: 0;
}

.top__sec04__area > dt img {
  display: block;
}

.top__sec04__area > dd {
  padding-top: 18px;
}

.top__sec04__area-sapporo {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.67;
  margin-bottom: 35px;
}

.top__sec04__area-cities {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: repeat(5, auto);
  grid-auto-flow: column;
  column-gap: 114px;
  row-gap: 0;
  margin-bottom: 37px;
}

.top__sec04__area-cities li {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.67;
}

.top__sec04__area-note {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.67;
}

/* Info cards 2x2 */
.top__sec04__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 33px;
}

.top__sec04__cards > li {
  background: #fffbfb;
  border-radius: 8px;
  box-shadow: 0px 8px 12px rgba(62, 62, 62, 0.15);
  overflow: hidden;
}

.top__sec04__cards dl {
  display: flex;
  align-items: stretch;
  height: 100%;
}

.top__sec04__cards dt {
  flex: 1;
  padding: 16px 0 21px 23px;
  display: flex;
  flex-direction: column;
}

.top__sec04__cards dt h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: bold;
  color: #5c4b48;
  text-align: center;
  line-height: 1;
  padding-bottom: 8px;
  margin-bottom: 6px;
}

.top__sec04__cards dt h3::after {
  content: "";
  display: block;
  width: 307px;
  height: 1px;
  background: linear-gradient(to right, transparent, #c8b4ae, transparent);
  margin: 8px auto 0;
}

.top__sec04__cards dt p {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.67;
  padding-left: 7px;
}

.top__sec04__cards dd {
  flex-shrink: 0;
  width: 228px;
  padding: 28px 20px 0 0;
  display: flex;
  align-items: flex-start;
}

.top__sec04__cards dd img {
  width: 208px;
  border-radius: 4px;
  display: block;
}

/* ============================================
   Section 05 – CTA
   ============================================ */
.top__sec05 {
  background-color: #f4d3d4;
  padding: 91px 0 90px;
}

.top__sec05__card {
  max-width: 712px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 8px 12px rgba(62, 62, 62, 0.15);
  padding: 22px 40px 23px;
  text-align: center;
}

.top__sec05__title {
  display: block;
  margin: 0 auto 13px;
}

.top__sec05__badge-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 22px;
  margin-bottom: 8px;
}

.top__sec05__badge {
  display: inline-block;
  background-color: #ff7113;
  border-radius: 4px;
  box-shadow: 0px 8px 12px rgba(62, 62, 62, 0.15);
  padding: 13px 28px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
}

.top__sec05__free {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #9b3431;
  line-height: 1;
  position: relative;
  display: inline-block;
  z-index: 1;
}

.top__sec05__free::after {
  content: '';
  position: absolute;
  left: -3px;
  bottom: -1px;
  width: 100px;
  height: 10px;
  background: #ff7113;
  opacity: 0.5;
  z-index: -1;
}

.top__sec05__tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin-bottom: 20px;
}

.top__sec05__tel-num {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 58px;
  font-weight: bold;
  color: #9b3431;
  line-height: 1;
}

.top__sec05__note {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: bold;
  color: #9b3431;
  line-height: 1.67;
  text-align: center;
}

.top__sec05__sub {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #9b3431;
  line-height: 1;
  text-align: center;
  margin-top: 34px;
  margin-bottom: 21px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.top__sec05__sub::before,
.top__sec05__sub::after {
  content: "";
  display: block;
  width: 96px;
  height: 2px;
  background-color: #660018;
}

.top__sec05__btns {
  display: flex;
  justify-content: center;
  gap: 19px;
}

.top__sec05__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 251px;
  height: 62px;
  border-radius: 4px;
  box-shadow: 0px 8px 12px rgba(62, 62, 62, 0.15);
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1;
  outline: 2px solid #ffffff;
  outline-offset: -4px;
}

.top__sec05__btn::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 3px solid #ffffff;
  border-right: 3px solid #ffffff;
  transform: rotate(45deg);
  margin-left: 15px;
  flex-shrink: 0;
}

.top__sec05__btn--estimate {
  background-color: #db5e62;
}

.top__sec05__btn--mail {
  background-color: #a2a05b;
}

/* ============================================
   Lower Page – 共通
   ============================================ */
.lower {
  background-color: #fffbfb;
}

.lower__mainvis {
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
              url("question_mv_bg.jpg") no-repeat center center / cover;
  padding: 30px 0 73px;
  text-align: center;
}

.lower__mainvis .inner ul {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 82px;
}

.lower__mainvis .inner li {
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
}

.lower__mainvis .inner a {
  text-decoration: none;
  color: #5c4b48;
}

.lower__mainvis .inner a:hover {
  opacity: 0.7;
}

.lower__mainvis h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.5;
}


/* ============================================
   Question – ページ固有
   ============================================ */
/* MV背景: 写真(opacity 0.5) + 白オーバーレイ */
.lower__mainvis--question {
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
              url("question_mv_bg.jpg") no-repeat center 36% / cover;
}

/* FAQ花装飾背景（opacity 0.2） */
.question__faq {
  padding: 52px 0 100px;
  position: relative;
}

.question__faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("question_flower_bg.png") no-repeat center top;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}

.question__faq > .inner {
  position: relative;
  z-index: 1;
}

.question__category {
  margin-bottom: 79px;
}

.question__category:last-child {
  margin-bottom: 0;
}

/* カテゴリタイトル */
.question__category-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 66px;
  margin-bottom: 43px;
}

.question__category-title h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.5;
  text-align: center;
}

.question__category-deco.left {
  opacity: 0.8;
  align-self: flex-start;
  margin-top: 4px;
}

.question__category-deco.right {
  opacity: 0.8;
  align-self: flex-start;
  margin-top: 0;
}

/* Q&Aリスト */
.question__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 1099px;
  margin: 0 auto;
}

/* Q&A アイテム（details） */
.question__item {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 1px 16px rgba(0,0,0,0.21);
  overflow: hidden;
}

.question__item summary {
  list-style: none;
}

.question__item summary::-webkit-details-marker {
  display: none;
}

/* Q行 */
.question__q {
  display: flex;
  align-items: center;
  padding: 17px 46px 17px 32px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.question__q:hover {
  opacity: 0.8;
}

.question__q-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.question__q-text {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 2.5;
  margin-left: 18px;
  flex: 1;
}

.question__q-arrow {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 17px solid #db6670;
  flex-shrink: 0;
  margin-left: 20px;
  transition: transform 0.3s;
}

.question__item[open] .question__q-arrow {
  transform: rotate(180deg);
}

/* A行 */
.question__a {
  display: flex;
  align-items: flex-start;
  padding: 0 32px 24px;
  border-top: 1px solid transparent;
  background-image: linear-gradient(to right, transparent, #c8b4ae, transparent);
  background-size: calc(100% - 64px) 1px;
  background-position: 32px top;
  background-repeat: no-repeat;
  padding-top: 18px;
}

.question__a-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.question__a-text {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.67;
  margin-left: 18px;
  padding-top: 2px;
}

/* ============================================
   Lower 内での共通セクション余白調整
   ============================================ */
.lower .top__sec02 {
  padding: 88px 0 0;
}

.lower .top__sec04 {
  padding: 62px 0 0;
}

.lower .top__sec05 {
  margin-top: 99px;
}

/* ============================================
   Company – 会社概要セクション
   ============================================ */


/* 会社概要 – 紹介文＋テーブル */
.company__about {
  padding: 112px 0 100px;
  position: relative;
}

.company__about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("question_flower_bg.png") no-repeat center top;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}

.company__about > .inner {
  position: relative;
  z-index: 1;
}

.company__about-intro {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.67;
  text-align: center;
  margin-bottom: 98px;
}

.company__about-content {
  display: flex;
  gap: 52px;
}

/* 左カラム – 会社情報テーブル */
.company__about-table {
  width: 558px;
  flex-shrink: 0;
}

.company__about-row {
  display: flex;
  align-items: baseline;
  padding: 28px 0;
  background-image: linear-gradient(to right, transparent, #c8b4ae, transparent);
  background-size: 100% 1px;
  background-position: bottom;
  background-repeat: no-repeat;
}

.company__about-row dt {
  width: 170px;
  flex-shrink: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
}

.company__about-row dd {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
}

/* 右カラム – 対応エリア＋業務内容 */
.company__about-side {
  flex: 1;
}

.company__about-area {
  padding-bottom: 30px;
  margin-bottom: 30px;
  background-image: linear-gradient(to right, transparent, #c8b4ae, transparent);
  background-size: 100% 1px;
  background-position: bottom;
  background-repeat: no-repeat;
}

.company__about-area h3,
.company__about-service h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
  margin-bottom: 24px;
}

.company__about-area p {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.67;
}

.company__about-area-note {
  margin-top: 8px;
}

.company__about-service p {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.67;
}


/* ============================================
   Flow – ページ固有
   ============================================ */

/* MV: 背景写真(opacity 0.5) + 白オーバーレイ
   白矩形: y=244, h=250 → h2+intro を包むエリア */
.lower__mainvis--flow {
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
              url("question_mv_bg.jpg") no-repeat center 36% / cover;
  padding-bottom: 50px;
}

/* 導入テキスト: y=374, center, 15px bold #5c4b48 lh1.67
   h2(y=304,h=34)底340 → intro y=374: gap=34px */
.flow__intro {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.67;
  text-align: center;
  margin-top: 34px;
}

/* コンテンツ本体: 花装飾背景(opacity 0.2)
   MV底(y=490) → bar画像上端(y=530): gap=40px
   bar画像含めてpaddingで調整 */
.flow__main {
  padding: 40px 0 100px;
  position: relative;
}

.flow__main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("question_flower_bg.png") no-repeat center top;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}

.flow__main > .inner {
  position: relative;
  z-index: 1;
}

/* タイムライン
   ラベル底(y=799) → ステップ1タイトル(y=902): gap=103px */
.flow__timeline {
  margin-bottom: 103px;
}

/* 帯画像: 2408x176(2x), 表示1204x88
   帯画像底(y=618) → サムネイル(y=632): gap=14px */
.flow__timeline-bar {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 14px;
}

/* PC: グループをフラットに横並び（帯画像の下に6枚均等） */
.flow__timeline-groups {
  display: flex;
  gap: 12px;
}

.flow__timeline-label {
  display: none;
}

.flow__timeline-list {
  display: flex;
  gap: 12px;
  list-style: none;
}

.flow__timeline-list li {
  flex: 1;
}

.flow__timeline-group {
  display: contents;
}

/* サムネイルボックス: 188x134, bg=#db6670
   サムネイル底(y=766) → ラベル(y=780): gap=14px */
.flow__timeline-thumb {
  height: 134px;
  background-color: #db6670;
  overflow: hidden;
  margin-bottom: 14px;
}

.flow__timeline-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ラベル: 20px bold #5c4b48
   x=410,608,807,1005,1204,1402 → ボックス左端揃え */
.flow__timeline-list p {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
}

/* ステップ詳細
   inner左端(x=398) → テキスト開始(x=548): offset=150px
   テキスト幅: max 904px */
.flow__steps {
  max-width: 904px;
  margin-left: 150px;
}

/* タイトル: 20px bold #5c4b48
   単一行 → line-height: 1
   title底 → desc top: ~21px */
.flow__step-title {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
  margin-bottom: 21px;
}

/* 説明文: 18px bold #5c4b48 lh1.67 */
.flow__step-text {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.67;
}

/* 三角矢印: 44x22, #db5e62
   x=566, テキスト開始x=550 → margin-left=16px
   テキスト底→矢印: ~30px, 矢印→次タイトル: ~28px */
.flow__step-arrow {
  width: 44px;
  height: 22px;
  margin: 30px 0 28px 16px;
  position: relative;
}

.flow__step-arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-left: 22px solid transparent;
  border-right: 22px solid transparent;
  border-top: 22px solid #db5e62;
}

/* ============================================
   Hurry – お急ぎの方へ
   ============================================ */

/* MV背景: 他の下層ページと同パターン（question_mv_bg.jpg + 白オーバーレイ） */
.lower__mainvis--hurry {
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
              url("question_mv_bg.jpg") no-repeat center 36% / cover;
}

/* MV: h2を36pxに拡大（デフォルト30px）
   マッピング: y=280, 36px bold #5c4b48 */
.lower__mainvis--hurry h2 {
  font-size: 36px;
}

/* 導入テキスト: y=379, 15px bold #5c4b48 lh1.67 center
   h2底(280+34=314) → intro(y=379): gap=65px */
.hurry__intro {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.67;
  text-align: center;
  margin-top: 65px;
}

/* 色違い: #db6670（マッピングnote参照） */
.hurry__intro-accent {
  color: #db6670;
}

/* MV電話CTA: icon(y=439) + number(y=446)
   intro底(379+41=420) → tel(y=439): gap=19px */
.hurry__mv-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 19px;
}

/* 電話番号: 36px bold Noto Sans JP #de7a7d */
.hurry__mv-tel-num {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: bold;
  color: #de7a7d;
  line-height: 1;
  text-decoration: none;
}

/* フリーダイヤル注記: y=489, 15px bold #5c4b48
   tel底(446+28=474) → note(y=489): gap=15px */
.hurry__mv-tel-note {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
  text-align: center;
  margin-top: 15px;
}

/* ============================================
   Hurry – ご逝去後の流れセクション
   ============================================ */
/* 花装飾背景(opacity 0.2): y=573, 2186x1650
   MV底 → セクション開始: padding-top=82px */
.hurry__content {
  position: relative;
}

.hurry__content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("question_flower_bg.png") no-repeat center top;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}

.hurry__flow {
  padding: 82px 0 68px;
  position: relative;
  z-index: 1;
}

/* セクションタイトル: "ご逝去後の流れ" 30px bold #5c4b48
   左右に花装飾（opacity 0.8）, gap=66px
   タイトル底 → Step1カード(y=746): margin-bottom=61px */
.hurry__flow-title {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 66px;
  margin-bottom: 61px;
}

.hurry__flow-title h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.5;
  text-align: center;
}

.hurry__flow-deco.left {
  opacity: 0.8;
}

.hurry__flow-deco.right {
  opacity: 0.8;
}

/* ============================================
   Hurry – ステップカード
   ============================================ */
/* カード群: max-width=967px, 中央揃え
   カード間gap: 三角形(55px)込みで矩形間79-105px
   Step1(白)→Step2(ピンク): 79px
   Step2→Step3: 79px
   Step3(白)→Step4(ピンク): 105px */
.hurry__steps {
  display: flex;
  flex-direction: column;
  max-width: 967px;
  margin: 0 auto;
}

/* 各ステップカード: flex横並び
   padding: 白=40px 30px 40px, ピンク=36px 30px 40px
   画像→コンテンツ gap=40px
   三角形: カード底辺から55px下向き */
.hurry__step {
  display: flex;
  align-items: flex-start;
  padding: 40px 30px 40px;
  gap: 40px;
  position: relative;
  margin-bottom: 79px;
}

.hurry__step:nth-child(3) {
  margin-bottom: 105px;
}

.hurry__step:last-child {
  margin-bottom: 0;
}

.hurry__step::after {
  content: "";
  position: absolute;
  bottom: -55px;
  left: 0;
  width: 100%;
  height: 55px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 1;
}

.hurry__step--white {
  background-color: #ffffff;
}

.hurry__step--white::after {
  background-color: #ffffff;
}

.hurry__step--pink {
  background-color: #ffeeef;
  padding-top: 36px;
}

.hurry__step--pink::after {
  background-color: #ffeeef;
}

/* ステップ画像: 222x158(display), bg=#db6670
   マッピング: 長方形17 w=222, h=158 */
.hurry__step-img {
  flex-shrink: 0;
  width: 222px;
  height: 158px;
  background-color: #db6670;
  overflow: hidden;
}

.hurry__step-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ステップ本文 */
.hurry__step-body {
  flex: 1;
  min-width: 0;
}

/* 見出し: 番号30px + テキスト24px bold #5c4b48
   マッピングnote: 複数スタイル サイズ違い 30px,24px */
.hurry__step-heading {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
  margin-bottom: 25px;
}

.hurry__step-num {
  font-size: 30px;
}

/* 説明文: 18px bold #5c4b48 lh1
   見出し底→説明文: 25px, 説明文→チェック/リスト: 22px */
.hurry__step-desc {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
  margin-bottom: 22px;
}

/* ============================================
   Hurry – Step1 チェックリスト + 吹き出し
   ============================================ */
/* 横並び: checks(左) + bubble(右)
   checks右端(~x=1113) → bubble左端(x=1159): gap≒46px */
.hurry__step-row {
  display: flex;
  align-items: flex-start;
  gap: 46px;
}

/* チェックアイテム: icon(29x26) + text(18px bold #5c4b48)
   アイテム間gap: icon間(y差43px - icon高26px)=17px */
.hurry__step-checks {
  display: flex;
  flex-direction: column;
  gap: 17px;
  list-style: none;
}

.hurry__step-checks li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
}

.hurry__step-checks li img {
  flex-shrink: 0;
}

/* 吹き出し: 楕円形(254x134) bg=#5c4b48 border-radius=50%
   テキスト: 18px bold #fff lh1.67 center
   左向き三角ポインタ: #5c4b48 */
.hurry__step-bubble {
  flex-shrink: 0;
  width: 254px;
  height: 134px;
  background-color: #5c4b48;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* 三角形ポインタ: display (1178,928,28x18) rotation=154.6deg
   頂点: V0(0%,100%) V1(23.8%,0%) V2(100%,54.9%)
   bubble左端(1159)から20px, 上端(821)から107px */
.hurry__step-bubble::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 107px;
  width: 28px;
  height: 18px;
  background-color: #5c4b48;
  clip-path: polygon(0% 100%, 23.8% 0%, 100% 54.9%);
}

.hurry__step-bubble p {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  line-height: 1.67;
  text-align: center;
}

/* ============================================
   Hurry – Step2-4 箇条書き
   ============================================ */
/* 〇付きリスト: 18px bold #5c4b48 lh1
   アイテム間gap: y差(1222-1210)≒12px */
.hurry__step-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.hurry__step-list li {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.5;
}

/* ============================================
   Hurry – 中間テキスト（遷移セクション）
   ============================================ */
/* "お打ち合わせ内容をもとに…" 30px bold #5c4b48 lh1.5 center
   Step4底(y=1976) → テキスト(y=2044): gap=68px
   padding-top=68px, padding-bottom=60px(プラン見出しまでの余白) */
.hurry__transition {
  padding: 68px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.hurry__transition-text {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.5;
  display: inline-block;
}

/* おじぎ女性イラスト: display (1176,2002,81x163)
   デザイン幅2000pxの右寄り配置 */
.hurry__transition-illust {
  position: absolute;
  right: calc(50% - 500px);
  top: 50%;
  transform: translateY(-50%);
}

/* ============================================
   Plan8 – 火葬式8プラン
   ============================================ */

/* パンくず: 12px bold #5c4b48
   マッピング: y=202, font=12px */
.lower__bread {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 12px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
  list-style: none;
}

.lower__bread a {
  text-decoration: none;
  color: #5c4b48;
}

.lower__bread a:hover {
  opacity: 0.7;
}

/* MV全体 */
.plan8-mv {
  background-color: #fffbfb;
  padding-top: 30px;
}

/* MV タイトル: 30px bold #525252, center
   マッピング: y=290, 花装飾左 y=254
   パンくず(y=202,h=12)→タイトル(y=290): gap=76px */
.plan8-mv__title {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: bold;
  color: #525252;
  line-height: 1.5;
  text-align: center;
  margin-top: 60px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.plan8-mv__flower {
  display: block;
  margin-top: -20px;
  opacity: 0.8;
}

/* ８の共通スタイル: オレンジ・大サイズ
   マッピング: MV内「８」=50px #ff8a00 */
.plan8-num {
  color: #ff8a00;
  font-size: 50px;
}

/* 選ばれています見出し内の８: 40px */
.plan8-selected__title .plan8-num {
  font-size: 40px;
}

/* MV ヒーローエリア: 花装飾背景（他の下層ページと同じ） */
.plan8-mv__hero {
  background: url("question_flower_bg.png") no-repeat center top;
  background-size: 100% auto;
  padding: 40px 0 50px;
}

.plan8-mv__hero-inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.plan8-mv__hero-left {
  flex: 1;
}

.plan8-mv__hero-right {
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
}

.plan8-mv__hero-right img {
  display: block;
  border-radius: 8px;
}

/* MV価格: 40px bold #ff8a00, 「円（税別）」30px
   マッピング: y=452, font=40px/30px #ff8a00 */
.plan8-mv__price {
  font-family: "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: bold;
  color: #ff8a00;
  line-height: 1.13;
  margin-bottom: 30px;
}

.plan8-mv__price-num {
  font-size: 40px;
}

/* MV説明文: 18px bold #5c4b48
   マッピング: y=538, font=18px #5c4b48 */
.plan8-mv__desc {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.67;
}

/* 選ばれています
   マッピング: y=881, 見出し24px bold #525252 tracking=0.05em
   MV底(y≈804)→見出し(y=881): gap=77px */
.plan8-selected {
  padding: 77px 0 60px;
}

.plan8-selected__title {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: bold;
  color: #525252;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
  margin-bottom: 46px;
}

/* チェックリスト+イラスト横並び
   マッピング: チェック項目y=964–1068, イラストy=922 */
.plan8-selected__body {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 60px;
}

.plan8-selected__list {
  list-style: none;
}

/* チェックリスト: 18px bold #525252
   マッピング: font=18px #525252, gap=44px(y間隔964→1008) */
.plan8-selected__list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #525252;
  line-height: 1;
  margin-bottom: 26px;
}

.plan8-selected__list li:last-child {
  margin-bottom: 0;
}

.plan8-selected__illust {
  display: block;
}

/* プランに含まれるもの
   マッピング: bg=#faf6f1, y=1154–1636, shape 1200x482 br=8px
   上gap: selected-bottom(60)+section-top(26)=86px
   下gap: section-bottom(30)+plans-top(88)=118px */
.plan8-includes {
  padding: 26px 0 30px;
}

.plan8-includes .inner {
  max-width: 1200px;
  background-color: #faf6f1;
  border-radius: 8px;
  padding: 28px 27px 50px;
}

/* 見出し: 24px bold #525252 tracking=0.05em
   マッピング: y=1186, 丸アイコンy=1181 32x32 #ff8a00 */
.plan8-includes__title {
  display: flex;
  align-items: center;
  gap: 19px;
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: bold;
  color: #525252;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.plan8-includes__icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  background-color: #ff8a00;
  border-radius: 50%;
  flex-shrink: 0;
}

.plan8-includes__note {
  font-size: 15px;
}

/* 区切り線: グラデーション
   マッピング: y=1218, w=452, left offset=44px(丸アイコン32+gap12) */
.plan8-includes__divider {
  width: 452px;
  height: 1px;
  background: linear-gradient(to right, transparent, #c8b4ae, transparent);
  margin: 0 0 30px 51px;
}

/* アイテム6列: 画像+ラベル
   マッピング: 写真y=1252, 各147–150px幅, ラベルy=1412 */
.plan8-includes__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  list-style: none;
  margin-bottom: 40px;
}

.plan8-includes__items li {
  text-align: center;
}

.plan8-includes__items img {
  border-radius: 4px;
  display: block;
  margin-bottom: 12px;
}

/* アイテム名: 15px bold #525252 tracking=0.05em */
.plan8-includes__items p {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: bold;
  color: #525252;
  line-height: 1;
  letter-spacing: 0.05em;
}

/* 含まれないもの
   マッピング: 丸アイコンy=1480, 22x22 #525252 */
.plan8-excludes__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: bold;
  color: #525252;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.plan8-excludes__icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  background-color: #525252;
  border-radius: 50%;
  flex-shrink: 0;
}

/* 区切り線: w=283 */
.plan8-excludes__divider {
  width: 283px;
  height: 1px;
  background: linear-gradient(to right, transparent, #c8b4ae, transparent);
  margin: 0 0 20px 34px;
}

/* 含まれない項目リスト: 15px bold #525252 tracking=0.05em
   マッピング: y=1532, 3列横並び */
.plan8-excludes__list {
  display: flex;
  gap: 40px;
  padding-left: 34px;
}

.plan8-excludes__list p {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: bold;
  color: #525252;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

/* plan8内の共通セクション余白調整 */
.lower .plan8-includes + .top__sec02 {
  padding-top: 88px;
}

/* プラン別アクセント色
   マッピング: plan8=#ff8a00, plan13=#81a3ef, plan18=#db6670, plan28=#8d5dcf */
.plan-13 .plan8-mv__price,
.plan-13 .plan8-num {
  color: #81a3ef;
}

.plan-13 .plan8-includes__icon {
  background-color: #81a3ef;
}

.plan-18 .plan8-mv__price,
.plan-18 .plan8-num {
  color: #db6670;
}

.plan-18 .plan8-includes__icon {
  background-color: #db6670;
}

.plan-28 .plan8-mv__price,
.plan-28 .plan8-num {
  color: #8d5dcf;
}

.plan-28 .plan8-includes__icon {
  background-color: #8d5dcf;
}

/* plan13/18/28: excludesアイコンは四角18x18（plan8は丸22x22）
   マッピング: 長方形 17 size=18x18 bg=#525252 */
.plan-13 .plan8-excludes__icon,
.plan-18 .plan8-excludes__icon,
.plan-28 .plan8-excludes__icon {
  width: 18px;
  height: 18px;
  border-radius: 0;
}

/* ============================================
   Plan8 Responsive
   ============================================ */
@media (max-width: 768px) {

  /* --- Top Section 03 --- */
  .top__sec03 {
    padding: 40px 0 50px;
  }

  .top__sec03__title {
    gap: 10px;
    margin-bottom: 30px;
  }

  .top__sec03__title p,
.top__sec03__title h2 {
    font-size: 20px;
  }

  .top__sec03__title-deco.left {
    width: 40px;
  }

  .top__sec03__title-deco.right {
    width: 32px;
  }

  .top__sec03__block {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .top__sec03__block--reverse {
    flex-direction: column-reverse;
  }

  .top__sec03__block + .top__sec03__block {
    margin-top: 40px;
  }

  .top__sec03__block dd {
    padding-top: 0;
  }

  .top__sec03__block dd p,
  .top__sec03__block dd h3 {
    font-size: 14px;
    line-height: 1.8;
  }

  .top__sec03__block dd p + p,
  .top__sec03__block dd h3 + h3 {
    margin-top: 16px;
  }

  .top__sec03__block--reverse dd p + p,
  .top__sec03__block:last-of-type dd p + p,
  .top__sec03__block--reverse dd h3 + h3,
  .top__sec03__block:last-of-type dd h3 + h3 {
    margin-top: 16px;
  }

  .top__sec03__lead {
    font-size: 14px;
  }

  .top__sec03__block dt {
    flex-shrink: 1;
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .top__sec03__block dt img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* --- Top Section 04 --- */
  .top__sec04 {
    padding: 40px 0 50px;
  }

  .top__sec04__title {
    gap: 10px;
    margin-bottom: 30px;
  }

  .top__sec04__title p,
.top__sec04__title h2 {
    font-size: 20px;
  }

  .top__sec04__title-deco.left {
    width: 40px;
  }

  .top__sec04__title-deco.right {
    width: 32px;
  }

  .top__sec04__area {
    flex-direction: column;
    gap: 20px;
    padding-left: 0;
    margin-bottom: 30px;
  }

  .top__sec04__area > dt {
    flex-shrink: 1;
    width: 100%;
  }

  .top__sec04__area > dt img {
    display: block;
    width: 70%;
    max-width: 260px;
    margin: 0 auto;
  }

  .top__sec04__area > dd {
    padding-top: 0;
  }

  .top__sec04__area-sapporo {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .top__sec04__area-sapporo br {
    display: none;
  }

  .top__sec04__area-cities {
    column-gap: 20px;
    margin-bottom: 16px;
  }

  .top__sec04__area-cities li {
    font-size: 14px;
  }

  .top__sec04__area-note {
    font-size: 14px;
  }

  /* --- 下層MV共通 --- */
  .lower__mainvis {
    padding: 20px 0 40px;
  }

  .lower__mainvis .inner ul {
    margin-bottom: 30px;
    flex-wrap: wrap;
  }

  .lower__mainvis h2 {
    font-size: 24px;
  }

  /* --- パンくず --- */
  .lower__bread {
    flex-wrap: wrap;
    font-size: 11px;
    gap: 4px;
  }

  /* --- MV タイトル --- */
  .plan8-mv__title {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .plan8-num {
    font-size: 36px;
  }

  .plan8-mv__flower {
    width: 40px;
  }

  /* --- MV ヒーローエリア --- */
  .plan8-mv__hero {
    padding: 24px 0 30px;
  }

  .plan8-mv__hero-inner {
    flex-direction: column;
    gap: 24px;
  }

  .plan8-mv__hero-right {
    text-align: center;
    flex-shrink: 1;
  }

  .plan8-mv__hero-right img {
    width: 100% !important;
    max-width: 360px;
    height: auto;
    margin: 0 auto;
  }

  .plan8-mv__price {
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
  }

  .plan8-mv__price-num {
    font-size: 30px;
  }

  .plan8-mv__desc {
    font-size: 15px;
    line-height: 1.8;
  }

  /* --- 選ばれています --- */
  .plan8-selected {
    padding: 40px 0 30px;
  }

  .plan8-selected__title {
    font-size: 18px;
    margin-bottom: 24px;
  }

  .plan8-selected__title .plan8-num {
    font-size: 28px;
  }

  .plan8-selected__body {
    flex-direction: column;
    gap: 24px;
  }

  .plan8-selected__list li {
    font-size: 15px;
    gap: 10px;
    margin-bottom: 16px;
  }

  .plan8-selected__list li img {
    width: 24px;
  }

  .plan8-selected__illust {
    width: 120px;
    margin: 0 auto;
  }

  /* --- プランに含まれるもの --- */
  .plan8-includes {
    padding: 16px 0 20px;
  }

  .plan8-includes .inner {
    padding: 20px 16px 30px;
  }

  .plan8-includes__title {
    flex-wrap: wrap;
    font-size: 16px;
    gap: 8px;
  }

  .plan8-includes__icon {
    width: 24px;
    height: 24px;
  }

  .plan8-includes__note {
    font-size: 11px;
    width: 100%;
    padding-left: 32px;
    margin-top: -4px;
  }

  .plan8-includes__divider {
    width: calc(100% - 32px);
    margin-left: 32px;
  }

  .plan8-includes__items {
    gap: 12px;
    justify-content: flex-start;
  }

  .plan8-includes__items li {
    width: calc(33.333% - 8px);
  }

  .plan8-includes__items img {
    width: 100%;
    max-width: none;
    height: auto;
  }

  .plan8-includes__items p {
    font-size: 12px;
  }

  /* --- 含まれないもの --- */
  .plan8-excludes__title {
    font-size: 13px;
  }

  .plan8-excludes__icon {
    width: 18px;
    height: 18px;
  }

  .plan8-excludes__divider {
    width: 70%;
    margin-left: 30px;
  }

  .plan8-excludes__list {
    flex-direction: column;
    gap: 8px;
    padding-left: 30px;
  }

  .plan8-excludes__list p {
    font-size: 13px;
  }

  /* --- 共通: プランカード (sec02) --- */
  .top__sec02 {
    padding: 40px 0 50px;
  }

  .top__sec02__title {
    gap: 10px;
    margin-bottom: 24px;
  }

  .top__sec02__title p,
.top__sec02__title h2 {
    font-size: 20px;
  }

  .top__sec02__title-deco.left {
    width: 40px;
  }

  .top__sec02__title-deco.right {
    width: 32px;
  }

  .top__sec02__cards {
    flex-wrap: wrap;
    gap: 12px;
  }

  .top__sec02__cards li {
    width: calc(50% - 6px);
  }

  .top__sec02__cards h3 {
    font-size: 14px;
    padding-top: 16px;
  }

  .top__sec02__cards h3::after {
    width: 80%;
  }

  .top__sec02__cards p {
    font-size: 12px;
    padding-top: 6px;
  }

  .top__sec02__card-img {
    margin: 8px 8px 10px;
    height: auto;
  }

  /* --- 共通: お役立ち情報 (sec04) --- */
  .top__sec04__cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .top__sec04__cards dl {
    flex-direction: column;
  }

  .top__sec04__cards dt {
    padding: 16px 16px 0;
  }

  .top__sec04__cards dt h3 {
    font-size: 14px;
  }

  .top__sec04__cards dt h3::after {
    width: 80%;
  }

  .top__sec04__cards dt p {
    font-size: 13px;
  }

  .top__sec04__cards dd {
    width: 100%;
    padding: 12px 16px 16px;
  }

  .top__sec04__cards dd img {
    width: 100%;
    border-radius: 4px;
  }

  /* --- 共通: CTA (sec05) --- */
  .top__sec05 {
    padding: 40px 0;
  }

  .top__sec05__card {
    padding: 16px 12px;
  }

  .top__sec05__title {
    width: 80%;
    max-width: 260px;
  }

  .top__sec05__badge-row {
    flex-direction: column;
    gap: 8px;
  }

  .top__sec05__badge {
    font-size: 13px;
    padding: 8px 16px;
  }

  .top__sec05__tel-num {
    font-size: 30px;
  }

  .top__sec05__tel img {
    width: 24px;
  }

  .top__sec05__note {
    font-size: 12px;
  }

  .top__sec05__note br {
    display: none;
  }

  .top__sec05__sub {
    font-size: 14px;
    gap: 10px;
  }

  .top__sec05__sub::before,
  .top__sec05__sub::after {
    width: 40px;
  }

  .top__sec05__btns {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .top__sec05__btn {
    width: 100%;
    height: auto;
    padding: 14px 16px;
    font-size: 14px;
  }

  /* --- お急ぎの方 (hurry) --- */
  .lower__mainvis--hurry {
    padding-bottom: 40px;
  }

  .lower__mainvis--hurry h2 {
    font-size: 26px;
  }

  .hurry__intro {
    font-size: 13px;
    margin-top: 30px;
    line-height: 1.8;
  }

  .hurry__intro br {
    display: none;
  }

  .hurry__mv-tel {
    margin-top: 16px;
  }

  .hurry__mv-tel img {
    width: 22px;
  }

  .hurry__mv-tel-num {
    font-size: 28px;
  }

  .hurry__mv-tel-note {
    font-size: 13px;
    margin-top: 12px;
  }

  .hurry__content::before {
    background-size: auto 100%;
    background-position: center top;
  }

  .hurry__flow {
    padding: 40px 0 40px;
  }

  .hurry__flow-title {
    gap: 20px;
    margin-bottom: 30px;
  }

  .hurry__flow-title h3 {
    font-size: 22px;
  }

  .hurry__flow-deco.left {
    width: 50px;
  }

  .hurry__flow-deco.right {
    width: 40px;
  }

  .hurry__step {
    flex-direction: column;
    padding: 20px 16px 24px;
    gap: 16px;
    margin-bottom: 60px;
  }

  .hurry__step:nth-child(3) {
    margin-bottom: 60px;
  }

  .hurry__step::after {
    bottom: -40px;
    height: 40px;
  }

  .hurry__step-img {
    width: 100%;
    height: auto;
    aspect-ratio: 222 / 158;
  }

  .hurry__step-heading {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .hurry__step-num {
    font-size: 24px;
  }

  .hurry__step-desc {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .hurry__step-row {
    flex-direction: column;
    gap: 20px;
  }

  .hurry__step-checks {
    gap: 14px;
  }

  .hurry__step-checks li {
    font-size: 15px;
    gap: 8px;
  }

  .hurry__step-checks li img {
    width: 24px;
  }

  .hurry__step-bubble {
    width: 200px;
    height: 106px;
    margin: 0 auto;
  }

  .hurry__step-bubble::before {
    top: 85px;
    left: 16px;
    width: 22px;
    height: 14px;
  }

  .hurry__step-bubble p {
    font-size: 15px;
  }

  .hurry__step-list li {
    font-size: 15px;
  }

  .hurry__transition {
    padding: 40px 0 40px;
  }

  .hurry__transition-text {
    font-size: 22px;
  }

  .hurry__transition-illust {
    position: static;
    display: block;
    margin: 16px auto 0;
    transform: none;
    width: 60px;
  }

  /* --- plan8 余白調整 --- */
  .lower .plan8-includes + .top__sec02 {
    padding-top: 50px;
  }

  /* --- 会社概要 (company) --- */
  .company__about {
    padding: 50px 0 60px;
  }

  .company__about-intro {
    font-size: 13px;
    margin-bottom: 40px;
  }

  .company__about-intro br {
    display: none;
  }

  .company__about-content {
    flex-direction: column;
    gap: 40px;
  }

  .company__about-table {
    width: 100%;
  }

  .company__about-row {
    padding: 18px 0;
  }

  .company__about-row dt {
    width: 120px;
    font-size: 15px;
  }

  .company__about-row dd {
    font-size: 15px;
  }

  .company__about-area h3,
  .company__about-service h3 {
    font-size: 15px;
    margin-bottom: 16px;
  }

  .company__about-area p {
    font-size: 15px;
  }

  .company__about-service p {
    font-size: 15px;
  }

  /* --- よくあるご質問 (question) --- */
  .question__faq {
    padding: 30px 0 60px;
  }

  .question__category {
    margin-bottom: 40px;
  }

  .question__category-title {
    gap: 16px;
    margin-bottom: 24px;
  }

  .question__category-title h3 {
    font-size: 20px;
  }

  .question__category-deco.left {
    width: 40px;
  }

  .question__category-deco.right {
    width: 30px;
  }

  .question__list {
    gap: 14px;
  }

  .question__q {
    padding: 14px 16px;
    align-items: flex-start;
  }

  .question__q-icon {
    width: 32px;
    height: 32px;
    margin-top: 2px;
  }

  .question__q-text {
    font-size: 15px;
    line-height: 1.6;
    margin-left: 10px;
  }

  .question__q-arrow {
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 12px solid #db6670;
    margin-left: 10px;
    margin-top: 6px;
  }

  .question__a {
    padding: 14px 16px 18px;
    background-size: calc(100% - 32px) 1px;
    background-position: 16px top;
  }

  .question__a-icon {
    width: 32px;
    height: 32px;
  }

  .question__a-text {
    font-size: 15px;
    margin-left: 10px;
  }

  /* --- お葬式の流れ (flow) --- */
  .flow__intro {
    font-size: 13px;
    line-height: 1.8;
    margin-top: 20px;
  }

  .flow__intro br {
    display: none;
  }

  .flow__main {
    padding: 30px 0 60px;
  }

  .flow__timeline {
    margin-bottom: 40px;
  }

  .flow__timeline-bar {
    display: none;
  }

  .flow__timeline-groups {
    flex-direction: column;
    gap: 20px;
  }

  .flow__timeline-group {
    display: block;
  }

  .flow__timeline-label {
    display: block;
    font-family: "Noto Serif JP", serif;
    font-size: 13px;
    font-weight: bold;
    color: #fff;
    background-color: #db6670;
    padding: 6px 12px;
    border-radius: 4px;
    text-align: center;
    margin-bottom: 10px;
  }

  .flow__timeline-list {
    gap: 10px;
    justify-content: center;
  }

  .flow__timeline-list li {
    flex: 1;
    min-width: 0;
  }

  .flow__timeline-thumb {
    height: auto;
    aspect-ratio: 188 / 134;
    margin-bottom: 8px;
  }

  .flow__timeline-list p {
    font-size: 14px;
    text-align: center;
  }

  .flow__steps {
    max-width: none;
    margin-left: 0;
  }

  .flow__step-title {
    font-size: 18px;
    margin-bottom: 14px;
  }

  .flow__step-text {
    font-size: 15px;
    line-height: 1.8;
  }

  .flow__step-arrow {
    width: 34px;
    height: 18px;
    margin: 20px auto;
  }

  .flow__step-arrow::before {
    border-left: 17px solid transparent;
    border-right: 17px solid transparent;
    border-top: 18px solid #db5e62;
  }
}


/* ============================================
   Contact – お問い合わせページ
   ============================================ */

/* MV: 他の下層ページと同じ構成 */
.lower__mainvis--contact {
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),
              url("question_mv_bg.jpg") no-repeat center center / cover;
  padding-bottom: 30px;
}

/* パンくず→h2: mapping bread_bottom(214)→h2(270)=56px */
.lower__mainvis--contact .inner ul {
  margin-bottom: 56px;
}

/* h2: mapping fontSize=36px（共通の30pxを上書き） */
.lower__mainvis--contact h2 {
  font-size: 36px;
}

/* フォームセクション */
/* フリーダイヤル→最初のラベル: 94px - MV padding-bottom(30px) = 64px */
.contact__form-section {
  padding: 64px 0 100px;
  position: relative;
}

/* 花装飾背景: mapping y=590 */
.contact__form-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("question_flower_bg.png") no-repeat center top;
  background-size: 100% auto;
  pointer-events: none;
  z-index: 0;
}

.contact__form-section .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* 説明文: 15px bold #5c4b48, center, line-height 1.67
   h2_bottom(304)→desc(369)=65px / desc_bottom(409)→phone_btn(453)=44px */
.contact__desc {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.67;
  text-align: center;
  margin-top: 65px;
  margin-bottom: 44px;
}

.contact__desc .accent {
  color: #db5e62;
}

/* 電話エリア */
.contact__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact__phone-urgent {
  display: inline-block;
  background-color: #c51813;
  border-radius: 4px;
  box-shadow: 0px 8px 12px 1px rgba(62, 62, 62, 0.15);
  padding: 10px 16px;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: bold;
  color: #ffffff;
  text-decoration: none;
  margin-bottom: 9px;
}

.contact__phone-urgent:hover {
  opacity: 0.8;
}

.contact__phone-number {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 15px;
}

.contact__phone-number a {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 36px;
  font-weight: bold;
  color: #de7a7d;
  text-decoration: none;
  line-height: 1;
}

.contact__phone-number a:hover {
  opacity: 0.8;
}

.contact__phone-free {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
}

/* フォーム */
.contact__form {
  width: 100%;
  max-width: 930px;
}

.contact__form-group {
  margin-bottom: 28px;
}

.contact__label {
  display: block;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 2.5;
}

.contact__label .required {
  color: #c51813;
}

.contact__input {
  width: 582px;
  height: 56px;
  background-color: #ffffff;
  border: none;
  border-radius: 8px;
  box-shadow: 0px 1px 11px rgba(4, 0, 0, 0.21);
  padding: 0 22px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 2.5;
  box-sizing: border-box;
}

.contact__input::placeholder {
  color: #bebebe;
}

.contact__input--wide {
  width: 100%;
}

.contact__textarea {
  width: 100%;
  height: 162px;
  background-color: #ffffff;
  border: none;
  border-radius: 8px;
  box-shadow: 0px 1px 11px rgba(4, 0, 0, 0.21);
  padding: 18px 22px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1.67;
  box-sizing: border-box;
  resize: vertical;
}

.contact__textarea::placeholder {
  color: #bebebe;
}

/* 同意チェックボックス */
.contact__agree {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 60px;
  margin-bottom: 27px;
}

.contact__agree-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  margin-bottom: 14px;
}

.contact__agree-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border-radius: 2px;
  box-shadow: 0px 1px 11px rgba(4, 0, 0, 0.21);
  accent-color: #db5e62;
  cursor: pointer;
}

.contact__agree-text {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  line-height: 1;
}

.contact__agree-text .underline {
  text-decoration: underline;
}

.contact__agree-text .required {
  color: #c51813;
}

.contact__agree-note {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
}

.contact__agree-note .required {
  color: #c51813;
}

.contact__agree-note span {
  color: #5c4b48;
}

/* 送信ボタン: w=160, h=50, bg=#db5e62, border=1px solid #5c4b48, radius=8px */
.contact__submit {
  display: block;
  width: 160px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  margin: 0 auto;
  background-color: #db5e62;
  border: none;
  border-radius: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 0.2em;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s;
}

.contact__submit:hover {
  opacity: 0.8;
}

/* フィールドごとのエラー表示 */
.contact__field-error {
  font-family: "Noto Serif JP", serif;
  font-size: 14px;
  font-weight: bold;
  color: #c51813;
  margin-top: 6px;
  line-height: 1.4;
}

/* エラー表示（まとめ） */
.contact__errors {
  width: 100%;
  max-width: 930px;
  margin-bottom: 30px;
  padding: 20px 24px;
  background-color: #fdf0f0;
  border: 1px solid #c51813;
  border-radius: 8px;
}

.contact__errors ul {
  list-style: none;
}

.contact__errors li {
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  font-weight: bold;
  color: #c51813;
  line-height: 2;
}

/* 確認ページ */
.contact__confirm-lead {
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  text-align: center;
  margin-bottom: 40px;
}

.contact__confirm {
  width: 100%;
  max-width: 930px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 1px 11px rgba(4, 0, 0, 0.21);
  padding: 40px 50px;
  margin-bottom: 40px;
}

.contact__confirm-list {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
}

.contact__confirm-list dt {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  font-weight: bold;
  color: #5c4b48;
  padding: 20px 0;
  border-bottom: 1px solid #e0d6d0;
}

.contact__confirm-list dd {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  color: #333;
  padding: 20px 0;
  border-bottom: 1px solid #e0d6d0;
}

.contact__confirm-list dt:last-of-type,
.contact__confirm-list dd:last-of-type {
  border-bottom: none;
}

.contact__confirm-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.contact__btn-back {
  display: block;
  width: 160px;
  height: 50px;
  line-height: 50px;
  padding: 0;
  background-color: #ffffff;
  border: none;
  border-radius: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #5c4b48;
  letter-spacing: 0.2em;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s;
}

.contact__btn-back:hover {
  opacity: 0.8;
}

/* 完了ページ */
.contact__complete {
  text-align: center;
  padding: 60px 0;
}

.contact__complete-title {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: bold;
  color: #5c4b48;
  margin-bottom: 30px;
}

.contact__complete-text {
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  color: #5c4b48;
  line-height: 2;
  margin-bottom: 50px;
}

.contact__btn-home {
  display: inline-block;
  width: 240px;
  height: 50px;
  line-height: 50px;
  background-color: #db5e62;
  border: none;
  border-radius: 8px;
  font-family: "Noto Serif JP", serif;
  font-size: 18px;
  font-weight: bold;
  color: #ffffff;
  letter-spacing: 0.1em;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.3s;
}

.contact__btn-home:hover {
  opacity: 0.8;
}

/* --- Contact レスポンシブ --- */
@media (max-width: 768px) {
  .lower__mainvis--contact .inner ul {
    margin-bottom: 30px;
  }

  .lower__mainvis--contact h2 {
    font-size: 26px;
  }

  .lower__mainvis--contact {
    padding-bottom: 24px;
  }

  .contact__desc {
    font-size: 13px;
    margin-top: 30px;
    margin-bottom: 24px;
  }

  .contact__desc br {
    display: none;
  }

  .contact__phone-urgent {
    font-size: 13px;
    padding: 8px 14px;
  }

  .contact__phone-number a {
    font-size: 28px;
  }

  .contact__phone-number img {
    width: 22px;
  }

  .contact__phone-free {
    font-size: 13px;
  }

  .contact__form-section {
    padding: 40px 0 60px;
  }

  .contact__label {
    font-size: 15px;
    line-height: 2.2;
  }

  .contact__input {
    width: 100%;
    height: 48px;
    font-size: 15px;
    padding: 0 16px;
  }

  .contact__textarea {
    font-size: 15px;
    padding: 14px 16px;
  }

  .contact__agree {
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .contact__agree-text {
    font-size: 15px;
  }

  .contact__agree-note {
    font-size: 13px;
  }

  .contact__submit {
    font-size: 16px;
  }

  .contact__field-error {
    font-size: 13px;
  }

  .contact__errors {
    margin-bottom: 20px;
    padding: 16px 18px;
  }

  .contact__errors li {
    font-size: 13px;
  }

  .contact__confirm-lead {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .contact__confirm {
    padding: 24px 20px;
    margin-bottom: 30px;
  }

  .contact__confirm-list {
    grid-template-columns: 1fr;
  }

  .contact__confirm-list dt {
    font-size: 14px;
    padding: 16px 0 4px;
    border-bottom: none;
  }

  .contact__confirm-list dd {
    font-size: 15px;
    padding: 4px 0 16px;
  }

  .contact__confirm-buttons {
    gap: 12px;
  }

  .contact__btn-back {
    width: 140px;
    height: 46px;
    font-size: 16px;
  }

  .contact__complete-title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .contact__complete-text {
    font-size: 14px;
  }

  .contact__complete-text br {
    display: none;
  }

  .contact__btn-home {
    width: 200px;
    height: 46px;
    line-height: 46px;
    font-size: 16px;
  }
}
