/* ========================================
	Settings
======================================== */
/* ----------------------------------------
	Color
---------------------------------------- */
/* ----------------------------------------
	Typography
---------------------------------------- */
/* ----------------------------------------
	Layout
---------------------------------------- */
/* ----------------------------------------
	Header
---------------------------------------- */
/* ----------------------------------------
	Spacing
---------------------------------------- */
/* ----------------------------------------
	Z-index
---------------------------------------- */
/* ----------------------------------------
	Header Responsive Control
---------------------------------------- */
/* ----------------------------------------
	Header Colors
---------------------------------------- */
/* ----------------------------------------
	Hero Side Banner Width
---------------------------------------- */
/* ========================================
	Mixins
======================================== */
/* ----------------------------------------
	Media Query
---------------------------------------- */
/* ----------------------------------------
	Container
---------------------------------------- */
/* ----------------------------------------
	Flex Center
---------------------------------------- */
/* ----------------------------------------
	Absolute Fill
---------------------------------------- */
/* ----------------------------------------
	Text Ellipsis
---------------------------------------- */
/* ----------------------------------------
	Multi Line Clamp
---------------------------------------- */
/* ----------------------------------------
	Rim Design
---------------------------------------- */
/* ========================================
	Base
======================================== */
/* ----------------------------------------
	Reset
---------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Hiragino Kaku Gothic ProN", "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.85;
  color: #24312b;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  text-size-adjust: 100%;
}

img,
svg,
video {
  display: block;
  max-width: 100%;
}

img,
video {
  height: auto;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: 600;
  line-height: 1.4;
}

p {
  margin: 0;
}

figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

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

button {
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

button,
input,
textarea,
select {
  box-sizing: border-box;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  padding: 0;
}

::placeholder {
  color: rgba(0, 0, 0, 0.45);
}

/* ----------------------------------------
	Layout
---------------------------------------- */
.wrap {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 28px;
  padding-right: 28px;
}
@media (max-width: 768px) {
  .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* ----------------------------------------
	Form Base
---------------------------------------- */
input[type=text],
input[type=email],
input[type=tel],
input[type=password],
input[type=search],
textarea,
select {
  display: block;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  background: #fff;
  line-height: 1.7;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
input[type=search],
select {
  min-height: 48px;
  padding: 0 14px;
}

textarea {
  min-height: 160px;
  padding: 12px 14px;
}

input[type=checkbox],
input[type=radio] {
  display: inline-block;
  width: auto;
  height: auto;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  appearance: auto;
  vertical-align: middle;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=password]:focus,
input[type=search]:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

input[type=checkbox]:focus,
input[type=radio]:focus {
  outline: 2px solid rgba(0, 0, 0, 0.35);
  outline-offset: 2px;
}

input:disabled,
textarea:disabled,
select:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}

/* ----------------------------------------
	Common Form Class
---------------------------------------- */
.form-field {
  margin-top: 24px;
}

.form-field:first-child {
  margin-top: 0;
}

.form-field > label {
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 700;
  line-height: 1.6;
}

.form-options {
  display: grid;
  gap: 10px;
}

.form-choice {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.7;
}

.form-choice input[type=checkbox],
.form-choice input[type=radio] {
  flex: 0 0 auto;
  margin-top: 0.2em;
}

.form-choice__label {
  flex: 1 1 auto;
}

.form-error {
  display: none;
  margin-top: 6px;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #c62828;
}

.form-field.is-invalid .form-error {
  display: block;
}

.form-field.is-invalid input[type=text],
.form-field.is-invalid input[type=email],
.form-field.is-invalid input[type=tel],
.form-field.is-invalid input[type=password],
.form-field.is-invalid input[type=search],
.form-field.is-invalid textarea,
.form-field.is-invalid select {
  border-color: #c62828;
}

.form-options.is-invalid {
  padding: 10px 12px;
  border: 1px solid #c62828;
  border-radius: 12px;
}

/* ----------------------------------------
	Utility
---------------------------------------- */
.is-hidden {
  display: none;
}

.is-sp {
  display: none;
}
@media (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

.is-pc {
  display: block;
}
@media (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

.center {
  text-align: center;
}

.headerAjust {
  padding-top: 84px;
  margin-top: -84px;
}
@media (max-width: 768px) {
  .headerAjust {
    padding-top: 68px;
    margin-top: -68px;
  }
}

.br-sp {
  display: none;
}

.br-pc {
  display: inline;
}

@media (max-width: 768px) {
  .br-sp {
    display: inline;
  }
  .br-pc {
    display: none;
  }
}
.rm-body p {
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.rm-h3 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 2.4rem 0 1.2rem;
  margin: 0 0 1.2rem;
}

.rm-embed {
  margin: 3rem 0;
}
.rm-embed--youtube {
  position: relative;
  aspect-ratio: 16/9;
}
.rm-embed--youtube iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.rm-link {
  word-break: break-all;
}
.rm-link--button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.rm-link-wrap--button {
  margin: 2.4rem 0;
}

/* ========================================
	Header
======================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  color: #24312b;
  border-bottom: 1px solid rgba(28, 78, 55, 0.16);
  backdrop-filter: blur(12px);
  overflow-x: clip;
}
.site-header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  min-height: 84px;
  padding: 0 2.4rem;
}
.site-header__brand, .site-header__brand-text, .site-header__controls, .site-header__menu, .site-header__tel {
  display: flex;
  align-items: center;
}
.site-header__brand {
  gap: 1.2rem;
  min-width: 0;
}
.site-header__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 8px;
  background: #177245;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1;
}
.site-header__brand-text {
  align-items: flex-start;
  flex-direction: column;
  gap: 0.2rem;
}
.site-header__brand-name {
  font-size: 1.9rem;
  line-height: 1.35;
  font-weight: 800;
}
.site-header__brand-copy {
  font-size: 1.2rem;
  line-height: 1.4;
  color: rgba(36, 49, 43, 0.68);
}
.site-header__controls {
  gap: 1.6rem;
  flex: 0 0 auto;
}
.site-header__menu {
  gap: 1.6rem;
}
.site-header__menu-link {
  display: inline-flex;
  align-items: center;
  min-height: 4.4rem;
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 700;
  color: #24312b;
}
.site-header__tel {
  flex-direction: column;
  justify-content: center;
  min-width: 17.6rem;
  min-height: 5.6rem;
  padding: 0.8rem 1.4rem;
  border-radius: 8px;
  background: #177245;
  color: #fff;
  line-height: 1.25;
  text-align: center;
}
.site-header__tel-label {
  font-size: 1.2rem;
  font-weight: 700;
}
.site-header__tel-number {
  font-size: 1.9rem;
  font-weight: 800;
}
.site-header__toggle {
  position: relative;
  z-index: 1100;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 8px;
  background: #0f5734;
  color: #fff;
}
.site-header__toggle-lines {
  display: grid;
  gap: 0.5rem;
}
.site-header__toggle-line {
  display: block;
  width: 2.6rem;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.site-header__toggle-label {
  font-size: 1rem;
  line-height: 1;
}
.site-header__drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(42rem, 85vw);
  max-width: 100%;
  height: 100dvh;
  padding: 9.6rem 2.4rem 3.2rem;
  background: #fff;
  color: #24312b;
  transform: translate3d(100%, 0, 0);
  transition: transform 0.3s ease;
  overflow-y: auto;
  box-shadow: -24px 0 60px rgba(23, 59, 43, 0.14);
  will-change: transform;
}
.site-header__drawer-menu {
  display: grid;
  gap: 0;
}
.site-header__drawer-menu-link {
  display: block;
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(28, 78, 55, 0.16);
  font-size: 1.8rem;
  font-weight: 800;
}
.site-header__drawer-contact {
  margin-top: 2.8rem;
  padding: 2rem;
  border-radius: 8px;
  background: #e8f5ee;
}
.site-header__drawer-contact-label, .site-header__drawer-note {
  font-size: 1.4rem;
  color: rgba(36, 49, 43, 0.68);
}
.site-header__drawer-tel {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 2.6rem;
  line-height: 1.25;
  font-weight: 800;
  color: #0f5734;
}
.site-header.is-open .site-header__drawer {
  transform: translateX(0);
}
.site-header.is-open .site-header__toggle-line:nth-child(1) {
  transform: translateY(0.7rem) rotate(45deg);
}
.site-header.is-open .site-header__toggle-line:nth-child(2) {
  opacity: 0;
}
.site-header.is-open .site-header__toggle-line:nth-child(3) {
  transform: translateY(-0.7rem) rotate(-45deg);
}
@media (max-width: 1120px) {
  .site-header__menu-nav {
    display: none;
  }
  .site-header__toggle {
    display: inline-flex;
  }
}
@media (max-width: 768px) {
  .site-header__inner {
    min-height: 68px;
    padding: 0 1.4rem 0 1.6rem;
    gap: 1rem;
  }
  .site-header__brand-mark {
    width: 4.6rem;
    height: 4.6rem;
    font-size: 1rem;
  }
  .site-header__brand-name {
    font-size: 1.55rem;
  }
  .site-header__brand-copy {
    font-size: 1.1rem;
  }
  .site-header__tel {
    display: none;
  }
  .site-header__toggle {
    width: 4.8rem;
    height: 4.8rem;
  }
}

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

/* ========================================
	Footer
======================================== */
.site-footer {
  padding: 5.6rem 0 9rem;
  background: #173b2b;
  color: #fff;
}
.site-footer__main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(32rem, 0.9fr);
  gap: 4rem;
  align-items: start;
}
.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
}
.site-footer__brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.6rem;
  height: 5.6rem;
  border-radius: 8px;
  background: #fff;
  color: #0f5734;
  font-size: 1.2rem;
  font-weight: 800;
}
.site-footer__brand-text {
  display: grid;
  gap: 0.2rem;
}
.site-footer__brand-name {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.35;
}
.site-footer__brand-copy, .site-footer__info, .site-footer__copyright {
  color: rgba(255, 255, 255, 0.78);
}
.site-footer__lead {
  font-weight: 700;
}
.site-footer__tel {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 800;
  color: #fff;
}
.site-footer__info {
  margin-top: 0.4rem;
  font-size: 1.45rem;
}
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  margin-top: 4rem;
  padding-top: 2.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}
