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

html {
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

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

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

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

html {
  overflow-y: scroll;
}

body {
  color: #4c3918;
  font-family: "Noto Serif JP", sans-serif;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.05em;
  background: #f5f2e9;
  min-width: 375px;
}

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

main {
  overflow: hidden;
}

::selection {
  color: #ffffff;
  background: #5e8234;
}

.l-section {
  position: relative;
  padding-block: 6.5rem;
}
.l-section--deep {
  background-color: #eee9da;
}
.l-section--img {
  background-image: url("../img/sec-bg.webp");
  background-size: contain;
}
.l-section--object::before, .l-section--object::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.l-section--object::before {
  background-image: url("../img/object-moya-left.webp");
  width: min(100%, 436px);
  aspect-ratio: 436/391;
  left: -10%;
  top: 0;
}
.l-section--object::after {
  background-image: url("../img/object-moya-right.webp");
  width: min(100%, 445px);
  aspect-ratio: 445/425;
  right: -10%;
  bottom: 0;
}

.l-container {
  width: min(100% - 3rem, 1000px);
  margin-inline: auto;
  z-index: 1;
  position: relative;
}

.l-block {
  width: min(100%, 850px);
}

@media (max-width: 767px) {
  .l-section {
    padding-block: 5rem;
  }
}
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  background: transparent;
}

.l-header__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 5rem;
  padding: 1rem 1.5rem;
}

.l-header__logo {
  display: block;
  width: 7.5rem;
  transition: opacity 0.2s ease;
}

.l-header__logo img {
  width: 100%;
}

.l-header__menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.5rem;
  padding: 0.5rem 1rem;
  color: #5e8234;
  font-size: 0.875rem;
  font-weight: 500;
  background: #f5f2e9;
  border: 1px solid #848e62;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.l-header__menu-icon {
  position: relative;
  width: 1rem;
  height: 1rem;
}

.l-header__menu-icon::before,
.l-header__menu-icon::after {
  position: absolute;
  left: 0.125rem;
  width: 0.75rem;
  height: 1px;
  background: currentColor;
  content: "";
  transition: top 0.2s ease, transform 0.2s ease;
}

.l-header__menu-icon::before {
  top: 0.375rem;
}

.l-header__menu-icon::after {
  top: 0.625rem;
}

.l-header__menu-text {
  display: grid;
}

.l-header__menu-text-open,
.l-header__menu-text-close {
  grid-area: 1/1;
}

.l-header__menu-text-close {
  opacity: 0;
}

.l-header__drawer {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: grid;
  padding-top: 5rem;
  overflow: auto;
  color: #ffffff;
  background-color: #5e8234;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.l-header__drawer-inner {
  position: relative;
  display: grid;
  align-content: start;
  gap: 3rem;
  width: min(100% - 3rem, 1000px);
  margin-inline: auto;
  padding: 2.5rem 1.5rem;
}

.l-header__drawer-nav {
  display: grid;
  gap: 3rem;
  justify-items: start;
}

.l-header__drawer-link {
  color: #ffffff;
  font-size: clamp(1.25rem, 1.1rem + 0.64vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease;
}

.l-header__drawer-link:hover {
  opacity: 0.72;
}

.l-header__drawer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 400px);
  min-height: 4rem;
  gap: 0.5rem;
  padding: 1rem 2rem;
  color: #ffffff;
  font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
  font-weight: 600;
  background: #bf9d5a;
  border-radius: 0.5rem;
  box-shadow: 0 0.375rem 0.9375rem rgba(80, 67, 34, 0.2);
}

.l-header__drawer-button img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

body.is-menu-open .l-header__logo {
  opacity: 0;
  pointer-events: none;
}

body.is-menu-open .l-header__menu-button {
  color: #ffffff;
  background: transparent;
  border-color: #ffffff;
}

body.is-menu-open .l-header__menu-icon::before {
  top: 0.5rem;
  transform: rotate(45deg);
}

body.is-menu-open .l-header__menu-icon::after {
  top: 0.5rem;
  transform: rotate(-45deg);
}

body.is-menu-open .l-header__menu-text-open {
  opacity: 0;
}

body.is-menu-open .l-header__menu-text-close {
  opacity: 1;
}

