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

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

html {
  scroll-behavior: smooth;
}

body {
  color: #000000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}
body.is-drawer-open {
  overflow: hidden;
  -ms-touch-action: none;
      touch-action: none;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.l-inner {
  position: relative;
  width: 100%;
  max-width: 1360px;
  height: inherit;
  padding: 0 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 640px;
    padding: 0 1.25rem;
  }
}

.l-inner__narrow {
  max-width: 50rem;
}
@media screen and (max-width: 767px) {
  .l-inner__narrow {
    padding: 0 1.25rem;
    max-width: 600px;
  }
}

.c-btn {
  background: #2F472B;
  width: 460px;
  text-align: center;
  margin-inline: auto;
  color: #ffffff;
  padding-block: 35px;
  display: block;
  font-size: 22px;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .c-btn {
    width: 100%;
    max-width: 460px;
    font-size: 18px;
  }
}

.c-line-button {
  margin-top: 40px;
  background: #33d92d;
  padding: 34px 130px;
  font-size: 22px;
  font-weight: bold;
  border-radius: 6px;
  position: relative;
  z-index: 50;
  text-wrap: nowrap;
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .c-line-button {
    margin-top: 25px;
    padding-inline: 20px;
    width: 100%;
    font-size: 20px;
  }
}

.c-btn-fix_wrapper {
  position: fixed;
  bottom: 82px;
  left: 0;
  width: 349px;
  z-index: 99;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  -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;
}
@media (max-width: 1500px) {
  .c-btn-fix_wrapper {
    width: 300px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn-fix_wrapper {
    bottom: 0;
    left: 0;
    width: 100%;
    max-height: 120px;
  }
}

.c-btn-fix_wrapper.is-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

.c-btn-fix {
  padding: 21px 25px 28px 24px;
  background: #2F472B;
  text-align: center;
}
@media (max-width: 1500px) {
  .c-btn-fix {
    padding: 10px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn-fix {
    padding: 10px;
  }
}

.c-btn-fix__text {
  color: #ffffff;
  font-size: 21px;
  font-weight: bold;
  line-height: 1.81;
}
@media (max-width: 1500px) {
  .c-btn-fix__text {
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn-fix__text {
    font-size: 16px;
  }
}

.c-btn-fix__container {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr;
  -webkit-column-gap: 13px;
     -moz-column-gap: 13px;
          column-gap: 13px;
  row-gap: 16px;
}
@media screen and (max-width: 767px) {
  .c-btn-fix__container {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 5px;
    -webkit-column-gap: 5px;
       -moz-column-gap: 5px;
            column-gap: 5px;
  }
}

.c-btn-fix__line {
  grid-column: 1/3;
  grid-row: 1/2;
  border-radius: 6px;
  background-color: #33d92d;
  color: #ffffff;
  padding-block: 15px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.79;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1300px) {
  .c-btn-fix__line {
    padding: 10px;
    font-size: 18px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn-fix__line {
    font-size: 16px;
    grid-column: 1/2;
    grid-row: 1/1;
    padding: 0;
  }
}
@media (max-width: 475px) {
  .c-btn-fix__line {
    font-size: 14px;
  }
}
@media (max-width: 400px) {
  .c-btn-fix__line {
    font-size: 12px;
  }
}

.c-btn-fix__tel {
  grid-column: 1/2;
  grid-row: 2/3;
  border-radius: 6px;
  background: #ffffff;
  color: #2F472B;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.78;
  padding: 19px 26px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1500px) {
  .c-btn-fix__tel {
    padding: 10px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn-fix__tel {
    font-size: 16px;
    grid-column: 2/3;
    grid-row: 1/1;
    padding: 0;
  }
}
@media (max-width: 475px) {
  .c-btn-fix__tel {
    font-size: 14px;
    padding-inline: 15px;
  }
}
@media (max-width: 380px) {
  .c-btn-fix__tel {
    font-size: 12px;
  }
}

.c-btn-fix__contact {
  grid-column: 2/3;
  grid-row: 2/3;
  border-radius: 6px;
  background: #ffffff;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.22;
  padding: 13px 17px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1500px) {
  .c-btn-fix__contact {
    padding: 10px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn-fix__contact {
    font-size: 16px;
    padding-inline: 22px;
    grid-column: 3/4;
    grid-row: 1/1;
    padding: 0;
  }
}
@media (max-width: 475px) {
  .c-btn-fix__contact {
    font-size: 14px;
  }
}
@media (max-width: 425px) {
  .c-btn-fix__contact {
    font-size: 13px;
  }
}
@media (max-width: 400px) {
  .c-btn-fix__contact {
    font-size: 12px;
  }
}
@media (max-width: 380px) {
  .c-btn-fix__contact {
    font-size: 11.5px;
  }
}

.c-section__title {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 36px;
}

.c-section__title--main {
  font-size: 44px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-section__title--main {
    font-size: 22px;
  }
}

.c-section__title--sub {
  font-weight: 500;
  line-height: 2;
}

.c-page__top-inner {
  padding-inline: 88px;
}
@media (max-width: 1000px) {
  .c-page__top-inner {
    padding-inline: 50px;
  }
}
@media screen and (max-width: 767px) {
  .c-page__top-inner {
    padding-inline: 20px;
  }
}

.c-page__top-title {
  padding: 3px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #ffffff;
  font-size: 50px;
  font-weight: bold;
  line-height: 1.4;
  position: relative;
  margin: 0;
  padding-left: 14px;
  padding-right: 10px;
}
@media (max-width: 1000px) {
  .c-page__top-title {
    font-size: 50px;
  }
}
@media screen and (max-width: 767px) {
  .c-page__top-title {
    font-size: 40px;
  }
}
@media (max-width: 515px) {
  .c-page__top-title {
    font-size: 30px;
  }
}
@media (max-width: 400px) {
  .c-page__top-title {
    font-size: 25px;
  }
}

.c-breadcrumb {
  font-size: 14px;
  font-weight: 500;
  line-height: 2.29;
  text-align: right;
  color: #999;
  padding-top: 12px;
  padding-right: 27px;
}
@media screen and (max-width: 767px) {
  .c-breadcrumb {
    font-size: 12px;
    padding-right: 12px;
  }
}

.c-service {
  padding-block: 73px 79px;
}
@media screen and (max-width: 767px) {
  .c-service {
    padding-block: 40px;
  }
}

.c-service__image {
  width: 580px;
  height: auto;
  aspect-ratio: 580/175;
  margin-inline: auto;
  display: block;
  padding-right: 17px;
}
@media (max-width: 1280px) {
  .c-service__image {
    padding-right: 0;
    width: 460px;
  }
}
@media screen and (max-width: 767px) {
  .c-service__image {
    width: 300px;
  }
}

.c-service-text {
  margin-top: 24px;
  font-size: 24px;
  font-weight: bold;
  line-height: 2.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-service-text {
    font-size: 16px;
  }
}

.c-section__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 39px;
  margin-top: 48px;
}
@media (max-width: 1200px) {
  .c-section__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .c-section__cards {
    grid-template-columns: 1fr;
  }
}

.c-section__card {
  background: #ffffff;
  padding: 24px 25px 57px 25px;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .c-section__card {
    padding-inline: 15px;
  }
}

.c-section__card-image {
  width: 100%;
  height: auto;
  aspect-ratio: 350/176;
  background: #F4EEE6;
}

.c-section__card-title {
  font-size: 22px;
  font-weight: bold;
  color: #2F472B;
  margin-top: 27px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-section__card-title {
    font-size: 18px;
  }
}

.c-section__card-text {
  margin-top: 34px;
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .c-section__card-text {
    margin-top: 21px;
  }
}

.c-section__boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 66px;
  margin-top: 51px;
}
@media (max-width: 1200px) {
  .c-section__boxes {
    grid-template-columns: repeat(3, 1fr);
    -webkit-column-gap: 1.875rem;
       -moz-column-gap: 1.875rem;
            column-gap: 1.875rem;
    row-gap: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .c-section__boxes {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    row-gap: 1.875rem;
  }
}

.c-section__box {
  background: #ffffff;
}

.c-section__box-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

.c-section__box-title {
  font-size: 22px;
  font-weight: bold;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .c-section__box-title {
    font-size: 18px;
  }
}

.c-section__box-text {
  margin-top: 27px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-section__box-text {
    margin-top: 20px;
  }
}

.c-section__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 150px;
  margin-top: 62px;
}
@media (max-width: 1200px) {
  .c-section__items {
    gap: 100px;
  }
}
@media (max-width: 1000px) {
  .c-section__items {
    gap: 80px;
  }
}
@media screen and (max-width: 767px) {
  .c-section__items {
    grid-template-columns: 1fr;
  }
}

.c-section__item {
  position: relative;
}
.c-section__item:nth-child(1)::after, .c-section__item:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: 63%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  right: -92px;
  background: url(../img/flow-object.svg) no-repeat center center/contain;
  width: 35px;
  height: auto;
  aspect-ratio: 35/130;
}
@media (max-width: 1200px) {
  .c-section__item:nth-child(1)::after, .c-section__item:nth-child(2)::after {
    right: -74px;
    width: 25px;
  }
}
@media (max-width: 1000px) {
  .c-section__item:nth-child(1)::after, .c-section__item:nth-child(2)::after {
    right: -60px;
    width: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-section__item:nth-child(1)::after, .c-section__item:nth-child(2)::after {
    bottom: -75px;
    right: calc(50% - 10px);
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}

.c-section__item-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .c-section__item-image {
    max-width: 280px;
    margin-inline: auto;
    display: block;
  }
}

.c-section__item-title {
  font-size: 26px;
  font-weight: bold;
  margin-top: -9px;
  padding: 5px 18px 5px 17px;
  background: #FFF143;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  z-index: 10;
}
@media (max-width: 900px) {
  .c-section__item-title {
    font-size: 23px;
  }
}
@media screen and (max-width: 767px) {
  .c-section__item-title {
    font-size: 18px;
  }
}

.c-section__item-text {
  margin-top: 27px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .c-section__item-text {
    margin-top: 19px;
    max-width: 400px;
    margin-inline: auto;
  }
}

.c-section__item-arrow {
  width: 35px;
  height: auto;
  aspect-ratio: 35/130;
}

.c-section__objects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 49px;
  margin-top: 60px;
}
@media (max-width: 1200px) {
  .c-section__objects {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 767px) {
  .c-section__objects {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
}

.c-section__object {
  background: #f4eee6;
  padding: 30px 25px 38px 21px;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .c-section__object {
    padding-inline: 15px;
    padding-block: 25px;
  }
}

.c-section__object-title {
  font-size: 22px;
  font-weight: bold;
  color: #2F472B;
}
@media screen and (max-width: 767px) {
  .c-section__object-title {
    font-size: 18px;
  }
}

.c-section__object-text {
  margin-top: 29px;
  line-height: 1.4;
}

summary {
  display: block;
}
summary::-webkit-details-marker {
  display: none;
}
@media (any-hover: hover) {
  summary:hover {
    cursor: pointer;
  }
}

.c-faq-arrow {
  width: 14px;
  height: auto;
  aspect-ratio: 14/18;
  -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;
  -webkit-transform-origin: center;
          transform-origin: center;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.c-faq-item[open] .c-faq-arrow {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.c-faq-item[data-closing=true] .c-faq-arrow {
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}

.c-faq-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}

.c-faq-item-question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 23px;
     -moz-column-gap: 23px;
          column-gap: 23px;
  padding-block: 15px;
  padding-inline: 23px;
  background: #e7ead5;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .c-faq-item-question {
    padding-inline: 10px;
    gap: 10px;
  }
}
.c-faq-item-question:hover {
  opacity: 0.7;
}

.c-faq-item-question-text {
  font-weight: bold;
  line-height: 2;
}

.c-faq-item-answer {
  background: #e7ead5;
  padding-inline: 59px 50px;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .c-faq-item-answer {
    padding-inline: 20px;
  }
}

.c-faq-item-answer-text {
  padding-block: 12px 25px;
  font-weight: 500;
  line-height: 2;
  border-top: 1px solid #ffffff;
}

.c-section__cta {
  padding-block: 52px 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .c-section__cta {
    padding-block: 40px;
  }
}

@media screen and (max-width: 767px) {
  .c-section__cta-inner {
    max-width: 700px;
  }
}

.c-section__cta-container {
  background: #FFF143;
  text-align: center;
  padding-block: 51px 58px;
  padding-inline: 20px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .c-section__cta-container {
    padding-block: 30px 50px;
  }
}
@media (max-width: 400px) {
  .c-section__cta-container {
    padding-inline: 10px;
  }
}

.c-section__cta-title {
  font-size: 38px;
  font-weight: bold;
  text-wrap: nowrap;
}
@media (max-width: 1100px) {
  .c-section__cta-title {
    font-size: 28px;
  }
}
@media (max-width: 900px) {
  .c-section__cta-title {
    font-size: 25px;
  }
}
@media screen and (max-width: 767px) {
  .c-section__cta-title {
    line-height: 1.5;
    font-size: 20px;
  }
}
@media (max-width: 367px) {
  .c-section__cta-title {
    font-size: 17.5px;
  }
}

.c-section__cta-text {
  font-weight: 500;
  line-height: 2;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .c-section__cta-text {
    margin-top: 20px;
  }
}

.c-section__cta-img {
  position: absolute;
  bottom: 0;
  right: 75px;
  width: 167px;
  height: auto;
  aspect-ratio: 167/199;
}
@media (max-width: 1100px) {
  .c-section__cta-img {
    width: 140px;
  }
}
@media (max-width: 865px) {
  .c-section__cta-img {
    width: 120px;
  }
}
@media (max-width: 825px) {
  .c-section__cta-img {
    bottom: -100px;
    right: 0;
  }
}
@media (max-width: 600px) {
  .c-section__cta-img {
    width: 100px;
    bottom: -70px;
  }
}

.c-pagination {
  margin-top: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.c-page-number {
  color: #569A4B;
  position: relative;
  padding-inline: 24px;
}
.c-page-number::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #569A4B;
}
@media (max-width: 354px) {
  .c-page-number {
    padding-inline: 15px;
  }
}

.prev {
  color: #569A4B;
  text-wrap: nowrap;
}
.prev::before {
  display: none;
}

.current {
  color: #569A4B;
}

.next {
  color: #569A4B;
  text-wrap: nowrap;
}

.p-case__cta {
  padding-block: 92px 108px;
}
.p-case__cta .c-line-button {
  margin-top: 30px;
}

@media (max-width: 800px) {
  .c-sidebar {
    margin-top: 40px;
  }
}

@media (max-width: 800px) {
  .c-sidebar__inner {
    max-width: 400px;
    margin-inline: auto;
  }
}

.c-sidebar__line {
  text-wrap: nowrap;
  display: block;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.79;
  color: #ffffff;
  padding: 32px 32px 33px 27px;
  border-radius: 6px;
  background-color: #33d92d;
}
@media (max-width: 1400px) {
  .c-sidebar__line {
    font-size: 24px;
    padding-inline: 20px;
  }
}
@media (max-width: 1200px) {
  .c-sidebar__line {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-sidebar__line {
    font-size: 20px;
    padding: 20px;
    width: 100%;
  }
}

.c-sidebar__categories {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .c-sidebar__categories {
    margin-top: 20px;
  }
}

.c-sidebar__category-title,
.c-sidebar__post-title {
  margin-bottom: 10px;
  font-weight: bold;
  color: #ffffff;
  padding: 17px 20px 14px 20px;
  background: #2F472B;
}

.c-sidebar__category,
.c-sidebar__post {
  border-bottom: 1px solid #ccc;
  font-weight: bold;
}

.c-sidebar__category {
  padding: 11.5px 19px;
}
@media (max-width: 1400px) {
  .c-sidebar__category {
    padding-inline: 10px;
  }
}

.c-sidebar__posts {
  margin-top: 51px;
}
@media screen and (max-width: 767px) {
  .c-sidebar__posts {
    margin-top: 30px;
  }
}

.c-sidebar__post {
  padding: 12px 19px;
}
@media (max-width: 1400px) {
  .c-sidebar__post {
    padding-inline: 10px;
  }
}

.c-animated__fadeIn {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease;
  transition: opacity 0.6s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}

.c-animated__fadeIn.js-show {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-left: 16px;
  font-weight: 500;
  background: #ffffff;
}

.p-header__inner {
  position: relative;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  grid-template-columns: 219px 1fr;
  padding-right: 180px;
}
@media (max-width: 1080px) {
  .p-header__inner {
    padding-right: 100px;
  }
}
@media (max-width: 854px) {
  .p-header__inner {
    padding-block: 7.5px;
  }
}
@media (max-width: 767px) {
  .p-header__inner {
    padding-block: 10px;
  }
}

.p-header__logo img {
  width: 219px;
  height: auto;
  aspect-ratio: 219/60;
}
@media (max-width: 900px) {
  .p-header__logo img {
    width: 180px;
  }
}
@media (max-width: 767px) {
  .p-header__logo img {
    width: 160px;
  }
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: 29px;
     -moz-column-gap: 29px;
          column-gap: 29px;
}
@media (max-width: 854px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 9.5px;
     -moz-column-gap: 9.5px;
          column-gap: 9.5px;
}
.p-header__list li a {
  font-size: 15px;
  padding: 33px 10px;
  font-weight: 500;
}
@media (max-width: 1250px) {
  .p-header__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr;
    -webkit-column-gap: 15px;
       -moz-column-gap: 15px;
            column-gap: 15px;
  }
  .p-header__list li a {
    padding: 20px 5px;
  }
}
@media (max-width: 920px) {
  .p-header__list {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
  .p-header__list li a {
    font-size: 14px;
    padding: 15px 5px;
  }
}

.p-header__btn {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #2F472B;
  color: #ffffff;
  font-size: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  padding: 24px 35px;
  right: 0;
  top: 0;
  line-height: 2.2;
  font-weight: 500;
}
@media (max-width: 1250px) {
  .p-header__btn {
    padding: 10px 25px;
  }
}
@media (max-width: 854px) {
  .p-header__btn {
    display: none;
  }
}

.p-drawer__icon-wrapper {
  background: #2F472B;
  position: fixed;
  z-index: 102;
  top: 0;
  right: 0;
  width: 69px;
  height: auto;
  aspect-ratio: 1/1;
}
@media (min-width: 855px) {
  .p-drawer__icon-wrapper {
    display: none;
  }
}
@media (max-width: 855px) {
  .p-drawer__icon-wrapper {
    width: 64px;
  }
}

.p-drawer__icon {
  position: absolute;
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  top: 26px;
  right: 19px;
  width: 30px;
  height: 16px;
}
@media (max-width: 767px) {
  .p-drawer__icon {
    top: 22px;
    right: 20px;
    width: 24px;
    height: 16px;
  }
}

.p-drawer__icon--bar {
  width: 100%;
  height: 1px;
  background: #ffffff;
}

.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 7.5px;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.p-drawer__icon.js-show .p-drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -7.5px;
}

.p-drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 278px;
  height: 100vh;
  height: 100svh;
  background: #2F472B;
  color: #ffffff;
}

.p-drawer__icon--bar {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.p-drawer {
  translate: 101%;
  -webkit-transition: translate 0.5s ease;
  transition: translate 0.5s ease;
}
.p-drawer.js-show {
  translate: 0;
}

.p-drawer__body {
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 70px 40px;
  padding-left: 34px;
}

.p-drawer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 40px;
  gap: 5px;
}
.p-drawer__list li a {
  font-size: 15px;
  font-weight: 400;
  padding-block: 18px;
}

.p-drawer__btn {
  display: inline-block;
  padding: 20px 30px;
  width: 200px;
  text-align: center;
  background: #fff;
  font-size: 16px;
  font-weight: 400;
  color: #2F472B;
}

.p-footer__to {
  position: relative;
  height: 474px;
  z-index: 0;
  padding-block: 40px;
}
@media screen and (max-width: 767px) {
  .p-footer__to {
    padding-block: 80px 40px;
    height: 300px;
  }
}
.p-footer__to::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/footer-town.png) no-repeat center calc(100% + 200px)/cover;
  z-index: -1;
}
@media (max-width: 2100px) {
  .p-footer__to::before {
    background-position: center calc(100% + 100px);
  }
}
@media (max-width: 1650px) {
  .p-footer__to::before {
    background-position: center calc(100% + 1px);
    background-size: contain;
  }
}
@media (max-width: 1599px) {
  .p-footer__to::before {
    background-size: cover;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__to::before {
    background-position: center calc(100% + 100px);
  }
}

.p-footer__to-inner {
  position: relative;
  z-index: 10;
}

.p-footer__to-text {
  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;
  margin-top: -40px;
}
@media screen and (max-width: 767px) {
  .p-footer__to-text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.p-footer__to-title {
  font-size: 68px;
  font-weight: bold;
  text-wrap: nowrap;
}
@media (max-width: 1200px) {
  .p-footer__to-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__to-title {
    font-size: 20px;
  }
}

.p-footer__to-description {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
}
@media (max-width: 910px) {
  .p-footer__to-description {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__to-description {
    font-size: 16px;
    text-align: center;
  }
}

.p-footer__line {
  background: #2F472B;
  position: relative;
  padding-block: 82px 93px;
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}
@media (max-width: 849px) {
  .p-footer__line {
    padding-bottom: 150px;
  }
}

.p-footer__line-title {
  font-size: 44px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-footer__line-title {
    font-size: 20px;
  }
}

.p-footer__line-text {
  margin-top: 37px;
  font-weight: 500;
  line-height: 2;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .p-footer__line-text {
    margin-top: 20px;
  }
}

.p-footer__line-img {
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 440px;
  height: auto;
  aspect-ratio: 440/343;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 10;
}
@media (max-width: 1330px) {
  .p-footer__line-img {
    width: 300px;
  }
}
@media (max-width: 1118px) {
  .p-footer__line-img {
    width: 250px;
  }
}
@media (max-width: 1000px) {
  .p-footer__line-img {
    width: 200px;
    top: 85%;
  }
}
@media (max-width: 760px) {
  .p-footer__line-img {
    width: 150px;
  }
}

.p-footer__bottom {
  padding-block: 58px;
}

.p-footer__bottom-inner {
  padding-inline: 88px 55px;
  display: grid;
  grid-template-columns: 226px 394px 300px 300px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1600px;
  gap: 70px;
  margin-inline: auto;
}
@media (max-width: 1550px) {
  .p-footer__bottom-inner {
    grid-template-columns: 15% 27% 20% 20%;
    padding-inline: 40px;
    gap: 40px;
  }
}
@media (max-width: 1200px) {
  .p-footer__bottom-inner {
    grid-template-columns: 17% 27% 18% 18%;
    padding-inline: 20px;
  }
}
@media (max-width: 1150px) {
  .p-footer__bottom-inner {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-footer__bottom-inner {
    padding-block: 30px;
  }
}
@media (max-width: 574px) {
  .p-footer__bottom-inner {
    grid-template-columns: 1fr;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.p-footer-bottom-img {
  width: 14.1875rem;
  height: auto;
  aspect-ratio: 227/192;
  margin-top: 12px;
}
@media (max-width: 1400px) {
  .p-footer-bottom-img {
    width: 200px;
  }
}
@media (max-width: 1150px) {
  .p-footer-bottom-img {
    width: 250px;
    display: block;
    margin-inline: auto;
  }
}
@media (max-width: 574px) {
  .p-footer-bottom-img {
    width: 200px;
    margin-inline: auto;
  }
}

.p-footer__bottom-title {
  color: #2F472B;
  padding-bottom: 8px;
  border-bottom: 1px solid #569A4B;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.78;
}

.p-footer__bottom-text {
  margin-top: 11px;
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
}

.p-footer__bottom-store {
  margin-left: -10px;
}
.p-footer__bottom-store .p-footer__bottom-text {
  margin-top: 13px;
}

.p-footer__bottom-menu .p-footer__bottom-text {
  line-height: 2.5;
}

.p-footer__bottom-button {
  margin-top: 20px;
  padding-block: 19px;
  text-wrap: nowrap;
  border: solid 1px #707070;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.78;
  border-radius: 6px;
  color: #2f472b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}
.p-footer__bottom-button:hover {
  background: #2F472B;
  color: #ffffff;
  opacity: 1;
}

.p-footer-copyright {
  padding-block: 14px;
  border-top: 1px solid #ccc;
  text-align: center;
  font-weight: 500;
  letter-spacing: 1.6px;
}

.p-fv {
  background: url(../img/fv.png) no-repeat center center/cover;
  height: 900px;
  padding-block: 102px 156px;
  position: relative;
}
@media (max-width: 1250px) {
  .p-fv {
    padding-top: 150px;
  }
}
@media screen and (max-width: 767px) {
  .p-fv {
    height: 615px;
    padding-top: 100px;
  }
}

.p-fv__inner {
  padding-inline: 88px;
}
@media screen and (max-width: 767px) {
  .p-fv__inner {
    padding-inline: 20px;
  }
}

.p-fv__container {
  margin-top: 78px;
}
@media screen and (max-width: 767px) {
  .p-fv__container {
    margin-top: 0;
  }
}

.p-fv__text {
  font-size: 16px;
  font-weight: bold;
  line-height: 2;
  color: #ffffff;
  background: #2F472B;
  border-radius: 22px;
  padding: 7px 35px;
  display: inline-block;
}

.p-fv__title-wrapper {
  margin-top: 22px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  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;
  gap: 25px;
}

.p-fv__title {
  padding: 3px 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 68px;
  font-weight: bold;
  text-wrap: nowrap;
  position: relative;
  display: inline-block;
  margin: 0;
  line-height: 1;
}
@media (max-width: 1000px) {
  .p-fv__title {
    font-size: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__title {
    font-size: 40px;
  }
}
@media (max-width: 350px) {
  .p-fv__title {
    font-size: 35px;
  }
}
.p-fv__title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #ffffff;
  z-index: -1;
  right: 38px;
}
@media (max-width: 1000px) {
  .p-fv__title::before {
    right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__title::before {
    right: 25px;
  }
}
@media (max-width: 350px) {
  .p-fv__title::before {
    right: 20px;
  }
}

.p-fv__image {
  margin-top: 72px;
  width: 506px;
  height: auto;
  aspect-ratio: 506/153;
}
@media (max-width: 1280px) {
  .p-fv__image {
    width: 460px;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__image {
    margin-top: 42px;
    width: 300px;
  }
}
@media (max-width: 350px) {
  .p-fv__image {
    margin-left: -10px;
  }
}

.p-fv__company {
  width: 871px;
  height: auto;
  aspect-ratio: 871/108;
  position: absolute;
  bottom: -25px;
  right: 23px;
}
@media (max-width: 1280px) {
  .p-fv__company {
    width: 62%;
    bottom: -10px;
  }
}
@media (max-width: 1000px) {
  .p-fv__company {
    width: 50%;
    bottom: -10px;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__company {
    width: 60%;
    min-width: 300px;
    right: 0;
  }
}

.p-frontpage-intro {
  margin-block: 72px 50px;
  padding-block: 88px;
  background: url(../img/frontpage-bg.svg) no-repeat center center/contain;
}

.p-frontpage-intro__container-text {
  font-size: 24px;
  font-weight: bold;
  line-height: 2.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-frontpage-intro__container-text {
    font-size: 16px;
    line-height: 1.5;
  }
}

.p-frontpage-reason {
  background: #e7ead5;
  padding-block: 102px 132px;
}
@media screen and (max-width: 767px) {
  .p-frontpage-reason {
    padding-block: 40px;
  }
}

.p-frontpage-kaitori {
  padding-block: 100px;
}
@media screen and (max-width: 767px) {
  .p-frontpage-kaitori {
    padding-block: 40px;
  }
}

.p-frontpage-kaitori__btn {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .p-frontpage-kaitori__btn {
    margin-top: 24px;
  }
}

.p-frontpage-flow {
  padding-block: 48px 121px;
}
@media screen and (max-width: 767px) {
  .p-frontpage-flow {
    padding-bottom: 40px;
  }
}

.p-frontpage-flow__inner {
  max-width: 1274px;
}

.p-frontpage-flow__btn {
  margin-top: 54px;
}
@media screen and (max-width: 767px) {
  .p-frontpage-flow__btn {
    margin-top: 24px;
  }
}

.p-frontpage-area {
  background: #71896d;
  padding-block: 97px 72px;
}
@media screen and (max-width: 767px) {
  .p-frontpage-area {
    padding-block: 40px;
  }
}

.p-frontpage-area__title {
  color: #ffffff;
  -moz-text-align-last: left;
       text-align-last: left;
}

.p-frontpage-area__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 66px;
}
@media screen and (max-width: 767px) {
  .p-frontpage-area__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 33px;
  }
}

.p-frontpage-area__container-image {
  display: block;
  max-width: 659px;
  width: 51%;
  height: auto;
  aspect-ratio: 659/494;
  margin-left: 32px;
}
@media screen and (max-width: 767px) {
  .p-frontpage-area__container-image {
    width: 100%;
    margin-left: 0;
  }
}

.p-frontpage-area__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-left: -26px;
  gap: 33px;
  font-weight: 500;
  line-height: 2;
  margin-top: 40px;
}
.p-frontpage-area__contents p {
  color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-frontpage-area__contents {
    gap: 21px;
    line-height: 1.5;
    margin-top: 0;
    margin-left: 0;
  }
}

.p-frontpage-area__contents-box {
  margin-top: 3px;
  padding: 27px 32px;
  border: solid 1px #707070;
  background-color: #f4eee6;
}
@media screen and (max-width: 767px) {
  .p-frontpage-area__contents-box {
    padding-inline: 15px;
  }
}

.p-frontpage-voice {
  padding-block: 95px;
}
@media screen and (max-width: 767px) {
  .p-frontpage-voice {
    padding-block: 40px;
  }
}

.p-frontpage-voice__btn {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .p-frontpage-voice__btn {
    margin-top: 24px;
  }
}

.p-frontpage-faq {
  padding-block: 45px 179px;
}
@media screen and (max-width: 767px) {
  .p-frontpage-faq {
    padding-block: 40px;
  }
}

.p-frontpage-faq_items {
  margin-top: 54px;
}
@media screen and (max-width: 767px) {
  .p-frontpage-faq_items {
    margin-top: 30px;
  }
}

.p-reason__top {
  background: url(../img/reason-top.png) no-repeat center center/cover;
  height: 321px;
  padding-block: 214px 100px;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 850px) {
  .p-reason__top {
    margin-top: 65px;
    background-image: url(../img/fv-SP.png);
    background-position: center left;
  }
}

.p-reason__service {
  padding-top: 30px;
}

.p-reason__promise {
  background: #e7ead5;
  padding-block: 101px 121px;
}
@media screen and (max-width: 767px) {
  .p-reason__promise {
    padding-block: 40px;
  }
}

.p-reason__promise .c-section__cards {
  margin-top: 54px;
}
.p-reason__promise .c-section__card {
  padding-bottom: 53px;
}

.p-reason__mind {
  padding-block: 84px 72px;
}
@media screen and (max-width: 767px) {
  .p-reason__mind {
    padding-block: 40px;
  }
}

.p-reason__mind .c-section__items {
  margin-top: 66px;
}
@media (max-width: 1300px) {
  .p-reason__mind .c-section__items {
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__mind .c-section__items {
    gap: 30px;
  }
}
.p-reason__mind .c-section__item::after {
  display: none;
}
.p-reason__mind .c-section__item-text {
  margin-top: 21px;
}

.p-reason__comparison {
  padding-block: 62px 77px;
}
.p-reason__comparison .c-section__title {
  text-align: left;
}

.p-reason__table {
  margin-top: 45px;
  overflow-x: auto;
  width: 100%;
  border-collapse: collapse;
}
.p-reason__table th,
.p-reason__table td {
  padding-block: 18px 17px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.78;
  border: 1px solid #cccccc;
  padding-inline: 24px 20px;
  text-align: left;
}
.p-reason__table th:nth-child(1),
.p-reason__table td:nth-child(1) {
  width: 26%;
}
.p-reason__table th:nth-child(2),
.p-reason__table td:nth-child(2) {
  width: 37%;
}
.p-reason__table th:nth-child(3),
.p-reason__table td:nth-child(3) {
  width: 37%;
}
.p-reason__table thead th {
  background-color: #f5f5f5;
}
.p-reason__table tbody tr {
  border-top: 1px solid #cccccc;
}
.p-reason__table tbody tr td:nth-child(2) {
  color: #569A4B;
}
@media (max-width: 836px) {
  .p-reason__table th, .p-reason__table td {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-reason__table {
    margin-top: 20px;
  }
  .p-reason__table th,
  .p-reason__table td {
    padding-inline: 10px;
    padding-block: 15px;
  }
  .p-reason__table th:nth-child(1),
  .p-reason__table td:nth-child(1) {
    width: auto;
  }
  .p-reason__table th:nth-child(2),
  .p-reason__table td:nth-child(2) {
    width: auto;
  }
  .p-reason__table th:nth-child(3),
  .p-reason__table td:nth-child(3) {
    width: auto;
  }
}
@media (max-width: 650px) {
  .p-reason__table th, .p-reason__table td {
    font-size: 16px;
  }
}
@media (max-width: 631px) {
  .p-reason__table th,
  .p-reason__table td {
    padding-inline: 5px;
    padding-block: 10px;
    font-size: 14px;
  }
  .p-reason__table th {
    text-wrap: nowrap;
  }
}
@media (max-width: 631px) and (max-width: 390px) {
  .p-reason__table th, .p-reason__table td {
    font-size: 12px;
  }
}

.p-reason__table-br {
  display: none;
}
@media (min-width: 404px) and (max-width: 540px) {
  .p-reason__table-br {
    display: block;
  }
}
.p-reason__table-br--small {
  display: none;
}
@media (max-width: 450px) {
  .p-reason__table-br--small {
    display: block;
  }
}

.p-reason__comparison-text {
  margin-top: 22px;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.29;
}
@media screen and (max-width: 767px) {
  .p-reason__comparison-text {
    margin-top: 14px;
    line-height: 1.5;
  }
}

.p-reason__voice {
  padding-block: 72px 62px;
}
@media screen and (max-width: 767px) {
  .p-reason__voice {
    padding-block: 40px;
  }
}

.p-reason__voice .c-section__title {
  text-align: left;
}
.p-reason__voice .c-section__objects {
  margin-top: 47px;
}
@media (max-width: 1200px) {
  .p-reason__voice .c-section__objects {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1000px) {
  .p-reason__voice .c-section__objects {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .p-reason__voice .c-section__objects {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
}
.p-reason__voice .c-section__object {
  padding: 34px 24px 37px 26px;
}
@media (max-width: 1000px) {
  .p-reason__voice .c-section__object {
    padding: 20px;
  }
}
.p-reason__voice .c-section__object-text {
  margin-top: 0;
}

.p-reason-voice__btn {
  margin-top: 70px;
  margin-inline: auto 0;
}
@media screen and (max-width: 767px) {
  .p-reason-voice__btn {
    margin-top: 30px;
  }
}

.p-reason__cta .c-line-button {
  margin-top: 31px;
}

.p-kaitori__top {
  background: url(../img/kaitori-top.png) no-repeat center center/cover;
  height: 321px;
  padding-block: 214px 100px;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 850px) {
  .p-kaitori__top {
    margin-top: 65px;
    background-image: url(../img/fv-SP.png);
    background-position: center left;
  }
}

.p-kaitori__top-title {
  padding-left: 11px;
  padding-right: 21px;
}

.p-kaitori__intro {
  padding-block: 57px 67px;
}
@media screen and (max-width: 767px) {
  .p-kaitori__intro {
    padding-block: 40px;
  }
}

.p-kaitori__intro-text {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 3;
}
@media screen and (max-width: 767px) {
  .p-kaitori__intro-text {
    font-size: 16px;
    line-height: 2.5;
  }
}

.p-kaitori__genre {
  padding-block: 52px 64px;
}
@media screen and (max-width: 767px) {
  .p-kaitori__genre {
    padding-block: 40px;
  }
}

.p-kaitori__point {
  padding-block: 55px 70px;
}
@media screen and (max-width: 767px) {
  .p-kaitori__point {
    padding-block: 40px;
  }
}

.p-kaitori__point-container {
  padding: 73px 30px 85px 70px;
  border-radius: 10px;
  background-color: #f4eee6;
  position: relative;
}
@media (max-width: 900px) {
  .p-kaitori__point-container {
    padding: 50px 20px 50px 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-kaitori__point-container {
    padding-block: 40px;
  }
}
@media (max-width: 530px) {
  .p-kaitori__point-container {
    padding-inline: 20px;
  }
}

.p-kaitori__point-title {
  font-size: 38px;
  font-weight: bold;
}
@media (max-width: 920px) {
  .p-kaitori__point-title {
    font-size: 28px;
  }
}
@media screen and (max-width: 767px) {
  .p-kaitori__point-title {
    font-size: 20px;
  }
}

.p-kaitori__point-contents {
  margin-top: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .p-kaitori__point-contents {
    margin-top: 25px;
    gap: 15px;
  }
}

.p-kaitori__point-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-kaitori__point-text-wrapper {
    gap: 15px;
  }
}

.p-kaitori__point-top {
  color: #569A4B;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.78;
}

.p-kaitori__point-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.78;
}
@media screen and (max-width: 767px) {
  .p-kaitori__point-text {
    font-size: 14px;
  }
}

.p-kaitori__point-image {
  position: absolute;
  top: 53%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 109px;
  width: 203px;
  height: auto;
  aspect-ratio: 203/287;
}
@media (max-width: 1200px) {
  .p-kaitori__point-image {
    width: 150px;
    right: 40px;
  }
}
@media (max-width: 1100px) {
  .p-kaitori__point-image {
    width: 120px;
  }
}
@media (max-width: 1035px) {
  .p-kaitori__point-image {
    top: 30px;
  }
}
@media (max-width: 920px) {
  .p-kaitori__point-image {
    width: 120px;
  }
}
@media screen and (max-width: 767px) {
  .p-kaitori__point-image {
    width: 100px;
    top: 10px;
  }
}
@media (max-width: 520px) {
  .p-kaitori__point-image {
    width: 80px;
    right: 0;
  }
}
@media (max-width: 437px) {
  .p-kaitori__point-image {
    top: 316px;
    width: 60px;
  }
}
@media (max-width: 380px) {
  .p-kaitori__point-image {
    top: 331px;
  }
}

.p-kaitori__faq {
  padding-block: 78px 135px;
}
@media screen and (max-width: 767px) {
  .p-kaitori__faq {
    padding-block: 40px;
  }
}

.p-kaitori-faq_items {
  margin-top: 50px;
}

.p-kaitori__cta-button {
  margin-top: 29px;
}

.p-flow__top {
  background: url(../img/flow-top.png) no-repeat center center/cover;
  height: 321px;
  padding-block: 214px 100px;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 850px) {
  .p-flow__top {
    margin-top: 65px;
    background-image: url(../img/fv-SP.png);
    background-position: center left;
  }
}

.p-flow__service {
  padding-top: 30px;
}

.p-flow__kaitori {
  padding-block: 82px 96px;
  background: #e7ead5;
}
@media screen and (max-width: 767px) {
  .p-flow__kaitori {
    padding-block: 40px;
  }
}

.p-flow__kaitori .c-section__items {
  margin-top: 67px;
}

.p-flow__kaitori .c-section__item:nth-child(1)::after, .p-flow__kaitori .c-section__item:nth-child(2)::after {
  bottom: 74%;
}
@media (max-width: 950px) {
  .p-flow__kaitori .c-section__item:nth-child(1)::after, .p-flow__kaitori .c-section__item:nth-child(2)::after {
    bottom: 80%;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__kaitori .c-section__item:nth-child(1)::after, .p-flow__kaitori .c-section__item:nth-child(2)::after {
    bottom: -75px;
  }
}
.p-flow__kaitori .c-section__item:nth-child(3) .p-flow__kaitori-bottom {
  margin-top: 8px;
}
@media (min-width: 960px) and (max-width: 1095px) {
  .p-flow__kaitori .c-section__item:nth-child(3) .p-flow__kaitori-bottom {
    margin-top: 32px;
  }
}

.p-flow__kaitori .c-section__item-title {
  margin-top: -12px;
}

.p-flow__kaitori .c-section__item-text {
  margin-top: 20px;
  line-height: 1.5;
}

.p-flow__kaitori-inner {
  max-width: 1274px;
}

.p-flow__kaitori-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}
.p-flow__kaitori-bottom p {
  background: #ffffff;
  padding: 10px 10px 12px 31px;
  position: relative;
  line-height: 1.5;
}
.p-flow__kaitori-bottom p::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 13px;
  height: 100%;
  background: #569A4B;
}
@media screen and (max-width: 767px) {
  .p-flow__kaitori-bottom {
    max-width: 500px;
    margin-inline: auto;
  }
}

.p-flow__method {
  padding-block: 99px 92px;
}
@media screen and (max-width: 767px) {
  .p-flow__method {
    padding-block: 40px;
  }
}

.p-flow__method .c-section__objects {
  margin-top: 68px;
  gap: 38px;
}

.p-flow__method .c-section__object {
  padding: 36px 25px 43px 25px;
}
.p-flow__method .c-section__object:nth-child(2) .p-flow__method-contents {
  margin-top: 48px;
}
@media (max-width: 1313px) {
  .p-flow__method .c-section__object:nth-child(2) .p-flow__method-contents {
    margin-top: 26px;
  }
}

.p-flow__method-contents {
  margin-top: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background: #ffffff;
  padding: 19px 27px 23px 27px;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  .p-flow__method-contents {
    margin-top: 15px;
    padding: 15px;
  }
}

.p-flow__method-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-flow__method-text-wrapper {
    gap: 10px;
  }
}

.p-flow__method-top {
  color: #569A4B;
  font-size: 18px;
  line-height: 2;
}

.p-flow__method-text {
  color: #569A4B;
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-flow__method-text {
    font-size: 14px;
  }
}

.p-flow__prepare {
  padding-block: 116px 72px;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-flow__prepare {
    padding-block: 40px;
  }
}

.p-flow__prepare-boxes {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
@media (max-width: 980px) {
  .p-flow__prepare-boxes {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__prepare-boxes {
    grid-template-columns: 1fr;
  }
}

.p-flow__prepare-box {
  background: #569A4B;
  border-radius: 6px;
  padding: 38px 27px 31px 47px;
  color: #ffffff;
}
@media (max-width: 1200px) {
  .p-flow__prepare-box {
    padding: 25px;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__prepare-box {
    padding: 20px;
  }
}

.p-flow__prepare-box-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 31px;
}
@media screen and (max-width: 767px) {
  .p-flow__prepare-box-title {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.p-flow__prepare-text-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 14px;
}

.p-flow__prepare-text-arrow {
  width: 14px;
  height: auto;
  aspect-ratio: 14/18;
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.p-flow__prepare-text {
  font-weight: 500;
  line-height: 2;
  text-decoration: underline;
}

.p-flow__prepare-description {
  margin-top: 29px;
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-flow__prepare-description {
    margin-top: 20px;
    font-size: 12px;
  }
}

.p-flow__time {
  padding-block: 62px 131px;
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  .p-flow__time {
    padding-block: 40px;
  }
}

.p-flow__time-table {
  margin-top: 44px;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.p-flow__time-table th {
  background: #569A4B;
  color: #ffffff;
  padding-inline: 20px 10px;
}
.p-flow__time-table th:nth-last-child(1) {
  background: #ffffff;
  color: #569A4B;
  padding-inline: 16px 10px;
}
.p-flow__time-table th,
.p-flow__time-table td {
  border: 1px solid #ccc;
  vertical-align: middle;
  text-align: left;
  padding-block: 18px 17px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.78;
}
.p-flow__time-table th:nth-child(1),
.p-flow__time-table td:nth-child(1) {
  width: 28%;
}
.p-flow__time-table th:nth-child(2),
.p-flow__time-table td:nth-child(2) {
  width: 78%;
}
.p-flow__time-table tbody tr {
  border-top: 1.5px solid #ccc;
}
.p-flow__time-table tbody td {
  color: #569A4B;
  background: #ffffff;
  padding-inline: 16px 10px;
}
@media screen and (max-width: 767px) {
  .p-flow__time-table {
    margin-top: 20px;
  }
  .p-flow__time-table th,
  .p-flow__time-table td {
    font-size: 16px;
  }
}
@media (max-width: 570px) {
  .p-flow__time-table th,
  .p-flow__time-table td {
    font-size: 14px;
    padding: 10px;
  }
}
@media (max-width: 435px) {
  .p-flow__time-table th,
  .p-flow__time-table td {
    font-size: 12px;
  }
}

.p-flow__faq {
  padding-block: 104px 98px;
}
@media screen and (max-width: 767px) {
  .p-flow__faq {
    padding-block: 40px;
  }
}

.p-flow-faq_items {
  margin-top: 50px;
}

.p-flow__faq-text {
  text-align: right;
  font-weight: 500;
  line-height: 2;
  margin-top: 15px;
}
@media (max-width: 500px) {
  .p-flow__faq-text {
    text-align: left;
  }
}

.p-flow__cta {
  padding-bottom: 98px;
}

.p-flow__cta .c-line-button {
  margin-top: 29px;
}

.p-company__top {
  background: url(../img/company-top.png) no-repeat center center/cover;
  height: 321px;
  padding-block: 214px 100px;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 850px) {
  .p-company__top {
    margin-top: 65px;
    background-image: url(../img/fv-SP.png);
    background-position: center left;
  }
}

.p-company__top-title {
  padding-left: 11px;
  padding-right: 20px;
}

.p-company__intro {
  padding-block: 23px 9px;
}
@media screen and (max-width: 767px) {
  .p-company__intro {
    padding-block: 40px;
  }
}

.p-company__intro-title {
  font-size: 68px;
  font-weight: bold;
  text-align: center;
  line-height: 1.45;
  padding-left: 25px;
}
@media (max-width: 1000px) {
  .p-company__intro-title {
    font-size: 50px;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-company__intro-title {
    font-size: 40px;
  }
}
@media (max-width: 350px) {
  .p-company__intro-title {
    font-size: 35px;
  }
}

.p-company__intro-text {
  font-size: 20px;
  font-weight: bold;
  text-align: center;
  line-height: 3;
  margin-top: 37px;
}
@media screen and (max-width: 767px) {
  .p-company__intro-text {
    font-size: 16px;
    line-height: 2;
    margin-top: 30px;
  }
}

.p-company__message {
  padding-block: 66px 106px;
}
@media (max-width: 850px) {
  .p-company__message {
    padding-block: 0 40px;
  }
}

.p-company__message-container {
  background: #e7ead5;
  border-radius: 10px;
  padding-block: 76px 99px;
  padding-inline: 20px;
}
@media screen and (max-width: 767px) {
  .p-company__message-container {
    padding-block: 30px;
  }
}

.p-company__message-title {
  text-align: center;
  font-size: 44px;
  font-weight: bold;
}
@media (max-width: 1200px) {
  .p-company__message-title {
    font-size: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-company__message-title {
    font-size: 20px;
  }
}

.p-company__message-contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1057px;
  margin-inline: auto;
  margin-top: 48px;
  gap: 70px;
}
@media (max-width: 1200px) {
  .p-company__message-contents {
    gap: 40px;
  }
}
@media (max-width: 850px) {
  .p-company__message-contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}

.p-company__message-img {
  max-width: 341px;
  height: auto;
  aspect-ratio: 341/420;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: 12px;
  border-radius: 6px;
}
@media (max-width: 1000px) {
  .p-company__message-img {
    width: 250px;
    margin-top: -60px;
    margin-left: 0;
  }
}
@media (max-width: 913px) {
  .p-company__message-img {
    margin-top: -100px;
  }
}
@media (max-width: 850px) {
  .p-company__message-img {
    margin-top: 0;
    margin-inline: auto;
    width: 100%;
  }
}
@media (max-width: 500px) {
  .p-company__message-img {
    width: 200px;
  }
}

.p-company__message-text-wrapper {
  margin-top: 14px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
@media (max-width: 850px) {
  .p-company__message-text-wrapper {
    max-width: 600px;
    margin-inline: auto;
  }
}

.p-company__message-text {
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-company__message-text {
    font-size: 16px;
    gap: 10px;
    line-height: 1.5;
  }
}
.p-company__message-text:nth-child(2) {
  margin-top: 37px;
}

.p-company__message-name {
  text-align: right;
  margin-top: 45px;
  font-size: 18px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-company__message-name {
    font-size: 14px;
  }
}

.p-company__info-table {
  margin-top: 44px;
  table-layout: fixed;
  border-collapse: collapse;
  width: 100%;
}
.p-company__info-table th {
  background: #f5f5f5;
  padding-inline: 20px 10px;
}
.p-company__info-table th:nth-last-child(1) {
  background: #ffffff;
  padding-inline: 16px 10px;
}
.p-company__info-table th,
.p-company__info-table td {
  border: 1px solid #ccc;
  vertical-align: middle;
  text-align: left;
  padding-block: 18px 17px;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.78;
}
.p-company__info-table th:nth-child(1),
.p-company__info-table td:nth-child(1) {
  width: 28%;
}
.p-company__info-table th:nth-child(2),
.p-company__info-table td:nth-child(2) {
  width: 78%;
}
.p-company__info-table tbody tr {
  border-top: 1.5px solid #ccc;
}
.p-company__info-table tbody td {
  background: #ffffff;
  padding-inline: 16px 10px;
}
@media screen and (max-width: 767px) {
  .p-company__info-table {
    margin-top: 20px;
  }
  .p-company__info-table th,
  .p-company__info-table td {
    font-size: 16px;
  }
}
@media (max-width: 570px) {
  .p-company__info-table th,
  .p-company__info-table td {
    font-size: 14px;
    padding: 10px;
  }
}
@media (max-width: 435px) {
  .p-company__info-table th,
  .p-company__info-table td {
    font-size: 12px;
    padding-inline: 5px;
  }
}

@media screen and (max-width: 767px) {
  .p-company__info {
    padding-block: 40px;
  }
}

.p-company__access {
  padding-block: 86px 97px;
}
@media screen and (max-width: 767px) {
  .p-company__access {
    padding-block: 40px;
  }
}

.p-company__access-map {
  margin-top: 34px;
  width: 100%;
}
.p-company__access-map iframe {
  width: 100%;
}

.p-company__attempt {
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  .p-company__attempt {
    padding-bottom: 40px;
  }
}

.p-company__attempt-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  margin-top: 46px;
}
@media (max-width: 1200px) {
  .p-company__attempt-boxes {
    gap: 45px;
  }
}
@media screen and (max-width: 767px) {
  .p-company__attempt-boxes {
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 20px;
  }
}

.p-company__attempt-box {
  background-color: #f5f5f5;
  padding: 36px 46px 43px 47px;
  border-radius: 6px;
}
@media screen and (max-width: 767px) {
  .p-company__attempt-box {
    padding: 30px 20px 20px 20px;
  }
}

.p-company__attempt-box-title {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-company__attempt-box-title {
    font-size: 18px;
  }
}

.p-company__attempt-box-text {
  margin-top: 32px;
  font-weight: 500;
  line-height: 2;
}

.p-company__attempt-box-link {
  margin-top: 15px;
  font-weight: 500;
  line-height: 2;
  display: block;
  color: #569A4B;
  text-decoration: underline;
}

.p-company__cta {
  padding-bottom: 135px;
}

.p-company__cta .c-line-button {
  margin-top: 29px;
}

.p-faq__top {
  background: url(../img/faq-top.png) no-repeat center center/cover;
  height: 321px;
  padding-block: 214px 100px;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 850px) {
  .p-faq__top {
    margin-top: 65px;
    background-image: url(../img/fv-SP.png);
    background-position: center left;
  }
}

.p-faq__top-title {
  padding-right: 20px;
}

.p-faq__intro {
  padding-block: 86px 95px;
}
@media screen and (max-width: 767px) {
  .p-faq__intro {
    padding-block: 40px;
  }
}

.p-faq {
  padding-bottom: 56px;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding-bottom: 40px;
  }
}

.p-faq__intro-text {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  line-height: 2.5;
}
@media screen and (max-width: 767px) {
  .p-faq__intro-text {
    font-size: 16px;
    line-height: 1.5;
  }
}

.p-faq__cta {
  padding-bottom: 137px;
}
@media screen and (max-width: 767px) {
  .p-faq__cta {
    padding-bottom: 40px;
  }
}

.p-contact__top {
  background: url(../img/contact-top.png) no-repeat center center/cover;
  height: 321px;
  padding-block: 214px 100px;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 850px) {
  .p-contact__top {
    margin-top: 65px;
    background-image: url(../img/fv-SP.png);
    background-position: center left;
  }
}

.p-contact__top-title {
  padding-left: 11px;
  padding-right: 22px;
}

.p-contact__service {
  padding-block: 55px 53px;
}
@media screen and (max-width: 767px) {
  .p-contact__service {
    padding-block: 40px;
  }
}

.p-contact__cta {
  padding-block: 52px 0;
}
@media screen and (max-width: 767px) {
  .p-contact__cta {
    padding-block: 40px 0;
  }
}

.p-contact__tel {
  padding-block: 54px 0;
}
@media screen and (max-width: 767px) {
  .p-contact__tel {
    padding-block: 40px 0;
  }
}

.p-contact__cta .c-line-button,
.p-contact__tel .c-line-button {
  margin-top: 30px;
}

.p-contact__tel .c-line-button {
  padding-inline: 153px;
}
@media screen and (max-width: 767px) {
  .p-contact__tel .c-line-button {
    padding-inline: 20px;
  }
}

.p-contact__form-section {
  padding-block: 83px 233px;
}
@media (max-width: 1200px) {
  .p-contact__form-section {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__form-section {
    padding-block: 40px;
  }
}

.p-contact__form-section .c-section__title--main {
  font-size: 38px;
}
@media screen and (max-width: 767px) {
  .p-contact__form-section .c-section__title--main {
    font-size: 20px;
  }
}

.p-contact__form-section .c-section__title {
  gap: 28px;
}

.p-contact__form {
  margin-top: 28px;
}

.p-contact__tel .c-section__cta-container {
  background: #f5f5f5;
}

.p-contact__tel .c-line-button {
  background: #2F472B;
}

.p-contact {
  padding-block: 94px 130px;
}

.p-contact__inner {
  width: min(729px, 100%);
  padding-inline: 20px;
  margin-inline: auto;
}

.p-contact__title {
  font-size: 60px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 72px;
  text-transform: uppercase;
  text-align: center;
}

.p-contact__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.p-contact__row {
  display: grid;
  grid-template-columns: 337px 1fr;
  -webkit-column-gap: 19px;
     -moz-column-gap: 19px;
          column-gap: 19px;
  padding-right: 11px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #ccc;
  border-right: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.p-contact__row:nth-child(1) {
  border-top: 1px solid #ccc;
}
.p-contact__row:nth-child(5) .p-contact__data {
  margin-block: 12px;
}
@media (max-width: 1200px) {
  .p-contact__row {
    grid-template-columns: 200px 1fr;
  }
}
@media (max-width: 650px) {
  .p-contact__row {
    grid-template-columns: 35% 1fr;
    gap: 10px;
  }
}

.p-contact__head {
  font-size: 18px;
  line-height: 1.78;
  font-weight: bold;
  background-color: #f5f5f5;
  border-right: 1px solid #ccc;
  padding: 20px 10px 15px 20px;
  height: 100%;
}
.p-contact__head:nth-child(5) {
  height: 277px;
}
@media screen and (max-width: 767px) {
  .p-contact__head {
    font-size: 16px;
  }
}
@media (max-width: 650px) {
  .p-contact__head {
    font-size: 14px;
    padding-inline: 10px;
  }
}
@media (max-width: 510px) {
  .p-contact__head {
    font-size: 12px;
  }
}

.p-contact__head-br {
  display: none;
}
@media (min-width: 650px) and (max-width: 1200px) {
  .p-contact__head-br {
    display: block;
  }
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  border-radius: 0;
  width: 50%;
  border: none;
  padding: 17px 10px 12px 21px;
  border-radius: 10px;
  background-color: #f5f5f5;
}
input[type=text]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.78;
  color: #999;
}
input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, textarea::-moz-placeholder {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.78;
  color: #999;
}
input[type=text]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, textarea:-ms-input-placeholder {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.78;
  color: #999;
}
input[type=text]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, textarea::-ms-input-placeholder {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.78;
  color: #999;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
textarea::placeholder {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.78;
  color: #999;
}
@media screen and (max-width: 767px) {
  input[type=text]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-size: 16px;
  }
  input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, textarea::-moz-placeholder {
    font-size: 16px;
  }
  input[type=text]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-size: 16px;
  }
  input[type=text]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, textarea::-ms-input-placeholder {
    font-size: 16px;
  }
  input[type=text]::placeholder,
  input[type=tel]::placeholder,
  input[type=email]::placeholder,
  textarea::placeholder {
    font-size: 16px;
  }
}
@media (max-width: 650px) {
  input[type=text]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-size: 14px;
    padding-left: 10px;
  }
  input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, textarea::-moz-placeholder {
    font-size: 14px;
    padding-left: 10px;
  }
  input[type=text]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-size: 14px;
    padding-left: 10px;
  }
  input[type=text]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, textarea::-ms-input-placeholder {
    font-size: 14px;
    padding-left: 10px;
  }
  input[type=text]::placeholder,
  input[type=tel]::placeholder,
  input[type=email]::placeholder,
  textarea::placeholder {
    font-size: 14px;
    padding-left: 10px;
  }
}
@media (max-width: 510px) {
  input[type=text]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
    font-size: 12px;
  }
  input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, textarea::-moz-placeholder {
    font-size: 12px;
  }
  input[type=text]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, textarea:-ms-input-placeholder {
    font-size: 12px;
  }
  input[type=text]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, textarea::-ms-input-placeholder {
    font-size: 12px;
  }
  input[type=text]::placeholder,
  input[type=tel]::placeholder,
  input[type=email]::placeholder,
  textarea::placeholder {
    font-size: 12px;
  }
}
@media (max-width: 1100px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  textarea {
    width: 100%;
  }
}
@media (max-width: 650px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  textarea {
    padding-left: 5px;
  }
}

textarea {
  height: 256px;
  width: 100%;
  resize: vertical;
  padding: 12px 11px 12px 19px;
}
@media (max-width: 650px) {
  textarea {
    padding-left: 5px;
  }
}

input[type=checkbox] {
  width: 1px;
  height: 1px;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

input[type=checkbox]:checked + span::after {
  opacity: 1;
}

.p-contact__data-checkbox {
  padding: 21px 10px 15px 0;
}
.p-contact__data-checkbox .wpcf7-list-item-label {
  display: inline-block;
  font-size: 18px;
  line-height: 1.7;
  font-weight: bold;
  padding-left: 39px;
  position: relative;
}
.p-contact__data-checkbox .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 26px;
  height: 26px;
  border: 1px solid #707070;
}
.p-contact__data-checkbox .wpcf7-list-item-label::after {
  content: "";
  position: absolute;
  top: 7px;
  left: 10px;
  width: 6px;
  height: 12px;
  rotate: 45deg;
  border-right: 1.5px solid #000;
  border-bottom: 1.5px solid #000;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .p-contact__data-checkbox .wpcf7-list-item-label {
    font-size: 16px;
  }
}
@media (max-width: 650px) {
  .p-contact__data-checkbox .wpcf7-list-item-label {
    font-size: 14px;
  }
  .p-contact__data-checkbox .wpcf7-list-item-label::after {
    top: 4px;
  }
}
@media (max-width: 510px) {
  .p-contact__data-checkbox .wpcf7-list-item-label {
    font-size: 12px;
  }
  .p-contact__data-checkbox .wpcf7-list-item-label::after {
    top: 2px;
  }
}
@media (max-width: 439px) {
  .p-contact__data-checkbox .wpcf7-list-item-label::after {
    top: 12px;
  }
}

input[type=submit],
input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

.row.jc-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-contact__button-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 41px;
  margin-top: 46px;
  max-width: 961px;
  margin-inline: auto;
}
@media (max-width: 1000px) {
  .p-contact__button-wrapper {
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-contact__button-wrapper {
    margin-top: 30px;
  }
}

.p-contact__submit {
  margin-inline: auto;
  max-width: 460px;
  width: 100%;
}
.p-contact__submit input[type=submit] {
  background: #2F472B;
  padding: 34px 130px;
  font-size: 22px;
  font-weight: bold;
  border-radius: 6px;
  position: relative;
  z-index: 50;
  text-wrap: nowrap;
  color: #ffffff;
  border: 1px solid transparent;
}
@media screen and (max-width: 767px) {
  .p-contact__submit input[type=submit] {
    margin-top: 25px;
    padding-inline: 20px;
    width: 100%;
    font-size: 20px;
  }
}
.p-contact__submit input[type=submit]:hover {
  background: #ffffff;
  color: #2F472B;
  border: 1px solid #2F472B;
}

.p-contact__form-section .c-line-button {
  margin-top: 0;
  padding-inline: 86px;
  text-align: center;
  margin-inline: auto;
  max-width: 460px;
}
@media screen and (max-width: 767px) {
  .p-contact__form-section .c-line-button {
    padding-inline: 20px;
  }
}

.p-case__top {
  background: url(../img/case-top.png) no-repeat center center/cover;
  height: 321px;
  padding-block: 214px 100px;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 850px) {
  .p-case__top {
    margin-top: 65px;
    background-image: url(../img/fv-SP.png);
    background-position: center left;
  }
}

.p-case__top-title {
  padding-right: 16px;
}

.p-case__service {
  padding-block: 55px 106px;
}
@media screen and (max-width: 767px) {
  .p-case__service {
    padding-block: 40px;
  }
}

.p-case__tablists {
  padding-block: 22px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f4eee6;
}
@media (max-width: 914px) {
  .p-case__tablists {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    row-gap: 35px;
    max-width: 725px;
    margin-inline: auto;
  }
}
@media (max-width: 467px) {
  .p-case__tablists {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
  }
}

.p-case__tablist {
  padding-inline: 24px;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  text-wrap: nowrap;
}
.p-case__tablist::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: #000000;
}
.p-case__tablist:nth-child(1)::before {
  display: none;
}
.p-case__tablist:hover {
  opacity: 0.7;
}
@media (max-width: 914px) {
  .p-case__tablist {
    padding-inline: 10px;
  }
  .p-case__tablist:nth-child(5)::before {
    display: none;
  }
}
@media (max-width: 914px) and (max-width: 467px) {
  .p-case__tablist:nth-child(5)::before {
    display: block;
  }
  .p-case__tablist:nth-child(4)::before, .p-case__tablist:nth-child(7)::before {
    display: none;
  }
}

.p-case__tabpanels {
  margin-top: 56px;
}

.p-case__tabpanel {
  display: none;
}
.p-case__tabpanel.js-show {
  display: block;
}

.p-case__boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -webkit-column-gap: 27px;
     -moz-column-gap: 27px;
          column-gap: 27px;
  row-gap: 31px;
}
@media (max-width: 1300px) {
  .p-case__boxes {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1024px) {
  .p-case__boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .p-case__boxes {
    margin-top: 30px;
    grid-template-columns: 1fr;
  }
}

.p-case__box {
  padding: 19px 22px 38px 23px;
  border-radius: 6px;
  border: solid 1px #ccc;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-case__box {
    padding: 16px 12px 32px 14px;
  }
}

.p-case__box-category {
  padding: 3px 15px 3px 14px;
  border-radius: 12.5px;
  background-color: #569A4B;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
}

.p-case__box-img {
  margin-top: 13px;
  width: 100%;
  height: auto;
  aspect-ratio: 254/176;
}

.p-case__box-content {
  margin-top: 18px;
}

.p-case__box-title {
  font-size: 18px;
  color: #569A4B;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-case__box-title {
    font-size: 16px;
  }
}

.p-case__box-price {
  margin-top: 12px;
  font-size: 18px;
  color: #569A4B;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-case__box-price {
    font-size: 16px;
  }
}

.p-case__box-text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-case__box-text {
    font-size: 12px;
  }
}

.p-pp__top {
  background: url(../img/pp-top.png) no-repeat center center/cover;
  height: 321px;
  padding-block: 214px 100px;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 850px) {
  .p-pp__top {
    margin-top: 65px;
    background-image: url(../img/fv-SP.png);
    background-position: center left;
  }
}

.p-pp__top-title {
  padding-right: 16px;
}

.p-pp__service {
  padding-block: 55px 140px;
}
@media screen and (max-width: 767px) {
  .p-pp__service {
    padding-block: 40px;
  }
}

.p-pp__explanation-cards {
  border-radius: 10px;
  background-color: #f5f5f5;
  padding-block: 88px 102px;
  padding-inline: 40px;
}
@media screen and (max-width: 767px) {
  .p-pp__explanation-cards {
    padding-block: 40px;
    padding-inline: 20px;
  }
}

.p-pp__cards-inner {
  max-width: 1161px;
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 53px;
}
@media screen and (max-width: 767px) {
  .p-pp__cards-inner {
    gap: 40px;
  }
}

.p-pp__explanation-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-pp__explanation-card {
    gap: 15px;
  }
}

.p-pp__explanation-title {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-pp__explanation-title {
    font-size: 18px;
  }
}

.p-pp__explanation-text {
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-pp__explanation-text {
    line-height: 1.5;
  }
}

.p-pp__cta {
  padding-block: 145px 129px;
}
@media screen and (max-width: 767px) {
  .p-pp__cta {
    padding-top: 40px;
  }
}

.p-pp__cta .c-line-button {
  margin-top: 30px;
}

.p-news__top {
  background: url(../img/news-top.png) no-repeat center center/cover;
  height: 321px;
  padding-block: 214px 100px;
  position: relative;
  margin-top: 80px;
}
@media (max-width: 850px) {
  .p-news__top {
    margin-top: 65px;
    background-image: url(../img/fv-SP.png);
    background-position: center left;
  }
}

.p-news__top-title {
  padding-right: 32px;
  padding-left: 11px;
}

.p-news__service {
  padding-block: 55px 121px;
}
@media screen and (max-width: 767px) {
  .p-news__service {
    padding-block: 40px;
  }
}

.p-news {
  padding-bottom: 127px;
}
@media screen and (max-width: 767px) {
  .p-news {
    padding-bottom: 40px;
  }
}

.p-news__inner {
  display: grid;
  grid-template-columns: 74.5% 20.2%;
  -webkit-column-gap: 68px;
     -moz-column-gap: 68px;
          column-gap: 68px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1400px) {
  .p-news__inner {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media (max-width: 1200px) {
  .p-news__inner {
    grid-template-columns: 72% 25%;
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }
}
@media (max-width: 1000px) {
  .p-news__inner {
    grid-template-columns: 70% 28%;
  }
}
@media (max-width: 800px) {
  .p-news__inner {
    grid-template-columns: 1fr;
  }
}

.p-news__boxes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-column-gap: 26px;
     -moz-column-gap: 26px;
          column-gap: 26px;
  row-gap: 30px;
}
@media (max-width: 1300px) {
  .p-news__boxes {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 1000px) {
  .p-news__boxes {
    -webkit-column-gap: 10px;
       -moz-column-gap: 10px;
            column-gap: 10px;
  }
}
@media (max-width: 500px) {
  .p-news__boxes {
    margin-top: 30px;
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }
}

.p-news__box {
  padding: 19px 22px 38px 23px;
  border-radius: 6px;
  border: solid 1px #ccc;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .p-news__box {
    padding: 16px 12px 32px 14px;
  }
}

.p-news__box-category {
  padding: 3px 15px 3px 14px;
  border-radius: 12.5px;
  background-color: #569A4B;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
}

.p-news__box-img {
  margin-top: 13px;
  width: 100%;
  height: auto;
  aspect-ratio: 254/176;
}

.p-news__box-content {
  margin-top: 18px;
}

.p-news__box-title {
  font-size: 18px;
  color: #569A4B;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-news__box-title {
    font-size: 16px;
  }
}

.p-news__box-price {
  margin-top: 12px;
  font-size: 18px;
  color: #569A4B;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-news__box-price {
    font-size: 16px;
  }
}

.p-news__box-text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-news__box-text {
    font-size: 12px;
  }
}

.p-news__pagination {
  margin-top: 54px;
}

.p-news__cta {
  padding-bottom: 136px;
}
@media screen and (max-width: 767px) {
  .p-news__cta {
    padding-bottom: 40px;
  }
}

.p-news__cta .c-line-button {
  margin-top: 29px;
}

.p-news-detail {
  padding-bottom: 63px;
}
@media screen and (max-width: 767px) {
  .p-news-detail {
    padding-bottom: 40px;
  }
}

.p-news-detail__inner {
  display: grid;
  grid-template-columns: 74.5% 20.2%;
  -webkit-column-gap: 68px;
     -moz-column-gap: 68px;
          column-gap: 68px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 1400px) {
  .p-news-detail__inner {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media (max-width: 1200px) {
  .p-news-detail__inner {
    grid-template-columns: 72% 25%;
    -webkit-column-gap: 25px;
       -moz-column-gap: 25px;
            column-gap: 25px;
  }
}
@media (max-width: 1000px) {
  .p-news-detail__inner {
    grid-template-columns: 70% 28%;
  }
}
@media (max-width: 800px) {
  .p-news-detail__inner {
    grid-template-columns: 1fr;
  }
}

.p-new-detail__container {
  padding: 51px 39px 102px 60px;
  border: solid 1px #ccc;
}
@media (max-width: 1000px) {
  .p-new-detail__container {
    padding: 40px;
  }
}
@media (max-width: 900px) {
  .p-new-detail__container {
    padding: 30px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-detail__container {
    padding: 20px;
  }
}
@media (max-width: 500px) {
  .p-new-detail__container {
    padding: 15px;
  }
}

.p-new-detail__title {
  font-size: 36px;
  font-weight: bold;
  padding-bottom: 15px;
  border-bottom: 1px solid #569A4B;
  word-break: auto-phrase;
  line-height: 1.5;
}
@media (max-width: 1100px) {
  .p-new-detail__title {
    font-size: 28px;
  }
}
@media (max-width: 900px) {
  .p-new-detail__title {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-detail__title {
    font-size: 22px;
  }
}

.p-new-detail__date {
  font-size: 14px;
  font-weight: 500;
  line-height: 2.29;
  text-align: right;
  color: #569A4B;
}
@media screen and (max-width: 767px) {
  .p-new-detail__date {
    font-size: 12px;
  }
}

.p-new-detail__cards {
  margin-top: 88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media (max-width: 1000px) {
  .p-new-detail__cards {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-detail__cards {
    margin-top: 30px;
    gap: 30px;
  }
}

.p-new-detail__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}

.p-new-detail__card-title {
  font-size: 24px;
  font-weight: bold;
  position: relative;
  padding-left: 28px;
  line-height: 2.2;
  word-break: auto-phrase;
}
.p-new-detail__card-title::before {
  position: absolute;
  content: "";
  left: 0;
  top: -1px;
  width: 7px;
  height: 100%;
  background: #569A4B;
}
@media (max-width: 1100px) {
  .p-new-detail__card-title {
    font-size: 22px;
  }
}
@media (max-width: 900px) {
  .p-new-detail__card-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-new-detail__card-title {
    font-size: 18px;
    padding-left: 20px;
    line-height: 1.5;
  }
}

.p-new-detail__card-text {
  font-weight: 500;
  line-height: 2;
}

.p-new-detail__bottom {
  font-weight: 500;
  line-height: 2;
  background-color: #f4eee6;
  padding: 33px 43px 46px;
  margin-top: 74px;
}
@media screen and (max-width: 767px) {
  .p-new-detail__bottom {
    padding: 20px;
    margin-top: 30px;
  }
}
@media (max-width: 500px) {
  .p-new-detail__bottom {
    padding: 15px;
  }
}

.p-new-detail__button-wrapper-sp {
  display: none;
}
@media (max-width: 800px) {
  .p-new-detail__button-wrapper-sp {
    margin-top: 30px;
    display: block;
  }
  .p-new-detail__button-wrapper-sp .c-btn {
    max-width: 400px;
  }
}

.p-new-detail__button-wrapper-pc {
  margin-top: 50px;
  display: block;
}
@media (max-width: 800px) {
  .p-new-detail__button-wrapper-pc {
    display: none;
  }
}

.p-news-detail__cta {
  padding-bottom: 99px;
}
@media screen and (max-width: 767px) {
  .p-news-detail__cta {
    padding-bottom: 40px;
  }
}

.p-news-detail__cta .c-line-button {
  margin-top: 29px;
}

.p-404__top {
  background: url(../img/reason-top.png) no-repeat center center/cover;
  height: 321px;
  padding-block: 214px 100px;
  position: relative;
  margin-top: 80px;
}

@media (max-width: 850px) {
  .p-404__top {
    margin-top: 65px;
    background-image: url(../img/fv-SP.png);
    background-position: center left;
  }
}
.p-404__btn {
  margin-top: 70px;
  margin-inline: auto 0;
}

@media screen and (max-width: 767px) {
  .p-404__btn {
    margin-top: 30px;
  }
}
@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
.u-text__center {
  text-align: center !important;
}
@media screen and (max-width: 767px) {
  .u-text__center--sp {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .u-text__center--pc {
    text-align: center !important;
  }
}

.u-text__left {
  text-align: left !important;
}
@media screen and (max-width: 767px) {
  .u-text__left--sp {
    text-align: left !important;
  }
}
@media (min-width: 768px) {
  .u-text__left--pc {
    text-align: left !important;
  }
}

.u-text__right {
  text-align: right !important;
}
@media screen and (max-width: 767px) {
  .u-text__right--sp {
    text-align: right !important;
  }
}
@media (min-width: 768px) {
  .u-text__right--pc {
    text-align: right !important;
  }
}

.u-text__nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .u-text__nowrap--sp {
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  .u-text__nowrap--pc {
    white-space: nowrap;
  }
}

.u-sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.u-pointer__none {
  pointer-events: none !important;
}
@media screen and (max-width: 767px) {
  .u-pointer__none--sp {
    pointer-events: none !important;
  }
}
@media (min-width: 768px) {
  .u-pointer__none--pc {
    pointer-events: none !important;
  }
}