.site-footer__nav a {
  font-size: 1.45rem;
  font-weight: 700;
}
.site-footer__copyright {
  margin-top: 2.4rem;
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 4.8rem 0 11rem;
  }
  .site-footer__main {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }
  .site-footer__tel {
    font-size: 2.7rem;
  }
}

/* ========================================
	Common Components
======================================== */
.site-main {
  overflow: hidden;
}

.section {
  padding: 84px 0;
}
.section--soft {
  background: #f7fbf8;
}
@media (max-width: 768px) {
  .section {
    padding: 56px 0;
  }
}

.narrow {
  max-width: 820px;
}

.eyebrow {
  margin-bottom: 1rem;
  font-size: 1.35rem;
  line-height: 1.4;
  font-weight: 800;
  color: #177245;
}

.section-head {
  max-width: 760px;
  margin-bottom: 3.2rem;
}

.section-title {
  font-size: 4.2rem;
  line-height: 1.35;
  font-weight: 800;
  color: #24312b;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 3rem;
  }
}

.section-lead,
.lead-text {
  margin-top: 1.4rem;
  font-size: 1.8rem;
  line-height: 1.9;
  color: rgba(36, 49, 43, 0.68);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  min-height: 5.6rem;
  padding: 1.2rem 2rem;
  border: 2px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
}
.button strong {
  font-size: 1.18em;
}
.button--primary {
  background: #177245;
  color: #fff;
}
.button--secondary {
  background: #fff5df;
  color: #6c4611;
  border-color: rgba(212, 154, 53, 0.22);
}
.button--outline {
  background: #fff;
  color: #0f5734;
  border-color: rgba(28, 78, 55, 0.16);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}
