:root {
  --font-primary: "Noto Sans JP", sans-serif;
  --font-en: "Inter", sans-serif;
  --font-family-base: var(--font-primary);
  --font-weight-base: 400;
  --lineheight-base: 1.5;
  --font-size-base: 1.4rem;
  --body-background-color: #fff;
  --body-text-color: #334155;
  --color-primary: #0A6647;
  --input-border-color: #8A929C;
  --input-border-width: 1px;
  --input-font-size: 1.6rem;
  --input-font-weight: 400;
  --input-background: #fff;
  --input-color: var(--body-text-color);
  --input-height: 4rem;
  --input-line-height: 1.5;
  --input-padding-x: 1rem;
  --input-padding-y: 1rem;
  --input-placeholder-color: #6B7480;
  --input-disabled-bg: #1E1E1E;
  --btn-font-family: var(--font-family-base);
  --btn-font-weight: 400;
  --btn-border-width: 1px;
  --btn-color: var(--body-text-color);
  --btn-disabled-opacity: 0.8;
}
@media (min-width: 768px) {
  :root {
    --font-size-base: 1.6rem;
  }
}

* {
  box-sizing: border-box;
}

html {
  font-size: 2.6666666667vw;
  overflow-x: hidden;
}
@media (min-width: 768px) {
  html {
    font-size: 0.6944444444vw;
  }
}
@media (min-width: 1920px) {
  html {
    font-size: 10px;
  }
}
html.noscroll {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
}

