@charset "UTF-8";
/* ===============================================
# ブラウザ幅でフォントサイズを変える関数
=============================================== */
html {
  font-size: 62.5%;
  overflow-x: hidden;
}

body {
  background: #fff;
  font-family: Arial, "Noto Sans JP", "Yu Gothic Medium", YuGothic, "-apple-system", BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.4;
  color: #333333;
  height: auto !important;
  overflow: hidden;
}

a {
  color: #333333;
}

figure {
  margin: 0;
  text-align: center;
}

p {
  line-height: 1.8;
}
p:first-of-type {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}

ol,
ul {
  line-height: 1.8;
  padding: 0 0 0 1.8em;
}

li {
  margin: 0 0 1em;
}
li:last-child {
  margin-bottom: 0;
}

.pc-only {
  display: block;
}
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}
@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

@media (max-width: 767px) {
  .col:not(:last-child) {
    margin-bottom: 30px;
    margin-bottom: 3rem;
  }
}

.row:not(:last-child) {
  margin-bottom: 50px;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .row:not(:last-child) {
    margin-bottom: 40px;
    margin-bottom: 4rem;
  }
}

.bread {
  margin-bottom: 80px;
  margin-bottom: 8rem;
}
@media (max-width: 767px) {
  .bread {
    margin-bottom: 60px;
    margin-bottom: 6rem;
  }
}
.bread .container {
  padding: 0 20px;
  max-width: 1040px;
}
@media (max-width: 767px) {
  .bread .container {
    padding: 0 4.5%;
    max-width: calc(1000px + 9%);
  }
}
.bread ul {
  list-style: none;
  padding-left: 0;
}
.bread ul > * {
  margin: 0;
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
}
.bread ul > *:not(:last-child) {
  margin-right: 2em;
}
.bread ul > *:not(:last-child):before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  top: 0;
  left: calc(100% + 0.6em);
  right: auto;
  bottom: 0;
  margin: auto;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.bread a {
  text-decoration: none;
}

body:not(.home) main > section > .container {
  padding: 0 20px;
  max-width: 1040px;
}
@media (max-width: 767px) {
  body:not(.home) main > section > .container {
    padding: 0 4.5%;
    max-width: calc(1000px + 6%);
  }
}

.column_main {
  margin-bottom: 180px;
}
@media (max-width: 767px) {
  .column_main {
    margin-bottom: 100px;
  }
}
.column_main > section > .container {
  max-width: none;
  padding: 0;
}
.column_main > section:not(:last-child) {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .column_main > section:not(:last-child) {
    margin-bottom: 60px;
  }
}