@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card,
.step-card,
.price-block,
.faq-item,
.message-box,
.notice-box {
  border: 1px solid rgba(28, 78, 55, 0.16);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(23, 59, 43, 0.06);
}

.feature-card {
  padding: 2.4rem;
}
.feature-card h3 {
  font-size: 2rem;
  line-height: 1.45;
  font-weight: 800;
  color: #0f5734;
}
.feature-card p {
  margin-top: 0.8rem;
  color: rgba(36, 49, 43, 0.68);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(32rem, 0.75fr);
  gap: 4rem;
  align-items: start;
}
@media (max-width: 768px) {
  .split {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }
}

.check-list {
  display: grid;
  gap: 1.2rem;
}
.check-list li {
  position: relative;
  padding-left: 3rem;
  font-weight: 700;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background: #177245;
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 0.5rem;
  top: 0.84em;
  width: 0.55rem;
  height: 0.9rem;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.6rem;
}
@media (max-width: 768px) {
  .step-list {
    grid-template-columns: 1fr;
  }
}

.step-card {
  padding: 2.2rem;
}
.step-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: #177245;
  color: #fff;
  font-weight: 800;
}
.step-card h3 {
  margin-top: 1.2rem;
  font-size: 1.9rem;
  font-weight: 800;
}
.step-card p {
  margin-top: 0.6rem;
  color: rgba(36, 49, 43, 0.68);
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 3.2rem;
}

