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

* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

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

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  font-style: normal;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}
@media (min-width: 993px) and (max-width: 1280px) {
  html {
    font-size: 14px;
  }
}

body {
  font-family: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #42210b;
  background-color: #ffffff;
}

:target {
  scroll-margin-top: 120px;
}
@media (max-width: 992px) {
  :target {
    scroll-margin-top: 72px;
  }
}

img[src=""],
img:not([src]) {
  background-color: #f5f5f5;
  min-height: 100px;
}

.l-inner-l {
  width: 100%;
  max-width: calc(1360px + 40px * 2);
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 992px) {
  .l-inner-l {
    padding-inline: 16px;
  }
}

.l-inner-m {
  width: 100%;
  max-width: calc(1120px + 40px * 2);
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 992px) {
  .l-inner-m {
    padding-inline: 16px;
  }
}

.l-inner-s {
  width: 100%;
  max-width: calc(1000px + 40px * 2);
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 992px) {
  .l-inner-s {
    padding-inline: 16px;
  }
}

.l-section {
  padding-block: 100px;
}
@media (max-width: 992px) {
  .l-section {
    padding-block: 60px;
  }
}

.l-header {
  position: fixed;
  top: 40px;
  left: 40px;
  right: 40px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  z-index: 100;
}
@media (max-width: 992px) {
  .l-header {
    top: 8px;
    left: 8px;
    right: 8px;
    border-radius: 6px;
  }
}

.l-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 15px 40px;
}
@media (max-width: 1280px) {
  .l-header__inner {
    gap: 16px;
    padding: 12px 24px;
  }
}
@media (max-width: 992px) {
  .l-header__inner {
    padding: 15px 20px;
  }
}

.l-header__logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
}
.l-header__logo img {
  display: block;
  height: 35px;
  width: auto;
}
@media (max-width: 1280px) {
  .l-header__logo img {
    height: 28px;
  }
}
@media (max-width: 992px) {
  .l-header__logo img {
    height: 20px;
  }
}

.l-header__buttons {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
}
@media (max-width: 1280px) {
  .l-header__buttons {
    gap: 12px;
  }
}
@media (max-width: 992px) {
  .l-header__buttons {
    display: none;
  }
}

.l-header__hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  flex-shrink: 0;
  padding: 0;
  z-index: calc(950 + 1);
  align-self: center;
}
@media (max-width: 992px) {
  .l-header__hamburger {
    display: inline-flex;
  }
}

.l-header__hamburger-icon {
  display: block;
  position: relative;
  width: 40px;
  height: 13px;
}
.l-header__hamburger-icon span {
  position: absolute;
  right: 0;
  height: 3px;
  background-color: #8d6e4e;
  border-radius: 2px;
  transition: transform 0.3s ease, top 0.3s ease, width 0.3s ease, right 0.3s ease;
}
.l-header__hamburger-icon span:nth-child(1) {
  top: 0;
  width: 40px;
}
.l-header__hamburger-icon span:nth-child(2) {
  top: 10px;
  width: 20px;
}

.l-header__hamburger-label {
  font-size: 0.625rem;
  font-weight: 500;
  color: #8d6e4e;
  letter-spacing: 0.05em;
  line-height: 1;
}

.l-header__hamburger[aria-expanded=true] .l-header__hamburger-icon span:nth-child(1) {
  top: 5px;
  right: 10px;
  width: 20px;
  transform: rotate(45deg);
}
.l-header__hamburger[aria-expanded=true] .l-header__hamburger-icon span:nth-child(2) {
  top: 5px;
  right: 10px;
  width: 20px;
  transform: rotate(-45deg);
}

.l-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(82%, 360px);
  background-color: #ffffff;
  padding: 80px 20px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 950;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
}
.l-drawer[aria-hidden=false] {
  transform: translateX(0);
}
@media (min-width: 1281px) {
  .l-drawer {
    display: none;
  }
}

.l-drawer__nav {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.l-drawer__nav li {
  border-bottom: 1px dashed #8cc63f;
}
.l-drawer__nav li:first-child {
  border-top: 1px dashed #8cc63f;
}
.l-drawer__nav a {
  display: block;
  padding: 16px 4px;
  font-size: 1rem;
  font-weight: 500;
  color: #42210b;
  text-decoration: none;
  position: relative;
}
.l-drawer__nav a::after {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #8cc63f;
  border-right: 2px solid #8cc63f;
  transform: translateY(-50%) rotate(45deg);
}

.l-drawer__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.l-drawer__buttons .c-button {
  width: 100%;
}

.l-drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  cursor: pointer;
}
.l-drawer-backdrop[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1281px) {
  .l-drawer-backdrop {
    display: none;
  }
}

body.is-drawer-open {
  overflow: hidden;
}

.l-footer {
  position: relative;
  background-color: #ffffff;
  color: #42210b;
  padding-block: 130px;
}
@media (max-width: 992px) {
  .l-footer {
    padding-top: 80px;
    padding-bottom: 100px;
  }
}

.l-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 992px) {
  .l-footer__inner {
    gap: 16px;
  }
}

.l-footer__logo {
  display: inline-flex;
}
.l-footer__logo img {
  width: 506px;
  height: 44px;
  max-width: 506px;
  margin-left: -10px;
}
@media (max-width: 992px) {
  .l-footer__logo img {
    height: 36px;
  }
}
@media (max-width: 992px) {
  .l-footer__logo {
    display: flex;
    justify-content: center;
    width: 100%;
    padding-inline: 20px;
  }
  .l-footer__logo img {
    margin-left: 0;
    width: 100%;
    height: auto;
  }
}

.l-footer__columns {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: start;
}
@media (max-width: 992px) {
  .l-footer__columns {
    grid-template-columns: 1fr auto;
    gap: 16px;
  }
}

.l-footer__company {
  display: flex;
  flex-direction: column;
  color: #999999;
}
.l-footer__company p {
  font-size: 1.6875rem;
  font-weight: 300;
  line-height: 2.125rem;
}
@media (max-width: 992px) {
  .l-footer__company p {
    font-size: 0.75rem;
    line-height: 0.875rem;
  }
}
.l-footer__company .l-footer__company-name {
  margin-bottom: 20px;
}
@media (max-width: 992px) {
  .l-footer__company .l-footer__company-name {
    margin-bottom: 10px;
  }
}
.l-footer__company .l-footer__tel {
  margin-top: 20px;
}
@media (max-width: 992px) {
  .l-footer__company .l-footer__tel {
    margin-top: 0;
    margin-bottom: 10px;
  }
}

.l-footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  list-style: none;
}
.l-footer__links li {
  line-height: 1;
}
.l-footer__links a {
  font-size: 1.6875rem;
  font-weight: 300;
  line-height: 2.125rem;
  color: #999999;
}
@media (hover: hover) {
  .l-footer__links a:hover {
    text-decoration: underline;
  }
}
@media (max-width: 992px) {
  .l-footer__links a {
    font-size: 0.75rem;
    line-height: 0.875rem;
  }
}

.l-footer__pagetop {
  position: absolute;
  right: 24px;
  bottom: 130px;
  width: 54px;
  height: 54px;
  background-color: #f39800;
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
@media (hover: hover) {
  .l-footer__pagetop:hover {
    background-color: #e08600;
  }
}
.l-footer__pagetop::before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(-45deg);
  margin-top: 4px;
}
@media (max-width: 992px) {
  .l-footer__pagetop {
    right: 16px;
    bottom: 90px;
    width: 40px;
    height: 40px;
  }
}

