@charset "UTF-8";
/*テキスト用mixin*/
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
}
@media (max-width: 1080px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

html {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
  color: #333;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}

@media (hover: hover) {
  a:hover,
  button:hover {
    cursor: pointer;
  }
}
/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  a[href^="tel:"] {
    pointer-events: initial;
  }
}

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

/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

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

abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

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

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1080px;
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
    max-width: 640px;
  }
}

.c-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 12.5rem;
  height: 2.8125rem;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: #333;
  background: #FFC107;
  border-radius: 50vh;
}
@media (hover: hover) {
  .c-btn:hover {
    opacity: 1;
  }
}
.c-btn::after {
  content: "";
  position: absolute;
  right: -1.125rem;
  width: 2.5rem;
  height: 1px;
  background-color: #555;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
  -webkit-transform-origin: right;
          transform-origin: right;
}
@media (hover: hover) {
  .c-btn:hover::after {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    z-index: 0;
  }
}
.c-btn::before {
  content: "";
  position: absolute;
  left: -1.125rem;
  width: 2.5rem;
  height: 1px;
  background-color: #555;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
@media (hover: hover) {
  .c-btn:hover::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}

.c-floating-banner {
  position: fixed;
  right: 1.375rem;
  bottom: 1.75rem;
  z-index: 999;
  width: 13.75rem;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease, bottom 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, bottom 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease, bottom 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease, bottom 0.4s ease, -webkit-transform 0.4s ease;
}
/* @media screen and (max-width: 767px) {
  .c-floating-banner {
    display: none;
  }
} */

.c-floating-banner img {
  width: 100%;
}

.c-floating-banner__close {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 1.75rem;
  height: 1.75rem;
  z-index: 1;
}

.c-floating-banner__close img {
  width: 100%;
}

.c-floating-banner__link {
  position: relative;
  display: block;
}
@media (hover: hover) {
  .c-floating-banner__link:hover .c-floating-banner__btn::before {
    right: -0.75rem;
  }
}

.c-floating-banner__btn {
  position: absolute;
  left: 0.9375rem;
  bottom: 1.125rem;
  display: inline-block;
  font-size: 0.75rem;
  line-height: 1;
  font-weight: 700;
  color: #333;
}
.c-floating-banner__btn::after {
  display: block;
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  background: #eb6100;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(100%);
          transform: translateY(-50%) translateX(100%);
  right: -0.3125rem;
}
.c-floating-banner__btn::before {
  display: block;
  content: "";
  width: 1.125rem;
  aspect-ratio: 29/14;
  background: url(../images/common/arrow-white.svg) center top/cover no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(100%);
          transform: translateY(-50%) translateX(100%);
  right: -0.3125rem;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-floating-banner.is-above-pagetop {
  bottom: 8.75rem;
}
@media screen and (max-width: 767px) {
  .c-floating-banner{
    width: 160px;
  }
  .c-floating-banner.is-above-pagetop {
    bottom: 0;
  }
}

.c-floating-banner.is-hidden-footer,
.c-floating-banner.is-closed {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  pointer-events: none;
}

.c-hamburger {
  display: none;
  position: relative;
  z-index: 999;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #22A266;
}
@media screen and (max-width: 767px) {
  .c-hamburger {
    display: block;
  }
}

.c-hamburger__bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.25rem;
  height: 0.125rem;
  background-color: #FFF;
  border-radius: 0.0625rem;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}

/* 通常時（≡みたいに2本） */
.c-hamburger[aria-expanded=false] .c-hamburger__bar:nth-child(1) {
  -webkit-transform: translate(-50%, calc(-50% - 0.3125rem));
          transform: translate(-50%, calc(-50% - 0.3125rem));
}

.c-hamburger[aria-expanded=false] .c-hamburger__bar:nth-child(2) {
  -webkit-transform: translate(-50%, calc(-50% + 0.3125rem));
          transform: translate(-50%, calc(-50% + 0.3125rem));
}

/* 展開時（×になる） */
.c-hamburger[aria-expanded=true] .c-hamburger__bar:nth-child(1) {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
          transform: translate(-50%, -50%) rotate(45deg);
}

.c-hamburger[aria-expanded=true] .c-hamburger__bar:nth-child(2) {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
          transform: translate(-50%, -50%) rotate(-45deg);
}

.c-top-heading {
  text-align: center;
  display: grid;
  place-content: center;
  place-items: center;
}

.c-top-heading__title-en {
  position: relative;
  display: inline-block;
  color: #22A266;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  padding: 0 2.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .c-top-heading__title-en {
    font-size: 0.875rem;
    gap: 0.75rem;
  }
}
.c-top-heading__title-en::before, .c-top-heading__title-en::after {
  content: "";
  width: 0.75rem;
  aspect-ratio: 12/19;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .c-top-heading__title-en::before, .c-top-heading__title-en::after {
    width: 0.625rem;
  }
}
.c-top-heading__title-en::before {
  background-image: url("../images/common/dot-line-left.svg");
}
.c-top-heading__title-en::after {
  background-image: url("../images/common/dot-line-right.svg");
}

.c-top-heading__title-ja {
  color: #333;
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-top-heading__title-ja {
    font-size: 1.5rem;
  }
}

.c-to-top {
  position: fixed;
  right: 1.375rem;
  bottom: 1.375rem;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(0.625rem);
          transform: translateY(0.625rem);
  -webkit-transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, visibility 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}
.c-to-top.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
@media (hover: hover) {
  .c-to-top:hover .c-to-top__img {
    -webkit-transform: rotate(90deg) translateX(-1rem);
            transform: rotate(90deg) translateX(-1rem);
  }
}
@media screen and (max-width: 767px) {
  .c-to-top {
    display: none;
  }
}

.c-to-top__img {
  width: 6.25rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.c-to-top__label {
  display: grid;
  place-items: center;
  width: 5.375rem;
  height: 1.125rem;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1;
  font-weight: 700;
  color: #333;
  background: #d9d9d9;
  margin-top: -0.125rem;
}

.p-contact {
  padding-top: 5.625rem;
  padding-bottom: 8.75rem;
  background-color: #C3E1F5;
}
@media screen and (max-width: 767px) {
  .p-contact {
    padding-top: 3.5rem;
  }
}

.p-contact__inner {
  max-width: 1217px;
}
@media screen and (max-width: 1150px) {
  .p-contact__inner {
    max-width: 67.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__inner {
    max-width: 640px;
  }
}

.p-contact__content {
  background: rgba(255, 255, 255, .88);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 1.5rem 1.5rem 4.5625rem;
}
@media screen and (max-width: 1150px) {
  .p-contact__content {
    padding: 1.5rem;
    gap: 0.625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 2.5rem 0.75rem;
    gap: 2.5rem;
  }
}

.p-contact__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5.4375rem;
  margin-top: 2.5625rem;
}
@media screen and (max-width: 767px) {
  .p-contact__left {
    gap: 0.9375rem;
    margin-top: 0;
  }
}

.p-contact__body-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  gap: 0;
}
@media screen and (max-width: 1150px) {
  .p-contact__body-wrap {
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__body-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.125rem;
  }
}