.pager {
  margin-bottom: 20px;
  margin-bottom: 2rem;
}
.pager .nav-links {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.pager .nav-links > * {
  width: 2em;
  height: 2em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: rgba(134, 176, 112, 0.1);
  color: #86B070;
  border: 1px solid #86b070;
  border-radius: 100px;
  font-weight: bold;
}
.pager .nav-links > *:not(:last-child) {
  margin-right: 0.5em;
}
.pager .nav-links > *.current {
  background: #86B070;
  color: #fff;
}
.pager .nav-links > *.prev {
  position: relative;
}
.pager .nav-links > *.prev:before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  top: 0;
  left: 50%;
  right: auto;
  bottom: 0;
  margin: auto;
  border-top: 1px solid #86B070;
  border-right: 1px solid #86B070;
  -webkit-transform: translateX(-50%) rotate(222deg);
          transform: translateX(-50%) rotate(222deg);
}
.pager .nav-links > *.next {
  position: relative;
}
.pager .nav-links > *.next:before {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  top: 0;
  left: 50%;
  right: auto;
  bottom: 0;
  margin: auto;
  border-top: 1px solid #86B070;
  border-right: 1px solid #86B070;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.archive-list {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .archive-list {
    margin-bottom: 80px;
  }
}
.archive-list dl {
  margin-top: 0;
}
@media (min-width: 768px) {
  .archive-list dl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.archive-list dt,
.archive-list dd {
  padding: 1.2em 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}
@media (min-width: 768px) {
  .archive-list dt:first-of-type,
  .archive-list dd:first-of-type {
    border-top: 1px solid rgba(51, 51, 51, 0.2);
  }
}
@media (min-width: 768px) {
  .archive-list dt {
    width: 150px;
  }
}
@media (max-width: 767px) {
  .archive-list dt {
    border-bottom: 0;
    padding-bottom: 0.6em;
    border-top: 1px solid rgba(51, 51, 51, 0.2);
  }
}
.archive-list dd {
  margin: 0;
}
@media (min-width: 768px) {
  .archive-list dd {
    width: calc(100% - 150px);
  }
}
@media (max-width: 767px) {
  .archive-list dd {
    border-top: 0;
    padding-top: 0;
  }
}
.archive-list a {
  text-decoration: none;
}
.archive-list a:hover {
  text-decoration: underline;
}

.single-wrap {
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .single-wrap {
    margin-bottom: 80px;
  }
}
.single-wrap .date {
  margin-bottom: 20px;
}
.single-wrap .post-area {
  background: rgba(134, 176, 112, 0.1);
  padding: 60px 6%;
}
@media (max-width: 767px) {
  .single-wrap .post-area {
    padding: 30px 6%;
  }
}

/*==================================================
アコーディオンのためのcss
===================================*/
.qa {
  /*アコーディオン全体*/
  /*アコーディオンタイトル*/
  /*アイコンの＋と×*/
  /*　closeというクラスがついたら形状変化　*/
  /*アコーディオンで現れるエリア*/
}
.qa .qa-area {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  counter-reset: number 0;
}
.qa .qa-area li {
  border: 1px solid rgba(21, 71, 52, 0.5);
  border-radius: 4px;
  background: rgba(21, 71, 52, 0.07);
}
.qa .title {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  font-weight: normal;
  padding: 20px 60px 20px calc(26px + 2.8em);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 18px;
  font-size: 1.8rem;
  margin-bottom: 0;
  min-height: 4.8em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 767px) {
  .qa .title {
    font-size: 17px;
    font-size: 1.7rem;
    padding: 16px 60px 16px calc(22px + 2.2em);
  }
}
.qa .title {
  color: #333333;
}
.qa .title::after {
  content: "+";
  position: absolute;
  width: 1em;
  height: 1em;
  background: transparent;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  top: 0;
  right: 20px;
  left: auto;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  bottom: 0;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  margin: auto;
  display: inline-block;
  font-size: 1.5em;
  text-indent: 0.15em;
  line-height: 0.9em;
}
.qa .title:before {
  font-weight: bold;
  width: 2.2em;
  border-radius: 4px;
  height: 1.2em;
  font-size: 1.2em;
  position: static;
  display: inline-block;
  margin-right: 0.7em;
  line-height: 1.2em;
  color: #fff;
  letter-spacing: 0.15em;
  counter-increment: number 1;
  content: "Q" counter(number);
  position: absolute;
  top: calc(20px + 0.45em);
  left: 28px;
  color: #154734;
  bottom: auto;
  margin: 0 auto;
  background: transparent;
}
@media (max-width: 767px) {
  .qa .title:before {
    top: calc(16px + 0.05em);
    left: 18px;
  }
}
.qa .title.close::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.qa .box {
  display: none;
  /*はじめは非表示*/
  background: rgba(134, 176, 112, 0.1);
  margin: 0 20px 20px;
  padding: 20px;
  border-radius: 4px;
  position: relative;
}

.highlight_ttl > h2,
.highlight_ttl h3,
.highlight_ttl h4 {
  background: rgba(134, 176, 112, 0.1);
  border-radius: 4px;
  padding: 1em;
  color: #333333;
}
.highlight_ttl > h2:before, .highlight_ttl > h2:after,
.highlight_ttl h3:before,
.highlight_ttl h3:after,
.highlight_ttl h4:before,
.highlight_ttl h4:after {
  content: none;
}

.step > div {
  border: 1px solid #154734;
}
@media (min-width: 768px) {
  .step > div {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.step > div:not(:last-child) {
  position: relative;
  margin-bottom: 50px;
}
.step > div:not(:last-child):before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  bottom: auto;
  left: 0;
  right: 0;
  bottom: auto;
  margin: 0 auto;
  top: calc(100% + 10px);
  border-top: 3px solid #154734;
  border-right: 3px solid #154734;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.step h3 {
  font-size: 18px;
  font-size: 1.8rem;
  color: #fff;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: center;
}
.step h3:before {
  content: none;
}
.step .col {
  padding: 1em 1.5em;
  margin: 0;
}
@media (max-width: 767px) {
  .step .col {
    padding: 1em 0.5em;
  }
}
.step .col:first-child {
  background: #154734;
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: left;
  margin-bottom: 0;
}

.btn {
  display: block;
  overflow: hidden;
  margin: auto;
}
.btn a {
  display: block;
  border: 1px solid #154734;
  color: #154734;
  background: transparent;
  padding: 0.8em 1em;
  margin: 0 auto 1px;
  max-width: 374px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  line-height: 1.4;
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
}
.btn a:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 5%;
  margin: auto;
  width: 5px;
  height: 5px;
  -webkit-transform: translate(0, -50%) rotate(45deg);
          transform: translate(0, -50%) rotate(45deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-top: 2px solid #154734;
  border-right: 2px solid #154734;
}
.btn a:hover {
  background: #154734;
  color: #fff;
  border-color: #fff;
}
.btn a:hover:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

@media (min-width: 1190px) {
  .hdr-pc-only {
    display: none !important;
  }
}

header .header_btn_wrap {
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: auto;
  margin: 0 auto;
  height: 100%;
  z-index: 0;
}
@media (max-width: 1189px) {
  header .header_btn_wrap {
    display: none;
  }
}
header .header_btn_wrap .header_info_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  height: 100%;
  right: 0;
  left: auto;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
header .header_btn_wrap .hdr_info_more {
  margin: 0;
}
header .header_btn_wrap .hdr_info_more a {
  height: 100%;
  color: #fff;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  display: block;
  min-width: 133px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 14px;
  line-height: 1.4285714286;
  font-family: "Noto Sans JP", "Yu Gothic Medium", YuGothic, "-apple-system", BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
header .header_btn_wrap .hdr_info_more a .icon {
  position: relative;
  display: block;
}
header .header_btn_wrap .hdr_info_more.line a {
  background: #65AF50;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .header_btn_wrap .hdr_info_more.line a .icon {
  padding-top: 3em;
}
header .header_btn_wrap .hdr_info_more.line a .icon::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  background: url(/wp-content/uploads/line_icon.svg) no-repeat center/2em;
  position: absolute;
  top: 0;
  font-size: 16px;
  bottom: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
}
header .header_btn_wrap .hdr_info_more.line a:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .header_btn_wrap .hdr_info_more.contact a {
  background: #337261;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .header_btn_wrap .hdr_info_more.contact a .icon {
  padding-top: 3em;
}
header .header_btn_wrap .hdr_info_more.contact a .icon::before {
  content: "";
  display: block;
  width: 38px;
  height: 38px;
  background: url(/wp-content/uploads/mail_icon.svg) no-repeat center/2em;
  position: absolute;
  top: 0;
  font-size: 16px;
  bottom: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
}
header .header_btn_wrap .hdr_info_more.contact a:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .header_info_wrap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: auto;
  margin: 0 auto;
  height: 100%;
  z-index: -1;
}
@media (max-width: 1189px) {
  header .header_info_wrap {
    display: none;
  }
}
header .header_info_wrap .header_info {
  position: absolute;
  overflow: hidden;
  top: 24px;
  right: 324px;
}
header .header_info_wrap .tel {
  line-height: 1;
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
  margin-bottom: 0;
  color: #86B070;
  padding-left: 1.125em;
  background: url(/wp-content/uploads/tel_icon.png) no-repeat center left/0.7916666667em;
  display: table;
  margin-right: 0;
  margin-left: auto;
  line-height: 1;
}
header .header_info_wrap .tel a {
  color: #86B070;
}
header .header_info_wrap .add {
  font-size: 14px;
  line-height: 1.6;
  /* margin-top: 6px; */
  margin-right: -8px;
  margin-top: 1px;
}
header .box {
  width: 100%;
}
@media (min-width: 1190px) {
  header .box {
    position: relative;
    display: table;
    padding-right: 316px;
  }
}
header .title,
header .gnav {
  display: table-cell;
}
@media (min-width: 1190px) {
  header .title,
  header .gnav {
    height: 136px;
  }
}
@media (min-width: 1190px) {
  header .gnav {
    vertical-align: bottom;
    text-align: right;
  }
}
header .gnav ul {
  margin: 0;
  list-style: none;
  padding-left: 0;
  padding: 12px 0;
}
header .gnav ul li {
  margin: 0;
}
header .gnav ul li a {
  padding: 0 0.625vw;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-weight: 500;
}
header .gnav ul li a:hover {
  color: #86B070;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

header {
  background: #fff;
  position: relative;
}
header .hdr-ttl-wrap {
  position: relative;
  z-index: 1;
}
header .hdr-ttl-wrap:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  background: #86B070;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: -300%;
  right: -300%;
  margin: auto;
  z-index: -1;
}
header .hdr-ttl-wrap .hdr-ttl {
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: normal;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 0.4em 0;
  margin: 0;
}
header .header-inner > .container {
  position: relative;
}
header .hdr-ttl-wrap {
  max-width: calc(1200px + 12%);
  padding: 0 6%;
  margin: auto;
}
@media (min-width: 1190px) {
  header .container {
    width: 100%;
    padding-left: 18.75vw;
    padding-right: 0;
    max-width: none;
    z-index: 0;
  }
}
@media (max-width: 1500px) {
  header .container {
    padding: 0 0 0 2%;
  }
}
@media (max-width: 1189px) {
  header .container {
    padding: 0 4.5%;
  }
}
header .title {
  margin: 0;
  font-size: 0;
  vertical-align: middle;
  position: relative;
}
@media (min-width: 1190px) {
  header .title {
    padding: 22px 0 2px;
  }
}
@media (max-width: 1189px) {
  header .title {
    padding: 30px 0 10px;
  }
}
header .title a {
  display: block;
}
header .title a img {
  width: 196px;
  height: 90px;
}
@media (max-width: 1189px) {
  header .title a img {
    width: 130px;
    height: auto;
  }
}
header .hdr_text h1 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.5;
  padding: 0.3em 0;
  text-align: left;
  background: transparent;
  position: relative;
  margin-bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1189px) {
  header .hdr_text h1 {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
header .hdr_text h1:before {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  z-index: -1;
  background: #86B070;
  position: absolute;
  top: 0;
  left: -300%;
  right: -300%;
  bottom: 0;
  margin: auto;
}
@media (max-width: 1189px) {
  header .btn-gnavi {
    position: absolute;
    top: 66%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 100;
    bottom: auto;
    right: 4.5%;
    margin: 0 auto;
    display: block;
    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    overflow: hidden;
    z-index: 50;
  }
  header .btn-gnavi:after, header .btn-gnavi:before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 4px;
    background: #86B070;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
  header .btn-gnavi:before {
    top: 0;
  }
  header .btn-gnavi:after {
    bottom: 0;
  }
  header .btn-gnavi span {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 4px;
    background: #86B070;
    -webkit-transition: -webkit-transform 0.5s;
    transition: -webkit-transform 0.5s;
    transition: transform 0.5s;
    transition: transform 0.5s, -webkit-transform 0.5s;
  }
  header .btn-gnavi.close:not(.fix) {
    background: none;
  }
  header .btn-gnavi.close:not(.fix):before {
    top: 50%;
    -webkit-transform: translate(0, -50%) rotate(45deg);
            transform: translate(0, -50%) rotate(45deg);
    background: #86B070;
  }
  header .btn-gnavi.close:not(.fix):after {
    bottom: 50%;
    -webkit-transform: translate(0, 50%) rotate(-45deg);
            transform: translate(0, 50%) rotate(-45deg);
    background: #86B070;
  }
  header .btn-gnavi.close:not(.fix) span {
    -webkit-transform: translate(100%, -50%);
            transform: translate(100%, -50%);
  }
}
header.menu_open .gnav > ul {
  visibility: visible;
  -webkit-transform: rotateX(0deg);
          transform: rotateX(0deg);
}
header .btn-gnavi {
  display: none;
}
@media (max-width: 1189px) {
  header .btn-gnavi {
    display: block;
  }
}
@media (min-width: 1190px) {
  header .gnav > ul > li.has_under {
    position: relative;
  }
  header .gnav > ul > li.has_under > a {
    padding-right: 1.5em;
  }
  header .gnav > ul > li.has_under > a:after {
    border-color: #333333;
    width: 6px;
    height: 6px;
    -webkit-transform: translate(0, -50%) rotate(135deg);
            transform: translate(0, -50%) rotate(135deg);
  }
  header .gnav > ul > li.has_under > a.menu_under_open:after {
    -webkit-transform: translate(0) rotate(-45deg);
            transform: translate(0) rotate(-45deg);
  }
  header .gnav > ul > li.has_under ul {
    position: absolute;
    min-width: 230px;
    width: 100%;
    left: 0;
    right: 0;
    margin: auto;
    top: 100%;
    letter-spacing: -0.4em;
    z-index: 52;
    background: transparent;
  }
  header .gnav > ul > li.has_under ul li {
    width: 100%;
    text-align: center;
    padding: 0;
  }
  header .gnav > ul > li.has_under ul li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.8);
  }
  header .gnav > ul > li.has_under ul li a {
    background: rgba(134, 176, 112, 0.96);
    padding: 1em;
    overflow-wrap: break-word;
    display: block;
    color: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header .gnav > ul > li.has_under ul li a:hover {
    background: rgba(108, 153, 84, 0.96);
  }
}
@media (max-width: 1189px) {
  header .gnav > ul {
    -webkit-transform-origin: center top;
            transform-origin: center top;
    visibility: hidden;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    -webkit-transform: rotateX(90deg);
            transform: rotateX(90deg);
    padding: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 2;
    margin: 0 -4.5%;
  }
}
header .gnav > ul > li {
  display: inline-block;
}
@media (max-width: 1189px) {
  header .gnav > ul > li {
    background: rgba(134, 176, 112, 0.96);
    margin: 0;
    display: block;
  }
  header .gnav > ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}
header .gnav > ul > li a {
  text-decoration: none;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}
@media (max-width: 1199px) {
  header .gnav > ul > li a {
    font-size: 1.6rem;
    padding: 0em 0.625em;
  }
}
@media (max-width: 1189px) {
  header .gnav > ul > li a {
    color: #fff;
    padding: 1em 11%;
    text-align: left;
    display: block;
  }
}
header .gnav > ul > li.has_under > a {
  position: relative;
}
header .gnav > ul > li.has_under > a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 6%;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  -webkit-transform: translate(0, -50%) rotate(135deg);
          transform: translate(0, -50%) rotate(135deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
@media (max-width: 1189px) {
  header .gnav > ul > li.has_under > a:after {
    border-color: #fff;
    right: 11%;
  }
}
header .gnav > ul > li.has_under > a.menu_under_open:after {
  -webkit-transform: translate(0, 0) rotate(-45deg);
          transform: translate(0, 0) rotate(-45deg);
}
header .gnav > ul > li.has_under > ul {
  min-width: 230px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: none;
}
header .gnav > ul > li.has_under > ul > li {
  padding: 0;
  margin: 0;
}
@media (max-width: 1189px) {
  header .gnav > ul > li.has_under > ul > li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  header .gnav > ul > li.has_under > ul > li:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  }
}
header .gnav > ul > li.has_under > ul a {
  background: rgba(134, 176, 112, 0.96);
  display: block;
  text-align: left;
  color: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media (max-width: 1189px) {
  header .gnav > ul > li.has_under > ul a {
    background: rgba(116, 164, 91, 0.96);
  }
}
header .gnav > ul > li.has_under > ul a:hover {
  background: rgba(108, 153, 84, 0.96);
}

@media (max-width: 767px) {
  .mv-pc-only {
    display: none !important;
  }
}

.mv-sp-only {
  display: none !important;
}
@media (max-width: 767px) {
  .mv-sp-only {
    display: block !important;
  }
}

.mv .mv-inner {
  position: relative;
}
.mv .slick {
  margin: auto;
  overflow: hidden;
  padding-left: 0;
  position: relative;
  height: 515px;
}
@media (max-width: 1199px) {
  .mv .slick {
    height: 0;
    padding-top: 42.9166666667%;
  }
}
@media (max-width: 767px) {
  .mv .slick {
    padding-top: 88.9333333333%;
  }
}
.mv .slick .slick-list {
  top: 0;
  left: 0%;
  height: 100%;
  width: 100%;
  bottom: 0;
  right: 0%;
  margin: auto;
  position: absolute;
}
.mv .slick .slick-list .slick-track {
  top: 0;
  left: 0%;
  height: 100%;
  width: 100%;
  bottom: 0;
  right: 0%;
  margin: auto;
  position: absolute;
}
.mv .slick li {
  top: 0;
  left: 0%;
  height: 100%;
  width: 100%;
  bottom: 0;
  right: 0%;
  margin: auto;
  position: absolute;
}
.mv .slick li > img {
  position: absolute;
  top: 0;
  left: -300%;
  height: 100%;
  width: 100%;
  bottom: 0;
  right: -300%;
  margin: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv .mv-copy {
  max-width: 100%;
  position: absolute;
  top: 0;
  padding-left: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  list-style: none;
  z-index: 1;
  margin: auto;
}
.mv .mv-copy li:nth-of-type(1) img {
  max-width: 142px;
  top: 7.7669902913%;
  left: 18.75%;
  right: auto;
  bottom: auto;
  position: absolute;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1199px) {
  .mv .mv-copy li:nth-of-type(1) img {
    max-width: none;
    width: 11.8333333333%;
  }
}
@media (max-width: 767px) {
  .mv .mv-copy li:nth-of-type(1) img {
    width: 20.1333333333%;
    top: 7.0464767616%;
    bottom: auto;
    left: auto;
    right: 8.8%;
  }
}
.mv .mv-copy li:nth-of-type(2) img {
  max-width: 418px;
  top: auto;
  left: auto;
  right: 18.75%;
  bottom: 8.932038835%;
  position: absolute;
  margin: 0 auto;
  width: 100%;
}
@media (max-width: 1199px) {
  .mv .mv-copy li:nth-of-type(2) img {
    max-width: none;
    width: 34.8333333333%;
  }
}
@media (max-width: 767px) {
  .mv .mv-copy li:nth-of-type(2) img {
    width: 51.2%;
    top: auto;
    bottom: 5.0974512744%;
    left: auto;
    right: 7.6%;
  }
}

#mv-text {
  position: relative;
}
#mv-text .mv-copy02 {
  max-width: 100%;
  width: 100%;
  list-style: none;
  z-index: 1;
  margin: auto;
  gap: 1.5625vw;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #337261;
  padding: 19px 18.2291666667%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (max-width: 767px) {
  #mv-text .mv-copy02 {
    padding: 14px 4%;
    position: static;
    gap: 10px;
  }
}
#mv-text .mv-copy02 > * {
  width: calc((100% - 1.5625vw * 2) / 3 - 1px);
}
@media (max-width: 767px) {
  #mv-text .mv-copy02 > * {
    width: 100%;
  }
}
#mv-text .mv-copy02 li {
  margin: 0;
}
#mv-text .mv-copy02 li img {
  display: block;
  width: 100%;
  max-width: 380px;
  margin: auto;
}
@media (max-width: 767px) {
  #mv-text .mv-copy02 li img {
    max-width: 92%;
  }
}

