@charset "UTF-8";
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  color: #5b3a31;
  -webkit-font-smoothing: antialiased;
}

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

ul {
  list-style: none;
}

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

.btn-mail {
  width: 250px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  background: #f49d97;
  color: #fff;
  border-radius: 50px;
  font-size: 1.4rem;
  font-weight: 500;
  white-space: nowrap;
  transition: opacity 0.3s;
}
.btn-mail:hover {
  opacity: 0.8;
}
.btn-mail__icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
.btn-mail--lg {
  padding: 14px 32px;
  font-size: 1.5rem;
}

.btn-tel {
  width: 250px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  gap: 8px;
  padding: 8px 20px;
  border: 2px solid #f49d97;
  border-radius: 50px;
  color: #f49d97;
  transition: background 0.3s;
  white-space: nowrap;
}
.btn-tel:hover {
  background: #fdf6f4;
}
.btn-tel__icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.btn-tel__info {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.btn-tel__number {
  font-size: 1.8rem;
  font-weight: 700;
}
.btn-tel__hours {
  font-size: 1rem;
  color: #f49d97;
}
.btn-tel--bar {
  gap: 10px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: transparent;
  z-index: 100;
  transition: background 0.3s, box-shadow 0.3s;
}
.header.is-scrolled {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.header__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 20px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 20px;
}
.header__logo {
  flex-shrink: 0;
}
.header__logo-img {
  height: 50px;
  width: auto;
}
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}
.header__nav-list {
  display: flex;
  gap: 24px;
}
.header__nav-list a {
  font-size: 1.3rem;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.3s;
}
.header__nav-list a:hover {
  color: #f49d97;
}
.header__hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 32px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}
.header__hamburger span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #f49d97;
  border-radius: 2px;
  transition: all 0.3s;
}
.header__hamburger span:nth-child(1) {
  top: 0;
}
.header__hamburger span:nth-child(2) {
  top: 11px;
}
.header__hamburger span:nth-child(3) {
  top: 22px;
}
.header__hamburger.is-open span:nth-child(1) {
  top: 11px;
  transform: rotate(45deg);
}
.header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.header__hamburger.is-open span:nth-child(3) {
  top: 11px;
  transform: rotate(-45deg);
}
.header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .header {
    background: #fff;
  }
  .header__inner {
    justify-content: space-between;
  }
  .header__hamburger {
    display: block;
    order: 3;
  }
  .header__cta {
    display: none;
  }
  .header__nav {
    position: fixed;
    top: 80px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    padding: 24px 20px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    z-index: 99;
  }
  .header__nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .header__nav-list {
    flex-direction: column;
    gap: 0;
  }
  .header__nav-list li {
    border-bottom: 1px solid #fdf6f4;
  }
  .header__nav-list a {
    display: block;
    padding: 14px 8px;
    font-size: 1.5rem;
  }
}