.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  min-width: 280px;
  padding: 12px 30px;
  border-radius: 8px;
  font-size: 1.5rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.875rem;
  color: #ffffff;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.67);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, filter 0.3s ease;
}
.c-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 10px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.c-button:not(.c-button--no-arrow) {
  padding-right: 50px;
}
@media (hover: hover) {
  .c-button:hover {
    transform: translateY(2px);
    box-shadow: 1px 1px 0 rgba(0, 0, 0, 0.67);
  }
}
@media (max-width: 1280px) {
  .c-button {
    min-width: 0;
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 10px 20px;
  }
}
@media (max-width: 992px) {
  .c-button {
    width: 100%;
  }
  .c-button:not(.c-button--no-arrow) {
    padding-right: 40px;
  }
  .c-button::after {
    right: 14px;
    width: 8px;
    height: 8px;
  }
}

.c-button--primary {
  background: linear-gradient(180deg, #ff002f 0%, #880000 100%);
}
@media (hover: hover) {
  .c-button--primary:hover {
    background: linear-gradient(180deg, #e60029 0%, #770000 100%);
  }
}

.c-button--secondary {
  background: linear-gradient(180deg, #8cc63f 0%, #009245 100%);
  text-shadow: 0 0 6px #006837, 0 0 6px #006837, 0 0 6px #006837, 0 0 6px #006837, 0 0 6px #006837;
}
.c-button--secondary .c-button__icon img {
  filter: drop-shadow(0 0 3px #006837) drop-shadow(0 0 3px #006837);
}
@media (hover: hover) {
  .c-button--secondary:hover {
    background: linear-gradient(180deg, #7eb336 0%, #00803c 100%);
  }
}

.c-button--outline {
  background-color: #ffffff;
  color: #f39800;
  border: 2px solid #f39800;
  box-shadow: none;
}
@media (hover: hover) {
  .c-button--outline:hover {
    background-color: #f39800;
    color: #ffffff;
  }
}

.c-button--lg {
  min-width: 360px;
  min-height: 80px;
  padding: 16px 64px 16px 40px;
  font-size: 1.25rem;
}
@media (max-width: 992px) {
  .c-button--lg {
    min-width: 0;
    width: 100%;
    min-height: 64px;
    padding: 12px 48px 12px 24px;
    font-size: 1rem;
  }
}

.c-button--no-arrow::after {
  display: none;
}

.c-button__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.c-button__icon img,
.c-button__icon svg {
  display: block;
  width: auto;
  height: auto;
}

.c-button__body {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.c-button__sub {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
}
@media (max-width: 992px) {
  .c-button__sub {
    font-size: 0.625rem;
  }
}

.c-button__main {
  display: block;
  font-size: inherit;
  line-height: 1.2;
}

.c-heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.4;
  color: #5a8c2e;
}

.c-heading__sub {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: #7cb342;
  margin-bottom: 8px;
}
@media (max-width: 992px) {
  .c-heading__sub {
    font-size: 0.8125rem;
  }
}

.c-heading__main {
  display: block;
  font-size: 2.25rem;
  font-weight: 700;
}
@media (max-width: 992px) {
  .c-heading__main {
    font-size: 1.375rem;
  }
}

.c-heading--lg .c-heading__main {
  font-size: 3rem;
}
@media (max-width: 992px) {
  .c-heading--lg .c-heading__main {
    font-size: 1.625rem;
  }
}

.c-heading--start {
  align-items: flex-start;
  text-align: left;
}

.c-heading--white {
  color: #ffffff;
}
.c-heading--white .c-heading__sub {
  color: #ffffff;
}

.c-cta-buttons {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
}
@media (max-width: 992px) {
  .c-cta-buttons {
    flex-direction: column;
    gap: 12px;
  }
}
.c-cta-buttons .c-button {
  flex: 0 1 360px;
}
@media (max-width: 992px) {
  .c-cta-buttons .c-button {
    flex: 1;
  }
}

.c-cta-buttons--column {
  flex-direction: column;
  align-items: center;
}
.c-cta-buttons--column .c-button {
  flex: 0 0 auto;
}

.c-tel {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  line-height: 1.3;
}

.c-tel__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #666666;
}
@media (max-width: 992px) {
  .c-tel__label {
    font-size: 0.6875rem;
  }
}

.c-tel__number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 2rem;
  font-weight: 700;
  color: #42210b;
  letter-spacing: 0.02em;
}
.c-tel__number::before {
  content: "📞";
  font-size: 0.8em;
}
@media (max-width: 992px) {
  .c-tel__number {
    font-size: 1.5rem;
  }
}

.c-tel__hours {
  font-size: 0.75rem;
  color: #666666;
  margin-top: 4px;
}
@media (max-width: 992px) {
  .c-tel__hours {
    font-size: 0.6875rem;
  }
}

.c-card {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.c-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background-color: #f5f5f5;
}
.c-card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
}
@media (max-width: 992px) {
  .c-card__body {
    padding: 16px;
  }
}

.c-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  color: #5a8c2e;
}
@media (max-width: 992px) {
  .c-card__title {
    font-size: 1rem;
  }
}

.c-card__text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #42210b;
}

.c-card--numbered {
  position: relative;
  padding-top: 24px;
}
.c-card--numbered .c-card__number {
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 2rem;
  font-weight: 700;
  font-style: italic;
  color: #f39800;
  line-height: 1;
}
@media (max-width: 992px) {
  .c-card--numbered .c-card__number {
    font-size: 1.5rem;
  }
}

.c-card--centered {
  text-align: center;
}
.c-card--centered .c-card__title {
  text-align: center;
}

.p-hero {
  position: relative;
  background-color: #fff5d6;
  background-image: url("../images/hero@2x-80.jpg");
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  overflow: hidden;
  padding-top: 14.375rem;
  padding-bottom: 4.375rem;
}
@media (max-width: 992px) {
  .p-hero {
    background-image: url("../images/hero-sp@2x-80.jpg");
    background-position: center top;
    height: calc(178vw - 80px);
    padding-top: 70px;
    padding-bottom: 0;
  }
}

.p-hero__inner {
  display: grid;
  gap: 0;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto auto 1fr;
  grid-template-areas: "sub      ." "title    ." "tag      ." "features .";
  align-items: start;
  -moz-column-gap: 56px;
       column-gap: 56px;
}
@media (max-width: 992px) {
  .p-hero__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas: "sub" "title" "features" "tag";
    -moz-column-gap: 0;
         column-gap: 0;
    padding-inline: 20px;
  }
}

.p-hero__sub {
  grid-area: sub;
  margin: 0 0 30px 0;
}
.p-hero__sub img {
  display: block;
  width: 40rem;
  height: auto;
  max-width: 100%;
}
@media (max-width: 992px) {
  .p-hero__sub {
    margin-left: 0rem;
    margin-right: 0;
    width: 100%;
    margin: 30px 0 20px 0;
  }
  .p-hero__sub img {
    width: calc(100% - 40px);
  }
}

.p-hero__title {
  grid-area: title;
  margin: 0;
  font-size: 6.1875rem;
  font-weight: 800;
  line-height: 7.375rem;
  color: #009245;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .p-hero__title {
    font-size: 11.4dvw;
    line-height: 1.1;
    white-space: nowrap;
    text-align: left;
    width: 100vw;
  }
}