footer {
  position: relative;
  background: #fff;
  color: #333333;
}
@media (max-width: 767px) {
  footer {
    border-top: 1px solid #333333;
  }
}
@media (min-width: 768px) {
  footer > .footer {
    padding-top: 20px;
  }
}
footer > .footer .container {
  max-width: none;
}
footer .pagetop {
  position: fixed;
  bottom: 5%;
  right: 5%;
  z-index: 100;
}
footer .pagetop a {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 50px;
  padding: 0;
  border-radius: 50%;
  background: #86B070;
}
@media (min-width: 768px) {
  footer .pagetop a {
    width: 70px;
    height: 70px;
  }
}
footer .pagetop a:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333333;
  border-left: 2px solid #333333;
  -webkit-transform: translate(-50%, -20%) rotate(45deg);
          transform: translate(-50%, -20%) rotate(45deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
footer.high .pagetop {
  position: absolute;
  bottom: auto;
  right: 5%;
  top: 0;
  margin: 0;
  -webkit-transform: translateY(-95%);
          transform: translateY(-95%);
}
footer .nav ul {
  list-style: none;
  padding-left: 0;
  text-align: center;
  margin: 0;
}
footer .nav ul li {
  margin: 0;
  display: inline-block;
  color: #333333;
}
@media (min-width: 768px) {
  footer .nav ul li:not(:last-child) {
    border-right: 1px solid rgba(51, 51, 51, 0.5);
  }
}
@media (max-width: 767px) {
  footer .nav ul li {
    display: block;
  }
  footer .nav ul li:not(:last-child) {
    border-bottom: 1px solid rgba(51, 51, 51, 0.4);
  }
}
footer .nav ul li a {
  padding: 0em 1.3em;
  line-height: 1.2857142857;
  color: #333333;
  text-decoration: none;
  display: block;
  font-size: 14px;
  font-size: 1.4rem;
  -webkit-transition: 0.3;
  transition: 0.3;
}
@media (max-width: 767px) {
  footer .nav ul li a {
    padding: 1em 1.5em;
  }
}
footer .nav ul li a:hover {
  color: #86B070;
  -webkit-transition: 0.3;
  transition: 0.3;
}
footer .copyright {
  text-align: center;
  font-size: 12px;
  font-size: 1.2rem;
  padding: 28px 0;
  position: relative;
}
@media (min-width: 768px) {
  footer .copyright {
    margin-top: 28px;
  }
}
@media (max-width: 767px) {
  footer .copyright {
    padding: 14px 0;
  }
}
footer .copyright:before {
  content: "";
  display: block;
  width: 100vw;
  height: 1px;
  background: rgba(51, 51, 51, 0.4);
  position: absolute;
  top: 0;
  left: -300%;
  right: -300%;
  bottom: auto;
  margin: 0 auto;
}

table {
  margin: 0 auto;
  border-spacing: 0;
  width: 100%;
}
table td,
table th {
  padding: 0.7em 0.5em;
}
table th {
  text-align: center;
  font-weight: normal;
}
table.table-typeC thead {
  background: #86B070;
}
table.table-typeC tbody {
  color: #333333;
}

.table-type1 {
  width: 100%;
}
.table-type1 caption {
  margin-bottom: 0.5em;
  text-align: center;
}
.table-type1 td,
.table-type1 th {
  border: 1px solid #0e2f23;
}
.table-type1 th {
  background: #0e2f23;
  color: #fff;
  text-align: left;
}
.table-type1 td {
  background: transparent;
}
.table-type1 tr:not(:last-child) td {
  border-bottom: 0;
}
.table-type1 tr:not(:first-child) th {
  border-bottom: 0;
  border-top: 1px solid #fff;
}

.table-type2 {
  width: 100%;
}
.table-type2 caption {
  margin-bottom: 0.5em;
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
}
.table-type2 td,
.table-type2 th {
  padding: 0.7em 1em;
  border-top: 1px solid #0e2f23;
  border-bottom: 1px solid #0e2f23;
}
@media (max-width: 767px) {
  .table-type2 td,
  .table-type2 th {
    padding: 0.7em 0.3em;
  }
}
.table-type2 tbody th {
  text-align: left;
}
.table-type2 td:last-child {
  text-align: right;
  white-space: nowrap;
}

.table-type3 {
  width: 100%;
}
.table-type3 td,
.table-type3 th {
  border: 1px solid #0e2f23;
  padding: 0.7em 1em;
  text-align: center;
}
@media (max-width: 767px) {
  .table-type3 td,
  .table-type3 th {
    padding: 0.7em 0.3em;
  }
}
@media (max-width: 400px) {
  .table-type3 td,
  .table-type3 th {
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.table-type3 thead th {
  background: #0e2f23;
  color: #fff;
}
.table-type3 thead th:not(:first-child) {
  border-left: 1px solid #fff;
}
.table-type3 tbody th {
  background: rgba(14, 47, 35, 0.15);
}
.table-type3 tbody th:not(:last-child) {
  border-right: 0;
}
.table-type3 tbody tr:not(:first-child) td,
.table-type3 tbody tr:not(:first-child) th {
  border-top: 0;
}
.table-type3 td {
  background: transparent;
}
.table-type3 td:not(:last-child) {
  border-right: 0;
}

.table-menu02 {
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}
.table-menu02 th,
.table-menu02 td {
  padding: 19px 40px;
}
@media (max-width: 767px) {
  .table-menu02 th,
  .table-menu02 td {
    padding: 16px 20px;
    display: block;
  }
}
@media (max-width: 767px) {
  .table-menu02 th:empty,
  .table-menu02 td:empty {
    display: none;
  }
}
.table-menu02 th {
  text-align: left;
  background: rgba(14, 47, 35, 0.1);
}
.table-menu02 th:nth-of-type(2) {
  background: rgba(14, 47, 35, 0.3);
}
.table-menu02 td {
  background: #fff;
  border-top: 1px solid rgba(51, 51, 51, 0.2);
}
@media (min-width: 768px) {
  .table-menu02 td {
    text-align: right;
  }
}
.table-menu02 thead th {
  background: rgba(14, 47, 35, 0.8);
  color: #fff;
}
.table-menu02 thead th:empty {
  background: rgba(14, 47, 35, 0.8);
}
.table-menu02 tbody tr:last-of-type {
  border-bottom: 1px solid rgba(51, 51, 51, 0.2);
}
.table-menu02 tbody th {
  border-top: 1px solid rgba(51, 51, 51, 0.2);
}
.table-menu02 tbody th:empty {
  border-top: none;
  background: rgba(14, 47, 35, 0.1);
}
.table-menu02 tbody th + th {
  border-top: 1px solid rgba(51, 51, 51, 0.2);
}

h1:not(.title):not(.hdr-ttl):not(.head_ttl) {
  font-size: 36px;
  font-size: 3.6rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
  line-height: 1.5;
  background: #665C52;
  margin: 0 0 0.5em 0;
  padding: 0.9em 4.5%;
  position: relative;
  color: #fff;
  font-family: "Kiwi Maru", serif;
}
@media (max-width: 767px) {
  h1:not(.title):not(.hdr-ttl):not(.head_ttl) {
    font-size: 28px;
    font-size: 2.8rem;
  }
}

h2 {
  font-size: 28px;
  font-size: 2.8rem;
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
  margin: 0 0 1em 0;
  position: relative;
  word-wrap: break-word;
  position: relative;
  padding-top: 1.0714285714em;
  padding-bottom: 0.5714285714em;
  line-height: 1.6428571429;
  text-align: center;
  z-index: 4;
  color: #333333;
  background: url(/wp-content/uploads/deco_001.png) no-repeat center top/0.9642857143em;
}
@media (max-width: 767px) {
  h2 {
    font-size: 24px;
    font-size: 2.4rem;
  }
}
h2:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 40px;
  height: 2px;
  background: #333333;
}

h3 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin: 0 0 0.5em 0;
  padding-left: 16px;
  position: relative;
  word-wrap: break-word;
  line-height: 1.5;
  color: #86B070;
}
@media (max-width: 767px) {
  h3 {
    font-size: 20px;
    font-size: 2rem;
  }
}
h3::before {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: calc(100% - 0.6em);
  top: 0;
  left: 0;
  bottom: 0;
  background: #86B070;
  margin: auto;
}

h4 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  margin: 0 0 0.4em 0;
  padding-left: 12px;
  color: #86B070;
  position: relative;
  word-wrap: break-word;
}
@media (max-width: 767px) {
  h4 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
@media (max-width: 767px) {
  h4 {
    font-size: 16px;
    font-size: 1.6rem;
  }
}
h4::before {
  content: "";
  display: block;
  position: absolute;
  width: 4px;
  height: 2px;
  left: 0;
  top: 0.8em;
  background: #86B070;
}

[href^=tel] {
  text-decoration: none !important;
  display: inline-block;
}
@media (min-width: 767px) {
  [href^=tel] {
    pointer-events: none !important;
  }
}

.mb0 {
  margin-bottom: 0 !important;
}

[id^=top-] {
  margin-bottom: 120px;
  margin-bottom: 12rem;
}
@media (max-width: 767px) {
  [id^=top-] {
    margin-bottom: 80px;
    margin-bottom: 8rem;
  }
}
[id^=top-] .container {
  max-width: calc(1200px + 12%);
  padding: 0 6%;
}
[id^=top-] h2 {
  margin-bottom: 45px;
  margin-bottom: 4.5rem;
}
@media (max-width: 767px) {
  [id^=top-] h2 {
    margin-bottom: 30px;
    margin-bottom: 3rem;
  }
}
[id^=top-] h2.reverse_h2 {
  color: #fff;
  background-image: url(/wp-content/uploads/deco_002.png);
}
[id^=top-] h2.reverse_h2::before {
  background: #fff;
}
[id^=top-] h2 .color_gold {
  color: #B59A4D;
}
[id^=top-] p:not(.more):not(.tel):not(.fax):not(.table-info p) {
  line-height: 1.875;
  letter-spacing: 0.02em;
}
@media (max-width: 767px) {
  [id^=top-] p:not(.more):not(.tel):not(.fax):not(.table-info p) {
    letter-spacing: 0.02em;
  }
}
[id^=top-] h3 {
  color: #333333;
}
[id^=top-] figure img {
  display: block;
}

@media (min-width: 768px) {
  .btn.pc-left a {
    margin-left: 0;
  }
}

#top-news {
  padding: 100px 0;
  background: url(/wp-content/uploads/top_bg001.jpg) no-repeat center center/cover;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  #top-news {
    padding: 60px 0;
  }
}
@media (min-width: 768px) {
  #top-news .news-box-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
}
#top-news h2 {
  color: #154734;
}
@media (min-width: 768px) {
  #top-news .ttl {
    width: 18.3333333333%;
    min-width: 160px;
    padding-right: 4%;
  }
}
#top-news .ttl h3 {
  padding: 0;
}
@media (min-width: 768px) {
  #top-news .ttl h3 {
    margin: 0;
  }
}
@media (max-width: 767px) {
  #top-news .ttl h3 {
    text-align: center;
  }
}
#top-news .ttl h3:after, #top-news .ttl h3:before {
  content: none;
}
@media (min-width: 768px) {
  #top-news .news-box {
    width: 98.3333333333%;
  }
}
#top-news .news-list {
  margin: 0;
}
@media (min-width: 768px) {
  #top-news .news-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
#top-news .news-list dt,
#top-news .news-list dd {
  margin-left: 0;
  margin-right: 0;
  padding: 1em 0;
  border-bottom: 1px solid rgba(51, 51, 51, 0.15);
}
#top-news .news-list dt:first-of-type,
#top-news .news-list dd:first-of-type {
  border-top: 1px solid rgba(51, 51, 51, 0.15);
}
@media (max-width: 767px) {
  #top-news .news-list dt,
  #top-news .news-list dd {
    padding-left: 0.3em;
    padding-right: 0.3em;
  }
}
@media (min-width: 768px) {
  #top-news .news-list dt {
    width: 160px;
    padding-left: 1em;
    padding-right: 3em;
  }
}
@media (max-width: 767px) {
  #top-news .news-list dt {
    padding-bottom: 0;
    border-bottom: 0;
  }
}
@media (min-width: 768px) {
  #top-news .news-list dd {
    width: calc(100% - 160px);
    padding-right: 1em;
  }
}
@media (max-width: 767px) {
  #top-news .news-list dd {
    padding-top: 0.5em;
  }
  #top-news .news-list dd:first-of-type {
    border-top: 0;
  }
}
#top-news .news-list a {
  text-decoration: none;
}
#top-news .news-list a:hover {
  text-decoration: underline;
}