.p-contact__body {
  margin-top: 0.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.5rem;
  width: 33.125rem;
}
@media screen and (max-width: 767px) {
  .p-contact__body {
    margin-top: 0;
    margin-top: initial;
    width: 100%;
    align-items: center;
  }
}

.p-contact__title {
  font-size: 1.75rem;
  font-weight: 600;
  width: fit-content;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-contact__title {
    font-size: 1.125rem;
    text-align: center;
  }
}

.p-contact__text {
  font-size: 1rem;
  font-weight: 400;
  white-space: nowrap;
  text-align: left;
  width: fit-content;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-contact__text {
    font-size: 0.875rem;
    line-height: 1.7;
    white-space: normal;
    white-space: initial;
  }
}

.p-contact__map-img {
  width: 100%;
  max-width: 13.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact__map-img {
    margin-inline: auto;
    width: 63.3%;
    max-width: 18.75rem;
  }
}

.p-contact__map-img img {
  width: 100%;
}

.p-contact__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2.75rem;
}
@media screen and (max-width: 767px) {
  .p-contact__links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.625rem;
  }
}

.p-contact__tel-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
.p-contact__tel-link:before {
  display: block;
  content: "";
  width: 1.75rem;
  height: 1.75rem;
  background: url(../images/common/tel-icon.svg) center top/cover no-repeat;
}

.p-contact__tel-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
}

.p-contact__tel-img {
  width: 100%;
  max-width: 14.375rem;
  margin-left: 0.25rem;
}

.p-contact__tel-img img {
  width: 100%;
}

.p-contact__tel-time {
  font-size: 0.75rem;
  font-weight: 500;
  color: #0D844C;
  line-height: 1;
}

.p-contact__btn {
  margin-left: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 18.75rem;
  height: 3.875rem;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  background-color: #FFC107;
  border: 1px solid #FFF;
  border-radius: 50vh;
  gap: 0.5rem;
  -webkit-transition: border 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  transition: border 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (max-width: 1240px) {
  .p-contact__btn {
    margin-left: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__btn {
    margin-left: 0;
  }
}
.p-contact__btn:before {
  display: block;
  content: "";
  width: 1.125rem;
  height: 0.8125rem;
  background: url(../images/common/contact-icon.svg) center top/cover no-repeat;
}

@media (hover: hover) {
  .p-contact__btn:hover {
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
            box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    border: 1px solid #FFC107;
  }
}
.p-contact__img {
  width: 100%;
  max-width: 17.25rem;
}
@media screen and (max-width: 767px) {
  .p-contact__img {
    width: calc(100% - 2.25rem);
    max-width: 25rem;
    margin-inline: auto;
  }
}

.p-contact__img img {
  width: 100%;
}

.p-footer {
  padding-top: 0.875rem;
  padding-bottom: 2.0625rem;
  background-color: #22A266;
  position: relative;
}
.p-footer:before {
  display: block;
  content: "";
  width: 100%;
  height: 4.6875rem;
  background: url(../images/common/footer-deco.svg) left top/contain repeat-x;
  position: absolute;
  left: 0;
  top: 1px;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
@media screen and (max-width: 1440px) {
  .p-footer:before {
    background: url(../images/common/footer-deco.svg) left top/cover repeat-x;
  }
}

.p-footer__nav {
  width: 100%;
  padding-bottom: 1.125rem;
  border-bottom: 1px solid #FFF;
}
@media screen and (max-width: 767px) {
  .p-footer__nav {
    display: none;
  }
}

.p-footer__nav-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-footer__nav-item {
  font-size: 0.875rem;
  font-weight: 500;
  color: #FFF;
  text-align: center;
}

.p-footer__nav-item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (hover: hover) {
  .p-footer__nav-item a:hover {
    opacity: 0.7;
  }
}

.p-footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2.625rem;
}
@media screen and (max-width: 767px) {
  .p-footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-footer__logo {
  width: 100%;
  max-width: 20rem;
}

.p-footer__logo img {
  width: 100%;
}

.p-footer__info {
  margin-top: 2rem;
}

.p-footer__info-text {
  font-size: 1rem;
  font-weight: 500;
  color: #FFF;
}
@media screen and (max-width: 767px) {
  .p-footer__info-text {
    font-size: 0.875rem;
    line-height: 1.7;
    text-align: center;
  }
}

.p-footer__info-text--area {
  margin-top: 1rem;
}

.p-footer__map {
  max-width: 30.375rem;
  width: 100%;
  height: auto;
  aspect-ratio: 486/308;
}
@media screen and (max-width: 767px) {
  .p-footer__map {
    max-width: none;
    max-width: initial;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    aspect-ratio: 375/237;
    margin-top: 3.5rem;
  }
}
.p-footer__map iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-footer__copyright {
  margin-top: 3.8125rem;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #FFF;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    margin-top: 1.3125rem;
    font-size: 0.6875rem;
  }
}

.p-header__rep-tel-wrap {
  width: 100%;
  max-width: 115.625rem;
  top: 0.375rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  position: fixed;
  z-index: 999;
  padding-right: 2.25rem;
}
@media screen and (max-width: 1920px) {
  .p-header__rep-tel-wrap {
    width: calc(100% - 4.375rem);
  }
}
@media screen and (max-width: 767px) {
  .p-header__rep-tel-wrap {
    display: none;
  }
}

.p-header__rep-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  font-weight: 500;
  text-decoration: underline;
  margin-right: auto;
}

.p-header {
  height: 4.25rem;
  display: block;
  z-index: 999;
  position: fixed;
  top: 1.5625rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 115.625rem;
  background-color: rgba(255, 255, 255, .9);
  border-radius: 50vh;
  margin-inline: auto;
  padding: 0 0.625rem 0 2.75rem;
  -webkit-box-shadow: 0 4px 8px rgba(85, 85, 85, .1);
          box-shadow: 0 4px 8px rgba(85, 85, 85, .1);
  -webkit-box-shadow: 0 2px 4px 0 rgba(85, 85, 85, .08);
          box-shadow: 0 2px 4px 0 rgba(85, 85, 85, .08);
}
@media screen and (max-width: 1920px) {
  .p-header {
    width: calc(100% - 4.375rem);
  }
}
@media screen and (max-width: 1320px) {
  .p-header {
    width: calc(100% - 2.5rem);
    padding: 0 0.625rem 0 1.25rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    width: calc(100% - 1rem);
    height: 4.0625rem;
    padding: 0 0.4375rem 0 1.375rem;
    top: 0.75rem;
  }
  .p-header.is-open {
    border-radius: 1.875rem 1.875rem 0 0;
  }
}

.p-header__inner {
  height: 100%;
}

.p-header__flex {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__logo {
  margin-left: -0.25rem;
}
.u-visually-hidden{
  display: none;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    margin-left: 0;
  }
}

.p-header__logo a {
  display: block;
  width: 100%;
  max-width: 16.25rem;
}
@media screen and (max-width: 1320px) {
  .p-header__logo a {
    max-width: 15rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo a {
    max-width: 14.375rem;
  }
}

.p-header__logo img {
  width: 100%;
  height: auto;
  display: block;
}

.p-header__pc-nav {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-header__pc-nav {
    display: none;
  }
}

.p-header__pc-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__pc-item {
  height: 100%;
}

.p-header__pc-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  height: 100%;
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 500;
  padding: 0 0.75rem;
  color: #333;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (max-width: 1320px) {
  .p-header__pc-item a {
    font-size: 0.875rem;
    padding: 0 0.5rem;
  }
}

@media (hover: hover) {
  .p-header__pc-item a:hover {
    color: #0D844C;
  }
}
.p-header__pc-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  margin-top: 2rem;
}