.p-hero__tag {
  grid-area: tag;
  margin: 24px 0 0;
  background-color: rgba(243, 152, 0, 0.44);
  padding: 10px 24px;
  border-radius: 0;
  justify-self: start;
  width: 670px;
  max-width: 100%;
}
.p-hero__tag img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}
@media (max-width: 992px) {
  .p-hero__tag {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: none;
    margin: 0;
  }
}

.p-hero__features {
  grid-area: features;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 670px;
  margin-top: 40px;
  align-self: start;
  list-style: none;
  padding: 0;
}
@media (max-width: 992px) {
  .p-hero__features {
    grid-template-columns: 1fr;
    width: auto;
    gap: 0;
  }
}

.p-hero__feature {
  background-color: rgba(243, 152, 0, 0.44);
  border-radius: 6px;
  padding: 12px 1rem 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
@media (max-width: 992px) {
  .p-hero__feature {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    gap: 10px;
  }
}

.p-hero__feature-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2.375rem;
}
@media (max-width: 992px) {
  .p-hero__feature-icon {
    width: 1.3125rem;
    height: 1.0625rem;
  }
}
.p-hero__feature-icon img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-hero__feature-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.p-hero__feature-title {
  font-size: 1.5625rem;
  font-weight: 500;
  line-height: 1.4;
  color: #42210b;
}
@media (max-width: 992px) {
  .p-hero__feature-title {
    font-size: 1rem;
  }
}

.p-hero__feature-desc {
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.5;
  color: #42210b;
}
@media (max-width: 992px) {
  .p-hero__feature-desc {
    display: none;
  }
}

.p-cta {
  background-color: #f0a82c;
  padding: 130px 20px 80px;
}
@media (max-width: 992px) {
  .p-cta {
    background-color: transparent;
    padding-block: 16px;
  }
}

.p-cta__inner {
  position: relative;
  background-color: rgba(255, 255, 255, 0.56);
  border-radius: 16px;
  padding: 56px 40px 32px;
}
@media (max-width: 992px) {
  .p-cta__inner {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
  }
}

.p-cta__heading {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #7cb342;
  color: #ffffff;
  padding: 10px 40px;
  border-radius: 6px;
  font-size: 2.875rem;
  font-weight: 700;
  white-space: nowrap;
}
@media (max-width: 992px) {
  .p-cta__heading {
    display: none;
  }
}

.p-cta__items {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-top: 30px;
}
@media (max-width: 992px) {
  .p-cta__items {
    flex-direction: row;
    gap: 20px;
    margin-top: 0;
  }
}

.p-cta__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
@media (max-width: 992px) {
  .p-cta__item {
    width: 50%;
    height: 50px;
  }
}

.p-cta__sublabel {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 0 6px #f15a24, 0 0 6px #f15a24, 0 0 6px #f15a24, 0 0 6px #f15a24, 0 0 6px #f15a24;
}
@media (max-width: 992px) {
  .p-cta__sublabel {
    display: none;
  }
}

.p-cta .c-button {
  width: auto;
  min-height: 72px;
  padding-inline: 40px;
}
@media (max-width: 992px) {
  .p-cta .c-button {
    width: 100%;
    height: 100%;
    min-height: 0;
    font-size: 0.875rem;
    padding: 8px 12px 8px 12px;
  }
  .p-cta .c-button .c-button__icon {
    display: none;
  }
  .p-cta .c-button .c-button__body {
    align-items: center;
  }
}
.p-cta .c-button .c-button__sub {
  display: none;
}
@media (max-width: 992px) {
  .p-cta .c-button .c-button__sub {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
  }
}

.p-cta .c-button__main {
  font-size: 2.0625rem;
  line-height: 2.625rem;
}
@media (max-width: 992px) {
  .p-cta .c-button__main {
    font-size: 1.0625rem;
    line-height: 1;
  }
}

.p-cta .c-button__icon img[src*=mail] {
  width: 42px;
  height: 30px;
}

.p-cta .c-button__icon img[src*=tel] {
  width: 40px;
  height: 40px;
}

.p-worry {
  position: relative;
  z-index: 1;
  background-color: #8cc63e;
  padding-top: 110px;
  padding-bottom: 210px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 120px), 50% 100%, 0 calc(100% - 120px));
}
@media (max-width: 992px) {
  .p-worry {
    padding-block: 40px 64px;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), 50% 100%, 0 calc(100% - 24px));
  }
}

.p-worry__heading {
  position: relative;
  background-color: #ffffff;
  color: #42210b;
  padding: 18px 48px;
  border-radius: 6px;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 56px;
}
.p-worry__heading::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 14px solid #ffffff;
}
@media (max-width: 992px) {
  .p-worry__heading {
    font-size: 1.25rem;
    padding: 12px 24px;
    margin-bottom: 32px;
  }
  .p-worry__heading::after {
    bottom: -10px;
    border-left-width: 10px;
    border-right-width: 10px;
    border-top-width: 10px;
  }
}