#top-about {
  padding-top: 120px;
  position: relative;
}
@media (min-width: 768px) {
  #top-about {
    margin-bottom: 100px;
  }
}
@media (max-width: 767px) {
  #top-about {
    padding-top: 80px;
  }
}
#top-about::before {
  content: "";
  display: block;
  width: 20.4166666667vw;
  height: 18.4375vw;
  background: url(/wp-content/uploads/deco_006.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: auto;
}
@media (max-width: 767px) {
  #top-about::before {
    width: 28.6969253294vw;
    height: 25.9150805271vw;
  }
}
#top-about::after {
  content: "";
  display: block;
  width: 20.4166666667vw;
  height: 18.4375vw;
  background: url(/wp-content/uploads/deco_007.png) no-repeat center/contain;
  position: absolute;
  top: 0;
  bottom: auto;
  left: auto;
  right: 0;
}
@media (max-width: 767px) {
  #top-about::after {
    width: 28.6969253294vw;
    height: 25.9150805271vw;
  }
}
@media (max-width: 767px) {
  #top-about .box {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media (min-width: 768px) {
  #top-about .text {
    text-align: center;
  }
}
@media (max-width: 767px) {
  #top-about .text {
    margin-top: 30px;
  }
}
#top-about .img {
  margin-top: 50px;
  overflow: hidden;
}
@media (max-width: 767px) {
  #top-about .img {
    margin-top: 0;
  }
}
#top-about .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1200/400;
}
@media (max-width: 767px) {
  #top-about .img img {
    aspect-ratio: 800/533;
  }
}
#top-about .btn {
  margin-top: 40px;
}
@media (max-width: 767px) {
  #top-about .btn {
    margin-top: 30px;
  }
}