.hero {
  position: relative;
  background: #fdf6f4 url("../img/hero/bg_hero.png") no-repeat top left/100% auto;
  overflow: hidden;
  min-height: 100vh;
}
.hero__bg img {
  width: 100%;
  height: auto;
}
.hero__bg--pc {
  position: absolute;
  top: 0;
  right: -120px;
  width: 65%;
  height: 100%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.hero__bg--pc img {
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right center;
     object-position: right center;
}
.hero__bg--sp {
  display: none;
}
.hero__decoration {
  position: absolute;
  z-index: 2;
  opacity: 0.6;
}
.hero__decoration--dots-left {
  bottom: 150px;
  left: 20px;
}
.hero__decoration--dots-right {
  bottom: 0px;
  right: 240px;
}
.hero__decoration img {
  width: 80px;
}
.hero__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: calc(80px + 40px) 40px 60px;
  position: relative;
  z-index: 3;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero__label {
  font-family: "Dancing Script", cursive;
  font-size: 3.2rem;
  color: #f49d97;
  margin-bottom: 4px;
  line-height: 1;
}
.hero__label-line {
  margin-bottom: 20px;
}
.hero__label-line img {
  width: 180px;
}
.hero__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(4.4rem, 4vw, 5.6rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}
.hero__title--accent {
  color: #f49d97;
}
.hero__subtitle {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 40px;
}
.hero__subtitle--accent {
  color: #f49d97;
  font-weight: 700;
}
.hero__services {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}
.hero__service-item {
  width: 125px;
  height: 125px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
.hero__service-item img {
  width: 36px;
  height: 36px;
  -o-object-fit: contain;
     object-fit: contain;
}
.hero__service-item span {
  font-size: 1.1rem;
  font-weight: 500;
  white-space: nowrap;
  line-height: 1.2;
}
.hero__service-badge {
  width: 125px;
  height: 125px;
  background: #f49d97;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__service-badge-text {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.hero__cta-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 10px;
  padding: 12px 28px 12px 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}
.hero__cta-bar-illust {
  flex-shrink: 0;
  width: 90px;
  height: 70px;
  overflow: hidden;
}
.hero__cta-bar-illust img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
.hero__cta-bar-text {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
  flex-shrink: 0;
}
@media screen and (max-width: 1023px) {
  .hero__bg--pc {
    display: none;
  }
  .hero__bg--sp {
    display: block;
    margin-right: -40%;
  }
  .hero__inner {
    padding: calc(80px + 20px) 20px 40px;
    min-height: auto;
    display: block;
  }
  .hero__content {
    max-width: 100%;
  }
  .hero__title {
    font-size: clamp(3.2rem, 8vw, 7rem);
  }
  .hero__subtitle {
    margin-bottom: 0;
  }
  .hero__services {
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-top: -40px;
  }
  .hero__cta-bar {
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 20px;
    padding: 16px;
    gap: 12px;
  }
}
@media screen and (max-width: 767px) {
  .hero__service-item {
    width: 95px;
    height: 95px;
  }
  .hero__service-item img {
    width: 28px;
    height: 28px;
  }
  .hero__service-item span {
    font-size: 1rem;
  }
  .hero__service-badge {
    width: 95px;
    height: 95px;
  }
  .hero__service-badge-text {
    font-size: 1.2rem;
  }
  .hero__cta-bar .btn-mail,
.hero__cta-bar .btn-tel {
    width: 100%;
    justify-content: center;
  }
}

.consultation {
  position: relative;
  background: #fdf6f4;
  padding: 80px 0 60px;
  overflow: hidden;
}
.consultation__decoration {
  position: absolute;
  z-index: 0;
}
.consultation__decoration--left {
  left: 0;
  bottom: 0;
}
.consultation__decoration--left img {
  width: clamp(150px, 37vw, 280px);
}
.consultation__decoration--right {
  right: 0;
  bottom: 10%;
}
.consultation__decoration--right img {
  width: clamp(60px, 19vw, 220px);
}
.consultation__inner {
  width: min(90%, 1320px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.consultation__heading {
  text-align: center;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 48px;
}
.consultation__heading--accent {
  color: #f49d97;
}
.consultation__heading-sub {
  font-size: 0.7em;
}
.consultation__cards {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
}
.consultation__card {
  flex: 1;
  background: #fff;
  border: 1px solid #f5c4c6;
  border-radius: 16px;
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.consultation__card-illust {
  flex-shrink: 0;
  width: 140px;
  display: flex;
  align-items: center;
}
.consultation__card-illust img {
  width: 100%;
  height: 250px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
.consultation__card-body {
  flex: 1;
}
.consultation__card-title {
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 700;
  color: #f49d97;
  background: #fbe8e8;
  padding: 4px 16px;
  border-radius: 4px;
  margin-bottom: 20px;
}
.consultation__card-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.consultation__card-list li {
  position: relative;
  padding-left: 30px;
  padding-bottom: 14px;
  font-size: 1.8rem;
  line-height: 1.6;
  border-bottom: 2px dotted #f5c4c6;
}
.consultation__card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 20px;
  height: 20px;
  background: #f49d97;
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='white'%3E%3Cpath d='M8.5 13.5L5 10l1.06-1.06L8.5 11.38l5.44-5.44L15 7l-6.5 6.5z'/%3E%3C/svg%3E");
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
}
.consultation__footer {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.5;
}
.consultation__footer--accent {
  color: #f49d97;
  font-size: 3.2rem;
}
.consultation__arrow {
  text-align: center;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .consultation__cards {
    flex-direction: column;
  }
  .consultation__card {
    flex-direction: column;
    align-items: center;
    text-align: left;
  }
  .consultation__card-illust {
    width: 150px;
  }
  .consultation__heading {
    font-size: 2rem;
  }
  .consultation__footer {
    font-size: 2rem;
  }
  .consultation__footer--accent {
    font-size: 2.4rem;
  }
}

.service {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.service__bg-top {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 400px;
  z-index: 0;
  background: url("../img/service/bg_service-01.jpg") no-repeat top right/contain;
}
.service__bg-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
  height: 340px;
  z-index: 0;
  background: url("../img/service/bg_service-02.jpg") no-repeat bottom left/contain;
}
.service__inner {
  width: min(90%, 1080px);
  margin: 0 auto;
  padding: 80px 0 100px;
  position: relative;
  z-index: 1;
}
.service__header {
  text-align: center;
  margin-bottom: 48px;
}
.service__label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-weight: 600;
  color: #f49d97;
  margin-bottom: 12px;
}
.service__label-line {
  display: inline-block;
  width: 60px;
  height: 1px;
  background: #f49d97;
}
.service__title {
  font-size: clamp(2.2rem, 4vw, 4.6rem);
  font-weight: 700;
  margin-bottom: 20px;
}
.service__desc {
  line-height: 2;
  color: #5b3a31;
}
.service__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 56px;
}
.service__card {
  background: #fff;
  border: 2px solid #f5c4c6;
  border-radius: 16px;
  padding: 28px;
}
.service__card-img {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 16px;
}
.service__card-img img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.service__card-sub {
  font-size: 1.4rem;
  color: #666;
  text-align: center;
  margin-bottom: 4px;
}
.service__card-title {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}
.service__card--pink .service__card-title {
  color: #f49d97;
}
.service__card--green .service__card-title {
  color: #94b859;
}
.service__card--yellow .service__card-title {
  color: #f7c962;
}
.service__card--blue .service__card-title {
  color: #83a3d0;
}
.service__card--pink {
  border-color: rgba(244, 157, 151, 0.3);
}
.service__card--green {
  border-color: rgba(148, 184, 89, 0.3);
}
.service__card--yellow {
  border-color: rgba(247, 201, 98, 0.3);
}
.service__card--blue {
  border-color: rgba(131, 163, 208, 0.3);
}
.service__card-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service__card-list li {
  position: relative;
  padding-left: 24px;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
}
.service__card-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.8rem;
}
.service__card--pink .service__card-list li::before {
  color: #f49d97;
}
.service__card--green .service__card-list li::before {
  color: #94b859;
}
.service__card--yellow .service__card-list li::before {
  color: #f7c962;
}
.service__card--blue .service__card-list li::before {
  color: #83a3d0;
}
.service__footer {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.8;
}
.service__footer--accent {
  color: #f49d97;
}
.service__arrow {
  text-align: center;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .service__grid {
    grid-template-columns: 1fr;
  }
  .service__title {
    font-size: 2.8rem;
  }
  .service__footer {
    font-size: 2rem;
  }
}

.strengths {
  position: relative;
  background: url("../img/strengths/bg_strengths.jpg") no-repeat center center/cover;
  overflow: hidden;
}
.strengths__inner {
  width: min(90%, 1320px);
  margin: 0 auto;
  padding: 80px 0 40px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.strengths__content {
  flex: 1;
  min-width: 0;
}
.strengths__label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: clamp(1.6rem, 5vw, 1.8rem);
  font-weight: 600;
  color: #f49d97;
  margin-bottom: 12px;
}
.strengths__label-dots {
  display: inline-block;
  width: 40px;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #f5c4c6 0, #f5c4c6 4px, transparent 4px, transparent 8px);
}
.strengths__title {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 700;
  margin-bottom: 28px;
  line-height: 1.4;
}
.strengths__title--large {
  font-size: 1.5em;
  color: #f49d97;
}
.strengths__tags {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}
.strengths__tag {
  display: inline-block;
  padding: 6px 20px;
  border-radius: 4px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
}
.strengths__tag--pink {
  background: #f49d97;
}
.strengths__tag--yellow {
  background: #f7c962;
}
.strengths__tag--green {
  background: #94b859;
}
.strengths__text {
  margin-bottom: 28px;
}
.strengths__text p {
  font-size: 1.5rem;
  line-height: 2;
  margin-bottom: 4px;
}
.strengths__closing {
  font-size: 1.8rem;
  line-height: 1.8;
}
.strengths__closing strong {
  font-weight: 700;
}
.strengths__visual {
  flex-shrink: 0;
  width: 620px;
  position: relative;
  align-self: center;
  margin-top: 130px;
}
.strengths__chart {
  width: 100%;
}
.strengths__people {
  position: absolute;
  bottom: -2%;
  left: -1%;
  transform: translateX(-50%);
  z-index: 2;
}
.strengths__people img {
  width: 400px;
}
@media screen and (max-width: 767px) {
  .strengths__inner {
    flex-direction: column;
  }
  .strengths__visual {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
  .strengths__title {
    font-size: 2.4rem;
  }
  .strengths__title--large {
    font-size: 3.4rem;
  }
  .strengths__people {
    bottom: -10%;
    left: -5%;
  }
  .strengths__people img {
    width: 200px;
  }
  .strengths__tags {
    flex-wrap: wrap;
  }
}

.cta-section {
  position: relative;
  background: #f49d97;
  padding: 56px 40px;
  overflow: hidden;
}
.cta-section__decoration {
  position: absolute;
  z-index: 0;
}
.cta-section__decoration--left {
  left: 0;
  bottom: -2%;
}
.cta-section__decoration--left img {
  width: 130px;
}
.cta-section__decoration--right {
  right: 0;
  top: 0;
}
.cta-section__decoration--right img {
  width: 180px;
}
.cta-section__inner {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-section__title {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}
.cta-section__subtitle {
  font-weight: 600;
  color: #fff;
  margin-bottom: 32px;
}
.cta-section__buttons {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.cta-section__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 18px 48px;
  width: 300px;
  background: #fff;
  border-radius: 60px;
  color: #f49d97;
  font-size: 1.6rem;
  font-weight: 700;
  transition: opacity 0.3s;
}
.cta-section__btn:hover {
  opacity: 0.85;
}
.cta-section__btn img {
  width: 24px;
  height: 24px;
  -o-object-fit: contain;
     object-fit: contain;
}
.cta-section__btn--tel div {
  display: flex;
  flex-direction: column;
  text-align: left;
  line-height: 1.3;
}
.cta-section__btn-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: #5b3a31;
}
.cta-section__btn-hours {
  font-size: 1.1rem;
  color: #666;
}
@media screen and (max-width: 767px) {
  .cta-section {
    padding: 40px 20px;
  }
  .cta-section__title {
    font-size: 2.4rem;
  }
  .cta-section__buttons {
    flex-direction: column;
    align-items: center;
  }
  .cta-section__btn {
    width: 100%;
    max-width: 320px;
    justify-content: center;
  }
  .cta-section__decoration--right {
    right: 0;
    bottom: 40px;
    top: auto;
  }
  .cta-section__decoration--right img {
    width: auto;
    height: 200px;
  }
  .cta-section__decoration--left img {
    width: 65px;
  }
}

.case {
  position: relative;
  background: #fff;
  overflow: hidden;
}
.case__steps-decoration {
  position: absolute;
  z-index: 0;
}
.case__steps-decoration--left {
  left: 5px;
  top: 70px;
  transform: translateY(-50%);
}
.case__steps-decoration--left img {
  width: 110px;
}
.case__steps-decoration--right {
  right: 0;
  top: 25%;
  transform: translateY(-50%) scaleX(-1);
}
.case__steps-decoration--right img {
  width: 100px;
}
.case__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 80px 40px;
  position: relative;
  z-index: 1;
}
.case__title {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.case__desc {
  text-align: center;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 48px;
  color: #666;
}
.case__example-label {
  display: inline-block;
  background: #8b7355;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 20px;
  margin: 0 auto 12px;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.case__example {
  text-align: center;
}
.case__example--yellow {
  margin-top: 60px;
}
.case__example-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #5b3a31;
}
.case__example-title-dots {
  display: inline-block;
  width: 60px;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #ccc 0, #ccc 4px, transparent 4px, transparent 8px);
}
.case__situation {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 0;
  text-align: left;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}
.case__situation-illust {
  flex-shrink: 0;
  width: 160px;
}
.case__situation-illust img {
  width: 100%;
}
.case__situation-box {
  position: relative;
  background: #fdf6f4;
  border: 1px solid #f5c4c6;
  border-radius: 12px;
  padding: 24px 28px;
  flex: 1;
}
.case__situation-box::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 32px;
  border-width: 10px 16px 10px 0;
  border-style: solid;
  border-color: transparent #f5c4c6 transparent transparent;
}
.case__situation-box::after {
  content: "";
  position: absolute;
  left: -14px;
  top: 33px;
  border-width: 9px 14px 9px 0;
  border-style: solid;
  border-color: transparent #fdf6f4 transparent transparent;
}
.case__situation-box p {
  font-size: 1.4rem;
  line-height: 1.8;
}
.case__situation-label {
  font-size: 1.8rem;
  font-weight: 700;
  color: #f49d97;
  margin-bottom: 8px;
}
.case__sub-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 32px;
}
.case__sub-heading-dots {
  display: inline-block;
  width: clamp(30px, 7vw, 60px);
  height: 2px;
  background-image: repeating-linear-gradient(to right, #ccc 0, #ccc 4px, transparent 4px, transparent 8px);
}
.case__steps-wrap {
  position: relative;
  background: #fdf6f4;
  padding: 40px 0 56px;
  margin-bottom: 56px;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}
.case__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: left;
}
.case__step {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.case__step-title {
  font-size: clamp(1.6rem, 4vw, 1.8rem);
  height: 90px;
  font-weight: 700;
  padding: 16px 16px 12px;
  line-height: 1.5;
  color: #5c4a32;
  display: flex;
  align-items: center;
  min-height: 70px;
}
.case__step-check {
  color: #f49d97;
  margin-right: 6px;
  flex-shrink: 0;
  font-size: 1.6rem;
}
.case__step-img img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}
.case__step-list {
  padding: 16px;
  flex: 1;
}
.case__step-list li {
  font-weight: 600;
  line-height: 1.7;
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}
.case__step-list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.case__merits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}
.case__merit {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  padding: 6px;
  text-align: center;
}
.case__merit-inner {
  border-radius: 12px;
  padding: 28px 24px;
}
.case__merit--yellow .case__merit-inner {
  background: #fff7e5;
}
.case__merit--green .case__merit-inner {
  background: #f2fde0;
}
.case__merit--pink .case__merit-inner {
  background: #ffeeed;
}
.case__merit-icon {
  width: auto;
  height: 100px;
  margin-inline: auto;
}
.case__merit-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom;
     object-position: bottom;
}
.case__merit-label {
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  padding: 6px 24px;
  border-radius: 6px;
  margin-bottom: 20px;
}
.case__merit--yellow .case__merit-label {
  background: #f7c962;
}
.case__merit--green .case__merit-label {
  background: #94b859;
}
.case__merit--pink .case__merit-label {
  background: #f49d97;
}
.case__merit-list {
  text-align: left;
}
.case__merit-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 10px;
}
.case__merit-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
}
.case__merit--yellow .case__merit-list li::before {
  background: #d4a94b;
}
.case__merit--green .case__merit-list li::before {
  background: #6bab8d;
}
.case__merit--pink .case__merit-list li::before {
  background: #f49d97;
}
.case__example-label--yellow {
  background: #8b7355;
}
.case__example-title-dots--yellow {
  background-image: repeating-linear-gradient(to right, #d4a94b 0, #d4a94b 4px, transparent 4px, transparent 8px);
}
.case__situation-box--yellow {
  background: #fff8ed;
  border-color: #e8d5a8;
}
.case__situation-box--yellow::before {
  border-color: transparent #e8d5a8 transparent transparent;
}
.case__situation-box--yellow::after {
  border-color: transparent #fff8ed transparent transparent;
}
.case__situation-label--yellow {
  color: #d4a94b;
}
.case__steps-wrap--yellow {
  background: #fff8ed;
}
.case__step-check--yellow {
  color: #d4a94b;
}
@media screen and (max-width: 767px) {
  .case__steps {
    grid-template-columns: 1fr;
  }
  .case__steps-decoration {
    display: none;
  }
  .case__steps-wrap {
    padding: 24px 16px;
  }
  .case__merits {
    grid-template-columns: 1fr;
  }
  .case__situation {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 20px;
  }
  .case__situation-illust {
    width: 100px;
  }
  .case__situation-box::before, .case__situation-box::after {
    display: none;
  }
}

.price__inner {
  max-width: 1100px;
  margin-bottom: 60px;
  padding: 40px 40px;
  background: #fdf6f4;
  border-radius: 24px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .price__inner {
    padding-inline: 20px;
  }
}
.price__title {
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.price__title-icon {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
.price__content {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.price__left {
  flex: 1;
}
.price__table {
  border: 1px solid #f5c4c6;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 10px;
}
.price__table-header {
  background: #f49d97;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  padding: 14px 28px;
}
.price__table-header span {
  font-size: 1.8rem;
  font-weight: 500;
}
.price__table-row {
  display: flex;
  align-items: center;
  background: #fff;
}
.price__table-label {
  white-space: nowrap;
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  font-size: 2rem;
  font-weight: 700;
  border-right: 1px solid #f5c4c6;
}
.price__table-icon {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
}
.price__table-value {
  padding: 20px 40px;
  font-size: 3.2rem;
  font-weight: 700;
  color: #f49d97;
  white-space: nowrap;
}
.price__notes {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  margin-bottom: 10px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f5c4c6;
}
.price__notes-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-top: 2px;
  -o-object-fit: contain;
     object-fit: contain;
}
.price__notes p {
  font-size: 1.4rem;
  line-height: 1.8;
  color: #666;
}
.price__notes-accent {
  color: #f49d97;
  font-weight: 700;
}
.price__other {
  background: #fff;
  border: 1px solid #f5c4c6;
  border-radius: 12px;
  padding: 20px 24px;
}
.price__other-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 2.2rem;
  font-weight: 700;
  color: #f49d97;
  margin-bottom: 10px;
}
.price__other-icon {
  width: 34px;
  height: 34px;
  -o-object-fit: contain;
     object-fit: contain;
}
.price__other-text {
  font-size: 1.6rem;
  color: #5b3a31;
}
.price__right {
  width: 420px;
  flex-shrink: 0;
}
.price__usage-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #f49d97;
  margin-bottom: 24px;
}
.price__usage-list li {
  position: relative;
  padding-left: 30px;
  font-size: 1.8rem;
  line-height: 1.8;
  margin-bottom: 12px;
}
.price__usage-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 2px;
  color: #f49d97;
  font-size: 1.4rem;
  font-weight: 700;
}
.price__usage-illust {
  text-align: right;
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
}
.price__usage-illust img {
  width: 160px;
}
@media screen and (max-width: 767px) {
  .price__content {
    flex-direction: column;
  }
  .price__right {
    width: 100%;
  }
  .price__table-icon {
    width: 18px;
    height: 18px;
  }
  .price__table-label {
    padding: 10px 18px;
    font-size: 1.8rem;
  }
  .price__table-value {
    padding: 20px 30px;
    font-size: 2.4rem;
  }
}

