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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
}

ul, ol, p, h1, h2, h3, h4, dl, dt, dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

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

:root {
  --green: #2f7d57;
  --green-dark: #1f5a3f;
  --blue-soft: #e9f9f9;
  --green-mid: #3d8a63;
  --orange: #f39b53;
  --orange-deep: #db7d34;
  --gold: #b8a679;
  --navy: #1c2d39;
  --text-main: #333333;
  --text-muted: #66717b;
  --bg-color: #faf8f5;
  --beige: #fdfaf5;
  --white: #ffffff;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 15px 40px rgba(47, 125, 87, 0.08);
  --shadow-s: 0 5px 15px rgba(0, 0, 0, 0.05);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 16px;
  --r-xl: 20px;
  --r-lg: 16px;
  --r-md: 12px;
  --font-default: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans",
                    "BIZ UDPGothic", Meiryo, sans-serif;
  --serif: "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --maru: "Zen Maru Gothic", var(--font-default);
  --en-font: "Alexandria", "Inter", sans-serif;
  --transition: .25s ease;
  --transition-duration: .25s;
  --hover-opacity: .75;
  --wrap: 1150px;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  background-color: var(--bg-color);
  color: var(--text-main);
  font-family: var(--font-default);
  font-size: 3.58745vw;
  line-height: 1.8;
  font-weight: 500;
  letter-spacing: 0.04em;
  overflow-x: hidden;
  text-rendering: optimizeSpeed;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px), print {
  body {
    font-size: 15px;
  }
}
@media screen and (min-width: 991px), print {
  body {
    font-size: 16px;
  }
}

img {
  max-width: 100%;
  display: block;
  vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
  transition: opacity var(--transition);
}

::selection {
  background-color: var(--green);
  color: #fff;
  text-shadow: none;
}

::placeholder {
  color: #bbb;
  opacity: 1;
}

.wrap {
  width: 100%;
  padding: 0 4.93274vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px), print {
  .wrap {
    padding: 0 40px;
  }
}
@media screen and (min-width: 991px), print {
  .wrap {
    max-width: var(--wrap);
    padding: 0;
  }
}

.zen {
  font-family: var(--maru);
}

.en-font {
  font-family: var(--en-font);
  letter-spacing: 0.07em;
}