#top-service {
  padding-top: 90px;
  position: relative;
  z-index: 0;
}
@media (max-width: 767px) {
  #top-service {
    padding-top: 60px;
  }
}
#top-service::before {
  content: "";
  display: block;
  width: 100%;
  height: 365px;
  background: #665C52;
  position: absolute;
  top: 0;
  bottom: auto;
  left: 0;
  right: 0;
  z-index: -1;
}
#top-service .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 40px 2.0833333333vw;
}
#top-service .box > * {
  width: calc((100% - 2.0833333333vw * 2) / 3 - 1px);
}
@media (max-width: 767px) {
  #top-service .box > * {
    width: 100%;
  }
}
#top-service .card-item {
  padding: 5px;
  background: #fff;
  -webkit-filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
          filter: drop-shadow(0px 0px 10px rgba(0, 0, 0, 0.1));
}
#top-service .card-item.no1 .img::before {
  background: url(/wp-content/uploads/deco_003.jpg) no-repeat center center/cover;
}
#top-service .card-item.no1 .card-h3::first-letter {
  color: #C97A2B;
}
#top-service .card-item.no2 .img::before {
  background: url(/wp-content/uploads/deco_004.jpg) no-repeat center center/cover;
}
#top-service .card-item.no2 .card-h3::first-letter {
  color: #BF545E;
}
#top-service .card-item.no3 .img::before {
  background: url(/wp-content/uploads/deco_005.jpg) no-repeat center center/cover;
}
#top-service .card-item.no3 .card-h3::first-letter {
  color: #B59A4D;
}
#top-service .img {
  position: relative;
}
#top-service .img::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  background: url(/wp-content/uploads/deco_003.jpg) no-repeat center/contain;
  position: absolute;
  top: auto;
  bottom: 10px;
  left: auto;
  right: 10px;
}
@media (max-width: 1023px) {
  #top-service .img::before {
    width: 30px;
    height: 30px;
  }
}
#top-service .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 364/240;
}
#top-service .text {
  padding: 32px 1.5625vw;
}
@media (max-width: 767px) {
  #top-service .text {
    padding: 30px 4%;
  }
}
#top-service .card-h3 {
  padding-left: 0;
  font-size: 24px;
  color: #333333;
  text-align: center;
  margin-bottom: 0.75em;
  font-weight: 600;
}
@media (max-width: 1023px) {
  #top-service .card-h3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  #top-service .card-h3 {
    font-size: 18px;
    text-align: left;
  }
}
#top-service .card-h3::before {
  content: none;
}
#top-service .btn {
  margin-top: 40px;
}
@media (max-width: 767px) {
  #top-service .btn {
    margin-top: 30px;
  }
}