.p-worry__content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 992px) {
  .p-worry__content {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.p-worry__illustration {
  display: flex;
  justify-content: center;
}
.p-worry__illustration img {
  max-width: 400px;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
}
@media (max-width: 992px) {
  .p-worry__illustration {
    order: 2;
  }
  .p-worry__illustration img {
    width: 70%;
  }
}

.p-worry__items {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}
@media (max-width: 992px) {
  .p-worry__items {
    gap: 10px;
  }
}

.p-worry__item {
  background-color: #ffffff;
  border: 2px solid #006837;
  border-radius: 6px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1.625rem;
  font-weight: 700;
  color: #006837;
  line-height: 1.875rem;
}
.p-worry__item::before {
  content: "";
  flex-shrink: 0;
  width: 34px;
  height: 28px;
  background-image: url("../images/check-icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (max-width: 992px) {
  .p-worry__item {
    font-size: 1.125rem;
    line-height: 1.375rem;
    padding: 12px 16px;
    gap: 10px;
  }
  .p-worry__item::before {
    width: 20px;
    height: 20px;
    font-size: 0.875rem;
  }
}

.p-reason {
  position: relative;
  background-color: #fef3d8;
  margin-top: -120px;
  padding-top: 270px;
  padding-bottom: 180px;
}
@media (max-width: 992px) {
  .p-reason {
    margin-top: -24px;
    padding-top: 64px;
    padding-bottom: 110px;
  }
}

.p-reason__heading {
  text-align: center;
  margin-bottom: 32px;
}
.p-reason__heading img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 992px) {
  .p-reason__heading {
    margin-bottom: 24px;
  }
}

.p-reason__intro {
  background-image: url("../images/p-reason-bg.png");
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
  width: 100%;
  margin: 60px auto 56px;
  padding: 40px 30px;
  font-size: 1.6875rem;
  font-weight: 400;
  line-height: 2.5rem;
  color: #42210b;
  border-radius: 4px;
}
.p-reason__intro p + p {
  margin-top: 4px;
}
@media (max-width: 992px) {
  .p-reason__intro {
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 32px;
    font-size: 0.875rem;
    line-height: 1.3125rem;
  }
}

.p-reason__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 80px 60px;
  list-style: none;
}
@media (max-width: 992px) {
  .p-reason__cards {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.p-reason__card {
  position: relative;
  background-color: #ffffff;
  border-style: solid;
  border-color: #7cb342;
  border-width: 2px 5px 5px 2px;
  border-radius: 8px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
@media (min-width: 993px) and (max-width: 1280px) {
  .p-reason__card {
    padding: 40px 20px;
  }
}
@media (max-width: 992px) {
  .p-reason__card {
    padding: 25px 16px;
    gap: 12px;
  }
}

.p-reason__card-number {
  position: absolute;
  top: -20px;
  left: -10px;
  width: 82px;
  height: 82px;
  border-radius: 100px;
  background-color: #7cb342;
  color: #ffffff;
  font-size: 2.4375rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .p-reason__card-number {
    top: -20px;
    left: -10px;
    width: 54px;
    height: 54px;
    font-family: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", "ヒラギノ丸ゴ ProN W4", "Hiragino Maru Gothic Pro", "メイリオ", Meiryo, sans-serif;
    font-size: 1.625rem;
  }
}

.p-reason__card-title {
  font-size: 1.8125rem;
  font-weight: 700;
  line-height: 1.5;
  color: #42210b;
}
@media (max-width: 992px) {
  .p-reason__card-title {
    font-size: 1.1875rem;
    line-height: 1.4375rem;
  }
}

.p-reason__card-illust {
  width: auto;
  max-width: 100%;
}
.p-reason__card-illust img {
  width: 100%;
  height: 174px;
}
@media (max-width: 992px) {
  .p-reason__card-illust {
    width: auto;
  }
  .p-reason__card-illust img {
    width: auto;
    height: auto;
  }
  .p-reason__card-illust img[src*=reason-01] {
    width: 172px;
    height: 124px;
  }
  .p-reason__card-illust img[src*=reason-02] {
    width: 126px;
    height: 118px;
  }
  .p-reason__card-illust img[src*=reason-03] {
    width: 172px;
    height: 124px;
  }
  .p-reason__card-illust img[src*=reason-04] {
    width: 126px;
    height: 114px;
  }
}

.p-reason__card-desc {
  font-size: 1.3125rem;
  line-height: 1.5625rem;
  color: #42210b;
  text-align: left;
  width: 100%;
}
@media (max-width: 992px) {
  .p-reason__card-desc {
    font-size: 0.875rem;
    line-height: 1.0625rem;
  }
}

.p-invite {
  position: relative;
  overflow: hidden;
  background-color: #f0a82c;
  padding-top: 120px;
  padding-bottom: 110px;
  text-align: center;
}
.p-invite::before {
  content: "";
  position: absolute;
  top: 95%;
  left: 50%;
  width: 1180px;
  height: 1180px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (max-width: 992px) {
  .p-invite {
    padding-top: 90px;
    padding-bottom: 110px;
  }
  .p-invite::before {
    top: 50%;
    left: 50%;
    width: 555px;
    height: 555px;
  }
}

.p-invite__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
@media (max-width: 992px) {
  .p-invite__inner {
    gap: 0;
  }
}

.p-invite__illust img {
  display: block;
  width: 602px;
  height: 268px;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .p-invite__illust img {
    width: calc(100% - 40px);
    height: auto;
    margin-inline: auto;
  }
}

.p-invite__heading {
  position: relative;
  background-color: #ffffff;
  border: 2px solid #42210b;
  width: 100%;
  max-width: 1000px;
  padding: 16px 40px;
  border-radius: 4px;
  font-size: 1.625rem;
  font-weight: 800;
  line-height: 2.25rem;
  color: #42210b;
}
.p-invite__heading::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 14px solid transparent;
  border-right: 14px solid transparent;
  border-top: 12px solid #42210b;
}
.p-invite__heading::after {
  content: "";
  position: absolute;
  bottom: -9px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 10px solid #ffffff;
}
.p-invite__heading u {
  text-decoration: underline;
  text-decoration-color: #e60024;
  text-decoration-thickness: 8px;
  text-underline-offset: 0px;
}
@media (max-width: 992px) {
  .p-invite__heading {
    font-size: 1.5625rem;
    line-height: 2rem;
    padding: 20px;
  }
}

.p-invite__buttons {
  display: flex;
  justify-content: center;
  gap: 120px;
  margin-top: 60px;
}
@media (max-width: 992px) {
  .p-invite__buttons {
    flex-direction: column;
    gap: 20px;
    width: calc(100% - 40px);
    margin-inline: auto;
    margin-top: 40px;
  }
  .p-invite__buttons .c-button {
    width: 100%;
    height: 50px;
    min-height: 0;
    padding-block: 0;
    font-size: 1.3125rem;
  }
}

.p-start {
  padding-top: 0;
  padding-bottom: 64px;
}
@media (max-width: 992px) {
  .p-start {
    padding-top: 0;
    padding-bottom: 32px;
  }
}

.p-start__inner {
  position: relative;
  margin-bottom: -30px;
}
@media (max-width: 992px) {
  .p-start__inner {
    margin-bottom: -70px;
  }
}

.p-start__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.p-start__photo {
  height: 400px;
  background-color: #f5f5f5;
  overflow: hidden;
}
.p-start__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .p-start__photo {
    height: 168px;
  }
}

.p-start__heading {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  border: 2px solid #8cc63f;
  color: #39b54a;
  text-align: center;
  padding: 20px;
  width: 645px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  transform: translateY(-50%);
  font-size: 2.5625rem;
  font-weight: 800;
  line-height: 3.0625rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .p-start__heading {
    width: calc(100% - 40px);
    max-width: none;
    font-size: 1.6875rem;
    line-height: 2.0625rem;
    padding-block: 15px;
  }
}

.p-solution {
  padding-top: 0;
  padding-bottom: 130px;
}
@media (max-width: 992px) {
  .p-solution {
    padding-top: 24px;
    padding-bottom: 70px;
  }
}

.p-solution__items {
  display: flex;
  flex-direction: column;
  gap: 56px;
  list-style: none;
}
@media (max-width: 992px) {
  .p-solution__items {
    gap: 40px;
  }
}

.p-solution__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}
@media (max-width: 992px) {
  .p-solution__item {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

.p-solution__item:nth-child(even) .p-solution__photo {
  order: 2;
}
@media (max-width: 992px) {
  .p-solution__item:nth-child(even) .p-solution__photo {
    order: 0;
  }
}

.p-solution__photo {
  border: 2px solid #8cc63f;
  border-radius: 8px;
  overflow: hidden;
}
.p-solution__photo img {
  display: block;
  width: 100%;
  height: auto;
}

.p-solution__title {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 2.875rem;
  color: #8cc63f;
}
@media (max-width: 992px) {
  .p-solution__title {
    font-size: 1.5625rem;
    line-height: 2.0625rem;
    margin-top: 40px;
  }
}

.p-solution__text {
  margin-top: 40px;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2.125rem;
  color: #42210b;
}
@media (max-width: 992px) {
  .p-solution__text {
    font-size: 0.875rem;
    line-height: 1.0625rem;
    margin-top: 20px;
  }
}

.p-feature {
  background-color: #8cc63e;
  padding-top: 130px;
  padding-bottom: 200px;
}
@media (max-width: 992px) {
  .p-feature {
    padding-top: 70px;
    padding-bottom: 90px;
  }
}

.p-feature__heading {
  text-align: center;
  margin-bottom: 80px;
}
.p-feature__heading img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 992px) {
  .p-feature__heading {
    margin-bottom: 32px;
  }
}

.p-feature__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px 80px;
  list-style: none;
}
@media (min-width: 993px) and (max-width: 1280px) {
  .p-feature__cards {
    gap: 40px;
  }
}
@media (max-width: 992px) {
  .p-feature__cards {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.p-feature__card {
  position: relative;
  overflow: hidden;
  background-color: #ffffff;
  border: 2px solid #f8b62d;
  padding: 30px;
  display: grid;
  grid-template-columns: 66px minmax(0, 1fr) 36%;
  grid-template-areas: "number title illust" "desc   desc  illust";
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 12px;
  align-items: center;
  box-shadow: 3px 3px 0 #f8b62d;
}
.p-feature__card::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 25px;
  height: 25px;
  background-color: #f7931e;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}
@media (max-width: 992px) {
  .p-feature__card {
    padding: 28px 16px 20px;
    grid-template-columns: auto 1fr;
    grid-template-areas: "number title" "desc   desc" "illust illust";
  }
  .p-feature__card::after {
    width: 20px;
    height: 20px;
  }
}

.p-feature__card-number {
  grid-area: number;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 66px;
  height: 66px;
  border-radius: 200px;
  background-color: #f39800;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.375rem;
}
@media (max-width: 992px) {
  .p-feature__card-number {
    width: 56px;
    height: 56px;
    font-size: 1.625rem;
    line-height: 2rem;
  }
}

.p-feature__card-title {
  grid-area: title;
  font-size: 1.4375rem;
  font-weight: 500;
  line-height: 1.6875rem;
  color: #42210b;
}
@media (max-width: 992px) {
  .p-feature__card-title {
    font-size: 1.1875rem;
    line-height: 1.4375rem;
  }
}

.p-feature__card-illust {
  grid-area: illust;
  justify-self: end;
}
.p-feature__card-illust img {
  display: block;
  height: auto;
}
.p-feature__card-illust img[src*=feature-01] {
  width: 192px;
  height: 108px;
}
.p-feature__card-illust img[src*=feature-02] {
  width: 186px;
  height: 82px;
}
.p-feature__card-illust img[src*=feature-03] {
  width: 162px;
  height: 110px;
}
.p-feature__card-illust img[src*=feature-04] {
  width: 178px;
  height: 126px;
}
@media (max-width: 992px) {
  .p-feature__card-illust {
    justify-self: center;
    margin-top: 20px;
  }
  .p-feature__card-illust img[src*=feature-01] {
    width: 62vw;
    height: auto;
  }
  .p-feature__card-illust img[src*=feature-02] {
    width: 66vw;
    height: auto;
  }
  .p-feature__card-illust img[src*=feature-03] {
    width: 48vw;
    height: auto;
  }
  .p-feature__card-illust img[src*=feature-04] {
    width: 47vw;
    height: auto;
  }
}

.p-feature__card-desc {
  grid-area: desc;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3125rem;
  color: #42210b;
}
@media (max-width: 992px) {
  .p-feature__card-desc {
    font-size: 0.875rem;
    line-height: 1.0625rem;
    margin-top: 20px;
  }
}

.p-flow {
  background-color: #8cc63e;
  padding-top: 0;
  padding-bottom: 160px;
}
@media (max-width: 992px) {
  .p-flow {
    padding-inline: 20px;
    padding-bottom: 60px;
  }
}

.p-flow__inner {
  position: relative;
  background-color: rgba(255, 255, 255, 0.48);
  padding: 130px 40px 90px;
}
@media (max-width: 992px) {
  .p-flow__inner {
    max-width: none;
    padding: 60px 20px;
  }
}

.p-flow__head {
  text-align: center;
}

.p-flow__heading {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 2px solid #8cc63f;
  color: #39b54a;
  width: 100%;
  max-width: 646px;
  padding: 20px 30px;
  border-radius: 6px;
  font-size: 2.5625rem;
  font-weight: 800;
  line-height: 3.0625rem;
  text-align: center;
}
@media (max-width: 992px) {
  .p-flow__heading {
    position: static;
    transform: none;
    max-width: none;
    font-size: 1.6875rem;
    line-height: 2.0625rem;
    padding: 15px;
  }
}

.p-flow__lead {
  text-align: center;
  margin-top: 0;
  font-size: 1.75rem;
  font-weight: 500;
  line-height: 2.0625rem;
  color: #42210b;
}
@media (max-width: 992px) {
  .p-flow__lead {
    margin-top: 35px;
    font-size: 1.1875rem;
    line-height: 1.4375rem;
    text-align: center;
  }
}

.p-flow__steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-template-rows: auto auto 1fr;
  gap: 24px;
  margin-top: 80px;
  list-style: none;
}
@media (max-width: 992px) {
  .p-flow__steps {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 60px;
    margin-top: 50px;
  }
}

.p-flow__step {
  position: relative;
  grid-row: span 3;
  display: grid;
  grid-template-rows: subgrid;
  background-color: #ffffff;
  border: 3px solid #8cc63f;
  padding: 40px 25px;
  text-align: center;
  gap: 10px;
}
@media (min-width: 993px) and (max-width: 1280px) {
  .p-flow__step {
    padding: 40px 10px 20px;
  }
}
@media (max-width: 992px) {
  .p-flow__step {
    grid-row: auto;
    display: grid;
    grid-template-columns: 68px 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "icon title" "icon desc";
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
.p-flow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  left: calc(100% + 16px);
  top: 50%;
  transform: translate(-50%, -50%);
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent #f39800;
}
@media (max-width: 992px) {
  .p-flow__step:not(:last-child)::after {
    left: 50%;
    top: auto;
    bottom: -36px;
    transform: translate(-50%, 0);
    border-width: 14px 14px 0 14px;
    border-color: #f39800 transparent transparent transparent;
  }
}
@media (max-width: 992px) {
  .p-flow__step {
    padding: 32px 20px 20px;
  }
}

.p-flow__step-label {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 138px;
  height: 32px;
  background-color: #f7931e;
  color: #42210b;
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.4375rem;
  clip-path: polygon(0 0, 100% 0, calc(100% - 17px) 50%, 100% 100%, 0 100%, 17px 50%);
}

.p-flow__step-icon {
  justify-self: center;
  width: 90px;
  height: 80px;
}
.p-flow__step-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .p-flow__step-icon {
    grid-area: icon;
    align-self: center;
    padding: 0 15px;
  }
}

.p-flow__step-title {
  align-self: center;
  margin-top: 20px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #f15a24;
  line-height: 1.125rem;
}
@media (max-width: 992px) {
  .p-flow__step-title {
    grid-area: title;
    align-self: start;
    margin-top: 0;
    font-size: 1.25rem;
    line-height: 1.5rem;
    text-align: left;
  }
}

.p-flow__step-desc {
  border-top: 2px dashed #f7931e;
  margin-top: 10px;
  padding-top: 20px;
  font-size: 0.9375rem;
  line-height: 1.125rem;
  color: #42210b;
  text-align: left;
  width: 100%;
}
@media (max-width: 992px) {
  .p-flow__step-desc {
    grid-area: desc;
    margin-top: 10px;
    padding-top: 10px;
    font-size: 0.8125rem;
    line-height: 1rem;
  }
}

.p-voice {
  padding-bottom: 160px;
}
@media (max-width: 992px) {
  .p-voice {
    padding-bottom: 80px;
  }
}

.p-voice__inner {
  margin-top: 70px;
}
@media (max-width: 992px) {
  .p-voice__inner {
    margin-top: 50px;
  }
}

.p-voice__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.p-voice__photos img {
  display: block;
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  background-color: #f5f5f5;
}
@media (max-width: 992px) {
  .p-voice__photos img {
    height: 168px;
  }
}

.p-voice__heading-wrap {
  position: relative;
  text-align: center;
}

.p-voice__heading {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  border: 2px solid #f39800;
  color: #f39800;
  text-align: center;
  padding: 20px;
  width: 645px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  transform: translateY(-50%);
  font-size: 2.5625rem;
  font-weight: 800;
  line-height: 3.0625rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .p-voice__heading {
    width: calc(100% - 40px);
    max-width: none;
    font-size: 1.6875rem;
    line-height: 2.0625rem;
    padding-block: 15px;
  }
}

.p-voice__items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  list-style: none;
}
@media (max-width: 992px) {
  .p-voice__items {
    grid-template-columns: 1fr;
    gap: 70px;
  }
}

.p-voice__item {
  position: relative;
  background-color: #fef3d8;
  border-radius: 6px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 992px) {
  .p-voice__item {
    padding: 20px;
    gap: 0;
  }
}

.p-voice__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: 130px;
}
@media (min-width: 993px) and (max-width: 1280px) {
  .p-voice__head {
    margin-left: 104px;
  }
}
@media (max-width: 992px) {
  .p-voice__head {
    margin-left: 128px;
  }
}

.p-voice__avatar {
  position: absolute;
  left: 20px;
  top: -60px;
  flex-shrink: 0;
}
.p-voice__avatar img {
  display: block;
}
.p-voice__avatar img[src*=voice-avatar-01] {
  width: 130px;
  height: 122px;
}
.p-voice__avatar img[src*=voice-avatar-02] {
  width: 130px;
  height: 128px;
}
.p-voice__avatar img[src*=voice-avatar-03] {
  width: 118px;
  height: 124px;
}
@media (min-width: 993px) and (max-width: 1280px) {
  .p-voice__avatar {
    top: -45px;
  }
  .p-voice__avatar img[src*=voice-avatar-01] {
    width: auto;
    height: 100px;
  }
  .p-voice__avatar img[src*=voice-avatar-02] {
    width: auto;
    height: 100px;
  }
  .p-voice__avatar img[src*=voice-avatar-03] {
    width: auto;
    height: 100px;
  }
}
@media (max-width: 992px) {
  .p-voice__avatar {
    top: -40px;
  }
  .p-voice__avatar img[src*=voice-avatar-01] {
    width: 96px;
    height: 90px;
  }
  .p-voice__avatar img[src*=voice-avatar-02] {
    width: 98px;
    height: 96px;
  }
  .p-voice__avatar img[src*=voice-avatar-03] {
    width: 98px;
    height: 104px;
  }
}

.p-voice__age {
  margin-left: 30px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8125rem;
  color: #f15a24;
}
@media (min-width: 993px) and (max-width: 1280px) {
  .p-voice__age {
    margin-left: 15px;
  }
}
@media (max-width: 992px) {
  .p-voice__age {
    margin-left: 0;
    font-size: 1.1875rem;
    line-height: 1.4375rem;
  }
}

.p-voice__body {
  margin-top: 30px;
  font-size: 1.1875rem;
  font-weight: 400;
  line-height: 1.4375rem;
  color: #42210b;
}
@media (max-width: 992px) {
  .p-voice__body {
    margin-top: 40px;
    font-size: 0.8125rem;
    line-height: 1rem;
  }
}

.p-faq {
  background-color: #fef3d8;
  padding-top: 150px;
  padding-bottom: 160px;
}
@media (max-width: 992px) {
  .p-faq {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.p-faq__head {
  text-align: center;
  margin-bottom: 85px;
}
@media (max-width: 992px) {
  .p-faq__head {
    margin-bottom: 24px;
  }
}

.p-faq__heading {
  font-size: 7.25rem;
  font-weight: 800;
  line-height: 8.6875rem;
  color: #8cc63f;
  letter-spacing: 0.02em;
}
@media (max-width: 992px) {
  .p-faq__heading {
    font-size: 5.375rem;
    line-height: 1;
  }
}

.p-faq__sub {
  position: relative;
  display: inline-block;
  margin-top: 40px;
  font-size: 2.5625rem;
  font-weight: 800;
  line-height: 3.0625rem;
  color: #f7931e;
}
.p-faq__sub::before {
  content: "";
  display: block;
  width: 85px;
  height: 4px;
  background-color: #8cc63f;
  margin: 0 auto 30px;
}
@media (max-width: 992px) {
  .p-faq__sub {
    margin-top: 20px;
    font-size: 1.6875rem;
  }
  .p-faq__sub::before {
    height: 1px;
    margin: 0 auto 10px;
  }
}

.p-faq__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
  list-style: none;
  max-width: 920px;
  margin-inline: auto;
}
@media (max-width: 992px) {
  .p-faq__items {
    gap: 20px;
    margin-top: 80px;
  }
}

.p-faq__item {
  background-color: #ffffff;
  border-radius: 6px;
  border: 1px solid #f39800;
  padding: 0 20px;
  overflow: hidden;
}

.p-faq__question {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  background: transparent;
}
.p-faq__question span:last-of-type {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5rem;
  color: #f15a24;
}
.p-faq__question::before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: 2px solid #f39800;
  border-radius: 50%;
}
.p-faq__question::after {
  content: "";
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-right: 2px solid #f39800;
  border-bottom: 2px solid #f39800;
  transform: translateY(-1px) rotate(45deg);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-right: 8px;
}
.p-faq__question[aria-expanded=true]::after {
  transform: translateY(1px) rotate(-135deg);
}
@media (max-width: 992px) {
  .p-faq__question {
    padding: 14px 0;
    gap: 10px;
  }
  .p-faq__question span:last-of-type {
    font-size: 0.8125rem;
    line-height: 1rem;
  }
  .p-faq__question::before {
    width: 18px;
    height: 18px;
  }
  .p-faq__question::after {
    width: 6px;
    height: 6px;
    margin-right: 6px;
    transform: translateY(-1px) rotate(45deg);
  }
  .p-faq__question[aria-expanded=true]::after {
    transform: translateY(1px) rotate(-135deg);
  }
}

.p-faq__q-badge {
  flex-shrink: 0;
  background-color: #f15a24;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5rem;
  padding: 5px 15px;
  border-radius: 4px;
}
@media (max-width: 992px) {
  .p-faq__q-badge {
    font-size: 0.9375rem;
  }
}

.p-faq__answer {
  border-top: 1px dashed #fbb03b;
  padding: 20px 0;
  margin-top: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.375rem;
  color: #42210b;
}
.p-faq__answer[hidden] {
  display: none;
}
@media (max-width: 992px) {
  .p-faq__answer {
    font-size: 0.8125rem;
    line-height: 1rem;
  }
}

.p-cta-final {
  position: relative;
  overflow: hidden;
  background-color: #f0a82c;
  padding-top: 150px;
  padding-bottom: 120px;
}
.p-cta-final::before {
  content: "";
  position: absolute;
  top: 95%;
  left: 50%;
  width: 1180px;
  height: 1180px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media (max-width: 992px) {
  .p-cta-final {
    padding-block: 70px;
  }
  .p-cta-final::before {
    top: 50%;
    left: 50%;
    width: 700px;
    height: 700px;
  }
}

.p-cta-final__inner {
  position: relative;
}
@media (max-width: 992px) {
  .p-cta-final__inner {
    padding-block: 50px;
  }
}

.p-cta-final__heading {
  text-align: center;
  margin-bottom: 32px;
}
.p-cta-final__heading img {
  display: inline-block;
  max-width: 100%;
  height: auto;
}
@media (max-width: 992px) {
  .p-cta-final__heading {
    margin-bottom: 20px;
  }
}

.p-cta-final__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 200px;
  align-items: center;
}
@media (max-width: 992px) {
  .p-cta-final__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-inline: 20px;
  }
}