.p-header__tel-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4375rem;
  margin-left: 1rem;
  margin-top: -0.3125rem;
}
@media screen and (max-width: 1320px) {
  .p-header__tel-link {
    margin-left: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header__tel-link {
    margin-top: 0;
    margin-top: initial;
  }
}

.p-header__tel-time {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  color: #0D844C;
}
@media screen and (max-width: 1320px) {
  .p-header__tel-time {
    font-size: 0.625rem;
  }
}

.p-header__tel-img {
  width: 100%;
  max-width: 12.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
@media screen and (max-width: 1320px) {
  .p-header__tel-img {
    max-width: 10.625rem;
  }
}

.p-header__tel-img img {
  width: 100%;
}

.p-header__pc-contact-btn {
  margin-left: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 11.125rem;
  height: 3.0625rem;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  background-color: #FFC107;
  border: 1px solid #FFC107;
  border-radius: 50vh;
  gap: 0.5rem;
  -webkit-transition: border 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: border 0.3s ease, box-shadow 0.3s ease;
  transition: border 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}
@media screen and (max-width: 1320px) {
  .p-header__pc-contact-btn {
    margin-left: 0.5rem;
    width: 10rem;
  }
}
.p-header__pc-contact-btn:before {
  display: block;
  content: "";
  width: 1.125rem;
  height: 0.8125rem;
  background: url(../images/common/contact-icon.svg) center top/cover no-repeat;
}

@media (hover: hover) {
  .p-header__pc-contact-btn:hover {
    -webkit-box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
            box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
    border: 2px solid #FFC107;
  }
}
/* SPメニュー表示切替 */
.p-header__sp-global-menu {
  display: none;
  overflow-y: scroll;
  height: 0;
  opacity: 0;
  -webkit-transition: height 0.4s ease, opacity 0.1s ease;
  transition: height 0.4s ease, opacity 0.1s ease;
  position: fixed;
  top: 4rem;
  left: 0;
  width: 100%;
  z-index: -1;
  background-color: rgba(255, 255, 255, .9);
  border-radius: 0 0 1.875rem 1.875rem;
  -webkit-box-shadow: 0 4px 8px rgba(85, 85, 85, .1);
          box-shadow: 0 4px 8px rgba(85, 85, 85, .1);
  padding-bottom: 2.8125rem;
}
.p-header__sp-global-menu.is-active {
  display: block;
  opacity: 1;
  height: calc(100vh - 4.625rem);
  height: calc(100svh - 4.625rem);
  z-index: 100;
}
.p-header__sp-global-menu.is-closing {
  opacity: 0;
}

.no-scroll {
  overflow: hidden;
}

/* メニューリストの初期状態（非表示） */
.p-header__sp-item {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

/* 表示状態 */
.p-header__sp-item.is-shown {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-header__sp-nav {
  padding: 0 2.25rem;
  width: 100%;
}

.p-header__sp-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin-top: 1.5rem;
}

.p-header__sp-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 1rem 1.25rem 1rem;
  border-bottom: 1px solid #ccc;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 150%;
}
.p-header__sp-item a:after {
  display: block;
  content: "";
  width: 0.625rem;
  height: 0.625rem;
  border-right: 1px solid #22A266;
  border-bottom: 1px solid #22A266;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 0.25rem;
}

.p-header__tel-time--sp {
  text-align: center;
  color: #22A266;
}

.p-header__sp-contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2.5rem;
}

.p-header__sp-contact-btn {
  margin-left: 1.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  width: 18.9375rem;
  height: 3.125rem;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  background-color: #FFC107;
  border: 1px solid #FFC107;
  border-radius: 50vh;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.p-header__sp-contact-btn:before {
  display: block;
  content: "";
  width: 1.125rem;
  height: 0.8125rem;
  background: url(../images/common/contact-icon.svg) center top/cover no-repeat;
}

.p-header__sp-rep-tel {
  font-size: 1rem;
  font-weight: 500;
  color: #0D844C;
  margin-top: 3.1875rem;
  text-decoration: underline;
}

.js-fade {
  opacity: 0;
  -webkit-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.js-fade.is-shown {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-top-about {
  padding-top: 5rem;
  padding-bottom: 7.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-about {
    padding-top: 3.5rem;
    padding-bottom: 5rem;
  }
}
.p-top-about:after {
  display: block;
  content: "";
  width: 100%;
  height: 16.4375rem;
  background-color: #EBF6EF;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-about:after {
    height: 25rem;
  }
}

.p-top-about__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3.5rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
  }
}

.p-top-about__img {
  width: 100%;
  max-width: 29.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top-about__img {
    max-width: 100%;
  }
}

.p-top-about__img img {
  width: 100%;
}

.p-top-about__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.5rem;
  max-width: 29.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__body {
    max-width: 100%;
    gap: 3rem;
  }
}

.p-top-about__text {
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-top-about__text {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

@media screen and (max-width: 767px) {
  .p-top-about__btn {
    margin-inline: auto;
  }
}

.p-top-about__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
  }
}

.p-top-about__item {
  background: #FFF;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, .08);
          box-shadow: 0 0 20px 0 rgba(0, 0, 0, .08);
  width: 14.75rem;
  display: grid;
  place-content: center;
  place-items: center;
  gap: 0.1875rem;
  padding-top: 2rem;
  padding-bottom: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__item {
    width: 100%;
  }
}

.p-top-about__item-icon {
  width: 100%;
  max-width: 9.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-about__item-icon {
    width: 63.5593220339%;
  }
}

.p-top-about__item-icon img {
  width: 100%;
}

.p-top-about__item-text {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-about__item-text {
    font-size: 1rem;
  }
}

.p-top-campaign {
  padding: 5rem 0;
  background-color: #EBF6EF;
}
@media screen and (max-width: 767px) {
  .p-top-campaign {
    padding: 3.5rem 0;
  }
}

.p-top-campaign__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 3.5rem;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
  }
}

.p-top-campaign__img {
  width: 100%;
  max-width: 29.75rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__img {
    max-width: 100%;
  }
}

.p-top-campaign__img img {
  width: 100%;
}

.p-top-campaign__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 29.25rem;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__body {
    max-width: 100%;
  }
}

.p-top-campaign__heading {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__heading {
    margin-top: 0;
    font-size: 1.0625rem;
  }
}