.notice-box {
  padding: 3rem;
}
.notice-box h2 {
  font-size: 2.4rem;
  font-weight: 800;
}
.notice-box p {
  margin-top: 1.2rem;
  color: rgba(36, 49, 43, 0.68);
}

.cta-band {
  padding: 5.6rem 0;
  background: #0f5734;
  color: #fff;
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.2rem;
}
.cta-band .eyebrow {
  color: #bde5ce;
}
.cta-band h2 {
  font-size: 3.8rem;
  font-weight: 800;
}
.cta-band p {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
}
.cta-band__tel {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 25rem;
  min-height: 7.2rem;
  padding: 1.2rem 2rem;
  border-radius: 8px;
  background: #fff;
  color: #0f5734;
  font-size: 2.8rem;
  font-weight: 800;
}
@media (max-width: 768px) {
  .cta-band h2 {
    font-size: 2.9rem;
  }
  .cta-band__inner {
    align-items: stretch;
    flex-direction: column;
  }
  .cta-band__tel {
    width: 100%;
    min-width: 0;
    font-size: 2.4rem;
  }
}

.fixed-call {
  position: fixed;
  left: 1.6rem;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 900;
  display: none;
}
.fixed-call__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 6.4rem;
  border-radius: 8px;
  background: #177245;
  color: #fff;
  box-shadow: 0 14px 36px rgba(15, 87, 52, 0.26);
}
.fixed-call__label {
  font-size: 1.3rem;
  font-weight: 800;
}
.fixed-call__number {
  font-size: 2.1rem;
  font-weight: 800;
}
@media (max-width: 768px) {
  .fixed-call {
    display: block;
  }
}

/* ========================================
	Page: Home
======================================== */
.home-hero {
  padding: 7.2rem 0 6.4rem;
  background: linear-gradient(120deg, rgba(232, 245, 238, 0.96), rgba(237, 247, 250, 0.72)), #fff;
}
.home-hero__inner {
  display: grid;
  gap: 5.6rem;
  align-items: center;
}
.home-hero__title {
  max-width: 780px;
  font-size: 5.6rem;
  line-height: 1.24;
  font-weight: 800;
  color: #24312b;
}
.home-hero__text {
  max-width: 720px;
  margin-top: 1.8rem;
  font-size: 1.9rem;
  line-height: 1.9;
  color: rgba(36, 49, 43, 0.68);
}
.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2.8rem;
}
.home-hero__note {
  margin-top: 1.4rem;
  font-size: 1.45rem;
  color: rgba(36, 49, 43, 0.68);
}
.home-hero__visual {
  padding: 2rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(28, 78, 55, 0.16);
  box-shadow: 0 18px 54px rgba(23, 59, 43, 0.08);
}
@media (max-width: 768px) {
  .home-hero {
    padding: 4.8rem 0 5.2rem;
  }
  .home-hero__inner {
    grid-template-columns: 1fr;
    gap: 3.2rem;
  }
  .home-hero__text {
    font-size: 1.7rem;
  }
  .home-hero__title {
    font-size: 3.4rem;
  }
  .home-hero__actions .button {
    width: 100%;
  }
}