.p-cta-final__illust {
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 992px) {
  .p-cta-final__illust {
    justify-content: center;
    order: 2;
  }
}
.p-cta-final__illust img {
  max-width: 360px;
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 992px) {
  .p-cta-final__illust img {
    max-width: 240px;
  }
}

.p-cta-final__buttons {
  justify-self: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media (max-width: 992px) {
  .p-cta-final__buttons {
    display: contents;
  }
}
.p-cta-final__buttons .c-button {
  width: 100%;
  height: 70px;
  min-height: 0;
  padding-block: 0;
}
@media (max-width: 992px) {
  .p-cta-final__buttons .c-button {
    order: 3;
    height: 50px;
    font-size: 1.3125rem;
  }
}

.p-cta-final__sublabel {
  position: relative;
  background-color: #ffffff;
  border: 2px solid #f15a24;
  color: #f15a24;
  padding: 15px 65px;
  border-radius: 4px;
  font-size: 1.875rem;
  font-weight: 800;
  line-height: 2.5rem;
  margin-bottom: 8px;
}
.p-cta-final__sublabel::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 8px 0 8px;
  border-color: #f15a24 transparent transparent transparent;
}
.p-cta-final__sublabel::before {
  content: "";
  position: absolute;
  bottom: -7px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 6px 0 6px;
  border-color: #ffffff transparent transparent transparent;
  z-index: 1;
}
@media (max-width: 992px) {
  .p-cta-final__sublabel {
    order: 1;
    font-size: 1.25rem;
    line-height: 1.6875rem;
    padding: 10px 45px;
  }
}