body.is-menu-open .l-header__drawer {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

@media (max-width: 767px) {
  .l-header__inner {
    min-height: 3rem;
    padding: 0.5rem 1rem;
  }
  .l-header__logo {
    width: 6.125rem;
  }
  .l-header__menu-button {
    min-height: 2rem;
    padding: 0.25rem 0.5rem;
  }
  .l-header__drawer {
    padding-top: 3rem;
  }
  .l-header__drawer-inner {
    gap: 2.5rem;
    padding: 2.5rem 0;
  }
  .l-header__drawer-nav {
    gap: 2rem;
  }
  .l-header__drawer-link {
    font-size: clamp(1.125rem, 1.05rem + 0.32vw, 1.25rem);
  }
  .l-header__drawer-button {
    width: 100%;
    min-height: 3.75rem;
    padding-inline: 1rem;
  }
}
.l-footer {
  color: #4c3918;
  background: url("../img/bg-footer_pc.webp") center/cover no-repeat, linear-gradient(180deg, #f3eee0 0%, #f5f2e9 100%);
}

.l-footer__inner {
  display: grid;
  gap: 2.5rem;
  justify-items: center;
  width: min(100% - 3rem, 1000px);
  margin-inline: auto;
  padding-block: 4rem 1.5rem;
  text-align: center;
}

.l-footer__logo img {
  width: 10.3125rem;
}

.l-footer__address {
  display: grid;
  gap: 0.25rem;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  font-style: normal;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.l-footer__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.375rem;
}

.l-footer__sns-icon {
  display: block;
  width: 2rem;
  height: 2rem;
}

.l-footer__sns-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.l-footer__copy {
  font-family: "Noto Serif JP", serif;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .l-footer {
    background-image: url("../img/bg-footer_sp.webp");
  }
  .l-footer__inner {
    gap: 2rem;
    padding-block: 3.5rem 1.5rem;
  }
  .l-footer__logo img {
    width: 8.75rem;
  }
  .l-footer__address {
    font-size: 0.875rem;
    white-space: normal;
  }
}
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.6875rem;
  padding: 0 2.5rem;
  color: #ffffff;
  font-weight: 700;
  background: #5e8234;
  border: 0;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.c-button:hover {
  opacity: 0.9;
  transform: translateY(-0.125rem);
}

.c-button--white {
  color: #5e8234;
  background: #ffffff;
}

.c-button--line {
  color: #ffffff;
  background: #06c755;
}

.c-section-title {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.c-section-title__en {
  color: #bf9d5a;
  font-family: "Shippori Mincho", serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
}

.c-section-title__ja {
  font-family: "Shippori Mincho", serif;
  font-size: clamp(1.75rem, 1.6rem + 0.64vw, 2rem);
  line-height: 1.45;
}

@media (max-width: 767px) {
  .c-section-title__ja {
    font-size: clamp(1.5rem, 1.35rem + 0.64vw, 1.75rem);
  }
}
.c-card {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 1rem 2.5rem rgba(76, 57, 24, 0.08);
}

.c-card img {
  width: 4rem;
}

.c-card h3 {
  font-size: clamp(1.125rem, 1.05rem + 0.32vw, 1.25rem);
  line-height: 1.5;
}

.c-media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 30rem) 1fr;
  gap: 3rem;
  align-items: center;
}

.c-media--reverse {
  grid-template-columns: 1fr minmax(0, 30rem);
}

.c-media--reverse .c-media__image {
  order: 2;
}

.c-media__image {
  width: 100%;
}

.c-media__image img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}

.c-media__body {
  position: relative;
  display: grid;
  gap: 1.5rem;
  min-width: 0;
}

.c-media__heading {
  display: grid;
  gap: 0.25rem;
}

.c-media__label {
  justify-self: start;
  padding: 0.25rem 0.5rem;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background: #5e8234;
}

.c-media__number {
  position: absolute;
  top: -2.5rem;
  right: 0;
  z-index: -1;
  color: #eee9da;
  font-family: "Imperial Script", cursive;
  font-size: 6.25rem;
  line-height: 1;
  letter-spacing: 0;
}

.c-media__title {
  padding: 0.25rem 0 0.25rem 1rem;
  margin-bottom: 0;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.25rem, 1.1rem + 0.64vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-left: 4px solid #5e8234;
}

.c-media__heading .c-media__title {
  padding: 0;
  border-left: 0;
}

.c-media__text {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.c-media__note {
  display: grid;
  gap: 0.25rem;
  padding: 1rem;
  font-family: "Noto Serif JP", serif;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 0.5rem;
}

.c-media__note-title {
  color: #5e8234;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.c-media__note-text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .c-media,
  .c-media--reverse {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .c-media__body {
    display: contents;
  }
  .c-media__number {
    display: none;
  }
  .c-media__heading,
  .c-media__title {
    order: 1;
  }
  .c-media__image,
  .c-media--reverse .c-media__image {
    order: 2;
  }
  .c-media__text {
    order: 3;
  }
  .c-media__note {
    order: 4;
  }
}
.c-lower-kv {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 20rem;
  overflow: hidden;
  background: #f5f2e9 url("../img/kv-2nd_pc.webp") center/cover no-repeat;
}

.c-lower-kv::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(69.53125vw, 55.625rem);
  height: 10rem;
  pointer-events: none;
  background: url("../img/kv-2nd-object.webp") right bottom/contain no-repeat;
  content: "";
}

.c-lower-kv__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
}

.c-lower-kv__title-wrap {
  display: grid;
  gap: 0.25rem;
}

.c-lower-kv__en {
  color: #848e62;
  font-size: 0.875rem;
  font-weight: 500;
}