#top-message {
  background: url(/wp-content/uploads/top_bg002.jpg) no-repeat center center/cover;
  padding: 120px 0;
}
@media (max-width: 767px) {
  #top-message {
    padding: 60px 0;
  }
}
@media (min-width: 768px) {
  #top-message .box {
    display: grid;
    gap: 10px 3.3333333333%;
    grid-template: "text img"/50% 46.6666666667%;
  }
  #top-message .box.reverse {
    grid-template: "img text"/46.6666666667% 50%;
  }
  #top-message .box.reverse .img {
    justify-self: end;
  }
}
#top-message .img {
  grid-area: img;
  justify-self: start;
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  #top-message .img {
    margin-bottom: 26px;
  }
}
#top-message .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (max-width: 767px) {
  #top-message .img img {
    position: static;
  }
}
#top-message .text-box {
  grid-area: text;
  padding: 60px 0;
}
@media (max-width: 767px) {
  #top-message .text-box {
    padding: 0;
  }
}
#top-message .name {
  font-weight: normal;
  padding: 0;
  line-height: 1.3333333333;
  letter-spacing: 0.02em;
  margin-bottom: 26px;
  background: #154734;
  display: table;
  color: #fff;
  padding: 5px 10px;
}
@media (max-width: 767px) {
  #top-message .name {
    margin-bottom: 18px;
    text-align: center;
  }
}
#top-message .name .name_small {
  font-size: 20px;
  display: inline-block;
  margin-right: 0.95em;
}
#top-message .name:before, #top-message .name:after {
  content: none;
}
#top-message p:not(.btn) {
  line-height: 1.875;
  letter-spacing: 0.05em;
}
#top-message .btn {
  margin-top: 40px;
}
@media (max-width: 767px) {
  #top-message .btn {
    margin-top: 30px;
  }
}