.area {
  margin-bottom: 40px;
}
.area__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 48px;
  background: #fdf6f4;
  border-radius: 24px;
  display: flex;
  gap: 40px;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .area__inner {
    padding-inline: 20px;
  }
}
.area__left {
  flex: 1;
}
.area__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 3.6rem;
  font-weight: 700;
  color: #f49d97;
  margin-bottom: 8px;
}
.area__title-icon {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.area__title-line {
  width: 100%;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #f5c4c6 0, #f5c4c6 4px, transparent 4px, transparent 8px);
  margin-bottom: 24px;
}
.area__subtitle {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.area__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 24px;
}
.area__tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid #f5c4c6;
  border-radius: 100vh;
  font-size: 1.4rem;
  background: #fff;
}
.area__note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 12px;
  padding: 16px 20px;
  margin-bottom: 16px;
}
.area__note-icon {
  width: 28px;
  height: 28px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}
.area__note p {
  line-height: 1.5;
}
.area__tel {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fdf6f4;
  border: 2px solid #f5c4c6;
  border-radius: 12px;
  padding: 16px 24px;
  transition: opacity 0.3s;
}
.area__tel:hover {
  opacity: 0.7;
}
.area__tel-icon {
  width: 42px;
  height: 42px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.area__tel-label {
  font-size: clamp(1rem, 3vw, 1.3rem);
  color: #f49d97;
  font-weight: 500;
}
.area__tel-number {
  font-size: 3.2rem;
  font-weight: 700;
  color: #5b3a31;
  line-height: 1.2;
}
.area__tel-hours {
  font-size: 1.4rem;
  font-weight: 400;
  color: #f49d97;
}
.area__map {
  flex-shrink: 0;
  width: 420px;
  height: 450px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
}
.area__map img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .area__inner {
    flex-direction: column;
  }
  .area__map {
    width: 100%;
  }
}