.c-lower-kv__title {
  color: #4c3918;
  font-size: clamp(1.75rem, 1.6rem + 0.64vw, 2rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

@media (max-width: 767px) {
  .c-lower-kv {
    min-height: 240px;
    padding-top: 3rem;
    background-image: url("../img/kv-2nd_sp.webp");
  }
  .c-lower-kv::after {
    width: 100%;
    height: 4rem;
    background-size: auto 100%;
  }
}
.c-cta {
  padding-block: 5rem;
  background: #5e8234 url("../img/sec-bg.webp") center/cover no-repeat;
  overflow: hidden;
}

.c-cta__wrapper {
  display: grid;
  justify-items: center;
}

.c-cta__contents {
  position: relative;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  width: 100%;
  padding: 3.5rem;
  color: #4c3918;
  text-align: center;
  background: #ffffff;
  border: 1px solid #848e62;
  border-radius: 1rem;
}

.c-cta__contents::before,
.c-cta__contents::after {
  position: absolute;
  bottom: 1rem;
  pointer-events: none;
  content: "";
}

.c-cta__contents::before {
  background: url("../img/leaf-left.webp") center/contain no-repeat;
  width: min(100%, 128px);
  aspect-ratio: 128/157;
  left: 1rem;
}

.c-cta__contents::after {
  background: url("../img/leaf-right.webp") center/contain no-repeat;
  width: min(100%, 90px);
  aspect-ratio: 9/13;
  right: 1rem;
}

.c-cta__title {
  position: relative;
  z-index: 1;
  color: #5e8234;
  font-size: clamp(1.5rem, 1.35rem + 0.64vw, 1.75rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.c-cta__text {
  position: relative;
  z-index: 1;
  font-weight: 500;
}

.c-cta__buttons {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 2rem;
  justify-content: center;
  width: min(100%, 650px);
}

.c-cta__button {
  display: inline-flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 5rem;
  gap: 0.5rem;
  padding: 1rem;
  color: #ffffff;
  font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
  font-weight: 600;
  border-radius: 0.5rem;
  box-shadow: 0 0.375rem 0.9375rem rgba(80, 67, 34, 0.2);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.c-cta__button:hover {
  opacity: 0.9;
  transform: translateY(-0.125rem);
}

.c-cta__button img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.c-cta__button--document {
  background: #bf9d5a;
}

.c-cta__button--line {
  background: #19be00;
}

@media (max-width: 767px) {
  .c-cta {
    padding-block: 3.5rem;
    background-position: center;
  }
  .c-cta__contents {
    gap: 1.5rem;
    padding: 2.5rem 1.5rem;
  }
  .c-cta__contents::before {
    max-width: 80px;
    left: -10%;
    bottom: 0;
  }
  .c-cta__contents::after {
    max-width: 80px;
    right: -10%;
    bottom: 0;
  }
  .c-cta__title {
    font-size: clamp(1.25rem, 1.1rem + 0.64vw, 1.5rem);
  }
  .c-cta__text {
    text-align: left;
  }
  .c-cta__buttons {
    display: grid;
    gap: 1rem;
  }
  .c-cta__button {
    width: 100%;
    min-height: 4rem;
    padding-inline: 1.5rem;
  }
}
.c-faq-item {
  padding: 2rem;
  background: #ffffff;
  border: 1px solid rgba(76, 57, 24, 0.12);
  border-radius: 1rem;
}

.c-faq-item h2 {
  position: relative;
  padding-left: 2.5rem;
  font-size: clamp(1.125rem, 1.05rem + 0.32vw, 1.25rem);
}

.c-faq-item h2::before {
  position: absolute;
  left: 0;
  color: #5e8234;
  content: "Q";
}

.c-faq-item p {
  margin-top: 1rem;
}

.c-floating-btn {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 90;
}

.c-floating-btn a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 7rem;
  min-height: 3rem;
  color: #ffffff;
  font-weight: 700;
  background: #bf9d5a;
  border-radius: 999px;
  box-shadow: 0 0.75rem 2rem rgba(76, 57, 24, 0.18);
}

@media (max-width: 767px) {
  .c-floating-btn {
    right: 1rem;
    bottom: 1rem;
  }
}
.c-section-heading {
  display: grid;
  gap: 1rem;
  justify-items: center;
  width: 100%;
  text-align: center;
}

.c-section-heading__title {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.5rem, 1.35rem + 0.64vw, 1.75rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.c-section-heading__object {
  width: 14.75rem;
  height: 0.75rem;
  background: linear-gradient(#bf9d5a, #bf9d5a) left 50%/6.25rem 1px no-repeat, url("../img/sec-object.webp") center/3.75rem 0.75rem no-repeat, linear-gradient(#bf9d5a, #bf9d5a) right 50%/6.25rem 1px no-repeat;
}

.c-heading__line {
  padding: 0.25rem 0 0.25rem 1rem;
  font-size: clamp(1.25rem, 1.1rem + 0.64vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-left: 4px solid #5e8234;
}

.c-heading__bg {
  padding: 0.25rem 1rem;
  font-size: clamp(1.25rem, 1.1rem + 0.64vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  background: #5e8234;
  color: #ffffff;
  width: 100%;
  text-align: center;
}

@media (max-width: 767px) {
  .c-section-heading__title {
    font-size: clamp(1.25rem, 1.1rem + 0.64vw, 1.5rem);
    white-space: normal;
  }
  .c-section-heading__object {
    width: 13rem;
    background: linear-gradient(#bf9d5a, #bf9d5a) left 50%/5.25rem 1px no-repeat, url("../img/sec-object.webp") center/2.5rem 0.5rem no-repeat, linear-gradient(#bf9d5a, #bf9d5a) right 50%/5.25rem 1px no-repeat;
  }
}
.c-link-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20rem;
  min-height: 3.6875rem;
  padding: 1rem 2.5rem;
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  background: #5e8234;
  border-radius: 0.5rem;
  box-shadow: 0 0.375rem 0.9375rem rgba(80, 67, 34, 0.2);
}

.c-link-button::after {
  width: 0.5rem;
  height: 0.5rem;
  margin-left: 0.5rem;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  transform: rotate(45deg);
  content: "";
}

@media (max-width: 767px) {
  .c-link-button {
    width: 100%;
    min-width: 0;
  }
}
.c-check-list-box {
  position: relative;
  width: min(100%, 50rem);
  padding: 2rem 2.5rem 1.5rem;
  background: #ffffff;
  border: 1px solid #848e62;
  border-radius: 1rem;
}

.c-check-list-box__title {
  position: absolute;
  top: -1.6875rem;
  left: 50%;
  padding: 0.5rem 2rem;
  color: #ffffff;
  font-size: clamp(1.25rem, 1.1rem + 0.64vw, 1.5rem);
  font-weight: 600;
  line-height: 1.5;
  white-space: nowrap;
  background: #848e62;
  transform: translateX(-50%);
}

.c-check-list-box__list {
  display: grid;
}

.c-check-list-box__list li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
  font-weight: 500;
}

.c-check-list-box__list li:not(:last-child) {
  border-bottom: 1px dashed #848e62;
}

.c-check-list-box__list li::before {
  flex: 0 0 auto;
  width: 2rem;
  height: 2rem;
  background: url("../img/icon-check.webp") center/contain no-repeat;
  content: "";
}

@media (max-width: 767px) {
  .c-check-list-box {
    padding: 2.5rem 1rem 1rem;
    border-radius: 0.5rem;
  }
  .c-check-list-box__title {
    width: calc(100% - 2rem);
    font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
  }
  .c-check-list-box__list li {
    align-items: flex-start;
    padding-inline: 0;
    font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
    gap: 0.5rem;
    padding: 0.5rem;
  }
  .c-check-list-box__list li::before {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.c-flow-list {
  display: grid;
  width: 100%;
}

.c-flow-list__item {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr);
  gap: 2.5rem;
}

.c-flow-list__icon {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-flow-list__icon::after {
  display: block;
  width: 1px;
  height: 100%;
  min-height: 4rem;
  background: #848e62;
  content: "";
}

.c-flow-list__item:last-child .c-flow-list__icon::after {
  height: calc(100% - 7rem);
}

.c-flow-list__icon img {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
}

.c-flow-list__body {
  padding: 1.5rem 2rem;
  background: #ffffff;
  border: 1px solid #848e62;
  border-radius: 0.5rem;
}

.c-flow-list__item:not(:last-child) .c-flow-list__body {
  margin-bottom: 2rem;
}

.c-flow-list__step {
  color: #5e8234;
  font-size: 0.875rem;
}

.c-flow-list__body h3 {
  font-size: clamp(1.125rem, 1.05rem + 0.32vw, 1.25rem);
  line-height: 1.4;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

@media (max-width: 767px) {
  .c-flow-list__item {
    grid-template-columns: 3.5rem minmax(0, 1fr);
    gap: 1rem;
  }
  .c-flow-list__icon img {
    width: 3.5rem;
    height: 3.5rem;
  }
  .c-flow-list__item:last-child .c-flow-list__icon::after {
    height: 100%;
  }
  .c-flow-list__body {
    padding: 1.5rem;
  }
}
.p-home-mv {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: #f5f2e9 url("../img/sec-mv_pc.webp") center/cover no-repeat;
}

.p-home-mv::before,
.p-home-mv::after {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
}

.p-home-mv::before {
  top: 0;
  left: 0;
  width: min(70.3125vw, 56.25rem);
  height: 14.6875rem;
  background-image: url("../img/sec-mv-object-left.webp");
  background-position: left top;
}

.p-home-mv::after {
  right: 0;
  bottom: 0;
  width: min(54.6875vw, 43.75rem);
  height: 15rem;
  background-image: url("../img/sec-mv-object-right.webp");
  background-position: right bottom;
}

.p-home-mv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.p-home-mv__content {
  position: relative;
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  width: 27.6875rem;
  max-width: 100%;
}

.p-home-mv__lead {
  font-size: 0.875rem;
}
.p-home-mv__lead strong {
  color: #5e8234;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
}

.p-home-mv__title {
  display: grid;
  justify-items: start;
  width: 100%;
  color: #5e8234;
  font-size: 2.625rem;
  line-height: 1.3;
  letter-spacing: 0.119em;
  text-align: left;
  font-weight: 500;
}

.p-home-mv__title-large {
  font-size: 3.125rem;
}

.p-home-mv__tagline {
  display: grid;
  gap: 0.25rem;
  justify-items: center;
  width: 100%;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #bf9d5a;
}

.p-home-mv__tagline-line {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  width: 100%;
}

.p-home-mv__tagline-line::before,
.p-home-mv__tagline-line::after {
  flex: 1 1 0;
  height: 1px;
  background: #bf9d5a;
  content: "";
}

.p-home-mv__tagline-line::after {
  order: 3;
}

.p-home-mv__tagline-line {
  min-height: 0.625rem;
}

.p-home-mv__tagline-line::before {
  order: 1;
}

.p-home-mv__tagline-line::after {
  order: 3;
}

.p-home-mv__tagline-line {
  background: url("../img/sec-object.webp") center/3.125rem 0.625rem no-repeat;
}

.p-home-mv__tagline-title {
  font-size: clamp(1.25rem, 1.1rem + 0.64vw, 1.5rem);
}

.p-home-mv__tagline-text {
  font-size: 0.875rem;
}

.p-home-mv__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 5rem;
  gap: 0.5rem;
  padding: 1rem 2rem;
  color: #ffffff;
  font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
  font-weight: 600;
  background: #bf9d5a;
  border-radius: 0.5rem;
  box-shadow: 0 0.375rem 0.9375rem rgba(80, 67, 34, 0.2);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.p-home-mv__button:hover {
  opacity: 0.9;
  transform: translateY(-0.125rem);
}

.p-home-mv__button img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.p-home-worry__inner,
.p-home-model__inner,
.p-home-results__inner,
.p-home-flow__inner,
.p-home-sns__inner {
  display: grid;
  gap: 3rem;
  justify-items: center;
}

.p-home-worry__text {
  font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
  text-align: center;
}

.p-home-worry__text strong {
  color: #5e8234;
}

.p-home-model,
.p-home-flow {
  background: #eee9da;
}

.p-home-model__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
}

.p-home-model__card {
  overflow: hidden;
  text-align: center;
  background: #ffffff;
  border: 1px solid #848e62;
  border-radius: 1rem;
}

.p-home-model__card h3 {
  margin-top: 1.5rem;
  color: #5e8234;
  font-size: clamp(1.125rem, 1.05rem + 0.32vw, 1.25rem);
}

.p-home-model__card p {
  margin: 0.5rem 1.5rem 1.5rem;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
}

.p-home-model__benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  width: 100%;
  padding-inline: 1.5rem;
}

.p-home-model__benefits article {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.p-home-model__benefits article:not(:last-child) {
  border-right: 1px solid rgba(76, 57, 24, 0.35);
}

.p-home-model__benefits img {
  width: 3.75rem;
  height: 3.75rem;
  object-fit: contain;
}

.p-home-model__benefits p {
  font-size: 0.875rem;
}

.p-home-results__inner,
.p-home-sns__inner {
  position: relative;
}

.p-home-results__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: min(100%, 50rem);
}

.p-home-results__item {
  display: grid;
  gap: 0.5rem;
  justify-items: center;
  padding: 1.5rem;
  text-align: center;
  background: #ffffff;
  border: 1px solid #848e62;
  border-radius: 1rem;
}

.p-home-results__item img {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
}

.p-home-results__item p {
  font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
}

.p-home-results__item strong {
  color: #5e8234;
  font-size: 3rem;
  line-height: 1;
}

.p-home-sns__title {
  color: #5e8234;
  font-size: clamp(1.5rem, 1.35rem + 0.64vw, 1.75rem);
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}

.p-home-sns__youtube {
  width: min(100%, 43.75rem);
  aspect-ratio: 700/394;
  border: 0.5rem solid #ffffff;
  background: rgba(76, 57, 24, 0.12);
}

.p-home-sns__youtube iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(76, 57, 24, 0.08);
}

.p-home-sns__banner {
  display: block;
  width: min(100%, 37.5rem);
  box-shadow: 0 0.375rem 0.9375rem rgba(80, 67, 34, 0.2);
}

.p-home-sns__banner img {
  width: 100%;
}

@media (max-width: 767px) {
  .p-home {
    margin-top: 2.5rem;
  }
  .p-home-mv {
    min-height: 42rem;
    align-items: start;
    padding-top: 17.5rem;
    padding-bottom: 1.5rem;
    background-image: url("../img/sec-mv_sp.webp");
    background-position: center top;
    background-size: 100% 18.75rem;
  }
  .p-home-mv::before {
    top: 0;
    width: 100%;
    height: 6.125rem;
    background-size: 100% 100%;
  }
  .p-home-mv::after {
    top: 10.6875rem;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    height: 8.0625rem;
    background-size: 100% 100%;
  }
  .p-home-mv__inner {
    align-items: start;
  }
  .p-home-mv__content {
    gap: 1rem;
    width: 100%;
    justify-items: stretch;
    text-align: center;
  }
  .p-home-mv__title {
    font-size: 2rem;
    line-height: 1.2;
    letter-spacing: 0.0625em;
    justify-content: end;
  }
  .p-home-mv__title-large {
    font-size: 2.5rem;
  }
  .p-home-mv__lead {
    font-size: 0.875rem;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
  .p-home-mv__lead strong {
    display: inline;
    font-size: 0.875rem;
  }
  .p-home-mv__tagline {
    padding-bottom: 1rem;
  }
  .p-home-mv__tagline-line {
    gap: 0.5625rem;
    background-size: 3.125rem 0.625rem;
  }
  .p-home-mv__tagline-title {
    font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
    line-height: 1.4;
  }
  .p-home-mv__tagline-text {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  .p-home-mv__button {
    min-height: 3.375rem;
    padding: 1rem;
    font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
    line-height: 1.4;
    border-radius: 0.25rem;
  }
  .p-home-mv__button img {
    width: 1.25rem;
    height: 1.25rem;
  }
  .p-home-worry__inner,
  .p-home-model__inner,
  .p-home-results__inner,
  .p-home-flow__inner,
  .p-home-sns__inner {
    gap: 2rem;
  }
  .p-home-sns__title {
    font-size: clamp(1.25rem, 1.1rem + 0.64vw, 1.5rem);
    white-space: normal;
  }
  .p-home-worry__text {
    text-align: left;
  }
  .p-home-model__list {
    grid-template-columns: 1fr;
  }
  .p-home-model__benefits {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-inline: 0;
    max-width: 250px;
  }
  .p-home-model__benefits article {
    padding-bottom: 1rem;
  }
  .p-home-model__benefits article:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(76, 57, 24, 0.25);
  }
  .p-home-results__list {
    grid-template-columns: 1fr;
    max-width: 250px;
  }
  .p-home-results__item img {
    width: 3rem;
    height: 3rem;
  }
  .p-home-sns__youtube {
    border-width: 0.375rem;
  }
}
.p-fc-merit__inner,
.p-fc-revenue__inner,
.p-fc-support__inner {
  display: grid;
  gap: 3rem;
}

.p-fc-merit__list {
  display: grid;
  gap: 3rem;
}

.p-fc-revenue__inner {
  position: relative;
  z-index: 1;
}

.p-fc-revenue__box {
  position: relative;
  display: grid;
  gap: 2rem;
  padding: 2.5rem;
  background: #ffffff;
  border-radius: 1rem;
}

.p-fc-revenue__box::before,
.p-fc-revenue__box::after {
  position: absolute;
  pointer-events: none;
  content: "";
  z-index: 1;
}

.p-fc-revenue__box::before {
  background: url("../img/leaf-left-sm.webp") center/contain no-repeat;
  width: min(100%, 74px);
  aspect-ratio: 74/89;
  top: 2.5rem;
  left: 3.5rem;
}

.p-fc-revenue__box::after {
  background: url("../img/leaf-right.webp") center/contain no-repeat;
  width: min(100%, 90px);
  aspect-ratio: 9/13;
  right: -2rem;
  bottom: 0;
}

.p-fc-revenue__lead {
  position: relative;
  z-index: 1;
  font-size: clamp(1.125rem, 1.05rem + 0.32vw, 1.25rem);
  font-weight: 500;
  text-align: center;
}

.p-fc-revenue__lead strong {
  color: #5e8234;
  font-weight: 500;
}

.p-fc-revenue__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2.5rem;
}

.p-fc-revenue__list li {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: #f5f2e9;
  font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
  white-space: nowrap;
}

.p-fc-revenue__list img {
  width: 3.375rem;
  height: 3.375rem;
  object-fit: contain;
}

.p-fc-revenue__note {
  font-size: 0.875rem;
  font-weight: 500;
  text-align: right;
}

.p-fc-support__lead {
  font-weight: 500;
  text-align: center;
}

.p-fc-support__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.p-fc-support__item {
  display: grid;
  gap: 1rem;
  justify-items: center;
  padding: 2rem;
  background: #ffffff;
  border: 1px solid #848e62;
  border-radius: 1rem;
}

.p-fc-support__item img {
  width: 5rem;
  height: 5rem;
  object-fit: contain;
}

.p-fc-support__item h3 {
  color: #5e8234;
  font-size: clamp(1.25rem, 1.1rem + 0.64vw, 1.5rem);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
}

.p-fc-support__item p {
  font-weight: 500;
}

@media (max-width: 767px) {
  .p-fc-merit__inner,
  .p-fc-revenue__inner,
  .p-fc-support__inner {
    gap: 2.5rem;
  }
  .p-fc-merit__list {
    gap: 2.5rem;
  }
  .p-fc-revenue::before,
  .p-fc-revenue::after {
    width: 14rem;
    height: 13rem;
  }
  .p-fc-revenue__box {
    gap: 1.5rem;
    padding: 2rem 1.5rem;
  }
  .p-fc-revenue__lead {
    text-align: left;
  }
  .p-fc-revenue__list,
  .p-fc-support__list {
    grid-template-columns: 1fr;
  }
  .p-fc-revenue__list {
    gap: 1rem;
  }
  .p-fc-revenue__box::before {
    top: initial;
    bottom: 0;
    left: -2rem;
    z-index: 2;
  }
  .p-fc-revenue__note {
    text-align: left;
  }
  .p-fc-support__lead {
    text-align: left;
  }
  .p-fc-support__item {
    padding: 1.5rem;
  }
}
.p-model-intro__inner,
.p-model-pillar__inner,
.p-model-interview__inner,
.p-model-info__inner {
  display: grid;
  gap: 3rem;
}

.p-model-intro__media .c-media__image img,
.p-model-pillar__media .c-media__image img {
  aspect-ratio: 5/4;
}

.p-model-intro__media .c-media__text {
  display: grid;
  gap: 1.5rem;
}

.p-model-pillar__list {
  display: grid;
  gap: 2.5rem;
}

.p-model-pillar__media .c-media__body {
  gap: 1rem;
}

.p-model-interview__inner {
  gap: 2.5rem;
}

.p-model-interview__lead {
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
}

.p-model-interview__list {
  gap: 2rem;
}

.p-model-info__media {
  grid-template-columns: minmax(0, 25rem) 1fr;
}

.p-model-info__image img {
  aspect-ratio: 1/1;
}

.p-model-info__table {
  display: grid;
  width: 100%;
}

.p-model-info__row {
  display: grid;
  grid-template-columns: 6.25rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 0.5rem;
  border-bottom: 1px dashed #aaaaaa;
}

.p-model-info__row:first-child {
  border-top: 1px dashed #aaaaaa;
}

.p-model-info__row dt {
  color: #5e8234;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.p-model-info__row dd {
  margin: 0;
}

@media (max-width: 767px) {
  .p-model-intro__inner,
  .p-model-pillar__inner,
  .p-model-interview__inner,
  .p-model-info__inner {
    gap: 2.5rem;
  }
  .p-model-interview__lead {
    text-align: left;
  }
  .p-model-interview__lead br {
    display: none;
  }
  .p-model-interview__list {
    gap: 1rem;
  }
  .p-model-pillar__list {
    gap: 2.5rem;
  }
  .p-model-info__media {
    grid-template-columns: 1fr;
  }
  .p-model-info__row {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }
  .p-model-info__table {
    order: 3;
  }
}
.p-course-lead__inner,
.p-course-curriculum__inner,
.p-course-voice__inner,
.p-course-flow__inner {
  display: grid;
  gap: 3rem;
  justify-items: center;
}

.p-course-lead__text {
  padding-bottom: 2rem;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
}

.p-course-lead__check {
  width: min(100%, 53.125rem);
  position: relative;
}

.p-course-lead__check::before,
.p-course-lead__check::after {
  position: absolute;
  pointer-events: none;
  content: "";
  z-index: 1;
  bottom: 1rem;
}

.p-course-lead__check::before {
  background: url("../img/leaf-left-sm.webp") center/contain no-repeat;
  width: min(100%, 74px);
  aspect-ratio: 74/89;
  left: -3rem;
}

.p-course-lead__check::after {
  background: url("../img/leaf-right.webp") center/contain no-repeat;
  width: min(100%, 90px);
  aspect-ratio: 9/13;
  right: -2rem;
}

.p-course-flow,
.p-course-learning {
  display: grid;
  gap: 1rem;
}

.p-course-learning__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  padding: 2.5rem;
  background: #ffffff;
  border: 1px solid #848e62;
  border-radius: 0.5rem;
}

.p-course-learning__item {
  display: flex;
  gap: 1rem;
  align-items: center;
  min-width: 0;
  padding: 1rem 1.5rem;
  background: #f5f2e9;
  font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
}

.p-course-learning__item img {
  flex: 0 0 3.375rem;
  width: 3.375rem;
  object-fit: contain;
}

.p-course-overview {
  display: grid;
  gap: 1rem;
}

.p-course-overview__table {
  display: grid;
  width: 100%;
  padding: 2.5rem;
  background: #ffffff;
  border: 1px solid #848e62;
  border-radius: 1rem;
  margin: 0;
}

.p-course-overview__row {
  display: grid;
  grid-template-columns: 6.25rem minmax(0, 1fr);
  gap: 1rem;
  padding-block: 0.5rem;
}

.p-course-overview__row:not(:last-child) {
  border-bottom: 1px dashed #aaaaaa;
}

.p-course-overview__row dt {
  color: #5e8234;
  font-size: 0.875rem;
}

.p-course-overview__row dd {
  min-width: 0;
  margin: 0;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
}

.p-course-curriculum__list {
  display: grid;
  padding: 1rem 2.5rem;
  background: #ffffff;
  border: 1px solid #848e62;
  border-radius: 1rem;
}

.p-course-curriculum__media {
  grid-template-columns: minmax(0, 38%) 1fr;
  gap: 2.5rem;
  padding-block: 2rem;
}

.p-course-curriculum__media:not(:last-child) {
  border-bottom: 1px dashed #aaaaaa;
}

.p-course-curriculum__media .c-media__image img {
  aspect-ratio: 4/3;
}

.p-course-curriculum__media .c-media__body {
  gap: 1rem;
}

@media (max-width: 767px) {
  .p-course-lead__inner,
  .p-course-curriculum__inner,
  .p-course-flow__inner {
    gap: 2.5rem;
  }
  .p-course-lead__text {
    padding-bottom: 1rem;
    text-align: left;
  }
  .p-course-learning__list {
    grid-template-columns: 1fr;
    padding: 1.5rem;
  }
  .p-course-learning__item {
    padding: 1rem;
  }
  .p-course-overview__table {
    padding: 1.5rem;
  }
  .p-course-overview__row {
    grid-template-columns: 5rem minmax(0, 1fr);
  }
  .p-course-curriculum__list {
    padding: 0 1.5rem;
  }
  .p-course-curriculum__media {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding-block: 2rem;
  }
  .p-course-lead__check::before {
    max-width: 60px;
    bottom: 0;
    left: -2rem;
  }
  .p-course-lead__check::after {
    max-width: 60px;
    bottom: 0;
  }
}
.p-faq__blocks {
  display: grid;
  gap: 4rem;
}

.p-faq__block {
  display: grid;
  gap: 2rem;
}

.p-faq__list {
  display: grid;
  gap: 2rem;
}

.p-faq__item {
  padding: 1.5rem;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #848e62;
  border-radius: 0.5rem;
}

.p-faq__question {
  margin: 0;
}

.p-faq__question button {
  color: #4c3918;
  position: relative;
  display: grid;
  grid-template-columns: 2rem minmax(0, 1fr) 2rem;
  gap: 0.5rem;
  align-items: start;
  width: 100%;
  padding: 0;
  font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
  font-weight: 500;
  text-align: left;
  letter-spacing: 0.05em;
  cursor: pointer;
  background: transparent;
  border: 0;
}

.p-faq__question button::before {
  width: 2rem;
  height: 2rem;
  background: url("../img/icon-q.webp") center/contain no-repeat;
  content: "";
}

.p-faq__question button::after {
  display: block;
  content: "";
  transition: transform 0.2s ease;
  width: 10px;
  height: 10px;
  border-top: 2px solid #bf9d5a;
  border-right: 2px solid #bf9d5a;
  transform: rotate(135deg);
  transform-origin: center;
  margin-top: 10px;
}

.p-faq__question button[aria-expanded=true]::after {
  transform: rotate(-45deg);
}

.p-faq__answer {
  margin-top: 1rem;
  padding: 1rem 0 0 2.5rem;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  border-top: 1px dashed #aaaaaa;
}

.p-faq__item--static .p-faq__question {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
}

.p-faq__item--static .p-faq__question::before {
  width: 2rem;
  height: 2rem;
  background: url("../img/icon-q.webp") center/contain no-repeat;
  content: "";
}

.p-faq__item--static .p-faq__answer {
  padding-left: 0;
}

@media (max-width: 767px) {
  .p-faq {
    padding-block: 5rem;
  }
  .p-faq__blocks {
    gap: 3.5rem;
  }
  .p-faq__block {
    gap: 1rem;
  }
  .p-faq__list {
    gap: 1rem;
  }
  .p-faq__item {
    padding: 1rem;
  }
  .p-faq__item--static {
    gap: 1rem;
  }
  .p-faq__question button {
    grid-template-columns: 1.5rem minmax(0, 1fr) 10px;
    font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  }
  .p-faq__question button::before {
    width: 1.5rem;
    height: 1.5rem;
  }
  .p-faq__question button::after {
    width: 8px;
    height: 8px;
    margin-top: 6px;
  }
  .p-faq__answer {
    padding-left: 0;
  }
}
.p-contact {
  background: #f5f2e9;
}

.p-contact__inner {
  display: grid;
  gap: 3rem;
  justify-items: center;
}

.p-contact-line,
.p-contact-form {
  width: min(100%, 50rem);
  background: #ffffff;
  border: 1px solid #848e62;
  border-radius: 1rem;
}

.p-contact-line {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  padding: 2rem;
  text-align: center;
}

.p-contact-line__title {
  color: #5e8234;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1.25rem, 1.1rem + 0.64vw, 1.5rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.p-contact-line__text {
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.p-contact-line__button,
.p-contact-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3.875rem;
  padding: 1rem 2.5rem;
  color: #ffffff;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
  border-radius: 0.5rem;
  box-shadow: 0 0.375rem 0.9375rem rgba(80, 67, 34, 0.2);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.p-contact-line__button:hover,
.p-contact-form__button:hover {
  opacity: 0.9;
  transform: translateY(-0.125rem);
}

.p-contact-line__button {
  background: #19be00;
}

.p-contact-line__button img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}

.p-contact-form {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
  padding: 2rem 2rem 3rem;
}

.p-contact-form__table {
  display: grid;
  width: 100%;
}

.p-contact-form__row {
  display: grid;
  grid-template-columns: 15.625rem minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  padding-block: 1.5rem;
  border: 0;
  border-bottom: 1px dashed #aaaaaa;
}

.p-contact-form__label {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0.5rem 0 0 0.5rem;
  color: #343a40;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
}

.p-contact-form__badge {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  color: #ffffff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
  background: #aaaaaa;
}

.p-contact-form__badge--required {
  background: #bf9d5a;
}

.p-contact-form__field {
  display: grid;
  gap: 0.5rem;
  min-width: 0;
}

.p-contact-form__radio-list {
  padding-top: 0.5rem;
}

.p-contact-form__radio {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  color: #343a40;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.p-contact-form__radio input {
  position: relative;
  flex: 0 0 auto;
  width: 1.25rem;
  height: 1.25rem;
  margin: 0;
  appearance: none;
  background: #ffffff;
  border: 1px solid #aaaaaa;
  border-radius: 50%;
}

.p-contact-form__radio input:checked::before {
  position: absolute;
  inset: 0.25rem;
  background: #5e8234;
  border-radius: 50%;
  content: "";
}

.p-contact-form input:not([type=radio]),
.p-contact-form textarea {
  width: 100%;
  padding: 0.5rem 1rem;
  color: #4c3918;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  line-height: 1.7;
  letter-spacing: 0.05em;
  background: #f8f9fa;
  border: 1px solid #aaaaaa;
  border-radius: 0.25rem;
}

.p-contact-form input.is-invalid,
.p-contact-form textarea.is-invalid {
  border-color: #bf9d5a;
  background: rgba(191, 157, 90, 0.08);
}

.p-contact-form input:not([type=radio]) {
  min-height: 3rem;
}

.p-contact-form textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.p-contact-form input::placeholder,
.p-contact-form textarea::placeholder {
  color: #aaaaaa;
}

.p-contact-form__error {
  color: #bf9d5a;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.6;
}

.p-contact-form__privacy {
  font-family: "Noto Serif JP", serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
}

.p-contact-form__privacy a {
  text-decoration: underline;
}

.p-contact-form__button {
  min-width: 20rem;
  background: #5e8234;
  border: 0;
  cursor: pointer;
}

.p-contact-form__button:disabled {
  cursor: default;
  opacity: 0.72;
  transform: none;
}

.p-contact-form__button:disabled:hover {
  opacity: 0.72;
  transform: none;
}

.p-contact-form__button::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  content: "";
  transform: rotate(45deg);
}

.p-contact-form__button:disabled::after {
  display: none;
}

.p-contact-form__button.is-loading::after {
  display: block;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: contact-submit-spin 0.8s linear infinite;
  transform: none;
}

.p-contact-form__complete {
  color: #5e8234;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
  letter-spacing: 0.05em;
}

@keyframes contact-submit-spin {
  to {
    transform: rotate(360deg);
  }
}
@media (max-width: 767px) {
  .p-contact__inner {
    gap: 2.5rem;
  }
  .p-contact-line,
  .p-contact-form {
    width: 100%;
  }
  .p-contact-line,
  .p-contact-form {
    padding: 1.5rem;
  }
  .p-contact-line__title {
    font-size: clamp(1.125rem, 1.05rem + 0.32vw, 1.25rem);
  }
  .p-contact-line__text {
    text-align: left;
  }
  .p-contact-line__button,
  .p-contact-form__button {
    width: 100%;
    min-width: 0;
    padding-inline: 1.5rem;
    font-size: clamp(0.875rem, 0.8rem + 0.32vw, 1rem);
  }
  .p-contact-form__row {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-block: 1.5rem;
  }
  .p-contact-form__label {
    padding: 0;
  }
  .p-contact-form__radio {
    align-items: flex-start;
  }
}
.p-privacy__contents {
  display: grid;
  gap: 2rem;
  margin-inline: auto;
}

.p-privacy__section {
  display: grid;
  gap: 1rem;
}

.p-privacy__section h2 {
  padding: 0.25rem 0 0.25rem 1rem;
  font-size: clamp(1.125rem, 1.05rem + 0.32vw, 1.25rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05em;
  border-left: 4px solid #5e8234;
}

.p-privacy__section ul {
  display: grid;
  gap: 0.5rem;
  padding-left: 1.5rem;
  list-style: disc;
}

.p-privacy__date {
  padding-top: 1rem;
  text-align: right;
  border-top: 1px dashed #aaaaaa;
}

@media (max-width: 767px) {
  .p-privacy__contents {
    padding: 1.5rem;
  }
  .p-privacy__section h2 {
    font-size: clamp(1rem, 0.925rem + 0.32vw, 1.125rem);
  }
  .p-privacy__date {
    text-align: left;
  }
}
.u-display--none {
  display: none;
}

.u-display--sp {
  display: none;
}

@media (max-width: 767px) {
  .u-display--pc {
    display: none;
  }
  .u-display--sp {
    display: block;
  }
}
