@charset "utf-8";

:root {
  --fg-blue: #253494;
  --fg-blue-text: #123376;
  --fg-yellow: #eac435;
  --fg-base: #f2f2f2;
  --fg-text: #3e3a39;
  --fg-shadow: 0 0 8px rgba(0, 0, 0, 0.15);
  --fg-panel-max-width: 500px;
  --fg-font-inter: "Inter", "Noto Sans JP", sans-serif;
  --fg-fv-follow-height: calc(96px + env(safe-area-inset-bottom));
  --fg-fv-viewport-height: 100dvh;
  --fg-bg-blur: 0px;
  --fg-bg-scale: 1;
}

html,
body {
  margin: 0;
  padding: 0;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #111;
  background: var(--fg-base);
  letter-spacing: 0.05em;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

a:hover {
  opacity: 0.85;
}

#p_forest-guard-lp {
  min-height: 100vh;
  max-width: 500px;
  margin: 0 auto;
  background: #fff;
  padding-bottom: var(--fg-fv-follow-height);
}

body.page-forest-guard-lp::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../img/forest-guard-lp/fv_bg_nara.jpg") center / cover no-repeat;
  background-image: image-set(
    url("../img/forest-guard-lp/fv_bg_nara.webp") type("image/webp"),
    url("../img/forest-guard-lp/fv_bg_nara.jpg") type("image/jpeg")
  );
  pointer-events: none;
  z-index: 0;
}

body.page-forest-guard-lp::after {
  content: none;
}

@media screen and (min-width: 501px) {
  body.page-forest-guard-lp {
    --fg-bg-blur: 12px;
    --fg-bg-scale: 1.08;
  }

  body.page-forest-guard-lp::before {
    filter: blur(calc(var(--fg-bg-blur) * 0.625));
    transform: scale(var(--fg-bg-scale));
    transition: filter 0.2s linear, transform 0.2s linear;
    transform-origin: center center;
  }
}

.fg_lp-shell {
  position: relative;
}

.fg_lp-shell__fixed {
  display: none;
}

.fg_lp-shell__scroll {
  display: none;
}

.fg_fv {
  height: 710px;
  background: url("../img/forest-guard-lp/fv_bg_nara.jpg") -235px -90px / cover no-repeat;
  background-image: image-set(
    url("../img/forest-guard-lp/fv_bg_nara.webp") type("image/webp"),
    url("../img/forest-guard-lp/fv_bg_nara.jpg") type("image/jpeg")
  );
  position: relative;
  overflow: hidden;
  --fg-fv-scroll-progress: 0;
  --fg-fv-heading-parallax: 0px;
  --fg-fv-overlay-alpha: 1;
}

.fg_fv::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 51, 118, 0.04) 0%, rgba(18, 51, 118, 0.08) 56%, rgba(255, 255, 255, 0) 100%);
  opacity: var(--fg-fv-overlay-alpha);
  transform: translate3d(0, calc(var(--fg-fv-scroll-progress) * 14px), 0);
  transition: opacity 0.3s linear, transform 0.3s linear;
  will-change: opacity, transform;
  pointer-events: none;
  z-index: 1;
}