.p-cta-final .c-button__main {
  font-size: 1.8125rem;
  font-weight: 500;
}
@media (max-width: 992px) {
  .p-cta-final .c-button__main {
    font-size: 1.3125rem;
  }
}

.p-cta-final .c-button__icon img[src*=mail] {
  width: 38px;
  height: 28px;
}
@media (max-width: 992px) {
  .p-cta-final .c-button__icon img[src*=mail] {
    width: 28px;
    height: 20px;
  }
}

.p-cta-final .c-button__icon img[src*=tel] {
  width: 38px;
  height: 38px;
}
@media (max-width: 992px) {
  .p-cta-final .c-button__icon img[src*=tel] {
    width: 28px;
    height: 28px;
  }
}

.p-article {
  padding-bottom: 110px;
  background-color: #f0f7e3;
}
@media (max-width: 992px) {
  .p-article {
    padding-bottom: 70px;
  }
}

.p-article__photo {
  height: 400px;
  background-color: #f5f5f5;
  overflow: hidden;
}
.p-article__photo img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 992px) {
  .p-article__photo {
    height: 168px;
  }
}

.p-article__heading-wrap {
  position: relative;
  text-align: center;
}

.p-article__heading {
  position: relative;
  z-index: 2;
  background-color: #ffffff;
  border: 2px solid #8cc63f;
  color: #39b54a;
  text-align: center;
  padding: 20px;
  width: 645px;
  max-width: calc(100% - 32px);
  margin: 0 auto;
  transform: translateY(-50%);
  font-size: 2.5625rem;
  font-weight: 800;
  line-height: 3.0625rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 992px) {
  .p-article__heading {
    width: calc(100% - 40px);
    max-width: none;
    font-size: 1.6875rem;
    line-height: 2.0625rem;
    padding-block: 15px;
  }
}

