@charset "UTF-8";
/*
 * 参考
 * https: //github.com/Andy-set-studio/modern-css-reset/blob/master/src/reset.css
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  width: 100%;
  display: block;
}

figure {
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https: //css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
 * 参考
 * https: //webdou.net/sass-rem/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
/*****************************************
 * vwの計算
 * 参考
 * https://webdou.net/sass-vw/
 * Sassではmath.div関数の使用が推奨のため、スラッシュ(/)演算子から変更
******************************************/
html {
  font-size: 16px;
}
@media (max-width: 1300px) {
  html {
    font-size: 1.2307692308vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 16px;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #585858;
}

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

a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

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

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

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

.is-fixed {
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.l-inner {
  max-width: 1190px;
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.p-faq-list-sub__inner.l-inner,
.p-accordion-list__inner.l-inner {
  max-width: 1320px;
  width: 100%;
  padding-right: 5.625rem;
  padding-left: 5.625rem;
}
@media screen and (max-width: 767px) {
  .p-faq-list-sub__inner.l-inner,
  .p-accordion-list__inner.l-inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.l-inner-l {
  max-width: 1350px;
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-inner-l {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.l-pager {
  margin-top: 3.125rem;
  text-align: center;
}

.l-post-connect {
  margin-top: 1rem;
}

.l-section {
  padding: 7.5rem 0;
}

.l-sub-page {
  background: url(../../assets/images/common/bg-pattern.jpg) repeat;
}

.sub-page__inner {
  padding: 7.5rem 25px;
}

.sub-page__title {
  text-align: center;
  margin-bottom: 4.1875rem;
}

.sdgs__img {
  max-width: 65.25rem;
  width: 100%;
  margin: auto;
}

.policy__container {
  padding-top: 6.25rem;
}

.policy__title {
  font-size: 1.125rem;
  font-weight: 700;
  padding-bottom: 0.625rem;
}

.policy__container p,
.policy__container li {
  font-size: 1rem;
  font-weight: 700;
  line-height: 2;
}

.policy__container li {
  padding-bottom: 1em;
}

.policy__container p {
  padding-bottom: 2.5em;
}

.policy__container ol {
  padding-bottom: 1.5em;
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 767px) {
  .sub-page__inner {
    padding: 1.25rem 15px 3.75rem;
  }
  .sub-page__title {
    margin-bottom: 2.5rem;
  }
  .sdgs__img {
    max-width: 37.5rem;
    width: 100%;
    margin: auto;
  }
  .policy__container {
    padding-top: 3.125rem;
  }
  .policy__title {
    font-size: 1rem;
    padding-bottom: 0.625rem;
  }
  .policy__container p,
  .policy__container li {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.75;
  }
  .policy__container li {
    padding-bottom: 1em;
  }
  .policy__container p {
    padding-bottom: 2.5em;
  }
  .policy__container ol {
    padding-bottom: 1.5em;
    padding-left: 1em;
    text-indent: -1em;
  }
}
.c-breadcrumb {
  padding: 1rem 4.5rem;
}

.c-breadcrumb span {
  padding: 0 0.3125rem;
  font-weight: 700;
}

.c-breadcrumb span:first-child {
  padding-left: 0;
}

.c-breadcrumb a,
.c-breadcrumb span {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
}

.c-breadcrumb a {
  color: #74AA66;
}

@media screen and (max-width: 767px) {
  .c-breadcrumb {
    padding: 0.625rem 15px 3.125rem;
  }
  .c-breadcrumb a,
  .c-breadcrumb span {
    font-size: 0.6875rem;
  }
}
.c-btn {
  display: inline-block;
  min-width: 214px;
  padding: 11px 57px;
  color: #585858;
  font-size: 16px;
  font-weight: 500;
  background-color: #D3F091;
  transition: 0.3s;
  border-radius: 624.9375rem;
  text-align: center;
  position: relative;
}

.c-btn__white.c-btn {
  background: #fff;
  border: 2px solid #585858;
}

.c-btn::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #585858;
  border-right: 2px solid #585858;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%) rotate(45deg);
}

.c-btn:hover {
  text-decoration: none;
  background-color: #50A92B;
  color: #fff;
  opacity: 1;
  cursor: pointer;
}

.c-btn__white.c-btn:hover {
  background-color: #50A92B;
  border: 2px solid #50A92B;
}

.c-btn:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

@media screen and (max-width: 767px) {
  .c-btn {
    min-width: 200px;
    padding: 11px 57px;
    font-size: 14px;
  }
  .c-btn::after {
    width: 8px;
    height: 8px;
    right: 18px;
  }
}
.c-title {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.8125;
  display: flex;
  flex-direction: column;
  position: relative;
}
.c-title .green {
  color: #74AA66;
}
.c-title::before {
  content: attr(data-text);
  font-family: "Futura", serif;
  font-size: 1rem;
  font-weight: 500;
  color: #74AA66;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  .c-title::before {
    font-size: 0.6875rem;
    letter-spacing: 0.05em;
  }
}

.c-title__fv {
  font-family: "Noto Serif JP", serif;
  font-size: 3.125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  text-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .c-title__fv {
    font-size: 1.875rem;
    width: 100%;
    text-align: center;
  }
}

.p-404__title {
  text-align: center;
}

.p-404__btn {
  text-align: center;
}

.p-about-second {
  background: url(../../assets/images/common/bg_pattern_gray.jpg) repeat;
  background-size: contain;
  padding: 7.5rem 0;
}

.p-about-second__container {
  display: flex;
  align-items: center;
}

.p-about-second__text {
  width: 50%;
  padding-right: 3.1875rem;
}

.p-about-second-text__title {
  max-width: 35.9375rem;
  width: 100%;
  margin-bottom: 3.125rem;
}

.p-about-second-text__lead {
  font-size: 1.125rem;
  line-height: 1.78;
  letter-spacing: 0.05em;
}

.p-about-second-text__lead .highlight {
  font-weight: 500;
}

.p-about-second__img {
  width: 50%;
  position: relative;
}

.p-about-second-img__large {
  max-width: 35.625rem;
  width: 90%;
  position: relative;
  z-index: 1;
}

.p-about-second-img__small {
  max-width: 21.3125rem;
  width: 54%;
  position: relative;
  z-index: 2;
  margin-top: -28%;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .p-about-second {
    padding: 3.75rem 0;
  }
  .p-about-second__container {
    flex-direction: column;
    justify-content: center;
  }
  .p-about-second__text {
    max-width: 37.5rem;
    width: 100%;
    padding-right: 0;
    margin: 0 auto 2.5rem;
  }
  .p-about-second-text__title {
    max-width: 17.5rem;
    width: 100%;
    margin: 0 auto 2.5rem;
  }
  .p-about-second-text__lead {
    font-size: 0.875rem;
    line-height: 1.78;
  }
  .p-about-second__img {
    max-width: 37.5rem;
    width: 100%;
  }
}
.p-about {
  position: relative;
  background: url(../../assets/images/common/bg-pattern.jpg) repeat;
}

.p-about__wrap {
  background: url(../../assets/images/common/line_house_01.png) no-repeat bottom -20px left/52.8%;
}

.about__copy {
  max-width: 36.25rem;
  margin: 0 auto 10.75rem;
}

.about__content {
  margin-left: 50%;
  padding-bottom: 9.8125rem;
}

.about__title {
  margin-bottom: 2.5rem;
}

.about__content p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 2;
}

.about-bottom {
  z-index: 1;
}

.about-bottom__inner {
  width: 100vw;
  display: flex;
  align-items: center;
  margin: auto;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .about__top {
    background: url(../../assets/images/common/line_house_01.png) no-repeat bottom left/70%;
    padding-bottom: 3.75rem;
  }
  .about__copy {
    max-width: 16.25rem;
    margin: 1.875rem auto 3.75rem;
  }
  .about__content {
    margin-left: 0;
    padding: 0 15px;
    text-align: center;
  }
  .about__title {
    margin-bottom: 1.875rem;
  }
  .about__content p {
    font-size: 0.875rem;
    letter-spacing: 0;
    line-height: 1.875;
    margin-bottom: 2.5rem;
  }
  .about-bottom__item {
    width: 7.5rem;
    margin-left: 0.625rem;
  }
  .about-bottom__item img {
    height: 100%;
  }
}
.p-accordion-list {
  position: relative;
}

.p-accordion-list__wrap {
  background: url(../../assets/images/common/line_house_04.png) no-repeat top right/41.56%, url(../../assets/images/common/line_house_05.png) no-repeat bottom left/39.84%;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.p-accordion-list__inner {
  padding: 4.875rem 25px 7.5rem;
}

.p-accordion-list__title {
  margin: auto;
  text-align: center;
  margin-bottom: 4.9375rem;
}

.p-accordion-list__items {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0 auto 4.6875rem;
}

.p-accordion-list__btn {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-accordion-list__wrap {
    background: url(../../assets/images/common/line_house_04.png) no-repeat top right/50.56%, url(../../assets/images/common/line_house_05.png) no-repeat bottom left/50.84%;
  }
  .p-accordion-list__inner {
    padding: 3rem 15px 3.75rem;
  }
  .p-accordion-list__title {
    margin-bottom: 2.5rem;
  }
  .p-accordion-list__items {
    gap: 0.9375rem;
    margin: 0 auto 2.8125rem;
  }
}
.p-contact {
  background: url(../../assets/images/common/bg-pattern.jpg) repeat;
  padding-bottom: 7.5rem;
}

.p-contact__title {
  text-align: center;
  margin-bottom: 1.25rem;
}

.p-contact__title-sub {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 10rem;
}

.p-contact__container {
  margin-bottom: 9.375rem;
}

.p-contact-tel__title {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 1.5625rem;
  text-align: center;
}

.p-contact-tel__content {
  background: #EDF0E6;
  padding: 3.125rem;
  text-align: center;
}

.p-contact-tel-content__head {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #8dac48;
  background: #fff;
  padding: 0.4375rem 5.375rem;
  margin-bottom: 1.875rem;
}

.p-contact-tel-content__lead {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-contact-tel-content__lead::before {
  content: "＼";
  padding-right: 0.2em;
}

.p-contact-tel-content__lead::after {
  content: "／";
  padding-left: 0.2em;
}

.p-contact-tel-content__num {
  font-size: 3.125rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.5rem;
}

.p-contact-tel-content__num::before {
  content: "";
  display: block;
  width: 1.875rem;
  height: 1.5rem;
  background: url(../../assets/images/common/icon_phone_b.svg) no-repeat center center/cover;
}

.p-contact-tel-content__bottom {
  font-size: 1rem;
  font-weight: 500;
}

.p-contact__content {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.p-contact__content.content-radio {
  align-items: flex-start;
}
.p-contact__content.content-area {
  align-items: flex-start;
}
.p-contact__head {
  max-width: 19.375rem;
  width: 100%;
}
.p-contact__head label {
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.content-area .p-contact__head {
  padding-top: 1.6875rem;
}

.p-contact__item {
  width: 100%;
}

.p-contact__item-example {
  margin-top: 0.375rem;
  color: gray;
}

.p-contact__required {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  background: #d64a4a;
  padding: 0.3125rem 0.625rem;
}

.p-contact__content {
  margin-bottom: 2.5rem;
}

.p-contact__policy {
  padding-top: 1.25rem;
  margin-bottom: 3.125rem;
  text-align: center;
}

.p-contact__policy-link {
  text-decoration: underline;
  transition: all 0.3s;
}
.p-contact__policy-link:hover {
  color: #74AA66;
}

.p-contact__btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-contact__btn-wrap {
    flex-direction: row;
    gap: 2.5rem;
  }
}

.p-contact__btn {
  display: inline-block;
  text-align: center;
}

.p-contact__item-text,
.p-contact__item-tel,
.p-contact__item-email,
.p-contact__item-textarea,
.p-contact__item-select {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 1.6875rem 1.875rem;
  border: 1px solid #707070;
  background: #fff;
  border-radius: 0;
  outline: none;
  color: inherit;
  font-family: inherit;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.p-contact__item-text:focus,
.p-contact__item-tel:focus,
.p-contact__item-email:focus,
.p-contact__item-textarea:focus,
.p-contact__item-select:focus {
  border: 1px solid rgba(0, 0, 0, 0.7);
  box-shadow: none;
  outline: none;
}

.p-contact__item-textarea {
  height: 100%;
  aspect-ratio: 710/320;
  resize: none;
  overflow: auto;
}

.p-contact__item-message {
  white-space: pre-wrap;
}

.p-contact__item-select {
  padding-right: 3em;
  background: url(../../assets/images/common/icon_anchor.svg) no-repeat right 4% center/1.5em;
  color: inherit;
}

.p-contact__item-select:invalid {
  color: rgba(0, 0, 0, 0.32);
}

.p-contact__item-select select::-ms-expand {
  display: none;
}

.content-radio .wpcf7-form-control {
  width: -moz-fit-content;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(2, auto);
  grid-template-rows: 1fr;
  gap: 0.625rem 5rem;
}

.wpcf7-list-item {
  margin: 0;
}

.content-radio label span,
.p-contact__policy label span {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.p-contact__policy label span {
  gap: 0.3125rem;
}

.p-contact__item-checkbox input[type=checkbox],
.content-radio input[type=checkbox] {
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1.625rem;
  height: 1.625rem;
  visibility: hidden;
}

.p-contact__item-checkbox input[type=checkbox] + span,
.content-radio input[type=checkbox] + span {
  cursor: pointer;
  position: relative;
  color: #585858;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.p-contact__item-checkbox input[type=checkbox]:focus + span {
  opacity: 0.7;
}

.p-contact__item-checkbox input[type=checkbox] + span::before,
.content-radio input[type=checkbox] + span::before {
  width: 1.625rem;
  height: 1.625rem;
  content: "";
  background: white;
  border: 1px solid black;
  border-radius: 0.25rem;
}

.p-contact__item-checkbox input[type=checkbox]:checked + span::before,
.content-radio input[type=checkbox]:checked + span::before {
  background: #66AA53;
}

.p-contact__item-checkbox input[type=checkbox] + span::after,
.content-radio input[type=checkbox] + span::after {
  border-bottom: 2px solid white;
  border-left: 2px solid white;
  content: "";
  display: block;
  height: 0.35em;
  margin-top: -0.1em;
  opacity: 0;
  position: absolute;
  top: 50%;
  left: 1%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 0.8em;
}

.content-radio input[type=checkbox] + span::after {
  left: 2.5%;
}

.p-contact__item-checkbox input[type=checkbox]:checked + span::after,
.content-radio input[type=checkbox]:checked + span::after {
  opacity: 1;
}

/* button */
.p-contact__btn {
  max-width: 256px;
  width: 100%;
  min-width: 214px;
  margin: auto;
  position: relative;
  transition: 0.3s ease-out;
  cursor: pointer;
}

.p-contact__btn::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #585858;
  border-right: 2px solid #585858;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%) rotate(45deg);
}
.p-contact__btn::after:hover {
  background-color: #50a92b;
}

.p-contact__btn:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.p-contact__btn input[type=submit],
.p-contact__btn input[type=button] {
  display: inline-block;
  padding: 17px 56px;
  color: #585858;
  font-size: 18px;
  font-weight: 500;
  background-color: #D3F091;
  transition: 0.3s;
  border-radius: 624.9375rem;
  text-align: center;
  position: relative;
  border: none;
}

.p-contact__btn:hover input[type=submit],
.p-contact__btn:hover input[type=button] {
  text-decoration: none;
  background-color: #50a92b;
  color: #fff;
  opacity: 1;
  cursor: pointer;
}

.p-contact__btn input[type=submit]:hover,
.p-contact__btn input[type=button]:hover,
.p-contact__btn input[type=submit]:focus,
.p-contact__btn input[type=button]:focus {
  outline: none;
}

.p-contact__item,
.p-contact__btn-submit {
  min-width: 9.375rem;
}

.wpcf7-spinner {
  position: absolute;
}

@media screen and (max-width: 767px) {
  .p-contact {
    padding-bottom: 3.75rem;
  }
  .p-contact__title {
    margin-bottom: 1.25rem;
  }
  .p-contact__title-sub {
    font-size: 0.875rem;
    letter-spacing: 0;
    margin-bottom: 5rem;
  }
  .p-contact__container {
    margin-bottom: 4.375rem;
  }
  .p-contact-tel__title {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
  }
  .p-contact-tel__content {
    padding: 1.875rem 1.25rem;
  }
  .p-contact-tel-content__head {
    font-size: 0.8125rem;
    padding: 0.4375rem 2.25rem;
    margin-bottom: 1.875rem;
  }
  .p-contact-tel-content__lead {
    font-size: 1rem;
  }
  .p-contact-tel-content__lead::before {
    content: "＼";
    padding-right: 0.5em;
  }
  .p-contact-tel-content__lead::after {
    content: "／";
    padding-left: 0.5em;
  }
  .p-contact-tel-content__num {
    font-size: 1.875rem;
  }
  .p-contact-tel-content__num::before {
    width: 1.25rem;
    height: 1rem;
  }
  .p-contact-tel-content__bottom {
    font-size: 0.75rem;
  }
  .p-contact__content {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }
  .p-contact__head {
    max-width: 100%;
  }
  .p-contact__head label {
    font-size: 0.9375rem;
    justify-content: flex-start;
    gap: 0.625rem;
  }
  .content-area .p-contact__head {
    padding-top: 0;
  }
  .p-contact__required {
    font-size: 0.6875rem;
    padding: 0.125rem 0.5rem;
  }
  .p-contact__content {
    margin-bottom: 2.5rem;
  }
  .p-contact__policy {
    padding-top: 0.625rem;
    margin-bottom: 2.5rem;
  }
  .p-contact__item-text,
  .p-contact__item-tel,
  .p-contact__item-email,
  .p-contact__item-textarea,
  .p-contact__item-select {
    padding: 0.9375rem 0.625rem;
    border: 1px solid #707070;
    background: #fff;
    border-radius: 0;
    outline: none;
    font-size: 0.8125rem;
  }
  .p-contact__item-textarea {
    aspect-ratio: 375/240;
  }
  .p-contact__item-select {
    background: url(../../assets/images/common/icon_anchor.svg) no-repeat right 4% center/1em;
  }
  .p-contact__policy label span {
    flex-wrap: wrap;
  }
  .content-radio .wpcf7-form-control {
    width: -moz-fit-content;
    width: fit-content;
    display: grid;
    grid-template-columns: repeat(2, auto);
    grid-template-rows: 1fr;
    gap: 0.9375rem 2.5rem;
  }
  .p-contact__item-checkbox input[type=checkbox] + span,
  .content-radio input[type=checkbox] + span {
    font-size: 0.875rem;
  }
  .p-contact__item-checkbox input[type=checkbox] + span::before,
  .content-radio input[type=checkbox] + span::before {
    width: 1.25rem;
    height: 1.25rem;
  }
  .content-radio input[type=checkbox] + span::after {
    left: 3.5%;
  }
  /* button */
  .p-contact__btn {
    width: auto;
    min-width: 200px;
  }
  .p-contact__btn input[type=submit],
  .p-contact__btn input[type=button] {
    padding: 11px 56px;
    font-size: 14px;
  }
  .wpcf7-not-valid-tip {
    font-size: 0.875rem;
    padding-top: 0.625rem;
  }
}
.cta {
  width: 100%;
  background: #66AA53;
  padding: 5.25rem 0 5rem;
}

.cta__link picture {
  overflow: hidden;
}

.cta__link picture img {
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-out;
}

@media (hover: hover) and (pointer: fine) {
  .cta__link:hover picture img {
    transform: scale(1.1);
  }
}
@media screen and (max-width: 767px) {
  .cta {
    padding: 3.75rem 0;
  }
  .cta__link {
    display: block;
    max-width: 37.5rem;
    width: 100%;
    margin: auto;
  }
  .cta__link picture {
    overflow: hidden;
  }
  .cta__link picture img {
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0.3s ease-out;
  }
}
.p-event-list {
  background: url(../../assets/images/common/bg-pattern.jpg) repeat;
}

.p-event-list__wrap {
  background: url(../../assets/images/common/line_house_26.png) no-repeat top left/39%, url(../../assets/images/common/line_house_27.png) no-repeat bottom right/28%;
  padding-bottom: 7.5rem;
}

.p-event-list__inner {
  padding: 5.875rem 25px 7.5rem;
}

.p-event-list__title {
  margin: auto;
  text-align: center;
  margin-bottom: 2.875rem;
}

.p-event-list__items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 3.125rem 1.875rem;
  margin: 0 auto 3.125rem;
}

.p-event-list__btn {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-event-list__inner {
    padding: 3.125rem 15px 3.75rem;
  }
  .p-event-list__wrap {
    background: url(../../assets/images/common/line_house_26.png) no-repeat top left/39%, url(../../assets/images/common/line_house_27.png) no-repeat bottom right/28%;
  }
  .p-event-list__items {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 2.5rem;
    margin: 0 auto 2.5rem;
  }
  .p-event-list__btn {
    text-align: center;
  }
}
.p-faq-list {
  background: url(../../assets/images/common/bg-pattern.jpg) repeat;
  position: relative;
}

.p-faq-list__wrap {
  background: url(../../assets/images/common/line_house_24.png) no-repeat top right/30%, url(../../assets/images/common/line_house_25.png) no-repeat top 800px left/43%;
  padding-bottom: 7.5rem;
}

.p-faq-list__inner {
  padding: 4.875rem 25px 7.5rem;
}

.p-faq-list__title {
  margin: auto;
  text-align: center;
  margin-bottom: 3.125rem;
}

.p-faq-list-container__title {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #74AA66;
  margin-bottom: 1.875rem;
}

.p-faq-list__container:not(:first-of-type) {
  margin-bottom: 3.125rem;
}

.p-faq-list__items {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.p-faq-anchor {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.875rem 1.875rem;
  margin-bottom: 3.8125rem;
}

.p-faq-anchor .tab-item {
  padding: 0.6875rem 1.3125rem;
}

@media screen and (max-width: 767px) {
  .p-faq-list__wrap {
    background: url(../../assets/images/common/line_house_24.png) no-repeat top right/30%, url(../../assets/images/common/line_house_25.png) no-repeat top 800px left/43%;
    padding-bottom: 7.5rem;
  }
  .p-faq-list__inner {
    padding: 3rem 15px 3.75rem;
  }
  .p-faq-list__title {
    margin-bottom: 2.5rem;
  }
  .p-faq-list__items {
    gap: 0.9375rem;
    margin: 0 auto 2.8125rem;
  }
  .p-faq-list-container__title {
    font-size: 1.25rem;
    margin-bottom: 0.9375rem;
  }
  .p-faq-anchor .tab-item {
    padding: 0.3125rem 0.9375rem;
  }
  .p-faq-anchor {
    gap: 0.75rem;
    margin-bottom: 2.5625rem;
  }
}
.p-footer {
  width: 100%;
  background: #fff;
  padding-top: 5rem;
}

.footer__inner {
  padding-bottom: 5rem;
  display: flex;
  justify-content: space-between;
}

.footer__info {
  width: 100%;
}

.footer-info__logo {
  max-width: 13.5rem;
  width: 100%;
  margin-bottom: 0.6875rem;
}

.footer__info p {
  font-size: 1rem;
  font-weight: 500;
}

.footer-info__tel {
  font-size: 3.125rem;
  font-weight: 700;
  color: #67B255;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.footer-info__tel::before {
  content: "";
  display: block;
  width: 1.875rem;
  height: 1.5rem;
  background: url(../../assets/images/common/icon_phone_gr.svg) no-repeat center center/cover;
}

.footer__link {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 7.9375rem;
}

.footer-link__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-link__list li a {
  font-family: "Noto Serif JP", serif;
  font-size: 1.125rem;
  font-weight: 700;
  display: inline-block;
  position: relative;
}

.footer-link__list li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.0625rem;
  background: #585858;
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translate(-50%, -50%) scaleX(0);
  transition: 0.3s ease-out;
}

.footer__copyright {
  width: 100%;
  height: 3.125rem;
  background: #467c37;
  color: #fff;
  display: grid;
  justify-content: center;
  align-items: center;
}

@media (hover: hover) and (pointer: fine) {
  .footer-link__list li a:hover::after {
    transform: translate(-50%, -50%) scaleX(1);
  }
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-top: 3.75rem;
    padding-bottom: 3.125rem;
  }
  .footer__inner {
    padding-bottom: 3.75rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .footer__info {
    text-align: center;
    margin-bottom: 3.125rem;
  }
  .footer-info__logo {
    max-width: 11.875rem;
    width: 100%;
    margin: 0 auto 0.6875rem;
  }
  .footer__info p {
    font-size: 0.875rem;
  }
  .footer-info__tel {
    font-size: 2.5rem;
    justify-content: center;
  }
  .footer-info__tel::before {
    width: 1.25rem;
    height: 1rem;
  }
  .footer__link {
    justify-content: center;
    gap: 2.5rem;
  }
  .footer-link__list {
    gap: 1.25rem;
  }
  .footer-link__list li a {
    font-size: 0.9375rem;
  }
  .footer__copyright {
    height: 2.5rem;
    font-size: 0.75rem;
  }
}
.fv {
  width: 100%;
  background: url(../../assets/images/common/bg-pattern.jpg) repeat;
}

.fv__clip {
  width: 100%;
  height: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
  position: relative;
}

.fv__mask {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.06);
  position: absolute;
  inset: 0;
}

.fv__image {
  width: 100%;
  aspect-ratio: 1920/928;
}

.fv__image picture,
.fv__image img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__cta {
  width: 27.875rem;
  height: 4.1875rem;
  background: #fff;
  position: absolute;
  right: 10vw;
  bottom: 27%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: #50A92B;
  transition: 0.3s ease-out;
}
.fv__cta svg path {
  transition: 0.3s ease-out;
}

.fv-cta__house {
  margin-right: 0.35rem;
}

.fv-cta__arrow {
  margin-left: 1.8875rem;
}

@media (hover: hover) and (pointer: fine) {
  .fv__cta:hover {
    background: #50A92B;
    color: #fff;
    opacity: 1;
  }
  .fv__cta:hover svg path {
    fill: #fff;
  }
}
@media screen and (max-width: 767px) {
  .fv__clip {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 85%, 0 100%);
  }
  .fv__cta {
    width: 12.5rem;
    height: 2.8125rem;
    right: 0.9375rem;
    bottom: 27%;
    font-size: 0.6875rem;
  }
  .fv-cta__arrow {
    margin-left: 1.125rem;
  }
}
.p-header {
  width: 100%;
  height: 8.75rem;
  position: sticky;
  top: 0;
  z-index: 2999;
  transition: 0.3s;
}

.header__top {
  width: 100%;
  height: 5.625rem;
  background: #fff;
}

.header__inner {
  width: 100%;
  height: inherit;
  padding-right: 6.25rem;
  padding-left: 4.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 200;
  position: relative;
}

.header__logo {
  max-width: 11.875rem;
  width: 100%;
  z-index: 200;
}

.header__logo a {
  width: 100%;
  height: inherit;
  transition: 0.3s ease-out;
}

.header__right {
  width: 100%;
  height: inherit;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.header__nav--pc {
  height: inherit;
  z-index: 200;
}

.pc-nav {
  width: 100%;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.875rem;
}

.pc-nav__list {
  width: 100%;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.875rem;
}

.pc-nav__list > li {
  height: inherit;
}

.pc-nav__list > li > a {
  font-family: "Noto Serif JP", serif;
  width: 100%;
  height: inherit;
  display: grid;
  justify-content: center;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 700;
  transition: 0.3s ease-out;
  position: relative;
}

.pc-nav__list > li > a::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.0625rem;
  background: #585858;
  position: absolute;
  bottom: 30%;
  left: 50%;
  transform: translate(-50%, -50%) scaleX(0);
  transition: 0.3s ease-out;
}

.header__btn {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.875rem;
}

.sns-link {
  width: 2.5rem;
  height: 2.5rem;
}

.header__bottom {
  width: 100%;
  height: 3.125rem;
  background: #66AA53;
}

.header__bottom .l-inner {
  height: inherit;
  display: flex;
  align-items: center;
}

.header__bottom p {
  font-size: 1rem;
  color: #fff;
  line-height: 1;
}

.float-cta {
  width: 5rem;
  height: 22.5rem;
  border: 0.125rem solid #67b255;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: fixed;
  top: 30vw;
  right: 0;
  transform: translateY(-50%);
}

.float-cta a {
  writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  width: 100%;
  height: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  transition: 0.3s ease-out;
  font-size: 1.125rem;
  font-weight: 700;
}
.float-cta a svg path {
  transition: 0.3s ease-out;
}

.float-cta__contact {
  border-bottom: 0.125rem solid #67b255;
  background: #67b255;
  color: #fff;
}

.float-cta__document {
  color: #67b255;
  background: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .pc-nav__list > li > a:hover::after {
    transform: translate(-50%, -50%) scaleX(1);
  }
  .float-cta__contact:hover {
    background: #fff;
    color: #67b255;
    opacity: 1;
  }
  .float-cta__contact:hover svg path {
    fill: #67b255;
    stroke: #fff;
  }
  .float-cta__document:hover {
    color: #fff;
    background: #67b255;
    opacity: 1;
  }
  .float-cta__document:hover svg path {
    fill: #67b255;
    stroke: #fff;
  }
}
@media screen and (max-width: 1499px) {
  .header__inner {
    padding-right: 25px;
    padding-left: 25px;
  }
  .header__logo {
    max-width: 10rem;
  }
  .pc-nav {
    gap: 1.25rem;
  }
  .pc-nav__list {
    gap: 1.25rem;
  }
  .pc-nav__list > li > a {
    font-size: 0.9375rem;
  }
  .header__btn {
    gap: 0.625rem;
  }
  .sns-link {
    width: 1.875rem;
    height: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-header {
    height: 5.9375rem;
  }
  .header__top {
    height: 3.75rem;
  }
  .header__inner {
    padding-right: 0;
    padding-left: 15px;
  }
  .header__logo {
    max-width: 8.125rem;
  }
  .header__btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.875rem;
  }
  .sns-link {
    width: 2.5rem;
    height: 2.5rem;
  }
  .header__bottom {
    height: 2.1875rem;
  }
  .header__bottom p {
    font-size: 0.75rem;
  }
  .header__hamburger {
    width: 3.75rem;
    height: 3.75rem;
    transition: 0.3s ease-out;
    z-index: 200;
    cursor: pointer;
    display: grid;
    justify-content: center;
    align-items: center;
  }
  .hamburger__wrapper {
    width: 1.875rem;
    height: 1.25rem;
    position: relative;
  }
  .hamburger__line {
    display: block;
    width: 100%;
    height: 0.125rem;
    background: #66AA53;
    border-radius: 624.9375rem;
    position: absolute;
    transition: 0.3s ease-out;
    transform-origin: left;
  }
  .hamburger__line:first-child {
    top: 0%;
  }
  .hamburger__line:nth-child(2) {
    background: #585858;
    top: 50%;
  }
  .hamburger__line:last-child {
    top: 100%;
  }
  .open.header__hamburger .hamburger__line:first-child {
    transform: rotate(42deg);
  }
  .open.header__hamburger .hamburger__line:nth-child(2) {
    opacity: 0;
  }
  .open.header__hamburger .hamburger__line:last-child {
    transform: rotate(-42deg);
  }
  .float-cta {
    width: 100%;
    height: 3.125rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    position: fixed;
    top: initial;
    bottom: 0;
    right: 0;
    transform: initial;
  }
  .float-cta a {
    writing-mode: initial;
    -ms-writing-mode: initial;
    width: 100%;
    height: 100%;
    font-size: 1rem;
  }
}
.p-overview__top {
  background: linear-gradient(#fff 0%, #fff 50%, #66AA53 50%, #66AA53 100%);
  padding: 10.6875rem 0 5.375rem;
}

.p-overview-top__title {
  max-width: 44.4375rem;
  margin: 0 auto 1.875rem;
}

.p-overview-top__container {
  display: flex;
}

.p-overview__img {
  max-width: 28.75rem;
  width: 100%;
  margin-right: -9.125rem;
  z-index: 2;
  position: relative;
  padding-top: 5.625rem;
}

.p-overview__text {
  max-width: 61.625rem;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 1.875rem rgba(10, 34, 0, 0.06);
  padding: 5.4375rem 2.0625rem 3.625rem 11.3125rem;
  z-index: 1;
  position: relative;
}

.p-overview-text__lead {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.56;
  margin-bottom: 1.875rem;
}

.p-overview-text__name {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.p-overview-text__name span {
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  padding-top: 1.25rem;
}

.p-overview-text__name img {
  width: 11.5625rem;
}

.p-overview__bottom {
  padding: 7.5rem 0;
}

.p-overview-bottom__title {
  text-align: center;
  margin-bottom: 3.125rem;
}

.overview__info {
  width: 100%;
  border-top: 1px solid #B4D0AC;
  margin-bottom: 4.5625rem;
}

.overview-info__row {
  width: 100%;
  display: flex;
  gap: 0;
  border-bottom: 1px solid #B4D0AC;
  position: relative;
}

.overview-info__name {
  max-width: 10.625rem;
  min-width: 80px;
  width: 100%;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.56;
  padding: 1.25rem 2.5rem;
}

.overview-info__content {
  padding: 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.56;
  border-left: 1px solid #B4D0AC;
}

.overview__map {
  width: 100%;
  aspect-ratio: 1020/510;
}

.overview__map iframe {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-overview__top {
    background: linear-gradient(#fff 0%, #fff 50%, #66AA53 50%, #66AA53 100%);
    padding: 5.0625rem 0 4.125rem;
  }
  .p-overview-top__title {
    max-width: 17.5rem;
    margin: 0 auto 1.875rem;
  }
  .p-overview-top__container {
    flex-direction: column;
  }
  .p-overview__img {
    max-width: 37.5rem;
    width: 70%;
    margin-right: auto;
    margin-left: auto;
    padding-top: 0;
  }
  .p-overview__text {
    max-width: 37.5rem;
    width: 100%;
    box-shadow: 0 0 0.625rem rgba(10, 34, 0, 0.06);
    padding: 25% 0.9375rem 2.5rem 0.9375rem;
    margin: -20% auto 0;
  }
  .p-overview-text__lead {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }
  .p-overview-text__name {
    gap: 0.625rem;
  }
  .p-overview-text__name span {
    font-size: 0.875rem;
    padding-top: 1rem;
  }
  .p-overview-text__name img {
    width: 8.75rem;
  }
  .p-overview__bottom {
    padding: 3.75rem 0;
  }
  .p-overview-bottom__title {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .overview__info {
    margin-bottom: 2.5rem;
  }
  .overview-info__row {
    flex-direction: column;
  }
  .overview-info__name {
    max-width: 100%;
    font-size: 1rem;
    padding: 0.625rem 0.9375rem;
  }
  .overview-info__content {
    padding: 0.3125rem 0.625rem 0.625rem 1.875rem;
    font-size: 1rem;
    border-left: none;
  }
  .overview__map {
    width: 100%;
    aspect-ratio: 375/300;
  }
  .overview__map iframe {
    width: 100%;
    height: 100%;
  }
}
.p-pager-list {
  display: flex;
  justify-content: space-between;
}

.p-pager-list__btn a {
  display: inline-block;
  padding: 10px 20px;
  color: #74AA66;
  border: 1px solid #74AA66;
}

.p-possible {
  background: url(../../assets/images/common/bg-pattern.jpg) repeat;
}

.p-possible__wrap {
  background: url(../../assets/images/common/line_house_12.png) no-repeat top right/36%, url(../../assets/images/common/line_house_13.png) no-repeat bottom 36% left/46%, url(../../assets/images/common/line_house_14.png) no-repeat bottom right/45%;
  padding-bottom: 7.5rem;
}

.p-possible__inner {
  padding-top: 3.75rem;
  padding-bottom: 3.125rem;
}

.p-possible__container:not(:last-of-type) {
  margin-bottom: 6.25rem;
}

.p-possible-container__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4.8125rem;
  margin-bottom: 3.125rem;
}

.reverse.p-possible-container__top {
  flex-direction: row-reverse;
}

.p-possible-container-top__img {
  max-width: 33.8125rem;
  width: 100%;
}

.p-possible-container-top__text {
  width: 100%;
}

.p-possible-container-top__title {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 700;
  color: #74AA66;
  letter-spacing: 0.1em;
  margin-bottom: 1.875rem;
}

.p-possible-container-top__lead {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.75;
}

.p-possible-container__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 1.875rem;
}

@media screen and (max-width: 767px) {
  .p-possible__wrap {
    background: url(../../assets/images/common/line_house_12.png) no-repeat top right/50%, url(../../assets/images/common/line_house_13.png) no-repeat bottom 36% left/50%, url(../../assets/images/common/line_house_14.png) no-repeat bottom right/50%;
    padding-bottom: 3.75rem;
  }
  .p-possible__inner {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
  .p-possible__container:not(:last-of-type) {
    margin-bottom: 3.75rem;
  }
  .p-possible-container__top {
    flex-direction: column;
    gap: 1.875rem;
    margin-bottom: 2.5rem;
  }
  .reverse.p-possible-container__top {
    flex-direction: column;
  }
  .p-possible-container-top__img {
    max-width: 37.5rem;
    order: 2;
  }
  .p-possible-container-top__text {
    display: contents;
  }
  .p-possible-container-top__title {
    font-size: 1.5rem;
    margin-bottom: 0;
    order: 1;
  }
  .p-possible-container-top__lead {
    max-width: 37.5rem;
    font-size: 0.875rem;
    order: 3;
  }
  .p-possible-container__list {
    max-width: 37.5rem;
    grid-template-columns: 1fr;
    gap: 1.875rem;
    margin: auto;
  }
}
.p-post-accordion__label {
  height: 4.375rem;
  background: #edefe6;
  border-radius: 0.625rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1875rem 2.3125rem 1.1875rem 1.9375rem;
  cursor: pointer;
  transition: 0.3s ease-out;
}
.p-post-accordion__label:hover {
  opacity: 0.6;
}

.p-post-accordion__title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.p-post-accordion__title::before {
  content: "Q";
  width: 2.0625rem;
  height: 2.0625rem;
  background: #8ca358;
  border-radius: 50%;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  display: grid;
  justify-content: center;
  align-items: center;
}

.p-post-accordion__icon {
  display: inline-block;
  width: 1.375rem;
  height: 0.1875rem;
  background: #585858;
  position: relative;
}

.p-post-accordion__icon::after {
  content: "";
  display: block;
  width: 0.1875rem;
  height: 1.375rem;
  background: #585858;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transform-origin: center center;
  transition: 0.3s ease-out;
}

.open .p-post-accordion__icon::after {
  height: 0;
}

.p-post-accordion__body {
  display: none;
  background: #fff;
  border-radius: 0.625rem;
  padding: 2.3125rem 1.9375rem 2.625rem;
}

.p-post-accordion__content {
  display: flex;
  gap: 0.625rem;
}

.p-post-accordion__content p {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.75;
  padding-top: 0.1875rem;
}

.p-post-accordion__content::before {
  content: "A";
  max-width: 2.0625rem;
  width: 100%;
  height: 2.0625rem;
  background: #fff;
  border: 0.125rem solid #8ca358;
  border-radius: 50%;
  color: #8CA358;
  font-size: 1rem;
  font-weight: 700;
  display: grid;
  justify-content: center;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .p-post-accordion__label {
    height: 3.125rem;
    padding: 0.75rem 0.625rem;
    gap: 0.3125rem;
  }
  .p-post-accordion__title {
    font-size: 0.875rem;
    letter-spacing: 0;
    gap: 0.625rem;
    line-height: 1.4;
  }
  .p-post-accordion__title::before {
    width: 1.625rem;
    height: 1.625rem;
    font-size: 0.875rem;
  }
  .p-post-accordion__icon {
    width: 1rem;
    height: 0.125rem;
  }
  .p-post-accordion__icon::after {
    width: 0.125rem;
    height: 1rem;
  }
  .p-post-accordion__body {
    padding: 1.5625rem 0.9375rem 1.25rem;
  }
  .p-post-accordion__content p {
    font-size: 0.875rem;
    line-height: 1.5;
    padding-top: 0.1875rem;
  }
  .p-post-accordion__content::before {
    max-width: 1.625rem;
    height: 1.625rem;
    border: 0.125rem solid #8ca358;
    font-size: 0.875rem;
  }
}
.p-post-article {
  background: url(../../assets/images/common/bg-pattern.jpg) repeat;
}

.p-post-article__inner {
  padding: 6.25rem 25px;
  text-align: center;
}

.p-post-article__container {
  margin-bottom: 6.25rem;
}

.p-post-article__cat-list {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
  margin-bottom: 1.3125rem;
}

.p-post-article__cat-list li {
  padding: 0.125rem 0.4375rem;
  color: #7cb963;
  background: #fff;
  border: 0.0625rem solid #7cb963;
  font-size: 1.125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-post-article__main-img img {
  height: 100%;
}

.p-post-article__title {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 1.0625rem;
}

.p-post-article__time {
  font-size: 1.375rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}

.p-post-article__place {
  font-size: 1.375rem;
  font-weight: 700;
  text-align: left;
  letter-spacing: 0.05em;
  margin-bottom: 3.125rem;
}

.p-post-article__content {
  padding: 3.125rem 5.4375rem 0;
  text-align: left;
}

.p-post-article__content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.36;
  padding: 3.125rem 0 2.5rem;
}

.p-post-article__content h3 {
  font-size: 1.5rem;
}

.p-post-article__content h4 {
  font-size: 1.375rem;
}

.p-post-article__content h5 {
  font-size: 1.25rem;
}

.p-post-article__content h6 {
  font-size: 1.1875rem;
}

.p-post-article__content p {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.56;
  padding-bottom: 1.5em;
}

.p-post-article__content ul li,
.p-post-article__content ol li {
  font-size: 1rem;
  line-height: 1.7;
}

.p-post-article__link {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1.875rem;
}

.p-post-article__btn {
  text-align: center;
}

.p-post-article__container .c-title {
  margin-bottom: 3.125rem;
}

.p-post-article__time {
  display: block;
  text-align: left;
  font-family: "Futura", serif;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 0.625rem;
}

@media screen and (max-width: 767px) {
  .p-post-article__inner {
    padding: 1.875rem 15px 3.75rem;
  }
  .p-post-article__container {
    margin-bottom: 3.125rem;
  }
  .p-post-article__cat-list {
    margin-bottom: 0.9375rem;
  }
  .p-post-article__cat-list li {
    font-size: 0.875rem;
  }
  .p-post-article__title {
    font-size: 1.5rem;
    margin-bottom: 1.0625rem;
  }
  .p-post-article__time {
    font-size: 0.875rem;
  }
  .p-post-article__place {
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
  }
  .p-post-article__content {
    padding: 0;
  }
  .p-post-article__content h2 {
    font-size: 1.25rem;
    padding: 1.875rem 0 1.25rem;
  }
  .p-post-article__content h3 {
    font-size: 1.1875rem;
  }
  .p-post-article__content h4 {
    font-size: 1.125rem;
  }
  .p-post-article__content h5 {
    font-size: 1.0625rem;
  }
  .p-post-article__content h6 {
    font-size: 1rem;
  }
  .p-post-article__content p {
    font-size: 0.875rem;
    padding-bottom: 1.25rem;
  }
  .p-post-article__content ul li,
  .p-post-article__content ol li {
    font-size: 0.875rem;
  }
  .p-post-article__link {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 1.875rem;
  }
  .p-post-article__btn {
    text-align: center;
  }
}
.p-post-card__link {
  width: 100%;
  height: 100%;
  background: #fff;
  position: relative;
  display: block;
  box-shadow: 0 0 1.875rem rgba(10, 34, 0, 0.06);
}
.p-post-card__link:hover .p-post-card__img img {
  transform: scale(1.1);
}

.p-post-card__img {
  width: 100%;
  aspect-ratio: 360/276;
  overflow: hidden;
}

.p-post-card__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-out;
}

.p-post-card__body {
  padding: 0.9375rem 0.9375rem 1.6875rem;
}

.p-post-card__info {
  display: flex;
  align-items: center;
  padding-bottom: 0.5rem;
  gap: 0.9375rem;
}

.p-post-card__date {
  font-family: "Futura", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #a2a2a2;
}

.p-post-card__category {
  display: flex;
  align-items: center;
  gap: 0.3125rem;
}

.p-post-card__category li,
.p-post-card__new {
  padding: 0.1875rem 0.25rem;
  color: #7cb963;
  background: #fff;
  border: 0.125rem solid #7cb963;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
}

.p-post-card__new {
  position: absolute;
  top: 0;
  left: 0;
}

.p-post-card__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1.45;
  min-height: 4rem;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.p-post-card__bottom {
  font-family: "Noto Serif JP", serif;
  font-size: 1rem;
  font-weight: 700;
  padding-top: 1.0625rem;
}

@media screen and (max-width: 767px) {
  .p-post-card__link {
    box-shadow: 0 0 0.625rem rgba(10, 34, 0, 0.06);
  }
  .p-post-card__body {
    padding: 0.625rem 0.625rem 1.25rem;
  }
  .p-post-card__info {
    padding-bottom: 0.5rem;
    gap: 0.3125rem;
  }
  .p-post-card__date {
    font-size: 0.75rem;
  }
  .p-post-card__category li,
  .p-post-card__new {
    padding: 0.1875rem 0.25rem;
    font-size: 0.6875rem;
  }
  .p-post-card__title {
    font-size: 0.875rem;
    min-height: auto;
  }
  .p-post-card__bottom {
    font-size: 0.6875rem;
    padding-top: 0.625rem;
  }
}
.p-post-connect__title {
  font-size: 1.5rem;
  color: #74AA66;
}

.p-post-connect__items {
  display: grid;
  gap: 3.125rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-post-connect__items {
    row-gap: 2.5rem;
    -moz-column-gap: 1.25rem;
         column-gap: 1.25rem;
    grid-template-columns: repeat(4, 1fr);
  }
}

.p-post-list {
  background: url(../../assets/images/common/bg_pattern_gray.jpg) repeat;
  background-size: contain;
  position: relative;
}

.p-post-list__sub {
  background: #fff;
  position: relative;
}

.p-post-list__inner {
  background: url(../../assets/images/common/line_house_02.png) no-repeat top right/36.25%;
  padding: 7.5rem 25px;
}

.p-post-list__wrap {
  background: url(../../assets/images/common/line_house_11.png) no-repeat center right/37.29%, url(../../assets/images/common/bg-pattern.jpg) repeat;
  padding-bottom: 7.8125rem;
}

.p-post-list__title {
  margin: auto;
  text-align: center;
  margin-bottom: 3.125rem;
}

.p-post-list__items {
  max-width: 47.0625rem;
  width: 100%;
  margin: 0 auto 3.125rem;
}

.p-post-list__cards {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-post-list__cards {
    margin-top: 6.25rem;
  }
}

.p-post-list__btn {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-post-list__inner {
    background: url(../../assets/images/common/line_house_02.png) no-repeat top right/55%;
    padding: 3.75rem 15px;
  }
  .p-post-list__title {
    margin-bottom: 2.5rem;
  }
  .p-post-list__items {
    max-width: 37.5rem;
    margin: 0 auto 2.5rem;
  }
  .p-post-list__cards {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-post-list__cards {
    margin-top: 6.25rem;
  }
}
.p-post-row {
  border-bottom: 1px solid #ddd;
}

.p-post-row:first-of-type {
  border-top: 1px solid #ddd;
}

.p-post-row__link {
  display: flex;
  align-items: center;
  padding: 1.59375rem 5.625rem 1.59375rem 3.125rem;
  gap: 2.875rem;
  position: relative;
}

.p-post-row__link::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #919191;
  border-right: 2px solid #919191;
  transition: 0.3s;
  position: absolute;
  top: 50%;
  right: 3.125rem;
  transform: translateY(-50%) rotate(45deg);
}

.p-post-row__link:hover::after {
  border-top: 2px solid #585858;
  border-right: 2px solid #585858;
  transform: translate(10px, -50%) rotate(45deg);
}

.p-post-row__date {
  font-family: "Futura", serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #a2a2a2;
}

.p-post-row__title {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .p-post-row__link {
    padding: 0.9375rem 1.875rem 0.9375rem 0.625rem;
    gap: 1.5625rem;
  }
  .p-post-row__link::after {
    width: 8px;
    height: 8px;
    right: 0.625rem;
  }
  .p-post-row__link:hover::after {
    transform: translateY(-50%) rotate(45deg);
  }
  .p-post-row__date {
    font-size: 0.625rem;
  }
  .p-post-row__title {
    font-size: 0.875rem;
    letter-spacing: 0;
  }
}
.p-promise {
  background: url(../../assets/images/common/line_house_06.png) no-repeat top left/39%, url(../../assets/images/common/line_house_07.png) no-repeat bottom right/27%;
  padding: 7.5rem 0;
}

.p-promise__title {
  text-align: center;
  margin-bottom: 3.125rem;
}

.p-promise__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  gap: 5.125rem 5.3125rem;
}

.p-promise__item {
  background: #cfdeca;
  -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 100%, 0 100%, 0 25%);
          clip-path: polygon(50% 0%, 100% 25%, 100% 100%, 0 100%, 0 25%);
  padding: 5.125rem 3.4375rem 3.4375rem;
}

.p-promise__item:nth-of-type(2) {
  background: #dae8b9;
}

.p-promise__item:nth-of-type(3) {
  background: #dae8b9;
}

.p-promise__num {
  width: 5.5rem;
  height: 3.1875rem;
  background: #fff;
  color: #cfdeca;
  font-family: "Futura", serif;
  font-size: 2.8125rem;
  font-weight: 500;
  line-height: 1;
  display: grid;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto 1.875rem;
}

.p-promise__item:nth-of-type(2) .p-promise__num {
  color: #dae8b9;
}

.p-promise__item:nth-of-type(3) .p-promise__num {
  color: #dae8b9;
}

.p-promise__num::before {
  content: "promise";
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  position: absolute;
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
}

.p-promise-item__title {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  margin-bottom: 3.75rem;
}

.p-promise__container span {
  font-size: 3.125rem;
}

.p-promise__container::first-letter {
  font-size: 3.125rem;
}

.p-promise-item__title::after {
  content: "";
  display: block;
  width: 30%;
  height: 0.25rem;
  background: #fff;
  position: absolute;
  bottom: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
}

.p-promise-text__lead {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  .p-promise {
    background: url(../../assets/images/common/line_house_06.png) no-repeat top left/60%, url(../../assets/images/common/line_house_07.png) no-repeat bottom right/60%;
    padding: 3.75rem 0;
  }
  .p-promise__title {
    margin-bottom: 2.5rem;
  }
  .p-promise__container {
    max-width: 28.125rem;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 1fr;
    gap: 2.5rem;
  }
  .p-promise__item {
    background: #cfdeca;
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 100%, 0 100%, 0 25%);
            clip-path: polygon(50% 0%, 100% 25%, 100% 100%, 0 100%, 0 25%);
    padding: 3.75rem 0.9375rem 1.5625rem;
    letter-spacing: 0;
  }
  .p-promise__item:nth-of-type(2) {
    background: #dae8b9;
  }
  .p-promise__item:nth-of-type(3) {
    background: #dae8b9;
  }
  .p-promise__num {
    width: 3.75rem;
    height: 1.9375rem;
    font-size: 1.875rem;
    margin: 0 auto 1.25rem;
  }
  .p-promise__num::before {
    font-size: 0.875rem;
    top: -60%;
  }
  .p-promise-item__title {
    font-size: 1.375rem;
    margin-bottom: 2.8125rem;
  }
  .p-promise__container span {
    font-size: 1.875rem;
  }
  .p-promise-item__title::after {
    width: 30%;
    height: 0.1875rem;
    bottom: -0.9375rem;
  }
  .p-promise-text__lead {
    font-size: 0.875rem;
  }
}
.header__nav--sp {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 5.9375rem;
  left: 0;
  z-index: 199;
  transition: 0.3s;
  overflow-y: hidden;
  transform: translateX(100%);
}

.header__nav--sp.open {
  visibility: visible;
  opacity: 1;
  transform: translateX(0%);
}

.sp-nav__bg {
  background: #EDF0E6;
  width: 100%;
  height: inherit;
  overflow-y: scroll;
  position: relative;
  padding: 3.125rem 0 2.5rem;
}

.sp-nav {
  overflow-y: scroll;
  padding-bottom: 6.25rem;
  height: 100%;
}

.sp-nav__list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3.125rem;
}

.sp-nav__list > li {
  width: 100%;
  padding: 0 15px;
  position: relative;
}

.sp-nav__list > li > a {
  font-size: 1.125rem;
  font-weight: 700;
  padding: 0.625rem 0.3125rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  border-bottom: 0.0625rem solid #66AA53;
}

.sp-nav__links {
  display: flex;
  justify-content: flex-end;
  gap: 1.5625rem;
  padding: 0 15px;
}

.p-staff-top,
.p-staff-bottom {
  background: url(../../assets/images/common/bg-pattern.jpg) repeat;
  padding-bottom: 6.25rem;
}

.p-staff-bottom {
  padding-top: 6.25rem;
}

.p-staff-middle {
  background: #edf0e6;
  padding: 5rem 0;
}

.p-staff-top__title {
  text-align: center;
  margin-bottom: 3.75rem;
}

.p-staff-bottom__title {
  text-align: center;
  margin-bottom: 1.5625rem;
}

.p-staff-top__lead {
  font-family: "Noto Serif JP", serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
}

.p-staff-bottom__lead {
  font-size: 1.125rem;
  line-height: 1.5555555556;
  letter-spacing: 0.1em;
  margin-bottom: 6.25rem;
}

.p-staff-middle__container {
  background: #fff;
  padding: 3.75rem 5.9375rem;
  text-align: center;
  box-shadow: 0 0 1.875rem rgba(16, 54, 6, 0.06);
}

.p-staff-middle__title {
  margin-bottom: 4.125rem;
}

.p-staff-middle__title::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 0.0625rem;
  background: #50a92b;
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
}

.p-staff-middle__text + .p-staff-middle__text {
  padding-top: 3.125rem;
}

.p-staff-middle__title-sub {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5833333333;
  letter-spacing: 0.1em;
  margin-bottom: 1.5rem;
}

.title-green {
  color: #74AA66;
}

.p-staff-middle__lead {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5555555556;
  letter-spacing: 0.1em;
  -moz-text-align-last: left;
       text-align-last: left;
  display: inline-block;
  text-align: left;
}

.p-staff-bottom .p-contact-tel__content {
  padding: 2.625rem;
}

.p-staff-bottom .p-contact-tel-content__head {
  font-family: "Noto Serif JP", serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #74AA66;
  padding: 0.625rem 2.3125rem;
  margin-bottom: 0rem;
}

.p-contact-tel-content__num {
  font-size: 4.4375rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 0.875rem;
}

.p-contact-tel-content__num::before {
  content: "";
  display: block;
  width: 3.0625rem;
  height: 2.4375rem;
  background: url(../../assets/images/common/icon_phone_b.svg) no-repeat center center/cover;
}

.p-contact-tel-content__bottom {
  font-size: 1rem;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .p-staff-top,
  .p-staff-bottom {
    padding-bottom: 3.75rem;
  }
  .p-staff-bottom {
    padding-top: 3.75rem;
  }
  .p-staff-middle {
    background: #edf0e6;
    padding: 3.75rem 0;
  }
  .p-staff-top__title {
    text-align: center;
    margin-bottom: 2.5rem;
  }
  .p-staff-top__lead {
    font-size: 0.875rem;
    text-align: left;
    letter-spacing: 0.05em;
  }
  .p-staff-bottom__lead {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    margin-bottom: 3.75rem;
  }
  .p-staff-middle__container {
    padding: 2.5rem 1.5625rem;
  }
  .p-staff-middle__title {
    margin-bottom: 2.875rem;
  }
  .p-staff-middle__title::after {
    width: 1.25rem;
    bottom: -0.75rem;
  }
  .p-staff-middle__text + .p-staff-middle__text {
    padding-top: 3.125rem;
  }
  .p-staff-middle__title-sub {
    font-size: 1rem;
  }
  .p-staff-middle__lead {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
  }
  .p-staff-bottom .p-contact-tel__content {
    padding: 1.875rem 0.9375rem;
  }
  .p-staff-bottom .p-contact-tel-content__head {
    font-size: 1rem;
    padding: 0.3125rem 1.25rem;
    letter-spacing: 0.05em;
  }
  .p-contact-tel-content__num {
    font-size: 2.25rem;
    gap: 0.5rem;
  }
  .p-contact-tel-content__num::before {
    content: "";
    display: block;
    width: 1.6875rem;
    height: 1.25rem;
  }
  .p-contact-tel-content__bottom {
    font-size: 0.75rem;
  }
}
.p-strong {
  background: url(../../assets/images/common/bg_pattern_gray.jpg) repeat;
  background-size: contain;
  position: relative;
}

.p-strong__wrap {
  background: url(../../assets/images/common/line_house_08.png) no-repeat top left/38%, url(../../assets/images/common/line_house_09.png) no-repeat center right/40%, url(../../assets/images/common/line_house_10.png) no-repeat bottom left/39%;
  padding: 7.5rem 0;
}

.p-strong__title {
  max-width: 28.875rem;
  width: 100%;
  margin: 0 auto 4.25rem;
}

.p-strong__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}