.p-top-campaign__text {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__text {
    font-size: 0.875rem;
    margin-top: 0.75rem;
    line-height: 1.6;
  }
}

.p-top-campaign__btn {
  margin-top: 3.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-campaign__btn {
    margin-inline: auto;
    margin-top: 3rem;
  }
}

.p-top-fv__slide {
  position: relative;
  height: calc(100vh - 4.375rem);
  height: calc(100svh - 4.375rem);
}
@media screen and (max-width: 767px) {
  .p-top-fv__slide {
    height: calc(100vh - 3.5rem);
    height: calc(100svh - 3.5rem);
  }
}

.p-top-fv__bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.p-top-fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center right;
     object-position: center right;
}

@media screen and (max-width: 767px) {
  .p-top-fv__bg.p-top-fv__bg--1 img {
    -o-object-position: left bottom;
       object-position: left bottom;
  }
}

.p-top-fv__content-wrap {
  position: absolute;
  top: 34.8%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
@media screen and (max-height: 750px) and (min-width: 768px) {
  .p-top-fv__content-wrap {
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__content-wrap {
    top: 19.5%;
    left: 2rem;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
  }
}

.p-top-fv__content1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-top-fv__content1 {
    text-align: left;
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
}

.p-top-fv__comment-img {
  position: absolute;
  top: -3.8125rem;
  right: -1.25rem;
  width: 12.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__comment-img {
    top: 8.2%;
    right: 20.7%;
    -webkit-transform: translateX(100%) translateY(-100%);
            transform: translateX(100%) translateY(-100%);
    width: clamp(6.5625rem, 0.8969465649rem + 24.1730279898vw, 12.5rem);
  }
}
@media screen and (max-width: 767px) and (max-width: 375px) {
  .p-top-fv__comment-img {
    width: 6.5625rem;
  }
}
.p-top-fv__comment-img img {
  width: 100%;
}

.p-top-fv__dentaku-img {
  position: absolute;
  bottom: -4.0625rem;
  left: -1.375rem;
  width: 8.625rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__dentaku-img {
    bottom: -1.25rem;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    left: -0.6875rem;
    width: clamp(4.625rem, 0.8082061069rem + 16.2849872774vw, 8.625rem);
  }
}
@media screen and (max-width: 375px) {
  .p-top-fv__dentaku-img {
    width: 4.625rem;
  }
}
.p-top-fv__dentaku-img img {
  width: 100%;
}

.p-top-fv__content1 .p-top-fv__copy {
  font-size: 2.625rem;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-top-fv__content1 .p-top-fv__copy {
    font-size: clamp(1.5rem, 0.4265267176rem + 4.5801526718vw, 2.625rem);
  }
}
@media screen and (max-width: 375px) {
  .p-top-fv__content1 .p-top-fv__copy {
    font-size: 1.5rem;
  }
}

.p-top-fv__copy--underline {
  position: relative;
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 700;
  color: #22A266;
}
@media screen and (max-width: 767px) {
  .p-top-fv__copy--underline {
    font-size: clamp(2.625rem, 1.7900763359rem + 3.5623409669vw, 3.5rem);
    line-height: 1.3;
  }
}
@media screen and (max-width: 375px) {
  .p-top-fv__copy--underline {
    font-size: 2.625rem;
  }
}
.p-top-fv__copy--underline::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.375rem;
  width: 100%;
  height: 1rem;
  background-color: #ffd147;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-fv__copy--underline::before {
    height: clamp(0.875rem, 0.7557251908rem + 0.5089058524vw, 1rem);
  }
}
@media screen and (max-width: 375px) {
  .p-top-fv__copy--underline::before {
    height: 0.875rem;
  }
}

.p-top-fv__copy--green {
  color: #22A266;
  font-size: 3.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top-fv__copy--green {
    font-size: clamp(2.1875rem, 0.9351145038rem + 5.3435114504vw, 3.5rem);
    line-height: 1.3;
  }
}
@media screen and (max-width: 375px) {
  .p-top-fv__copy--green {
    font-size: 2.1875rem;
  }
}

.p-top-fv__area {
  display: grid;
  place-items: center;
  width: 18.5625rem;
  height: 2.625rem;
  text-align: center;
  font-size: 1.5625rem;
  font-weight: 700;
  color: #FFF;
  background-color: #22A266;
  margin-top: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__area {
    font-size: clamp(0.9375rem, 0.3411259542rem + 2.5445292621vw, 1.5625rem);
    width: clamp(9.625rem, 1.096851145rem + 36.3867684478vw, 18.5625rem);
    height: clamp(1.625rem, 0.6708015267rem + 4.0712468193vw, 2.625rem);
  }
}
@media screen and (max-width: 375px) {
  .p-top-fv__area {
    font-size: 0.9375rem;
    width: 9.625rem;
    height: 1.625rem;
  }
}