body {
  background-color: var(--body-background-color);
  color: var(--body-text-color);
  margin: 0;
  font-family: var(--font-family-base);
  font-weight: var(--font-weight-base);
  font-size: var(--font-size-base);
  line-height: var(--lineheight-base);
  text-align: left;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ol,
ul,
dl {
  list-style-type: none;
  margin: 0;
  padding-left: 0;
}

b,
strong {
  font-weight: 700;
}

a {
  background-color: transparent;
  color: inherit;
  text-decoration: none;
}

figure {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
  height: auto;
}

table {
  border-collapse: collapse;
}

th {
  font-weight: inherit;
  text-align: inherit;
  text-align: -webkit-match-parent;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

select {
  word-wrap: normal;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
     -moz-appearance: button;
          appearance: button;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
          appearance: none;
}

[hidden] {
  display: none !important;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

.alignleft {
  text-align: left;
}

img.aligncenter {
  display: block;
  margin: auto;
}
img.alignright {
  display: block;
  margin-left: auto;
}
img.alignleft {
  display: block;
  margin-right: auto;
}

.container {
  margin: 0 auto;
  max-width: 128rem;
  padding-inline: 2rem;
  width: 100%;
}

.animate_animated {
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-timing-function: ease;
}

@keyframes fadeInUp {
  from {
    transform: translate(0px, 20px);
    opacity: 0;
  }
  to {
    transform: translate(0px, 0px);
    opacity: 1;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

.btn {
  display: inline-block;
  font-family: var(--btn-font-family);
  font-weight: var(--btn-font-weight);
  color: var(--btn-color);
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background-color: transparent;
  border: var(--btn-border-width) solid transparent;
}
.btn:focus, .btn.focus {
  outline: 0;
}
.btn.disabled, .btn:disabled {
  opacity: var(--btn-disabled-opacity);
}
.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

.btn-second {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 4.8rem;
  padding: 0.5rem;
  border-radius: 0.6rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.04rem;
  color: var(--color-primary);
  background: linear-gradient(to bottom, #FFC749, #FFAD00);
}
@media (min-width: 768px) {
  .btn-second {
    width: 21.7rem;
  }
}

.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 26.1rem;
  min-height: 6.4rem;
  padding: 0.5rem;
  border-radius: 0.6rem;
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.04rem;
  color: var(--color-primary);
  background: linear-gradient(to bottom, #FFC749, #FFAD00);
}
.p-header {
  position: fixed;
  z-index: 100;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  height: 6rem;
  background-color: #ECEFEC;
}
@media (min-width: 768px) {
  .p-header {
    position: absolute;
    height: 8.2rem;
  }
}
.p-header__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-inline: auto;
  padding-inline: 2rem;
}
@media (min-width: 768px) {
  .p-header__inner {
    padding-inline: 5rem;
  }
}
@media (max-width: 767px) {
  .p-header__inner::after {
    position: absolute;
    z-index: 250;
    top: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    background-color: #ECEFEC;
    content: "";
  }
}
.p-header__logo {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 300;
}
@media (min-width: 768px) {
  .p-header__logo {
    padding-left: 5rem;
  }
}
.p-header__logo img {
  width: 19.2rem;
  height: 2.1rem;
}
@media (min-width: 768px) {
  .p-header__logo img {
    width: 22.7rem;
    height: 2.5rem;
  }
}
.p-header__logo-link {
  display: flex;
  align-items: center;
}

.p-menu-wrap {
  position: fixed;
  z-index: 200;
  left: 0;
  top: 6rem;
  width: 100%;
  height: auto;
  padding-inline: 3.8rem;
  padding-block: 2rem 4rem;
  transform: translateY(-140%);
  background-color: #ECEFEC;
  transition: transform 0.5s ease-out;
  will-change: transform;
}
.p-menu-wrap.is-active {
  transform: translateY(0);
}
@media (max-width: 767px) {
  .p-menu-wrap {
    height: calc(100vh - 6rem);
    overflow-y: auto;
    padding-top: 2rem;
  }
}
@media (min-width: 768px) {
  .p-menu-wrap {
    position: static;
    width: auto;
    padding: 0;
    transform: none;
    background-color: transparent;
  }
}
.p-menu-wrap__box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 2rem;
  border-top: 1px solid #334155;
}
@media (min-width: 768px) {
  .p-menu-wrap__box {
    flex-direction: row;
    gap: 3rem;
    padding-top: 0;
    border: 0;
  }
}

.p-menu {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 768px) {
  .p-menu {
    display: none;
  }
}
.p-menu a {
  position: relative;
  display: flex;
  justify-content: center;
  font-size: 2.2rem;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 0.14rem;
  text-align: center;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .p-menu a {
    font-size: 1.6rem;
  }
  .p-menu a:hover::after {
    animation: lineIn 0.4s forwards;
  }
  .p-menu a:not(:hover)::after {
    animation: lineOut 0.4s forwards;
  }
}
.p-menu a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: left;
  content: "";
}

.p-tel {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 3.4rem;
  padding-left: 4.5rem;
  background: url("../images/icon_tel.svg") no-repeat 0 center;
  background-size: 3.4rem;
}
@media (min-width: 768px) {
  .p-tel {
    padding-left: 4.3rem;
    background-position: 0 0.9rem;
    pointer-events: none;
  }
}
.p-tel__ttl {
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .p-tel__ttl {
    padding-top: 0.5rem;
  }
}
.p-tel__box {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-tel__box {
    gap: 0.6rem;
  }
}
.p-tel__num {
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-tel__num {
    font-size: 1.8rem;
  }
}
.p-tel__sub {
  position: relative;
  bottom: 0.2rem;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .p-tel__sub {
    bottom: 0.1rem;
  }
}

.p-hamburger {
  display: inline-block;
  position: fixed;
  z-index: 999;
  right: 0.1rem;
  top: -0.5rem;
  display: block;
  width: 6rem;
  height: 6rem;
  cursor: pointer;
  caret-color: transparent;
}
@media (min-width: 768px) {
  .p-hamburger {
    display: none;
  }
}
.p-hamburger span {
  display: block;
  position: absolute;
  right: 2.1rem;
  width: 2.7rem;
  height: 2px;
  border-radius: 1rem;
  background-color: var(--color-primary);
  transition: 0.2s transform, 0.2s background-color;
}
.p-hamburger span:nth-child(1) {
  top: 2.5rem;
}
.p-hamburger span:nth-child(2) {
  top: 3.3rem;
}
.p-hamburger span:nth-child(3) {
  top: 4.1rem;
}
.p-hamburger.is-active span:nth-child(1) {
  transform: rotate(30deg);
  top: 3.4rem;
}
.p-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.p-hamburger.is-active span:nth-child(3) {
  top: 3.4rem;
  transform: rotate(-30deg);
}

.l-footer {
  background-color: #05251A;
  padding: 3.2rem 0 3.1rem;
}
@media (min-width: 768px) {
  .l-footer {
    padding: 7.8rem 5rem 4rem 5.2rem;
  }
}
.l-footer__wrap {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 768px) {
  .l-footer__wrap {
    gap: 2.4rem;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.l-footer__logo {
  width: 19.9rem;
}
@media (min-width: 768px) {
  .l-footer__logo {
    width: 19.7rem;
  }
}
.l-footer__nav {
  display: flex;
  gap: 3.2rem;
}
.l-footer__nav a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .l-footer__nav a {
    transition: color 0.3s ease-in-out;
  }
  .l-footer__nav a:hover {
    color: rgb(255, 255, 255);
  }
}
.l-footer__copy {
  color: rgba(255, 255, 255, 0.2);
  font-size: 1rem;
  text-align: center;
  line-height: 1;
  margin-top: 2.4rem;
}
@media (min-width: 768px) {
  .l-footer__copy {
    font-size: 1.4rem;
    margin-top: 4rem;
  }
}

.form-control {
  background-color: var(--input-background);
  background-clip: padding-box;
  border: var(--input-border-width) solid var(--input-border-color);
  border-radius: 0.2rem;
  color: var(--input-color);
  display: block;
  font-family: var(--font-family-base);
  font-size: var(--input-font-size);
  font-weight: var(--input-font-weight);
  line-height: var(--input-line-height);
  padding: var(--input-padding-y) var(--input-padding-x);
  height: var(--input-height);
  width: 100%;
}
.form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 var(--input-color);
}
.form-control::-moz-placeholder {
  color: var(--input-placeholder-color);
  opacity: 1;
}
.form-control::placeholder {
  color: var(--input-placeholder-color);
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: var(--input-disabled-bg);
  opacity: 1;
}

input[type=date].form-control,
input[type=time].form-control,
input[type=datetime-local].form-control,
input[type=month].form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

textarea.form-control {
  height: 9rem;
  resize: none;
}

.custom-check {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  position: relative;
}
.custom-check input {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
}
.custom-check input:checked ~ .custom-check__mark {
  background-color: #0A6647;
}
.custom-check input:checked ~ .custom-check__mark::after {
  opacity: 1;
}
.custom-check__mark {
  background-color: #F0F8EF;
  border: 1px solid #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.6rem;
  width: 1.6rem;
  position: relative;
}
.custom-check__mark::after {
  content: "";
  background: url("../images/icon_check.svg") no-repeat center/contain;
  height: 0.6rem;
  width: 0.8rem;
  opacity: 0;
}
.custom-check__label {
  font-size: 1.6rem;
}

.select2 {
  width: 100% !important;
}
.select2-search {
  display: none !important;
}
.select2-selection {
  position: relative;
}

.select2-container--default .select2-selection--single .select2-selection__arrow::before {
  content: "";
  background-color: #8A929C;
  width: 1px;
  height: 1.6rem;
  position: absolute;
  right: 3.4rem;
  top: 50%;
  transform: translateY(-50%);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  background: url("../images/icon_arrow_down.svg") no-repeat center/contain;
  height: 0.9rem;
  width: 1rem;
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
}

.select2-dropdown {
  background-color: #F0F8EF;
  border-color: #8A929C;
}

label.error {
  color: #BA1A1A;
  display: block;
  font-size: 1.3rem;
  margin-top: 0.4rem;
}

.table {
  width: 100%;
}

.hline01 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 0.8rem;
}
@media (min-width: 768px) {
  .hline01 {
    row-gap: 1.6rem;
  }
}
.hline01.--style-01 .hline01__sub {
  color: #FFF;
}
.hline01.--style-01 .hline01__ttl {
  color: #FFF;
}
.hline01__sub {
  font-size: 1.2rem;
  font-family: var(--font-en);
  font-weight: 700;
  letter-spacing: 0.14rem;
  line-height: 1;
  text-align: center;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .hline01__sub {
    font-size: 1.6rem;
  }
}
.hline01__ttl {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 768px) {
  .hline01__ttl {
    font-size: 4rem;
  }
}
.hline01__num {
  font-size: 3.4rem;
  color: var(--color-primary);
}
@media (min-width: 768px) {
  .hline01__num {
    font-size: 6.4rem;
  }
}

.hline02 {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: 1.2rem;
}
@media (min-width: 768px) {
  .hline02 {
    padding-bottom: 2.6rem;
  }
}
.hline02::after {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1.645rem;
  height: 0.2rem;
  background-color: var(--color-primary);
  border-radius: 1rem;
  opacity: 0.5;
  content: "";
}
@media (min-width: 768px) {
  .hline02::after {
    width: 3.2rem;
    height: 0.4rem;
    left: 0.3rem;
  }
}
.hline02__sub {
  margin-bottom: 0.5rem;
  font-family: var(--font-en);
  color: var(--color-primary);
  line-height: 1;
  font-size: 1rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .hline02__sub {
    margin-bottom: 1.3rem;
    font-size: 1.2rem;
    letter-spacing: 0.14rem;
  }
}
.hline02__ttl {
  font-size: 2rem;
  line-height: 1.2;
  font-weight: 700;
}
@media (min-width: 768px) {
  .hline02__ttl {
    font-size: 3.2rem;
  }
}

@media (max-width: 767px) {
  .pc {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp {
    display: none;
  }
}

.mb-0 {
  margin-bottom: 0 !important;
}

.nospace::before, .nospace::after {
  content: "";
  display: block flow;
  inline-size: 0;
  block-size: 1px;
}
.nospace::before {
  margin-block-end: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}
.nospace::after {
  margin-block-start: calc((1 - var(--lh, var(--lineheight-base))) * 0.5em);
}

.img-cover {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.img-contain {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 768px) {
  .hover {
    transition: 0.3s ease opacity;
  }
  .hover:hover {
    opacity: 0.8;
  }
}

.p-description {
  color: #FFF;
  text-align: center;
  line-height: 1.6285714286;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .p-description {
    line-height: 1.6111111111;
    font-size: 1.8rem;
  }
}

.p-txt {
  font-size: 1.4rem;
  line-height: 1.6285714286;
}
@media (min-width: 768px) {
  .p-txt {
    font-size: 1.6rem;
    line-height: 1.425;
  }
}

.p-link {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .p-link {
    font-size: 1.6rem;
  }
  .p-link:hover span::after {
    opacity: 0;
  }
}
.p-link::after {
  position: relative;
  width: 1.4rem;
  aspect-ratio: 1/1;
  background: url("../images/icon_blank.svg") no-repeat 0 center;
  background-size: contain;
  content: "";
}
@media (min-width: 768px) {
  .p-link::after {
    width: 1.7rem;
  }
}
.p-link span {
  position: relative;
}
.p-link span::after {
  position: absolute;
  left: 0;
  bottom: 0.2rem;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
  background-color: currentColor;
  transition: 0.3s ease opacity;
  content: "";
}

.wrapper {
  position: relative;
  min-height: 100vh;
}

.p-keyv {
  position: relative;
  width: 100%;
  aspect-ratio: 375/692;
  padding-block: 9.5rem 2.5rem;
  background: url("../images/img_keyv_sp.jpg") no-repeat center/cover;
}
@media (min-width: 768px) {
  .p-keyv {
    padding-block: 18.7rem 8.8rem;
    aspect-ratio: 1571/857;
    background-image: url("../images/img_keyv.jpg");
  }
}
.p-keyv__hline {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  color: #FFF;
  text-shadow: 0 2px 24px #5271AD;
  font-weight: 700;
  line-height: 1.2;
  font-size: 4rem;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-keyv__hline {
    gap: 3.3rem;
    margin-bottom: 2rem;
    font-size: 6.4rem;
    text-shadow: 0 4px 24px #062F4F;
  }
}
.p-keyv__txt {
  margin-bottom: 1.5rem;
  color: #FFF;
  font-weight: 600;
  font-size: 1.6rem;
  text-shadow: 0 2px 20px #5271AD;
  line-height: 1.5;
}
@media (min-width: 768px) {
  .p-keyv__txt {
    margin-bottom: 1.4rem;
    text-shadow: 0 4px 34px #000;
    line-height: 1.75;
  }
}
.p-keyv__note {
  color: #FFF;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .p-keyv__note {
    font-size: 1.4rem;
  }
}
.p-keyv .btn-primary {
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .p-keyv .btn-primary {
    margin-bottom: 2.5rem;
  }
}

.p-greenery {
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
  max-width: 19.8rem;
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .p-greenery {
    flex-wrap: wrap;
    flex-direction: inherit;
    row-gap: 1.6rem;
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    max-width: 56rem;
    margin-bottom: 4.2rem;
  }
}
.p-greenery__item {
  padding: 0.3rem 0.7rem;
  background-color: var(--color-primary);
  border-radius: 0.2rem;
}
@media (min-width: 768px) {
  .p-greenery__item {
    padding: 1rem 2rem 1rem 1.3rem;
  }
}
.p-greenery__ttl {
  min-height: 1.2rem;
  padding-left: 1.6rem;
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 700;
  background: url("../images/icon_checked_01.svg") no-repeat 0 center;
  background-size: 1.2rem;
}
@media (min-width: 768px) {
  .p-greenery__ttl {
    padding-left: 2.4rem;
    font-size: 1.6rem;
    background-size: 1.6rem;
  }
}

.p-protect {
  display: flex;
  flex-wrap: wrap;
  row-gap: 0.6rem;
  -moz-column-gap: 0.8rem;
       column-gap: 0.8rem;
  margin-bottom: 8.7rem;
}
@media (min-width: 768px) {
  .p-protect {
    -moz-column-gap: 1.2rem;
         column-gap: 1.2rem;
    margin-bottom: 4.2rem;
  }
}
.p-protect__item {
  display: flex;
  align-items: center;
  height: 4.3rem;
  padding-inline: 0.5rem 0;
  border-radius: 0.2rem;
  background-color: #E6F5E3;
  font-weight: 700;
}
@media (min-width: 768px) {
  .p-protect__item {
    height: 5.8rem;
    border-radius: 0.3rem;
  }
}
.p-protect__item.--w-1 {
  min-width: 18.7rem;
}
@media (min-width: 768px) {
  .p-protect__item.--w-1 {
    width: 26.9rem;
  }
}
.p-protect__item.--w-2 {
  min-width: 17.4rem;
}
@media (min-width: 768px) {
  .p-protect__item.--w-2 {
    width: 24.7rem;
  }
}
.p-protect__item.--w-3 {
  min-width: 15.1rem;
}
@media (min-width: 768px) {
  .p-protect__item.--w-3 {
    width: 21.8rem;
  }
}
.p-protect__head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  padding: 0.5rem 0.3rem;
  color: var(--color-primary);
  font-size: 1.5rem;
  line-height: 1.1;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-protect__head {
    width: 5.8rem;
    padding: 0.5rem 1rem;
    font-size: 2rem;
  }
}
.p-protect__head::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.2;
  content: "";
}
.p-protect__head.--style-1::after {
  background-size: 3.5rem 2.2rem;
  background-image: url("../images/icon_sow.svg");
}
@media (min-width: 768px) {
  .p-protect__head.--style-1::after {
    background-size: 5.3rem 3.2rem;
  }
}
.p-protect__head.--style-2::after {
  background-size: 3.2rem 3.2rem;
  background-image: url("../images/icon_ruler.svg");
}
@media (min-width: 768px) {
  .p-protect__head.--style-2::after {
    background-size: 4.75rem 4.75rem;
  }
}
.p-protect__head.--style-3::after {
  background-size: 3.45rem 3.45rem;
  background-image: url("../images/icon_analysis.svg");
}
@media (min-width: 768px) {
  .p-protect__head.--style-3::after {
    background-size: 4.65rem 4.65rem;
  }
}
.p-protect__content {
  display: flex;
  align-items: center;
  width: calc(100% - 3.8rem);
  padding: 0.5rem 0.5rem 0.5rem 0;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .p-protect__content {
    width: calc(100% - 5.8rem);
  }
}
.p-protect__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 2.6rem;
  margin-left: 0.2rem;
  margin-right: 0.3rem;
  writing-mode: vertical-rl;
  background-color: #FFF;
  font-size: 0.9rem;
  line-height: 1.1;
}
@media (min-width: 768px) {
  .p-protect__tag {
    width: 2rem;
    height: 3.2rem;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    font-size: 1rem;
  }
}
.p-protect__num {
  font-size: 2.379rem;
  font-family: var(--font-en);
  color: var(--color-primary);
  letter-spacing: -0.1rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-protect__num {
    font-size: 3.2rem;
  }
}
.p-protect__num.--w-1 {
  width: 6rem;
}
@media (min-width: 768px) {
  .p-protect__num.--w-1 {
    width: 7.5rem;
  }
}
.p-protect__num.--w-2 {
  width: 2.3rem;
}
@media (min-width: 768px) {
  .p-protect__num.--w-2 {
    width: 3rem;
  }
}
.p-protect__num.--w-3 {
  width: 1.4rem;
}
@media (min-width: 768px) {
  .p-protect__num.--w-3 {
    width: 2rem;
  }
}
.p-protect__price {
  margin-inline: 0.3rem 0.1rem;
  font-size: 1.338rem;
  color: var(--color-primary);
  line-height: 1;
}
@media (min-width: 768px) {
  .p-protect__price {
    font-size: 1.8rem;
  }
}
.p-protect__tilde {
  font-size: 1.784rem;
  color: var(--color-primary);
  line-height: 1;
}
@media (min-width: 768px) {
  .p-protect__tilde {
    font-size: 2.4rem;
  }
}
.p-protect__txt {
  font-weight: 700;
  font-size: 1.413rem;
}
@media (min-width: 768px) {
  .p-protect__txt {
    font-size: 1.9rem;
  }
}