.p-strong__item {
  display: flex;
  align-items: center;
}

.p-strong__text {
  min-width: 40.9375rem;
  width: 100%;
  background: #fff;
  position: relative;
  padding: 2.625rem 2.5rem 2.1875rem;
  margin-right: -3.125rem;
  z-index: 2;
}

.p-strong__num {
  font-family: "Futura", serif;
  font-size: 3.75rem;
  font-weight: 500;
  line-height: 1;
  color: #67b255;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  position: absolute;
  top: -1.875rem;
  left: 1.125rem;
}

.p-strong__num::before {
  content: "FEATURE";
  font-size: 0.75rem;
}

.p-strong-item__title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.36;
  letter-spacing: 0.1em;
  color: #74AA66;
  margin-bottom: 1.25rem;
}

.p-strong-item__title span {
  color: #585858;
}

.p-strong-text__lead {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.81;
}

.p-strong-text__lead .highlight {
  font-weight: 500;
}

.p-strong__img {
  max-width: 33.375rem;
  width: 100%;
}

.reverse.p-strong__item {
  flex-direction: row-reverse;
}

.reverse .p-strong__text {
  margin-right: initial;
  margin-left: -3.125rem;
  z-index: 2;
}

.reverse .p-strong__num {
  left: 4.75rem;
}