.p-top-fv__illust {
  position: absolute;
  bottom: 0;
  left: calc(50% + 26.25rem);
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
  width: 22.6875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1240px) {
  .p-top-fv__illust {
    left: calc(50% + 21.875rem);
    width: 18.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__illust {
    width: clamp(13.75rem, 8.9790076336rem + 20.3562340967vw, 18.75rem);
    left: auto;
    left: initial;
    right: 1.25rem;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
  }
}
@media screen and (max-width: 375px) {
  .p-top-fv__illust {
    width: 13.75rem;
  }
}
.p-top-fv__illust img {
  width: 100%;
}

.p-top-fv__content2 {
  position: absolute;
  top: 34.2%;
  left: 6.4%;
  z-index: 2;
}
@media screen and (max-height: 750px) and (min-width: 768px) {
  .p-top-fv__content2 {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__content2 {
    left: 2rem;
    top: 30%;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
  }
}

.p-top-fv__content2 .p-top-fv__copy {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.3;
  color: #22A266;
}
@media screen and (max-width: 767px) {
  .p-top-fv__content2 .p-top-fv__copy {
    font-size: clamp(2.375rem, 1.4208015267rem + 4.0712468193vw, 3.375rem);
  }
}
@media screen and (max-width: 375px) {
  .p-top-fv__content2 .p-top-fv__copy {
    font-size: 2.375rem;
  }
}

.p-top-fv__content2 .p-top-fv__text {
  font-size: 1.3125rem;
  font-weight: 600;
  line-height: 1.7;
  color: #333;
  margin-top: 1.4375rem;
  margin-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__content2 .p-top-fv__text {
    font-size: clamp(0.875rem, 0.6364503817rem + 1.0178117048vw, 1.125rem);
  }
}
@media screen and (max-width: 375px) {
  .p-top-fv__content2 .p-top-fv__text {
    font-size: 0.875rem;
  }
}

.p-top-fv__btn {
  display: inline-block;
  position: relative;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  color: #333;
  margin-left: 0.5625rem;
  margin-top: 3.375rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__btn {
    font-size: clamp(0.8125rem, 0.5739503817rem + 1.0178117048vw, 1.0625rem);
  }
}
@media screen and (max-width: 375px) {
  .p-top-fv__btn {
    font-size: 0.8125rem;
  }
}
.p-top-fv__btn::after {
  display: block;
  content: "";
  width: 3.125rem;
  height: 3.125rem;
  background: #eb6100;
  border-radius: 50%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(100%);
          transform: translateY(-50%) translateX(100%);
  right: -0.5625rem;
}
@media screen and (max-width: 767px) {
  .p-top-fv__btn::after {
    width: clamp(1.875rem, 1.2786259542rem + 2.5445292621vw, 2.5rem);
    height: clamp(1.875rem, 1.2786259542rem + 2.5445292621vw, 2.5rem);
  }
}
@media screen and (max-width: 375px) {
  .p-top-fv__btn::after {
    width: 1.875rem;
    height: 1.875rem;
  }
}
.p-top-fv__btn::before {
  display: block;
  content: "";
  width: 1.8125rem;
  height: 0.875rem;
  background: url(../images/common/arrow-white.svg) center top/cover no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(100%);
          transform: translateY(-50%) translateX(100%);
  right: -0.5625rem;
  z-index: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .p-top-fv__btn::before {
    width: clamp(1.45rem, 1.2770515267rem + 0.737913486vw, 1.63125rem);
    height: clamp(0.7rem, 0.6165076336rem + 0.3562340967vw, 0.7875rem);
  }
}
@media screen and (max-width: 375px) {
  .p-top-fv__btn::before {
    width: 1.45rem;
    height: 0.7rem;
  }
}
@media (hover: hover) {
  .p-top-fv__btn:hover::before {
    right: -1.125rem;
  }
}

.p-top-fv__content3 {
  position: absolute;
  top: 31%;
  right: 6.5%;
  z-index: 2;
}
@media screen and (max-height: 750px) and (min-width: 768px) {
  .p-top-fv__content3 {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .p-top-fv__content3 {
    right: 1.25rem;
    top: 40%;
    -webkit-transform: none;
            transform: none;
    -webkit-transform: initial;
            transform: initial;
  }
}

.p-top-fv__content3 .p-top-fv__copy {
  font-size: 3rem;
  font-weight: 700;
  color: #595959;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .p-top-fv__content3 .p-top-fv__copy {
    font-size: clamp(1.75rem, 0.9150763359rem + 3.5623409669vw, 2.625rem);
  }
}
@media screen and (max-width: 375px) {
  .p-top-fv__content3 .p-top-fv__copy {
    font-size: 1.75rem;
  }
}

.p-top-fv__band {
  width: 100%;
  height: 4.375rem;
  background: -webkit-gradient(linear, left top, right top, from(#0D844C), color-stop(50%, #0D844C), color-stop(50%, #22A266), to(#22A266));
  background: linear-gradient(to right, #0D844C 0%, #0D844C 50%, #22A266 50%, #22A266 100%);
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-fv__band {
    height: 3.5rem;
  }
}

.p-top-fv__scroll {
  position: absolute;
  bottom: 1.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-top-fv__scroll {
    bottom: 0.875rem;
  }
}

.p-top-fv__scroll-bar {
  width: 1.75rem;
  height: 3.0625rem;
  border: 0.125rem solid #FFF;
  border-radius: 1.875rem;
  margin: 0 auto 0.5rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-fv__scroll-bar {
    width: 1.4rem;
    height: 2.45rem;
    margin: 0 auto 0.3125rem;
  }
}
.p-top-fv__scroll-bar::after {
  content: "";
  position: absolute;
  top: 0.5rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0.25rem;
  height: 0.5rem;
  background-color: #FFF;
  border-radius: 0.125rem;
  -webkit-animation: scroll 2s infinite;
          animation: scroll 2s infinite;
}
@media screen and (max-width: 767px) {
  .p-top-fv__scroll-bar::after {
    top: 0.25rem;
    -webkit-animation: scroll-sp 2s infinite;
            animation: scroll-sp 2s infinite;
  }
}

.p-top-fv__scroll-text {
  color: #FFF;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-top-fv__scroll-text {
    font-size: 0.75rem;
  }
}

@-webkit-keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(1.25rem);
            transform: translateX(-50%) translateY(1.25rem);
  }
}

@keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(1.25rem);
            transform: translateX(-50%) translateY(1.25rem);
  }
}
@-webkit-keyframes scroll-sp {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(1.125rem);
            transform: translateX(-50%) translateY(1.125rem);
  }
}
@keyframes scroll-sp {
  0% {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(1.125rem);
            transform: translateX(-50%) translateY(1.125rem);
  }
}
.p-top-service {
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-top-service {
    padding: 3.5rem 0;
  }
}

.p-top-service__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.375rem 2.8125rem;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__items {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 2rem;
  }
}

.p-top-service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.75rem;
}

.p-top-service__item-img {
  width: 100%;
  max-width: 29.8125rem;
}
@media screen and (max-width: 767px) {
  .p-top-service__item-img {
    max-width: 100%;
  }
}

.p-top-service__item-img img {
  width: 100%;
}

.p-top-service__item-title {
  font-size: 1.5rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .p-top-service__item-title {
    font-size: 1.125rem;
  }
}