/* ===============================================
# 下層
=============================================== */
body:not(.home) figure img {
  display: block;
  margin: auto;
}
body:not(.home) .highlight {
  background: rgba(134, 176, 112, 0.1);
  padding: 4%;
}
@media (max-width: 767px) {
  body:not(.home) .highlight {
    padding: 20px 4%;
  }
}
body:not(.home) .text-large {
  font-size: 20px;
}
@media (max-width: 767px) {
  body:not(.home) .text-large {
    font-size: 18px;
  }
}
body:not(.home) .bold {
  font-weight: bold;
}
body:not(.home) .mt20 {
  margin-top: 20px !important;
}
body:not(.home) .list_step .list_step_item {
  position: relative;
  padding-bottom: 38px;
}
body:not(.home) .list_step .list_step_item::before {
  content: "";
  width: 1px;
  background: #86B070;
  display: block;
  position: absolute;
  top: 68px;
  left: 30px;
  bottom: 4px;
}
@media (max-width: 767px) {
  body:not(.home) .list_step .list_step_item::before {
    top: 54px;
    left: 23px;
    bottom: 4px;
  }
}
body:not(.home) .list_step .list_step_item:last-of-type {
  padding-bottom: 0;
}
body:not(.home) .list_step .list_step_item:last-of-type::before {
  content: none;
}
body:not(.home) .list_step .list_step_num {
  background: #86B070;
  color: #ffffff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  padding: 10px 0;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1.2;
  font-size: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767px) {
  body:not(.home) .list_step .list_step_num {
    width: 50px;
    height: 50px;
  }
}
body:not(.home) .list_step .list_step_num span {
  display: block;
  font-size: 26px;
  line-height: 1;
}
@media (max-width: 767px) {
  body:not(.home) .list_step .list_step_num span {
    font-size: 16px;
  }
}
body:not(.home) .list_step .list_step_itm_main {
  padding-left: 86px;
  position: relative;
  padding-top: 8px;
}
@media (max-width: 767px) {
  body:not(.home) .list_step .list_step_itm_main {
    padding-left: 62px;
    padding-top: 11px;
  }
}
body:not(.home) .list_step .list_step_itm_main h4 {
  color: #333333;
  padding-left: 0;
  margin-bottom: 10px;
  font-size: 22px;
}
@media (max-width: 767px) {
  body:not(.home) .list_step .list_step_itm_main h4 {
    font-size: 18px;
  }
}
body:not(.home) .list_step .list_step_itm_main h4:before {
  content: none;
}
body:not(.home) .list_step .list_step_itm_main h4 .point {
  font-size: 14px;
  background: #BF545E;
  color: #fff;
  display: inline-block;
  padding: 0.5em 0.5em 0.5em;
  border-radius: 10px;
  position: relative;
  margin-left: 22px;
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  font-family: "Noto Sans JP", "Yu Gothic Medium", YuGothic, "-apple-system", BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
@media (max-width: 767px) {
  body:not(.home) .list_step .list_step_itm_main h4 .point {
    font-size: 12px;
  }
}
body:not(.home) .list_step .list_step_itm_main h4 .point::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-right: 10px solid #bf545e;
  border-left: 0;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: auto;
  right: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 767px) {
  body:not(.home) .under_btn .col:not(:last-child) {
    margin-bottom: 16px;
  }
}

/* ===============================================
# お問い合わせフォーム  
=============================================== */
.inquiry fieldset {
  margin: 0;
  padding: 20px 10px;
  border: 0;
  background: rgba(134, 176, 112, 0.1);
}
.inquiry fieldset .row {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .inquiry fieldset .row {
    margin-bottom: 40px;
  }
}
.inquiry dl {
  margin: 0;
  padding: 0;
}
.inquiry dt {
  font-weight: bold;
}
.inquiry dt.col:not(:last-child) {
  margin-bottom: 1em;
}
.inquiry dt p {
  position: relative;
}
.inquiry dd {
  margin: 0;
  padding: 0;
}
.inquiry dd:last-child {
  padding-bottom: 0;
}
.inquiry dd p {
  padding-top: 0.5rem;
}
.inquiry dd .confirm {
  padding: 0 0 1em 1em;
  border-bottom: 1px dashed #ccc;
}
.inquiry input[type=text],
.inquiry input[type=url],
.inquiry input[type=email],
.inquiry input[type=tel],
.inquiry input[type=date],
.inquiry input[type=number],
.inquiry select,
.inquiry textarea {
  width: 100%;
  padding: 15px 20px;
  color: #000;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: Arial, "Noto Sans JP", "Yu Gothic Medium", YuGothic, "-apple-system", BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
.inquiry input[type=file] {
  border: 0;
  display: inline-block;
  margin-bottom: 16px;
}
@media (max-width: 767px) {
  .inquiry input[type=file] {
    margin-bottom: 10px;
  }
}
.inquiry input[type=number] {
  width: 65px;
  text-align: center;
}
.inquiry input[type=file] {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.inquiry input.p-postal-code {
  width: 100px;
}
.inquiry input.p-region {
  width: 100px;
}
.inquiry input.p-locality {
  width: 150px;
}
.inquiry input.p-street-address {
  width: 100%;
}
.inquiry input.p-extended-address {
  width: 100%;
}
.inquiry .submit {
  display: block;
  overflow: hidden;
  margin: 1em auto;
  text-align: center;
}
.inquiry .submit .button,
.inquiry .submit .wpcf7-submit {
  display: block;
  margin: 0 auto 10px;
  padding: 1em 1em;
  border-radius: 0;
  max-width: 280px;
  width: 100%;
  text-align: center;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-family: Arial, "Noto Sans JP", "Yu Gothic Medium", YuGothic, "-apple-system", BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  border: 1px solid #86B070;
  color: #fff;
  background: #86B070;
}
.inquiry .submit .button:hover,
.inquiry .submit .wpcf7-submit:hover {
  border: 1px solid #86B070;
  color: #86B070;
  background: #fff;
}
.inquiry .submit .wpcf7-spinner {
  display: block;
  margin: 0 auto;
}
.inquiry .required {
  color: #fff;
  background-color: #86B070;
  padding: 1px 6px;
  font-size: 12px;
  margin-top: 0.3rem;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
}
.inquiry label {
  display: block;
  margin-bottom: 0.5em;
}
.cont_txt {
  line-height: 1.5;
}

@media (min-width: 768px) {
  .inquiry {
    max-width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
  .inquiry fieldset {
    margin: 0;
    padding: 60px;
    border: 0;
  }
  .inquiry dt {
    clear: both;
    padding-top: 25px;
  }
  .inquiry dd {
    padding: 15px 0;
  }
  .inquiry dd .confirm {
    min-height: 1.5em;
    padding: 6px 0 0;
    border: 0;
    line-height: 1.4;
  }
  .inquiry input,
  .inquiry textarea {
    border: solid 1px #ccc;
  }
  .inquiry select {
    border: 1px solid #ccc;
  }
  .inquiry input[type=text],
  .inquiry input[type=url],
  .inquiry input[type=email],
  .inquiry input[type=tel],
  .inquiry input[type=date],
  .inquiry input[type=text],
  .inquiry select {
    width: 60%;
  }
  .inquiry input[type=number] {
    width: 65px;
  }
  .inquiry input.p-postal-code {
    width: 100px;
  }
  .inquiry input.p-region {
    width: 100px;
  }
  .inquiry input.p-locality {
    width: 150px;
  }
  .inquiry input.p-street-address {
    width: 100%;
  }
  .inquiry input.p-extended-address {
    width: 100%;
  }
  .inquiry textarea {
    width: 100%;
  }
  .inquiry .submit {
    margin: 20px 0 0;
  }
  .inquiry label {
    display: inline-block;
    margin-top: 6px;
    margin-bottom: 0;
    margin-right: 0.8em;
  }
  .gutters .inquiry dt.col {
    margin-left: 0;
  }
}
input.wide_area,
select.wide_area {
  width: 100% !important;
}

/* ===============================================
# アニメーション
=============================================== */
.mv .mv-copy li:nth-of-type(1) img {
  opacity: 0;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transform: translateY(-1%);
          transform: translateY(-1%);
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
  -webkit-transition-timing-function: ease-in-out;
          transition-timing-function: ease-in-out;
}
.mv .mv-copy li:nth-of-type(1) img.animated {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* ===============================================
# 20240826
=============================================== */
.btn.line a {
  background: #fff;
  padding: 1.3em 0.5em;
  font-size: clamp(16px, 1.317715959vw, 18px);
  font-weight: 500;
}
.btn.line a:before {
  content: none;
}
.btn.line a .icon {
  padding-left: 34px;
  padding-right: 20px;
  padding-top: 6px;
  padding-bottom: 6px;
  background: url(/wp-content/uploads/line_icon_b.svg) no-repeat left center/24px;
}
.btn.line a:hover {
  background: #154734;
}
.btn.line a:hover:before {
  content: none;
}
.btn.line a:hover .icon {
  background-image: url(/wp-content/uploads/line_icon.svg);
}
.btn.contact a {
  background: #fff;
  padding: 1.3em 0.5em;
  font-size: clamp(16px, 1.317715959vw, 18px);
  font-weight: 500;
}
.btn.contact a:before {
  content: none;
}
.btn.contact a .icon {
  padding-left: 34px;
  padding-right: 20px;
  padding-top: 6px;
  padding-bottom: 6px;
  background: url(/wp-content/uploads/mail_icon_b.svg) no-repeat left center/24px;
}
.btn.contact a:hover {
  background: #154734;
}
.btn.contact a:hover:before {
  content: none;
}
.btn.contact a:hover .icon {
  background-image: url(/wp-content/uploads/mail_icon.svg);
}

.home .under_contact {
  display: none;
}

#top-contact {
  background: url(/wp-content/uploads/top_bg003.jpg) no-repeat center center/cover;
  position: relative;
  padding: 56px 0 63px;
  z-index: 0;
}
@media (max-width: 767px) {
  #top-contact {
    padding: 40px 0;
  }
}
#top-contact::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(51, 114, 97, 0.9);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}
#top-contact h2 {
  margin-bottom: 26px;
}
#top-contact .p_box p {
  color: #fff;
  text-align: center;
}
#top-contact .tel_box {
  margin-top: 24px;
}
#top-contact .tel_box .tel a {
  color: #fff;
  font-size: 32px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  background: url(/wp-content/uploads/tel_icon_b.svg) no-repeat left center/0.5625em;
  padding-left: 1em;
  margin: auto;
  display: table;
}
@media (max-width: 767px) {
  #top-contact .tel_box .tel a {
    font-size: 26px;
  }
}
#top-contact .btns {
  margin: 34px auto 0;
  max-width: 804px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px 2.96875vw;
}
#top-contact .btns > * {
  width: calc((100% - 2.96875vw * 1) / 2 - 1px);
}
@media (max-width: 767px) {
  #top-contact .btns > * {
    width: 100%;
  }
}