.flow {
  position: relative;
  background: #fdf6f4;
  padding: 80px 0;
  overflow: hidden;
}
.flow__decoration {
  position: absolute;
  z-index: 0;
}
.flow__decoration--left {
  left: 0;
  top: -55px;
}
.flow__decoration--left img {
  width: clamp(120px, 54vw, 280px);
}
.flow__decoration--right {
  right: 0;
  bottom: 0;
}
.flow__decoration--right img {
  width: clamp(180px, 57vw, 400px);
}
.flow__inner {
  width: min(90%, 1320px);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.flow__title {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}
.flow__desc {
  text-align: center;
  font-size: 1.5rem;
  line-height: 2;
  color: #666;
  margin-bottom: 48px;
}
.flow__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 24px;
}
.flow__grid--bottom {
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}
.flow__dots {
  width: 40px;
  flex-shrink: 0;
  align-self: center;
  margin: 0 8px;
}
.flow__card {
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px 20px;
  text-align: center;
  position: relative;
  flex: 1;
  margin-top: 22px;
}
.flow__card--wide {
  flex: 1;
}
.flow__card-num {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  background: #f49d97;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.flow__card-icon {
  margin: 24px auto 12px;
  width: 75px;
  height: 75px;
}
.flow__card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.flow__card-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.flow__card-text {
  font-size: 1.3rem;
  line-height: 1.8;
  color: #5b3a31;
  text-align: center;
  margin-bottom: 12px;
}
.flow__card-note {
  font-size: 1.1rem;
  color: #f49d97;
  margin-bottom: 12px;
}
.flow__card-img {
  margin-top: auto;
}
.flow__card-img img {
  width: 100%;
  aspect-ratio: 2.5/1;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
}
.flow__card-img--small {
  margin: 0;
  flex-shrink: 0;
  width: 140px;
}
.flow__card-img--small img {
  border-radius: 8px;
  aspect-ratio: 4/3;
}
.flow__card-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
  padding-bottom: 24px;
}
.flow__card-row .flow__card-text {
  text-align: left;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .flow__grid {
    flex-direction: column;
    align-items: center;
  }
  .flow__dots {
    transform: rotate(90deg);
    margin: 8px 0;
  }
  .flow__card {
    width: 100%;
    max-width: 360px;
  }
  .flow__card-row {
    flex-direction: column;
  }
  .flow__card-img--small {
    width: 100%;
  }
}