.p-top-service__item-text {
  font-size: 1rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .p-top-service__item-text {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

.p-top-service__btn {
  margin-top: 5.9375rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-top-service__btn {
    margin-top: 3rem;
  }
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}

/* ============================================
   Service Page Styles
   ============================================ */

/* ヒーローセクション */
.p-service-hero {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-service-hero {
    height: 350px;
  }
}

.p-service-hero__bg {
  position: absolute;
  inset: 0;
  background: rgba(13, 132, 76, 0.9);
  background-image: url("../images/top/fv-img01.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  .p-service-hero__bg {
    background-image: url("../images/top/fv-img01-sp.jpg");
  }
}

.p-service-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.p-service-hero__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.p-service-hero__title-en {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-service-hero__title-en {
    font-size: 1.125rem;
    gap: 0.75rem;
  }
}
.p-service-hero__title-en::before,
.p-service-hero__title-en::after {
  content: "";
  width: 0.75rem;
  aspect-ratio: 12/19;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-service-hero__title-en::before,
  .p-service-hero__title-en::after {
    width: 0.625rem;
  }
}
.p-service-hero__title-en::before {
  background-image: url("../images/common/dot-line-left.svg");
}
.p-service-hero__title-en::after {
  background-image: url("../images/common/dot-line-right.svg");
  transform: rotate(180deg) scaleY(-1);
}

.p-service-hero__title-ja {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-service-hero__title-ja {
    font-size: 1.75rem;
  }
}

/* 基本サービスセクション */
.p-service-basic {
  padding-top: 10rem;
}
@media screen and (max-width: 767px) {
  .p-service-basic {
    padding: 3.5rem 0;
  }
}

.p-service-basic__inner {
  max-width: 1217px;
}
@media screen and (max-width: 1150px) {
  .p-service-basic__inner {
    max-width: 67.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-basic__inner {
    max-width: 640px;
  }
}

.p-service-basic__content {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 3rem 3.5rem;
  background-color: #ebf6ef;
}
@media screen and (max-width: 767px) {
  .p-service-basic__content {
    margin-top: 2rem;
    padding: 2rem 1.5rem;
    gap: 2rem;
  }
}

.p-service-basic__item {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-bottom: 1px solid #CCC;
}
@media screen and (max-width: 767px) {
  .p-service-basic__item {
    gap: 1.5rem;
  }
}

.p-service-basic__item-inner {
  display: flex;
  gap: 5rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-service-basic__item-inner {
    gap: 2rem;
    flex-direction: column;
  }
}

.p-service-basic__item-number {
  color: #22a266;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.5;
  flex-shrink: 0;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .p-service-basic__item-number {
    font-size: 2rem;
  }
}

.p-service-basic__item-text {
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-service-basic__item-text {
    font-size: 0.875rem;
    line-height: 1.6;
  }
}

.p-service-basic__item-line {
  width: 100%;
  height: 1px;
  background: url("../images/common/dot-line-left.svg") repeat-x;
  background-size: auto 1px;
  opacity: 0.3;
}

/* 起業家支援キャンペーンバナー */
.p-service-campaign {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-service-campaign {
    padding: 3.5rem 0;
  }
}

.p-service-campaign__inner {
  max-width: 1217px;
}
@media screen and (max-width: 1150px) {
  .p-service-campaign__inner {
    max-width: 67.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-campaign__inner {
    max-width: 640px;
  }
}

.p-service-campaign__img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-shadow: 0 0 10px 0 rgba(0, 2, 0, 0.2);
}

.p-service-campaign__img img:hover {
  opacity: 0.65;
  transition: opacity 0.3s ease;
}

/* 料金表セクション */
.p-service-price {
  padding: 5rem 0;
}
@media screen and (max-width: 767px) {
  .p-service-price {
    padding: 3.5rem 0;
  }
}

.p-service-price__inner {
  max-width: 1217px;
}
@media screen and (max-width: 1150px) {
  .p-service-price__inner {
    max-width: 67.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-service-price__inner {
    max-width: 640px;
  }
}

.p-service-price__note {
  color: #333;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  margin: 0 auto .5rem;
  width: 100%;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .p-service-price__note {
    font-size: 0.75rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
}

.p-service-price__table-wrap {
  margin-top: 1.5rem;
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .p-service-price__table-wrap {
    margin-top: 1rem;
  }
}

.p-service-price__table {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  border-collapse: collapse;
  border: 1px solid #999;
}

.p-service-price__table-header {
  background-color: #0d844c;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  padding: 0.75rem 1rem;
  border: 1px solid #999;
}
@media screen and (max-width: 767px) {
  .p-service-price__table-header {
    font-size: 1.125rem;
    padding: 0.5rem 0.75rem;
  }
}

.p-service-price__table-header--large {
  font-size: 1.25rem;
  line-height: 1.5;
  padding: 1.5rem 1rem;
}
@media screen and (max-width: 767px) {
  .p-service-price__table-header--large {
    font-size: 1rem;
    padding: 1rem 0.75rem;
  }
}

.p-service-price__table-subheader {
  background-color: #6fba2c;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  padding: 0.625rem 1rem;
  border: 1px solid #999;
}
@media screen and (max-width: 767px) {
  .p-service-price__table-subheader {
    font-size: 0.875rem;
    padding: 0.5rem 0.75rem;
  }
}

.p-service-price__table th,
.p-service-price__table td {
  border: 1px solid #999;
  padding: 0.25rem 1rem;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-service-price__table th,
  .p-service-price__table td {
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
  }
}

.p-service-price__table tbody td {
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-service-price__table tbody td {
    font-size: 0.75rem;
  }
}

.p-service-price__table-text {
  text-align: left;
  padding: 1rem 1.5rem;
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-service-price__table-text {
    font-size: 0.75rem;
    padding: 0.75rem 1rem;
  }
}

.p-service-price__note-bottom {

  text-align: left;
  color: #333;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 0.5rem;
  width: 100%;
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .p-service-price__note-bottom {
    font-size: 0.75rem;
    margin-top: 1.5rem;
    padding: 0 1rem;
  }
}

/* ========================================
   companyページ
   ======================================== */

/* ヒーローセクション */
.p-company-hero {
  position: relative;
  width: 100%;
  height: 400px;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-company-hero {
    height: 350px;
  }
}

.p-company-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.p-company-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-company-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(212, 212, 212, 0.5);
  mix-blend-mode: screen;
}

.p-company-hero__content {
  position: absolute;
  bottom: 0;
  left: 50%; 
  transform: translate(-50%, 50%); 
  
  z-index: 10;
  width: 580px;
  max-width: 90%;
}
@media screen and (max-width: 767px) {
  .p-company-hero__content {
    width: 100%;
    padding: 0 1rem;
    bottom: 40%;
  }
}

.p-company-hero__title {
  background: rgba(13, 132, 76, 0.9);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-company-hero__title {
    padding: 1.5rem 1rem;
    gap: 0.75rem;
  }
}

.p-company-hero__title-en-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-company-hero__title-en-wrap {
    gap: 0.75rem;
  }
}

.p-company-hero__title-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 19px;
}
.p-company-hero__title-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-company-hero__title-en {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-company-hero__title-en {
    font-size: 1.125rem;
  }
}

.p-company-hero__title-ja {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-company-hero__title-ja {
    font-size: 1.75rem;
  }
}

/* ご挨拶セクション */
.p-company-greeting {
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .p-company-greeting {
    padding: 3.5rem 0;
  }
}

.p-company-greeting__inner {
  max-width: 1001px;
}

.p-company-greeting__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-company-greeting__content {
    gap: 2rem;
  }
}

.c-section-title{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .c-section-title {
    gap: 1rem;
  }
}

.c-section-title__icon {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
}
.c-section-title__icon img {
  display: block;
}
.c-section-title__reverse {
  transform: rotate(180deg) scaleY(-1);
}

.c-section-title__text {
  color: #333;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-section-title__text {
    font-size: 1.5rem;
  }
}

.p-company-greeting__body {
  display: flex;
  gap: 3.5rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-company-greeting__body {
    flex-direction: column;
    gap: 2rem;
  }
}

.p-company-greeting__left {
  flex-shrink: 0;
  width: 417px;
}
@media screen and (max-width: 767px) {
  .p-company-greeting__left {
    width: 100%;
  }
}

.p-company-greeting__img {
  width: 100%;
  margin-bottom: 1.25rem;
}
.p-company-greeting__img img {
  width: 100%;
  height: auto;
  display: block;
}