/* ===============================================
# フッター追尾
=============================================== */
#ftr_info {
  z-index: 101;
  width: 100%;
  display: none;
  left: 0;
}
#ftr_info .container {
  padding: 0;
  margin: 0;
}
#ftr_info .pc {
  background: rgba(51, 51, 51, 0.8);
}
@media (max-width: 1023px) {
  #ftr_info .pc {
    display: none;
  }
}
#ftr_info .pc .box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 2.0833333333vw;
  padding: 10px 6%;
  max-width: calc(1200px + 12%);
  margin: auto;
}
#ftr_info .pc .box > * {
  width: calc((100% - 2.0833333333vw * 2) / 3 - 1px);
}
#ftr_info .pc .btn a {
  padding: 0.8em 1em;
  color: #fff;
  background: #86B070;
  font-size: 16px;
  font-weight: normal;
  border: solid 1px #fff;
}
#ftr_info .pc .btn a::before {
  content: none;
}
#ftr_info .pc .btn a span.icon {
  padding-left: 34px;
  padding-right: 20px;
  padding-top: 6px;
  padding-bottom: 6px;
}
#ftr_info .pc .btn.line a {
  background: #86B070;
}
#ftr_info .pc .btn.line a:hover {
  background: #75a55c;
}
#ftr_info .pc .btn.line span.icon {
  background: url(/wp-content/uploads/line_icon.svg) no-repeat left center/22px;
}
#ftr_info .pc .btn.contact a {
  background: #337261;
}
#ftr_info .pc .btn.contact a:hover {
  background: #2a5d4f;
}
#ftr_info .pc .btn.contact span.icon {
  background: url(/wp-content/uploads/mail_icon.svg) no-repeat left center/22px;
}
#ftr_info .pc .btn.tel a {
  background: #B59A4D;
}
#ftr_info .pc .btn.tel a:hover {
  background: #a18843;
}
#ftr_info .pc .btn.tel span.icon {
  padding-left: 24px;
  background: url(/wp-content/uploads/tel_icon_b.svg) no-repeat left center/14px;
}
#ftr_info .sp {
  display: none;
  border-top: solid 1px rgba(255, 255, 255, 0.5);
  border-bottom: solid 1px rgba(255, 255, 255, 0.5);
  background: #fff;
}
@media (max-width: 1023px) {
  #ftr_info .sp {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
#ftr_info .sp > * {
  width: 100%;
}
#ftr_info .sp > *:not(:last-child) {
  position: relative;
}
#ftr_info .sp > *:not(:last-child):before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  top: 0;
  left: auto;
  right: 0;
  bottom: 0;
  margin: auto;
  background: rgba(255, 255, 255, 0.4);
  width: 1px;
}
#ftr_info .sp .ftr_btn {
  padding: 6px 0 2px;
  background: #65AF50;
}
#ftr_info .sp .ftr_btn.btn_no02 {
  background: #337261;
}
#ftr_info .sp .ftr_btn.btn_no03 {
  background: #B59A4D;
}
#ftr_info .sp .ttl {
  text-align: center;
  margin-top: 2px;
}
#ftr_info .sp .icon {
  max-width: 20px;
  margin: auto;
}
#ftr_info .sp .icon.tel {
  max-width: 14px;
}
#ftr_info .sp .icon img {
  width: 100%;
}
#ftr_info .sp a {
  text-decoration: none;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 12px;
  padding: 2px 10px;
  display: grid;
  font-weight: bold;
}

#top-inst .btn {
  margin-top: 30px;
}
@media (max-width: 767px) {
  #top-inst .btn {
    margin-top: 10px;
  }
}

@media (min-width: 768px) {
  .pc-text-right {
    text-align: right;
  }
}

@media (min-width: 768px) {
  .pc-text-center {
    text-align: center;
  }
}

.mt10 {
  margin-top: 10px !important;
}

#top-contact .pay_txt {
  color: #fff;
  margin-top: 20px;
  line-height: 1.5;
}

.u_pay_txt {
  color: #BF545E;
  line-height: 1.5;
  font-weight: 500;
}
.u_pay_txt .text_black {
  color: rgba(51, 51, 51, 0.7);
}

.title {
  position: relative;
}

.head_ttl {
  font-size: 12px;
  position: absolute;
  top: 11px;
  left: 0;
  white-space: nowrap;
  margin: 0;
  font-weight: 500;
  line-height: 1.5;
}
@media (max-width: 1189px) {
  .head_ttl {
    font-weight: normal;
    font-size: 11px;
  }
}
@media (max-width: 767px) {
  .head_ttl {
    font-size: 10px;
  }
}/*# sourceMappingURL=main.css.map */