.fade-up {
  opacity: 0;
  transform: translateY(6.72646vw);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
@media screen and (min-width: 768px), print {
  .fade-up {
    transform: translateY(30px);
  }
}
.fade-up.is-show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.u-tl {
  text-align: left;
}

.u-tc {
  text-align: center;
}

.u-tr {
  text-align: right;
}

.u-fwn {
  font-weight: 400;
}

.u-fwb {
  font-weight: 700;
}

.u-visuallyHidden {
  position: absolute !important;
  z-index: -1 !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  overflow: hidden !important;
}

.none {
  display: none;
}

.md__block {
  display: none;
}
@media not screen and (min-width: 768px), print {
  .md__block {
    display: block;
  }
}

.sm__block {
  display: none;
}
@media not screen and (min-width: 600px), print {
  .sm__block {
    display: block;
  }
}

@media not screen and (min-width: 768px), print {
  .md__none {
    display: none;
  }
}

@media not screen and (min-width: 600px), print {
  .sm__none {
    display: none;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 2.24216vw;
  padding: 4.48431vw 7.17489vw;
  border-radius: 11.21077vw;
  font-weight: 700;
  font-size: 3.58745vw;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  transition: background var(--transition), transform var(--transition);
  font-family: var(--font-default);
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px), print {
  .btn {
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
  }
}
@media screen and (min-width: 991px), print {
  .btn {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 16px;
  }
}
.btn-primary {
  background: var(--orange-deep);
  color: #fff;
}
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    background: var(--orange);
    transform: translateY(-2px);
  }
}
.btn-orange {
  background: var(--orange-deep);
  color: #fff;
  padding: 4.03588vw 6.27803vw;
}
@media screen and (min-width: 768px), print {
  .btn-orange {
    padding: 14px 24px;
  }
}
@media screen and (min-width: 991px), print {
  .btn-orange {
    padding: 16px 30px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .btn-orange:hover {
    background: var(--orange);
    transform: translateY(-2px);
  }
}

.section {
  padding: 20.17938vw 0;
}
@media screen and (min-width: 768px), print {
  .section {
    padding: 80px 0;
  }
}
@media screen and (min-width: 991px), print {
  .section {
    padding: 120px 0;
  }
}

.section-head {
  text-align: center;
  margin-bottom: 10.76234vw;
}
@media screen and (min-width: 768px), print {
  .section-head {
    margin-bottom: 50px;
  }
}
@media screen and (min-width: 991px), print {
  .section-head {
    margin-bottom: 60px;
  }
}
.section-head h2 {
  font-size: 6.27803vw;
  color: var(--green-dark);
  margin: 0 0 4.48431vw;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  .section-head h2 {
    font-size: 28px;
    margin: 0 0 16px;
  }
}
@media screen and (min-width: 991px), print {
  .section-head h2 {
    font-size: 36px;
    margin: 0 0 20px;
  }
}
.section-head p {
  font-size: 3.58745vw;
  color: var(--text-muted);
  margin: 0 auto;
  line-height: 1.9;
}
@media screen and (min-width: 768px), print {
  .section-head p {
    font-size: 15px;
  }
}
@media screen and (min-width: 991px), print {
  .section-head p {
    font-size: 18px;
  }
}

.section-kicker {
  font-family: var(--en-font);
  font-size: 3.13902vw;
  color: var(--gold);
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 2.24216vw;
  font-weight: 700;
}
@media screen and (min-width: 768px), print {
  .section-kicker {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 991px), print {
  .section-kicker {
    font-size: 16px;
  }
}

.floating-tel {
  position: fixed;
  bottom: 5.38117vw;
  right: 5.38117vw;
  z-index: 99;
  display: block;
  background: var(--orange-deep);
  background: linear-gradient(to right, var(--orange-deep), #ff933f);
  color: #fff;
  border-radius: 50%;
  width: 14.34978vw;
  height: 14.34978vw;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.07);
  transition: transform var(--transition);
}
@media screen and (min-width: 768px), print {
  .floating-tel {
    display: none;
  }
}
.floating-tel .floating-tel-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.56054vw;
  height: 100%;
}
.floating-tel .floating-tel-inner i {
  font-size: 4.26009vw;
  margin-bottom: 0.44844vw;
}
.floating-tel .floating-tel-inner span {
  font-size: 2.01794vw;
  font-weight: 700;
  line-height: 1;
}
.floating-tel:active {
  transform: scale(0.92);
}

.topbar {
  background: var(--green-dark);
  color: #fff;
  font-size: 2.69059vw;
  padding: 2.24216vw 0;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px), print {
  .topbar {
    font-size: 12px;
    padding: 8px 0;
  }
}
.topbar .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3453vw;
}
@media screen and (min-width: 768px), print {
  .topbar .wrap {
    flex-direction: row;
    justify-content: space-between;
  }
}
.topbar .top-note {
  opacity: 0.9;
  font-size: 2.69059vw;
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 768px), print {
  .topbar .top-note {
    font-size: 12px;
  }
}
.topbar .top-links {
  display: flex;
  gap: 3.13902vw;
  font-weight: 700;
}
@media screen and (min-width: 768px), print {
  .topbar .top-links {
    gap: 20px;
  }
}
.topbar .top-links a {
  color: inherit;
  transition: opacity var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .topbar .top-links a:hover {
    opacity: 0.8;
  }
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(47, 125, 87, 0.1);
  box-shadow: 0 2px 12px rgba(28, 53, 42, 0.05);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 19.0583vw;
}
@media screen and (min-width: 768px), print {
  .header-inner {
    height: 70px;
  }
}
@media screen and (min-width: 991px), print {
  .header-inner {
    height: 80px;
  }
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.22422vw;
  flex-shrink: 0;
}
@media screen and (min-width: 768px), print {
  .header-logo {
    gap: 12px;
  }
}
.header-logo-mark img {
  height: 10.76234vw;
  width: auto;
}
@media screen and (min-width: 768px), print {
  .header-logo-mark img {
    height: 50px;
  }
}
@media screen and (min-width: 991px), print {
  .header-logo-mark img {
    height: 60px;
  }
}
.header-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.header-logo-text small {
  display: block;
  font-size: 2.01794vw;
  color: #666;
  margin-bottom: 0.44844vw;
  letter-spacing: 0.05em;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (min-width: 991px), print {
  .header-logo-text small {
    font-size: 10px;
    margin-bottom: 0;
    letter-spacing: 0.08em;
  }
}
.header-logo-text strong {
  display: block;
  font-family: var(--maru);
  font-size: 4.48431vw;
  color: var(--green-dark);
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (min-width: 768px), print {
  .header-logo-text strong {
    font-size: 20px;
  }
}
@media screen and (min-width: 991px), print {
  .header-logo-text strong {
    margin-bottom: 3px;
    font-size: 24px;
  }
}
.header-logo-text span {
  display: block;
  font-size: 2.01794vw;
  color: var(--text-muted);
  margin-top: 0.44844vw;
  line-height: 1.2;
  white-space: nowrap;
}
@media screen and (min-width: 991px), print {
  .header-logo-text span {
    font-size: 11px;
    margin-top: 0;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 3.13902vw;
  font-size: 2.9148vw;
  font-weight: 700;
}
@media screen and (min-width: 768px), print {
  .header-nav {
    gap: 16px;
    font-size: 13px;
  }
}
@media screen and (min-width: 991px), print {
  .header-nav {
    gap: 24px;
    font-size: 14px;
  }
}
.header-nav > a:not(.header-nav-cta) {
  display: none;
}
@media screen and (min-width: 768px), print {
  .header-nav > a:not(.header-nav-cta) {
    display: block;
  }
}
.header-nav a {
  transition: color var(--transition);
}
@media (hover: hover) and (pointer: fine) {
  .header-nav a:hover {
    color: var(--green);
  }
}
.header-nav .header-nav-cta {
  background: var(--orange-deep);
  color: #fff !important;
  padding: 2.69059vw 7.17489vw;
  border-radius: 11.21077vw;
  box-shadow: 0 4px 15px rgba(219, 125, 52, 0.3);
  transition: opacity var(--transition);
  white-space: nowrap;
  font-size: 2.9148vw;
}
@media screen and (min-width: 768px), print {
  .header-nav .header-nav-cta {
    padding: 10px 20px;
    font-size: 13px;
  }
}
@media screen and (min-width: 991px), print {
  .header-nav .header-nav-cta {
    padding: 12px 24px;
    font-size: 14px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .header-nav .header-nav-cta:hover {
    opacity: 0.7;
  }
}

.hero-nav {
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  bottom: 4.48431vw;
  display: flex;
  justify-content: space-between;
  width: calc(100% - 7.17489vw);
  z-index: 20;
}
@media screen and (min-width: 768px), print {
  .hero-nav {
    left: auto;
    right: 3%;
    margin: 0;
    transform: translateX(-50%);
    bottom: -40px;
    gap: 32px;
    width: max-content;
    justify-content: center;
  }
}

.anc-btn {
  position: relative;
  width: 23%;
  height: auto;
  aspect-ratio: 1/1;
  padding-bottom: 1.79373vw;
  font-size: 2.24216vw;
  font-weight: 700;
  color: var(--text-main);
  text-align: center;
  border-radius: 50%;
  border: 0.44844vw solid var(--green);
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.89687vw;
  box-shadow: var(--shadow-s);
  line-height: 1.25;
  white-space: normal;
  word-break: keep-all;
}
@media screen and (min-width: 768px), print {
  .anc-btn {
    padding-bottom: 20px;
    width: 132px;
    height: 132px;
    font-size: 0.8rem;
    border-width: 2px;
    gap: 6px;
    line-height: 1.45;
    transition: transform var(--transition), box-shadow var(--transition);
  }
}
.anc-btn::after {
  content: "";
  position: absolute;
  bottom: 1.79373vw;
  left: 50%;
  transform: translateX(-50%);
  border-left: 0.89687vw solid transparent;
  border-right: 0.89687vw solid transparent;
  border-top: 1.12108vw solid var(--green);
}
@media screen and (min-width: 768px), print {
  .anc-btn::after {
    bottom: 22px;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 6px solid var(--green);
    transition: bottom var(--transition);
  }
}
@media (hover: hover) and (pointer: fine) {
  .anc-btn:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow);
  }
  .anc-btn:hover::after {
    bottom: 16px;
  }
}
.anc-btn .anc-icon {
  font-size: 4.03588vw;
  color: var(--green);
}
@media screen and (min-width: 768px), print {
  .anc-btn .anc-icon {
    font-size: 22px;
  }
}

footer {
  background: #fff;
  color: #666666;
  padding: 11.21077vw 0 0;
  font-size: 3.13902vw;
}
@media screen and (min-width: 768px), print {
  footer {
    padding: 60px 0 0;
    font-size: 13px;
  }
}
@media screen and (min-width: 991px), print {
  footer {
    font-size: 14px;
  }
}

.footer-grid {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8.96861vw;
  padding-bottom: 8.96861vw;
}
@media screen and (min-width: 768px), print {
  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    padding-bottom: 40px;
  }
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 2.24216vw;
  margin-bottom: 4.48431vw;
}
@media screen and (min-width: 768px), print {
  .footer-logo {
    gap: 8px;
    margin-bottom: 20px;
  }
}
.footer-logo .mark img {
  height: 13.45292vw;
  width: auto;
}
@media screen and (min-width: 768px), print {
  .footer-logo .mark img {
    height: 60px;
  }
}
@media screen and (min-width: 991px), print {
  .footer-logo .mark img {
    height: 70px;
  }
}
.footer-logo strong {
  font-family: var(--maru);
  font-size: 5.38117vw;
  line-height: 1;
  color: var(--green);
  display: block;
}
@media screen and (min-width: 768px), print {
  .footer-logo strong {
    font-size: 22px;
  }
}
@media screen and (min-width: 991px), print {
  .footer-logo strong {
    font-size: 24px;
  }
}

.footer-service-name {
  display: block;
  font-size: 3.13902vw;
  color: var(--font-default);
  margin-top: 1.79373vw;
  font-family: var(--font-default);
  font-weight: 600;
}
@media screen and (min-width: 768px), print {
  .footer-service-name {
    font-size: 14px;
    margin-top: 6px;
  }
}
@media screen and (min-width: 991px), print {
  .footer-service-name {
    font-size: 15px;
  }
}

.footer-copy {
  font-size: 3.13902vw;
  line-height: 1.8;
  margin: 0;
}
@media screen and (min-width: 768px), print {
  .footer-copy {
    font-size: 13px;
  }
}

.footer-info {
  text-align: left;
  font-size: 3.13902vw;
  line-height: 2.2;
}
@media screen and (min-width: 768px), print {
  .footer-info {
    text-align: right;
    font-size: 13px;
  }
}
@media screen and (min-width: 991px), print {
  .footer-info {
    font-size: 14px;
  }
}
.footer-info p {
  margin: 0;
}
.footer-info .footer-tel {
  margin-bottom: 2.69059vw;
}
@media screen and (min-width: 768px), print {
  .footer-info .footer-tel {
    margin-bottom: 16px;
  }
}
.footer-info .footer-tel a {
  display: inline-block;
  font-size: 4.48431vw;
  font-family: var(--en-font);
  font-weight: 700;
  color: var(--green-dark);
  transition: opacity var(--transition);
  text-decoration: underline;
}
@media screen and (min-width: 768px), print {
  .footer-info .footer-tel a {
    font-size: 20px;
  }
}
@media screen and (min-width: 991px), print {
  .footer-info .footer-tel a {
    font-size: 24px;
  }
}
.footer-info .footer-tel a i {
  margin-right: 3px;
  color: var(--green);
}
@media (hover: hover) and (pointer: fine) {
  .footer-info .footer-tel a:hover {
    opacity: var(--hover-opacity);
  }
}

.footer-bottom {
  text-align: center;
  font-size: 2.69059vw;
  padding: 4.48431vw 0;
  color: #888;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin: 0;
}
@media screen and (min-width: 768px), print {
  .footer-bottom {
    font-size: 11px;
    padding: 20px 0;
  }
}

.hero {
  position: relative;
  min-height: calc(100svh - 16.81615vw);
  display: flex;
  align-items: center;
  background: #fff;
  overflow: hidden;
  padding-top: 8.96861vw;
  padding-bottom: 22.42153vw;
}
@media screen and (min-width: 768px), print {
  .hero {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
@media screen and (min-width: 991px), print {
  .hero {
    min-height: 651px;
    height: calc(100svh - 117px);
    padding-top: 0;
    padding-bottom: 0;
  }
}
.hero-bg {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 60%;
  object-fit: cover;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 85%);
}
@media screen and (min-width: 768px), print {
  .hero-bg {
    width: 55%;
    height: 100%;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@media screen and (min-width: 991px), print {
  .hero-bg {
    width: 65%;
  }
}
.hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  padding: 7.17489vw 4.03588vw;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 3.58745vw;
  margin-top: 53.81166vw;
}
@media screen and (min-width: 768px), print {
  .hero-content {
    width: 60%;
    padding: 30px;
    border-radius: 0 20px 20px 0;
    margin-top: 0;
  }
}
@media screen and (min-width: 991px), print {
  .hero-content {
    width: 47%;
    padding-left: 20px;
    background: rgba(255, 255, 255, 0.85);
  }
}
.hero-content .fv-copy {
  font-family: var(--maru);
  font-size: 7.17489vw;
  line-height: 1.35;
  color: #203543;
  margin: 0 0 4.48431vw;
}
@media screen and (min-width: 768px), print {
  .hero-content .fv-copy {
    font-size: 32px;
    margin: 0 0 16px;
  }
}
@media screen and (min-width: 991px), print {
  .hero-content .fv-copy {
    font-size: 46px;
    margin: 0 0 20px;
  }
}
.hero-content .fv-copy span {
  color: var(--green);
  display: block;
  font-size: 4.03588vw;
  margin-bottom: 2.24216vw;
}
@media screen and (min-width: 768px), print {
  .hero-content .fv-copy span {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 991px), print {
  .hero-content .fv-copy span {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
.hero-content .lead {
  font-size: 3.58745vw;
  color: var(--text-muted);
  margin-bottom: 6.27803vw;
  font-weight: 500;
  line-height: 1.85;
}
@media screen and (min-width: 768px), print {
  .hero-content .lead {
    font-size: 15px;
    margin-bottom: 24px;
  }
}
@media screen and (min-width: 991px), print {
  .hero-content .lead {
    font-size: 17px;
    margin-bottom: 30px;
  }
}
.hero .eyebrow {
  display: inline-block;
  background: var(--blue-soft);
  color: var(--green-dark);
  padding: 1.79373vw 3.58745vw;
  border-radius: 11.21077vw;
  font-weight: 700;
  font-size: 3.58745vw;
  margin-bottom: 4.48431vw;
}
@media screen and (min-width: 768px), print {
  .hero .eyebrow {
    padding: 8px 16px;
    font-size: 14px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 991px), print {
  .hero .eyebrow {
    font-size: 16px;
    margin-bottom: 24px;
  }
}
.hero .eyebrow i {
  color: var(--orange);
}

.hero-note {
  font-size: 3.13902vw;
  line-height: 1.5;
  color: #888;
  margin-top: 4.48431vw;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .hero-note {
    font-size: 14px;
    text-align: left;
  }
}
@media screen and (min-width: 991px), print {
  .hero-note {
    font-size: 15px;
    line-height: 1;
    margin-top: 16px;
  }
}

.trust-strip {
  padding: 10.76234vw 0 8.96861vw;
  background: #fff;
  border-bottom: 1px solid #eee;
}
@media screen and (min-width: 768px), print {
  .trust-strip {
    padding: 40px 0 30px;
  }
}
.trust-strip .trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.38117vw 3.58745vw;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .trust-strip .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
@media screen and (min-width: 991px), print {
  .trust-strip .trust-grid {
    gap: 20px;
  }
}
.trust-strip .trust-item i {
  font-size: 6.27803vw;
  color: var(--gold);
  display: block;
  margin-bottom: 2.24216vw;
}
@media screen and (min-width: 768px), print {
  .trust-strip .trust-item i {
    font-size: 26px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 991px), print {
  .trust-strip .trust-item i {
    font-size: 28px;
    margin-bottom: 12px;
  }
}
.trust-strip .trust-item strong {
  display: block;
  font-size: 3.58745vw;
  color: var(--green-dark);
  margin-bottom: 1.3453vw;
  font-weight: 700;
}
@media screen and (min-width: 768px), print {
  .trust-strip .trust-item strong {
    font-size: 16px;
  }
}
@media screen and (min-width: 991px), print {
  .trust-strip .trust-item strong {
    font-size: 19px;
  }
}
.trust-strip .trust-item span {
  font-size: 2.9148vw;
  color: var(--text-muted);
}
@media screen and (min-width: 768px), print {
  .trust-strip .trust-item span {
    font-size: 13px;
  }
}
@media screen and (min-width: 991px), print {
  .trust-strip .trust-item span {
    font-size: 15px;
  }
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5.38117vw;
}
@media screen and (min-width: 768px), print {
  .problem-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 991px), print {
  .problem-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
.problem-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 8.96861vw 5.38117vw;
  box-shadow: var(--shadow-soft);
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .problem-card {
    padding: 30px 24px;
  }
}
@media screen and (min-width: 991px), print {
  .problem-card {
    padding: 40px 30px;
  }
}
.problem-card .img-wrap {
  width: 20.17938vw;
  height: 20.17938vw;
  border-radius: 50%;
  margin: 0 auto 4.48431vw;
  overflow: hidden;
}
@media screen and (min-width: 768px), print {
  .problem-card .img-wrap {
    width: 90px;
    height: 90px;
    margin: 0 auto 16px;
  }
}
@media screen and (min-width: 991px), print {
  .problem-card .img-wrap {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
  }
}
.problem-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.problem-card h3 {
  font-family: var(--maru);
  font-size: 4.48431vw;
  color: var(--green-dark);
  letter-spacing: 0.02em;
  margin: 0 0 3.58745vw;
}
@media screen and (min-width: 768px), print {
  .problem-card h3 {
    font-size: 19px;
  }
}
@media screen and (min-width: 991px), print {
  .problem-card h3 {
    font-size: 21px;
    margin: 0 0 16px;
  }
}
.problem-card p {
  font-size: 3.58745vw;
  color: var(--text-muted);
  text-align: left;
  margin: 0;
}
@media screen and (min-width: 768px), print {
  .problem-card p {
    font-size: 15px;
  }
}
@media screen and (min-width: 991px), print {
  .problem-card p {
    font-size: 16px;
  }
}
.problem-banner {
  margin-top: 10.76234vw;
  padding: 5.38117vw;
  border-radius: 22.42153vw;
  background: var(--green-dark);
  color: #fff;
  text-align: center;
  font-size: 4.48431vw;
  font-weight: 700;
  font-family: var(--maru);
  box-shadow: var(--shadow-md);
}
@media screen and (min-width: 768px), print {
  .problem-banner {
    margin-top: 40px;
    padding: 24px;
    font-size: 20px;
  }
}
@media screen and (min-width: 991px), print {
  .problem-banner {
    margin-top: 50px;
    padding: 30px;
    font-size: 24px;
  }
}
.problem-banner span {
  color: #f39b53;
}

#service {
  background: var(--beige);
}

.concept-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6.72646vw;
}
@media screen and (min-width: 768px), print {
  .concept-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 991px), print {
  .concept-grid {
    gap: 30px;
  }
}
.concept-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
.concept-card img {
  width: 100%;
  height: 49.32736vw;
  object-fit: cover;
}
@media screen and (min-width: 768px), print {
  .concept-card img {
    height: 160px;
  }
}
@media screen and (min-width: 991px), print {
  .concept-card img {
    height: 200px;
  }
}
.concept-card .num {
  font-family: var(--en-font);
  color: var(--gold);
  font-size: 8.07175vw;
  line-height: 1;
  display: block;
  margin-bottom: 2.24216vw;
}
@media screen and (min-width: 768px), print {
  .concept-card .num {
    font-size: 36px;
  }
}
@media screen and (min-width: 991px), print {
  .concept-card .num {
    font-size: 40px;
    margin-bottom: 10px;
  }
}
.concept-card h3 {
  font-family: var(--maru);
  font-size: 5.8296vw;
  color: var(--green-dark);
  margin: 0 0 3.58745vw;
}
@media screen and (min-width: 768px), print {
  .concept-card h3 {
    font-size: 24px;
  }
}
@media screen and (min-width: 991px), print {
  .concept-card h3 {
    font-size: 30px;
    margin: 0 0 16px;
  }
}
.concept-card p {
  font-size: 3.58745vw;
  color: var(--text-muted);
  margin: 0 0 4.48431vw;
}
@media screen and (min-width: 768px), print {
  .concept-card p {
    font-size: 14px;
  }
}
@media screen and (min-width: 991px), print {
  .concept-card p {
    font-size: 16px;
    margin: 0 0 20px;
  }
}
.concept-card li {
  font-size: 3.58745vw;
  color: var(--text-main);
  margin-bottom: 2.24216vw;
  padding-left: 4.48431vw;
  position: relative;
  list-style: none;
}
@media screen and (min-width: 768px), print {
  .concept-card li {
    font-size: 14px;
    padding-left: 14px;
  }
}
@media screen and (min-width: 991px), print {
  .concept-card li {
    font-size: 16px;
    padding-left: 16px;
  }
}
.concept-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.79373vw;
  width: 1.79373vw;
  height: 1.79373vw;
  border-radius: 50%;
  background: var(--orange);
}
@media screen and (min-width: 768px), print {
  .concept-card li::before {
    top: 8px;
    width: 6px;
    height: 6px;
  }
}
.concept-body {
  padding: 6.72646vw;
}
@media screen and (min-width: 768px), print {
  .concept-body {
    padding: 24px;
  }
}
@media screen and (min-width: 991px), print {
  .concept-body {
    padding: 30px;
  }
}

.service-detail {
  background: #fff;
}
.service-detail .detail-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10.76234vw;
  align-items: start;
}
@media screen and (min-width: 768px), print {
  .service-detail .detail-layout {
    gap: 40px;
  }
}
@media screen and (min-width: 991px), print {
  .service-detail .detail-layout {
    grid-template-columns: 1fr 400px;
  }
}
.service-detail .detail-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  display: block;
}
@media screen and (min-width: 768px), print {
  .service-detail .detail-table {
    display: table;
  }
}
.service-detail .detail-table tbody,
.service-detail .detail-table tr {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px), print {
  .service-detail .detail-table tbody,
  .service-detail .detail-table tr {
    display: table-row-group;
  }
}
@media screen and (min-width: 768px), print {
  .service-detail .detail-table tr {
    display: table-row;
  }
}
.service-detail .detail-table th,
.service-detail .detail-table td {
  display: block;
  padding: 4.48431vw 5.38117vw;
  text-align: left;
  font-size: 3.58745vw;
  line-height: 1.7;
  border-bottom: 1px solid #eee;
}
@media screen and (min-width: 768px), print {
  .service-detail .detail-table th,
  .service-detail .detail-table td {
    display: table-cell;
    padding: 20px;
    font-size: 15px;
  }
}
@media screen and (min-width: 991px), print {
  .service-detail .detail-table th,
  .service-detail .detail-table td {
    padding: 24px;
    font-size: 16px;
  }
}
.service-detail .detail-table th {
  background: var(--blue-soft);
  color: var(--green-dark);
  font-weight: 700;
  border-bottom: none;
}
@media screen and (min-width: 768px), print {
  .service-detail .detail-table th {
    width: 30%;
    border-bottom: 1px solid #eee;
  }
}
.service-detail .detail-table td {
  background: #fff;
}
.service-detail .price-panel {
  background: var(--beige);
  border: 1px solid #eaddce;
  border-radius: var(--radius);
  padding: 8.96861vw 5.38117vw;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .service-detail .price-panel {
    padding: 30px;
  }
}
@media screen and (min-width: 991px), print {
  .service-detail .price-panel {
    padding: 40px 30px;
  }
}
.service-detail .price-panel h3 {
  font-family: var(--maru);
  font-size: 4.93274vw;
  color: var(--green-dark);
  margin: 0 0 4.48431vw;
}
@media screen and (min-width: 768px), print {
  .service-detail .price-panel h3 {
    font-size: 22px;
  }
}
.service-detail .price-box {
  background: #fff;
  padding: 6.72646vw 4.48431vw;
  border-radius: 3.58745vw;
  box-shadow: var(--shadow-soft);
  margin-bottom: 5.38117vw;
}
@media screen and (min-width: 768px), print {
  .service-detail .price-box {
    padding: 24px 20px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 991px), print {
  .service-detail .price-box {
    padding: 30px 20px;
  }
}
.service-detail .price-caption {
  font-size: 3.58745vw;
  color: var(--text-muted);
  margin: 0 0 2.24216vw;
}
@media screen and (min-width: 768px), print {
  .service-detail .price-caption {
    font-size: 15px;
    margin: 0 0 8px;
  }
}
@media screen and (min-width: 991px), print {
  .service-detail .price-caption {
    font-size: 17px;
  }
}
.service-detail .price-value {
  margin: 0 0 2.69059vw;
}
@media screen and (min-width: 768px), print {
  .service-detail .price-value {
    margin: 0 0 10px;
  }
}
.service-detail .price-value strong {
  font-family: var(--serif);
  font-size: 12.55606vw;
  font-weight: 700;
  color: var(--orange-deep);
  line-height: 1;
}
@media screen and (min-width: 768px), print {
  .service-detail .price-value strong {
    font-size: 48px;
  }
}
@media screen and (min-width: 991px), print {
  .service-detail .price-value strong {
    font-size: 56px;
  }
}
.service-detail .price-value span {
  font-size: 4.03588vw;
  color: var(--text-main);
  margin-left: 1.3453vw;
}
@media screen and (min-width: 768px), print {
  .service-detail .price-value span {
    font-size: 16px;
    margin-left: 3px;
  }
}
@media screen and (min-width: 991px), print {
  .service-detail .price-value span {
    font-size: 18px;
  }
}
.service-detail .price-note {
  color: var(--text-muted);
  font-size: 3.58745vw;
  text-align: left;
  margin-top: 3.58745vw;
  line-height: 1.6;
}
@media screen and (min-width: 768px), print {
  .service-detail .price-note {
    font-size: 15px;
    margin-top: 10px;
  }
}
@media screen and (min-width: 991px), print {
  .service-detail .price-note {
    font-size: 16px;
  }
}
.service-detail .price-list {
  text-align: left;
  margin: 0;
  padding: 0;
}
.service-detail .price-list li {
  font-size: 3.58745vw;
  margin-bottom: 2.69059vw;
  display: flex;
  gap: 2.24216vw;
  list-style: none;
}
@media screen and (min-width: 768px), print {
  .service-detail .price-list li {
    font-size: 15px;
    gap: 8px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 991px), print {
  .service-detail .price-list li {
    font-size: 16px;
  }
}
.service-detail .price-list li i {
  position: relative;
  top: 0.44844vw;
  color: var(--green);
  margin-top: 0.89687vw;
  flex-shrink: 0;
}
@media screen and (min-width: 768px), print {
  .service-detail .price-list li i {
    top: 2px;
    margin-top: 4px;
  }
}

.sample-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4.48431vw;
  margin-top: 10.76234vw;
}
@media screen and (min-width: 768px), print {
  .sample-gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 50px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
  }
}
@media screen and (min-width: 991px), print {
  .sample-gallery {
    margin-top: 60px;
  }
}
.sample-gallery .sample-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}
@media screen and (min-width: 768px), print {
  .sample-gallery .sample-card {
    border-radius: 0;
  }
}
.sample-gallery .sample-card img {
  width: 100%;
  height: 49.32736vw;
  object-fit: cover;
  transition: transform var(--transition);
}
@media screen and (min-width: 768px), print {
  .sample-gallery .sample-card img {
    height: 180px;
  }
}
@media screen and (min-width: 991px), print {
  .sample-gallery .sample-card img {
    height: 240px;
  }
}

.reason-row {
  display: flex;
  flex-direction: column;
  gap: 8.07175vw;
  margin-bottom: 15.69507vw;
}
@media screen and (min-width: 768px), print {
  .reason-row {
    flex-direction: row;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 991px), print {
  .reason-row {
    gap: 60px;
    margin-bottom: 80px;
  }
}
.reason-row:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px), print {
  .reason-row:nth-child(even) {
    flex-direction: row-reverse;
  }
}
.reason-row .reason-img {
  flex: 1;
}
.reason-row .reason-img img {
  width: 100%;
  height: 62.78027vw;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
@media screen and (min-width: 768px), print {
  .reason-row .reason-img img {
    height: 300px;
  }
}
@media screen and (min-width: 991px), print {
  .reason-row .reason-img img {
    height: 400px;
  }
}
.reason-row .reason-txt {
  flex: 1;
}
.reason-row .reason-txt .reason-no {
  font-family: var(--en-font);
  font-size: 10.76234vw;
  color: var(--gold);
  display: block;
  margin-bottom: 3.58745vw;
  opacity: 0.8;
  line-height: 1;
}
@media screen and (min-width: 768px), print {
  .reason-row .reason-txt .reason-no {
    font-size: 40px;
    margin-bottom: 12px;
  }
}
@media screen and (min-width: 991px), print {
  .reason-row .reason-txt .reason-no {
    font-size: 50px;
    margin-bottom: 16px;
  }
}
.reason-row .reason-txt h3 {
  font-family: var(--maru);
  font-size: 5.8296vw;
  color: var(--green-dark);
  margin: 0 0 4.48431vw;
  line-height: 1.4;
}
@media screen and (min-width: 768px), print {
  .reason-row .reason-txt h3 {
    font-size: 24px;
    margin: 0 0 16px;
  }
}
@media screen and (min-width: 991px), print {
  .reason-row .reason-txt h3 {
    font-size: 30px;
    margin: 0 0 20px;
  }
}
.reason-row .reason-txt p {
  font-size: 3.58745vw;
  color: var(--text-muted);
  margin: 0 0 5.38117vw;
  line-height: 1.85;
}
@media screen and (min-width: 768px), print {
  .reason-row .reason-txt p {
    font-size: 15px;
    margin: 0 0 16px;
  }
}
@media screen and (min-width: 991px), print {
  .reason-row .reason-txt p {
    font-size: 16px;
    margin: 0 0 20px;
  }
}
.reason-row .reason-txt li {
  font-size: 3.58745vw;
  padding-left: 5.38117vw;
  position: relative;
  margin-bottom: 2.69059vw;
  list-style: none;
}
@media screen and (min-width: 768px), print {
  .reason-row .reason-txt li {
    font-size: 15px;
    padding-left: 20px;
    margin-bottom: 8px;
  }
}
@media screen and (min-width: 991px), print {
  .reason-row .reason-txt li {
    font-size: 16px;
  }
}
.reason-row .reason-txt li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2.24216vw;
  width: 1.79373vw;
  height: 1.79373vw;
  border-radius: 50%;
  background: var(--orange);
}
@media screen and (min-width: 768px), print {
  .reason-row .reason-txt li::before {
    top: 10px;
    width: 6px;
    height: 6px;
  }
}

.rice-sec {
  background: #fdfaf5;
}

.rice-layout {
  display: flex;
  flex-direction: column;
  gap: 10.76234vw;
}
@media screen and (min-width: 768px), print {
  .rice-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
  }
}
@media screen and (min-width: 991px), print {
  .rice-layout {
    gap: 56px;
  }
}

.rice-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 62.78027vw;
  box-shadow: var(--shadow);
  position: relative;
}
@media screen and (min-width: 768px), print {
  .rice-main {
    height: 260px;
  }
}
@media screen and (min-width: 991px), print {
  .rice-main {
    height: 330px;
  }
}
.rice-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.rice-cap {
  position: absolute;
  left: 3.58745vw;
  bottom: 3.58745vw;
  background: rgba(255, 255, 255, 0.92);
  padding: 2.24216vw 3.58745vw;
  border-radius: 2.24216vw;
  font-size: 3.13902vw;
  color: #31424f;
  font-weight: 700;
  box-shadow: var(--shadow-s);
}
@media screen and (min-width: 768px), print {
  .rice-cap {
    left: 16px;
    bottom: 16px;
    padding: 10px 14px;
    font-size: 13px;
  }
}
@media screen and (min-width: 991px), print {
  .rice-cap {
    left: 18px;
    bottom: 18px;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 15px;
  }
}
.rice-cap i {
  color: var(--green);
  margin-right: 1.3453vw;
}
@media screen and (min-width: 768px), print {
  .rice-cap i {
    margin-right: 5px;
  }
}