.p-company-greeting__profile {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.p-company-greeting__profile-place {
  color: #333;
  font-size: 0.875rem;
  line-height: 1.6;
}

.p-company-greeting__profile-name {
  color: #333;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 500;
}

.p-company-greeting__profile-text {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}

.p-company-greeting__right {
  flex: 1;
  padding: 1rem 0;
}
@media screen and (max-width: 767px) {
  .p-company-greeting__right {
    padding: 0;
  }
}

.p-company-greeting__heading {
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-company-greeting__heading {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }
}

.p-company-greeting__text {
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
}
.p-company-greeting__text p {
  margin-bottom: 1rem;
}
.p-company-greeting__text p:last-child {
  margin-bottom: 0;
}

/* 事務所概要セクション */
.p-company-overview {
  padding: 0 0 10rem;
}
@media screen and (max-width: 767px) {
  .p-company-overview {
    padding: 0 0 5rem;
  }
}

.p-company-overview__inner {
  max-width: 1001px;
}

.p-company-overview__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-company-overview__content {
    gap: 2rem;
  }
}

.p-company-overview__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .p-company-overview__title {
    gap: 1rem;
  }
}

.p-company-overview__title-icon {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
}
.p-company-overview__title-icon img {
  display: block;
}
.p-company-overview__title-icon--reverse {
  transform: rotate(180deg) scaleY(-1);
}

.p-company-overview__title-text {
  color: #333;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-company-overview__title-text {
    font-size: 1.5rem;
  }
}

.p-company-overview__table-wrap {
  width: 100%;
  overflow-x: auto;
}

.p-company-overview__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
}

.p-company-overview__table-row {
  border-bottom: 1px solid #e5e5e5;
}

.p-company-overview__table-row:last-child {
  border-bottom: none;
}

.p-company-overview__table-header {
  background-color: #efefee;
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
  padding: 1.5rem 2rem;
  width: 230px;
  vertical-align: middle;
  border-right: 1px solid #e5e5e5;
}
@media screen and (max-width: 767px) {
  .p-company-overview__table-header {
    padding: 1rem;
    width: 120px;
    font-size: 0.875rem;
  }
}

.p-company-overview__table-data {
  background-color: #fff;
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 1.5rem 2rem;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-company-overview__table-data {
    padding: 1rem;
    font-size: 0.875rem;
  }
}

.p-company-overview__link {
  color: #22a266;
  text-decoration: underline;
  text-underline-position: from-font;
}
.p-company-overview__link:hover {
  opacity: 0.8;
}

/* ========================================
   campaignページ
   ======================================== */

/* ヒーローセクション */
.p-campaign-hero {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-campaign-hero {
    height: 350px;
  }
}

.p-campaign-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.p-campaign-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-campaign-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(212, 212, 212, 0.5);
  mix-blend-mode: screen;
}

.p-campaign-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 580px;
  max-width: 90%;
}
@media screen and (max-width: 767px) {
  .p-campaign-hero__content {
    width: 100%;
    padding: 0 1rem;
  }
}

.p-campaign-hero__title {
  background: rgba(13, 132, 76, 0.9);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-campaign-hero__title {
    padding: 1.5rem 1rem;
    gap: 0.75rem;
  }
}

.p-campaign-hero__title-en-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-campaign-hero__title-en-wrap {
    gap: 0.75rem;
  }
}

.p-campaign-hero__title-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 19px;
}
.p-campaign-hero__title-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-campaign-hero__title-icon--reverse {
  transform: rotate(180deg) scaleY(-1);
}

.p-campaign-hero__title-en {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-campaign-hero__title-en {
    font-size: 1.125rem;
  }
}

.p-campaign-hero__title-ja {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-campaign-hero__title-ja {
    font-size: 1.75rem;
  }
}

/* キャンペーン詳細セクション */
.p-campaign-detail {
  padding: 10rem 0;
  background-color: #ebf6ef;
}
@media screen and (max-width: 767px) {
  .p-campaign-detail {
    padding: 3.5rem 0;
  }
}

.p-campaign-detail__inner {
  max-width: 1000px;
}

.p-campaign-detail__content {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-campaign-detail__content {
    gap: 2.5rem;
    padding: 0 1rem;
  }
}

.p-campaign-detail__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  width: 100%;
  max-width: 840px;
}

.p-campaign-detail__title {
  color: #333;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-campaign-detail__title {
    font-size: 1.5rem;
  }
}

.p-campaign-detail__title-line {
  width: 100%;
  height: 1px;
  background-color: #333;
}

.p-campaign-detail__box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  width: 100%;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  .p-campaign-detail__box {
    max-width: 100%;
  }
}

.p-campaign-detail__deadline {
  background-color: #d00000;
  padding: 0.25rem 1.75rem;
  border-radius: 4px;
  text-align: center;
}

.p-campaign-detail__deadline-text {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .p-campaign-detail__deadline-text {
    font-size: 1.125rem;
  }
}

.p-campaign-detail__offer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-campaign-detail__offer {
    max-width: 100%;
  }
}

.p-campaign-detail__offer-title {
  color: #333;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-campaign-detail__offer-title {
    font-size: 1.5rem;
  }
}

.p-campaign-detail__price {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  width: 100%;
}

.p-campaign-detail__price-item {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  text-align: center;
}

.p-campaign-detail__price-label {
  color: #333;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-campaign-detail__price-label {
    font-size: 1.5rem;
  }
}

.p-campaign-detail__price-value {
  color: #d00000;
  font-size: 3.5rem;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .p-campaign-detail__price-value {
    font-size: 2.5rem;
  }
}

.p-campaign-detail__price-value--red {
  color: #d00000;
}

.p-campaign-detail__price-note {
  color: #333;
  font-size: 0.875rem;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-campaign-detail__price-note {
    font-size: 0.75rem;
  }
}

.p-campaign-detail__service {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-campaign-detail__service {
    gap: 1.5rem;
  }
}

.p-campaign-detail__service-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding-top: 1.1875rem;
}
@media screen and (max-width: 767px) {
  .p-campaign-detail__service-content {
    padding-top: 1rem;
  }
}

.p-campaign-detail__service-title {
  color: #333;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-campaign-detail__service-title {
    font-size: 1.25rem;
  }
}

.p-campaign-detail__service-text {
  color: #d00000;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-campaign-detail__service-text {
    font-size: 0.875rem;
  }
}

.p-campaign-detail__service-img {
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 139px;
  height: 109px;
}
@media screen and (max-width: 767px) {
  .p-campaign-detail__service-img {
    position: relative;
    margin-top: 1rem;
    right: 0;
  }
}
.p-campaign-detail__service-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.p-campaign-detail__notes {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
  width: 100%;
}

.p-campaign-detail__note {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  color: #333;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-campaign-detail__note {
    font-size: 0.6875rem;
  }
}

.p-campaign-detail__note--red {
  color: #d00000;
}

.p-campaign-detail__note-mark {
  flex-shrink: 0;
  font-weight: 400;
}

/* ========================================
   accessページ
   ======================================== */

/* ヒーローセクション */
.p-access-hero {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-access-hero {
    height: 350px;
  }
}

.p-access-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.p-access-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-access-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(212, 212, 212, 0.5);
  mix-blend-mode: screen;
}

.p-access-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 580px;
  max-width: 90%;
}
@media screen and (max-width: 767px) {
  .p-access-hero__content {
    width: 100%;
    padding: 0 1rem;
  }
}