@media screen and (max-width: 767px) {
  .p-strong__wrap {
    background: url(../../assets/images/common/line_house_08.png) no-repeat top left/60%, url(../../assets/images/common/line_house_09.png) no-repeat center right/60%, url(../../assets/images/common/line_house_10.png) no-repeat bottom left/60%;
    padding: 3.75rem 0;
  }
  .p-strong__title {
    max-width: 14.375rem;
    width: 100%;
    margin: 0 auto 3rem;
  }
  .p-strong__container {
    max-width: 37.5rem;
    margin: auto;
    gap: 3.75rem;
  }
  .p-strong__item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
  }
  .p-strong__text {
    min-width: 100%;
    padding: 2.625rem 1.25rem 1.5625rem;
    margin-right: 0;
  }
  .p-strong__num {
    font-size: 2.5rem;
    top: -1.25rem;
    left: 1.25rem;
  }
  .p-strong__num::before {
    font-size: 0.625rem;
  }
  .p-strong-item__title {
    font-size: 1.375rem;
    margin-bottom: 0.9375rem;
  }
  .p-strong-text__lead {
    font-size: 0.875rem;
    line-height: 1.75;
  }
  .p-strong__img {
    max-width: 80%;
    width: 100%;
  }
  .reverse.p-strong__item {
    flex-direction: column;
  }
  .reverse .p-strong__text {
    margin-right: 0;
    margin-left: 0;
  }
  .reverse .p-strong__num {
    left: 1.25rem;
  }
}
.p-top-about {
  position: relative;
  background: url(../../assets/images/common/bg-pattern.jpg) repeat;
}

.top-about__top {
  background: url(../../assets/images/common/line_house_01.png) no-repeat bottom left/52.8%;
  padding-bottom: 7.5rem;
}

.top-about__copy {
  max-width: 36.25rem;
  margin: 0 auto 5.625rem;
}

.top-about__content {
  margin-left: 50%;
}

.top-about__title {
  margin-bottom: 2.5rem;
}

.top-about__content p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-bottom: 3.75rem;
  word-break: auto-phrase;
}

.top-about-bottom {
  z-index: 1;
}

.top-about-bottom__inner {
  width: 100vw;
  display: flex;
  align-items: center;
  margin: auto;
  overflow: hidden;
}

@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.top-about-bottom__wrapper {
  height: inherit;
  display: flex;
  align-items: center;
  animation: loop-slide 30s infinite linear 1s both;
}

.top-about-bottom__item {
  width: 18.75rem;
  margin-left: 0.625rem;
}

@media screen and (max-width: 767px) {
  .top-about__top {
    background: url(../../assets/images/common/line_house_01.png) no-repeat bottom left/50%;
    padding-bottom: 3.75rem;
  }
  .top-about__copy {
    max-width: 16.25rem;
    margin: 1.875rem auto 3.75rem;
  }
  .top-about__content {
    margin-left: 0;
    padding: 0 15px;
    text-align: center;
  }
  .top-about__title {
    margin-bottom: 1.875rem;
  }
  .top-about__content p {
    font-size: 0.875rem;
    letter-spacing: 0;
    line-height: 1.875;
    margin-bottom: 2.5rem;
  }
  .top-about-bottom__item {
    width: 7.5rem;
    margin-left: 0.625rem;
  }
  .top-about-bottom__item img {
    height: 100%;
  }
}
.p-top-gallery__inner {
  margin: 5% 5% 0 5%;
}

.p-top-gallery .splide__slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-gallery .splide__slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-gallery .swiper-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-gallery .swiper-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-gallery .slick-track {
  display: block;
  width: 100%;
}

.p-top-gallery .slick-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
  margin: 0 5px;
}

.p-top-gallery .slick-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-gallery .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-mv-slick {
  background: black;
}

.p-top-mv-slick__inner {
  margin: 5% 5% 0 5%;
}

.p-top-mv-slick .slick-track {
  display: block;
  width: 100%;
}

.p-top-mv-slick .slick-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
  margin: 0 5px;
}

.p-top-mv-slick .slick-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-slick .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-mv-splide__inner {
  margin: 0;
  position: relative;
}

.p-top-mv-splide .splide__slide {
  display: block;
  width: 100%;
  aspect-ratio: 1920/977;
}

.p-top-mv-splide .splide__slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-splide .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-mv-swiper__inner {
  margin: 5% 5% 0 5%;
}

.p-top-mv-swiper .swiper-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-mv-swiper .swiper-slide picture {
  height: inherit;
  height: 100%;
}

.p-top-mv-swiper .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-mv-swiper .swiper-button-prev,
.p-top-mv-swiper .swiper-button-next {
  text-rendering: initial;
}

.p-top-possible {
  background: #fff;
  overflow: hidden;
}

.p-top-possible__top {
  padding: 7.5rem 25px 9.8125rem;
}

.top-possible__title {
  text-align: center;
}

.p-top-possible__bottom {
  background: #66AA53;
  padding-bottom: 7.5rem;
}

.p-top-possible__container {
  display: flex;
  gap: 3.125rem;
  margin-bottom: 5rem;
}

.p-top-possible__item {
  display: block;
  width: 100%;
  position: relative;
  margin-top: -4.8125rem;
}

.p-top-possible__item:hover {
  opacity: 0.9;
}

.p-top-possible__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease-out;
  position: relative;
  z-index: 1;
}

.p-top-possible__item span {
  width: max(240px, 23.75rem);
  height: 4.0625rem;
  background: rgba(255, 255, 255, 0.95);
  font-family: "Noto Serif JP", serif;
  font-size: 1.75rem;
  font-weight: 700;
  display: grid;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  transition: 0.5s ease-out;
}

.p-top-possible__item:hover span {
  background: #585858;
  color: #fff;
}

.popup {
  width: 13.5625rem;
  height: 20.75rem;
  position: absolute;
  top: -9rem;
  right: -10%;
  transform: rotate(8deg);
  opacity: 0;
  visibility: hidden;
}

.popup::after {
  content: "";
  display: block;
  width: 2.5625rem;
  height: 3.9375rem;
  background: url(../../assets/images/common/icon_light.svg) no-repeat center center/cover;
  position: absolute;
  top: 4%;
  left: 8%;
  transform: translate(5px, 5px);
  opacity: 0;
  visibility: hidden;
}

.p-top-possible__btn {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-top-possible__top {
    padding: 3.75rem 25px 5rem;
  }
  .p-top-possible__bottom {
    padding-bottom: 3.75rem;
  }
  .p-top-possible__container {
    max-width: 25rem;
    width: 75%;
    flex-direction: column;
    gap: 3.75rem;
    margin: 0 auto 3.125rem;
    padding-top: 3.125rem;
  }
  .p-top-possible__item {
    margin-top: 0;
  }
  .p-top-possible__item:hover {
    opacity: 1;
  }
  .p-top-possible__item span {
    width: min(250px, 23.75rem);
    height: 2.8125rem;
    font-size: 1rem;
  }
  .popup {
    width: 4.25rem;
    height: 10.5rem;
    position: absolute;
    top: -4.625rem;
    right: -1%;
    transform: rotate(8deg) translateY(10.5rem);
  }
  .popup::after {
    width: 1.25rem;
    height: 1.9375rem;
    background: url(../../assets/images/common/icon_light_w.svg) no-repeat center center/cover;
    left: 0%;
  }
}
.p-top-post {
  background: #EDF0E6;
  position: relative;
}

.p-top-post__bg {
  background: url(../../assets/images/common/bg-pattern.jpg) repeat;
  opacity: 0.15;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.p-top-post__inner {
  background: url(../../assets/images/common/line_house_02.png) no-repeat top right/36.25%;
  padding: 7.5rem 25px;
}

.top-news__title {
  margin: auto;
  text-align: center;
  margin-bottom: 3.125rem;
}

.p-post-list__container {
  max-width: 47.0625rem;
  width: 100%;
  margin: 0 auto 3.125rem;
}

.top-news__btn {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-top-post__inner {
    background: url(../../assets/images/common/line_house_02.png) no-repeat top right/50.25%;
    padding: 3.75rem 15px;
  }
  .top-news__title {
    margin-bottom: 2.5rem;
  }
  .p-post-list__container {
    max-width: 37.5rem;
    margin: 0 auto 2.5rem;
  }
}
.p-top-works {
  padding-bottom: 3.125rem;
}

.p-top-works__inner {
  margin: 5% 5% 0 5%;
}

.p-top-works .splide__slide {
  display: block;
  width: 100%;
}

.p-top-works .splide__slide a {
  display: block;
  aspect-ratio: 600/400;
}

.p-top-works .splide__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-works .splide__pagination {
  bottom: -2em;
}

.p-top-works .splide__pagination__page.is-active {
  background-color: blue;
}

.p-top-works .swiper {
  padding-bottom: 20px;
}

.p-top-works .swiper-slide {
  display: block;
  width: 100%;
  aspect-ratio: 600/300;
}

.p-top-works .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-works .swiper-pagination {
  bottom: 0;
}

.p-top-works .swiper-button-prev,
.p-top-works .swiper-button-next {
  text-rendering: initial;
}

.p-top-works .slick-track {
  display: block;
  width: 100%;
}

.p-top-works .slick-slide {
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 5px;
}

.p-top-works .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 600/300;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-works .slick-next,
.p-top-works .slick-prev {
  background: gray;
}

.p-works-article,
.p-works-article__voice {
  background: url(../../assets/images/common/bg-pattern.jpg) repeat;
}

.p-works-article {
  padding-bottom: 2.6875rem;
}

.p-works-article__wrap {
  background: url(../../assets/images/common/line_house_20.png) no-repeat top 30.625rem left/35%, url(../../assets/images/common/line_house_21.png) no-repeat center right/34%, url(../../assets/images/common/line_house_22.png) no-repeat bottom 30.625rem left/39%, url(../../assets/images/common/line_house_23.png) no-repeat bottom right/51%;
}

.p-works-article__inner {
  padding: 8.75rem 25px 4.8125rem;
  text-align: center;
}

.p-works-article__title {
  text-align: center;
  margin-bottom: 3.125rem;
}

.p-works-article__flex {
  display: flex;
  gap: 3.75rem;
  margin-bottom: 3.125rem;
  text-align: left;
}

.p-works-article__gallery {
  max-width: 50%;
  width: 100%;
}

.p-works-article-gallery__content {
  display: flex;
  flex-direction: column;
  gap: 3.125rem;
}

.p-works-article-gallery__img {
  width: 100%;
  margin-bottom: 1.25rem;
}

.p-works-article-gallery__title {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 0.625rem;
}

.p-works-article-gallery__lead {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}

.p-works-article__info {
  max-width: calc(100% - 3.75rem);
  width: 100%;
  height: 100%;
  position: sticky;
  top: 14.375rem;
}

.p-works-article-info__bg {
  width: 100%;
  background: #EDF0E6;
  -webkit-clip-path: polygon(50% 0%, 100% 35%, 100% 100%, 0 100%, 0 35%);
          clip-path: polygon(50% 0%, 100% 35%, 100% 100%, 0 100%, 0 35%);
  padding: 6.25rem 1.25rem 1.6875rem;
}

.p-works-article-info__inner {
  max-width: 25rem;
  margin: 0 auto;
}

.p-works-article-info__title {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 1.75rem;
  text-align: center;
}

.p-works-article-info__content li {
  display: flex;
  align-items: center;
  padding: 0 1.125rem 0.125rem;
  border-bottom: 1px solid #AFB4A4;
  margin-bottom: 0.71875rem;
  gap: 1.25rem;
}

.p-works-article-info__name {
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.p-works-article-info__body {
  width: 100%;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.05em;
}

.p-works-article__btn {
  text-align: center;
}

.p-works-article__voice {
  padding-bottom: 5rem;
}

.p-works-article-voice__content {
  max-width: 51.75rem;
  width: 100%;
  margin: auto;
  position: relative;
  background: #fff;
  box-shadow: 0 0 1.875rem rgba(10, 34, 0, 0.06);
}

.p-works-article-voice__img {
  width: 11.375rem;
  height: 11.375rem;
  position: absolute;
  top: -5.6875rem;
  right: -5.6875rem;
  z-index: 2;
}

.p-works-article-voice__img img {
  height: 100%;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-works-article-voice__title {
  color: #fff;
  background: #66AA53;
  width: 100%;
  display: grid;
  justify-content: center;
  align-items: center;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.5625rem;
  z-index: 1;
}

.p-works-article-voice__lead {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  padding: 2.625rem 2.625rem 3.375rem;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .p-works-article {
    padding-bottom: 2.6875rem;
  }
  .p-works-article__wrap {
    background: url(../../assets/images/common/line_house_20.png) no-repeat top 11.875rem left/35%, url(../../assets/images/common/line_house_21.png) no-repeat center right/34%, url(../../assets/images/common/line_house_22.png) no-repeat bottom 11.875rem left/39%, url(../../assets/images/common/line_house_23.png) no-repeat bottom right/51%;
  }
  .p-works-article__inner {
    padding: 1.875rem 15px 3.75rem;
    text-align: center;
  }
  .p-works-article__title {
    margin-bottom: 2.5rem;
  }
  .p-works-article__flex {
    flex-direction: column-reverse;
    align-items: center;
    margin-bottom: 2.5rem;
  }
  .p-works-article__gallery {
    max-width: 37.5rem;
  }
  .p-works-article-gallery__content {
    gap: 2.5rem;
  }
  .p-works-article-gallery__img {
    margin-bottom: 1.25rem;
  }
  .p-works-article-gallery__title {
    font-size: 1.125rem;
  }
  .p-works-article-gallery__lead {
    font-size: 0.875rem;
  }
  .p-works-article__info {
    max-width: 37.5rem;
    position: static;
  }
  .p-works-article-info__bg {
    width: 100%;
    background: #EDF0E6;
    -webkit-clip-path: polygon(50% 0%, 100% 30%, 100% 100%, 0 100%, 0 30%);
            clip-path: polygon(50% 0%, 100% 30%, 100% 100%, 0 100%, 0 30%);
    padding: 5rem 1.25rem 1.25rem;
  }
  .p-works-article-info__title {
    font-size: 1.25rem;
  }
  .p-works-article-info__content li {
    padding: 0 0.625rem 0.125rem;
    margin-bottom: 0.625rem;
    gap: 0.9375rem;
  }
  .p-works-article-info__name {
    font-size: 0.875rem;
  }
  .p-works-article-info__body {
    font-size: 0.875rem;
  }
  .p-works-article__voice {
    padding-bottom: 5rem;
  }
  .p-works-article__voice .p-works-article__title {
    margin-bottom: 3.125rem;
  }
  .p-works-article-voice__content {
    max-width: 37.5rem;
    box-shadow: 0 0 0.625rem rgba(10, 34, 0, 0.06);
  }
  .p-works-article-voice__img {
    width: 5rem;
    height: 5rem;
    top: -4.0625rem;
    right: 0rem;
  }
  .p-works-article-voice__title {
    font-size: 0.875rem;
    padding: 1.25rem 0.5625rem 0.5625rem 0.5625rem;
  }
  .p-works-article-voice__lead {
    font-size: 0.875rem;
    padding: 1.25rem 1.25rem;
  }
}
.p-works-list {
  background: #f2f2f2;
  position: relative;
}

.p-works-list__bg {
  background: url(../../assets/images/common/line_house_03.png) no-repeat top left/50%, url(../../assets/images/common/bg-pattern.jpg) repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  z-index: 0;
}

.p-works-list__inner {
  padding: 5.875rem 25px 7.5rem;
}

.p-works-list__title {
  margin: auto;
  text-align: center;
  margin-bottom: 2.875rem;
}

.p-works-list__items {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  gap: 3.125rem 1.875rem;
  margin: 0 auto 3.125rem;
}

.p-works-list__btn {
  text-align: center;
}

.p-works-list__sub {
  background: url(../../assets/images/common/bg-pattern.jpg) repeat;
}

.p-works-list__wrap {
  background: url(../../assets/images/common/line_house_15.png) no-repeat top -14% right/40.41%, url(../../assets/images/common/line_house_16.png) no-repeat center left/35.31%, url(../../assets/images/common/line_house_17.png) no-repeat bottom right/39.16%;
  padding-bottom: 7.5rem;
}

.p-works-list__sub .p-works-list__title {
  margin-bottom: 1.875rem;
}

.p-works-anchor {
  display: flex;
  justify-content: center;
  gap: 3.4375rem;
  margin-bottom: 5rem;
}

.p-works-article .p-works-anchor {
  gap: 7.0625rem;
}

.anchor-link {
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.anchor-link::after {
  content: "";
  display: block;
  width: 1.1875rem;
  height: 0.5rem;
  background: url(../../assets/images/common/icon_anchor.svg) no-repeat center center/cover;
  transition: 0.3s ease-out;
}

.anchor-link:hover::after {
  transform: translateY(3px);
}

#anchor-works {
  padding-top: 5rem;
}

.works-tab {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 1.875rem;
  margin-bottom: 3.125rem;
  padding-top: 0.9375rem;
}

.tab-item {
  padding: 0.6875rem 3.3125rem;
  border: 2px solid #585858;
  color: #585858;
  transition: 0.3s;
  border-radius: 624.9375rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

a.tab-item:hover {
  background-color: #67b255;
  color: #fff;
  border-color: #67b255;
  opacity: 1;
}

span.tab-item {
  display: block;
  background-color: #67b255;
  color: #fff;
  border: 2px solid #67b255;
  pointer-events: none;
}

.maintenance__top {
  background: linear-gradient(#fff 0%, #fff 45%, #66AA53 45%, #66AA53 100%);
  padding: 7.5rem 0 11.25rem;
}

.maintenance__title {
  text-align: center;
  margin-bottom: 3.75rem;
}

.maintenance-top__container {
  width: 100%;
  position: relative;
}

.maintenance-top__container::before {
  content: "";
  display: block;
  width: 20.8125rem;
  height: 15.6875rem;
  background: url(../../assets/images/common/works_after_01.jpg) no-repeat center center/cover;
  position: absolute;
  top: -2.5rem;
  left: 0%;
}

.maintenance-top__container::after {
  content: "";
  display: block;
  width: 20.8125rem;
  height: 15.6875rem;
  background: url(../../assets/images/common/works_after_02.jpg) no-repeat center center/cover;
  position: absolute;
  bottom: -9.3125rem;
  right: 0%;
}

.maintenance-top__body {
  max-width: 61.625rem;
  width: 100%;
  background: #fff;
  padding: 3.3125rem 11.125rem 5.5rem 14.9375rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  margin: auto;
  box-shadow: 0 0 1.875rem rgba(10, 34, 0, 0.06);
}

.highlight {
  background: linear-gradient(transparent 0%, transparent 60%, #D3F091 60%, #D3F091 100%);
}

.maintenance__bottom {
  background: url(../../assets/images/common/line_house_18.png) no-repeat top left/38.64%, url(../../assets/images/common/line_house_19.png) no-repeat bottom right/27.34%;
  padding: 8.125rem 0 8.375rem;
}

.maintenance-bottom__container {
  background: #fff;
  padding: 3.75rem;
  margin: auto;
  box-shadow: 0 0 1.875rem rgba(10, 34, 0, 0.06);
}

.maintenance-bottom__title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 2.5rem;
}

.maintenance-bottom__body {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.55;
  margin-bottom: 2.5rem;
}

.maintenance-bottom-table__head {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.maintenance-bottom-table__list {
  border-top: 1px solid #707070;
}

.meintenance-bottom-table-list__item {
  border-bottom: 1px solid #707070;
  display: flex;
  align-items: center;
}

.table-name {
  max-width: 20rem;
  width: 100%;
  border-right: 1px solid #707070;
  padding: 1.25rem 3.125rem 1.25rem 2.5rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.table-body {
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  width: 100%;
  padding: 0 3.71875rem;
}

.model-house {
  padding: 6.625rem 0 5rem;
}

.model-house__container {
  display: flex;
  justify-content: space-between;
  gap: 2.0625rem;
}

.model-house__text {
  max-width: 36.6875rem;
  width: 100%;
}

.model-house__title {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.model-house__lead {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.75;
  margin-bottom: 1.4375rem;
}

.model-house__tel {
  width: 100%;
  background: #EDF0E6;
  text-align: center;
  padding: 1.75rem 3.875rem;
}

.model-house-tel__head {
  color: #67B255;
  background: #fff;
  padding: 0.4375rem;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.model-house-tel__num {
  font-size: 3.125rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: baseline;
  letter-spacing: 0.04em;
  gap: 0.625rem;
  margin-bottom: 0.4375rem;
}

.model-house-tel__num::before {
  content: "";
  display: block;
  width: 2.125rem;
  height: 1.6875rem;
  background: url(../../assets/images/common/icon_phone_b.svg) no-repeat center center/cover;
}

.model-house-tel__time {
  font-size: 1rem;
  font-weight: 400;
}

.model-house__img {
  max-width: 32.375rem;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .p-works-list__bg {
    background: url(../../assets/images/common/line_house_03.png) no-repeat top left/50%, url(../../assets/images/common/bg-pattern.jpg) repeat;
  }
  .p-works-list__inner {
    padding: 3.125rem 15px 3.75rem;
  }
  .p-works-list__wrap {
    max-width: 37.5rem;
    margin: auto;
    padding-bottom: 3.75rem;
  }
  .p-works-list__items {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 2.5rem;
    margin: 0 auto 2.5rem;
  }
  .p-works-list__btn {
    text-align: center;
  }
  .p-works-list__wrap {
    background: url(../../assets/images/common/line_house_15.png) no-repeat top right/60%, url(../../assets/images/common/line_house_16.png) no-repeat center left/50%, url(../../assets/images/common/line_house_17.png) no-repeat bottom right/70%;
    padding-bottom: 3.75rem;
  }
  .p-works-list__sub .p-works-list__title {
    margin-bottom: 1.875rem;
  }
  .p-works-anchor {
    display: flex;
    justify-content: center;
    gap: 0.9375rem;
    margin-bottom: 2.5rem;
  }
  .anchor-link {
    font-size: 0.8125rem;
    gap: 0.375rem;
  }
  .anchor-link::after {
    width: 0.9375rem;
    height: 0.375rem;
  }
  .anchor-link:hover::after {
    transform: translateY(0);
  }
  #anchor-works {
    padding-top: 1.25rem;
  }
  .works-tab {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.9375rem;
    margin-bottom: 2.5rem;
    padding-top: 0.3125rem;
  }
  .tab-item {
    padding: 0.3125rem 0.9375rem;
    font-size: 0.75rem;
  }
  .maintenance__top {
    background: linear-gradient(#fff 0%, #fff 45%, #66AA53 45%, #66AA53 100%);
    padding: 3.75rem 0 5rem;
  }
  .maintenance__title {
    margin-bottom: 5rem;
  }
  .maintenance-top__container {
    max-width: 37.5rem;
    margin: auto;
  }
  .maintenance-top__container::before {
    content: "";
    display: block;
    width: 10.3125rem;
    height: 7.8125rem;
    top: -1.25rem;
    left: 0%;
  }
  .maintenance-top__container::after {
    width: 10.3125rem;
    height: 7.8125rem;
    bottom: -2.4375rem;
    right: 0%;
  }
  .maintenance-top__body {
    width: calc(100% - 1.25rem);
    margin: 0 0.625rem;
    padding: 8.125rem 0.9375rem 6.25rem;
    font-size: 1rem;
    line-height: 1.75;
  }
  .maintenance__bottom {
    background: url(../../assets/images/common/line_house_18.png) no-repeat top left/80%, url(../../assets/images/common/line_house_19.png) no-repeat bottom right/50%;
    padding: 8.125rem 0 8.375rem;
  }
  .maintenance-bottom__container {
    max-width: 37.5rem;
    padding: 2.5rem 1.25rem;
  }
  .maintenance-bottom__title {
    font-size: 1.25rem;
    margin-bottom: 1.875rem;
  }
  .maintenance-bottom__body {
    font-size: 0.875rem;
    margin-bottom: 2.5rem;
  }
  .maintenance-bottom-table__head {
    font-size: 1rem;
    margin-bottom: 1.25rem;
    line-height: 1.4;
  }
  .maintenance-bottom-table__list {
    width: 100%;
  }
  .meintenance-bottom-table-list__item {
    border-bottom: 1px solid #707070;
    flex-direction: column;
    align-items: flex-start;
  }
  .table-name {
    padding: 0.625rem 0.3125rem 0.625rem 0.625rem;
    font-size: 1rem;
    border-right: none;
  }
  .table-body {
    font-size: 0.875rem;
    padding: 0 0.625rem 0.625rem 1.25rem;
  }
  .model-house {
    padding: 3.75rem 0;
  }
  .model-house__container {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .model-house__text {
    display: contents;
  }
  .model-house__title {
    font-size: 1.375rem;
    letter-spacing: 0.05em;
    margin-bottom: 1.875rem;
    order: 1;
  }
  .model-house__lead {
    max-width: 37.5rem;
    font-size: 0.875rem;
    line-height: 1.75;
    margin: 0 auto 1.875rem;
    order: 2;
  }
  .model-house__tel {
    max-width: 37.5rem;
    padding: 1.25rem 0.625rem;
    order: 4;
  }
  .model-house-tel__head {
    padding: 0.4375rem;
    font-size: 1rem;
  }
  .model-house-tel__num {
    font-size: 2.5rem;
    gap: 0.625rem;
    margin: 0.9375rem auto 0.625rem;
    letter-spacing: 0;
  }
  .model-house-tel__num::before {
    width: 1.25rem;
    height: 1rem;
  }
  .model-house-tel__time {
    font-size: 0.875rem;
  }
  .model-house__img {
    max-width: 37.5rem;
    margin-bottom: 1.875rem;
    order: 3;
  }
}
.js-fade-trigger {
  transform: translateY(30px);
  opacity: 0;
}

.fade-up {
  transform: translateY(30px);
  animation: fade-ani 0.4s ease 1 forwards;
}

.js-fade-trigger:nth-of-type(2) {
  animation-delay: 0.2s;
}

.js-fade-trigger:nth-of-type(3) {
  animation-delay: 0.3s;
}

.js-fade-trigger:nth-of-type(4) {
  animation-delay: 0.4s;
}

.js-fade-trigger:nth-of-type(5) {
  animation-delay: 0.5s;
}

@keyframes fade-ani {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.slide-up.popup {
  animation: slide-ani 0.4s ease 1 forwards;
  animation-delay: 0.8s;
}

@keyframes slide-ani {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(6.25rem);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(2rem);
  }
}
.slide-up.popup::after {
  animation: pop-up 0.2s ease 1 forwards;
  animation-delay: 1.5s;
}

@keyframes pop-up {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
    left: 6%;
  }
}
@media screen and (max-width: 767px) {
  .js-fade-trigger {
    transform: translateY(10px);
    opacity: 0;
  }
  .fade-up {
    transform: translateY(10px);
    animation: fade-ani 0.8s ease 1 forwards;
  }
  @keyframes fade-ani {
    0% {
      opacity: 0;
      transform: translateY(10px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .slide-up.popup {
    animation: slide-ani 0.4s ease 1 forwards;
    animation-delay: 0.8s;
  }
  @keyframes slide-ani {
    0% {
      opacity: 0;
      visibility: hidden;
      transform: translateY(6.25rem);
    }
    100% {
      opacity: 1;
      visibility: visible;
      transform: translateY(2rem);
    }
  }
  .slide-up.popup::after {
    animation: pop-up 0.2s ease 1 forwards;
    animation-delay: 1.5s;
  }
  @keyframes pop-up {
    0% {
      opacity: 0;
      visibility: hidden;
    }
    100% {
      opacity: 1;
      visibility: visible;
      left: -8%;
    }
  }
}
.pagination {
  width: 100%;
}
.nav-links ul {
  display: flex;
  justify-content: center;
}

.nav-links ul li {
  position: relative;
  margin: 0 0.375rem;
}
@media screen and (max-width: 767px) {
  .nav-links ul li {
    margin: 0 0.625rem;
  }
}

.nav-links ul li a,
.nav-links ul li span {
  display: block;
  width: 100%;
}

.current-page-info {
  font-family: "Futura", serif;
  font-size: 0.8125rem;
  font-weight: 500;
  display: inline-block;
  margin: 0 auto 1.4375rem;
}

.list-pagination {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.list-pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-numbers li {
  margin: 0 0.9375rem;
}

.page-numbers li .page-numbers {
  width: 2.625rem;
  height: 3.1875rem;
  display: grid;
  justify-content: center;
  align-items: center;
  font-family: "Futura", serif;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  transition: 0.2s ease-out;
  border: 1px solid #66AA53;
  background: #66AA53;
  color: #fff;
}

.page-numbers li .current {
  background: #fff;
  color: #66AA53;
  pointer-events: none;
}

.page-numbers li .dots {
  background: transparent;
  color: #66AA53;
  border: none;
  pointer-events: none;
}

.page-numbers li .prev,
.page-numbers li .next {
  display: block;
  width: 3.1875rem;
  height: 3.1875rem;
  position: relative;
  transition: 0.2s ease-out;
}

.page-numbers li .prev::after,
.page-numbers li .next::after {
  content: "";
  display: inline-block;
  width: 0.875rem;
  height: 0.875rem;
  transition: 0.3s;
  border-top: 3px solid #fff;
  position: absolute;
  top: 50%;
}

.page-numbers li .prev::after {
  left: 55%;
  border-left: 3px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.page-numbers li .next::after {
  left: 45%;
  border-right: 3px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

@media (hover: hover) and (pointer: fine) {
  .page-numbers li .page-numbers:hover {
    background: #fff;
    color: #66AA53;
    opacity: 1;
  }
  .page-numbers li .current:hover {
    opacity: 1 !important;
  }
  .page-numbers li .dots:hover {
    pointer-events: none;
  }
  .page-numbers li .prev:hover,
  .page-numbers li .next:hover {
    background: #fff;
    color: #66AA53;
    opacity: 1;
  }
  .page-numbers li .prev:hover::after,
  .page-numbers li .next:hover::after {
    border-top: 3px solid #66AA53;
  }
  .page-numbers li .prev:hover::after {
    border-left: 3px solid #66AA53;
  }
  .page-numbers li .next:hover::after {
    border-right: 3px solid #66AA53;
  }
}
@media screen and (max-width: 767px) {
  .page-numbers li {
    margin: 0 0.28125rem;
  }
  .page-numbers li .page-numbers {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
    border-radius: 0.5rem;
  }
  .page-numbers li .prev,
  .page-numbers li .next {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
  }
}
/*# sourceMappingURL=style.css.map */