.rice-copy h2 {
  font-family: var(--serif);
  font-size: 6.27803vw;
  line-height: 1.5;
  color: var(--navy);
  margin: 0 0 4.48431vw;
}
@media screen and (min-width: 768px), print {
  .rice-copy h2 {
    font-size: 28px;
    margin: 0 0 16px;
  }
}
@media screen and (min-width: 991px), print {
  .rice-copy h2 {
    font-size: 36px;
    margin: 0 0 20px;
  }
}
.rice-copy p {
  color: #55626b;
  font-size: 3.58745vw;
  margin: 0 0 3.58745vw;
  line-height: 1.85;
}
@media screen and (min-width: 768px), print {
  .rice-copy p {
    font-size: 15px;
    margin: 0 0 14px;
  }
}
@media screen and (min-width: 991px), print {
  .rice-copy p {
    font-size: 16px;
  }
}

.rice-pts {
  display: grid;
  gap: 3.13902vw;
  margin: 5.38117vw 0 6.72646vw;
  padding: 0;
}
@media screen and (min-width: 768px), print {
  .rice-pts {
    gap: 10px;
    margin: 16px 0 20px;
  }
}
@media screen and (min-width: 991px), print {
  .rice-pts {
    gap: 12px;
    margin: 20px 0 26px;
  }
}
.rice-pts li {
  display: flex;
  gap: 3.13902vw;
  align-items: flex-start;
  padding: 4.48431vw;
  border: 1px solid #e5efe6;
  border-radius: var(--r-md);
  background: #f9fcf9;
  font-size: 3.36323vw;
  color: #44505a;
  list-style: none;
  line-height: 1.7;
}
@media screen and (min-width: 768px), print {
  .rice-pts li {
    gap: 12px;
    padding: 14px 16px;
    font-size: 14px;
  }
}
@media screen and (min-width: 991px), print {
  .rice-pts li {
    gap: 14px;
    padding: 16px 18px;
    font-size: 16px;
  }
}
.rice-pts li i {
  color: var(--green);
  margin-top: 0.89687vw;
  font-size: 3.58745vw;
  flex-shrink: 0;
}
@media screen and (min-width: 768px), print {
  .rice-pts li i {
    margin-top: 4px;
    font-size: 15px;
  }
}
@media screen and (min-width: 991px), print {
  .rice-pts li i {
    font-size: 16px;
  }
}