.p-article__inner {
  margin-top: 40px;
}
@media (max-width: 992px) {
  .p-article__inner {
    margin-top: 10px;
  }
}

.p-article__items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 992px) {
  .p-article__items {
    gap: 20px;
  }
}

.p-article__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 30px 40px;
  border-radius: 9px;
  background-color: #ffffff;
  box-shadow: 3px 3px 0 #8cc63f;
}
@media (max-width: 992px) {
  .p-article__item {
    padding: 20px;
  }
}

.p-article__date {
  font-size: 1.375rem;
  font-weight: 500;
  line-height: 1.625rem;
  color: #39b54a;
}
@media (max-width: 992px) {
  .p-article__date {
    font-size: 1.1875rem;
    line-height: 1.4375rem;
  }
}

.p-article__excerpt {
  border-top: 1px dashed #8cc63f;
  padding-top: 10px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.375rem;
  color: #42210b;
}
@media (max-width: 992px) {
  .p-article__excerpt {
    font-size: 0.8125rem;
    line-height: 1rem;
  }
}

.p-company {
  padding-top: 140px;
  padding-bottom: 150px;
}
@media (max-width: 992px) {
  .p-company {
    padding-block: 100px;
  }
}

.p-company__heading {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 3.0625rem;
  color: #39b54a;
  margin-bottom: 100px;
}
@media (max-width: 992px) {
  .p-company__heading {
    font-size: 1.5rem;
    margin-bottom: 24px;
  }
}

