html {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 62.5%;
  line-height: 1.7;
  letter-spacing: 0.1em;
  color: #282828;
  font-size: 1rem;
}

.l-footer {
  width: 100%;
}
.l-footer__info {
  width: 100%;
}
.l-footer__info__content {
  margin: 64px 20px;
  display: flex;
  justify-content: center;
  font-size: 0.8rem;
}
.l-footer__bottom {
  height: 50px;
  background-color: #137627;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
}

.l-header {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background-color: #ffffff;
}
.l-header__inner {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}
@media screen and (max-width: 1024px) {
  .l-header__inner {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 1024px) {
  .l-header__tagline {
    font-size: 0.7rem;
  }
}
.l-header__logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #137627;
}
@media screen and (max-width: 1024px) {
  .l-header__logo {
    font-size: 1.3rem;
    margin-top: -8px;
  }
}
.l-header__right {
  display: flex;
  align-items: center;
  gap: 32px;
}
.l-header__nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}
.l-header__navList {
  display: flex;
  gap: 32px;
  justify-content: right;
}
@media screen and (max-width: 1024px) {
  .l-header__navList {
    display: none;
  }
}
.l-header__navItem a {
  width: 100%;
  display: inline-block;
  padding-bottom: 5px;
  position: relative;
  font-weight: 600;
}
.l-header__navItem a:hover {
  color: #EA6D00;
}
.l-header__navItem a::before {
  background: #EA6D00;
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
.l-header__navItem a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
@media screen and (max-width: 1024px) {
  .l-header__contactNav {
    display: none;
  }
}
.l-header__contactNav__tel {
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.1rem;
  background-color: #EA6D00;
  border-radius: 45px;
}
.l-header__contactNav__tel:hover {
  filter: brightness(1.2);
}
.l-header__contactNav__form {
  margin-top: 4px;
  border-radius: 45px;
  background-color: #ffffff;
  color: #EA6D00;
  border: 1px solid #EA6D00;
  font-weight: 600;
}
.l-header__contactNav__form:hover {
  filter: brightness(1.2);
}
.l-header__contactNav a {
  display: block;
  width: 100%;
  padding: 3px 15px;
}
.l-header__mobileMenu {
  display: none;
  width: 32px;
  height: 32px;
  position: relative;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .l-header__mobileMenu {
    display: block;
  }
}
.l-header__menubar, .l-header__menubar::before, .l-header__menubar::after {
  display: block;
  position: absolute;
  content: "";
  height: 2px;
  width: 100%;
  background-color: #333;
  cursor: pointer;
  transition: all 0.5s;
}
.l-header__menubar::before {
  top: -10px;
}
.l-header__menubar::after {
  top: 10px;
}
.l-header__mobileMenu.open > .l-header__menubar {
  background-color: transparent;
}
.l-header__mobileMenu.open > .l-header__menubar::before {
  top: 0;
  transform: rotate(45deg);
  background-color: #fff;
}
.l-header__mobileMenu.open > .l-header__menubar::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #fff;
}
.l-header__mobileNav {
  position: fixed;
  width: 80%;
  height: 100vh;
  top: 0px;
  right: -120%;
  background-color: #EA6D00;
  padding: 50px 0;
  transition: all 0.5s;
}
.l-header__mobileNavList {
  margin: 20px 20px;
}
.l-header__mobileNavItem {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  padding: 15px;
  text-align: center;
  border-bottom: 1px solid #fff;
}
.l-header__mobileNavItem a {
  display: block;
  width: 100%;
  height: 100%;
}
.l-header__mobileNav.open {
  right: 0;
}
.l-header__mobileNavInfo {
  margin: 40px auto;
  text-align: center;
}
.l-header__mobileNavContact {
  margin: 30px 30px;
  font-size: 0.8rem;
  color: #fff;
}

.l-main__section__inner {
  padding: 90px 0 90px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 20px;
}
.l-main__content {
  display: flex;
  gap: 32px;
  width: 100%;
  max-width: 1000px;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .l-main__content {
    flex-direction: column;
    gap: 20px;
  }
}
.l-main__content__flex2 {
  flex: 2;
}
.l-main__content__flex1 {
  flex: 1;
}
.l-main__content__flex1 img {
  display: block;
  width: 100%;
}
.l-main__content__flex img {
  display: block;
  width: 100%;
}
.l-main__content--column {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 1000px;
  align-items: center;
  justify-content: center;
  position: relative;
}

.c-btn {
  display: block;
  width: 300px;
  padding: 8px 16px;
  border-radius: 45px;
  background-color: #EA6D00;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease;
  text-align: center;
}
.c-btn__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.c-btn__icon {
  display: block;
  width: 30px;
}
.c-btn__top {
  font-size: 1rem;
}
.c-btn__bottom {
  font-size: 1.2rem;
  margin-top: -6px;
}
.c-btn:hover {
  transform: translateY(2px);
  box-shadow: none;
  filter: brightness(1.1);
}