.farmer-box {
  display: flex;
  flex-direction: column;
  gap: 4.48431vw;
  padding: 4.48431vw;
  border-radius: var(--r-lg);
  border: 1px solid #e6efe8;
  background: #fff;
  box-shadow: var(--shadow-s);
  margin-top: 4.48431vw;
}
@media screen and (min-width: 768px), print {
  .farmer-box {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 16px;
    padding: 16px;
    margin-top: 16px;
  }
}
@media screen and (min-width: 991px), print {
  .farmer-box {
    grid-template-columns: 170px 1fr;
    padding: 18px;
    margin-top: 20px;
  }
}
.farmer-box .farmer-ph {
  height: 73.99104vw;
  border-radius: var(--r-md);
  overflow: hidden;
}
@media screen and (min-width: 768px), print {
  .farmer-box .farmer-ph {
    height: 160px;
  }
}
@media screen and (min-width: 991px), print {
  .farmer-box .farmer-ph {
    height: 210px;
  }
}
.farmer-box .farmer-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.farmer-box .farmer-info h3 {
  font-family: var(--maru);
  font-size: 5.38117vw;
  color: var(--navy);
  margin: 0 0 1.79373vw;
}
@media screen and (min-width: 768px), print {
  .farmer-box .farmer-info h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 991px), print {
  .farmer-box .farmer-info h3 {
    font-size: 24px;
    margin: 0 0 6px;
  }
}
.farmer-box .farmer-info p {
  font-size: 3.58745vw;
  color: #55626b;
  line-height: 1.7;
  margin: 0;
}
@media screen and (min-width: 768px), print {
  .farmer-box .farmer-info p {
    font-size: 14px;
  }
}
@media screen and (min-width: 991px), print {
  .farmer-box .farmer-info p {
    font-size: 16px;
  }
}
.farmer-box .farmer-meta {
  display: inline-block;
  margin-bottom: 2.24216vw;
  padding: 1.3453vw 3.58745vw;
  border-radius: 11.21077vw;
  background: var(--blue-soft);
  color: var(--green-dark);
  font-size: 3.13902vw;
  font-weight: 800;
}
@media screen and (min-width: 768px), print {
  .farmer-box .farmer-meta {
    margin-bottom: 8px;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 13px;
  }
}
@media screen and (min-width: 991px), print {
  .farmer-box .farmer-meta {
    margin-bottom: 10px;
    padding: 4px 14px;
    font-size: 15px;
  }
}
.farmer-box .farmer-meta i {
  margin-right: 1.3453vw;
}
@media screen and (min-width: 768px), print {
  .farmer-box .farmer-meta i {
    margin-right: 6px;
  }
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6.27803vw;
}
@media screen and (min-width: 768px), print {
  .case-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 991px), print {
  .case-grid {
    gap: 30px;
  }
}