.p-problem {
  position: relative;
  padding-block: 8rem 8rem;
  background: linear-gradient(to bottom, #E9ECE9, rgba(255, 255, 255, 0));
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-problem {
    padding-block: 12rem 8.2rem;
  }
}
.p-problem::before {
  position: absolute;
  z-index: 0;
  top: 22rem;
  right: -24rem;
  width: 109.4rem;
  height: 73rem;
  background: url(../images/symbol_02.png) no-repeat center;
  background-size: 109.4rem 73rem;
  transform: rotate(343deg);
  opacity: 0.5;
  content: "";
}
@media (min-width: 768px) {
  .p-problem::before {
    top: -12rem;
    right: -19rem;
    background-size: 109.4rem 73rem;
    transform: rotate(4deg);
  }
}
.p-problem__drone {
  position: absolute;
  z-index: 1;
  top: 1.7rem;
  right: 2.3rem;
  aspect-ratio: 2/1;
  width: 12rem;
}
@media (min-width: 768px) {
  .p-problem__drone {
    top: 2rem;
    right: 0.5rem;
    width: 29.6rem;
  }
}
.p-problem__drone img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-problem__inner {
  position: relative;
  z-index: 1;
}
.p-problem .hline01 {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .p-problem .hline01 {
    margin-bottom: 4rem;
  }
}
.p-problem__list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (min-width: 768px) {
  .p-problem__list {
    flex-direction: row;
    gap: 2rem;
  }
}

.card-problem {
  padding: 2.7rem 2.5rem 4rem;
  border-radius: 1rem;
  box-shadow: 0.5rem 0.5rem 1.3rem rgba(8, 54, 38, 0.14);
  background-color: #FFF;
}
@media (min-width: 768px) {
  .card-problem {
    padding: 3.2rem 3rem 3rem 3rem;
    border-radius: 1.2rem;
    box-shadow: 0.5rem 0.5rem 1.3rem rgba(8, 54, 38, 0.14);
  }
}
.card-problem__image {
  margin-bottom: 2rem;
  border-radius: 0.333rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .card-problem__image {
    margin-bottom: 2.4rem;
    border-radius: 0.4rem;
  }
}
.card-problem__ttl {
  margin-bottom: 1.6rem;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .card-problem__ttl {
    margin-bottom: 2rem;
    font-size: 2.4rem;
  }
}

.p-checklist {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
@media (min-width: 768px) {
  .p-checklist {
    gap: 1.6rem;
  }
}
.p-checklist__item {
  position: relative;
  min-height: 1.3rem;
  padding-left: 1.8rem;
  background: url(../images/icon_checked_02.svg) no-repeat 0 0.2rem;
  background-size: 1.3rem;
  font-size: 1.4rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .p-checklist__item {
    min-height: 1.6rem;
    padding-left: 2.2rem;
    background-size: 1.6rem;
    background-position: 0 0.1rem;
    font-size: 1.6rem;
  }
}

.p-solution {
  position: relative;
  padding-block: 6rem 8rem;
  background: linear-gradient(to bottom, var(--color-primary) 20%, rgba(255, 255, 255, 0));
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-solution {
    padding-block: 6rem 12rem;
  }
}
.p-solution::before {
  position: absolute;
  z-index: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 80%;
  background: linear-gradient(to top, #DFF1DA, rgba(255, 255, 255, 0));
  content: "";
}
.p-solution__symbol-1 {
  position: absolute;
  z-index: 1;
  opacity: 0.4;
  mix-blend-mode: multiply;
}
@media (min-width: 768px) {
  .p-solution__symbol-1 {
    top: 62.5rem;
    right: -16.7rem;
  }
}
@media (max-width: 767px) {
  .p-solution__symbol-1 {
    display: none;
  }
}
.p-solution__symbol-2 {
  position: absolute;
  left: -17rem;
  z-index: 1;
  opacity: 0.4;
}
@media (max-width: 767px) {
  .p-solution__symbol-2 {
    width: 85.2rem;
    bottom: -15rem;
  }
}
@media (min-width: 768px) {
  .p-solution__symbol-2 {
    bottom: -13rem;
  }
}
.p-solution__inner {
  position: relative;
  z-index: 2;
}
.p-solution .hline01 {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .p-solution .hline01 {
    margin-bottom: 3rem;
  }
}
.p-solution .hline01__sub {
  color: #DFF2DB;
}
.p-solution .p-description {
  margin-bottom: 4rem;
}

.p-sollist {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 2.9rem;
}
@media (min-width: 768px) {
  .p-sollist {
    flex-direction: row;
    gap: 1.8rem;
    margin-bottom: 5.6rem;
  }
}
.p-sollist__item {
  position: relative;
  flex: 1;
  padding: 2.5rem 2rem 3rem;
  border-radius: 1rem;
  background-color: #FFF;
}
@media (min-width: 768px) {
  .p-sollist__item {
    aspect-ratio: 40/32;
    padding: 3.3rem 2rem 2.5rem 2.5rem;
    border-radius: 1.2rem;
  }
}
.p-sollist__item::after {
  position: absolute;
  right: 0;
  opacity: 0.2;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}
.p-sollist__item.--style-1::after {
  top: 5.6rem;
  width: 16.4rem;
  height: 10rem;
  background-image: url(../images/icon_sow.svg);
  background-size: 16.4rem 10rem;
}
@media (min-width: 768px) {
  .p-sollist__item.--style-1::after {
    top: 8.8rem;
    width: 19.6rem;
    height: 11.9rem;
    background-size: 19.6rem 11.9rem;
  }
}
.p-sollist__item.--style-2::after {
  top: 3.2rem;
  width: 14.5rem;
  height: 14.5rem;
  background-image: url(../images/icon_ruler.svg);
  background-size: 14.5rem 14.5rem;
}
@media (min-width: 768px) {
  .p-sollist__item.--style-2::after {
    top: 6.2rem;
    width: 17.4rem;
    height: 17.4rem;
    background-size: 17.4rem 17.4rem;
  }
}
.p-sollist__item.--style-3::after {
  top: 5.5rem;
  width: 13.3rem;
  height: 13.3rem;
  background-image: url(../images/icon_analysis.svg);
  background-size: 13.3rem 13.3rem;
}
@media (min-width: 768px) {
  .p-sollist__item.--style-3::after {
    top: 6.6rem;
    width: 15.9rem;
    height: 15.9rem;
    background-size: 15.9rem 15.9rem;
  }
}
.p-sollist__hline {
  margin-bottom: 2.5rem;
  color: var(--color-primary);
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 768px) {
  .p-sollist__hline {
    margin-bottom: 3rem;
    font-size: 4.4rem;
  }
}
.p-sollist__ttl {
  margin-bottom: 1.2rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .p-sollist__ttl {
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
  }
}
.p-sollist .p-txt {
  line-height: 1.7428571429;
}
@media (min-width: 768px) {
  .p-sollist .p-txt {
    line-height: 1.83125;
  }
}
.p-sollist .p-link {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .p-sollist .p-link {
    margin-top: 1.2rem;
  }
}

.p-service {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.4rem;
  padding-inline: 2rem;
  padding-block: 2.4rem 3.2rem;
  border-radius: 0.6rem;
  background-color: #FFF;
  box-shadow: 0.3rem 0.3rem 0.8rem 0 rgba(8, 54, 38, 0.14);
}
@media (min-width: 768px) {
  .p-service {
    flex-direction: row;
    margin-bottom: 5.6rem;
    padding: 5.3rem 4.8rem 5.2rem;
    border-radius: 1.2rem;
    box-shadow: 0.6rem 0.6rem 1.6rem 0 rgba(8, 54, 38, 0.14);
  }
}
.p-service__image {
  width: 100%;
  aspect-ratio: 54/34;
  margin-bottom: 2.4rem;
  border-radius: 0.4rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-service__image {
    width: 54rem;
    margin-bottom: 0;
    border-radius: 0.8rem;
  }
}
.p-service__block {
  width: 100%;
}
@media (min-width: 768px) {
  .p-service__block {
    width: calc(100% - 54rem);
    padding-left: 5.6rem;
  }
}
.p-service__head {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 1.8rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-service__head {
    flex-direction: row;
    gap: 0.5rem;
    justify-content: space-between;
    margin-bottom: 1rem;
  }
}
.p-service__head .p-package {
  width: 100%;
}
@media (min-width: 768px) {
  .p-service__head .p-package {
    width: 33rem;
  }
}
@media (min-width: 768px) {
  .p-service .hline02 {
    top: -0.1rem;
    left: -0.4rem;
  }
}
.p-service__ttl {
  margin-bottom: 2.4rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .p-service__ttl {
    margin-bottom: 2.5rem;
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  .p-service .p-checklist {
    gap: 0.9rem;
  }
}
@media (min-width: 768px) {
  .p-service .p-checklist {
    gap: 1.4rem;
  }
}
@media (max-width: 767px) {
  .p-service .p-checklist__item {
    background-size: 1.5rem;
  }
}

.p-package {
  padding: 1.6rem 1.5rem;
  border-radius: 0.3rem;
  background-color: #E6F5E3;
}
@media (min-width: 768px) {
  .p-package {
    padding: 1.5rem 1rem 1.5rem 1.4rem;
  }
}
.p-package__box {
  display: flex;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .p-package__box {
    margin-bottom: 0.5rem;
  }
}
.p-package__fee {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 3.1rem;
  writing-mode: vertical-rl;
  background-color: #FFF;
  line-height: 1.1;
  font-weight: 700;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .p-package__fee {
    width: 2.3rem;
    height: 4.1rem;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
.p-package__num {
  margin-inline: 0.6rem 0.4rem;
  font-family: var(--font-en);
  color: var(--color-primary);
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: -0.2rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-package__num {
    margin-inline: 1.1rem 0.7rem;
    font-size: 4.6rem;
    letter-spacing: -0.1rem;
  }
}
.p-package__num.--w-1 {
  position: relative;
  top: 0.1rem;
  width: 7.2rem;
}
@media (min-width: 768px) {
  .p-package__num.--w-1 {
    position: static;
    width: 11.6rem;
  }
}
.p-package__num.--w-2 {
  position: relative;
  top: 0.1rem;
  width: 3.2rem;
}
@media (min-width: 768px) {
  .p-package__num.--w-2 {
    position: static;
    width: 5rem;
  }
}
.p-package__num.--w-3 {
  position: relative;
  top: 0.1rem;
  width: 2rem;
}
@media (min-width: 768px) {
  .p-package__num.--w-3 {
    position: static;
    width: 3rem;
  }
}
.p-package__img-head.--w-1 {
  width: 9.1rem;
}
@media (min-width: 768px) {
  .p-package__img-head.--w-1 {
    width: 11.7rem;
  }
}
.p-package__img-head.--w-2 {
  width: 10.6rem;
}
@media (min-width: 768px) {
  .p-package__img-head.--w-2 {
    width: 12.2rem;
  }
}
.p-package__img-head.--w-3 {
  width: 21.4rem;
}
@media (min-width: 768px) {
  .p-package__img-head.--w-3 {
    width: 24.5rem;
  }
}
.p-package__note {
  font-size: 1rem;
  line-height: 1.4;
  text-indent: -1em;
  padding-left: 1em;
}
@media (min-width: 768px) {
  .p-package__note {
    line-height: 1.2;
  }
}

.p-reason {
  padding-block: 6rem;
}
@media (min-width: 768px) {
  .p-reason {
    padding-block: 10rem;
  }
}
.p-reason .hline01 {
  margin-bottom: 3rem;
}
@media (min-width: 768px) {
  .p-reason .hline01 {
    margin-bottom: 8rem;
  }
}
@media (min-width: 768px) {
  .p-reason .hline01__sub {
    margin-bottom: -2rem;
  }
}
.p-reason__list {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(1, 1fr);
}
@media (min-width: 768px) {
  .p-reason__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 8rem 5.6rem;
  }
}
.p-reason__item {
  position: relative;
  padding-inline: 2rem 1.2rem;
  padding-block: 2rem;
  border-radius: 0.8rem;
  background: linear-gradient(to bottom, #F0F8EF, #DFF2DB);
  box-shadow: 0.3rem 0.3rem 1rem rgba(8, 54, 38, 0.14);
}
@media (min-width: 768px) {
  .p-reason__item {
    padding-inline: 5.6rem 2.4rem;
    padding-block: 6rem 5.6rem;
    border-radius: 1.2rem;
    box-shadow: 0.6rem 0.6rem 1.6rem rgba(8, 54, 38, 0.14);
  }
}
.p-reason__head {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-reason__head {
    margin-bottom: 5.6rem;
  }
}
.p-reason .hline02 {
  width: calc(100% - 15rem);
  padding-right: 0.5rem;
}
@media (min-width: 768px) {
  .p-reason .hline02 {
    width: calc(100% - 26.1rem);
    padding-right: 1rem;
  }
}
.p-reason__image {
  width: 15rem;
  aspect-ratio: 261/195;
  border-radius: 0.6rem;
  margin-top: -3.5rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-reason__image {
    width: 26.1rem;
    aspect-ratio: 261/195;
    margin-top: -7.5rem;
    border-radius: 0.8rem;
  }
}

.p-space {
  padding-block: 7rem 8rem;
  background: url(../images/bg_reason_sp.jpg) no-repeat center;
  background-size: cover;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-space {
    padding-block: 8rem 8rem;
    background-image: url(../images/bg_reason.jpg);
  }
}
.p-space .hline01 {
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .p-space .hline01__ttl {
    white-space: nowrap;
  }
}
.p-space__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}
@media (min-width: 768px) {
  .p-space__list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 1.8rem;
  }
}
.p-space__item {
  padding: 3rem;
  background-color: #FFF;
  border-radius: 1.2rem;
  box-shadow: 0.6rem 0.6rem 1.6rem rgba(8, 54, 38, 0.14);
}
@media (min-width: 768px) {
  .p-space__item {
    padding: 4rem;
  }
}
.p-space__ttl-1 {
  margin-bottom: 2.5rem;
  text-align: center;
  color: var(--color-primary);
  letter-spacing: -0.1rem;
  font-weight: 700;
  font-size: 4.8rem;
  line-height: 1;
}
@media (min-width: 768px) {
  .p-space__ttl-1 {
    font-size: 6.4rem;
  }
}
.p-space__ttl-1 .line {
  position: relative;
  top: -0.8rem;
  font-size: 5rem;
}
@media (min-width: 768px) {
  .p-space__ttl-1 .line {
    top: -0.8rem;
    font-size: 7rem;
  }
}
.p-space__num {
  font-size: 6.4rem;
  letter-spacing: -0.1rem;
}
@media (min-width: 768px) {
  .p-space__num {
    font-size: 8.8rem;
  }
}
.p-space__ttl-2 {
  margin-bottom: 1.5rem;
  font-size: 2.4rem;
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
}
.p-space .p-txt {
  text-align: center;
}
.p-space__note {
  display: none;
}
@media (min-width: 768px) {
  .p-space__note {
    display: block;
    margin-top: 4rem;
    color: #FFF;
  }
}

.p-price {
  padding-top: 6.5rem;
}
@media (min-width: 768px) {
  .p-price {
    padding-top: 12rem;
  }
}
.p-price .hline01 {
  margin-bottom: 4rem;
}
@media (min-width: 768px) {
  .p-price .hline01 {
    margin-bottom: 5rem;
  }
}
.p-price__table {
  border-collapse: collapse;
}
.p-price__table thead th {
  background-color: #F4F4F4;
}
.p-price__table thead th.w-1 {
  width: 28rem;
}
.p-price__table thead th.w-2 {
  width: 68rem;
}
.p-price__table th, .p-price__table td {
  padding: 2rem 0.6rem;
  font-size: 2.4rem;
  line-height: 1.2;
  text-align: center;
  border: 1px solid #334155;
}
.p-price__table th {
  background-color: #DFF2DB;
  font-weight: 700;
}
.p-price__table td .sub {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .p-price__table {
    display: none;
  }
}
.p-price__list {
  border: 1px solid #334155;
}
.p-price__list > li:not(:last-child) {
  border-bottom: 1px solid #334155;
}
.p-price__list .ttl-1 {
  padding: 1.2rem 1rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  background-color: #DFF2DB;
}
.p-price__list .ttl-2 {
  padding: 1.1rem 1rem;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  background-color: #F4F4F4;
}
.p-price__list .txt-1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 65px;
  padding: 1.2rem 1rem;
  font-size: 2rem;
  text-align: center;
  line-height: 1.2;
}
.p-price__list .txt-1 .sub {
  display: block;
  margin-top: 4px;
  font-size: 1.2rem;
}
.p-price__list .txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 6.7rem;
  padding: 1.5rem 1rem;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .p-price__list {
    display: none;
  }
}

.p-inspect {
  width: 100%;
  margin-top: 2.4rem;
  padding: 2.4rem 1.8rem;
  border: 1px solid var(--color-primary);
  border-radius: 0.6rem;
  background-color: #F0F8EF;
}
@media (min-width: 768px) {
  .p-inspect {
    max-width: 108rem;
    margin-inline: auto;
    margin-top: 4.4rem;
    padding: 2.8rem;
  }
}
.p-inspect__ttl {
  margin-bottom: 1.2rem;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
}
@media (min-width: 768px) {
  .p-inspect__ttl {
    font-size: 2.4rem;
  }
}
.p-inspect .p-txt {
  text-align: center;
}

.p-flow {
  padding-block: 8rem;
}
@media (min-width: 768px) {
  .p-flow {
    padding-block: 12rem 15.6rem;
  }
}
.p-flow .hline01 {
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .p-flow .hline01 {
    margin-bottom: 2rem;
  }
}
.p-flow__head {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .p-flow__head {
    margin-bottom: 6rem;
  }
}
.p-flow__head .p-description {
  text-align: center;
  color: var(--body-text-color);
}
.p-flow__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.1rem;
}
@media (min-width: 768px) {
  .p-flow__list {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    gap: 2.3rem;
  }
}
.p-flow__item {
  position: relative;
  padding-block: 2.4rem 4rem;
  padding-inline: 2rem;
  border-radius: 1.2rem;
  background: linear-gradient(to bottom, #F0F8EF, #DFF2DB);
  box-shadow: 0.6rem 0.6rem 1.6rem rgba(8, 54, 38, 0.14);
}
@media (min-width: 768px) {
  .p-flow__item {
    padding-block: 2.4rem 3rem;
    padding-inline: 2.5rem;
  }
}
.p-flow__item:last-child:after {
  display: none;
}
.p-flow__item::after {
  position: absolute;
  z-index: 1;
  width: 4.9rem;
  height: 4.9rem;
  background: url(../images/icon_arrow_01.svg) no-repeat center;
  background-size: 4.9rem;
  content: "";
}
@media (max-width: 767px) {
  .p-flow__item::after {
    bottom: -3.3rem;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (min-width: 768px) {
  .p-flow__item::after {
    right: -3.5rem;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(../images/icon_arrow_02.svg);
  }
}
.p-flow__image {
  width: 100%;
  aspect-ratio: 295/86;
  margin-bottom: 2rem;
  border-radius: 0.4rem;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-flow__image {
    aspect-ratio: 180/86;
  }
}
.p-flow__ttl {
  margin-bottom: 1.2rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 768px) {
  .p-flow__ttl {
    margin-bottom: 1.6rem;
    font-size: 2.4rem;
  }
}
.p-flow .p-txt {
  text-align: center;
}

.p-faq {
  background: linear-gradient(to bottom, #F0F8EF 0%, #DFF2DB 100%);
  padding-block: 6.4rem 8rem;
}
@media (min-width: 768px) {
  .p-faq {
    padding-block: 8rem 10rem;
  }
}
.p-faq .hline01 {
  margin-bottom: 2.4rem;
}
@media (min-width: 768px) {
  .p-faq .hline01 {
    margin-bottom: 4.8rem;
  }
}
.p-faq__list li {
  background-color: #fff;
  box-shadow: 0 0.4rem 2rem 0 rgba(45, 153, 184, 0.1);
  border-radius: 1.2rem;
  margin-bottom: 2.4rem;
  padding: 2.1rem 2rem;
}
@media (min-width: 768px) {
  .p-faq__list li {
    padding: 3.2rem 3.2rem;
  }
}
.p-faq__list li:last-child {
  margin-bottom: 0;
}
.p-faq__list li.is-active .icon-expand::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}
.p-faq .faq-head {
  cursor: pointer;
  padding-inline: 4rem 3.2rem;
  position: relative;
}
@media (min-width: 768px) {
  .p-faq .faq-head {
    padding-inline: 8.2rem 3.2rem;
  }
}
.p-faq .faq-head::before {
  content: "Q";
  font-family: "Montserrat", sans-serif;
  color: #0A6647;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1;
  position: absolute;
  left: 0;
  top: calc(50% - 0.3rem);
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .p-faq .faq-head::before {
    left: 1.3rem;
  }
}
.p-faq .faq-head::after {
  content: "";
  position: absolute;
  inset: -3rem;
}
.p-faq .faq-head .icon-expand {
  background-color: #0A6647;
  border-radius: 50%;
  height: 2.4rem;
  width: 2.4rem;
  position: absolute;
  right: 0;
  top: 0.6rem;
}
@media (min-width: 768px) {
  .p-faq .faq-head .icon-expand {
    top: 0;
  }
}
.p-faq .faq-head .icon-expand::before, .p-faq .faq-head .icon-expand::after {
  content: "";
  background-color: #fff;
  border-radius: 1px;
  height: 0.2rem;
  width: 1.2rem;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.p-faq .faq-head .icon-expand::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.p-faq .faq-body {
  display: none;
  background-color: #F0F8EF;
  border-radius: 0.6rem;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 1.7rem;
  padding: 2rem 2.1rem 1.8rem 4.9rem;
  position: relative;
}
@media (min-width: 768px) {
  .p-faq .faq-body {
    font-size: 1.6rem;
    margin-top: 3.3rem;
    padding: 2rem 2rem 2rem 8.2rem;
  }
}
.p-faq .faq-body::before {
  content: "A";
  font-family: "Montserrat", sans-serif;
  color: #F39B28;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.28;
  position: absolute;
  left: 1.2rem;
  top: 1.8rem;
}
@media (min-width: 768px) {
  .p-faq .faq-body::before {
    left: 1.8rem;
  }
}
.p-faq .faq-ttl {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.25;
}
@media (min-width: 768px) {
  .p-faq .faq-ttl {
    font-size: 2rem;
  }
}
@media (max-width: 767px) {
  .p-faq .faq-ttl {
    display: flex;
    align-items: center;
    min-height: 3.4rem;
  }
}

.p-contact {
  background: #228B68 url("../images/contact_bg_sp.jpg") no-repeat center top/cover;
  padding: 6.4rem 0 12.4rem;
}
@media (min-width: 768px) {
  .p-contact {
    background-image: url("../images/contact_bg.jpg");
    padding: 6.7rem 0 10.6rem;
  }
}
.p-contact .hline01 {
  color: #fff;
  margin: 0 -1rem 2.4rem;
}
@media (min-width: 768px) {
  .p-contact .hline01 {
    margin-bottom: 5.1rem;
  }
}
.p-contact .hline01__sub {
  color: #fff;
}
.p-contact__inner {
  position: relative;
  padding: 0 2rem;
}
@media (min-width: 768px) {
  .p-contact__inner {
    max-width: 111.7rem;
    margin: 0 auto;
  }
}
.p-contact__drone {
  position: absolute;
  z-index: 2;
  left: 0;
  bottom: -10rem;
  width: 14.2rem;
  aspect-ratio: 373/186;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-contact__drone {
    left: -6rem;
    bottom: 15rem;
    width: 37.3rem;
  }
}
.p-contact__txt {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  line-height: 2.1;
  margin-bottom: 2.4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-contact__txt {
    font-size: 1.8rem;
    line-height: 1.55;
    margin-bottom: 9.8rem;
  }
}
.p-contact__wrap {
  display: grid;
  gap: 3.8rem;
  position: relative;
}
@media (min-width: 768px) {
  .p-contact__wrap {
    gap: 3.7rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-contact .contact-box {
  background-color: #fff;
  border-radius: 0.8rem;
  margin-bottom: 2rem;
  padding: 2rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-contact .contact-box {
    margin-bottom: 2.4rem;
    padding: 4rem 2rem 3rem;
  }
}
.p-contact .contact-box__ttl {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 1.7rem;
}
@media (min-width: 768px) {
  .p-contact .contact-box__ttl {
    font-size: 2.4rem;
    margin-bottom: 2.3rem;
  }
}
.p-contact .contact-box__tel {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.28;
  margin-bottom: 1.6rem;
}
@media (min-width: 768px) {
  .p-contact .contact-box__tel {
    gap: 1.4rem;
    font-size: 3.5rem;
    margin-bottom: 2.3rem;
  }
}
.p-contact .contact-box__tel::before {
  content: "";
  background: url("../images/icon_tel.svg") no-repeat center/contain;
  height: 2.6rem;
  width: 2.6rem;
}
@media (min-width: 768px) {
  .p-contact .contact-box__tel::before {
    height: 3.8rem;
    width: 3.8rem;
  }
}
.p-contact .contact-box__txt {
  color: #6B7480;
  font-size: 1.4rem;
}
.p-contact .contact-guide {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 2rem;
}
@media (min-width: 768px) {
  .p-contact .contact-guide {
    padding: 2.3rem 2.4rem 3.2rem;
  }
}
.p-contact .contact-guide__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 1.6rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-contact .contact-guide__ttl {
    font-size: 2rem;
    margin-bottom: 1.9rem;
  }
}
.p-contact .contact-guide ul li {
  font-size: 1.4rem;
  line-height: 1.57;
  margin-bottom: 0.4rem;
  padding-left: 1.6rem;
  position: relative;
}
.p-contact .contact-guide ul li:last-child {
  margin-bottom: 0;
}
.p-contact .contact-guide ul li::before {
  content: "";
  background-color: currentColor;
  border-radius: 50%;
  height: 0.4rem;
  width: 0.4rem;
  position: absolute;
  top: 0.8rem;
  left: 0.4rem;
}
.p-contact .contact-form {
  background-color: #fff;
  border-radius: 0.8rem;
  padding: 3.2rem 2rem;
}
@media (min-width: 768px) {
  .p-contact .contact-form {
    padding: 4rem 2.4rem 5.7rem;
  }
}
.p-contact .contact-form__ttl {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.25;
  margin-bottom: 2.4rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-contact .contact-form__ttl {
    font-size: 2.4rem;
    margin-bottom: 4rem;
  }
}
.p-contact .contact-form__footer {
  margin-top: 2.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .p-contact .contact-form__footer {
    margin-top: 3.3rem;
  }
}
.p-contact .contact-form__note {
  font-size: 1.2rem;
  margin-top: 1.6rem;
}
.p-contact .contact-form__btn {
  background: linear-gradient(to bottom, #FFC749 0%, #FFAD00 100%);
  box-shadow: 0 2.5rem 5rem -1.2rem rgba(0, 0, 0, 0.25);
  border-radius: 10rem;
  border: 0;
  color: #0A6647;
  cursor: pointer;
  font-size: 1.5rem;
  font-weight: bold;
  height: 6.4rem;
  width: 30rem;
  max-width: 100%;
}
.p-contact .contact-form dl dt {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 1.6rem;
}
.p-contact .contact-form dl dd {
  margin: 0 0 3.2rem;
}
.p-contact .contact-form dl dd:last-child {
  margin-bottom: 0;
}
.p-contact .contact-form .form-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 1.3rem 2rem;
}
.p-contact .contact-form .form-checklist li {
  display: flex;
}
.p-contact #form-result {
  display: none;
  font-size: 1.6rem;
  margin-top: 2rem;
  text-align: center;
}
.p-contact #form-result.error {
  color: #BA1A1A;
}
.p-contact #form-result.success {
  color: #0A6647;
}