.p-access-hero__title {
  background: rgba(13, 132, 76, 0.9);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-access-hero__title {
    padding: 1.5rem 1rem;
    gap: 0.75rem;
  }
}

.p-access-hero__title-en-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-access-hero__title-en-wrap {
    gap: 0.75rem;
  }
}

.p-access-hero__title-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 19px;
}
.p-access-hero__title-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-access-hero__title-icon--reverse {
  transform: rotate(180deg) scaleY(-1);
}

.p-access-hero__title-en {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-access-hero__title-en {
    font-size: 1.125rem;
  }
}

.p-access-hero__title-ja {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-access-hero__title-ja {
    font-size: 1.75rem;
  }
}

/* 周辺地図セクション */
.p-access-map {
  padding: 10rem 0;
}
@media screen and (max-width: 767px) {
  .p-access-map {
    padding: 3.5rem 0;
  }
}

.p-access-map__inner {
  max-width: 781px;
}

.p-access-map__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-access-map__content {
    gap: 2rem;
    padding: 0 1rem;
  }
}

.p-access-map__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .p-access-map__title {
    gap: 1rem;
  }
}

.p-access-map__title-icon {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
}
.p-access-map__title-icon img {
  display: block;
}
.p-access-map__title-icon--reverse {
  transform: rotate(180deg) scaleY(-1);
}

.p-access-map__title-text {
  color: #333;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-access-map__title-text {
    font-size: 1.5rem;
  }
}

.p-access-map__body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-access-map__body {
    gap: 1.25rem;
  }
}

.p-access-map__img {
  width: 1000px;
  max-width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: auto;
  height: 450px;
}
.p-access-map__img iframe {
  width: 100%;
  height: 100%;
  display: block;
}

@media screen and (max-width: 767px) {
  .p-access-map__img {
    width: 100%; /* 親要素(inner)の幅に戻す */
    left: auto;
    transform: none;
    height: 300px; /* スマホ用の高さ */
  }
}

.p-access-map__info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
  padding-top: 0.5rem;
}

.p-access-map__info-label {
  color: #22a266;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-access-map__info-label {
    font-size: 0.875rem;
  }
}

.p-access-map__info-text {
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-access-map__info-text {
    font-size: 0.875rem;
  }
}

/* ========================================
   contactページ
   ======================================== */

/* ヒーローセクション */
.p-contact-hero {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-contact-hero {
    height: 350px;
  }
}

.p-contact-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.p-contact-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.p-contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(212, 212, 212, 0.5);
  mix-blend-mode: screen;
}

.p-contact-hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  width: 580px;
  max-width: 90%;
}
@media screen and (max-width: 767px) {
  .p-contact-hero__content {
    width: 100%;
    padding: 0 1rem;
  }
}

.p-contact-hero__title {
  background: rgba(13, 132, 76, 0.9);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact-hero__title {
    padding: 1.5rem 1rem;
    gap: 0.75rem;
  }
}

.p-contact-hero__title-en-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-contact-hero__title-en-wrap {
    gap: 0.75rem;
  }
}

.p-contact-hero__title-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 12px;
  height: 19px;
}
.p-contact-hero__title-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.p-contact-hero__title-icon--reverse {
  transform: rotate(180deg) scaleY(-1);
}

.p-contact-hero__title-en {
  color: #fff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .p-contact-hero__title-en {
    font-size: 1.125rem;
  }
}

.p-contact-hero__title-ja {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-contact-hero__title-ja {
    font-size: 1.75rem;
  }
}

/* 説明文 */
.p-contact-intro {
  padding: 2rem 0;
}
@media screen and (max-width: 767px) {
  .p-contact-intro {
    padding: 1.5rem 0;
  }
}

.p-contact-intro__inner {
  max-width: 1001px;
}

.p-contact-intro__text {
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-contact-intro__text {
    font-size: 0.875rem;
    padding: 0 1rem;
  }
}

/* 電話・FAXセクション */
.p-contact-tel {
  padding: 2.5rem 0;
}
@media screen and (max-width: 767px) {
  .p-contact-tel {
    padding: 2rem 0;
  }
}

.p-contact-tel__inner {
  max-width: 1001px;
}

.p-contact-tel__content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-contact-tel__content {
    gap: 2rem;
    padding: 0 1rem;
  }
}

.p-contact-tel__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .p-contact-tel__title {
    gap: 1rem;
  }
}

.p-contact-tel__title-icon {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
}
.p-contact-tel__title-icon img {
  display: block;
}
.p-contact-tel__title-icon--reverse {
  transform: rotate(180deg) scaleY(-1);
}

.p-contact-tel__title-text {
  color: #333;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-contact-tel__title-text {
    font-size: 1.5rem;
  }
}

.p-contact-tel__table-wrap {
  width: 100%;
  overflow-x: auto;
}

.p-contact-tel__table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e5e5e5;
}

.p-contact-tel__table-row {
  border-bottom: 1px solid #e5e5e5;
}

.p-contact-tel__table-row:last-child {
  border-bottom: none;
}

.p-contact-tel__table-header {
  background-color: #efefee;
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3;
  text-align: left;
  padding: 1.5rem 2rem;
  width: 230px;
  vertical-align: middle;
  border-right: 1px solid #e5e5e5;
}
@media screen and (max-width: 767px) {
  .p-contact-tel__table-header {
    padding: 1rem;
    width: 120px;
    font-size: 0.875rem;
  }
}

.p-contact-tel__table-data {
  background-color: #fff;
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  padding: 1.5rem 2rem;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .p-contact-tel__table-data {
    padding: 1rem;
    font-size: 0.875rem;
  }
}

/* お問い合わせフォームセクション */
.p-contact-form {
  padding: 2.5rem 0 10rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form {
    padding: 2rem 0 3.5rem;
  }
}

.p-contact-form__inner {
  max-width: 999px;
}

.p-contact-form__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .p-contact-form__content {
    padding: 0 1rem;
  }
}

.p-contact-form__title-wrap {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-contact-form__title-wrap {
    gap: 2rem;
  }
}

.p-contact-form__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .p-contact-form__title {
    gap: 1rem;
  }
}

.p-contact-form__title-icon {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
}
.p-contact-form__title-icon img {
  display: block;
}
.p-contact-form__title-icon--reverse {
  transform: rotate(180deg) scaleY(-1);
}

.p-contact-form__title-text {
  color: #333;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-contact-form__title-text {
    font-size: 1.5rem;
  }
}

.p-contact-form__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
  width: 100%;
}

.p-contact-form__text {
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.p-contact-form__text p {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-contact-form__text {
    font-size: 0.875rem;
  }
}

.p-contact-form__guide {
  color: #333;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-contact-form__guide {
    font-size: 0.875rem;
  }
}

.p-contact-form__link {
  color: #22a266;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.p-contact-form__link a {
  color: #22a266;
  text-decoration: underline;
  text-underline-position: from-font;
}
.p-contact-form__link a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .p-contact-form__link {
    font-size: 0.875rem;
    word-break: break-all;
  }
}