.case-card {
  background: #fff;
  padding: 8.07175vw 6.27803vw;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
}
@media screen and (min-width: 768px), print {
  .case-card {
    padding: 30px 20px;
  }
}
@media screen and (min-width: 991px), print {
  .case-card {
    padding: 40px 30px;
  }
}
.case-card .case-head span {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  padding: 1.3453vw 3.58745vw;
  border-radius: 11.21077vw;
  font-family: var(--en-font);
  font-size: 2.69059vw;
  font-weight: 700;
  margin-bottom: 3.58745vw;
}
@media screen and (min-width: 768px), print {
  .case-card .case-head span {
    padding: 4px 12px;
    font-size: 11px;
    margin-bottom: 14px;
  }
}
@media screen and (min-width: 991px), print {
  .case-card .case-head span {
    padding: 6px 16px;
    font-size: 12px;
    margin-bottom: 16px;
  }
}
.case-card .case-head h3 {
  font-family: var(--maru);
  font-size: 5.38117vw;
  margin: 0 0 4.03588vw;
  color: var(--green-dark);
}
@media screen and (min-width: 768px), print {
  .case-card .case-head h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 991px), print {
  .case-card .case-head h3 {
    font-size: 24px;
  }
}
.case-card .case-body p {
  font-size: 3.58745vw;
  color: var(--text-muted);
  margin: 0 0 4.48431vw;
  line-height: 1.8;
}
@media screen and (min-width: 768px), print {
  .case-card .case-body p {
    font-size: 14px;
    margin: 0 0 16px;
  }
}
@media screen and (min-width: 991px), print {
  .case-card .case-body p {
    font-size: 16px;
    margin: 0 0 20px;
  }
}

