@charset "UTF-8";
html {
  font-size: 16px;
}

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

html,
body {
  overflow-x: hidden;
}

@supports (overflow: clip) {
  html,
  body {
    overflow-x: clip;
  }
}
body {
  margin: 0;
  padding: 0;
  background: #f4f6f3;
  line-height: 1.428;
  color: #333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  font-weight: 400;
  font-size: 1rem;
}

a {
  color: #000;
  text-decoration: none;
  transition: 0.2s;
}

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

@media screen and (max-width: 999px) {
  .is-pc {
    display: none !important;
  }
}
@media screen and (min-width: 1000px) {
  .is-sp {
    display: none !important;
  }
}
.sticky {
  position: sticky;
}

.spacer {
  flex-grow: 1 !important;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}
table:not([class]) {
  margin: 1em 0;
}
table td > *:first-child {
  margin-top: 0;
}
table td > *:last-child {
  margin-bottom: 0;
}

.js-fade-up {
  opacity: 0;
  transform: translateY(100px);
  transition: 1s ease;
}
.js-fade-up.is-animated {
  opacity: 1;
  transform: translateY(0);
}

.youtube,
.gmap {
  width: 100%;
  aspect-ratio: 16/9;
}

.youtube iframe,
.gmap iframe {
  width: 100%;
  height: 100%;
}

.scroll-prevent {
  overflow: hidden;
}

input {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: inline-block;
  vertical-align: middle;
}
input[type=text], input[type=number], input[type=password], input[type=tel], input[type=email] {
  width: 100%;
  max-width: 100%;
  padding: 10px 20px;
  border: 1px solid #bfbfbf;
  border-radius: 3px;
  background: #fff;
  line-height: 1.428;
  color: inherit;
  font-size: inherit;
}
input[type=text].min, input[type=number].min, input[type=password].min, input[type=tel].min, input[type=email].min {
  width: 2em;
}
input[type=text].very-short, input[type=text].code-min, input[type=number].very-short, input[type=number].code-min, input[type=password].very-short, input[type=password].code-min, input[type=tel].very-short, input[type=tel].code-min, input[type=email].very-short, input[type=email].code-min {
  width: 4em;
}
input[type=text].code, input[type=text].month, input[type=number].code, input[type=number].month, input[type=password].code, input[type=password].month, input[type=tel].code, input[type=tel].month, input[type=email].code, input[type=email].month {
  width: 6em;
}
input[type=text].date, input[type=number].date, input[type=password].date, input[type=tel].date, input[type=email].date {
  width: 100px;
}
input[type=text].short, input[type=number].short, input[type=password].short, input[type=tel].short, input[type=email].short {
  width: 160px;
}
input[type=text].full, input[type=number].full, input[type=password].full, input[type=tel].full, input[type=email].full {
  width: 100%;
}
input[type=radio], input[type=checkbox] {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  overflow: hidden;
  padding: 0;
  clip: rect(0, 0, 0, 0);
}
input[type=radio] + span, input[type=checkbox] + span {
  padding-left: 26px;
  position: relative;
}
input[type=radio] + span:empty, input[type=checkbox] + span:empty {
  padding-left: 20px;
}
input[type=radio] + span::before, input[type=checkbox] + span::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 4px solid #ccc;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
input[type=radio] + span {
  color: #999;
}
input[type=radio] + span::before {
  border: 1px solid #000;
  border-radius: 50%;
}
input[type=radio]:checked + span {
  color: #000;
}
input[type=radio]:checked + span::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
}
input[type=checkbox]:checked + span::before {
  border-color: #000;
  background: #000;
}
input[type=checkbox]:checked + span::after {
  content: "";
  display: block;
  width: 16px;
  height: 12px;
  background: url("../img/check.svg") no-repeat center/contain;
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.select-styled {
  display: inline-block;
  position: relative;
}
.select-styled::before {
  content: "\e313";
  font-family: "Material Symbols Outlined";
  font-size: 1.125rem;
  line-height: 1;
  color: #000;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

select {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-overflow: "";
  background: none #fff;
  vertical-align: middle;
  line-height: 1.428;
  font-size: inherit;
  color: inherit;
  padding: 4px 30px 4px 10px;
  border: 1px solid #ccc !important;
  border-radius: 3px;
}

textarea {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #bfbfbf;
  border-radius: 3px;
  padding: 10px 20px;
  vertical-align: bottom;
  width: 100%;
  height: 100%;
  min-height: calc(7.14em + 22px);
  background-color: #fff;
  font-family: inherit;
  font-size: 100%;
  line-height: 1.428;
}

.l-header {
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  transition: 0.5s ease;
  background: #fff;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.l-header__content {
  width: 100%;
  height: 102px;
  margin: 0 auto;
  padding: 0 0 0 8.333svw;
  display: flex;
  position: relative;
  transition: 0.2s;
}
.l-header__title {
  flex-grow: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.l-header__logo {
  margin: 0;
  padding: 0;
  width: 15.972svw;
  transition: 0.2s;
  line-height: 1;
}
@media screen and (max-width: 999px) {
  .l-header__logo {
    width: 94px;
  }
}
.l-header__tagline {
  font-weight: 500;
  font-size: 0.875rem;
}
.l-header__nav {
  flex-shrink: 0;
  display: flex;
}
.l-header__nav > a {
  width: 22.638svw;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: bold;
  font-size: min(1.285svw, 18px);
  position: relative;
  z-index: 1;
}
.l-header__nav > a::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.16;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.l-header__nav > a .contact {
  font-size: min(1.666svw, 24px);
  line-height: 1;
}
.l-header__nav > a.tel {
  background: #c45e1a;
}
.l-header__nav > a.tel::before {
  height: 94px;
  background-image: url("../img/header_icon_tel.webp");
}
.l-header__nav > a.tel .free {
  width: min(8.125svw, 117px);
  margin-bottom: 5px;
  border-radius: 100px;
  background: #fff;
  color: #c45e1a;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-header__nav > a.line {
  background: #49ab1a;
}
.l-header__nav > a.line::before {
  height: 92px;
  background-image: url("../img/header_icon_line.webp");
}
.l-header__nav > a.form {
  background: #425787;
}
.l-header__nav > a.form::before {
  height: 100px;
  background-image: url("../img/header_icon_form.webp");
}

.l-main__sectionHeading {
  margin: 0;
  padding: 30px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 2.25rem;
  line-height: 1.222;
  position: relative;
  z-index: 1;
}
.l-main__sectionHeading::before {
  content: "";
  display: block;
  width: 100svw;
  height: 100%;
  background: linear-gradient(90deg, #2e6b48 0%, #4a9466 100%);
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  z-index: -1;
}
.l-main__sectionHeading strong {
  font-weight: bold;
  font-size: 2.625rem;
}

.l-footer {
  width: 100%;
  margin: 0;
  padding: 20px;
  background: #0e2118;
  color: #fff;
}
.l-footer__copyright {
  text-align: center;
  font-size: 0.875rem;
}

.c-btn {
  font-size: 1.125rem;
  font-weight: 900;
  width: -moz-fit-content;
  width: fit-content;
  padding: 28;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 1px solid #f0b400;
  border-radius: 10px;
  background: linear-gradient(to bottom, #ffcf10 0%, #ffeb4a 25%, #ffd816 60%, #ffb800 100%);
  box-shadow: inset 0 0 10px rgba(255, 255, 255, 0.8), 0 0 8px rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 999px) {
  .c-btn {
    font-size: 0.875rem;
  }
}
.c-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.35) 0%, rgba(255, 255, 255, 0.15) 40%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}
.c-btn > span {
  color: #02386e;
}
.c-btn > span:nth-of-type(2) {
  font-size: 1rem;
}
@media screen and (max-width: 999px) {
  .c-btn > span:nth-of-type(2) {
    font-size: 0.625rem;
  }
}
.c-btn.blue {
  border: 0;
  background: linear-gradient(to bottom, #03b4f6 0%, #0196f2 55%, #0068ea 100%);
  box-shadow: none;
}
.c-btn.blue::before {
  content: none;
}
.c-btn.blue > span {
  color: #fff;
}
.c-btn.simple {
  border: 0;
  background: #fff;
  box-shadow: none;
}
.c-btn.simple::before {
  content: none;
}
.c-btn.simple > span {
  color: #02386e;
}
.c-btn.arrow::after {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1/1;
  background: url("../img/arrow_btn.webp") no-repeat center/contain;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 999px) {
  .c-btn.arrow::after {
    width: 14px;
    right: 13px;
  }
}
.c-btn.arrow.blue::after {
  background-image: url("../img/arrow_btn_white.webp");
}
.c-btn.download::after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  background: url("../img/arrow_btn_download.webp") no-repeat center/contain;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 999px) {
  .c-btn.download::after {
    width: 14px;
    right: 13px;
  }
}

.c-form dl {
  margin: 0;
  padding: 0;
}
.c-form dl dt {
  margin: 10px 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-weight: 600;
}
.c-form dl dt.required::after {
  content: "必須";
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 4px;
  border-radius: 3px;
  background: #bc0303;
  color: #fff;
  font-weight: 500;
  font-size: 0.75rem;
}
.c-form dl dt p {
  line-height: 1.5;
}
.c-form dl dt p:first-child {
  margin-top: 0;
}
.c-form dl dt p:last-child {
  margin-bottom: 0;
}
.c-form dl dd {
  margin: 0;
  padding: 0;
}
.c-form dl dd p {
  line-height: 2;
}
.c-form dl dd p:first-child {
  margin-top: 0;
}
.c-form dl dd p:last-child {
  margin-bottom: 0;
}
.c-form hr {
  margin: 30px 0;
  border: 0;
  border-top: 2px solid #bfbfbf;
  background: transparent;
}
.c-form h3.wp-block-heading {
  margin: 30px 0 10px;
  font-size: 1.25rem;
}
.c-form ul li > *:first-child {
  margin-top: 0;
}
.c-form ul li > *:last-child {
  margin-bottom: 0;
}
.c-form__acceptance {
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.c-form__acceptance::after {
  content: "必須";
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 4px;
  border-radius: 3px;
  background: #bc0303;
  color: #fff;
  font-weight: 500;
  font-size: 0.75rem;
}
.c-form__submit {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}
.c-form__submit p {
  margin: 0;
}
.c-form__submit .wpcf7-spinner {
  display: block;
  margin: 10px auto 0;
}
.c-form__submit input[type=submit] {
  min-width: 330px;
  width: -moz-fit-content;
  width: fit-content;
  overflow: hidden;
  padding: 16px 40px;
  border: 0;
  border-radius: 100px;
  background: #02386e;
  color: #fff;
  font-weight: 500;
  font-size: 1.125rem;
  text-transform: uppercase;
  text-decoration: none !important;
  transition: ease 0.2s;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 999px) {
  .c-form__submit input[type=submit] {
    min-width: auto;
    width: 80vw;
    font-size: min(4vw, 18px);
  }
}
.c-form__submit input[type=submit]:not([disabled]):hover {
  transform: scale(1.1);
}
.c-form .wpcf7-acceptance .wpcf7-list-item {
  margin-left: 0;
}
.c-form .wpcf7-not-valid-tip {
  color: #bc0303;
}

.p-homeFv__content {
  aspect-ratio: 1440/535;
  padding: 0 8.333svw;
  background: url("../img/fv_bg.webp") no-repeat center/cover;
  font-weight: bold;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: min(1.388svw, 20px);
  position: relative;
  z-index: 1;
}
.p-homeFv__content::before {
  content: "";
  display: block;
  aspect-ratio: 532/511;
  width: 36.944svw;
  background: url("../img/fv_portrait.webp") no-repeat center/contain;
  position: absolute;
  right: 6.944svw;
  bottom: 0;
  z-index: -1;
}
.p-homeFv__title {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: min(1.388svw, 20px);
  line-height: 1;
}
.p-homeFv__title .line1 {
  font-size: min(4.097svw, 59px);
  text-shadow: -4px -4px 0 #fff, 0 -4px 0 #fff, 4px -4px 0 #fff, -4px 0 0 #fff, 4px 0 0 #fff, -4px 4px 0 #fff, 0 4px 0 #fff, 4px 4px 0 #fff;
}
.p-homeFv__title .line2 {
  display: flex;
  gap: 12px;
  font-size: min(3.958svw, 57px);
}
.p-homeFv__title .line2 strong {
  padding: 10px;
  background: #c45e1a;
  color: #fff;
  font-weight: bold;
}
.p-homeFv__title .line3 {
  font-size: min(3.75svw, 54px);
  text-shadow: -4px -4px 0 #fff, 0 -4px 0 #fff, 4px -4px 0 #fff, -4px 0 0 #fff, 4px 0 0 #fff, -4px 4px 0 #fff, 0 4px 0 #fff, 4px 4px 0 #fff;
}
.p-homeFv__title .line3 strong {
  color: #c45e1a;
  font-weight: bold;
  font-size: min(4.722svw, 68px);
}
.p-homeFv__copy {
  font-weight: bold;
  font-size: min(1.805svw, 26px);
  text-shadow: -1px -1px 0 #fff, 0 -1px 0 #fff, 1px -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff, -1px 1px 0 #fff, 0 1px 0 #fff, 1px 1px 0 #fff;
}
.p-homeFv__copy strong {
  color: #c45e1a;
  font-weight: bold;
  font-size: min(2.222svw, 32px);
}
.p-homeFv__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: min(0.694svw, 10px);
}
.p-homeFv__list li {
  width: -moz-fit-content;
  width: fit-content;
  padding: min(0.694svw, 10px);
  background: #fff;
  color: #c45e1a;
  font-weight: bold;
  font-size: min(1.18svw, 17px);
  display: flex;
  gap: 5px;
  align-items: center;
}
.p-homeFv__list li::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: min(1.319svw, 19px);
  background: url("../img/fv_checkmark.svg") no-repeat center/contain;
}
.p-homeFv__pointList {
  margin: 0;
  padding: 40px 0;
  list-style: none;
  display: flex;
  gap: min(3.194svw, 46px);
  justify-content: center;
  align-items: center;
  background: #584826;
  text-align: center;
  color: #fff;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-weight: 900;
  font-size: min(2.5svw, 36px);
  line-height: 1.2;
}
.p-homeFv__pointList li {
  width: min(21.111svw, 304px);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-homeFv__pointList li::before, .p-homeFv__pointList li::after {
  content: "";
  display: block;
  aspect-ratio: 27.13/84.42;
  width: min(1.875svw, 27px);
  background: url("../img/fv_laurel.svg") no-repeat center/contain;
  flex-shrink: 0;
}
.p-homeFv__pointList li::after {
  transform: scaleX(-1);
}

.p-homeMedia {
  padding: 55px 0 26px;
  max-width: 1100px;
  margin: 0 auto;
}
.p-homeMedia h2 {
  margin: 0;
  padding: 20px;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  background: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.6875rem;
  position: relative;
}
.p-homeMedia h2::before {
  content: "";
  display: block;
  width: 100%;
  border-top: 1px solid #000;
  position: absolute;
  left: 0;
  top: 2px;
}
.p-homeMedia h2::after {
  content: "";
  display: block;
  width: 100%;
  border-top: 1px solid #000;
  position: absolute;
  left: 0;
  bottom: 2px;
}
.p-homeMedia h2 strong {
  font-weight: bold;
  font-size: 2.3125rem;
}
.p-homeMedia__content {
  max-width: 1000px;
  margin: 26px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-homeMedia__thumb {
  width: 450px;
}
.p-homeMedia__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
}
.p-homeMedia__title::before {
  content: "メディア実績";
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 2px 14px;
  border-radius: 4px;
  background: #e07a35;
  color: #fff;
  font-weight: 500;
  font-size: 1.25rem;
}

.p-homeExample {
  padding: 0 0 80px;
}
.p-homeExample > p {
  margin: 55px 0 36px;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
}
.p-homeExample > p strong {
  font-weight: bold;
  font-size: 1.75rem;
  color: #e07a35;
}
.p-homeExample__list {
  max-width: 940px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 40px;
}
.p-homeExample__item {
  width: calc((100% - 120px) / 4);
  display: flex;
  flex-direction: column;
  border: 1px solid #b3b3b3;
  background: #fff;
}
.p-homeExample__itemHeading {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0;
  height: 50px;
  border-bottom: 1px solid #b3b3b3;
  background: #2e6b48;
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem;
}
.p-homeExample__itemBody {
  flex-grow: 1;
  margin: 0;
  padding: 10px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
li:nth-child(1) > .p-homeExample__itemBody li:nth-child(1) {
  width: 122px;
}
li:nth-child(1) > .p-homeExample__itemBody li:nth-child(2) {
  width: 103px;
}
li:nth-child(1) > .p-homeExample__itemBody li:nth-child(3) {
  width: 102px;
}
li:nth-child(1) > .p-homeExample__itemBody li:nth-child(4) {
  width: 112px;
}
li:nth-child(2) > .p-homeExample__itemBody li:nth-child(1) {
  width: 105px;
}
li:nth-child(2) > .p-homeExample__itemBody li:nth-child(2) {
  width: 126px;
}
li:nth-child(3) > .p-homeExample__itemBody li:nth-child(1) {
  width: 88px;
}
li:nth-child(3) > .p-homeExample__itemBody li:nth-child(2) {
  width: 113px;
}
li:nth-child(4) > .p-homeExample__itemBody li:nth-child(1) {
  width: 140px;
}
li:nth-child(4) > .p-homeExample__itemBody li:nth-child(2) {
  width: 144px;
}
li:nth-child(4) > .p-homeExample__itemBody li:nth-child(3) {
  width: 134px;
}
.p-homeExample__detail {
  max-width: 680px;
  margin: 80px auto 0;
}
.p-homeExample__detail h3 {
  margin: 0;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
}
.p-homeExample__detail table {
  width: 100%;
  margin: 40px 0;
}
.p-homeExample__detail table th,
.p-homeExample__detail table td {
  padding: 12px 0;
  border-bottom: 1px solid #d9d9d9;
}
.p-homeExample__detail table th {
  text-align: left;
  font-weight: bold;
  font-size: 1.25rem;
  width: 100%;
}
.p-homeExample__detail table td {
  font-size: 1.125rem;
  white-space: nowrap;
}
.p-homeExample__detail table + p {
  font-size: 0.875rem;
}

.p-homeTrouble {
  padding: 0 0 80px;
}
.p-homeTrouble__list {
  margin: 80px auto;
  padding: 0;
  list-style: none;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.p-homeTrouble__item {
  display: flex;
  gap: 20px;
  align-items: center;
  font-weight: 500;
  font-size: 1.25rem;
}
.p-homeTrouble__item::before {
  content: "";
  display: block;
  width: 19px;
  aspect-ratio: 1/1;
  background: url("../img/trouble_checkmark.svg") no-repeat center/contain;
  flex-shrink: 0;
}
.p-homeTrouble__alert {
  max-width: 994px;
  height: 293px;
  margin: 0 auto;
  background: #c45e1a url("../img/trouble_alert_bg.webp") no-repeat right bottom/297px 293px;
  color: #fff;
  display: flex;
  gap: 40px;
  align-items: center;
}
.p-homeTrouble__alert h3 {
  margin: 0;
  padding: 0 40px 0 70px;
  border-right: 1px solid #fff;
  font-weight: bold;
  font-size: 1.875rem;
}
.p-homeTrouble__alert h3 strong {
  font-weight: bold;
  font-size: 2.5rem;
}
.p-homeTrouble__alert p {
  font-weight: 500;
}

.p-homeWhy {
  padding: 0 0 80px;
}
.p-homeWhy h3:nth-of-type(1) {
  margin: 80px 0 20px;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
}
.p-homeWhy h3:nth-of-type(1) + p {
  text-align: center;
}
.p-homeWhy__list {
  max-width: 1120px;
  margin: 60px auto;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 40px;
  position: relative;
  z-index: 1;
}
.p-homeWhy__list::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #333;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}
.p-homeWhy__list + p {
  text-align: center;
}
.p-homeWhy__item {
  width: calc((100% - 120px) / 4);
  height: 266px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 4px 4px 0 rgba(139, 139, 139, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.p-homeWhy__itemTitle {
  margin: 0;
  padding: 8px 20px;
  border-radius: 100px;
  background: #4a9466;
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
}
.p-homeWhy__itemIcon {
  width: 85px;
  aspect-ratio: 1/1;
  margin: 24px 0 32px;
}
.p-homeWhy__itemText {
  font-weight: 500;
  font-size: 1.125rem;
}
.p-homeWhy h3:nth-of-type(2) {
  margin: 20px 0 0;
  text-align: center;
  font-weight: bold;
  font-size: 1.5rem;
}
.p-homeWhy__sample {
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto;
  display: flex;
  gap: 37px;
  align-items: center;
}
.p-homeWhy__sample img:nth-child(1) {
  width: 467px;
}
.p-homeWhy__sample img:nth-child(2) {
  width: 315px;
}
.p-homeWhy__sample + p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 0.875rem;
}

.p-homePoint {
  padding: 0 0 80px;
}
.p-homePoint__list {
  counter-reset: num;
  max-width: 1008px;
  margin: 130px auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 120px;
}
.p-homePoint__item {
  counter-increment: num;
  display: flex;
  align-items: center;
  height: 340px;
  background: #fff;
  position: relative;
  z-index: 1;
}
.p-homePoint__itemBody {
  padding: 0 50px 0 30px;
}
.p-homePoint__itemBody > span {
  position: absolute;
  left: 30px;
  top: 0;
  transform: translateY(-50%);
  color: #555;
  font-weight: bold;
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  gap: 10px;
  align-items: center;
}
.p-homePoint__itemBody > span::before {
  content: "";
  display: block;
  width: 39.32px;
  height: 60.21px;
  background: url("../img/point_slash.svg") no-repeat center/contain;
}
.p-homePoint__itemBody > span::after {
  content: counter(num, decimal-leading-zero);
  font-size: 4.0625rem;
  color: transparent;
  -webkit-text-stroke: 1px #c45e1a;
}
.p-homePoint__itemBody > h3 {
  margin: 0 0 20px;
  font-weight: bold;
  font-size: 1.25rem;
}
.p-homePoint__itemBody > p {
  margin: 0;
}
.p-homePoint__itemImg {
  align-self: flex-start;
  flex-shrink: 0;
  flex-grow: 0;
  width: 555px;
  aspect-ratio: 555/326;
}
.p-homePoint__itemImg::before {
  content: "";
  display: block;
  width: 324px;
  aspect-ratio: 378/298;
  background: url("../img/point_bg.svg") no-repeat right bottom/contain;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.p-homePoint__itemImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 60px 0 60px 0;
  transform: translateY(-58px);
}

.p-homeCase {
  padding: 0 0 80px;
}
.p-homeCase__list {
  counter-reset: num;
  max-width: 1200px;
  margin: 80px auto;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 50px;
}
.p-homeCase__list + h3 {
  margin: 0 0 50px;
  text-align: center;
  font-weight: 600;
  font-size: 1.5rem;
}
.p-homeCase__list + h3 strong {
  font-weight: 600;
  font-size: 1.875rem;
}
.p-homeCase__item {
  counter-increment: num;
  width: calc((100% - 100px) / 3);
  display: flex;
  flex-direction: column;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.3));
}
.p-homeCase__item::before {
  content: "CASE " counter(num);
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 18px;
  border-radius: 10px 10px 0 0;
  background: #2e6b48;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
}
.p-homeCase__itemHeading {
  flex-grow: 1;
  padding: 20px;
  background: #fff;
}
.p-homeCase__itemHeading > h3 {
  margin: 10px 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #9db99f;
  text-align: center;
  color: #2e6b48;
  font-weight: bold;
  font-size: 1.1875rem;
}
.p-homeCase__itemHeading > p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}
.p-homeCase__itemBody {
  flex-shrink: 0;
  padding: 20px;
  background: #2e6b48;
  color: #fff;
  font-size: 0.875rem;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-homeCase__itemBody > p {
  margin: 0;
}
.p-homeCase__itemPerson {
  display: flex;
  align-items: flex-end;
  gap: 5px;
}
.p-homeCase__itemPerson img {
  width: 79px;
}
.p-homeCase__targetList {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 30px;
}
.p-homeCase__targetItem {
  width: calc((100% - 60px) / 3);
  padding: 20px;
  border: 1px solid #2e6b48;
  border-radius: 12px;
  background: #fff;
}
.p-homeCase__targetItem h4 {
  margin: 0 0 20px;
  padding: 10px;
  border-radius: 100px;
  background: #2e6b48;
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-size: 1.125rem;
}
.p-homeCase__targetItem ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  line-height: 1.8;
}

.p-homeAbout {
  padding: 0 0 80px;
}
.p-homeAbout > h3:nth-of-type(1) {
  margin: 80px 0 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #2e6b48;
  font-weight: 500;
  font-size: 1.5rem;
}
.p-homeAbout > h3:nth-of-type(1)::before, .p-homeAbout > h3:nth-of-type(1)::after {
  content: "";
  display: block;
  width: 56px;
  height: 1px;
  background: #2e6b48;
}
.p-homeAbout__lawyer {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}
.p-homeAbout__lawyer + h3 {
  margin: 0;
  padding: 20px;
  background: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 1.625rem;
}
.p-homeAbout__lawyerHeading {
  width: 210px;
  height: 205px;
  padding: 0 0 0 25px;
  border-radius: 50px 0 50px 0;
  background: #4a9466;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  transform: translateX(20px);
  position: relative;
  z-index: 2;
}
.p-homeAbout__lawyerHeading > h4 {
  margin: 5px 0 0;
  font-weight: 500;
  font-size: 2.25rem;
  line-height: 1;
}
.p-homeAbout__lawyerHeading > h4 ruby {
  ruby-align: center;
}
.p-homeAbout__lawyerHeading > h4 rt {
  font-weight: 400;
  font-size: 0.875rem;
  position: relative;
  top: -5px;
}
.p-homeAbout__lawyerPhoto {
  width: 314px;
  position: relative;
  z-index: 1;
}
.p-homeAbout__lawyerPhoto::before {
  content: "";
  display: block;
  width: 366px;
  height: 333px;
  background: #c5ddce;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}
.p-homeAbout__content {
  width: -moz-fit-content;
  width: fit-content;
  margin: 70px auto;
  display: flex;
  gap: 70px;
}
.p-homeAbout__content h4 {
  margin: 0 0 20px;
  color: #2e6b48;
  font-weight: bold;
  font-size: 1.5rem;
}
.p-homeAbout__profile {
  width: 380px;
}
.p-homeAbout__profile p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.8;
}
.p-homeAbout__message {
  width: 440px;
}
.p-homeAbout__message p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
}
.p-homeAbout__message p:first-of-type {
  margin-bottom: 1em;
  font-weight: bold;
  font-size: 1rem;
}
.p-homeAbout__value > h4 {
  margin: 0 0 40px;
  text-align: center;
  color: #2e6b48;
  font-weight: bold;
  font-size: 1.5rem;
}
.p-homeAbout__valueList {
  counter-reset: num;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 50px;
  align-items: center;
}
.p-homeAbout__valueItem {
  counter-increment: num;
  width: 360px;
  padding: 12px 20px 12px 50px;
  border: 1px solid #333;
  border-radius: 12px;
  background: #fff;
  position: relative;
  z-index: 1;
}
.p-homeAbout__valueItem > h5 {
  margin: 0 0 5px;
  color: #e07a35;
  font-weight: bold;
  font-size: 1.25rem;
}
.p-homeAbout__valueItem > p {
  margin: 0;
  color: #333;
  font-size: 0.875rem;
}
.p-homeAbout__valueItem::before {
  content: counter(num, decimal-leading-zero);
  display: block;
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #e07a35;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 1.25rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}

.p-homePrice {
  padding: 0 0 80px;
}
.p-homePrice > h3:nth-of-type(1) {
  margin: 80px 0 0;
  text-align: center;
  font-weight: 600;
  font-size: 1.25rem;
}
.p-homePrice > h3:nth-of-type(1) strong {
  color: #e07a35;
  font-weight: 600;
  font-size: 1.625rem;
}
.p-homePrice > h3:nth-of-type(1) strong.num {
  font-size: 2.125rem;
}
.p-homePrice > h3:nth-of-type(1) strong span {
  color: #333;
}
.p-homePrice__circles {
  width: -moz-fit-content;
  width: fit-content;
  margin: 45px auto 0;
  display: flex;
  gap: 10px;
}
.p-homePrice__circles + h3 {
  margin: 80px 0 35px;
  text-align: center;
  font-weight: 600;
  font-size: 1.5rem;
}
.p-homePrice__circle {
  width: 231px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  box-shadow: 0 3px 5px 0 rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  text-align: center;
  line-height: 1;
}
.p-homePrice__circle:nth-child(1) {
  background: #2e6b48;
  color: #fff;
}
.p-homePrice__circle:nth-child(1) > *:nth-child(1) {
  font-weight: 600;
  font-size: 1.3125rem;
}
.p-homePrice__circle:nth-child(1) > *:nth-child(2) {
  font-weight: 600;
  font-size: 2.75rem;
}
.p-homePrice__circle:nth-child(2) {
  background: #fff;
  color: #2e6b48;
}
.p-homePrice__circle:nth-child(2) > *:nth-child(1) {
  font-weight: 600;
  font-size: 1.3125rem;
}
.p-homePrice__circle:nth-child(2) > *:nth-child(2) {
  font-weight: 600;
  font-size: 1.8125rem;
}
.p-homePrice__circle:nth-child(2) > *:nth-child(2) strong {
  font-weight: 600;
  font-size: 3.75rem;
}
.p-homePrice__circle:nth-child(2) > *:nth-child(3) {
  line-height: 1.4;
}
.p-homePrice__table {
  width: 840px;
  margin: 0 auto;
}
.p-homePrice__table th,
.p-homePrice__table td {
  border: 1px solid #b3b3b3;
  text-align: center;
}
.p-homePrice__table th {
  padding: 10px;
  background: #2e6b48;
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem;
}
.p-homePrice__table td {
  padding: 20px 10px;
  background: #fff;
  font-weight: 500;
  font-size: 1.125rem;
}
.p-homePrice__table td.num {
  text-align: right;
}
.p-homePrice__table thead th {
  padding: 20px 10px;
}

.p-homeStep {
  padding: 0 0 80px;
}
.p-homeStep__list {
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.p-homeStep__item {
  display: flex;
  gap: 30px;
  align-items: center;
}
.p-homeStep__itemIcon {
  width: 66px;
  aspect-ratio: 1/1;
  position: relative;
}
li:not(:last-child) .p-homeStep__itemIcon::before {
  content: "";
  display: block;
  width: 1px;
  height: 32px;
  background: #2e6b48;
  position: absolute;
  left: 33px;
  bottom: -10px;
  transform: translateY(100%);
}
.p-homeStep__itemBody h3 {
  margin: 0;
  color: #2e6b48;
  font-weight: 600;
  font-size: 1.5rem;
}
.p-homeStep__itemBody p {
  margin: 0;
  font-size: 1.125rem;
}

.p-homeFaq {
  padding: 0 0 80px;
}
.p-homeFaq__content {
  max-width: 680px;
  margin: 80px auto 0;
  counter-reset: num;
}
.p-homeFaq__content details {
  counter-increment: num;
  border-bottom: 1px solid #cbcbcb;
}
.p-homeFaq__content details.is-opened summary {
  background: #a8d4b8;
}
.p-homeFaq__content details.is-opened summary::after {
  transform: rotate(180deg);
}
.p-homeFaq__content summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  padding: 20px;
  font-weight: bold;
  font-size: 1.125rem;
  cursor: pointer;
}
.p-homeFaq__content summary::-webkit-details-marker {
  display: none;
}
.p-homeFaq__content summary::after {
  content: "";
  display: block;
  width: 16.77px;
  height: 9.03px;
  background: url("../img/accordion_switch.svg") no-repeat center/contain;
  flex-shrink: 0;
  transition: transform 0.2s;
}
.p-homeFaq__content summary > span {
  display: flex;
}
.p-homeFaq__content summary > span::before {
  content: "Q" counter(num);
  width: 3em;
  flex-shrink: 0;
  flex-grow: 0;
}
.p-homeFaq__content summary + div {
  overflow: hidden;
}
.p-homeFaq__content summary + div div {
  margin: 20px;
  display: flex;
}
.p-homeFaq__content summary + div div::before {
  content: "A";
  width: 3em;
  flex-shrink: 0;
  flex-grow: 0;
  font-weight: bold;
}

.p-homeOffice {
  padding: 0 0 80px;
}
.p-homeOffice__table {
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto 0;
}
.p-homeOffice__table tr:not(:last-child) th,
.p-homeOffice__table tr:not(:last-child) td {
  border-bottom: 1px solid #9ca3af;
}
.p-homeOffice__table th,
.p-homeOffice__table td {
  padding: 20px 0;
  text-align: left;
  font-size: 1.125rem;
}
.p-homeOffice__table th {
  padding-right: 4em;
  font-weight: 500;
}

.p-homeFoot {
  width: 100%;
  aspect-ratio: 1440/385;
  background: url("../img/foot_bg.webp") no-repeat center/cover;
  position: relative;
  z-index: 1;
}
.p-homeFoot::before {
  content: "";
  display: block;
  width: 100%;
  height: 5.555svw;
  background: #2e6b48;
  position: absolute;
  left: 0;
  top: 0;
}
.p-homeFoot::after {
  content: "";
  display: block;
  width: 100%;
  height: 13.194svw;
  background: #2e6b48;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  position: absolute;
  left: 0;
  top: 5.555svw;
}
.p-homeFoot__content {
  width: 83.333svw;
  height: 100%;
  margin: 0 auto;
  padding: 2.291svw 0 0 1.388svw;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
.p-homeFoot__content::before {
  content: "";
  display: block;
  width: 53.194svw;
  aspect-ratio: 766/340;
  background: url("../img/foot_img.webp") no-repeat right bottom/contain;
  position: absolute;
  right: -6.944svw;
  bottom: 0;
  z-index: -1;
}
.p-homeFoot__logo {
  width: 18.68svw;
}
.p-homeFoot__copy {
  margin-top: 0.694svw;
  color: #fff;
  font-weight: bold;
  font-size: 3.888svw;
  line-height: 1;
  transform: rotate(-7.1deg);
}
.p-homeFoot__spacer {
  flex-grow: 1;
}
.p-homeFoot__message {
  align-self: center;
  color: #fff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
  font-weight: bold;
  font-size: 3.75svw;
}
.p-homeFoot__message strong {
  font-weight: bold;
  font-size: 4.7861svw;
}/*# sourceMappingURL=style.css.map */