.fg_fv::after {
  content: "";
  position: absolute;
  inset: -22% -40%;
  background: radial-gradient(60% 55% at 50% 15%, rgba(255, 255, 255, 0.26) 0%, rgba(255, 255, 255, 0) 68%);
  opacity: calc((1 - var(--fg-fv-scroll-progress)) * 0.9);
  transform: translate3d(0, calc(var(--fg-fv-scroll-progress) * 20px), 0);
  transition: opacity 0.25s linear, transform 0.25s linear;
  will-change: opacity, transform;
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

.fg_fv__topbar {
  width: calc(100% - 48px);
  top: 16px;
  left: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: absolute;
  z-index: 20;
  transition: transform 0.72s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.72s ease;
  will-change: transform, opacity;
}

.fg_fv__logo {
  width: 52px;
  height: 38px;
  display: block;
}

.fg_fv__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fg_fv__menu {
  width: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: #fff;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
}

.fg_fv__menu span {
  width: 100%;
  height: 2px;
  background: #fff;
  border-radius: 99px;
  display: block;
  transition: all 0.3s;
}

.fg_fv__menu p {
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  margin: 0;
  margin-top: 4px;
}

/* ハンバーガーメニュー（モーダル） */
.fg_hamburger-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 40;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.fg_hamburger-modal.is-open {
  transform: translateX(0);
}

.fg_hamburger-modal__header {
  height: 54px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 24px;
  position: sticky;
  top: 0;
  z-index: 2;
  position: relative;
}

.fg_hamburger-modal__header::before {
  content: "";
  inset: 0;
  background: url("../img/forest-guard-lp/hamburger_bg.svg") center / cover no-repeat;
  pointer-events: none;
  z-index: 0;
  display: inline-block;
  width: 162.002px;
  height: 162px;
  position: absolute;
  top: 8px;
  left: 8px;
}

.fg_hamburger-modal__close {
  background: none;
  border: none;
  color: var(--fg-blue);
  font-size: 10px;
  font-weight: 700;
  line-height: 10px;
  cursor: pointer;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.fg_hamburger-modal__close::before {
  content: "";
  background: url("../img/forest-guard-lp/hamburger_close_icon.svg") center / cover no-repeat;
  display: inline-block;
  width: 16px;
  height: 14px;
}

.fg_hamburger-modal__body {
  padding: 24px 24px 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fg_hamburger-modal__body nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.fg_hamburger-modal__body a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 38px;
  color: var(--fg-blue-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 16px;
  letter-spacing: 0;
  text-decoration: none;
  transition: background 0.2s;
}

.fg_hamburger-modal__body a:hover {
  background: #f5f5f5;
  opacity: 1;
}

/* メニュー項目の右矢印 */
.fg_hamburger-modal__body nav a::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("../img/forest-guard-lp/hamburger_arrow_icon.svg") center / cover no-repeat;
  flex-shrink: 0;
}

.fg_hamburger-modal__footer {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
}

.fg_hamburger-cta {
  width: 100%;
  border-radius: 20px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: opacity 0.3s;
  border: none;
}

.fg_hamburger-cta:hover {
  opacity: 0.85;
}

.fg_hamburger-cta--phone {
  height: 88px;
  background: var(--fg-blue);
  color: #fff;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  display: flex;
}

.fg_hamburger-cta__phone-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fg_hamburger-cta--phone img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.fg_hamburger-cta--phone strong {
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
}

.fg_hamburger-cta--phone small {
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
}

.fg_hamburger-cta--mail {
  height: 56px;
  background: #fff;
  color: var(--fg-blue);
  border: 2px solid var(--fg-blue);
  box-shadow: var(--fg-shadow);
  justify-content: center;
  gap: 8px;
  padding: 15px 48px 14px;
}

.fg_hamburger-cta--mail img {
  width: 31px;
  height: 20px;
  flex-shrink: 0;
}

.fg_hamburger-cta--mail strong {
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
}

.fg_fv__main {
  position: relative;
  height: 100%;
  z-index: 2;
}

.fg_fv__heading {
  width: calc(259.013px * var(--fg-mobile-scale, 1));
  min-height: calc(121.97px * var(--fg-mobile-scale, 1));
  position: absolute;
  top: calc(110px * var(--fg-mobile-scale, 1));
  left: calc(50% + 2px);
  transform: translate3d(-50%, var(--fg-fv-heading-parallax), 0) scale(1);
  margin: 0;
  z-index: 8;
  opacity: 1;
  filter: drop-shadow(0px 0px 8px #000000b2);
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.9s ease;
  will-change: transform, opacity;
}

.fg_fv__heading-image {
  overflow: visible;
}

.fg_fv__heading-reveal {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.fg_fv__heading-reveal--sp {
  display: block;
}

.fg_fv__heading-reveal--pc {
  display: none;
}

.fg_fv__heading-slice {
  position: absolute;
  left: var(--slice-left, 0%);
  top: var(--slice-top, 0%);
  width: var(--slice-width, 100%);
  height: var(--slice-height, 100%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.page-forest-guard-lp.is-fv-anim-init .fg_fv__heading-slice {
  opacity: 0;
  transform: translate3d(0, 12px, 0) scale(0.98);
  filter: blur(5px);
}

body.page-forest-guard-lp.is-fv-anim-ready .fg_fv__heading-slice {
  animation: fg-fv-heading-slice-in 0.56s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: calc(0.15s + (var(--slice-index, 0) * 0.055s));
}

.fg_fv__bottom-banner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.9s ease;
  will-change: transform, opacity;
  pointer-events: none;
}

.fg_fv__bottom-banner img {
  display: block;
  width: 100%;
  height: auto;
}

.fg_fv__bottom-fixed {
  width: min(100%, 500px);
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 30;
  padding-bottom: env(safe-area-inset-bottom);
}

@media screen and (max-width: 959px) {
  #p_forest-guard-lp {
    --fg-mobile-viewport: min(100vw, 500px);
    --fg-mobile-scale: calc(var(--fg-mobile-viewport) / 375px);
    --fg-mobile-grow-scale: clamp(1, calc(var(--fg-mobile-viewport) / 375px), calc(500 / 375));
    --fg-mobile-content-width: calc(375px * var(--fg-mobile-scale));
    --fg-mobile-inner-width: calc(327px * var(--fg-mobile-scale));
    --fg-mobile-video-width: calc(292px * var(--fg-mobile-scale));
    --fg-mobile-gap-10: calc(10px * var(--fg-mobile-scale));
    --fg-mobile-gap-24: calc(24px * var(--fg-mobile-scale));
    --fg-mobile-gap-32: calc(32px * var(--fg-mobile-scale));
  }

  .fg_fv {
    width: min(100vw, 500px);
    height: calc(100vh - var(--fg-fv-follow-height));
    height: calc(100dvh - var(--fg-fv-follow-height));
    height: calc(var(--fg-fv-viewport-height, 100dvh) - var(--fg-fv-follow-height));
    background-size: calc(min(100vw, 500px) * 853 / 375) auto;
    background-position: calc(min(100vw, 500px) * -179 / 375) calc(min(100vw, 500px) * -22 / 375);
    background-repeat: no-repeat;
    margin-left: auto;
    margin-right: auto;
  }

  .fg_fv__heading {
    left: var(--fg-mobile-gap-10, 10px);
    transform: translate3d(0, var(--fg-fv-heading-parallax), 0) scale(1);
  }

  .fg_fv__bottom-fixed {
    max-width: none;
    left: 0;
    right: 0;
    transform: none;
  }
}

/* 375px前後の縦長端末で、FV背景の下端が途切れないように補正 */
@media screen and (max-width: 500px) and (max-aspect-ratio: 10 / 19) {
  .fg_fv {
    background-size: cover;
    background-position: 38% top;
  }
}

.fg_fv__cta {
  width: 100%;
  display: flex;
  position: static;
  box-shadow: var(--fg-shadow);
  z-index: 25;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.7s ease;
  will-change: transform, opacity;
}

.fg_fv__cta a {
  height: 56px;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.fg_fv__cta a:hover {
  opacity: 1;
}

.fg_fv__cta-phone {
  width: 57.5%;
  background: #123376;
  color: #fff;
  gap: 8px;
  justify-content: center;
}

.fg_fv__cta-phone img {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.fg_fv__cta-phone span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.fg_fv__cta-phone strong {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}

.fg_fv__cta-phone small {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.fg_fv__cta-mail {
  width: 42.5%;
  background: #fff;
  color: #123376;
  gap: 8px;
  justify-content: center;
}

.fg_fv__cta-mail img {
  width: 24px;
  height: 16px;
  flex-shrink: 0;
}

.fg_fv__cta-mail strong {
  color: #123376;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
}

.fg_fv__recruit-link {
  width: 100%;
  height: 40px;
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--fg-yellow);
  color: #123376;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.06em;
  z-index: 26;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.7s ease;
  will-change: transform, opacity;
}

.fg_fv__recruit-link span {
  font-size: inherit;
}

.fg_fv__recruit-link img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.fg_fv__recruit-link:hover {
  opacity: 1;
}

body.page-forest-guard-lp.is-fv-anim-init .fg_fv__topbar {
  opacity: 0;
  transform: translate3d(0, -18px, 0);
}

body.page-forest-guard-lp.is-fv-anim-init .fg_fv__heading {
  opacity: 0;
  transform: translate3d(-50%, calc(24px + var(--fg-fv-heading-parallax)), 0) scale(1.04);
}

body.page-forest-guard-lp.is-fv-anim-init .fg_fv__bottom-banner {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
}

body.page-forest-guard-lp.is-fv-anim-init .fg_fv__cta {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
}

body.page-forest-guard-lp.is-fv-anim-init .fg_fv__recruit-link {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

body.page-forest-guard-lp.is-fv-anim-ready .fg_fv__topbar {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.page-forest-guard-lp.is-fv-anim-ready .fg_fv__heading {
  opacity: 1;
  transform: translate3d(-50%, var(--fg-fv-heading-parallax), 0) scale(1);
}

body.page-forest-guard-lp.is-fv-anim-ready .fg_fv__heading img {
  transform-origin: center center;
}

body.page-forest-guard-lp.is-fv-anim-ready .fg_fv__bottom-banner {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.page-forest-guard-lp.is-fv-anim-ready .fg_fv__cta {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.18s;
}

body.page-forest-guard-lp.is-fv-anim-ready .fg_fv__recruit-link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition-delay: 0.3s;
}

@media screen and (max-width: 959px) {
  body.page-forest-guard-lp.is-fv-anim-init .fg_fv__heading {
    transform: translate3d(0, calc(24px + var(--fg-fv-heading-parallax)), 0) scale(1.04);
  }

  body.page-forest-guard-lp.is-fv-anim-ready .fg_fv__heading {
    transform: translate3d(0, var(--fg-fv-heading-parallax), 0) scale(1);
  }
}

/* About Section */
.fg_about {
  padding: 40px 0;
  position: relative;
  background-color: #fff;
}

.fg_about::before {
  background: var(--fg-base);
}

.fg_about__container {
  max-width: var(--fg-panel-max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  z-index: 10;
}

.fg_about__header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fg_about__icon {
  width: 32px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fg_about__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fg_about__title {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 16px 0 0;
}

.fg_about__title-line {
  display: flex;
  align-items: baseline;
  justify-content: center;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  white-space: normal;
  margin: 0;
}

.fg_about__title-highlight {
  color: #123376;
  text-align: center;
  font-family: var(--fg-font-inter);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 100% */
}

.fg_about__title-text {
  color: #000;
  text-align: center;
  font-family: var(--fg-font-inter);
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 16px; /* 100% */
}

.fg_about__title-text-large {
  color: #000;
  text-align: center;
  font-family: var(--fg-font-inter);
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 24px; /* 100% */
}

.fg_about__divider {
  width: 40px;
  height: 4px;
  background: var(--fg-blue);
  margin-top: 16px;
}

.fg_about__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.fg_about__description {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.fg_about__lead {
  font-size: 14px;
  text-align: center;
  color: #000;
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.07em;
  font-family: var(--fg-font-inter);
  line-height: 24px; /* 171.429% */
}

.fg_about__video-wrapper {
  width: min(var(--fg-mobile-video-width, 292px), 100%);
  aspect-ratio: 292 / 518;
  background: #fff;
  overflow: hidden;
  position: relative;
  margin: 0;
}

.fg_about__video-trigger {
  width: 100%;
  height: 100%;
  border: 0;
  padding: 0;
  background: #000;
  cursor: pointer;
  display: block;
}

.fg_about__video-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
}

.fg_about__video-note {
  font-size: 10px;
  color: var(--fg-blue-text);
  text-align: center;
  margin: -8px 0 0;
  letter-spacing: 0.05em;
  font-weight: 500;
  color: #123376;
  line-height: 10px; /* 100% */
  letter-spacing: var(--2, 1px);
}

.fg_about__cta {
  width: min(284px, 100%);
  height: 36px;
  background: var(--fg-yellow);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--fg-blue-text);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.3s;
  position: relative;
  overflow: hidden;
}

.fg_about__cta:hover {
  opacity: 0.9;
}

.fg_about__cta-text {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 16px; /* 100% */
  letter-spacing: var(--2, 1px);
}

.fg_about__cta-icon {
  width: 20px;
  height: 20px;
  background: var(--fg-blue-text);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.fg_about__cta-icon::after {
  content: "";
  background: url("../img/forest-guard-lp/about_arrow_icon.svg") center / cover no-repeat;
  width: 20px;
  height: 20px;
  display: inline-block;
}

.fg_about__video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 80;
}

.fg_about__video-modal.is-open {
  display: flex;
}

.fg_about__video-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  margin: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.74);
  cursor: pointer;
}

.fg_about__video-modal-dialog {
  width: min(560px, calc(100vw - 32px));
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.fg_about__video-modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 15px;
  background: rgba(0, 0, 0, 0.64);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.fg_about__video-modal-player {
  width: 100%;
  max-height: 80vh;
  display: block;
  background: #000;
}

.fg_strength {
  background: var(--fg-blue);
  padding: 40px 0;
}

.fg_strength__heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.fg_strength__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.fg_strength__heading-icon {
  width: 36px;
  height: 40px;
}

.fg_strength__heading h2 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
  text-align: center;
}

.fg_strength__heading h2 span {
  color: var(--fg-yellow);
  font-size: 30px;
  margin-left: -6px;
}

.fg_strength__heading-line {
  width: 40px;
  height: 4px;
  background: #fff;
}

.fg_strength__lead {
  width: min(336px, calc(100% - 32px));
  margin: 24px auto 24px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: 0.07em;
  text-align: center;
}

.fg_strength__list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
}

.fg_strength__item {
  width: min(var(--fg-mobile-content-width, 375px), 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fg_strength__photo-wrap {
  width: min(var(--fg-mobile-content-width, 375px), 100%);
  aspect-ratio: 375 / 224;
  overflow: hidden;
}

.fg_strength__photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.fg_strength__card {
  width: min(var(--fg-mobile-inner-width, 327px), calc(100% - var(--fg-mobile-gap-32, 32px)));
  min-height: 184px;
  background: #fff;
  border-radius: 20px;
  box-shadow: var(--fg-shadow);
  margin-top: calc(-40px * var(--fg-mobile-scale, 1));
  padding: var(--fg-mobile-gap-24, 24px) var(--fg-mobile-gap-32, 32px);
  position: relative;
  z-index: 2;
}

.fg_strength__card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.fg_strength__card-head h3 {
  margin: 0;
  color: var(--fg-blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.05em;
}

.fg_strength__card-head img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.fg_strength__card p {
  margin: 16px 0 0;
  color: var(--fg-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: 0.07em;
}

.fg_security-types {
  background: #FFF;
  padding: 54px 0 62px;
  position: relative;
  z-index: 10;
}

.fg_security-types__inner {
  width: min(328px, calc(100% - 32px));
  margin: 0 auto;
}

.fg_security-types__heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.fg_security-types__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.fg_security-types__heading-icon {
  width: 36px;
  height: 40px;
}

.fg_security-types__heading h2 {
  margin: 0;
  color: var(--fg-blue);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.fg_security-types__heading-line {
  width: 40px;
  height: 4px;
  background: var(--fg-blue);
}

.fg_security-types__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fg_security-types__item {
  width: 100%;
  transform: translateY(24px);
}

.fg_security-types__photo-wrap {
  width: min(var(--fg-mobile-inner-width, 327px), 100%);
  aspect-ratio: 327 / 184;
  overflow: hidden;
}

.fg_security-types__photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.fg_security-types__card {
  width: 100%;
  min-height: 256px;
  background: #fff;
  box-shadow: 7px 7px 0 0 var(--fg-blue);
  padding: 24px 32px;
  position: relative;
}

.fg_security-types__badge {
  width: 54px;
  height: 72px;
  position: absolute;
  top: -8px;
  left: 8px;
}

.fg_security-types__badge img {
  width: 100%;
  height: 100%;
  display: block;
}

.fg_security-types__badge span {
  color: var(--fg-yellow);
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  position: absolute;
  top: 10px;
  left: 27px;
  transform: translateX(-50%) skewX(-10deg);
}

.fg_security-types__card h3 {
  margin: 0;
  padding-left: 40px;
  color: #000;
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: var(--2, 1px);
}

.fg_security-types__card p {
  margin: 16px 0 0;
  color: #000;
  text-align: justify;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px; /* 171.429% */
  letter-spacing: var(--2, 1px);
}

.fg_entry-cta {
  position: relative;
  background: #fff;
  box-shadow: var(--fg-shadow);
  overflow: hidden;
  padding: 24px 24px calc(24px + env(safe-area-inset-bottom));
}

.fg_entry-cta__pattern {
  width: 120px;
  height: 120px;
  background-image: url("../img/forest-guard-lp/entry_pattern_tile.svg");
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  pointer-events: none;
}

.fg_entry-cta__pattern--left {
  left: 4px;
  top: 116px;
}

.fg_entry-cta__pattern--right {
  right: 4px;
  top: 4px;
}

.fg_entry-cta__inner {
  width: min(var(--fg-mobile-content-width, 375px), 100%);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.fg_entry-cta__phone {
  width: 100%;
  height: 88px;
  background: var(--fg-blue);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
}

.fg_entry-cta__phone-line {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fg_entry-cta__phone-line img {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.fg_entry-cta__phone-line strong {
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.fg_entry-cta__phone small {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.fg_entry-cta__mail {
  width: 100%;
  height: 56px;
  background: #fff;
  border: 2px solid var(--fg-blue);
  border-radius: 20px;
  box-shadow: var(--fg-shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--fg-blue);
}

.fg_entry-cta__mail img {
  width: 31px;
  height: 20px;
  flex-shrink: 0;
}

.fg_entry-cta__mail strong {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.fg_entry-cta__inner p {
  margin: 0;
  color: var(--fg-blue);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0;
  text-align: center;
}

.fg_beginner {
  position: relative;
  background-color: #fff;
  background-image: url("../img/forest-guard-lp/beginner_bg_top.svg"), url("../img/forest-guard-lp/beginner_bg_bottom.svg");
  background-repeat: no-repeat;
  background-size:
    410px 659px,
    410px 659px;
  background-position:
    center 104px,
    center 767px;
  padding: 0 0 70px;
  overflow: hidden;
}

.fg_beginner__header {
  height: 112px;
  background: var(--fg-blue);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.fg_beginner__header::after {
  content: "";
  border-left: 53px solid transparent;
  border-right: 53px solid transparent;
  border-top: 41px solid var(--fg-blue);
  position: absolute;
  left: 50%;
  bottom: -40px;
  transform: translateX(-50%);
}

.fg_beginner__dots {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-111px);
  display: flex;
  align-items: center;
  gap: 24px;
  z-index: 3;
}

.fg_beginner__dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  display: block;
}

.fg_beginner__header h2 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.01em;
  text-align: center;
}

.fg_beginner__title-yellow {
  color: var(--fg-yellow);
  font-size: 30px;
}

.fg_beginner__title-large {
  font-size: 30px;
}

.fg_beginner__title-mid {
  font-size: 20px;
}

.fg_beginner__lead {
  margin: 63px auto 0;
  color: var(--fg-blue);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.875;
  letter-spacing: 0;
  text-align: center;
  position: relative;
  z-index: 2;
}

.fg_beginner__block-set {
  width: 57px;
  display: grid;
  grid-template-columns: repeat(2, 28px);
  grid-template-rows: repeat(2, 28px);
  gap: 1px;
  position: absolute;
  z-index: 1;
}

.fg_beginner__block-set span {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--fg-blue);
  display: block;
}

.fg_beginner__list {
  margin-top: 25px;
  display: flex;
  flex-direction: column;
  gap: 38px;
  position: relative;
  z-index: 2;
  align-items: center;
}

.fg_beginner__point {
  width: min(var(--fg-mobile-content-width, 375px), 100%);
}

.fg_beginner__photo-wrap {
  width: var(--fg-mobile-video-width, 292px);
}

.fg_beginner__photo-wrap--left {
  margin-left: var(--fg-mobile-gap-24, 24px);
  margin-right: auto;
}

.fg_beginner__photo-wrap--right {
  margin-left: auto;
  margin-right: var(--fg-mobile-gap-24, 24px);
}

.fg_beginner__photo-mask {
  width: var(--fg-mobile-video-width, 292px);
  height: calc(var(--fg-mobile-video-width, 292px) * 200 / 292);
  position: relative;
  overflow: hidden;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-position: center;
  mask-position: center;
  clip-path: polygon(0 0, 100% 18.8%, 98.62% 92.5%, 0 100%);
}

.fg_beginner__photo-mask--one {
  -webkit-mask-image: url("../img/forest-guard-lp/beginner_mask_1.svg");
  mask-image: url("../img/forest-guard-lp/beginner_mask_1.svg");
}

.fg_beginner__photo-mask--two {
  -webkit-mask-image: url("../img/forest-guard-lp/beginner_mask_3.svg");
  mask-image: url("../img/forest-guard-lp/beginner_mask_3.svg");
  clip-path: polygon(100% 0, 0 18.8%, 1.38% 92.5%, 100% 100%);
}

.fg_beginner__photo-mask img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fg_beginner__point-body {
  margin-top: 2px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 25px;
  z-index: -10;
}

.fg_beginner__slant-panel {
  width: 219px;
  height: 150px;
  position: absolute;
  top: -42px;
  pointer-events: none;
}

.fg_beginner__slant-panel--right {
  right: 23px;
  transform: rotate(180deg) scaleY(-1);
}

.fg_beginner__slant-panel--left {
  left: 23px;
}

.fg_beginner__point h3 {
  margin: 0;
  color: var(--fg-blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  z-index: 2;
}

.fg_beginner__point-title--small {
  font-size: 16px;
}

.fg_beginner__point p {
  margin: 16px 0 0;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 959px) {
  .fg_beginner {
    background-size:
      calc(410px * var(--fg-mobile-scale, 1)) calc(659px * var(--fg-mobile-scale, 1)),
      calc(410px * var(--fg-mobile-scale, 1)) calc(659px * var(--fg-mobile-scale, 1));
    background-position:
      center calc(104px * var(--fg-mobile-scale, 1)),
      center calc(767px * var(--fg-mobile-scale, 1));
    padding-bottom: calc(70px * var(--fg-mobile-scale, 1));
  }

  .fg_beginner__header {
    height: calc(112px * var(--fg-mobile-scale, 1));
  }

  .fg_beginner__header::after {
    border-left-width: calc(53px * var(--fg-mobile-scale, 1));
    border-right-width: calc(53px * var(--fg-mobile-scale, 1));
    border-top-width: calc(41px * var(--fg-mobile-scale, 1));
    bottom: calc(-40px * var(--fg-mobile-scale, 1));
  }

  .fg_beginner__dots {
    top: calc(13px * var(--fg-mobile-scale, 1));
    transform: translateX(calc(-111px * var(--fg-mobile-scale, 1)));
    gap: calc(24px * var(--fg-mobile-scale, 1));
  }

  .fg_beginner__dots span {
    width: calc(6px * var(--fg-mobile-scale, 1));
    height: calc(6px * var(--fg-mobile-scale, 1));
  }

  .fg_beginner__header h2 {
    font-size: calc(24px * var(--fg-mobile-scale, 1));
  }

  .fg_beginner__title-yellow,
  .fg_beginner__title-large {
    font-size: calc(30px * var(--fg-mobile-scale, 1));
  }

  .fg_beginner__title-mid {
    font-size: calc(20px * var(--fg-mobile-scale, 1));
  }

  .fg_beginner__lead {
    margin-top: calc(63px * var(--fg-mobile-scale, 1));
    font-size: calc(16px * var(--fg-mobile-scale, 1));
  }

  .fg_beginner__block-set {
    width: calc(57px * var(--fg-mobile-scale, 1));
    grid-template-columns: repeat(2, calc(28px * var(--fg-mobile-scale, 1)));
    grid-template-rows: repeat(2, calc(28px * var(--fg-mobile-scale, 1)));
    gap: calc(1px * var(--fg-mobile-scale, 1));
  }

  .fg_beginner__block-set span {
    width: calc(28px * var(--fg-mobile-scale, 1));
    height: calc(28px * var(--fg-mobile-scale, 1));
    border-radius: calc(6px * var(--fg-mobile-scale, 1));
  }

  .fg_beginner__list {
    margin-top: calc(25px * var(--fg-mobile-scale, 1));
    gap: calc(38px * var(--fg-mobile-scale, 1));
  }

  .fg_beginner__point-body {
    margin-top: calc(2px * var(--fg-mobile-scale, 1));
    padding-top: calc(25px * var(--fg-mobile-scale, 1));
  }

  .fg_beginner__slant-panel {
    width: calc(219px * var(--fg-mobile-scale, 1));
    height: calc(150px * var(--fg-mobile-scale, 1));
    top: calc(-42px * var(--fg-mobile-scale, 1));
  }

  .fg_beginner__slant-panel--right {
    right: calc(23px * var(--fg-mobile-scale, 1));
  }

  .fg_beginner__slant-panel--left {
    left: calc(23px * var(--fg-mobile-scale, 1));
  }

  .fg_beginner__point h3 {
    font-size: calc(20px * var(--fg-mobile-scale, 1));
  }

  .fg_beginner__point-title--small {
    font-size: calc(16px * var(--fg-mobile-scale, 1));
  }

  .fg_beginner__point p {
    margin-top: calc(16px * var(--fg-mobile-scale, 1));
    font-size: calc(14px * var(--fg-mobile-scale, 1));
  }
}

.fg_recruit {
  background: #fff;
  padding: 36px 0 40px;
}

.fg_recruit__heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.fg_recruit__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.fg_recruit__heading-icon {
  width: 36px;
  height: 40px;
}

.fg_recruit__heading h2 {
  margin: 0;
  color: var(--fg-blue);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}

.fg_recruit__heading-line {
  width: 40px;
  height: 4px;
  background: var(--fg-blue);
}

.fg_recruit__lead {
  margin: 24px 0 0;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: 0.05em;
  text-align: center;
}

.fg_recruit__card {
  width: var(--fg-mobile-inner-width, 327px);
  max-width: calc(100% - var(--fg-mobile-gap-24, 24px));
  margin: var(--fg-mobile-gap-24, 24px) auto 0;
  background: #fff;
  border: 2px solid #123376;
  border-radius: 20px;
  padding: 22px 20px;
}

.fg_recruit__group h3 {
  margin: 0;
  color: var(--fg-blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.fg_recruit__block {
  margin-top: 24px;
}

.fg_recruit__block.mt-sm {
  margin-top: 18px;
}

.fg_recruit__block h4 {
  margin: 0;
  color: #000;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.fg_recruit__block p {
  margin: 8px 0 0;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: 0.07em;
}

.fg_recruit__block p.mt-sm {
  margin-top: 3px;
}

.fg_recruit__block p.mt-lg {
  margin-top: 20px;
}

.fg_recruit__divider {
  width: 279px;
  height: 2px;
  background: var(--fg-blue);
  margin: 24px auto;
}

.fg_recruit__divider.mt-sm {
  margin: 19px auto 24px;
}

.fg_recruit__selection {
  margin: 24px 0 0;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: 0.07em;
}

.fg_recruit__group--requirements h3 {
  margin-bottom: 24px;
}

.fg_recruit__table {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.fg_recruit__row {
  display: grid;
  grid-template-columns: 62px 1fr;
  column-gap: 14px;
  align-items: center;
  min-height: 64px;
}

.fg_recruit__row dt {
  margin: 0;
  color: var(--fg-blue);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.07em;
}

.fg_recruit__row dd {
  margin: 0;
  padding: 0 0 0 16px;
  color: #111;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: 0.05em;
  position: relative;
}

.fg_recruit__row dd.pr-8 {
  padding: 0 8px 0 16px;
}

.fg_recruit__row dd.pr-16 {
  padding: 0 16px 0 16px;
}

.fg_recruit__row dd::before {
  content: "";
  width: 2px;
  height: 64px;
  position: absolute;
  left: 0;
  top: 50%;
  bottom: 0;
  transform: translateY(-50%);
  background: url("../img/forest-guard-lp/recruit_item_divider.svg") center top / 2px 64px repeat-y;
}

.fg_faq {
  background: #ebf0f6;
  padding: 40px 24px 40px;
}

.fg_faq__heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}

.fg_faq__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.fg_faq__heading-icon {
  width: 36px;
  height: 40px;
}

.fg_faq__heading h2 {
  margin: 0;
  color: var(--fg-blue);
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}

.fg_faq__heading-line {
  width: 40px;
  height: 4px;
  background: var(--fg-blue);
}

.fg_faq__list {
  width: min(var(--fg-mobile-inner-width, 327px), 100%);
  margin: 17px auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.fg_faq__list li {
  min-height: 56px;
  background: #fff;
  display: grid;
  grid-template-columns: 20px 1fr 24px;
  align-items: center;
  padding: 12px 16px 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.fg_faq__list li:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.fg_faq__q {
  color: var(--fg-blue);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.25;
}

.fg_faq__list li p {
  margin: 0;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.07em;
  padding: 0 12px 0 24px;
}

.fg_faq__plus {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--fg-blue);
  position: relative;
  transition: all 0.3s ease;
}

.fg_faq__plus::before,
.fg_faq__plus::after {
  content: "";
  background: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.fg_faq__plus::before {
  width: 10px;
  height: 2px;
}

.fg_faq__plus::after {
  width: 2px;
  height: 10px;
}

/* アコーディオン展開状態 */
.fg_faq__answer {
  grid-column: 1 / -1;
  padding: 0;
  background: #fff;
  margin-top: 0;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  justify-items: center;
}

.fg_faq__list li.is-expanded .fg_faq__answer {
  display: grid;
  grid-template-columns: 20px 1fr 24px;
  gap: 0;
  align-items: flex-start;
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  padding: 10px 0 3px;
  transform: translateY(0);
  transition: all 0.3s ease;
}

.fg_faq__a {
  color: #123376;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  grid-column: 1;
}

.fg_faq__answer .fg_faq__a-text {
  margin: 0;
  color: #123376;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px; /* 142.857% */
  letter-spacing: 0.07em;
  padding: 0 26px 0 24px;
  grid-column: 2;
  text-align: justify;
}

/* プラスボタンのマイナスへの変形 */
.fg_faq__list li.is-expanded .fg_faq__plus::after {
  width: 0;
  height: 0;
}

.fg_flow {
  background: #253494;
  background-image: url("../img/forest-guard-lp/flow_bg_pattern.svg");
  background-repeat: no-repeat;
  background-size: 410px 825px;
  background-position: center top;
  padding: 40px 24px 29px;
}

.fg_flow__inner {
  width: min(var(--fg-mobile-inner-width, 327px), 100%);
  margin: 0 auto;
}

.fg_flow__heading-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.fg_flow__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.fg_flow__heading-icon {
  width: 36px;
  height: 40px;
}

.fg_flow__heading h2 {
  margin: 0;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0em;
}

.fg_flow__heading-line {
  width: 40px;
  height: 4px;
  background: #fff;
}

.fg_flow__steps {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
}

.fg_flow__step {
  margin-left: 43px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.fg_flow__step-no {
  width: 44px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fg_flow__step-no span {
  color: var(--fg-yellow);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
  letter-spacing: 0;
  margin-left: -2px;
}

.fg_flow__step-no strong {
  margin-top: 1px;
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
  margin-top: -1px;
  margin-left: -5px;
}

.fg_flow__step-copy h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.07em;
}

.fg_flow__step-copy p {
  margin: 8px 0 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.07em;
}

.fg_flow__step-copy .fg_flow__step-text {
  line-height: 24px; /* 171.429% */
}

.fg_flow__line {
  width: 100%;
  height: 18px;
  display: block;
  margin: 15px 0;
}

.fg_flow__finish {
  margin-top: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-left: 3px;
}

.fg_flow__finish img {
  width: auto;
  height: 82px;
  flex-shrink: 0;
}

.fg_flow__finish-copy {
  width: 224px;
}

.fg_flow__finish-copy h3 {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}

.fg_flow__finish-copy p {
  margin: 8px 0 0;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.72;
  letter-spacing: 0.05em;
}

.fg_entry-cta--final .fg_entry-cta__pattern {
  width: 120px;
  height: 120px;
  background-image: url("../img/forest-guard-lp/entry_pattern_group_tail.svg");
  background-repeat: no-repeat;
  background-size: 120px 120px;
}

.fg_entry-cta--final {
  padding-bottom: 24px;
}

.fg_contact-footer {
  background: #123376;
  min-height: 561px;
  padding: 40px 24px calc(16px + env(safe-area-inset-bottom));
  position: relative;
  overflow: hidden;
}

.fg_contact-footer__inner {
  width: min(var(--fg-mobile-inner-width, 327px), 100%);
  margin: 0 auto;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 2;
}

.fg_contact-footer__logo {
  width: calc(109px * var(--fg-mobile-scale, 1));
  height: calc(153px * var(--fg-mobile-scale, 1));
  display: block;
  margin: 0 auto;
}

.fg_contact-footer__tel {
  margin: 40px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0;
}

.fg_contact-footer__hours {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  letter-spacing: 0;
}

.fg_contact-footer__mail {
  margin: 8px auto 0;
  max-width: calc(295px * var(--fg-mobile-scale, 1));
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 0;
}

.fg_contact-footer__note {
  margin: 8px auto 0;
  max-width: calc(293px * var(--fg-mobile-scale, 1));
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: 0;
}

.fg_contact-footer__landscape {
  width: calc(100% + 36px);
  aspect-ratio: 410.001 / 291.286;
  background: url("../img/forest-guard-lp/contact_footer_landscape.svg") center / contain no-repeat;
  position: absolute;
  left: 50%;
  bottom: max(-30vw, -184px);
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.fg_contact-footer__bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16px;
  z-index: 2;
  text-align: center;
  padding: 0 24px env(safe-area-inset-bottom);
}

.fg_contact-footer__privacy {
  display: block;
  margin: 0;
  color: #123376;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 0;
}

.fg_contact-footer__copyright {
  margin: 16px 0 0;
  color: #123376;
  font-size: 14px;
  font-weight: 500;
  line-height: 14px;
  letter-spacing: 0;
}

@media screen and (min-width: 376px) and (max-width: 500px) {
  .fg_contact-footer {
    min-height: calc(561px * var(--fg-mobile-grow-scale, 1));
    padding:
      40px
      calc(24px * var(--fg-mobile-grow-scale, 1))
      calc((16px * var(--fg-mobile-grow-scale, 1)) + env(safe-area-inset-bottom));
  }

  .fg_contact-footer__inner {
    width: min(calc(327px * var(--fg-mobile-grow-scale, 1)), 100%);
  }

  .fg_contact-footer__logo {
    width: calc(109px * var(--fg-mobile-grow-scale, 1));
    height: calc(153px * var(--fg-mobile-grow-scale, 1));
  }

  .fg_contact-footer__tel {
    margin-top: calc(40px * var(--fg-mobile-grow-scale, 1));
    font-size: calc(20px * var(--fg-mobile-grow-scale, 1));
    line-height: calc(20px * var(--fg-mobile-grow-scale, 1));
  }

  .fg_contact-footer__hours {
    margin-top: calc(8px * var(--fg-mobile-grow-scale, 1));
    font-size: calc(16px * var(--fg-mobile-grow-scale, 1));
    line-height: calc(16px * var(--fg-mobile-grow-scale, 1));
  }

  .fg_contact-footer__mail {
    margin-top: calc(8px * var(--fg-mobile-grow-scale, 1));
    max-width: calc(295px * var(--fg-mobile-grow-scale, 1));
    font-size: calc(16px * var(--fg-mobile-grow-scale, 1));
    line-height: calc(24px * var(--fg-mobile-grow-scale, 1));
  }

  .fg_contact-footer__note {
    margin-top: calc(8px * var(--fg-mobile-grow-scale, 1));
    max-width: calc(293px * var(--fg-mobile-grow-scale, 1));
    font-size: calc(14px * var(--fg-mobile-grow-scale, 1));
    line-height: calc(24px * var(--fg-mobile-grow-scale, 1));
  }

  .fg_contact-footer__landscape {
    width: calc(100% + calc(36px * var(--fg-mobile-grow-scale, 1)));
    bottom: max(-30vw, calc(-184px * var(--fg-mobile-grow-scale, 1)));
  }

  .fg_contact-footer__bottom {
    bottom: calc(16px * var(--fg-mobile-grow-scale, 1));
    padding:
      0
      calc(24px * var(--fg-mobile-grow-scale, 1))
      env(safe-area-inset-bottom);
  }

  .fg_contact-footer__privacy {
    font-size: calc(14px * var(--fg-mobile-grow-scale, 1));
    line-height: calc(14px * var(--fg-mobile-grow-scale, 1));
  }

  .fg_contact-footer__copyright {
    margin-top: calc(16px * var(--fg-mobile-grow-scale, 1));
    font-size: calc(14px * var(--fg-mobile-grow-scale, 1));
    line-height: calc(14px * var(--fg-mobile-grow-scale, 1));
  }
}

@media screen and (min-width: 500px) {
  .fg_fv__bottom-fixed {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (min-width: 500px) and (max-width: 959px) {
  .fg_contact-footer {
    min-height: 640px;
  }
}

@media screen and (min-width: 960px) {
  html,
  body {
    height: 100%;
  }

  body.page-forest-guard-lp {
    --fg-bg-blur: 12px;
    --fg-bg-scale: 1.08;
    --fg-desktop-sidebar-width: 637px;
    --fg-desktop-panel-width: 500px;
    --fg-desktop-content-left: clamp(
      var(--fg-desktop-sidebar-width),
      calc(
        var(--fg-desktop-sidebar-width) +
        ((100vw - var(--fg-desktop-sidebar-width) - var(--fg-desktop-panel-width)) / 2)
      ),
      max(var(--fg-desktop-sidebar-width), calc(100vw - var(--fg-desktop-panel-width)))
    );
    overflow: hidden;
    background: #182136;
  }

  body.page-forest-guard-lp::before {
    inset: auto;
    top: calc(100vh * -488 / 960);
    left: calc(100vw * -31 / 1920);
    width: calc(100vw * 2383 / 1920);
    height: calc(100vh * 1589 / 960);
    background: url("../img/forest-guard-lp/pc_bg_main.jpg") center / cover no-repeat;
    background-image: image-set(
      url("../img/forest-guard-lp/pc_bg_main.webp") type("image/webp"),
      url("../img/forest-guard-lp/pc_bg_main.jpg") type("image/jpeg")
    );
    filter: blur(calc(var(--fg-bg-blur) * 0.625));
    transform: scale(var(--fg-bg-scale));
    transition: filter 0.2s linear, transform 0.2s linear;
    opacity: 1;
    pointer-events: none;
    z-index: 0;
    transform-origin: center center;
  }

  body.page-forest-guard-lp::after {
    content: none;
  }

  .fg_lp-shell {
    width: 100%;
    height: 100vh;
    display: block;
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  .fg_lp-shell__fixed {
    width: var(--fg-desktop-sidebar-width);
    height: 100vh;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    transform: none;
    z-index: 5;
    padding: 0;
    background: transparent;
    backdrop-filter: none;
    overflow: hidden;
    border-right: 1px solid rgba(255, 255, 255, 0.28);
  }

  .fg_lp-shell__fixed::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/forest-guard-lp/pc_sidebar_left_bg.png") center / cover no-repeat;
    opacity: 1;
    z-index: 0;
  }

  .fg_lp-shell__fixed > * {
    position: absolute;
    z-index: 1;
  }

  .fg_lp-shell__logo {
    width: 190px;
    height: 140px;
    top: 214px;
    left: 40px;
    margin: 0;
    padding: 0;
    display: block;
  }

  .fg_lp-shell__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .fg_lp-shell__content {
    top: 214px;
    left: 270px;
    width: 327px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    row-gap: 32px;
  }

  .fg_lp-shell__content > * {
    flex: 0 0 100%;
  }

  .fg_lp-shell__nav {
    width: 298px;
    max-width: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    box-shadow: none;
  }

  .fg_lp-shell__nav a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 40px;
    padding: 8px 12px 8px 20px;
    color: #123376;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .fg_lp-shell__nav-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    min-height: 40px;
    padding: 8px 12px 8px 14px;
    border-radius: 12px;
    overflow: visible;
    transition: color 0.35s ease;
  }

  .fg_lp-shell__nav-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 51, 118, 0.18) 0%, rgba(18, 51, 118, 0.06) 100%);
    opacity: 0;
    transform: translate3d(-10px, 0, 0);
    transition: opacity 0.42s ease, transform 0.42s ease;
    z-index: 0;
    border-radius: inherit;
  }

  .fg_lp-shell__nav-item::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 50%;
    width: 2px;
    height: 0;
    border-radius: 99px;
    background: #123376;
    transform: translateY(-50%);
    transition: height 0.42s cubic-bezier(0.2, 0.8, 0.2, 1);
    z-index: 1;
  }

  .fg_lp-shell__nav-item:hover {
    opacity: 1;
  }

  .fg_lp-shell__nav-item.is-current::before {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  .fg_lp-shell__nav-item.is-current::after {
    height: 70%;
  }

  .fg_lp-shell__nav-item strong {
    flex: 1;
    font-size: 20px;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0;
    position: relative;
    z-index: 2;
  }

  .fg_lp-shell__nav-icon-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    background: none;
    border: 0;
    border-radius: 0;
    flex-shrink: 0;
    transition: transform 0.2s;
    position: relative;
    z-index: 2;
  }

  .fg_lp-shell__nav-item:hover .fg_lp-shell__nav-icon-btn {
    transform: translateX(2px);
  }

  .fg_lp-shell__nav-item.is-current .fg_lp-shell__nav-icon-btn {
    transform: translateX(2px);
  }

  .fg_lp-shell__nav-icon-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
  }

  .fg_lp-shell__nav-item.is-current .fg_lp-shell__nav-icon-btn img {
    animation: fg-nav-current-arrow 1.35s ease-in-out infinite;
  }

  .fg_lp-shell__cta-group {
    width: 327px;
    max-width: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .fg_lp-shell__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 20px;
    text-decoration: none;
    transition: opacity 0.2s;
  }

  .fg_lp-shell__cta:hover {
    opacity: 0.9;
  }

  .fg_lp-shell__cta--phone {
    background: #123376;
    color: #fff;
    height: 88px;
    padding: 16px 31px;
    flex-direction: column;
    gap: 8px;
  }

  .fg_lp-shell__cta-content {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .fg_lp-shell__cta--phone strong {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    letter-spacing: 0;
  }

  .fg_lp-shell__cta--phone small {
    width: auto;
    margin-top: 0;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px;
    color: #fff;
    letter-spacing: 0;
  }

  .fg_lp-shell__cta--mail {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff;
    color: #123376;
    border: 2px solid #123376;
    padding: 15px 48px 14px;
    height: 56px;
  }

  .fg_lp-shell__cta--mail .fg_lp-shell__cta-icon--mail {
    width: 31px;
    height: 20px;
  }

  .fg_lp-shell__cta--mail strong {
    color: #123376;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0;
  }

  .fg_lp-shell__cta-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }

  .fg_lp-shell__cta--phone .fg_lp-shell__cta-icon {
    width: 32px;
    height: 32px;
  }

  .fg_lp-shell__scroll {
    display: block;
    position: absolute;
    top: 735px;
    left: 40px;
    width: 12px;
    height: 161px;
    color: transparent;
    font-size: 0;
    overflow: hidden;
    pointer-events: none;
    filter: drop-shadow(0 0 6px rgba(37, 52, 148, 0.18));
  }

  .fg_lp-shell__scroll::before {
    content: "SCROLL";
    position: absolute;
    top: 0;
    left: 0;
    width: 12px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #253494;
    font-family: "Inter", "Noto Sans JP", sans-serif;
    font-size: 12px;
    font-weight: 700;
    line-height: 12px;
    letter-spacing: 1px;
    white-space: nowrap;
    transform: rotate(90deg);
    transform-origin: center center;
    text-shadow: 0 0 6px rgba(37, 52, 148, 0.18);
  }

  .fg_lp-shell__scroll::after {
    content: "";
    position: absolute;
    top: 61px;
    left: 4px;
    width: 3px;
    height: 100px;
    background:
      linear-gradient(#fff, #fff) 0 -24px / 3px 24px no-repeat,
      linear-gradient(rgba(37, 52, 148, 0.55), rgba(37, 52, 148, 0.55)) 0 0 / 3px 100px no-repeat;
    border-radius: 0;
    animation: fg-scroll-guide-line 2s linear infinite;
  }

  #p_forest-guard-lp {
    width: var(--fg-desktop-panel-width);
    max-width: var(--fg-desktop-panel-width);
    height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    background: var(--fg-base);
    scrollbar-width: none;
    position: fixed;
    top: 0;
    left: var(--fg-desktop-content-left);
    margin: 0;
    z-index: 2;
    padding-bottom: 0;
  }

  .fg_lp-shell__fixed,
  #p_forest-guard-lp {
    opacity: 1;
    transition: opacity 1.05s cubic-bezier(0.22, 0.8, 0.22, 1), transform 1.05s cubic-bezier(0.22, 0.8, 0.22, 1);
    will-change: opacity, transform;
  }

  #p_forest-guard-lp {
    will-change: opacity;
  }

  body.page-forest-guard-lp.is-fv-anim-init .fg_lp-shell__fixed {
    opacity: 0;
    transform: translate3d(-32px, 0, 0);
  }

  body.page-forest-guard-lp.is-fv-anim-ready .fg_lp-shell__fixed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }

  body.page-forest-guard-lp.is-fv-anim-init #p_forest-guard-lp {
    opacity: 0;
    transform: translate3d(0, 36px, 0);
  }

  body.page-forest-guard-lp.is-fv-anim-ready #p_forest-guard-lp {
    opacity: 1;
    transform: none;
    transition-delay: 0.14s;
  }

  #p_forest-guard-lp::-webkit-scrollbar {
    display: none;
  }

  .fg_fv {
    height: 740px;
  }

  .fg_fv__topbar {
    display: none;
  }

  .fg_fv__heading {
    width: 345.35px;
    min-height: 162.63px;
    top: 40px;
    left: calc(50% - 40px);
  }

  .fg_fv__heading-reveal--sp {
    display: none;
  }

  .fg_fv__heading-reveal--pc {
    display: block;
  }

  .fg_fv__bottom-fixed,
  .fg_fv__cta,
  .fg_fv__recruit-link {
    display: none;
  }

  .fg_about {
    padding: 40px 0 40px;
  }

  .fg_about__container {
    max-width: var(--fg-panel-max-width);
    padding: 0 55px;
    gap: 32px;
  }

  .fg_about__header {
    gap: 16px;
  }

  .fg_about__icon {
    width: 32px;
    height: 42px;
  }

  .fg_about__title {
    gap: 16px;
  }

  .fg_about__title-line {
    line-height: 1;
  }

  .fg_about__title-highlight {
    font-size: 32px;
    line-height: 32px;
  }

  .fg_about__title-text {
    font-size: 21.333px;
    line-height: 22px;
  }

  .fg_about__title-text-large {
    font-size: 32px;
    line-height: 32px;
  }

  .fg_about__divider {
    width: 53.333px;
    height: 5.333px;
    margin-top: 10.667px;
  }

  .fg_about__content {
    gap: 24px;
  }

  .fg_about__description {
    gap: 16px;
  }

  .fg_about__lead {
    font-size: 18.667px;
    line-height: 32px;
    letter-spacing: 0.07em;
  }

  .fg_about__video-wrapper {
    width: 389.333px;
    max-width: 100%;
    aspect-ratio: 389.333 / 690.667;
  }

  .fg_about__video-note {
    font-size: 13.333px;
    line-height: 14px;
  }

  .fg_about__cta {
    width: 378.667px;
    max-width: 100%;
    height: 48px;
    border-radius: 8px;
  }

  .fg_about__cta-text {
    font-size: 21.333px;
    line-height: 21.333px;
  }

  .fg_about__cta-icon {
    width: 26.667px;
    height: 26.667px;
    border-radius: 13.333px;
  }

  .fg_about__cta-icon::after {
    width: 26.667px;
    height: 26.667px;
  }

}

@media screen and (min-width: 960px) and (max-width: 1279px) {
  body.page-forest-guard-lp {
    --fg-desktop-sidebar-width: 430px;
  }

  .fg_lp-shell__fixed {
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    gap: 20px;
    padding: 32px 24px 24px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .fg_lp-shell__fixed > * {
    position: static;
  }

  .fg_lp-shell__logo {
    width: 170px;
    height: auto;
    max-width: 100%;
  }

  .fg_lp-shell__content {
    position: static;
    width: 100%;
    row-gap: 24px;
  }

  .fg_lp-shell__nav {
    width: 100%;
  }

  .fg_lp-shell__cta-group {
    width: 100%;
  }

  .fg_lp-shell__scroll {
    display: none;
  }
}

@keyframes fg-scroll-guide-line {
  0% {
    background-position: 0 -24px, 0 0;
  }
  100% {
    background-position: 0 100px, 0 0;
  }
}

@keyframes fg-fv-heading-slice-in {
  0% {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(0.98);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes fg-nav-current-arrow {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(2px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .fg_lp-shell__scroll,
  .fg_lp-shell__scroll::before,
  .fg_lp-shell__scroll::after {
    animation: none;
  }

  .fg_fv::before,
  .fg_fv::after,
  .fg_lp-shell__fixed,
  .fg_lp-shell__nav-item,
  .fg_lp-shell__nav-item::before,
  .fg_lp-shell__nav-item::after,
  .fg_lp-shell__nav-icon-btn img,
  #p_forest-guard-lp,
  .fg_fv__topbar,
  .fg_fv__heading,
  .fg_fv__heading-slice,
  .fg_fv__bottom-banner,
  .fg_fv__cta,
  .fg_fv__recruit-link {
    transition: none;
    animation: none;
  }

  body.page-forest-guard-lp.is-fv-anim-init .fg_fv__topbar,
  body.page-forest-guard-lp.is-fv-anim-init .fg_fv__cta,
  body.page-forest-guard-lp.is-fv-anim-init .fg_fv__recruit-link {
    opacity: 1;
    transform: none;
  }

  body.page-forest-guard-lp.is-fv-anim-init .fg_lp-shell__fixed,
  body.page-forest-guard-lp.is-fv-anim-init #p_forest-guard-lp {
    opacity: 1;
    transform: none;
  }

  body.page-forest-guard-lp.is-fv-anim-init .fg_fv__heading {
    opacity: 1;
    transform: translate3d(-50%, var(--fg-fv-heading-parallax), 0) scale(1);
  }

  .fg_fv__heading-slice {
    opacity: 1;
    transform: none;
    filter: none;
  }

  body.page-forest-guard-lp.is-fv-anim-init .fg_fv__bottom-banner {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) and (max-width: 959px) {
  body.page-forest-guard-lp.is-fv-anim-init .fg_fv__heading {
    transform: translate3d(0, var(--fg-fv-heading-parallax), 0) scale(1);
  }
}

@media screen and (max-width: 374px) {
  .fg_fv__topbar {
    width: calc(100% - 24px);
    left: 12px;
  }

  .fg_fv__heading {
    width: calc(272px * var(--fg-mobile-scale, 1));
    top: calc(118px * var(--fg-mobile-scale, 1));
  }

  .fg_fv__cta-phone {
    gap: 6px;
  }

  .fg_fv__cta-phone strong,
  .fg_fv__cta-mail strong {
    font-size: 14px;
  }

  .fg_fv__cta-phone small {
    font-size: 11px;
  }

  .fg_fv__recruit-link span {
    font-size: 14px;
  }

  .fg_about {
    padding: 0;
  }

  .fg_about__header {
    flex-direction: column;
    gap: 24px;
    padding: 40px 16px;
  }

  .fg_about__title-line {
    font-size: 16px;
  }

  .fg_about__title-highlight {
    font-size: 16px;
  }

  .fg_about__content {
    padding: 0 16px 40px;
  }

  .fg_about__cta {
    padding: 12px 16px;
    font-size: 14px;
  }

  .fg_about__cta-text {
    font-size: 14px;
  }

  .fg_strength__heading h2 {
    font-size: 22px;
  }

  .fg_strength__heading h2 span {
    font-size: 28px;
  }

  .fg_strength__lead {
    width: calc(100% - 24px);
  }

  .fg_strength__card {
    width: calc(100% - 24px);
    padding: 24px 24px 22px;
  }

  .fg_security-types__inner {
    width: calc(100% - 24px);
  }

  .fg_security-types__card {
    padding: 22px 20px;
  }

  .fg_security-types__card h3 {
    padding-left: 34px;
    font-size: 18px;
  }

  .fg_entry-cta {
    padding-left: 12px;
    padding-right: 12px;
  }

  .fg_entry-cta__phone-line strong {
    font-size: 28px;
  }

  .fg_entry-cta__mail strong {
    font-size: 21px;
  }

  .fg_beginner__header h2 {
    font-size: 22px;
  }

  .fg_beginner__title-yellow,
  .fg_beginner__title-large {
    font-size: 28px;
  }

  .fg_beginner__lead {
    font-size: 15px;
  }

  .fg_beginner__photo-wrap {
    width: calc(100% - 32px);
  }

  .fg_beginner__photo-mask {
    width: 100%;
    height: auto;
    aspect-ratio: 292 / 200;
  }

  .fg_beginner__point-body {
    padding-top: 40px;
  }

  .fg_beginner__slant-panel {
    width: 58%;
    height: auto;
    aspect-ratio: 219 / 150;
  }

  .fg_recruit__card {
    max-width: calc(100% - 12px);
    padding: 24px 16px;
  }

  .fg_recruit__divider {
    width: 100%;
  }

  .fg_recruit__row {
    grid-template-columns: 56px 1fr;
    column-gap: 10px;
  }

  .fg_recruit__row dt {
    padding-top: 20px;
  }

  .fg_recruit__row dd {
    padding-left: 12px;
  }

  .fg_faq {
    padding-left: 12px;
    padding-right: 12px;
  }

  .fg_faq__list li {
    column-gap: 16px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .fg_flow {
    padding-left: 12px;
    padding-right: 12px;
  }

  .fg_flow__step {
    width: calc(100% - 24px);
    margin-left: 12px;
    gap: 16px;
  }

  .fg_flow__step-no strong {
    font-size: 32px;
  }

  .fg_flow__step-copy h3 {
    font-size: 15px;
  }

  .fg_flow__finish-copy {
    width: calc(100% - 92px);
  }

  .fg_contact-footer {
    min-height: 545px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .fg_contact-footer__bottom {
    padding-left: 12px;
    padding-right: 12px;
  }

  .fg_contact-footer__mail {
    font-size: 15px;
  }

  .fg_contact-footer__copyright {
    font-size: 14px;
  }
}