.case-list {
  font-size: 3.36323vw;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 2.24216vw;
}
@media screen and (min-width: 768px), print {
  .case-list {
    font-size: 13px;
    gap: 6px;
  }
}
.case-list li {
  font-size: 3.36323vw;
  padding-left: 3.58745vw;
  position: relative;
  list-style: none;
  line-height: 1.6;
}
@media screen and (min-width: 768px), print {
  .case-list li {
    font-size: 14px;
    padding-left: 14px;
  }
}
@media screen and (min-width: 991px), print {
  .case-list li {
    font-size: 15px;
  }
}
.case-list li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.flow-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5.38117vw;
}
@media screen and (min-width: 768px), print {
  .flow-wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 991px), print {
  .flow-wrap {
    grid-template-columns: repeat(4, 1fr);
  }
}

.flow-card {
  background: #fff;
  padding: 6.72646vw 5.38117vw;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  text-align: left;
}
@media screen and (min-width: 768px), print {
  .flow-card {
    padding: 30px 24px;
  }
}
@media screen and (min-width: 991px), print {
  .flow-card {
    padding: 30px 20px;
    text-align: center;
  }
}
.flow-card .flow-step {
  font-family: var(--en-font);
  color: var(--gold);
  font-size: 3.58745vw;
  font-weight: 700;
  display: block;
  margin-bottom: 2.69059vw;
  letter-spacing: 0.08em;
}
@media screen and (min-width: 768px), print {
  .flow-card .flow-step {
    font-size: 15px;
    margin-bottom: 10px;
  }
}
@media screen and (min-width: 991px), print {
  .flow-card .flow-step {
    font-size: 17px;
  }
}
.flow-card h3 {
  font-family: var(--maru);
  font-size: 4.93274vw;
  margin: 0 0 3.58745vw;
  color: var(--navy);
}
@media screen and (min-width: 768px), print {
  .flow-card h3 {
    font-size: 19px;
  }
}
@media screen and (min-width: 991px), print {
  .flow-card h3 {
    font-size: 20px;
    margin: 0 0 16px;
  }
}
.flow-card p {
  font-size: 3.58745vw;
  color: var(--text-muted);
  text-align: left;
  margin: 0 0 3.58745vw;
  line-height: 1.75;
}
@media screen and (min-width: 768px), print {
  .flow-card p {
    font-size: 14px;
  }
}
@media screen and (min-width: 991px), print {
  .flow-card p {
    font-size: 15px;
  }
}
.flow-card li {
  text-align: left;
  font-size: 3.36323vw;
  padding-left: 3.13902vw;
  position: relative;
  margin-bottom: 1.3453vw;
  list-style: none;
}
@media screen and (min-width: 768px), print {
  .flow-card li {
    font-size: 14px;
    padding-left: 12px;
    margin-bottom: 4px;
  }
}
.flow-card li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--orange);
}