.c-btn--second {
  color: #EA6D00;
  background-color: #ffffff;
  border: 1px solid #EA6D00;
}

.c-btn--line {
  color: #137627;
  background-color: #ffffff;
  border: 1px solid #137627;
}

.c-contact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 20px;
  background-image: url(../images/mv_bg.svg);
}
@media screen and (max-width: 1024px) {
  .c-contact {
    height: 100%;
    gap: 0;
    padding: 48px 20px;
  }
}
.c-contact__image {
  height: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-h1 {
  font-size: 2.2rem;
  font-weight: 600;
  color: #137627;
}
@media screen and (max-width: 1024px) {
  .c-h1 {
    font-size: 1.5rem;
  }
}

.c-h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .c-h2 {
    font-size: 1.3rem;
  }
}

.c-h2--borderLeft {
  border-left: 8px solid #137627;
  padding-left: 12px;
}

.c-h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 16px;
}
@media screen and (max-width: 1024px) {
  .c-h3 {
    font-size: 1.1rem;
  }
}

.c-h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.c-p {
  font-size: 1rem;
  margin-bottom: 16px;
}

.c-bold {
  font-weight: 600;
  background: linear-gradient(transparent 60%, #ffe252 80%);
}

.c-icon {
  display: inline-block;
  width: 28px;
  margin-right: 16px;
  fill: #EA6D00;
}

.c-center {
  text-align: center;
}

.c-fs12 {
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  .c-fs12 {
    font-size: 1rem;
  }
}

.c-pageHeader {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  background-color: #F3FFEB;
}
@media screen and (max-width: 1024px) {
  .c-pageHeader {
    height: 200px;
  }
}

.p-toppage__mv {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  height: 90vh;
  padding: 0 20px;
  background-image: url(../images/mv_bg.svg);
}
@media screen and (max-width: 1024px) {
  .p-toppage__mv {
    height: 100%;
    gap: 0;
    padding: 48px 0 48px;
  }
}
.p-toppage__mv__copy {
  font-size: 2.2rem;
  text-align: center;
  font-weight: 600;
  color: #137627;
}
@media screen and (max-width: 1024px) {
  .p-toppage__mv__copy {
    font-size: 1.4rem;
    text-align: center;
    margin-bottom: 8px;
  }
}
.p-toppage__mv__middle {
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.p-toppage__mv__box {
  width: 100%;
  max-width: 1000px;
  height: 100px;
  background-image: linear-gradient(90deg, #1d8332, #68e16c);
  display: flex;
  justify-content: left;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .p-toppage__mv__box {
    justify-content: center;
    margin-bottom: 20px;
    display: none;
  }
}
.p-toppage__mv__boxInner {
  margin-left: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  .p-toppage__mv__boxInner {
    margin-left: 0;
  }
}
.p-toppage__mv__title {
  font-size: 2.2rem;
  font-weight: 600;
  margin-top: -8px;
}
.p-toppage__mv__info {
  margin-top: 48px;
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: left;
}
@media screen and (max-width: 1024px) {
  .p-toppage__mv__info {
    justify-content: center;
    display: none;
  }
}
.p-toppage__mv__infoText {
  margin-left: 96px;
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
}
.p-toppage__mv__image {
  position: absolute;
  top: -24px;
  right: 96px;
  display: block;
}
@media screen and (max-width: 1024px) {
  .p-toppage__mv__image {
    position: relative;
    top: auto;
    right: auto;
    display: flex;
    justify-content: center;
    width: 80%;
  }
}
.p-toppage__mv__bottom {
  text-align: center;
  margin-top: 48px;
}
@media screen and (max-width: 1024px) {
  .p-toppage__mv__bottom {
    margin-top: 16px;
  }
}
.p-toppage__mv__bottomText1 {
  display: none;
}
@media screen and (max-width: 1024px) {
  .p-toppage__mv__bottomText1 {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 16px;
    margin-top: 8px;
  }
}
.p-toppage__mv__bottomText2 {
  font-weight: 600;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .p-toppage__mv__bottomText2 {
    font-size: 0.8rem;
    margin-bottom: 16px;
    margin-top: 8px;
  }
}
.p-toppage__mv__contactBox {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 1024px) {
  .p-toppage__mv__contactBox {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
.p-toppage__section1__bg {
  background-color: #fff;
}
.p-toppage__section2__bg {
  background-color: #f7f7f7;
}
.p-toppage__section2__text {
  margin-top: 24px;
  font-size: 1.2rem;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .p-toppage__section2__text {
    font-size: 1rem;
  }
}
.p-toppage__section3__bg {
  background-color: transparent;
}
.p-toppage__section3__line {
  position: relative;
}
@media screen and (max-width: 1024px) {
  .p-toppage__section3__line {
    width: 100%;
    padding: 16px;
    background-color: #ffefb4;
  }
  .p-toppage__section3__line::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -15px;
    border: 15px solid transparent;
    border-top: 15px solid #ffefb4;
  }
}
.p-toppage__section3__box {
  width: 100%;
  max-width: 1000px;
  height: 180px;
  background-color: rgb(255, 239, 180);
  z-index: -10;
  position: absolute;
  inset: 0;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .p-toppage__section3__box {
    display: none;
  }
}
.p-toppage__section3__label {
  display: inline-block;
  padding: 4px 8px;
  background-color: #137627;
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 600;
}
.p-toppage__section4__bg {
  background-color: #f7f7f7;
}
.p-toppage__section4__link {
  display: block;
  border: 1px solid black;
  text-align: center;
  padding: 16px;
  width: 100%;
  background-color: #fff;
}
.p-toppage__section4__link:hover {
  opacity: 0.8;
}
.p-toppage__section4__link img {
  display: inline-block;
  width: 24px;
  margin-right: 8px;
}
.p-toppage__section5__bg {
  background-color: white;
}

.p-about__section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-about__section__staff {
  margin-bottom: 48px;
}
.p-about__section__office__image {
  display: flex;
  gap: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1024px) {
  .p-about__section__office__image {
    flex-direction: column;
  }
}

.p-about__policy {
  text-decoration: underline;
  color: #1558d6;
}

.item-row {
  display: flex;
  border-bottom: 1px solid #ccc;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .item-row {
    flex-direction: column;
  }
}
.item-row dt {
  margin: 0;
  padding: 16px 16px;
  width: 36%;
  flex-shrink: 0;
  background-color: #f7f7f7;
  font-weight: bold;
  font-size: 1rem;
  border-right: 1px solid #ccc;
}
@media screen and (max-width: 1024px) {
  .item-row dt {
    width: 100%;
    border-right: none;
    padding: 16px 16px;
  }
}
.item-row dd {
  margin: 0;
  padding: 16px 16px;
  flex-grow: 1;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.p-service__section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-faq__section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}
.p-faq__block__question {
  padding: 16px 24px;
  background-color: #FFECD1;
  font-weight: 600;
}
.p-faq__block__answer {
  padding: 16px 24px;
  margin-bottom: 48px;
}
.p-faq__highlight {
  font-weight: 600;
  color: #EA6D00;
}

.p-access__section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.p-contact__section {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.p-contact__content__form-row {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .p-contact__content__form-row {
    flex-direction: column;
  }
}
.p-contact__content__left {
  width: 220px;
  padding: 12px 0;
}
.p-contact__content__left label {
  font-size: 1.1rem;
  font-weight: 500;
  padding: 2px 6px;
  vertical-align: middle;
}
.p-contact__content__left span {
  display: inline-block;
  padding: 2px 6px;
  font-size: 0.8rem;
  background-color: rgb(202, 0, 0);
  color: #fff;
  font-weight: 500;
}
.p-contact__content__left p {
  margin: 0;
}
.p-contact__content__right {
  flex-grow: 1;
}
.p-contact__content__right input {
  width: 100%;
  padding: 12px;
  background-color: #e7e7e7;
}
.p-contact__content__right textarea {
  width: 100%;
  padding: 12px;
  background-color: #e7e7e7;
}
.p-contact__content__right p {
  padding: 12px;
  font-size: 1.1rem;
}
@media screen and (max-width: 1024px) {
  .p-contact__content__right p {
    padding: 0;
  }
}
.p-contact__content__btn {
  text-align: center;
  width: 100%;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .p-contact__content__next {
    margin-top: 32px;
  }
}
.p-contact__content__confirm {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .p-contact__content__confirm {
    flex-direction: column;
  }
}
.p-contact__content__text {
  margin-bottom: 30px;
}

div.wpcf7 .wpcf7-spinner {
  display: none !important;
}

.c-button {
  padding: 16px 96px;
  background-color: #137627;
  font-weight: 600;
  color: #fff;
}
.c-button:hover {
  opacity: 0.7;
}
.c-button--second {
  padding: 16px 96px;
  background-color: #fff;
  color: #333;
  border: 1px solid #333;
  font-weight: 600;
}
.c-button--second:hover {
  opacity: 0.7;
}

.p-contact__thanksMessage {
  text-align: center;
}

.p-contact__thanksButton {
  margin-top: 60px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-mb120 {
  margin-bottom: 120px;
}

.u-bold {
  font-weight: bold;
}

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

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

.u-flex-reverse {
  flex-direction: column-reverse;
}

.u-bg-gray {
  background-color: #f7f7f7;
}/*# sourceMappingURL=style.css.map */