@charset "UTF-8";
/** 汎用 *****/
body {
  background: #fff;
  color: #000000;
}
a {
  color: #bdd643;
}
/**/
.mce-content-body {
  line-height: 2;
  letter-spacing: 0.085em;
  overflow: hidden;
}
.mce-content-body p {
  margin-bottom: 1.5em;
  margin-top: 0;
}
.dib {
  display: inline-block;
}
.dibpd {
  padding-left: 0.5em;
  padding-right: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .pcdb {
    display: block;
  }
}
/** header *****/
.header {
  padding: 20px 0;
}
.header_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.header-nav a {
  color: #000000; /* ここを黒に変更 */
  line-height: 1.35;
  display: block;
  text-decoration: none;
  padding: 8px 8px;
  margin: 0;
  position: relative;
}
.header-nav .menu-item-description {
  color: #508030;
  line-height: 1.35;
  font-size: 70%;
}
@media print, screen and (min-width: 880px) {
  .header_logo_wrap {
    max-width: 26.5%;
  }
  .header_logo {
    line-height: 1.1;
  }
  .header-nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 1.5rem;
  }
  .menu-item-description {
    display: block;
  }
  .header-nav a {
    text-align: center;
  }
  .header-nav>.menu-item {
    margin: 0 0 0 10px;
    position: relative;
  }
  .header-nav>.menu-item>a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    height: 2px;
    width: 0;
    background: #fff;
    transition: .2s;
  }
  .header-nav>.menu-item.active>a,
  .header-nav>.menu-item>a:hover {
    color: #bdd643;
  }
  .header-nav>.menu-item.active>a::after,
  .header-nav>.menu-item>a:hover::after {
    left: 0;
    width: 100%;
    background: #bdd643;
  }
  /**/
  .header-nav>.menu-item>.sub-menu {
    opacity: 0;
    height: 0;
    font-size: 1.4rem;
    overflow: hidden;
    position: absolute;
    width: 200px;
    left: 0;
    top: 90%;
    transition: .3s;
  }
  .header-nav>.menu-item:last-child>.sub-menu {
    left: auto;
    margin-left: 0;
    right: 0;
  }
  .header-nav>.menu-item.active>.sub-menu {
    opacity: 1;
    top: 100%;
    height: auto;
    z-index: 4;
  }
  .header-nav>.menu-item>.sub-menu a {
    position: relative;
    padding: 15px 10px;
    background: #bdd643;
    color: #fff;
  }
  .header-nav>.menu-item>.sub-menu a:hover {
    background: #bdd643;
  }
  .header-nav>.menu-item>.sub-menu>li:not(:last-child)>a::after {
    position: absolute;
    content: "";
    left: 10px;
    bottom: 0;
    width: 90%;
    width: calc(100% - 20px);
    height: 1px;
    background: #fff;
  }
  /**/
  .menu_toggle {
    display: none !important;
  }
}
@media only screen and (max-width: 879px) {
  .header,
  .header_logo_wrap {
    padding : 0;
    height: 70px;
  }
  .header_logo_wrap {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 2;
    box-sizing: border-box;
    padding: calc(20 / 879 * 100vw);
  }
  .header_logo {
    max-width: 60%;
    /*max-width: calc(100% - 70px);*/
    line-height: 1;
  }
  .menu_toggle {
    position: relative;
    width: 44px;
    height: 34px;
    cursor: pointer;
  }
  .menu_toggle span {
    position: absolute;
    left: 5%;
    width: 90%;
    height: 4px;
    background-color: #bdd643;
    border-radius: 4px;
  }
  .menu_toggle,
  .menu_toggle span {
    box-sizing: border-box;
    display: inline-block;
    transition: all .5s;
  }
  .menu_toggle span:nth-of-type(1) {
    top: 0;
  }
  .menu_toggle span:nth-of-type(2) {
    top: 15px;
  }
  .menu_toggle span:nth-of-type(3) {
    bottom: 0;
  }
  .menu_toggle.active span:nth-of-type(1) {
    -webkit-transform: translateY(15px) rotate(-45deg);
    transform: translateY(15px) rotate(-45deg);
  }
  .menu_toggle.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu_toggle.active span:nth-of-type(3) {
    -webkit-transform: translateY(-15px) rotate(45deg);
    transform: translateY(-15px) rotate(45deg);
  }
  #btn01.active span:nth-of-type(1) {
    -webkit-transform: translateY(20px) rotate(-45deg);
    transform: translateY(20px) rotate(-45deg);
  }
  #btn01.active span:nth-of-type(2) {
    opacity: 0;
  }
  #btn01.active span:nth-of-type(3) {
    -webkit-transform: translateY(-20px) rotate(45deg);
    transform: translateY(-20px) rotate(45deg);
  }
  .menu-header-nav-container {
    background: #fff;
    font-size: 125%;
    height: 100%;
    overflow-x: scroll;
    padding-top: 80px;
    position: fixed;
    right: 0;
    top: 0;
    transition: .3s;
    transform: translate(100%);
    width: 100%;
    z-index: 1;
  }
  .header-nav a {
    padding: 18px 8px;
  }
  .header-nav .menu-item-description {
    margin-left: 5px;
  }
  .menu-header-nav-container li {
    border-bottom: 1px solid #ccc;
  }
  .menu-header-nav-container.active {
    transform: translate(0);
  }
  /**/
  .header-nav .sub-menu {
    display: none;
    font-size: 85%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .header-nav .sub-menu li {
    border-bottom: none;
    border-top: 1px dotted #ccc;
  }
  .header-nav .menu-item-has-children>a {
    position: relative;
    padding-right: 20px;
  }
  .header-nav .menu-item-has-children>a::before,
  .header-nav .menu-item-has-children>a::after {
    position: absolute;
    content: "";
    width: 3px;
    height: 16px;
    background: #bdd643;
    border-radius: 2px;
    top: 50%;
    right: 10px;
    margin-top: -10px;
    transition: .3s;
  }
  .header-nav .menu-item-has-children>a::after {
    transform: rotate(90deg);
  }
  .header-nav .menu-item-has-children.open>a::before {
    transform: rotate(90deg);
  }
}
/** contact *****/
.section_contact {
  background: #508030;
  color: #fff;
  text-align: center;
  padding: 60px 0;
}
.section_contact .contact_title {
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  line-height: 1.35;
  letter-spacing: 0.085em;
}
.section_contact .contact_tel .tel {
  line-height: 1.2;
}
.section_contact .contact_tel .material-icons {
  font-size: 30px;
  margin-right: 6px;
  vertical-align: sub;
}
.section_contact .contact_tel .contact_telnumber {
  font-size: 34px;
}
.section_contact .contact_tel a {
  color: #fff;
  text-decoration: none;
  font-family: Arial, "Helvetica Neue", sans-serif;
  font-weight: bold;
}
.section_contact .contact_tel .subtxt {
  font-size: 15px;
}
.section_contact .contact_mail .btn {
  border: 3px solid #fff;
  background: none;
  border-radius: 0;
  color: #fff;
  display: block;
  font-weight: bold;
  font-size: 17px;
  line-height: 68px;
  text-decoration: none;
}
.section_contact .contact_mail .btn::after {
  display: none;
}
.section_contact .contact_mail .btn:hover {
  color: #bdd643;
  background: #fff;
  opacity: 1;
}
.section_contact .contact_mail .btn .material-icons {
  font-size: 30px;
  font-weight: normal;
  vertical-align: middle;
  margin-right: 15px;
}
@media print, screen and (min-width: 768px) {
  .section_contact .section_contactinner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .section_contact .contact_title {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 26%;
    flex: 1 1 26%;
    margin-right: 1%;
  }
  .section_contact .contact_tel {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 37%;
    flex: 1 1 37%;
  }
  .section_contact .contact_mail {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 36%;
    flex: 1 1 36%;
  }
}
@media print, screen and (min-width: 768px) and (max-width: 879px) {
  .section_contact .section_contactinner {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .section_contact .contact_title {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
  }
  .section_contact .contact_tel {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
  }
  .section_contact .contact_mail {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
  }
}
@media only screen and (max-width: 879px) {
  .section_contact .contact_title {
    text-align: center;
    width: 100%;
    margin-right: 0%;
    padding-bottom: 15px;
    margin-bottom: 25px;
    position: relative;
  }
  .section_contact .contact_title::before {
    position: absolute;
    content: "";
    width: 26px;
    margin-left: -13px;
    background: #fff;
    left: 50%;
    bottom: 0;
    height: 2px;
  }
}
@media print, screen and (min-width: 880px) {
  .section_contact .contact_tel {
    border-left: 1px solid #fff;
  }
}
@media only screen and (max-width: 767px) {
  .section_contact {
    padding: 40px 0;
  }
  .section_contact .contact_title {
    text-align: center;
    margin-bottom: 15px;
  }
  .section_contact .contact_tel {
    margin-bottom: 15px;
  }
}
/** footer *****/
.footer {
  text-align: center;
  font-size: 15px;
}
.footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 15px;
  line-height: 1.3;
  margin-top: 50px;
  margin-bottom: 50px;
}
.footer-nav li {
  margin: 4px 10px;
}
.footer-nav a {
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid #fff;
}
.footer-nav a::before {
  content: "play_arrow";
  font-family: "Material Icons";
  font-size: 14px;
  color: #508030;
  vertical-align: middle;
  margin-right: 4px;
}
.footer-nav a:hover {
  color: #bdd643;
  border-bottom: 1px solid #bdd643;
}
.footer .footer_logo {
  margin-bottom: 40px;
}
.footer .footer_access {
  margin-bottom: 50px;
}
.copyright {
  background: #f3f3f3;
  font-size: 14px;
  padding: 20px 0;
}
@media print, screen and (min-width: 768px) {
  .footer .googlemap {
    padding-bottom: 400px;
  }
}
@media only screen and (max-width: 767px) {
  .footer-nav {
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .footer .footer_logo {
    margin-bottom: 25px;
  }
  .footer .footer_access {
    margin-bottom: 30px;
  }
  .footer .googlemap {
    padding-bottom: 68%;
  }
}
/** totop ******/
#totop {
  display: none;
}
.totopinner {
  position: fixed;
  bottom: 5px;
  right: 5px;
  width: 100px;
  height: 100px;
  border-radius: 50px;
  background: #508030;
  display: block;
  text-align: center;
  transition: .3s;
}
.totopinner:hover {
  cursor: pointer;
  opacity: .7;
}
.totopinner .material-icons {
  line-height: 100px;
  font-size: 40px;
  color: #fff;
}
@media only screen and (max-width: 767px) {
  .totopinner {
    width: 50px;
    height: 50px;
    border-radius: 25px;
  }
  .totopinner .material-icons {
    line-height: 50px;
  }
}
/** mainimage *****/
.mainimage {
  margin-inline: auto;
  position: relative;
}
.mainimage_item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation-iteration-count: infinite;
  animation-duration: 18s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.mainimage_catchcopy {
  /*position: absolute;*/
  position: relative;
  max-width: 90%;
  text-align: center;
  color: #fff;
  font-size: 32px;
  letter-spacing: 0.2em;
  width: 640px;
  height: 180px;
  border: 1px solid #fff;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  line-height: calc(68 / 45);
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .mainimage {
    width: 100%;
    height: 0;
    padding-bottom: 67.18%;
    background-image: url(../img/top/mainslider01.jpg);
    background-position: center;
  }
  .mainimage img {
    display: none;
  }
  .mainslide .mainimage_catchcopy {
    position: absolute;
  }
}
@media print, screen and (min-width: 1280px) {
  .mainimage {
    width: 100%;
    height: 860px;
    padding-bottom: 0;
  }
  .mainimage_catchcopy {
    font-size: 45px;
    width: 840px;
    height: 222px;
    }
}
@media only screen and (max-width: 767px) {
  .mainimage {
    height: 0;
    padding-bottom: 115%;
  }
  .mainimage img {
    width: 100%;
  }
  .mainimage_item>picture {
    position: absolute;
    top: 0;
    left: 0
  }
  .mainimage_catchcopy {
    font-size: calc(36 / 767 * 100vw);
    width: calc(665 / 767 * 100vw);
    height: calc(166 / 767 * 100vw);
    }
}
/** mainslide *****/
.mainslide {
  margin-inline: auto;
  position: relative;
}
.mainslide_item {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  animation-iteration-count: infinite;
  animation-duration: 18s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.mainslide_item01 {
  animation-name: slider;
  animation-delay: -3s;
}
.mainslide_item02 {
  animation-name: slider;
  animation-delay: 3s;
  opacity: 0;
}
.mainslide_item03 {
  animation-name: slider;
  animation-delay: 9s;
  opacity: 0;
}
.mainslide_catchcopy {
  text-align: center;
  color: #fff;
  font-size: 32px;
  letter-spacing: 0.2em;
  width: 460px;
  height: 320px;
  border: 1px solid #fff;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@keyframes slider {
  0% {
    opacity: 0;
  }
  20.83% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  45.83% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .mainslide {
    width: 100%;
    height: 0;
    padding-bottom: 67.18%;
  }
  .mainslide_item img {
    display: none;
  }
  .mainslide_item {
    background-size: cover;
    background-position: center;
  }
  .mainslide_item01 {
    background-image: url(../img/top/mainslider01.jpg);
  }
  .mainslide_item02 {
    background-image: url(../img/top/mainslider02.jpg);
  }
  .mainslide_item03 {
    background-image: url(../img/top/mainslider03.jpg);
  }
}
@media print, screen and (min-width: 1280px) {
  .mainslide {
    width: 100%;
    height: 860px;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .mainslide {
    height: 0;
    padding-bottom: 115%;
  }
  .mainslide img {
    width: 100%;
  }
  .mainslide_catchcopy {
    position: absolute;
    left: 10%;
    top: 30%;
    width: 80%;
    height: 40%;
    font-size: 5vw;
  }
}
/***********/
.page_title {
  background: #508030;
  color: #fff;
  background-size: cover;
  text-align: center;
  font-size: 30px;
  height: 160px;
  font-weight: bold;
  letter-spacing: 0.085em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.page_title>* {
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media only screen and (max-width: 767px) {
  .page_title {
    font-size: 22px;
    padding: 20px 0;
    height: auto;
    min-height: 90px;
  }
}
/**breadcrumb*********/
.breadcrumb {
  background: #fff;
  padding: 8px 0;
  border-bottom: 1px solid #ddd;
}
.ol_breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.breadcrumb li {
  font-size: 14px;
  color: #555;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.breadcrumb li a {
  color: #555;
  text-decoration: none;
}
.breadcrumb li a:hover {
  color: #bdd643;
}
.breadcrumb li:last-child a {
  color: #999;
  pointer-events: none;
  cursor: default;
}
.breadcrumb li .material-icons {
  font-size: 14px;
}
/** underpage *****/
.underpage {
  padding: 80px 0 40px;
}
.section_block {
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .underpage {
    padding: 50px 0 20px;
  }
  .section_block {
    margin-bottom: 30px;
  }
}
/**見出し**********/
.underpage h2 {
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 1em;
}
.underpage h3 {
  border-bottom: 3px solid #508030;
  /*border-top: 3px solid #bdd643;*/
  color: inherit;
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.55;
  margin-bottom: 0.75em;
  margin-top: 1.25em;
  padding: 0.25em 0 0.5em 0;
}

.underpage h4 {
  background: #f1fbe3;
  border-top: 1px solid #bdd643;
  border-bottom: 1px solid #bdd643;
  color: inherit;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.75;
  margin-bottom: 1em;
  padding: 0.4em 0.4em 0.4em 0.6em;
}
.underpage h5 {
  border-bottom: 1px solid #e1e1e1;
  display: block;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.75;
  margin-bottom: 1em;
  margin-top: 1.5em;
  padding-bottom: 0.4em;
  position: relative;
}
.underpage h5::before,
.underpage h5::after {
  position: absolute;
  content: "";
}
.underpage h5::after {
  width: 20%;
  background: #bdd643;
  height: 1px;
  bottom: -1px;
  left: 0;
}
.underpage h6 {
  color: #bdd643;
  font-size: 2.0rem;
  line-height: 1.75;
  font-weight: bold;
  margin-bottom: 0.85em;
  margin-top: 1.75em;
}
@media only screen and (max-width: 767px) {
  .underpage h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
  }
  .underpage h3 {
    font-size: 2.4rem;
    margin-bottom: 1em;
  }
  .underpage h4 {
    font-size: 2.2rem;
  }
  .underpage h5 {
    font-size: 2.0rem;
  }
}
/** お問い合わせ ******/
.table_form {
  width: 100%;
  table-layout: fixed;
}
.table_form p {
  margin-bottom: 0;
}
.table_form th,
.table_form td {
  vertical-align: top;
  padding: 12px 5px;
  text-align: left;
}
.table_form .required {
  font-size: 72%;
  background: #f48124;
  color: #fff;
  display: inline-block;
  line-height: 1.2;
  padding: 3px 5px;
  border-radius: 3px;
  margin-left: 5px;
}
.table_form input:not([type="checkbox"]):not([type="radio"]):not([type="date"]),
.table_form textarea {
  width: 100%;
}
.input_wrap {
  -webkit-box-flex: 1;
  -ms-flex: 0 0 49%;
  flex: 0 0 49%;
}
.table_form .form-control {
  max-width: 90%;
}
.table_form input[type="text"],
.table_form input[type="password"],
.table_form input[type="number"],
.table_form input[type="email"],
.table_form input[type="tel"],
.table_form input[type="url"],
.table_form input[type="date"],
.table_form textarea,
.table_form select {
  padding-top: 7px;
  padding-bottom: 7px;
  background: #fafafa;
}
.table_form input[type="text"].wpcf7-not-valid,
.table_form input[type="password"].wpcf7-not-valid,
.table_form input[type="number"].wpcf7-not-valid,
.table_form input[type="email"].wpcf7-not-valid,
.table_form input[type="tel"].wpcf7-not-valid,
.table_form input[type="url"].wpcf7-not-valid,
.table_form input[type="date"].wpcf7-not-valid,
.table_form textarea.wpcf7-not-valid,
.table_form select.wpcf7-not-valid {
  background-color: #fdebeb;
}
.table_form .wpcf7-list-item {
  margin-left: .5em;
  margin-right: .5em;
}
.form_button_wrap {
  text-align: center;
  padding-top: 25px;
}
.table_form .mwform-tel-field {
  display: flex;
  max-width: 100%;
  width: 360px;
}
.table_form .mwform-tel-field input[type="text"] {
  flex: 1 1 auto;
  width: 100%;
}
.table_form .mwform-tel-field input[type="text"]:not(:first-child) {
  margin-left: 3px;
}
.table_form .mwform-tel-field input[type="text"]:not(:last-child) {
  margin-right: 3px;
}
.form_button_wrap .form_button {
  border: none;
  background: #508030;
  color: #fff;
  transition: .3s;
  margin: 5px;
  border-radius: 3px;
  padding: 8px;
  min-width: 200px;
  font-size: 100%;
  font-family: inherit;
  letter-spacing: 0.1em;
}
.form_button_wrap .form_button:hover {
  opacity: .7;
  cursor: pointer;
}
.form_button_wrap .form_button.wpcf7-submit:disabled:hover {
  opacity: 1;
  cursor: not-allowed;
}
.form_button_wrap .form_back {
  background-color: #aaa;
}
.form_button_wrap .wpcf7-spinner {
  position: absolute;
}
.privacy_wrap {
  margin-top: 30px;
  padding: 30px;
  height: 200px;
  overflow-y: scroll;
  border: solid 1px #e4e4e4;
  font-size: 14px;
}
.privacy_wrap h4 {
  font-size: 18px;
}
.privacy_wrap h5 {
  font-size: 16px;
  color: #bdd643;
}
.form_acceptance_wrap {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 20px;
}
.mw_wp_form_confirm .privacy_wrap,
.mw_wp_form_confirm .form_acceptance_wrap {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .table_form_th .flexbox {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .table_form th {
    width: 15em;
  }
  .table_form td {
    padding-left: 12px;
  }
  .input_wrap:nth-child(n+2) {
    margin-left: 2%;
  }
}
@media only screen and (max-width: 767px) {
  .table_form th,
  .table_form td {
    display: block;
  }
  .table_form th {
    padding-bottom: 3px;
  }
  .table_form td {
    padding-top: 3px;
  }
  .input_wrap {
    display: block;
  }
  .input_wrap:nth-child(n+1) {
    margin-bottom: 10px;
  }
  .privacy_wrap {
    margin-top: 20px;
    padding: 10px;
    font-size: 13px;
  }
  .form_acceptance_wrap {
    padding-top: 20px;
    padding-bottom: 0;
  }
}
/********/
.googlemap {
  height: 0;
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
}
.googlemap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
/**post_archives******/
.post_archives {
  padding: 80px 0 80px;
}
.post_aside {
  padding: 80px 0 80px;
}
.post_aside .aside_title {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 8px;
  border-bottom: 3px solid #508030;
  margin-bottom: 15px;
}
.aside_post_list {
  margin-bottom: 30px;
}
.aside_post_list li {
  border-bottom: 1px solid #eee;
}
.aside_post_list li a {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 12px 5px;
}
.aside_post_list li a:hover {
  color: #bdd643;
  background: #f3f3f3;
}
@media only screen and (max-width: 767px) {
  .post_archives {
    padding: 30px 0 30px;
  }
  .post_aside {
    padding: 30px 0 30px;
  }
}
/******/
.post_archives-item {
  padding: 40px 0;
  border-bottom: 1px solid #ddd;
}
.post_archives-item:first-child {
  border-top: 1px solid #ddd;
}
.post_archives-item h2 {
  font-size: 26px;
  padding: 12px 0 8px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.085em;
}
.post_archives-item h2 a {
  text-decoration: none;
  color: #000000;
}
.post_archives-item h2 a:hover {
  border-bottom: 1px solid #bdd643;
  color: #bdd643;
}
.entry_ex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-size: 14px;
  color: #508030;
}
.entry_ex .material-icons {
  font-size: 18px;
  margin-right: 5px;
}
.entry_ex .entry_date,
.entry_ex .entry_categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.entry_ex .entry_categories_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.entry_ex .entry_date {
  margin-right: 15px;
}
.entry_categories {
  font-size: 82%;
  display: inline-block;
  line-height: 1.85;
  vertical-align: text-top;
  padding: 0 10px;
  margin-left: 5px;
  background: #508030;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 2px;
}
a.entry_categories:hover {
  opacity: .7;
}
@media only screen and (max-width: 767px) {
  .post_archives-item h2 {
    font-size: 22px;
  }
}
/**pager******/
.pagenav_archive {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 13px;
  line-height: 28px;
  margin-top: 50px;
}
.pagenav_archive .page-numbers {
  border: 1px solid #aaa;
  color: #777;
  display: inline-block;
  height: 30px;
  margin: 5px;
  text-align: center;
  text-decoration: none;
  transition: .3s;
  width: 30px;
  border-radius: 3px;
}
.pagenav_archive .page-numbers.current {
  background: #eee;
  border-color: #eee;
}
.pagenav_archive .page-numbers:hover {
  background: #bdd643;
  border: 1px solid #bdd643;
  color: #fff;
  cursor: pointer;
}
/**post_single******/
.post_single {
  padding: 80px 0 80px;
}
.post_single-item h1 {
  font-size: 30px;
  border-bottom: 3px solid #ddd;
  margin-bottom: 40px;
  padding-bottom: 15px;
  font-weight: bold;
}
/**pager******/
.pagenav_single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-top: 1px solid #eee;
  font-size: 1.408rem;
  line-height: 1.5;
  margin-top: 6.4rem !important;
  padding-top: 4.8rem;
}
.pagenav_single a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  transition: .3s;
}
.pagenav_single a .material-icons {
  font-size: 1.408rem;
}
.pagenav_single a:hover {
  opacity: .7;
}
@media only screen and (max-width: 767px) {
  .post_single {
    padding: 30px 0 30px;
  }
}
@media only screen and (max-width: 767px) {
  .post_single-item h1 {
    font-size: 24px;
    margin-bottom: 25px;
    padding-bottom: 10px;
  }
}
/**sitemap******/
.sitemap_list {
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 50px;
}
.sitemap_list {
  border-top: 1px solid #ddd;
}
.sitemap_list li {
  border-bottom: 1px solid #ddd;
}
.sitemap_list a {
  position: relative;
  display: block;
  padding: 20px 40px 20px 20px;
  transition: .3s;
  text-decoration: none;
  color: inherit;
}
.sitemap_list a:hover {
  color: #bdd643;
  background: #f3f3f3;
}
.sitemap_list a::after {
  position: absolute;
  content: "";
  right: 16px;
  top: 50%;
  width: 5px;
  height: 5px;
  border-top: 1px solid #bdd643;
  border-right: 1px solid #bdd643;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
@media only screen and (max-width: 767px) {
  .sitemap_list {
    margin-bottom: 30px;
  }
  .sitemap_list a {
    padding: 16px 32px 16px 16px
  }
}
.bg_block p {
  margin-bottom: 0 !important;
  margin-top: 0;
}
/** 濃い背景色 *****/
:root {
  --bgcolor: #bdd643;
}
/** テキストサイズ *****/
.text-xxlarge {
  font-size: 28px;
  font-weight: bold;
}
.text-xlarge {
  font-size: 20px;
  font-weight: bold;
}
.text-large {
  font-size: 18px;
  font-weight: bold;
}
.text-small {
  font-size: 14px;
}
.text-xsmall {
  font-size: 12px;
}
.footer_inner {
  padding: 40px 0;
}
.footer_inner .footer_access {
  margin-bottom: 25px;
}
@media (min-width: 1025px) {
  .footer_inner .footer_access {
    margin-bottom: 35px;
  }
}
.footer_inner .footer_access li {
  border-bottom: solid 1px #ccc;
  padding: 20px 0;
}
.footer_inner .footer_access li .ftr_tel {
  font-size: 24px;
  font-weight: bold;
  display: flex;
  align-items: center;
  letter-spacing: .1em;
}
.footer_inner .footer_access li .ftr_tel a {
  color: #000000;
}
.footer_inner .footer_access li .ftr_tel .material-icons {
  margin: 5px 5px 0 0;
}
.footer_inner .footer_access li .ftr_tel .material-icons {
  margin: 5px 5px 0 0;
}
.footer_inner .googlemap {
  padding-bottom: 400px;
}
@media (max-width: 767px) {
  .footer_inner .googlemap {
    margin-top: 30px;
    padding-bottom: 300px;
  }
  .footer_inner .sp-text-center {
    text-align: center;
  }
}
@media (min-width: 1025px) {
  .footer_inner {
    padding: 100px 0;
  }
}

.anchor_list {
  background: rgba(189, 214, 67, 0.1);
  padding: 1em;
  list-style: none;
  border-radius: 10px;
}
.anchor_list li {
  margin: 0.5em 0.5em;
}
.anchor_list li a {
  padding-left: 20px;
  position: relative;
  color: #000;
  text-decoration: none;
  transition: all 0.3s;
  display: inline-block;
}
.anchor_list li a:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #508030;
  position: absolute;
  top: 0.4em;
  left: 0;
}
.anchor_list li a:hover {
  color: #bdd643;
  text-decoration: underline;
}
.anchor_list li a:hover .dbl {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .anchor_list {
    display: flex;
    flex-wrap: wrap;
    padding: 1.5em 2em;
    gap: 5px 20px;
  }
  .anchor_list li {
    width: calc((100% - 20px) / 2);
    margin: 0;
  }
  .anchor_list.anchor_center {
    justify-content: center;
  }
  .anchor_list.col_3 li {
    width: calc((100% - 40px) / 3);
  }
}
@media (min-width: 1024px) {
  .anchor_list.col3 li {
    width: calc((100% - 40px) / 3);
  }
}