.corporate {
  background: linear-gradient(180deg, var(--beige) 0%, #fff 100%);
}
.corporate .corp-layout {
  display: flex;
  flex-direction: column;
  gap: 8.07175vw;
  margin-bottom: 10.76234vw;
}
@media screen and (min-width: 768px), print {
  .corporate .corp-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 991px), print {
  .corporate .corp-layout {
    gap: 40px;
  }
}
.corporate .corp-copy h2 {
  font-family: var(--serif);
  font-size: 5.8296vw;
  color: var(--navy);
  margin: 0 0 4.03588vw;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  .corporate .corp-copy h2 {
    font-size: 24px;
    margin: 0 0 16px;
  }
}
@media screen and (min-width: 991px), print {
  .corporate .corp-copy h2 {
    font-size: 29px;
  }
}
.corporate .corp-copy p {
  font-size: 3.58745vw;
  color: var(--text-muted);
  margin: 0 0 3.58745vw;
  line-height: 1.85;
}
@media screen and (min-width: 768px), print {
  .corporate .corp-copy p {
    font-size: 15px;
    margin: 0 0 14px;
  }
}
@media screen and (min-width: 991px), print {
  .corporate .corp-copy p {
    font-size: 16px;
  }
}
.corporate .corp-photo {
  border-radius: var(--r-xl);
  overflow: hidden;
  height: 58.29597vw;
  box-shadow: var(--shadow);
}
@media screen and (min-width: 768px), print {
  .corporate .corp-photo {
    height: 260px;
  }
}
@media screen and (min-width: 991px), print {
  .corporate .corp-photo {
    height: 320px;
  }
}
.corporate .corp-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.corporate .corporate-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5.38117vw;
  margin-bottom: 10.76234vw;
}
@media screen and (min-width: 768px), print {
  .corporate .corporate-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 991px), print {
  .corporate .corporate-grid {
    gap: 30px;
  }
}
.corporate .corporate-card {
  background: #fff;
  padding: 8.07175vw 6.27803vw;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
@media screen and (min-width: 768px), print {
  .corporate .corporate-card {
    padding: 30px 20px;
  }
}
@media screen and (min-width: 991px), print {
  .corporate .corporate-card {
    padding: 40px 30px;
  }
}
.corporate .corporate-card .icon {
  width: 11.21077vw;
  height: 11.21077vw;
  background: var(--gold);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 4.48431vw;
  border-radius: 2.69059vw;
  margin-bottom: 4.48431vw;
}
@media screen and (min-width: 768px), print {
  .corporate .corporate-card .icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    border-radius: 10px;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 991px), print {
  .corporate .corporate-card .icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    border-radius: 12px;
  }
}
.corporate .corporate-card h3 {
  font-family: var(--maru);
  font-size: 4.93274vw;
  margin: 0 0 3.13902vw;
  color: var(--green-dark);
}
@media screen and (min-width: 768px), print {
  .corporate .corporate-card h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 991px), print {
  .corporate .corporate-card h3 {
    font-size: 22px;
    margin: 0 0 16px;
  }
}
.corporate .corporate-card p {
  font-size: 3.58745vw;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.75;
}
@media screen and (min-width: 768px), print {
  .corporate .corporate-card p {
    font-size: 15px;
  }
}
@media screen and (min-width: 991px), print {
  .corporate .corporate-card p {
    font-size: 16px;
  }
}
.corporate .corp-banner {
  padding: 6.72646vw 5.38117vw;
  border-radius: var(--r-xl);
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  color: #fff;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5.38117vw;
}
@media screen and (min-width: 768px), print {
  .corporate .corp-banner {
    padding: 24px;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
}
@media screen and (min-width: 991px), print {
  .corporate .corp-banner {
    padding: 24px 32px;
  }
}
.corporate .corp-banner strong {
  display: block;
  font-family: var(--maru);
  font-size: 4.48431vw;
  margin-bottom: 2.24216vw;
}
@media screen and (min-width: 768px), print {
  .corporate .corp-banner strong {
    font-size: 20px;
    margin-bottom: 6px;
  }
}
@media screen and (min-width: 991px), print {
  .corporate .corp-banner strong {
    font-size: 22px;
  }
}
.corporate .corp-banner span {
  font-size: 3.36323vw;
  opacity: 0.9;
}
@media screen and (min-width: 768px), print {
  .corporate .corp-banner span {
    font-size: 14px;
  }
}
@media screen and (min-width: 991px), print {
  .corporate .corp-banner span {
    font-size: 16px;
  }
}

.faq .faq-list {
  max-width: 100%;
  margin: 0 auto;
  display: grid;
  gap: 3.58745vw;
}
@media screen and (min-width: 768px), print {
  .faq .faq-list {
    max-width: 900px;
    gap: 16px;
  }
}
.faq .faq-item {
  border: 1px solid #eee;
  border-radius: 2.24216vw;
  overflow: hidden;
}
@media screen and (min-width: 768px), print {
  .faq .faq-item {
    border-radius: 12px;
  }
}
.faq .faq-item summary {
  padding: 4.48431vw;
  background: var(--beige);
  font-size: 3.58745vw;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 3.13902vw;
  list-style: none;
  transition: background var(--transition);
}
@media screen and (min-width: 768px), print {
  .faq .faq-item summary {
    padding: 20px;
    font-size: 16px;
    gap: 16px;
  }
}
@media screen and (min-width: 991px), print {
  .faq .faq-item summary {
    padding: 24px;
    font-size: 18px;
  }
}
.faq .faq-item summary::-webkit-details-marker {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .faq .faq-item summary:hover {
    background: #f3ede4;
  }
}
.faq .faq-item .faq-mark {
  font-family: var(--en-font);
  color: var(--gold);
  font-size: 5.38117vw;
  flex-shrink: 0;
}
@media screen and (min-width: 768px), print {
  .faq .faq-item .faq-mark {
    font-size: 22px;
  }
}
@media screen and (min-width: 991px), print {
  .faq .faq-item .faq-mark {
    font-size: 24px;
  }
}
.faq .faq-item .faq-a {
  padding: 4.48431vw;
  border-top: 1px solid #eee;
  font-size: 3.36323vw;
  color: var(--text-muted);
  line-height: 1.7;
  background: #fff;
}
@media screen and (min-width: 768px), print {
  .faq .faq-item .faq-a {
    padding: 20px;
    font-size: 15px;
  }
}
@media screen and (min-width: 991px), print {
  .faq .faq-item .faq-a {
    padding: 24px;
  }
}

.cta-section {
  background: url("../../img/fv_image01.png") center/cover;
  position: relative;
  padding: 17.93722vw 0;
  color: #fff;
}
@media screen and (min-width: 768px), print {
  .cta-section {
    padding: 80px 0;
  }
}
@media screen and (min-width: 991px), print {
  .cta-section {
    padding: 100px 0;
  }
}
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 90, 63, 0.9);
}
.cta-section .wrap {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10.76234vw;
  align-items: stretch;
}
@media screen and (min-width: 768px), print {
  .cta-section .wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
  }
}
@media screen and (min-width: 991px), print {
  .cta-section .wrap {
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
  }
}
.cta-section .cta-copy h2 {
  font-family: var(--maru);
  font-size: 7.17489vw;
  margin: 0 0 4.48431vw;
  color: #fff;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  .cta-section .cta-copy h2 {
    font-size: 30px;
    margin: 0 0 16px;
  }
}
@media screen and (min-width: 991px), print {
  .cta-section .cta-copy h2 {
    font-size: 36px;
    margin: 0 0 20px;
  }
}
.cta-section .cta-copy p {
  font-size: 3.58745vw;
  opacity: 0.9;
  margin: 0 0 6.27803vw;
  line-height: 1.9;
}
@media screen and (min-width: 768px), print {
  .cta-section .cta-copy p {
    font-size: 15px;
    margin: 0 0 24px;
  }
}
@media screen and (min-width: 991px), print {
  .cta-section .cta-copy p {
    font-size: 17px;
    margin: 0 0 30px;
  }
}
.cta-section .cta-check {
  margin: 0;
  padding: 0;
}
.cta-section .cta-check li {
  margin-bottom: 3.13902vw;
  font-size: 3.58745vw;
  display: flex;
  gap: 2.24216vw;
  list-style: none;
}
@media screen and (min-width: 768px), print {
  .cta-section .cta-check li {
    margin-bottom: 12px;
    font-size: 15px;
    gap: 10px;
  }
}
@media screen and (min-width: 991px), print {
  .cta-section .cta-check li {
    font-size: 17px;
  }
}
.cta-section .cta-check li i {
  color: var(--gold);
  margin-top: 1.3453vw;
  flex-shrink: 0;
}
@media screen and (min-width: 768px), print {
  .cta-section .cta-check li i {
    margin-top: 7px;
  }
}
@media screen and (min-width: 991px), print {
  .cta-section .cta-check li i {
    margin-top: 7.5px;
  }
}
.cta-section .contact-panel {
  background: #fff;
  color: var(--text-main);
  padding: 6.72646vw;
  border-radius: var(--radius);
  box-shadow: 0 24px 56px rgba(12, 26, 20, 0.2);
}
@media screen and (min-width: 768px), print {
  .cta-section .contact-panel {
    padding: 30px;
  }
}
@media screen and (min-width: 991px), print {
  .cta-section .contact-panel {
    padding: 40px;
  }
}
.cta-section .contact-panel h3 {
  font-family: var(--maru);
  font-size: 5.38117vw;
  color: var(--green-dark);
  margin: 0 0 4.03588vw;
}
@media screen and (min-width: 768px), print {
  .cta-section .contact-panel h3 {
    font-size: 22px;
  }
}
@media screen and (min-width: 991px), print {
  .cta-section .contact-panel h3 {
    font-size: 24px;
    margin: 0 0 20px;
  }
}
.cta-section .contact-lead,
.cta-section .contact-note {
  font-size: 3.13902vw;
  color: var(--text-muted);
  margin: 0 0 5.38117vw;
}
@media screen and (min-width: 768px), print {
  .cta-section .contact-lead,
  .cta-section .contact-note {
    font-size: 13px;
    margin: 0 0 24px;
  }
}
.cta-section .cta-tel-box {
  margin-top: 8.96861vw;
}
@media screen and (min-width: 768px), print {
  .cta-section .cta-tel-box {
    margin-top: 40px;
  }
}
.cta-section .cta-tel-box .tel-box-inner {
  background: #fff;
  padding: 8.07175vw 5.38117vw;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  border-top: 1.3453vw solid var(--orange-deep);
}
@media screen and (min-width: 768px), print {
  .cta-section .cta-tel-box .tel-box-inner {
    padding: 40px 30px;
    border-top-width: 4px;
  }
}
.cta-section .cta-tel-box .tel-lead {
  color: var(--green-dark);
  font-size: 3.58745vw;
  font-weight: 700;
  margin-bottom: 2.69059vw;
}
@media screen and (min-width: 768px), print {
  .cta-section .cta-tel-box .tel-lead {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 991px), print {
  .cta-section .cta-tel-box .tel-lead {
    font-size: 20px;
  }
}
.cta-section .cta-tel-box .tel-num {
  display: inline-block;
  font-size: 8.07175vw;
  font-weight: 900;
  color: var(--orange-deep);
  line-height: 1.2;
  margin-bottom: 3.58745vw;
  transition: opacity var(--transition), transform var(--transition);
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px), print {
  .cta-section .cta-tel-box .tel-num {
    font-size: 40px;
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 991px), print {
  .cta-section .cta-tel-box .tel-num {
    font-size: 48px;
    margin-bottom: 20px;
  }
}
.cta-section .cta-tel-box .tel-num i {
  font-size: 0.8em;
  margin-right: 6px;
}
@media (hover: hover) and (pointer: fine) {
  .cta-section .cta-tel-box .tel-num:hover {
    opacity: 0.8;
    transform: scale(1.02);
  }
}
.cta-section .cta-tel-box .tel-time {
  font-size: 2.69059vw;
  color: var(--text-muted);
  margin: 0;
  background: var(--beige);
  display: inline-block;
  padding: 1.3453vw 3.58745vw;
  border-radius: 11.21077vw;
}
@media screen and (min-width: 768px), print {
  .cta-section .cta-tel-box .tel-time {
    font-size: 13px;
    padding: 6px 16px;
    border-radius: 50px;
  }
}
@media screen and (min-width: 991px), print {
  .cta-section .cta-tel-box .tel-time {
    font-size: 14px;
  }
}
.cta-section .form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4.48431vw;
}
@media screen and (min-width: 768px), print {
  .cta-section .form-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
@media screen and (min-width: 991px), print {
  .cta-section .form-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.cta-section .field {
  display: grid;
  gap: 1.79373vw;
}
@media screen and (min-width: 768px), print {
  .cta-section .field {
    gap: 8px;
  }
}
.cta-section .field.full {
  grid-column: 1/-1;
}
.cta-section .field label {
  font-size: 3.13902vw;
  font-weight: 700;
  color: #42505a;
}
@media screen and (min-width: 768px), print {
  .cta-section .field label {
    font-size: 13px;
  }
}
.cta-section .field input,
.cta-section .field select,
.cta-section .field textarea {
  width: 100%;
  padding: 3.58745vw;
  border: 1px solid #ddd;
  border-radius: 1.79373vw;
  font-size: 16px;
  font-family: inherit;
  color: var(--text-main);
  transition: border-color var(--transition), box-shadow var(--transition);
}
@media screen and (min-width: 768px), print {
  .cta-section .field input,
  .cta-section .field select,
  .cta-section .field textarea {
    padding: 14px;
    border-radius: 8px;
    font-size: 16px;
  }
}
.cta-section .field input:focus,
.cta-section .field select:focus,
.cta-section .field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 125, 87, 0.1);
}
.cta-section .field textarea {
  resize: vertical;
}
.cta-section .req {
  background: #e74c3c;
  color: #fff;
  padding: 0.89687vw 1.79373vw;
  font-size: 2.46637vw;
  border-radius: 0.89687vw;
  margin-left: 1.79373vw;
  vertical-align: middle;
}
@media screen and (min-width: 768px), print {
  .cta-section .req {
    padding: 2px 6px;
    font-size: 10px;
    border-radius: 4px;
    margin-left: 8px;
  }
}
.cta-section .submit-btn {
  width: 100%;
  background: var(--orange-deep);
  color: #fff;
  padding: 4.48431vw;
  border: none;
  border-radius: 11.21077vw;
  font-family: var(--maru);
  font-size: 4.03588vw;
  font-weight: 700;
  cursor: pointer;
  margin-top: 5.38117vw;
  transition: background var(--transition);
}
@media screen and (min-width: 768px), print {
  .cta-section .submit-btn {
    padding: 20px;
    border-radius: 50px;
    font-size: 18px;
    margin-top: 20px;
  }
}

.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.opt {
  display: inline-block;
  margin-left: 1.3453vw;
  padding: 0.22422vw 1.3453vw;
  border-radius: 0.89687vw;
  background: #ddd;
  color: #555;
  font-size: 2.24216vw;
  vertical-align: middle;
  font-weight: 400;
}
@media screen and (min-width: 768px), print {
  .opt {
    margin-left: 6px;
    padding: 1px 6px;
    border-radius: 4px;
    font-size: 10px;
  }
}

.field.--error input,
.field.--error select,
.field.--error textarea {
  border-color: #e74c3c !important;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.12) !important;
}

.field.--valid input,
.field.--valid select,
.field.--valid textarea {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(47, 125, 87, 0.08);
}

.field-error {
  margin: 0.89687vw 0 0;
  font-size: 2.69059vw;
  color: #e74c3c;
  display: flex;
  align-items: center;
  gap: 0.89687vw;
  min-height: 4.03588vw;
  line-height: 1.4;
}
@media screen and (min-width: 768px), print {
  .field-error {
    margin: 4px 0 0;
    font-size: 12px;
    gap: 4px;
    min-height: 18px;
  }
}

.field-error:empty {
  display: none;
}

.char-count {
  margin: 0.89687vw 0 0;
  font-size: 2.46637vw;
  color: #999;
  text-align: right;
}
@media screen and (min-width: 768px), print {
  .char-count {
    margin: 4px 0 0;
    font-size: 11px;
  }
}
.char-count.--near-limit {
  color: var(--orange);
}
.char-count.--over-limit {
  color: #e74c3c;
  font-weight: 700;
}

.form-status {
  padding: 3.58745vw 4.48431vw;
  border-radius: 2.24216vw;
  font-size: 3.13902vw;
  font-weight: 600;
  margin-bottom: 4.48431vw;
  line-height: 1.6;
}
@media screen and (min-width: 768px), print {
  .form-status {
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 14px;
    margin-bottom: 20px;
  }
}

.form-status[hidden] {
  display: none;
}

.form-status--success {
  background: #e8f5ee;
  border: 1px solid #a8d5b5;
  color: var(--green-dark);
}

.form-status--error {
  background: #fdf0ef;
  border: 1px solid #f5bab5;
  color: #c0392b;
}

.form-note {
  font-size: 2.69059vw;
  color: #888;
  margin: 3.58745vw 0 1.79373vw;
  display: flex;
  align-items: flex-start;
  gap: 1.3453vw;
  line-height: 1.6;
}
@media screen and (min-width: 768px), print {
  .form-note {
    font-size: 12px;
    margin: 16px 0 8px;
    gap: 6px;
  }
}
.form-note i {
  margin-top: 0.44844vw;
  color: var(--green);
  flex-shrink: 0;
}
@media screen and (min-width: 768px), print {
  .form-note i {
    margin-top: 2px;
  }
}

.submit-btn.--loading {
  opacity: 0.7;
  cursor: not-allowed;
}
.submit-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/*# sourceMappingURL=style.css.map */