.company {
  position: relative;
  overflow: hidden;
}
.company__img {
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
  z-index: 0;
}
.company__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 60px 40px 60px;
  position: relative;
  z-index: 1;
}
.company__label {
  font-family: "Dancing Script", cursive;
  font-size: 2.4rem;
  color: #f49d97;
  line-height: 1;
  margin-bottom: 4px;
}
.company__title {
  font-size: 3.6rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.company__overlay {
  background: #fff;
  max-width: 60%;
  border-left: 10px solid #f49d97;
  border-radius: 5px 0 0 5px;
}
.company__table {
  width: 100%;
  border-collapse: collapse;
}
.company__table tr {
  border-bottom: 1px solid #f5c4c6;
}
.company__table th {
  text-align: left;
  font-size: 1.6rem;
  font-weight: 700;
  padding: 16px 20px;
  white-space: nowrap;
  width: 160px;
  vertical-align: top;
}
.company__table td {
  font-size: 1.5rem;
  padding: 16px 20px;
}
@media screen and (max-width: 767px) {
  .company__img {
    position: relative;
    width: 100%;
    height: auto;
  }
  .company__inner {
    margin-top: -220px;
  }
  .company__overlay {
    max-width: 100%;
  }
  .company__table th,
.company__table td {
    display: block;
    width: 100%;
  }
  .company__table th {
    padding-bottom: 4px;
  }
  .company__table td {
    padding-top: 0;
    padding-bottom: 16px;
  }
}

.faq {
  position: relative;
  background: #fff;
  padding: 80px 0;
  overflow: hidden;
}
.faq__decoration {
  position: absolute;
  z-index: 0;
}
.faq__decoration--left {
  left: -60px;
  top: 40px;
}
.faq__decoration--left img {
  width: 360px;
}
.faq__decoration--right {
  right: -150px;
  bottom: 0px;
}
.faq__decoration--right img {
  width: 560px;
}
.faq__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.faq__header {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  gap: 16px;
  margin-bottom: 40px;
}
.faq__title {
  font-size: clamp(2.2rem, 4vw, 4.2rem);
  font-weight: 700;
}
.faq__nurse {
  width: 140px;
  flex-shrink: 0;
}
.faq__nurse img {
  width: 100%;
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.faq__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq__col:nth-child(2) {
  margin-top: 60px;
}
.faq__item {
  background: #fff;
  border: 1px solid #f5c4c6;
  border-radius: 12px;
  padding: 24px;
}
.faq__question {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.7rem;
  font-weight: 700;
  padding-bottom: 16px;
  border-bottom: 2px dotted #f5c4c6;
  margin-bottom: 16px;
}
.faq__q {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #8b7355;
  color: #fff;
  border-radius: 6px;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}
.faq__answer {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.faq__a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #f49d97;
  color: #fff;
  border-radius: 6px;
  font-size: 1.4rem;
  font-weight: 700;
  flex-shrink: 0;
}
.faq__answer p {
  font-size: 1.4rem;
  line-height: 1.8;
  padding-top: 2px;
}
@media screen and (max-width: 767px) {
  .faq__grid {
    grid-template-columns: 1fr;
  }
  .faq__header {
    justify-content: center;
  }
}

.footer-cta {
  background: linear-gradient(to bottom, #fff 0%, #fdf6f4 100%);
  padding: 80px 0 0;
  overflow: hidden;
  padding-bottom: 60px;
}
.footer-cta__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer-cta__box {
  position: relative;
}
.footer-cta__content {
  position: relative;
  background: #fff;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}
.footer-cta__heading-img {
  width: 320px;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.footer-cta__title {
  font-size: clamp(2.2rem, 4vw, 5.2rem);
  font-weight: 700;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.footer-cta__title--accent {
  color: #f49d97;
}
.footer-cta__subtitle {
  font-size: clamp(2.2rem, 4vw, 2.6rem);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.footer-cta__subtitle--accent {
  color: #f49d97;
  font-weight: 700;
}
.footer-cta__features {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}
.footer-cta__feature {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-cta__feature img {
  width: 48px;
  height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-cta__feature span {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.5;
}
.footer-cta__bubble {
  position: absolute;
  right: 40px;
  top: -20%;
  transform: translateY(-50%);
}
.footer-cta__bubble img {
  width: 240px;
}
.footer-cta__buttons {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.footer-cta__btn-mail {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #f49d97;
  color: #fff;
  border-radius: 12px;
  padding: 20px 32px;
  flex: 1;
  transition: opacity 0.3s;
}
.footer-cta__btn-mail:hover {
  opacity: 0.85;
}
.footer-cta__btn-mail img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.footer-cta__btn-mail-sub {
  font-size: 1.1rem;
  display: block;
}
.footer-cta__btn-mail-main {
  font-size: 2rem;
  font-weight: 700;
  display: block;
}
.footer-cta__btn-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  gap: 12px;
  border: 2px solid #f49d97;
  border-radius: 12px;
  padding: 16px 28px;
  flex: 1;
  transition: background 0.3s;
}
.footer-cta__btn-tel:hover {
  background: #fdf6f4;
}
.footer-cta__btn-tel-icon {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  flex-shrink: 0;
}
.footer-cta__btn-tel-info {
  display: flex;
  flex-direction: column;
}
.footer-cta__btn-tel-top {
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-cta__btn-tel-label {
  font-size: 1.3rem;
  font-weight: 700;
  color: #5b3a31;
}
.footer-cta__btn-tel-hours {
  font-size: 1.1rem;
  color: #666;
}
.footer-cta__btn-tel-number {
  font-size: 3.4rem;
  font-weight: 700;
  color: #f49d97;
  white-space: nowrap;
}
.footer-cta__image > img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 580px;
}
.footer-cta__deco {
  position: absolute;
}
.footer-cta__deco--right {
  bottom: 50px;
  right: -30px;
}
.footer-cta__deco--right img {
  transform: scaleX(-1);
  width: 65px;
}
.footer-cta__deco--left {
  bottom: 10px;
  left: -30px;
}
.footer-cta__deco--left img {
  width: 85px;
}
@media screen and (max-width: 767px) {
  .footer-cta__image {
    display: none;
  }
  .footer-cta__features {
    flex-wrap: wrap;
  }
  .footer-cta__buttons {
    flex-direction: column;
    max-width: 100%;
  }
  .footer-cta__btn-tel-top {
    gap: 2px;
  }
  .footer-cta__btn-tel-label {
    font-size: 1.2rem;
  }
  .footer-cta__btn-tel-hours {
    font-size: 0.8rem;
  }
  .footer-cta__btn-mail-main {
    font-size: 1.8rem;
  }
  .footer-cta__btn-mail {
    padding-inline: 20px;
  }
  .footer-cta__btn-mail img {
    width: 35px;
    height: 35px;
  }
  .footer-cta__btn-tel-icon {
    width: 35px;
    height: 35px;
  }
  .footer-cta__content {
    padding-inline: 20px;
  }
  .footer-cta__inner {
    padding-inline: 20px;
  }
  .footer-cta__bubble {
    display: none;
  }
  .footer-cta__deco {
    position: absolute;
  }
  .footer-cta__deco--right {
    bottom: -60px;
    right: -30px;
  }
  .footer-cta__deco--right img {
    transform: scaleX(-1);
    width: 45px;
  }
  .footer-cta__deco--left {
    bottom: -80px;
    left: -70px;
  }
  .footer-cta__deco--left img {
    width: 85px;
  }
}

.footer {
  background: #f49d97;
  padding: 32px 0 0;
}
@media screen and (max-width: 1023px) {
  .footer {
    padding-bottom: 70px;
  }
}
.footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
.footer__nav {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.footer__nav a {
  font-size: 1.3rem;
  color: #fff;
  transition: opacity 0.3s;
}
.footer__nav a:hover {
  opacity: 0.7;
}
.footer__copy {
  text-align: center;
  font-size: 1.1rem;
  background-color: white;
  color: #f49d97;
  padding-block: 0.5em;
}

.sp-fixed-bar {
  display: none;
}
@media screen and (max-width: 1023px) {
  .sp-fixed-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1);
  }
  .sp-fixed-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 0;
    font-size: 1.4rem;
    font-weight: 700;
  }
  .sp-fixed-bar a img {
    width: 20px;
    height: 20px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .sp-fixed-bar__mail {
    background: #f49d97;
    color: #fff;
  }
  .sp-fixed-bar__tel {
    background: #fff;
    color: #f49d97;
  }
}
/*# sourceMappingURL=style.css.map */