/* ========================================
	Page: Lower
======================================== */
.page-hero {
  padding: 6rem 0;
  background: linear-gradient(120deg, #e8f5ee, #edf7fa);
}
.page-hero h1 {
  font-size: 5rem;
  font-weight: 800;
  line-height: 1.28;
}
.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 1.4rem;
  font-size: 1.8rem;
  color: rgba(36, 49, 43, 0.68);
}
@media (max-width: 768px) {
  .page-hero {
    padding: 4.8rem 0;
  }
  .page-hero h1 {
    font-size: 3.2rem;
  }
}

.flow-list {
  display: grid;
  gap: 1.6rem;
}

.flow-item {
  display: grid;
  grid-template-columns: 6rem minmax(0, 1fr);
  gap: 2rem;
  padding: 2.4rem;
  border: 1px solid rgba(28, 78, 55, 0.16);
  border-radius: 8px;
  background: #fff;
}
.flow-item__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  background: #177245;
  color: #fff;
  font-size: 2rem;
  font-weight: 800;
}
.flow-item h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: #0f5734;
}
.flow-item p {
  margin-top: 0.6rem;
  color: rgba(36, 49, 43, 0.68);
}
@media (max-width: 768px) {
  .flow-item {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

.price-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}
@media (max-width: 768px) {
  .price-layout {
    grid-template-columns: 1fr;
  }
}

.price-block {
  padding: 2.6rem;
}
.price-block--wide {
  grid-column: 1/-1;
}
.price-block h2 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #0f5734;
}

.price-table {
  display: grid;
  gap: 0;
  margin-top: 1.6rem;
  border-top: 1px solid rgba(28, 78, 55, 0.16);
}
.price-table div {
  display: grid;
  grid-template-columns: minmax(15rem, 0.45fr) minmax(0, 1fr);
  gap: 1.6rem;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(28, 78, 55, 0.16);
}
.price-table span {
  color: rgba(36, 49, 43, 0.68);
}
.price-table strong {
  font-weight: 800;
}
@media (max-width: 768px) {
  .price-table div {
    grid-template-columns: 1fr;
    gap: 0.2rem;
  }
}

.note-text {
  margin-top: 1.2rem;
  color: rgba(36, 49, 43, 0.68);
}

.faq-list {
  display: grid;
  gap: 1.4rem;
}

.faq-item {
  padding: 2.4rem;
}
.faq-item h2 {
  position: relative;
  padding-left: 3.2rem;
  font-size: 2rem;
  font-weight: 800;
  color: #0f5734;
}
.faq-item h2::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 0;
  color: #d49a35;
}
.faq-item p {
  position: relative;
  margin-top: 1rem;
  padding-left: 3.2rem;
  color: rgba(36, 49, 43, 0.68);
}
.faq-item p::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 800;
  color: #177245;
}

.company-table {
  border-top: 1px solid rgba(28, 78, 55, 0.16);
}
.company-table__row {
  display: grid;
  grid-template-columns: 20rem minmax(0, 1fr);
  border-bottom: 1px solid rgba(28, 78, 55, 0.16);
}
.company-table__label, .company-table__value {
  padding: 1.8rem 0;
}
.company-table__label {
  font-weight: 800;
  color: #0f5734;
}
.company-table__value a {
  font-weight: 800;
  color: #0f5734;
}
@media (max-width: 768px) {
  .company-table__row {
    grid-template-columns: 1fr;
    gap: 0.2rem;
    padding: 1.6rem 0;
  }
  .company-table__label, .company-table__value {
    padding: 0;
  }
}

.message-box {
  padding: 3.2rem;
}
.message-box p + p {
  margin-top: 1.4rem;
}
.message-box__signature {
  text-align: right;
  font-weight: 800;
}

/* ========================================
	Utilities / State / Exception
======================================== */
@media (hover: hover) {
  a {
    transition: opacity 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }
  a:hover {
    opacity: 0.78;
  }
}