.p-company__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 992px) {
  .p-company__content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.p-company__map {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.p-company__map-frame {
  width: 100%;
  height: 350px;
  background-color: #cccccc;
  border-radius: 8px;
  box-shadow: 6px 6px 0 #39b54a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666666;
  font-size: 0.875rem;
  overflow: hidden;
}
.p-company__map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
@media (max-width: 992px) {
  .p-company__map-frame {
    height: auto;
    aspect-ratio: 335/223;
  }
}

.p-company__access {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background-color: #39b54a;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 4px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8125rem;
  text-align: center;
}
@media (max-width: 992px) {
  .p-company__access {
    font-size: 0.875rem;
  }
}

.p-company__info {
  list-style: none;
  display: flex;
  flex-direction: column;
}
@media (max-width: 992px) {
  .p-company__info {
    padding-inline: 20px;
  }
}

.p-company__info-item {
  padding: 20px 0;
  border-bottom: 1px dashed #8cc63f;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 2rem;
  color: #42210b;
}
.p-company__info-item:first-child {
  border-top: 1px dashed #8cc63f;
}
@media (max-width: 992px) {
  .p-company__info-item {
    padding: 12px 4px;
    font-size: 1.1875rem;
    line-height: 1.4375rem;
  }
  .p-company__info-item:first-child {
    border-top: none;
  }
  .p-company__info-item:last-child {
    border-bottom: none;
  }
}

.p-form {
  background-color: #f0a82c;
  padding-block: 130px;
}
@media (max-width: 992px) {
  .p-form {
    padding-top: 80px;
    padding-bottom: 70px;
  }
}

.p-form__heading {
  text-align: center;
  color: #ffffff;
  font-size: 2.5625rem;
  font-weight: 800;
  line-height: 2.5625rem;
  margin-bottom: 80px;
}
@media (max-width: 992px) {
  .p-form__heading {
    font-size: 1.375rem;
    margin-bottom: 24px;
  }
}

.p-form__form {
  max-width: 780px;
  margin-inline: auto;
}
@media (max-width: 992px) {
  .p-form__form {
    max-width: 100%;
  }
}

.p-form__row {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 30px;
}
@media (max-width: 992px) {
  .p-form__row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }
}

.p-form__label {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 12px;
  color: #ffffff;
}
.p-form__label > span:nth-child(2) {
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.125rem;
}
@media (max-width: 992px) {
  .p-form__label {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "badge text" ".     hint";
    -moz-column-gap: 12px;
         column-gap: 12px;
    row-gap: 4px;
    padding-top: 0;
  }
}

@media (max-width: 992px) {
  .p-form__badge {
    grid-area: badge;
    align-self: center;
  }
  .p-form__label > span:nth-child(2) {
    grid-area: text;
    align-self: center;
  }
  .p-form__hint {
    grid-area: hint;
  }
}
.p-form__badge {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1rem;
  padding: 5px 10px;
  border-radius: 3px;
  letter-spacing: 0.05em;
}

.p-form__badge--required {
  background-color: #ff0000;
  color: #ffffff;
}

.p-form__badge--optional {
  background-color: #999999;
  color: #ffffff;
}

.p-form__hint {
  flex-basis: 100%;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 0.875rem;
}
@media (max-width: 992px) {
  .p-form__hint {
    font-size: 0.625rem;
    line-height: 0.75rem;
  }
}

.p-form__field input[type=text],
.p-form__field input[type=email],
.p-form__field input[type=tel],
.p-form__field textarea {
  width: 100%;
  padding: 15px 25px;
  background-color: #ffffff;
  border: none;
  border-radius: 4px;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.375rem;
  color: #42210b;
}
.p-form__field input[type=text]::-moz-placeholder, .p-form__field input[type=email]::-moz-placeholder, .p-form__field input[type=tel]::-moz-placeholder, .p-form__field textarea::-moz-placeholder {
  color: #cccccc;
}
.p-form__field input[type=text]::placeholder,
.p-form__field input[type=email]::placeholder,
.p-form__field input[type=tel]::placeholder,
.p-form__field textarea::placeholder {
  color: #cccccc;
}
@media (max-width: 992px) {
  .p-form__field input[type=text],
  .p-form__field input[type=email],
  .p-form__field input[type=tel],
  .p-form__field textarea {
    font-size: 0.9375rem;
    line-height: 1.125rem;
    padding: 20px;
  }
}
.p-form__field textarea {
  min-height: 140px;
  resize: vertical;
}

.p-form__agreement {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 45px;
}
.p-form__agreement label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #42210b;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5rem;
  cursor: pointer;
}
@media (max-width: 992px) {
  .p-form__agreement label {
    font-size: 0.8125rem;
    line-height: 1rem;
  }
}
.p-form__agreement input[type=checkbox] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 30px;
  height: 30px;
  background-color: #ffffff;
  border: 2px solid #ff0000;
  cursor: pointer;
  position: relative;
}
.p-form__agreement input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 8px;
  border-left: 3px solid #ff0000;
  border-bottom: 3px solid #ff0000;
  transform: translate(-50%, -65%) rotate(-45deg);
}
@media (max-width: 992px) {
  .p-form__agreement input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
  .p-form__agreement input[type=checkbox]:checked::after {
    width: 10px;
    height: 6px;
    border-left-width: 2px;
    border-bottom-width: 2px;
  }
}
@media (max-width: 992px) {
  .p-form__agreement {
    padding-inline: 20px;
    margin-top: 0;
  }
}

.p-form__response {
  margin-top: 20px;
  text-align: center;
  color: #ffffff;
  font-weight: 500;
  min-height: 1.5em;
}

.p-form__submit {
  text-align: center;
  margin-top: 45px;
}
@media (max-width: 992px) {
  .p-form__submit {
    padding-inline: 20px;
    margin-top: 45px;
  }
}

.p-form__button {
  border: none;
  cursor: pointer;
  padding: 15px 55px;
}
@media (max-width: 992px) {
  .p-form__button {
    width: 100%;
    font-size: 1.3125rem;
    line-height: 1.5625rem;
  }
}

.p-thanks {
  background-color: #fef3d8;
  padding-block: 150px 160px;
  min-height: calc(100vh - 200px);
}
@media (max-width: 992px) {
  .p-thanks {
    padding-block: 100px;
  }
}

.p-thanks__inner {
  text-align: center;
}

.p-thanks__heading {
  font-size: 2.5625rem;
  font-weight: 800;
  line-height: 3.0625rem;
  color: #39b54a;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .p-thanks__heading {
    font-size: 1.6875rem;
    line-height: 2.0625rem;
    margin-bottom: 24px;
  }
}

.p-thanks__lead {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.8125rem;
  color: #42210b;
  margin-bottom: 60px;
}
@media (max-width: 992px) {
  .p-thanks__lead {
    font-size: 1.1875rem;
    line-height: 1.4375rem;
    margin-bottom: 40px;
  }
}

.p-thanks__message {
  max-width: 720px;
  margin: 0 auto 80px;
  padding: 40px 30px;
  background-color: rgba(255, 255, 255, 0.56);
  border-radius: 8px;
  text-align: left;
}
.p-thanks__message p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2;
  color: #42210b;
}
.p-thanks__message p + p {
  margin-top: 16px;
}
@media (max-width: 992px) {
  .p-thanks__message {
    margin-bottom: 60px;
    padding: 20px;
  }
  .p-thanks__message p {
    font-size: 0.875rem;
    line-height: 1.7;
  }
}

.p-thanks__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 60px;
}
.p-thanks__tel .c-button {
  min-width: 360px;
}
@media (max-width: 992px) {
  .p-thanks__tel {
    margin-bottom: 40px;
  }
  .p-thanks__tel .c-button {
    min-width: 0;
    width: calc(100% - 40px);
  }
}

.p-thanks__tel-label {
  font-size: 1.5rem;
  font-weight: 500;
  color: #fff;
  text-shadow: 0 0 6px #f15a24, 0 0 6px #f15a24, 0 0 6px #f15a24, 0 0 6px #f15a24, 0 0 6px #f15a24;
}
@media (max-width: 992px) {
  .p-thanks__tel-label {
    font-size: 1.125rem;
  }
}

.p-thanks__action {
  display: flex;
  justify-content: center;
}
.p-thanks__action .c-button {
  min-width: 280px;
}
@media (max-width: 992px) {
  .p-thanks__action .c-button {
    min-width: 0;
    width: calc(100% - 40px);
  }
}

.p-floating-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: none;
  gap: 8px;
  padding: 10px 12px;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  pointer-events: none;
}
@media (max-width: 992px) {
  .p-floating-cta {
    display: flex;
  }
}
.p-floating-cta.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.p-floating-cta .c-button {
  flex: 1;
  min-width: 0;
  height: 50px;
  min-height: 0;
  padding: 0 12px;
  font-size: 0.875rem;
  gap: 6px;
}
.p-floating-cta .c-button::after {
  display: none;
}
.p-floating-cta .c-button__icon img {
  width: 22px;
  height: auto;
}

.u-sp-only {
  display: none;
}
@media (max-width: 992px) {
  .u-sp-only {
    display: initial;
  }
}

@media (max-width: 992px) {
  .u-pc-only {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */