@charset "UTF-8";
/**
 * variables.scss
 * グローバル変数・設定
 */
/**
 * reset.scss
 * ブラウザのデフォルトスタイルをリセット
 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

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

p {
  margin: 0;
  padding: 0;
}

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

li {
  list-style: none;
}

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

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

button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}

input[type=checkbox],
input[type=radio] {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

td,
th {
  padding: 0;
  text-align: left;
}

html,
body {
  overflow-x: clip;
  height: 100%;
}

html {
  scroll-padding-top: 56px;
}
@media (min-width: 1100px) {
  html {
    scroll-padding-top: 100px;
  }
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 16px;
  color: #514227;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

main {
  padding-top: 56px;
}
@media (min-width: 1100px) {
  main {
    padding-top: 100px;
  }
}

body.admin-bar html {
  scroll-padding-top: 102px;
}
@media (min-width: 783px) {
  body.admin-bar html {
    scroll-padding-top: 88px;
  }
}
@media (min-width: 1100px) {
  body.admin-bar html {
    scroll-padding-top: 132px;
  }
}
body.admin-bar #wpadminbar {
  position: fixed !important;
  top: 0 !important;
  z-index: 99999 !important;
}
body.admin-bar .l-header {
  top: 32px !important;
}
@media screen and (max-width: 782px) {
  body.admin-bar .l-header {
    top: 46px !important;
  }
}

body.is-menu-open {
  overflow: hidden;
}
body.is-menu-open #smooth-wrapper {
  overflow: hidden;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 56px;
  z-index: 9999;
}
@media (min-width: 1100px) {
  .l-header {
    height: 100px;
  }
}
.l-header__inner {
  display: flex;
  background-color: #ffffff;
  width: 100%;
  position: relative;
  z-index: 50;
}
@media (min-width: 880px) {
  .l-header__inner {
    flex-direction: column;
  }
}
.l-header__upper {
  background-color: #fff;
  align-content: center;
  width: 100%;
}
@media (min-width: 1100px) {
  .l-header__upper {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    height: 65px;
  }
}
.l-header__upper .upper__inner {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.l-header__logo {
  font-size: 20px;
  margin-left: 3%;
  font-weight: 700;
  color: #274201;
}
@media (min-width: 1100px) {
  .l-header__logo {
    margin-left: 0;
    font-size: 24px;
  }
}
.l-header__btn {
  margin-left: auto;
  margin-right: 5px;
  display: flex;
  flex-direction: row;
  gap: 5px;
}
.l-header__btn a {
  transition: all 0.3s ease;
}
.l-header__btn a:hover {
  filter: brightness(1.3);
  box-shadow: 0px 0px 6px #424242;
}
.l-header__btn a:active {
  transform: translate(3px, 3px);
}
.l-header__lower {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  box-sizing: border-box;
}
@media (max-width: 879px) {
  .l-header__lower {
    background-color: #0f3509;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding: 100px 40px 40px;
    overflow-y: auto;
    z-index: 45;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
  }
  .l-header__lower.is-open {
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 880px) {
  .l-header__lower {
    position: static;
    flex-direction: row;
    align-items: center;
    width: 100%;
    height: 35px;
    background-color: #97bc67;
    padding: 0;
    gap: 20px;
    opacity: 1;
    visibility: visible;
    transition: none;
  }
}
.l-header__nav {
  margin-bottom: 60px;
}
@media (min-width: 880px) {
  .l-header__nav {
    margin-bottom: 0;
    display: flex;
    margin-left: auto;
    margin-right: auto;
  }
}
.l-header__nav__list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: center;
  font-size: 18px;
  color: #ffffff;
}
@media (min-width: 880px) {
  .l-header__nav__list {
    color: #fff;
    flex-direction: row;
    gap: 15px;
    font-size: 16px;
    font-weight: 400;
  }
}
.l-header__nav__list .item {
  position: relative;
  text-align: left;
  margin-right: 5%;
}
@media (min-width: 880px) {
  .l-header__nav__list .item {
    margin-right: auto;
    text-align: center;
  }
}
.l-header__nav__list .item a {
  display: block;
  padding: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  z-index: 5;
}
@media (min-width: 880px) {
  .l-header__nav__list .item a {
    padding: 0;
  }
}
.l-header__nav__list .item a::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9176470588);
  z-index: -1;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: all 0.3s ease;
}
.l-header__nav__list .item a:hover {
  color: #274201;
}
.l-header__nav__list .item a:hover::after {
  transform: scaleY(1);
}
.l-header__hamburger {
  width: 56px;
  height: 56px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 60;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding: 0;
  background-color: #97bc67;
  margin-left: 0;
}
@media (min-width: 880px) {
  .l-header__hamburger {
    display: none;
  }
}
.l-header__hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s ease;
  border-radius: 2px;
}
.l-header__hamburger.is-open span {
  background-color: #fff;
}
.l-header__hamburger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.l-header__hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.l-header__hamburger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

body.is-menu-open {
  overflow: hidden;
}
body.is-menu-open #smooth-wrapper {
  overflow: hidden;
}

.l-footer {
  background-color: #125805;
  color: #fff;
  padding: 40px 24px 32px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 48px 40px 32px;
  }
}
.l-footer__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-footer__inner {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
  }
}
.l-footer__content__logo {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .l-footer__content__logo {
    position: absolute;
    left: 0;
    top: 0;
    text-align: left;
    font-size: 20px;
    width: 160px;
  }
}
.l-footer__content__logo__link {
  display: block;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.l-footer__content__logo__link:hover {
  opacity: 0.7;
}
.l-footer__content__logo__link img {
  width: 100%;
  display: block;
}
.l-footer__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 32px;
}
@media screen and (min-width: 768px) {
  .l-footer__content {
    align-items: flex-start;
    flex: 1;
    margin-top: 0;
  }
}
.l-footer__content__nav {
  width: 100%;
}
.l-footer__content__nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 0;
  font-size: 13px;
  font-weight: 400;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-footer__content__nav__list {
    gap: 16px 0;
    font-size: 14px;
    padding: 0 120px;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__content__nav__list {
    gap: 8px 24px;
    padding: 0 140px;
    flex-wrap: nowrap;
  }
}
.l-footer__content__nav__list .item {
  width: 50%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__content__nav__list .item {
    width: 30%;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__content__nav__list .item {
    width: 40%;
  }
}
.l-footer__content__nav__list .item a {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: relative;
}
.l-footer__content__nav__list .item a::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  background-color: #fff;
  transition: all 0.3s ease;
}
.l-footer__content__nav__list .item a:hover::after {
  background-image: linear-gradient(90deg, #9bff0f, #0eb702);
  transform: scaleX(1);
}
.l-footer__content .privacy {
  margin-top: 20px;
  font-size: 13px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footer__content .privacy {
    margin-top: 12px;
    width: 100%;
    text-align: center;
  }
}
.l-footer__content .privacy a {
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.l-footer__content .privacy a:hover {
  opacity: 0.7;
}
.l-footer small {
  display: block;
  font-size: 11px;
  text-align: center;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.7);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-footer small {
    margin-top: 32px;
    text-align: center;
  }
}

.c-totop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 99999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-totop {
    right: 40px;
    bottom: 40px;
  }
}
.c-totop.is-show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.c-totop__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background-color: #0c5e00;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-totop__link {
    width: 60px;
    height: 60px;
  }
}
.c-totop__link:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}
.c-totop__arrow {
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: translateY(2px) rotate(45deg);
}
@media screen and (min-width: 768px) {
  .c-totop__arrow {
    width: 14px;
    height: 14px;
  }
}

.l-section {
  width: 96%;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .l-section {
    width: 80%;
  }
}
@media (min-width: 1400px) {
  .l-section {
    max-width: 1000px;
    width: 100%;
  }
}

/**
 * _button.scss
 * ボタンコンポーネント
 */
.c-button {
  width: 100%;
  margin-top: 40px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .c-button {
    color: #0c5e00;
    margin-top: 96px;
    background-color: #ffffff;
    padding: 40px 0;
    max-height: 220px;
  }
}
.c-button__inner {
  max-width: 343px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  text-align: center;
  font-size: 12px !important;
}
@media (min-width: 768px) and (max-width: 970px) {
  .c-button__inner {
    margin-left: 60px;
    margin-right: 60px;
    max-width: 960px;
  }
}
@media (min-width: 971px) {
  .c-button__inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 960px;
    font-size: 20px;
  }
}
.c-button p {
  color: #0c5e00;
  text-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-bottom: 12px;
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .c-button p {
    padding-bottom: 24px;
    font-size: 20px;
  }
}
.c-button__contents {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .c-button__contents {
    width: 100%;
    flex-direction: row-reverse;
    gap: 3.3%;
  }
}
.c-button__contents .item {
  transition: opacity 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  transform: translateZ(0);
}
.c-button__contents .group01 {
  width: 100%;
}
.c-button__contents .group01 a {
  pointer-events: auto;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .c-button__contents .group01 a {
    pointer-events: none;
    cursor: default;
  }
}
.c-button__contents .group01 img {
  height: 50px;
}
@media screen and (min-width: 768px) {
  .c-button__contents .group01 {
    max-width: 449px;
  }
}
.c-button__contents .group01 img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .c-button__contents .group01 img {
    height: 80px;
  }
}
.c-button__contents .group02 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  gap: 6px;
}
.c-button__contents .group02 img {
  height: 49.9px;
}
@media screen and (min-width: 768px) {
  .c-button__contents .group02 {
    margin-left: 0;
    margin-right: 0;
  }
  .c-button__contents .group02 .item {
    max-width: 233px;
  }
  .c-button__contents .group02 .item:hover {
    opacity: 0.8;
    box-shadow: 2px -2px 4px rgba(62, 62, 62, 0.7725490196);
  }
  .c-button__contents .group02 .item:active {
    transform: translate(3px, 3px);
  }
  .c-button__contents .group02 .item img {
    width: 100%;
    height: 80px;
  }
}

.c-btn_tohome {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 66px;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-btn_tohome {
    margin-top: 96px;
  }
}
.c-btn_tohome .c-btn_tohome__link {
  display: inline-block;
  transition: all 0.3s ease;
  background-color: #80a08d;
  padding: 20px 40px;
  font-size: 20px;
  color: #fff;
  display: block;
  font-weight: 600;
}
.c-btn_tohome .c-btn_tohome__link:hover {
  filter: brightness(1.2);
}

.c-pagenavi,
.wp-pagenavi {
  display: flex;
  gap: 6px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .c-pagenavi,
.wp-pagenavi {
    gap: 20px;
  }
}
.c-pagenavi .page,
.c-pagenavi .current,
.wp-pagenavi .page,
.wp-pagenavi .current {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 14px;
  font-size: 14px;
  line-height: 1;
  border: 1px solid #ddd;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) {
  .c-pagenavi .page,
.c-pagenavi .current,
.wp-pagenavi .page,
.wp-pagenavi .current {
    font-size: 24px;
  }
}
.c-pagenavi .page,
.wp-pagenavi .page {
  background-color: #fff;
  color: #000;
  text-decoration: none;
}
.c-pagenavi .page:hover,
.wp-pagenavi .page:hover {
  background-color: #ddd;
  color: #fff;
}
.c-pagenavi .current,
.wp-pagenavi .current {
  background-color: #ddd;
  color: #fff;
  font-weight: 700;
}
.c-pagenavi .dots,
.wp-pagenavi .dots {
  color: #999;
  padding: 0 8px;
}

.page_navi {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-top: 60px;
}

.top_btn {
  position: fixed;
  right: 5%;
  bottom: 20px;
  z-index: 1000;
  width: 50px;
  height: 50px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  overflow: visible;
}
@media screen and (min-width: 768px) {
  .top_btn {
    width: 70px;
    height: 70px;
    bottom: 40px;
  }
}
.top_btn.is-show {
  opacity: 1;
  pointer-events: auto;
}
.top_btn .inner {
  width: 100%;
  height: 100%;
  border: 1px solid #425c06;
  background-color: #425c06;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s ease, border-radius 0.3s ease, background-color 0.3s ease;
}
.top_btn .inner::after {
  content: "";
  width: 20px;
  height: 15px;
  background: #fffcfc;
  -webkit-clip-path: polygon(0 100%, 50% 0, 100% 100%);
          clip-path: polygon(0 100%, 50% 0, 100% 100%);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .top_btn .inner::after {
    width: 25px;
    height: 20px;
  }
}
.top_btn .inner:hover {
  transform: rotate(135deg) scale(1.3);
  border-radius: 50%;
  background-color: #ffffff;
}
.top_btn .inner:hover::after {
  transform: translate(-50%, -50%) rotate(-135deg);
  background-color: #425c06;
}

/**
 * _form.scss
 * フォームコンポーネント
 */
.c-form {
  width: 100%;
}

.c-form__group:last-child {
  margin-bottom: 0;
}

.c-form__label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #514227;
}
.c-form__label.is_required::after {
  content: " *";
  color: #d32f2f;
}

.c-form__input,
.c-form__textarea,
.c-form__select {
  width: 100%;
  font-size: 16px;
  border: 1px solid #929292;
  background-color: #fff;
  color: #514227;
}
.c-form__input:focus,
.c-form__textarea:focus,
.c-form__select:focus {
  outline: none;
  border-color: #0c5e00;
  box-shadow: 0 0 0 3px rgba(12, 94, 0, 0.1);
}
.c-form__input:disabled,
.c-form__textarea:disabled,
.c-form__select:disabled {
  background-color: #f5f5f5;
  color: #999;
  cursor: not-allowed;
}
.c-form__input.is-error,
.c-form__textarea.is-error,
.c-form__select.is-error {
  border-color: #d32f2f;
  background-color: rgba(211, 47, 47, 0.05);
}

.c-form__textarea {
  resize: vertical;
  min-height: 120px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.c-form__select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-align: center;
  -moz-text-align-last: center;
       text-align-last: center;
  color: #999;
}
.c-form__select option {
  text-align: left;
  color: #000;
}
.c-form__select.has-value {
  text-align: left !important;
  -moz-text-align-last: left !important;
       text-align-last: left !important;
  color: #000 !important;
}

.c-form-checkbox,
.c-form-radio {
  display: flex;
  align-items: center;
}
.c-form-checkbox input,
.c-form-radio input {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: #0c5e00;
}
.c-form-checkbox label,
.c-form-radio label {
  margin: 0;
  cursor: pointer;
  font-size: 14px;
  color: #514227;
}

.c-form__error {
  color: #d32f2f;
  font-size: 12px;
  display: none;
}
.c-form__error.is-show {
  display: block;
}

.c-form-success {
  color: #388e3c;
  font-size: 12px;
  display: none;
}
.c-form-success.is-show {
  display: block;
}

.c-form-hint {
  font-size: 12px;
  color: #7c7c7c;
}

.submit-button {
  transition: all 0.3s ease;
}
.submit-button:disabled {
  filter: brightness(0.6);
  opacity: 0.6;
  cursor: not-allowed;
}

.c-section__title {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  max-width: 350px;
}
@media screen and (min-width: 768px) {
  .c-section__title {
    max-width: 580px;
  }
}
.c-section__title img {
  width: 100%;
  display: block;
}

.c-cta {
  margin-top: 32px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .c-cta {
    margin-top: 60px;
  }
}
.c-cta__inner {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .c-cta__inner {
    max-width: 1000px;
  }
}
.c-cta__inner .cta-heading {
  position: absolute;
  left: 50%;
  top: -12%;
  transform: translateX(-50%);
  min-width: 230px;
}
.c-cta__inner .cta__contents {
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  border: #ffd508 1px solid;
  background-color: #fffdf6;
  border-radius: 6px;
  padding: 21px 15px 13px;
}
@media screen and (min-width: 1024px) {
  .c-cta__inner .cta__contents {
    padding: 30px 0;
  }
}
.c-cta__inner .cta__contents .cta-text {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  color: #6c5d50;
}
.c-cta__inner .cta__contents .cta-text .note {
  font-size: 18px;
}
.c-cta__inner .cta__contents .cta-btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  gap: 10px;
}
.c-cta__inner .cta__contents .item {
  transition: all 0.3s ease;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .c-cta__inner .cta__contents .item {
    width: 300px;
  }
}
.c-cta__inner .cta__contents .item img {
  width: 100%;
  filter: drop-shadow(0px 2px 2px rgba(158, 158, 158, 0.3));
}
.c-cta__inner .cta__contents .item:hover {
  transform: translate(2px, 2px);
  opacity: 0.8;
}

.p-home__hero {
  overflow: hidden;
  position: relative;
  background-image: url(../images/fv-bg-sp.svg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% auto;
  /*
  -------------------
  画像
  -------------------
  */
  /*
  -------------------
  テキスト
  -------------------
  */
  /*
  -------------------
  CTA
  -------------------
  */
}
@media screen and (min-width: 1024px) {
  .p-home__hero {
    background-image: url(../images/fv-bg.svg);
  }
}
@media screen and (min-width: 1024px) {
  .p-home__hero__inner {
    position: relative;
  }
}
.p-home__hero__inner .hero-badge-pc {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (min-width: 1024px) {
  .p-home__hero__inner .hero-badge-pc {
    max-width: 200px;
  }
}
@media (min-width: 1300px) {
  .p-home__hero__inner .hero-badge-pc {
    max-width: 320px;
    right: 15%;
  }
}
.p-home__hero__inner .hero-badge-pc img {
  display: block;
  width: 100%;
}
.p-home__hero__top {
  position: relative;
  width: 100%;
}
.p-home__hero__image {
  width: 100%;
  max-width: 600px;
}
@media screen and (min-width: 1024px) {
  .p-home__hero__image {
    width: 100%;
    max-width: 730px;
  }
}
.p-home__hero__image img {
  width: 100%;
  display: block;
}
.p-home__hero .hero-badge-sp {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 40%;
  max-width: 160px;
}
.p-home__hero .hero-badge-sp img {
  display: block;
  width: 100%;
}
.p-home__hero__content {
  margin-top: 28px;
  margin-left: auto;
  margin-right: auto;
  width: 96%;
}
@media screen and (min-width: 768px) {
  .p-home__hero__content {
    position: absolute;
    top: 30%;
    left: 62%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (min-width: 1024px) {
  .p-home__hero__content {
    position: absolute;
    top: 30%;
    left: 62%;
    transform: translate(-50%, -50%);
  }
}
@media (min-width: 1300px) {
  .p-home__hero__content {
    left: 50%;
  }
}
.p-home__hero .main-title {
  text-align: center;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1024px) {
  .p-home__hero .main-title {
    max-width: 600px;
  }
}
.p-home__hero .main-title img {
  width: 100%;
}
.p-home__hero .sub-title {
  display: block;
  margin-top: 10px;
  color: #514227;
  font-size: 14px;
  line-height: 1.8;
  font-weight: 700;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-home__hero .sub-title {
    margin-top: 35px;
    font-size: 18px;
  }
}
.p-home__hero .sub-title span {
  position: relative;
  display: inline-block;
}
.p-home__hero .sub-title span::after {
  display: block;
  content: "";
  background-image: url(../images/line.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.p-home__hero .note {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (min-width: 500px) {
  .p-home__hero .note {
    margin-top: 20px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-home__hero .note .desc {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border: 1px solid #53a53d;
  border-radius: 8px;
  background: #fff;
  color: #53a53d;
  font-size: 14px;
  font-weight: 700;
}
.p-home__hero .note .desc:not(:first-child) {
  margin-top: 7px;
}
.p-home__hero .note .desc img {
  width: 16px;
}
.p-home__hero .cta-button {
  margin-top: 32px;
  padding-bottom: 40px;
}
@media screen and (min-width: 1024px) {
  .p-home__hero .cta-button {
    margin-top: 60px;
  }
}
.p-home__hero .cta-button__inner {
  width: 85%;
  margin-left: auto;
  margin-right: auto;
  max-width: 466px;
  position: relative;
}
.p-home__hero .cta-button__inner .cta-heading {
  position: absolute;
  left: 50%;
  top: -25%;
  transform: translateX(-50%);
}
.p-home__hero .cta-button__inner .cta__contents {
  display: flex;
  flex-direction: row;
  gap: 10px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  border: #a48e48 1px solid;
  background-color: #fff;
  border-radius: 6px;
  padding: 21px 15px 13px;
}
.p-home__hero .cta-button__inner .cta__contents .item {
  transition: all 0.3s ease;
}
.p-home__hero .cta-button__inner .cta__contents .item img {
  filter: drop-shadow(0px 2px 2px rgba(158, 158, 158, 0.3));
}
.p-home__hero .cta-button__inner .cta__contents .item:hover {
  transform: translate(2px, 2px);
  opacity: 0.8;
}

body.home .p-home__solve {
  margin-top: -10%;
  position: relative;
}
body.home .p-home__solve__title {
  position: relative;
  margin-top: -60px;
}
body.home .p-home__solve__title .title__inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-left: auto;
  -webkit-margin-end: auto;
          margin-inline-end: auto;
  position: relative;
  max-width: 500px;
}
@media screen and (min-width: 768px) {
  body.home .p-home__solve__title .title__inner {
    max-width: 600px;
  }
}
@media screen and (min-width: 1024px) {
  body.home .p-home__solve__title .title__inner {
    max-width: 1000px;
  }
}
body.home .p-home__solve__title .title__inner .image-left,
body.home .p-home__solve__title .title__inner .image-right {
  width: 28%;
  max-width: 120px;
  position: absolute;
}
@media screen and (min-width: 768px) {
  body.home .p-home__solve__title .title__inner .image-left,
body.home .p-home__solve__title .title__inner .image-right {
    max-width: 140px;
  }
}
@media screen and (min-width: 1024px) {
  body.home .p-home__solve__title .title__inner .image-left,
body.home .p-home__solve__title .title__inner .image-right {
    max-width: 230px;
  }
}
body.home .p-home__solve__title .title__inner .image-left img,
body.home .p-home__solve__title .title__inner .image-right img {
  width: 100%;
}
body.home .p-home__solve__title .title__inner .image-left {
  bottom: -45px;
  left: -10px;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__solve__title .title__inner .image-left {
    bottom: -90px;
  }
}
body.home .p-home__solve__title .title__inner .image-right {
  bottom: -10px;
  right: -10px;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__solve__title .title__inner .image-right {
    bottom: -85px;
    right: 65px;
  }
}

.p-home__contact {
  padding-top: 60px;
  padding-bottom: 120px;
  background-color: #fffcf0;
  background-image: url(../images/contact-bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
}
@media screen and (min-width: 1024px) {
  .p-home__contact {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.p-home__contact .contact-cta {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media screen and (min-width: 1024px) {
  .p-home__contact .contact-cta {
    margin-top: 60px;
  }
}
.p-home__contact .contact-cta p {
  font-weight: 700;
  color: #7ba442;
  font-size: 20px;
}
@media screen and (min-width: 1024px) {
  .p-home__contact .contact-cta p {
    font-size: 24px;
  }
}
.p-home__contact .contact-cta .item {
  margin-top: 5px;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  transition: all 0.3s ease;
  max-width: 200px;
}
@media screen and (min-width: 1024px) {
  .p-home__contact .contact-cta .item {
    max-width: 300px;
  }
}
.p-home__contact .contact-cta .item:hover {
  transform: translate(2px, 2px);
  opacity: 0.8;
}
.p-home__contact .contact-cta .item a {
  display: block;
  width: 100%;
}
.p-home__contact .contact-cta .item img {
  display: block;
  width: 100%;
}

.p-contact__form {
  background-color: #f0f5e8;
  border: 1px solid #c8d8a8;
  border-radius: 12px;
  padding: 32px 16px;
  width: 96%;
  margin: 0 auto;
  margin-top: 30px;
  max-width: 400px;
}
@media screen and (min-width: 1024px) {
  .p-contact__form {
    width: 100%;
    max-width: 600px;
    padding: 48px 40px;
    margin-top: 40px;
  }
}
.p-contact__form__row {
  margin-bottom: 20px;
}
@media screen and (min-width: 1024px) {
  .p-contact__form__row {
    margin-bottom: 24px;
  }
}
.p-contact__form__label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #0c5e00;
}
@media screen and (min-width: 1024px) {
  .p-contact__form__label {
    font-size: 14px;
  }
}
.p-contact__form__label .required {
  background-color: #a48e48;
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 130px;
}
.p-contact__form input[type=text],
.p-contact__form input[type=tel],
.p-contact__form input[type=email],
.p-contact__form select,
.p-contact__form textarea {
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 6px;
  background-color: #fff;
  color: #333;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  box-sizing: border-box;
}
.p-contact__form input[type=text]::-moz-placeholder, .p-contact__form input[type=tel]::-moz-placeholder, .p-contact__form input[type=email]::-moz-placeholder, .p-contact__form select::-moz-placeholder, .p-contact__form textarea::-moz-placeholder {
  color: #aaa;
}
.p-contact__form input[type=text]::placeholder,
.p-contact__form input[type=tel]::placeholder,
.p-contact__form input[type=email]::placeholder,
.p-contact__form select::placeholder,
.p-contact__form textarea::placeholder {
  color: #aaa;
}
.p-contact__form input[type=text]:focus,
.p-contact__form input[type=tel]:focus,
.p-contact__form input[type=email]:focus,
.p-contact__form select:focus,
.p-contact__form textarea:focus {
  outline: none;
  border-color: #399d26;
  box-shadow: 0 0 0 2px rgba(57, 157, 38, 0.15);
}
@media screen and (min-width: 1024px) {
  .p-contact__form input[type=text],
.p-contact__form input[type=tel],
.p-contact__form input[type=email],
.p-contact__form select,
.p-contact__form textarea {
    font-size: 15px;
    padding: 12px 16px;
  }
}
.p-contact__form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.p-contact__form textarea {
  height: 120px;
  resize: vertical;
}
@media screen and (min-width: 1024px) {
  .p-contact__form textarea {
    height: 140px;
  }
}
.p-contact__form span.wpcf7-form-control-wrap {
  display: block;
}
.p-contact__form__privacy {
  text-align: center;
  font-size: 13px;
  margin-bottom: 24px;
}
.p-contact__form__privacy input[type=checkbox] {
  width: auto;
  margin-right: 6px;
  accent-color: #399d26;
}
.p-contact__form__submit {
  text-align: center;
}
.p-contact__form__submit input[type=submit] {
  background-color: #0c5e00;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 60px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.p-contact__form__submit input[type=submit]:hover {
  background-color: #2d7c1e;
}
.p-contact__form__submit input[type=submit]:disabled {
  background-color: #aaa;
  cursor: not-allowed;
}
.p-contact__form a {
  color: #2d7c1e;
  text-decoration: underline;
}

.wpcf7-spinner {
  display: none;
}

body.privacy .p-privacy {
  line-height: 1.6;
  font-weight: 600;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 120px;
}
@media screen and (min-width: 768px) {
  body.privacy .p-privacy {
    padding-top: 220px;
  }
}
body.privacy .p-privacy__section {
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  body.privacy .p-privacy__section {
    padding-bottom: 80px;
  }
}
body.privacy .p-privacy__section section {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  body.privacy .p-privacy__section section {
    margin-top: 60px;
  }
}
body.privacy .p-privacy__content {
  font-weight: 600;
  margin-top: 30px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  body.privacy .p-privacy__content {
    margin-top: 50px;
    font-size: 20px;
  }
}
body.privacy .p-privacy h1 {
  font-size: 24px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  body.privacy .p-privacy h1 {
    font-size: 32px;
  }
}
body.privacy .p-privacy h2 {
  margin-bottom: 15px;
  font-weight: 700;
  font-size: 18px;
  color: #0c5e00;
}
@media screen and (min-width: 768px) {
  body.privacy .p-privacy h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
body.privacy .p-privacy ul {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  body.privacy .p-privacy ul {
    margin-top: 20px;
  }
}
body.privacy .p-privacy ul li {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  body.privacy .p-privacy ul li {
    font-size: 18px;
  }
}
body.privacy .p-privacy p {
  font-size: 14px;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  body.privacy .p-privacy p {
    font-size: 18px;
  }
}
body.privacy .p-privacy .note {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  body.privacy .p-privacy .note {
    margin-top: 20px;
  }
}
body.privacy .p-privacy .info {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  body.privacy .p-privacy .info {
    margin-top: 40px;
  }
}
body.privacy .p-privacy .c-button__contact {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
body.privacy .p-privacy .c-button__contact a {
  width: 251px;
  height: 60px;
  background-color: #0c5e00;
  border-radius: 2px;
  padding: 22.5px 40px;
  display: flex;
  justify-content: #0c5e00;
  align-items: center;
  transition: all 0.3s ease;
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  body.privacy .p-privacy .c-button__contact a {
    width: 251px;
  }
}
body.privacy .p-privacy .c-button__contact a .text {
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  margin: 0 auto;
}
body.privacy .p-privacy .c-button__contact a:hover {
  transform: translate(-3px, -3px);
  box-shadow: 5px 5px 6px rgba(156, 156, 156, 0.7647058824);
  opacity: 0.9;
}
body.privacy .p-privacy .c-button__contact:disabled, body.privacy .p-privacy .c-button__contact.is-disabled {
  opacity: 0.5;
  color: #8c8c8c;
  cursor: not-allowed;
  pointer-events: none;
}

body.home .p-home__fa {
  background-color: #ffffff;
}
body.home .p-home__fa__title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  color: #0c5e00;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
@media screen and (min-width: 768px) {
  body.home .p-home__fa__title {
    font-size: 32px;
  }
}
body.home .p-home__fa__list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  body.home .p-home__fa__list {
    gap: 32px;
    margin-top: 64px;
  }
}
body.home .p-home__fa__list__item {
  background-color: #fcfff3;
  border: 1px solid #e0e0e0;
  transition: box-shadow 0.3s ease;
}
body.home .p-home__fa__list__item[open] .p-home__fa__question::after {
  transform: translateY(-50%) rotate(-135deg);
}
body.home .p-home__fa__list__item[open] .p-home__fa__answer {
  -webkit-animation: slideDown 0.3s ease;
          animation: slideDown 0.3s ease;
}
body.home .p-home__fa__question {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 15px;
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 768px) {
  body.home .p-home__fa__question {
    padding: 20px 30px;
    gap: 15px;
    align-items: center;
  }
}
body.home .p-home__fa__question::-webkit-details-marker {
  display: none;
}
body.home .p-home__fa__question::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid #ddd;
  border-bottom: 2px solid #ddd;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
@media screen and (min-width: 768px) {
  body.home .p-home__fa__question::after {
    right: 30px;
    width: 14px;
    height: 14px;
    border-right: 3px solid #ddd;
    border-bottom: 3px solid #ddd;
  }
}
body.home .p-home__fa__question-label {
  color: #ffffff;
  font-weight: 500;
  font-size: 18px;
  flex-shrink: 0;
  background-color: #7ba442;
  border-radius: 50%;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  body.home .p-home__fa__question-label {
    font-size: 24px;
    width: 34px;
    height: 34px;
  }
}
body.home .p-home__fa__question-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  padding-right: 30px;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  body.home .p-home__fa__question-text {
    font-size: 18px;
    padding-right: 50px;
  }
}
body.home .p-home__fa__answer {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px;
}
@media screen and (min-width: 768px) {
  body.home .p-home__fa__answer {
    padding: 30px;
    gap: 15px;
    align-items: center;
  }
}
body.home .p-home__fa__answer-label {
  color: #7ba442;
  font-weight: 500;
  font-size: 18px;
  flex-shrink: 0;
  background-color: #ffffff;
  border-radius: 50%;
  border: 1px solid #7ba442;
  width: 28px;
  height: 28px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  body.home .p-home__fa__answer-label {
    width: 34px;
    height: 34px;
    font-size: 24px;
  }
}
body.home .p-home__fa__answer-text {
  flex: 1;
  font-size: 12px;
  line-height: 1.6;
  margin: 0;
}
@media screen and (min-width: 768px) {
  body.home .p-home__fa__answer-text {
    font-size: 16px;
  }
}

/**
 * _flow.scss
 * 　ご依頼の流れページ
 */
body.home .p-home__flow {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__flow {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
body.home .p-home__flow__title {
  margin-top: 0;
}
body.home .p-home__flow__title .title_image {
  width: 45.6%;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__flow__title .title_image {
    width: 20%;
  }
}
body.home .p-home__flow__list {
  display: flex;
  flex-direction: column;
  margin-top: 50px;
  gap: 20px;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__flow__list {
    justify-content: space-between;
    flex-direction: row;
  }
}
body.home .p-home__flow__list__item {
  width: 100%;
  max-width: 405px;
  position: relative;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
body.home .p-home__flow__list__item .num {
  position: absolute;
  top: 0;
  left: 0;
  width: 75px;
}
@media screen and (min-width: 768px) {
  body.home .p-home__flow__list__item .num {
    top: 0;
  }
}
body.home .p-home__flow__list__item .heading {
  color: #0c5e00;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
body.home .p-home__flow__list__item .contents {
  background-color: #eef6d8;
  padding: 7px 10px;
  border-radius: 6px;
}
body.home .p-home__flow__list__item .contents__inner .icon {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  border: 6px 6px 0 0;
}
body.home .p-home__flow__list__item .contents__inner .description {
  font-weight: 500;
  padding: 30px 0;
  background-color: #fff;
  text-align: center;
  line-height: 1.6;
  border-radius: 0 0 6px 6px;
  min-height: 135px;
}
body.home .p-home__price {
  padding-bottom: 64px;
  background-color: #eef6d8;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__price {
    padding-bottom: 0;
  }
}
body.home .p-home__price__inner {
  margin-top: 80px;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__price__inner {
    margin-top: 95px;
  }
}
body.home .p-home__price__sub-text {
  text-align: center;
  font-size: 14px;
  margin-top: 8px;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__price__sub-text {
    font-size: 16px;
  }
}
body.home .p-home__price__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__price__list {
    gap: 40px;
  }
}
body.home .p-home__price__card {
  background-color: #fff;
  border-radius: 12px;
  padding: 40px 20px 32px;
  position: relative;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__price__card {
    padding: 48px 48px 40px;
  }
}
body.home .p-home__price .maintenance-card {
  border: 1px solid #7ba442;
}
body.home .p-home__price .special-card {
  border: 1px solid #6fc300;
}
body.home .p-home__price__label {
  display: inline-block;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 999px;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__price__label {
    font-size: 18px;
    padding: 10px 32px;
  }
}
body.home .p-home__price .label-basic {
  background-color: #399d26;
}
body.home .p-home__price .label-maintenance {
  background-color: #7ba442;
}
body.home .p-home__price .label-special {
  background-color: #6fc300;
}
body.home .p-home__price__card--main {
  border: 1px solid #399d26;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__price__card--main {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
  }
}
body.home .p-home__price__illust {
  display: none;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__price__illust {
    display: block;
    position: absolute;
    left: -150px;
    bottom: 0;
    width: 200px;
  }
  body.home .p-home__price__illust img {
    width: 100%;
  }
}
body.home .p-home__price__table {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-collapse: collapse;
  color: #514227;
  max-width: 650px;
  margin: 0 auto;
}
body.home .p-home__price__table tr {
  border-bottom: 1px solid #e0e0e0;
}
body.home .p-home__price__table tr:first-child {
  border-top: 1px solid #e0e0e0;
}
body.home .p-home__price__table th,
body.home .p-home__price__table td {
  padding: 14px 8px;
  text-align: left;
  font-size: 14px;
  vertical-align: middle;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__price__table th,
body.home .p-home__price__table td {
    font-size: 24px;
    padding: 18px 12px;
  }
}
body.home .p-home__price__table th {
  font-weight: 500;
  white-space: nowrap;
  width: 30%;
}
body.home .p-home__price__table td {
  font-weight: 700;
}
body.home .p-home__price__table td span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  margin-top: 2px;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__price__table td span {
    font-size: 16px;
  }
}
body.home .p-home__price__sub-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__price__sub-grid {
    flex-direction: row;
    gap: 24px;
  }
  body.home .p-home__price__sub-grid .p-home__price__card {
    flex: 1;
  }
}
body.home .p-home__price__card__body {
  text-align: center;
  margin-top: 8px;
}
body.home .p-home__price__card__body p {
  font-size: 20px;
  padding: 12px 0;
  border-bottom: 1px solid #e0e0e0;
  font-weight: 700;
}
body.home .p-home__price__card__body p:first-child {
  border-top: 1px solid #e0e0e0;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__price__card__body p {
    font-size: 24px;
  }
}
body.home .p-home__price__card__body p span {
  display: block;
  font-size: 11px;
  margin-top: 2px;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__price__card__body p span {
    font-size: 13px;
  }
}
body.home .p-home__price__estimate {
  font-size: 22px !important;
  font-weight: 700;
  border-bottom: none !important;
  padding-top: 20px !important;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__price__estimate {
    font-size: 28px !important;
  }
}
body.home .p-home__price__payment {
  background-color: #fff;
  border: 1px solid #d4c9a0;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  font-size: 14px;
  max-width: 400px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__price__payment {
    font-size: 16px;
    padding: 24px 40px;
  }
}
body.home .p-home__price__payment__title {
  font-weight: 700;
  margin-bottom: 4px;
}

body.home .p-home__company__inner {
  background-color: #fff;
  padding: 24px;
  margin-top: 64px;
}
@media screen and (min-width: 768px) {
  body.home .p-home__company__inner {
    padding: 48px 64px;
    margin-top: 96px;
  }
}
body.home .p-home__company__title {
  font-size: 20px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  body.home .p-home__company__title {
    font-size: 32px;
  }
}
body.home .p-home__company__contents {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin-top: 18px;
}
@media screen and (min-width: 768px) {
  body.home .p-home__company__contents {
    flex-direction: row;
    gap: 40px;
    align-items: center;
    margin-top: 48px;
  }
}
body.home .p-home__company__contents .description {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__company__contents .description {
    flex: 1;
  }
}
body.home .p-home__company__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__company__table {
    font-size: 16px;
  }
}
body.home .p-home__company__table tr {
  border-bottom: 1px solid #d4ecba;
  border-right: 1px solid #d4ecba;
}
body.home .p-home__company__table tr:first-child {
  border-top: 1px solid #e0e0e0;
}
body.home .p-home__company__table th {
  background-color: #1a5c1a;
  color: #fff;
  font-weight: 600;
  padding: 14px 16px;
  white-space: nowrap;
  width: 100px;
  text-align: center;
  vertical-align: middle;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__company__table th {
    width: 120px;
    padding: 16px 20px;
  }
}
body.home .p-home__company__table td {
  padding: 14px 16px;
  font-weight: 400;
  vertical-align: middle;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__company__table td {
    padding: 16px 24px;
  }
}
body.home .p-home__company__table .map {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__company__table .map {
    width: 50%;
  }
}
body.home .p-home__company__table .map iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 330/280;
  border: 0;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__company__table .map iframe {
    aspect-ratio: 400/266;
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }
}

body.home .p-home__problem {
  padding-top: 60px;
  padding-bottom: 50px;
  background-image: url(../images/bg-problem-sp.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  body.home .p-home__problem {
    padding-top: 120px;
    padding-bottom: 100px;
    background-image: url(../images/bg-problem.jpg);
  }
}
body.home .p-home__problem__contents .problem-heading {
  color: #fff;
  text-align: center;
  font-size: 26px;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__problem__contents .problem-heading {
    font-size: 40px;
  }
}
body.home .p-home__problem__contents .bg-image {
  margin-top: 14px;
  position: relative;
  max-width: 425px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  body.home .p-home__problem__contents .bg-image {
    width: 70%;
    max-width: 900px;
  }
}
@media screen and (min-width: 1024px) {
  body.home .p-home__problem__contents .bg-image {
    margin-top: 60px;
  }
}
body.home .p-home__problem__contents .bg-image .list {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
body.home .p-home__problem__contents .bg-image .list .item {
  color: #d0da86;
  font-size: 14px;
  position: relative;
  padding-left: 23px;
  text-align: left;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  body.home .p-home__problem__contents .bg-image .list .item {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  body.home .p-home__problem__contents .bg-image .list .item {
    font-size: 22px;
  }
}
body.home .p-home__problem__contents .bg-image .list .item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  background-image: url(../images/icon-check.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 13px;
  height: 11px;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__problem__contents .bg-image .list .item::before {
    width: 16px;
    height: 14px;
  }
}
body.home .p-home__problem__contents .image-person {
  width: 40%;
  max-width: 200px;
  margin-left: auto;
  margin-right: 0;
  margin-top: -8%;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__problem__contents .image-person {
    max-width: 280px;
    margin-right: 10%;
  }
}
body.home .p-home__problem__contents .image-person img {
  width: 100%;
  display: block;
}

body.error404 .p-error {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ecebe4;
}
body.error404 .p-error__contents {
  margin-top: 60px;
  background-color: rgba(255, 255, 255, 0.9019607843);
  text-align: center;
  padding: 60px 10px;
}
@media screen and (min-width: 768px) {
  body.error404 .p-error__contents {
    max-width: 600px;
    margin-top: 120px;
  }
}
body.error404 .p-error__contents__title {
  color: #71a444;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  body.error404 .p-error__contents__title {
    font-size: 30px;
  }
}
body.error404 .p-error__contents__description {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  body.error404 .p-error__contents__description {
    font-size: 18px;
    color: #808080;
  }
}

.p-home__banner {
  background-color: #eef6d8;
  padding-top: 60px;
  padding-bottom: 60px;
  margin-top: -2px;
}
.p-home__banner__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .p-home__banner__inner {
    flex-direction: row;
  }
}
.p-home__banner .banner {
  width: 80%;
  max-width: 300px;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-home__banner .banner {
    max-width: 500px;
  }
}
.p-home__banner .area {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  border-radius: 6px;
  border: 1px solid #a48e48;
  display: inline-block;
  text-align: center;
  width: 80%;
  max-width: 300px;
  padding: 20px 0 25px 0;
}
@media (min-width: 1240px) {
  .p-home__banner .area {
    padding: 53px 0 53px 0;
  }
}
.p-home__banner .area img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 1024px) {
  .p-home__banner .area {
    max-width: 500px;
  }
}
.p-home__banner .area .heading {
  color: #69ba00;
  font-size: 24px;
  font-weight: 700;
}
@media (min-width: 1240px) {
  .p-home__banner .area .heading {
    font-size: 36px;
  }
}
.p-home__banner .area p {
  color: #514227;
  font-size: 20px;
  font-weight: 500;
}
@media (min-width: 1240px) {
  .p-home__banner .area p {
    font-size: 28px;
  }
}
.p-home__banner .area p span {
  font-size: 14px;
}

body.home .p-home__reason {
  padding-top: 50px;
  padding-bottom: 60px;
}
body.home .p-home__reason__list {
  max-width: 886px;
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  gap: 45px;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__reason__list {
    margin-top: 90px;
  }
}
body.home .p-home__reason__list__item {
  width: 100%;
  max-width: 405px;
  position: relative;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
body.home .p-home__reason__list__item .num {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__reason__list__item .num {
    top: -10px;
    width: 100px;
  }
}
body.home .p-home__reason__list__item .heading {
  padding-left: 78px;
  color: #0c5e00;
  font-size: 18px;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__reason__list__item .heading {
    font-size: 20px;
    padding-left: 113px;
  }
}
body.home .p-home__reason__list__item .contents {
  background-color: #eef6d8;
  padding: 20px 14px;
  border-radius: 6px;
}
body.home .p-home__reason__list__item .contents__inner {
  padding: 20px;
  background-color: #fff;
  min-height: 360px;
  border-radius: 6px;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__reason__list__item .contents__inner {
    padding: 30px 35px 0;
    min-height: 400px;
  }
}
body.home .p-home__reason__list__item .contents__inner .title {
  text-align: center;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #083f4c;
  font-weight: 700;
  font-size: 24px;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__reason__list__item .contents__inner .title {
    font-size: 28px;
  }
}
body.home .p-home__reason__list__item .contents__inner .title span {
  font-size: 28px;
}
body.home .p-home__reason__list__item .contents__inner .icon {
  margin-top: 9px;
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__reason__list__item .contents__inner .icon {
    margin-top: 30px;
  }
}
body.home .p-home__reason__list__item .contents__inner .description {
  margin-top: 17px;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__reason__list__item .contents__inner .description {
    margin-top: 25px;
  }
}

body.home .p-home__voice {
  padding-top: 10px;
}
body.home .p-home__voice__inner {
  padding-top: 20px;
  border-radius: 12px;
  background-color: #b6d38f;
  width: 96%;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
body.home .p-home__voice__inner #voice__swiper {
  margin-top: 40px;
  position: relative;
  overflow: hidden;
  padding-bottom: 120px;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__voice__inner #voice__swiper {
    max-width: 800px;
    padding-bottom: 180px;
  }
}
body.home .p-home__voice__inner #voice__swiper .swiper-slide {
  width: 75vw;
  transition: opacity 0.3s ease;
  opacity: 0.8;
}
body.home .p-home__voice__inner #voice__swiper .swiper-slide.swiper-slide-active {
  opacity: 1;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__voice__inner #voice__swiper .swiper-slide {
    width: 45%;
  }
}
body.home .p-home__voice__inner .swiper-button-prev {
  left: 15vw;
  top: 60%;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__voice__inner .swiper-button-prev {
    left: -30px;
    top: 60%;
  }
}
body.home .p-home__voice__inner .swiper-button-next {
  right: 8px;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__voice__inner .swiper-button-next {
    right: -30px;
    top: 65%;
  }
}
body.home .p-home__voice__inner .swiper-pagination {
  position: absolute;
  margin-top: 32px;
  margin-bottom: 40px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  bottom: 16px !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}
@media screen and (min-width: 768px) {
  body.home .p-home__voice__inner .swiper-pagination {
    margin-top: 48px;
    margin-bottom: 60px;
  }
}
body.home .p-home__voice__inner .swiper-pagination.swiper-pagination-bullets-dynamic {
  left: 50% !important;
  transform: translateX(-50%) !important;
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
}
body.home .p-home__voice__inner .swiper-pagination-bullet {
  width: 32px;
  height: 4px;
  border-radius: 2px;
  background: #fff;
  opacity: 1;
  margin: 0 6px;
  transition: background 0.3s ease, width 0.3s ease;
}
body.home .p-home__voice__inner .swiper-pagination-bullet-active {
  background: #0c5e00;
  width: 48px;
}
body.home .p-home__voice__inner .swiper-button-prev,
body.home .p-home__voice__inner .swiper-button-next {
  display: none !important;
}
@media (min-width: 1300px) {
  body.home .p-home__voice__inner .swiper-button-prev,
body.home .p-home__voice__inner .swiper-button-next {
    display: flex !important;
  }
  body.home .p-home__voice__inner .swiper-button-prev::after,
body.home .p-home__voice__inner .swiper-button-next::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
  }
}
body.home .p-home__voice__inner .swiper-button-prev {
  left: 15vw;
  top: 60%;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__voice__inner .swiper-button-prev {
    left: 15vw;
    top: 60%;
    transform: translateY(-50%);
  }
}
body.home .p-home__voice__inner .swiper-button-next {
  right: 8px;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__voice__inner .swiper-button-next {
    right: 15vw;
    left: auto;
    top: 60%;
    transform: translateY(-50%);
  }
}
body.home .p-home__voice__inner .swiper-button-prev::after {
  border-width: 12px 18px 12px 0;
  border-color: transparent #3a7d3a transparent transparent;
}
body.home .p-home__voice__inner .swiper-button-next::after {
  border-width: 12px 0 12px 18px;
  border-color: transparent transparent transparent #3a7d3a;
}
body.home .p-home__voice__inner .swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}
body.home .p-home__voice__inner .swiper-navigation-icon {
  width: 100%;
  display: none;
}

body.home .p-home__work {
  padding-top: 80px;
}
body.home .p-home__work__head {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__work__head {
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (min-width: 1024px) {
  body.home .p-home__work__head .work-badge {
    position: absolute;
    right: 10%;
    top: -20%;
  }
}
body.home .p-home__work__inner {
  margin-top: 40px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  body.home .p-home__work__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
    margin: 40px auto 120px;
  }
}
body.home .p-home__work__item {
  display: inline-flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
body.home .p-home__work__label {
  display: inline-block;
  background-color: #a48e48;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 2px 10px;
  border-radius: 999px;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__work__label {
    font-size: 20px;
    padding: 4px 15px;
  }
}
body.home .p-home__work__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
body.home .p-home__work__images figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
body.home .p-home__work__images figure img {
  width: 100%;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
body.home .p-home__work__images figure figcaption {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (min-width: 1024px) {
  body.home .p-home__work__images figure figcaption {
    font-size: 24px;
  }
}
body.home .p-home__work__images figure .before {
  color: #a48e48;
}
body.home .p-home__work__images figure .after {
  color: #514227;
}
body.home .p-home__work .c-cta {
  padding-bottom: 0;
}

body.thanks .p-thanks {
  padding-top: 80px;
  margin-bottom: 80px;
}
@media screen and (min-width: 768px) {
  body.thanks .p-thanks {
    padding-top: 120px;
    margin-bottom: 120px;
  }
}
body.thanks .p-thanks__contents {
  background-color: rgba(229, 245, 225, 0.6274509804);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  font-weight: 500;
  border-radius: 8px;
  margin-inline: auto;
  max-width: 700px;
  padding: 40px 10px;
  text-align: center;
  margin-top: 72px;
  width: 96%;
}
@media screen and (min-width: 768px) {
  body.thanks .p-thanks__contents {
    margin-top: 100px;
    max-width: 900px;
  }
}
body.thanks .p-thanks__contents__title {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #71a444;
}
@media screen and (min-width: 1024px) {
  body.thanks .p-thanks__contents__title {
    font-size: 32px;
  }
}
body.thanks .p-thanks__contents__text {
  max-width: 480px;
  margin-inline: auto;
  margin-top: 30px;
  font-weight: 300;
}
@media screen and (min-width: 1024px) {
  body.thanks .p-thanks__contents__text {
    max-width: 860px;
  }
}
body.thanks .p-thanks__contents__text p {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 20px;
  font-weight: 400;
}
@media screen and (min-width: 1024px) {
  body.thanks .p-thanks__contents__text p {
    font-size: 20px;
  }
}
body.thanks .p-thanks__contents__text .text03 span {
  font-weight: 600;
}

/**
 * _display.scss
 * ディスプレイユーティリティクラス
 */
@media (min-width: 1023px) {
  .u-pc-none {
    display: none;
  }
}

@media (max-width: 700px) {
  .u-sp-none {
    display: none;
  }
}

@media (max-width: 768px) {
  .u-tb-none {
    display: none;
  }
}

@media (min-width: 769px) {
  .u-sp-only {
    display: none;
  }
}

@media (max-width: 1023px) {
  .u-pc-only {
    display: none;
  }
}
/*# sourceMappingURL=style.css.map */