@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html {
  font-size: 100%;
}

body {
  font-family: "Kiwi Maru", serif;
  letter-spacing: 0.2vw;
  position: relative;
  z-index: -100;
  background-color: #fff;
}

@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }
}

@media screen and (min-width: 1441px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .br_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .br_sp {
    display: none;
  }
}

.wide {
  width: 1200px;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .wide {
    width: 800px;
  }
}
@media screen and (max-width: 768px) {
  .wide {
    width: 350px;
  }
}

.fade-in {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}

.fade-in-left {
  transform: translate(-50px, 0);
}

.fade-in-right {
  transform: translate(50px, 0);
}

.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}

.backInUp {
  animation-name: backInUp;
  animation-duration: 1s;
  animation-duration: var(--animate-duration);
  animation-fill-mode: both;
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  #lower {
    padding: 0;
  }
}
#lower .lower {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 40vh;
  position: relative;
  z-index: -10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower {
    height: 25vw;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower {
    height: 60vw;
  }
}
#lower .lower .lower_bg {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 51, 51, 0.6);
}
#lower .lower .lower_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
#lower .lower .lower_title h2 {
  padding: 0 2vw;
  border-bottom: 1px solid #c9b789;
  margin-bottom: 1vw;
  letter-spacing: 0.4vw;
}
@media screen and (max-width: 768px) {
  #lower .lower .lower_title h2 {
    letter-spacing: 0.8vw;
  }
}

p {
  font-size: 1.3rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 1rem;
  }
}

h1 {
  font-size: 3.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 4.3vw;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 8vw;
  }
}

h2 {
  font-size: 2.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h2 {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 6vw;
  }
}

h3 {
  font-size: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h3 {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 5vw;
  }
}

h4 {
  font-size: 1.7vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h4 {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 4vw;
  }
}

h5 {
  font-size: 1.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h5 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  h5 {
    font-size: 3.5vw;
  }
}

.wp-pagenavi {
  text-align: center;
}

.wp-pagenavi a:hover, .wp-pagenavi span.current {
  color: #666 !important;
  border-color: #666 !important;
}

header {
  width: 100%;
  z-index: 9999999999;
  margin-bottom: 18vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header {
    margin-bottom: 15vw;
  }
}
@media screen and (max-width: 768px) {
  header {
    border-bottom: none;
    margin-bottom: 0vw;
  }
}

.header.change-color {
  background-color: #333;
  transition: 0.3s;
}

.header_group {
  position: fixed;
  top: 0;
  z-index: 999999;
  width: 100%;
}
.header_group .header_contact {
  display: none;
}
.header_group #header_pc {
  background: rgba(255, 255, 255, 0.75);
  padding: 0 2vw 0 0vw;
  height: 18vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 5px #226d2e;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group #header_pc {
    height: 15vw;
  }
}
@media screen and (max-width: 768px) {
  .header_group #header_pc {
    display: none;
  }
}
.header_group #header_pc .header_logo {
  width: 30vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group #header_pc .header_logo {
    width: 20vw;
  }
}
.header_group #header_pc .header_logo img {
  width: 48%;
  margin: 0 auto;
  display: block;
}
.header_group #header_pc .header_logo p {
  font-size: 0.7rem;
  color: #226d2e;
  margin-top: 0;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group #header_pc .header_logo p {
    letter-spacing: -0.5px;
  }
}
.header_group #header_pc .header_menu {
  text-align: center;
  width: 80%;
}
.header_group #header_pc .header_menu ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_group #header_pc .header_menu ul li span {
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group #header_pc .header_menu ul li span {
    font-size: 0.8rem;
  }
}
.header_group #header_pc .header_menu ul li a {
  text-decoration: none;
  color: #000;
  position: relative;
}
.header_group #header_pc .header_menu ul li a button {
  font-size: 1.2rem;
  border: none;
  padding: 0;
  background-color: transparent;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-left: 1.9rem;
  transition: all 0.4s;
  cursor: pointer;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group #header_pc .header_menu ul li a button {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .header_group #header_pc .header_menu ul li a button {
    display: none;
  }
}
.header_group #header_pc .header_menu ul li .home button:hover {
  color: #ff705f;
}
.header_group #header_pc .header_menu ul li .service button:hover {
  color: #75b05d;
}
.header_group #header_pc .header_menu ul li .company button:hover {
  color: #edcd5c;
}
.header_group #header_pc .header_menu ul li .access button:hover {
  color: #80abd5;
}
.header_group #header_pc .header_menu ul li .contact button {
  color: #fff !important;
  background-color: #226d2e;
  padding: 0.5rem 1.5rem;
  border-radius: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group #header_pc .header_menu ul li .contact button {
    padding: 0.3rem 1rem;
  }
}
@media screen and (max-width: 768px) {
  .header_group #header_pc .header_menu ul li .contact button {
    display: none;
  }
}
.header_group #header_pc .header_menu ul li .contact button:hover {
  opacity: 0.6;
}
.header_group #header_pc .header_menu ul li .contact button i {
  font-size: 1rem;
  padding-right: 0.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group #header_pc .header_menu ul li .contact button i {
    font-size: 0.6rem;
  }
}
.header_group #header_pc .header_menu ul li .insta button {
  padding: 0;
}
.header_group #header_pc .header_menu ul li .insta button i {
  font-size: 1.5rem;
  color: #226d2e;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group #header_pc .header_menu ul li .insta button i {
    font-size: 1rem;
  }
}
.header_group #header_pc .header_menu ul li .insta button:hover {
  opacity: 0.6;
}
.header_group #header_pc .header_menu ul li .insta:hover::after {
  opacity: 0 !important;
}

.header_group2 {
  position: fixed;
  z-index: 999999;
  width: 100%;
  transition: all 0.4s;
  margin-top: -18vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group2 {
    margin-top: -15vw;
  }
}
.header_group2 #header_pc {
  background: rgba(255, 255, 255, 0.75);
  padding: 0 2vw;
  height: 18vh;
  display: none;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 5px #226d2e;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group2 #header_pc {
    height: 15vw;
  }
}
@media screen and (max-width: 768px) {
  .header_group2 #header_pc {
    display: none;
  }
}
.header_group2 #header_pc .header_logo {
  width: 17vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group2 #header_pc .header_logo {
    width: 14vw;
  }
}
.header_group2 #header_pc .header_logo img {
  width: 100%;
}
.header_group2 #header_pc .header_menu {
  text-align: center;
  width: 80%;
}
.header_group2 #header_pc .header_menu ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header_group2 #header_pc .header_menu ul li span {
  font-size: 1rem;
  display: block;
  margin-bottom: 0.25rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group2 #header_pc .header_menu ul li span {
    font-size: 0.8rem;
  }
}
.header_group2 #header_pc .header_menu ul li a {
  text-decoration: none;
  color: #000;
  position: relative;
}
.header_group2 #header_pc .header_menu ul li a button {
  font-size: 1.1rem;
  border: none;
  padding: 0;
  background-color: transparent;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: contain;
  padding-left: 1.9rem;
  transition: all 0.4s;
  cursor: pointer;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group2 #header_pc .header_menu ul li a button {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 768px) {
  .header_group2 #header_pc .header_menu ul li a button {
    display: none;
  }
}
.header_group2 #header_pc .header_menu ul li .home button:hover {
  color: #ff705f;
}
.header_group2 #header_pc .header_menu ul li .service button:hover {
  color: #75b05d;
}
.header_group2 #header_pc .header_menu ul li .company button:hover {
  color: #edcd5c;
}
.header_group2 #header_pc .header_menu ul li .access button:hover {
  color: #80abd5;
}
.header_group2 #header_pc .header_menu ul li .contact button {
  color: #fff !important;
  background-color: #226d2e;
  padding: 0.5rem 1.5rem;
  border-radius: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group2 #header_pc .header_menu ul li .contact button {
    padding: 0.3rem 1rem;
  }
}
@media screen and (max-width: 768px) {
  .header_group2 #header_pc .header_menu ul li .contact button {
    display: none;
  }
}
.header_group2 #header_pc .header_menu ul li .contact button:hover {
  opacity: 0.6;
}
.header_group2 #header_pc .header_menu ul li .contact button i {
  font-size: 1rem;
  padding-right: 0.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group2 #header_pc .header_menu ul li .contact button i {
    font-size: 0.6rem;
  }
}
.header_group2 #header_pc .header_menu ul li .insta button {
  padding: 0;
}
.header_group2 #header_pc .header_menu ul li .insta button i {
  font-size: 1.5rem;
  color: #226d2e;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group2 #header_pc .header_menu ul li .insta button i {
    font-size: 1rem;
  }
}
.header_group2 #header_pc .header_menu ul li .insta button:hover {
  opacity: 0.6;
}
.header_group2 #header_pc .header_menu ul li .insta:hover::after {
  opacity: 0 !important;
}

@media screen and (min-width: 1441px) {
  #header_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #header_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #header_sp {
    display: none;
  }
}
#header_sp {
  position: relative;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 10005;
  right: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  text-align: center;
}
.hamburger::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 50px;
  height: 60px;
  top: 10%;
  right: 19%;
  background-color: #226d2e;
}
.hamburger img {
  width: 15px;
  display: block;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.hamburger span {
  display: block;
  position: absolute;
  width: 35px;
  height: 2px;
  left: 6px;
  background: #fff;
  transition: 0.3s ease-in-out;
}

.hamburger p {
  position: absolute;
  top: 52px;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 9.5px;
  color: #fff;
}

.hamburger span:nth-child(1) {
  top: 18px;
  left: 50%;
  transform: translate(-50%, 0);
}

.hamburger span:nth-child(2) {
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0);
}

.hamburger span:nth-child(3) {
  top: 42px;
  left: 50%;
  transform: translate(-50%, 0);
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 35%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 35%;
  left: 50%;
  background: #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  color: #000;
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  height: 100vh;
  transform: translateY(-100%);
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

nav.globalMenuSp ul {
  margin: 15vh auto;
  padding: 0;
  width: 80%;
  text-align: center;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
  margin-bottom: 2rem;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 0.25em 0;
  text-decoration: none;
  font-size: 1rem;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0);
}

#top_main {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #top_main {
    padding: 0;
    display: block;
  }
}
#top_main::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 0%;
  left: 0;
  width: 90%;
  height: 110%;
  background-color: #fff;
}
#top_main .main_top {
  width: 100%;
  text-align: center;
  padding: 1rem 0;
}
#top_main .main_top h1 {
  font-size: 180%;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #top_main .main_top h1 {
    font-size: 120%;
  }
}
#top_main .main_top h1 span {
  display: block;
  font-size: 50%;
}
@media screen and (max-width: 768px) {
  #top_main .main_top h1 span {
    font-size: 30%;
  }
}
#top_main .link_position {
  position: absolute;
  top: 54%;
  right: 5%;
  z-index: 99999;
}
#top_main .link_position a {
  font-size: 3vw;
  color: #f05249;
  font-weight: 600;
  text-decoration: none;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #top_main .link_position a {
    width: 100%;
    height: 35vh;
    margin-top: 0;
  }
}
#top_main .link_position a:hover {
  opacity: 0.75;
}
#top_main .slide-images {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #top_main .slide-images {
    width: 100%;
    margin-top: 0;
  }
}
#top_main .slide-images .slick-list {
  height: 100%;
  border-radius: 0 0 20px 0;
}
@media screen and (max-width: 768px) {
  #top_main .slide-images .slick-list {
    border-radius: 0;
  }
}
#top_main .slide-images .slick-list .slick-track {
  height: 100%;
}
#top_main .slide-images .slick-list .slick-track img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top_main .slide-images .slick-next {
  display: none !important;
}
#top_main .slide-images .slick-next::before {
  display: none;
}
#top_main .slide-images .slick-prev {
  display: none !important;
}
#top_main .slide-images .slick-prev::before {
  display: none;
}
#top_main .slide-contents {
  width: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
}
@media screen and (max-width: 768px) {
  #top_main .slide-contents {
    width: 100%;
    margin-top: 5vw;
  }
}
#top_main .slide-contents h2 {
  color: #eb785b;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  border-bottom: double 5px #eb785b;
  display: inline-block;
}
#top_main .slide-contents .slide-content {
  width: 100%;
  text-align: center;
  padding: 1vw 3vw;
}
#top_main .slide-contents .slide-content img {
  width: 80%;
  padding: 2rem 0;
  margin: 0 auto;
}
#top_main .slide-contents .slide-content .top_text {
  text-align: center;
  font-size: 1.5vw;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #top_main .slide-contents .slide-content .top_text {
    font-size: 10px;
  }
}
#top_main .slide-contents .slide-content .top_link {
  text-align: center;
  width: 100%;
  margin-top: 1rem;
}
#top_main .slide-contents .slide-content .top_link a {
  color: #fff;
  background-color: #ff705f;
  display: block;
  text-decoration: none;
  padding: 1rem;
  border: solid 1px #ff705f;
  transition: all 0.4s;
  border-radius: 3rem;
}
#top_main .slide-contents .slide-content .top_link a i {
  padding-right: 0.5rem;
}
#top_main .slide-contents .slide-content .top_link a:hover {
  background-color: #ff705f;
  color: #fff;
}
#top_main .top_main_text {
  position: absolute;
  height: 300px;
  top: 70%;
  left: 8%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  #top_main .top_main_text {
    height: auto;
  }
}
#top_main .top_main_text .top_main_headline {
  font-size: 120px;
  font-weight: 600;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_text .top_main_headline {
    font-size: 36px;
  }
}
#top_main .top_main_text .top_main_writing {
  font-size: 24px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_text .top_main_writing {
    font-size: 15px;
  }
}

#concept .concept {
  background-color: #f1f1f1;
  padding: 8vw 0;
}
#concept .concept .top_title {
  text-align: center;
}
#concept .concept .concept_text {
  width: 60%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #concept .concept .concept_text {
    width: 90%;
  }
}

#top_news {
  margin-top: 5vw;
  padding: 5vw 0 5vw 0;
  background-color: rgba(34, 109, 46, 0.08);
}
#top_news .top_news {
  position: relative;
}
@media screen and (max-width: 768px) {
  #top_news .top_news {
    padding: 3rem 0;
  }
}
#top_news .top_news .top_news_contents {
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news .top_news_contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents {
    width: 90%;
  }
}
#top_news .top_news .top_news_contents .top_news_title {
  width: 25%;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news .top_news_contents .top_news_title {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents .top_news_title {
    width: 100%;
    text-align: center;
  }
}
#top_news .top_news .top_news_contents .top_news_title h2 {
  font-size: 2.5rem;
}
#top_news .top_news .top_news_contents .top_news_title h2 span {
  color: #226d2e;
  font-size: 60%;
  font-weight: 500;
  letter-spacing: 5px;
  display: block;
}
#top_news .top_news .top_news_contents .top_news_title h2 i {
  padding-right: 0.5rem;
}
#top_news .top_news .top_news_contents .top_news_title .top_contents_btn {
  display: flex;
  text-align: center;
  margin: 0 auto;
  justify-content: start;
  z-index: 2;
  padding-top: 2rem;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents .top_news_title .top_contents_btn {
    justify-content: center;
  }
}
#top_news .top_news .top_news_contents .top_news_title .top_contents_btn a {
  display: table;
  background-color: #226d2e;
  text-decoration: none;
  color: #fff;
  padding: 0.5rem 3rem;
  transition: 0.4s all;
  border-radius: 5rem;
  border: solid 1px #226d2e;
}
#top_news .top_news .top_news_contents .top_news_title .top_contents_btn a:hover {
  opacity: 0.75;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_news .top_news .top_news_contents .top_news_title .top_contents_btn a {
    padding: 0.5rem 2rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news .top_news_contents .top_news_title .top_contents_btn a {
    padding: 0.5rem 2rem;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents .top_news_title .top_contents_btn a {
    padding: 1rem;
  }
}
#top_news .top_news .top_news_contents ul {
  width: 75%;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news .top_news_contents ul {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul {
    width: 100%;
  }
}
#top_news .top_news .top_news_contents ul li {
  width: 31%;
  margin: 1%;
  text-decoration: none;
  color: #226d2e;
  background-color: #ffffff;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul li {
    width: 100%;
    margin-bottom: 8vw;
  }
}
#top_news .top_news .top_news_contents ul li a {
  color: #212121;
  padding: 1rem;
  display: block;
  text-decoration: none;
  transition: all 0.4s;
}
#top_news .top_news .top_news_contents ul li a:hover {
  opacity: 0.75;
}
#top_news .top_news .top_news_contents ul li a .news-img {
  height: 17vw;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-color: #eee;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul li a .news-img {
    height: 55vw;
  }
}
#top_news .top_news .top_news_contents ul li a .outline {
  padding: 1rem 0;
}
#top_news .top_news .top_news_contents ul li a .outline dl.category_style {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
#top_news .top_news .top_news_contents ul li a .outline dl.category_style dd {
  font-size: 0.75rem;
  padding: 0.25rem;
  background-color: #fff;
  border: solid 1px #226d2e;
  margin-bottom: 0.5rem;
}
#top_news .top_news .top_news_contents ul li a .outline .date {
  font-size: 0.85rem;
  letter-spacing: 0.1vw;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: solid 1px #226d2e;
}
#top_news .top_news .top_news_contents ul li a .outline .title {
  font-weight: 600;
  color: #226d2e;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul li a .outline .title {
    padding-top: 0.5rem;
  }
}

#reason .reason .reason_contents ul {
  list-style: none;
  width: 70%;
  margin: auto;
  margin-bottom: 8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_contents ul {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents ul {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents ul li:nth-child(1) h3 {
    padding: 8vw 5vw !important;
    padding-left: 5vw;
  }
}
#reason .reason .reason_contents ul li .reason_headline {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #f1f1f1;
}
#reason .reason .reason_contents ul li .reason_headline h3 {
  width: 20%;
  background-color: #fff;
  color: #fff;
  padding: 1.5vw;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_contents ul li .reason_headline h3 {
    padding: 2.5vw;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents ul li .reason_headline h3 {
    padding: 11vw 5vw;
    font-size: 6vw;
    width: 30%;
  }
}
#reason .reason .reason_contents ul li .reason_headline h3::after {
  position: absolute;
  content: "";
  right: 100%;
  top: 0;
  width: 1vw;
  height: 100%;
  background-color: #fff;
}
#reason .reason .reason_contents ul li .reason_headline h3::before {
  position: absolute;
  content: "";
  right: 100%;
  top: 100%;
  border-bottom: 1vw solid transparent;
  border-right: 1vw solid #fff;
}
#reason .reason .reason_contents ul li .reason_headline h4 {
  width: 80%;
  padding: 1.5vw 0;
  padding-left: 2vw;
  color: #fff;
  background-color: #f1f1f1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_contents ul li .reason_headline h4 {
    padding: 2.5vw;
    padding-left: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents ul li .reason_headline h4 {
    width: 70%;
    padding: 8vw 5vw;
    padding-left: 5vw;
    font-size: 5vw;
  }
}
#reason .reason .reason_contents ul li .reason_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2vw;
  border: 1px solid #f1f1f1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_contents ul li .reason_content {
    padding: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents ul li .reason_content {
    padding: 10vw 0;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents ul li .reason_content {
    flex-flow: column-reverse;
  }
}
#reason .reason .reason_contents ul li .reason_content .reason_text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents ul li .reason_content .reason_text {
    width: 90%;
    margin: auto;
  }
}
#reason .reason .reason_contents ul li .reason_content .reason_text p {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_contents ul li .reason_content .reason_text p {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents ul li .reason_content .reason_text p {
    font-size: 4vw;
  }
}
#reason .reason .reason_contents ul li .reason_content .reason_image {
  width: 35%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents ul li .reason_content .reason_image {
    width: 65%;
    margin-bottom: 6vw;
  }
}
#reason .reason .reason_contents ul li .reason_content .reason_image::after {
  position: absolute;
  content: "";
  z-index: -1;
  top: 2%;
  left: -5%;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
#reason .reason .reason_contents ul li .reason_content .reason_image img {
  width: 100%;
}
#reason .reason .reason_contents .reason_writing {
  width: 70%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #reason .reason .reason_contents .reason_writing {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents .reason_writing {
    width: 95%;
  }
}
#reason .reason .reason_contents .reason_writing h4 {
  margin-bottom: 2vw;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents .reason_writing h4 {
    margin-bottom: 4vw;
  }
}
#reason .reason .reason_contents .reason_writing h4 span {
  display: inline-block;
  font-size: 3vw;
}
@media screen and (max-width: 768px) {
  #reason .reason .reason_contents .reason_writing h4 span {
    font-size: 6vw;
  }
}

#trouble .trouble {
  padding: 5vw 0 10vw 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  #trouble .trouble {
    padding: 12vw 0;
  }
}
#trouble .trouble h2 {
  font-size: 2.5rem;
  color: #226d2e;
  text-align: center;
  margin-bottom: 3rem;
  padding: 1rem 0;
}
@media screen and (max-width: 768px) {
  #trouble .trouble h2 {
    font-size: 1.2rem;
    margin-bottom: 0rem;
  }
}
#trouble .trouble .illust_group {
  display: flex;
  flex-wrap: wrap;
  overflow: hidden;
}
#trouble .trouble .illust_group .list {
  list-style: none;
  width: 70%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #trouble .trouble .illust_group .list {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #trouble .trouble .illust_group .list {
    width: 95%;
  }
}
#trouble .trouble .illust_group .list li {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
}
#trouble .trouble .illust_group .list li .trouble_text {
  width: 100%;
  background-color: rgba(34, 109, 46, 0.15);
  border-radius: 30px;
  padding: 20px 5px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #trouble .trouble .illust_group .list li .trouble_text {
    font-size: 0.8rem;
    letter-spacing: 0.5px;
  }
}
#trouble .trouble .illust_group .list .topleft {
  width: 80%;
}
#trouble .trouble .illust_group .list .topleft p {
  font-size: 1.3rem;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #trouble .trouble .illust_group .list .topleft p {
    font-size: 1rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #trouble .trouble .illust_group .list .topleft p {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  #trouble .trouble .illust_group .list .topleft p {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  #trouble .trouble .illust_group .list .topleft {
    width: 100%;
  }
}
#trouble .trouble .illust_group .list .bottomright {
  width: 80%;
  margin-left: 20%;
}
#trouble .trouble .illust_group .list .bottomright p {
  font-size: 1.3rem;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #trouble .trouble .illust_group .list .bottomright p {
    font-size: 1rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #trouble .trouble .illust_group .list .bottomright p {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  #trouble .trouble .illust_group .list .bottomright p {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  #trouble .trouble .illust_group .list .bottomright {
    width: 100%;
    margin-left: 0%;
  }
}
#trouble .trouble .illust_group .illust {
  width: 15%;
  padding: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #trouble .trouble .illust_group .illust {
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  #trouble .trouble .illust_group .illust {
    display: flex;
    width: 100%;
    justify-content: center;
  }
}
#trouble .trouble .illust_group .illust img {
  width: 100%;
}
#trouble .trouble .illust_group .illust img.illust_right_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #trouble .trouble .illust_group .illust img.illust_right_sp {
    width: 35%;
    display: block;
  }
}
#trouble .trouble .illust_group .illust img.illust_right_pc {
  display: block;
}
@media screen and (max-width: 768px) {
  #trouble .trouble .illust_group .illust img.illust_right_pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #trouble .trouble .illust_group .illust img.illust_left {
    width: 35%;
  }
}
#trouble .trouble .illust_sub {
  position: relative;
  text-align: center;
  margin-top: 3rem;
  background: linear-gradient(0deg, #dee9e0 0%, #dee9e0 50%, #fff 50%, #fff 100%);
}
@media screen and (max-width: 768px) {
  #trouble .trouble .illust_sub {
    margin-top: 0rem;
  }
}
#trouble .trouble .illust_sub dl {
  width: auto;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#trouble .trouble .illust_sub dl dt {
  width: 20%;
}
@media screen and (max-width: 768px) {
  #trouble .trouble .illust_sub dl dt {
    width: 30%;
  }
}
#trouble .trouble .illust_sub dl dt img {
  width: 100%;
  display: block;
  padding-bottom: 1rem;
}
#trouble .trouble .illust_sub dl dd {
  position: relative;
  color: #226d2e;
  background: #FFF;
  border: solid 3px #226d2e;
  padding: 1rem;
  border-radius: 15px;
}
@media screen and (max-width: 768px) {
  #trouble .trouble .illust_sub dl dd {
    width: 65%;
    padding: 0.5rem;
  }
}
#trouble .trouble .illust_sub dl dd:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-right: 12px solid #FFF;
  z-index: 2;
}
#trouble .trouble .illust_sub dl dd:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -29px;
  margin-top: -14px;
  border: 14px solid transparent;
  border-right: 14px solid #226d2e;
  z-index: 1;
}
#trouble .trouble .illust_sub dl dd p {
  margin: 0;
  padding: 0;
}

#solve {
  background-color: #fff;
  padding: 8vw 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #solve {
    padding: 12vw 0;
  }
}
@media screen and (max-width: 768px) {
  #solve {
    padding: 18vw 0;
  }
}
#solve .solve {
  width: 60%;
  margin: auto;
  color: #000;
  position: relative;
}
@media screen and (max-width: 768px) {
  #solve .solve {
    width: 95%;
  }
}
#solve .solve::before {
  position: absolute;
  content: "";
  width: 2px;
  height: 15vw;
  background-color: #000;
  bottom: 0;
  left: 0%;
  transform: rotate(-30deg);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #solve .solve::before {
    left: -15%;
  }
}
@media screen and (max-width: 768px) {
  #solve .solve::before {
    display: none;
  }
}
#solve .solve::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 15vw;
  background-color: #000;
  bottom: 0;
  right: 0%;
  transform: rotate(30deg);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #solve .solve::after {
    right: -15%;
  }
}
@media screen and (max-width: 768px) {
  #solve .solve::after {
    display: none;
  }
}
#solve .solve h4 {
  text-align: center;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #solve .solve h4 {
    margin-bottom: 6vw;
  }
}
#solve .solve p {
  text-align: center;
}
@media screen and (max-width: 768px) {
  #solve .solve p {
    text-align: start;
  }
}

#contents .contents {
  padding: 8vw 0;
}
@media screen and (max-width: 768px) {
  #contents .contents {
    padding: 14vw 0;
  }
}
#contents .contents .contents_list ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 95%;
  margin: auto;
  flex-wrap: wrap;
}
#contents .contents .contents_list ul li {
  width: 30%;
  margin-bottom: 4vw;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contents .contents .contents_list ul li {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #contents .contents .contents_list ul li {
    width: 90%;
    margin: auto;
    margin-bottom: 8vw;
  }
}
#contents .contents .contents_list ul li:nth-child(6) {
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  #contents .contents .contents_list ul li:nth-child(6) {
    display: none;
  }
}
#contents .contents .contents_list ul li a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}
#contents .contents .contents_list ul li a .banner {
  width: 100%;
  height: 15vw;
  position: relative;
}
@media screen and (max-width: 768px) {
  #contents .contents .contents_list ul li a .banner {
    height: 30vw;
  }
}
#contents .contents .contents_list ul li a .banner img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#contents .contents .contents_list ul li a .banner::after {
  position: absolute;
  content: "";
  width: 95%;
  height: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
}
#contents .contents .contents_list ul li a .banner .banner_bg {
  transition: all 0.4s;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(51, 51, 51, 0.3);
}
#contents .contents .contents_list ul li a .banner_text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translate(0%, -50%);
  color: #fff;
}
#contents .contents .contents_list ul li a .banner_text p {
  line-height: 2vw;
}
@media screen and (max-width: 768px) {
  #contents .contents .contents_list ul li a .banner_text p {
    line-height: 8vw;
  }
}
#contents .contents .contents_list ul li a .banner_text h4 {
  letter-spacing: 0.4vw;
  font-family: "fot-tsukuaoldmin-pr6n", sans-serif;
}
@media screen and (max-width: 768px) {
  #contents .contents .contents_list ul li a .banner_text h4 {
    font-family: sans-serif;
  }
}
#contents .contents .contents_list ul li a .banner_button {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate(0, -50%);
  border-radius: 50%;
  width: 3.5vw;
  height: 3.5vw;
  border: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #contents .contents .contents_list ul li a .banner_button {
    width: 6vw;
    height: 6vw;
  }
}

#top_company {
  padding: 8vw 0;
}
#top_company .top_company {
  position: relative;
}
#top_company .top_company::after {
  position: absolute;
  z-index: -1;
  content: "";
  top: 5%;
  right: 0;
  width: 80%;
  height: 75vh;
  background-color: #f1f1f1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company .top_company::after {
    height: 50vh;
  }
}
@media screen and (max-width: 768px) {
  #top_company .top_company::after {
    top: -10%;
  }
}
#top_company .top_company .top_title {
  text-align: center;
}
#top_company .top_company .company_contents {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company .top_company .company_contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #top_company .top_company .company_contents {
    width: 95%;
    flex-flow: column-reverse;
  }
}
#top_company .top_company .company_contents .top_company_image {
  width: 30%;
}
@media screen and (max-width: 768px) {
  #top_company .top_company .company_contents .top_company_image {
    width: 100%;
    height: 30vw;
  }
}
#top_company .top_company .company_contents .top_company_image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #top_company .top_company .company_contents .top_company_image img {
    height: 100%;
  }
}
#top_company .top_company .company_contents table {
  width: 60%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company .top_company .company_contents table {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  #top_company .top_company .company_contents table {
    width: 100%;
  }
}
#top_company .top_company .company_contents table tr th, #top_company .top_company .company_contents table tr td {
  padding: 1vw 0;
}
@media screen and (max-width: 768px) {
  #top_company .top_company .company_contents table tr th, #top_company .top_company .company_contents table tr td {
    padding: 4vw;
    font-size: 4vw;
  }
}
#top_company .top_company .company_contents table tr th {
  width: 40%;
  text-align: end;
  padding-right: 2vw;
}
@media screen and (max-width: 768px) {
  #top_company .top_company .company_contents table tr th {
    width: 25%;
  }
}
#top_company .top_company .company_contents table tr td {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #top_company .top_company .company_contents table tr td {
    width: 75%;
  }
}
#top_company .top_company .map {
  width: 80%;
  margin: 8vw auto;
}
@media screen and (max-width: 768px) {
  #top_company .top_company .map {
    width: 95%;
  }
}
#top_company .top_company .map iframe {
  width: 100%;
}

#information {
  background-color: #f1f1f1;
}
#information .information {
  margin-bottom: 8vw;
  padding: 4vw 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #information .information {
    padding: 8vw 0;
  }
}
@media screen and (max-width: 768px) {
  #information .information {
    padding: 12vw 0;
  }
}
#information .information .information_contents ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #information .information .information_contents ul {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #information .information .information_contents ul {
    width: 95%;
  }
}
#information .information .information_contents ul li {
  width: 30%;
  height: 20vw;
  position: relative;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #information .information .information_contents ul li {
    width: 45%;
    margin-bottom: 5vw;
  }
}
#information .information .information_contents ul li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}
#information .information .information_contents ul li .information_text {
  position: absolute;
  width: 50%;
  bottom: 0;
  left: 0;
  padding: 0.5vw 1vw;
  background-color: #fff;
  color: #fff;
}

#voice {
  display: none !important;
  margin-bottom: 8vw;
}
#voice .voice .voice_contents .voice_content {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 80%;
  margin: auto;
  padding: 2vw;
  background-color: #fff;
  margin-bottom: 2vw;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #voice .voice .voice_contents .voice_content {
    width: 90%;
    padding: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #voice .voice .voice_contents .voice_content {
    width: 95%;
    flex-flow: column;
    padding: 6vw;
    margin-bottom: 5vw;
  }
}
#voice .voice .voice_contents .voice_content::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 97%;
  height: 87%;
  background-color: rgba(0, 0, 0, 0);
  border: 3px solid #00B900;
}
@media screen and (max-width: 768px) {
  #voice .voice .voice_contents .voice_content::after {
    width: 92%;
    height: 95%;
  }
}
#voice .voice .voice_contents .voice_content .voice_image {
  width: 15%;
}
@media screen and (max-width: 768px) {
  #voice .voice .voice_contents .voice_content .voice_image {
    width: 40%;
  }
}
#voice .voice .voice_contents .voice_content .voice_image img {
  width: 100%;
}
#voice .voice .voice_contents .voice_content .voice_writing {
  width: 70%;
}
@media screen and (max-width: 768px) {
  #voice .voice .voice_contents .voice_content .voice_writing {
    width: 90%;
  }
}
#voice .voice .voice_contents .voice_content .voice_writing .name {
  font-weight: 600;
  margin-bottom: 1vw;
  font-size: 1.4vw;
  color: #d6b37e;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #voice .voice .voice_contents .voice_content .voice_writing .name {
    font-size: 2.4vw;
    margin-bottom: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #voice .voice .voice_contents .voice_content .voice_writing .name {
    font-size: 4vw;
    margin-bottom: 4vw;
  }
}
#voice .voice .voice_contents .voice_content .voice_writing .text {
  font-family: sans-serif;
  line-height: 2vw;
  font-size: 0.9vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #voice .voice .voice_contents .voice_content .voice_writing .text {
    line-height: 3vw;
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #voice .voice .voice_contents .voice_content .voice_writing .text {
    line-height: 4vw;
    letter-spacing: 0.6vw;
    font-size: 2.8vw;
  }
}

#flow {
  background-color: #f1f1f1;
  padding: 8vw 0;
}
@media screen and (max-width: 768px) {
  #flow {
    padding: 12vw 0;
  }
}
#flow .flow .flow_title {
  width: 80%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #flow .flow .flow_title {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #flow .flow .flow_title {
    width: 90%;
  }
}
#flow .flow .flow_title h4 {
  letter-spacing: 0.5vw;
  color: #333;
}
#flow .flow .flow_title p {
  color: #d6b37e;
}
#flow .flow .flow_contents {
  width: 60%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #flow .flow .flow_contents {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #flow .flow .flow_contents {
    width: 90%;
  }
}
#flow .flow .flow_contents ul {
  list-style: none;
}
#flow .flow .flow_contents ul li {
  z-index: 10;
  margin-bottom: 6vw;
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #flow .flow .flow_contents ul li {
    margin-bottom: 8vw;
  }
}
@media screen and (max-width: 768px) {
  #flow .flow .flow_contents ul li {
    margin-bottom: 18vw;
  }
}
#flow .flow .flow_contents ul li:last-child p::after {
  display: none;
}
#flow .flow .flow_contents ul li p {
  position: relative;
  height: 14vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #flow .flow .flow_contents ul li p {
    height: 20vw;
  }
}
@media screen and (max-width: 768px) {
  #flow .flow .flow_contents ul li p {
    height: 30vw;
  }
}
#flow .flow .flow_contents ul li p::after {
  position: absolute;
  z-index: 1;
  content: "";
  top: 100%;
  left: 50%;
  transform: translate(-50%, 0%);
  border-top: 50px solid #00B900;
  border-right: 50px solid transparent;
  border-bottom: 50px solid transparent;
  border-left: 50px solid transparent;
}
#flow .flow .flow_contents ul li h4 {
  padding: 2vw 0;
  padding-left: 15vw;
  background-color: #00B900;
  color: #fff;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #flow .flow .flow_contents ul li h4 {
    padding: 3vw 0;
    padding-left: 20vw;
  }
}
@media screen and (max-width: 768px) {
  #flow .flow .flow_contents ul li h4 {
    padding: 5vw 0;
    padding-left: 25vw;
  }
}
#flow .flow .flow_contents ul li h4 span {
  position: absolute;
  top: 50%;
  left: 2%;
  transform: translate(0, -50%);
  font-size: 3vw;
  color: #fff;
  font-style: italic;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #flow .flow .flow_contents ul li h4 span {
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #flow .flow .flow_contents ul li h4 span {
    font-size: 5vw;
  }
}
#flow .flow .flow_contents ul li p {
  padding: 1.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #flow .flow .flow_contents ul li p {
    padding: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  #flow .flow .flow_contents ul li p {
    padding: 4vw;
  }
}
#flow .flow .flow_contents ul li p a {
  text-decoration: none;
}
#flow .flow .flow_contents ul li p a button {
  padding: 1vw 4vw;
  background-color: #fff;
  color: #fff;
  border: none;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #flow .flow .flow_contents ul li p a button {
    padding: 2vw 6vw;
  }
}
#flow .flow .flow_contents ul li p a button:hover {
  background-color: #fff;
  color: #fff;
  border: 1px solid #fff;
}

.accordion-container {
  margin: 50px auto 0;
  width: 60%;
  text-align: start;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .accordion-container {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .accordion-container {
    width: 95%;
  }
}
.accordion-container .more {
  position: relative;
  width: 20%;
  margin: 4vw auto;
  color: #fff;
}
.accordion-container .more::after {
  position: absolute;
  content: "+";
  top: 50%;
  right: 5%;
  color: #fff;
  transform: translate(0, -50%);
}
.accordion-container .more_contents {
  display: none;
}

.active {
  display: block !important;
}

.accordion-list:not(:first-child) {
  margin-top: 1vw;
}
@media screen and (max-width: 768px) {
  .accordion-list:not(:first-child) {
    margin-top: 2.4vw;
  }
}

.accordion-title {
  background: #fff;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 20px 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .accordion-title {
    font-size: 4vw;
  }
}
.accordion-title span {
  display: inline-block;
  font-size: 2vw;
  margin-right: 1vw;
}
@media screen and (max-width: 768px) {
  .accordion-title span {
    font-size: 5vw;
  }
}

.accordion-title:before {
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  height: 2px;
  width: 15px;
  background: #fff;
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}

.accordion-title:after {
  position: absolute;
  content: "";
  top: 50%;
  right: 25px;
  height: 2px;
  width: 15px;
  background: #fff;
  transition: all 0.3s ease-in-out;
}

.accordion-title.open:before {
  transform: rotate(180deg);
}

.accordion-title.open:after {
  opacity: 0;
}

.accordion-text {
  color: #333;
  border-left: 2px solid #f1f1f1;
  border-right: 2px solid #f1f1f1;
  border-bottom: 2px solid #f1f1f1;
  display: none;
  padding: 20px 40px;
}
@media screen and (max-width: 768px) {
  .accordion-text p {
    font-size: 3vw;
  }
}
.accordion-text span {
  display: inline-block;
  font-size: 2vw;
  margin-right: 1vw;
}
@media screen and (max-width: 768px) {
  .accordion-text span {
    font-size: 5vw;
  }
}

#top_service {
  background-color: rgba(34, 109, 46, 0.08);
}
#top_service .top_service_title h2 {
  color: #fff;
  background-color: #226d2e;
  text-align: center;
  margin-bottom: 3rem;
  padding: 1rem 0;
}
#top_service .top_service {
  width: 90%;
  margin: 0 auto 3rem auto;
}
#top_service .top_service ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 2rem;
}
#top_service .top_service ul li {
  width: 100%;
  padding-bottom: 3rem;
  margin-bottom: 4rem;
  border-bottom: dashed 1px #71ae58;
}
#top_service .top_service ul li:nth-of-type(even) dl {
  flex-direction: row-reverse;
}
#top_service .top_service ul li .service_head {
  position: relative;
  z-index: 1;
  margin: 2rem 0;
}
#top_service .top_service ul li .service_head h3 {
  font-size: 1.8rem;
  color: #666666;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service ul li .service_head h3 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service ul li .service_head h3 {
    font-size: 1rem;
  }
}
#top_service .top_service ul li .service_head h3:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3em;
  height: 3em;
  background-color: rgba(117, 176, 93, 0.5);
  border-radius: 50%;
  z-index: -1;
}
#top_service .top_service ul li dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#top_service .top_service ul li dl dt {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #top_service .top_service ul li dl dt {
    width: 100%;
  }
}
#top_service .top_service ul li dl dt .top_service_img {
  height: 40vh;
  margin: 0 auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  #top_service .top_service ul li dl dt .top_service_img {
    height: 30vh;
  }
}
#top_service .top_service ul li dl dd {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #top_service .top_service ul li dl dd {
    width: 100%;
  }
}
#top_service .top_service ul li dl dd .top_service_text {
  font-size: 1rem;
  background-color: #fff;
  border-radius: 1rem;
  padding: 2rem;
}
#top_service .top_service ul li dl dd .top_service_text .top_service_link {
  font-size: 1rem;
  display: block;
}
#top_service .top_service ul li dl dd .top_service_text .top_service_link a {
  margin-top: 1rem;
  display: block;
  color: #226d2e;
  text-align: center;
  padding: 1rem 0;
  background-color: #fff;
  border: solid 1px #226d2e;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.4s;
}
#top_service .top_service ul li dl dd .top_service_text .top_service_link a:hover {
  color: #fff;
  background-color: #226d2e;
}
#top_service .top_service ul li dl dd .top_service_text .top_service_link a i {
  padding-left: 1rem;
}

#banner .banner ul li {
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 13rem;
  padding-bottom: 8rem;
}
@media screen and (max-width: 768px) {
  #banner .banner ul li {
    background-size: 50%;
    padding-bottom: 12rem;
  }
}
#banner .banner ul li .contents_link {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #banner .banner ul li .contents_link {
    width: 95%;
  }
}
#banner .banner ul li .contents_link a {
  margin-top: 2rem;
  text-align: center;
  padding: 0.5rem 0;
  display: block;
  color: #fff;
  background-color: #eb785b;
  border: solid 1px #eb785b;
  text-decoration: none;
  transition: all 0.4s;
  border-radius: 1rem;
  padding: 1.5rem;
}
#banner .banner ul li .contents_link a:hover {
  color: #eb785b;
  background-color: #fff;
}
#banner .banner ul li .contents_link a i {
  padding-left: 1rem;
}
#banner .banner ul li h3 {
  font-size: 2.5rem;
  color: #226d2e;
  padding: 1rem 0 2rem 0;
  text-align: center;
  margin-bottom: 3rem;
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #c6daca 50%, #c6daca 100%);
}
@media screen and (max-width: 768px) {
  #banner .banner ul li h3 {
    margin-bottom: 0;
  }
}
#banner .banner ul li h3 span {
  color: #fff;
  display: block;
  font-size: 1.5rem;
}
#banner .banner ul li:nth-of-type(odd) dl {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
}
#banner .banner ul li:nth-of-type(odd) dl dt {
  width: 50%;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  #banner .banner ul li:nth-of-type(odd) dl dt {
    width: 100%;
  }
}
#banner .banner ul li:nth-of-type(odd) dl dd {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #banner .banner ul li:nth-of-type(odd) dl dd {
    width: 100%;
  }
}
#banner .banner ul li:nth-of-type(odd) dl dd img {
  width: 100%;
}
#banner .banner ul li dl {
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#banner .banner ul li dl dt {
  width: 50%;
  padding: 2rem;
}
@media screen and (max-width: 768px) {
  #banner .banner ul li dl dt {
    width: 100%;
  }
}
#banner .banner ul li dl dt a {
  margin-top: 2rem;
  text-align: center;
  padding: 0.5rem 0;
  display: block;
  color: #eb785b;
  background-color: #fff;
  border: solid 1px #eb785b;
  text-decoration: none;
  transition: all 0.4s;
}
#banner .banner ul li dl dt a:hover {
  color: #fff;
  background-color: #eb785b;
}
#banner .banner ul li dl dd {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #banner .banner ul li dl dd {
    width: 100%;
  }
}
#banner .banner ul li dl dd .banner_img {
  height: 26vw;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  #banner .banner ul li dl dd .banner_img {
    height: 20vw;
  }
}

#news {
  padding: 5vw 0 5vw 0;
  background-color: rgba(34, 109, 46, 0.08);
}
#news .news {
  position: relative;
}
@media screen and (max-width: 768px) {
  #news .news {
    padding: 3rem 0;
  }
}
#news .news .news_contents {
  width: 85%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news .news_contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #news .news .news_contents {
    width: 90%;
  }
}
#news .news .news_contents .news_title {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}
#news .news .news_contents .news_title h2 {
  font-size: 2.5rem;
  text-align: center;
}
#news .news .news_contents .news_title h2 span {
  color: #226d2e;
  font-size: 60%;
  font-weight: 500;
  letter-spacing: 5px;
  display: block;
}
#news .news .news_contents .news_title h2 i {
  padding-right: 0.5rem;
}
#news .news .news_contents .news_title .top_contents_btn {
  display: flex;
  text-align: center;
  margin: 0 auto;
  justify-content: start;
  z-index: 2;
  padding-top: 2rem;
}
@media screen and (max-width: 768px) {
  #news .news .news_contents .news_title .top_contents_btn {
    bottom: -7rem;
  }
}
#news .news .news_contents .news_title .top_contents_btn a {
  display: table;
  background-color: #226d2e;
  text-decoration: none;
  color: #fff;
  padding: 0.5rem 3rem;
  transition: 0.4s all;
  border-radius: 5rem;
  border: solid 1px #226d2e;
}
#news .news .news_contents .news_title .top_contents_btn a:hover {
  opacity: 0.75;
}
@media screen and (max-width: 768px) {
  #news .news .news_contents .news_title .top_contents_btn a {
    padding: 1rem;
  }
}
#news .news .news_contents ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  margin-bottom: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news .news_contents ul {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  #news .news .news_contents ul {
    width: 100%;
  }
}
#news .news .news_contents ul li {
  width: 23%;
  margin: 1%;
  text-decoration: none;
  color: #226d2e;
  background-color: #ffffff;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  #news .news .news_contents ul li {
    width: 100%;
    margin-bottom: 8vw;
  }
}
#news .news .news_contents ul li a {
  color: #212121;
  padding: 1rem;
  display: block;
  text-decoration: none;
  transition: all 0.4s;
}
#news .news .news_contents ul li a:hover {
  opacity: 0.75;
}
#news .news .news_contents ul li a .news-img {
  height: 17vw;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-color: #eee;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  #news .news .news_contents ul li a .news-img {
    height: 55vw;
  }
}
#news .news .news_contents ul li a .outline {
  padding: 1rem 0;
}
#news .news .news_contents ul li a .outline dl.category_style {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
#news .news .news_contents ul li a .outline dl.category_style dd {
  font-size: 0.75rem;
  padding: 0.25rem;
  background-color: #fff;
  border: solid 1px #226d2e;
  margin-bottom: 0.5rem;
}
#news .news .news_contents ul li a .outline .date {
  font-size: 0.85rem;
  letter-spacing: 0.1vw;
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: solid 1px #226d2e;
}
#news .news .news_contents ul li a .outline .title {
  font-weight: 600;
  color: #226d2e;
}
@media screen and (max-width: 768px) {
  #news .news .news_contents ul li a .outline .title {
    padding-top: 0.5rem;
  }
}

#news_single {
  background-color: rgba(34, 109, 46, 0.08);
}
#news_single .news .news_contents {
  padding: 8vw 0;
}
#news_single .news .news_contents .news_content ul {
  width: 90%;
  margin: auto;
  list-style: none;
  background-color: #fff;
  border-radius: 1rem;
  padding: 3rem;
}
@media screen and (max-width: 768px) {
  #news_single .news .news_contents .news_content ul {
    width: 95%;
  }
}
#news_single .news .news_contents .news_content ul li {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #news_single .news .news_contents .news_content ul li {
    flex-flow: column;
  }
}
#news_single .news .news_contents .news_content ul li .list_left {
  width: 45%;
}
@media screen and (max-width: 768px) {
  #news_single .news .news_contents .news_content ul li .list_left {
    width: 90%;
    margin: auto;
  }
}
#news_single .news .news_contents .news_content ul li .list_left .thumb {
  width: 100%;
  height: 30vw;
  position: relative;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  #news_single .news .news_contents .news_content ul li .list_left .thumb {
    height: 50vw;
  }
}
#news_single .news .news_contents .news_content ul li .list_left .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#news_single .news .news_contents .news_content ul li .list_left .thumb .status {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  text-align: center;
  color: #212121;
}
#news_single .news .news_contents .news_content ul li .list_left .images {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #news_single .news .news_contents .news_content ul li .list_left .images {
    margin-bottom: 4vw;
  }
}
#news_single .news .news_contents .news_content ul li .list_left .images div {
  width: 48%;
  height: 14vw;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  #news_single .news .news_contents .news_content ul li .list_left .images div {
    height: 30vw;
  }
}
#news_single .news .news_contents .news_content ul li .list_left .images div:nth-child(odd) {
  margin-right: 1vw;
}
#news_single .news .news_contents .news_content ul li .list_left .images div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#news_single .news .news_contents .news_content ul li .outline .outline_title {
  width: 100%;
}
#news_single .news .news_contents .news_content ul li .outline .outline_title .title {
  font-size: 2vw;
  margin-bottom: 2vw;
  padding-bottom: 0.5rem;
  font-weight: 600;
  color: #226d2e;
  border-bottom: 1px solid #dbdbdb;
}
@media screen and (max-width: 768px) {
  #news_single .news .news_contents .news_content ul li .outline .outline_title .title {
    font-size: 3.6vw;
  }
}

#access {
  background-color: rgba(34, 109, 46, 0.08);
  padding-top: 5rem;
}
#access .access .access_contents {
  width: 85%;
  margin: auto;
  padding-bottom: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #access .access .access_contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #access .access .access_contents {
    width: 95%;
  }
}
#access .access .access_contents h4 {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  color: #fff;
  background-color: #226d2e;
}

#service .service {
  overflow: hidden;
  padding-bottom: 3rem;
  background-color: rgba(34, 109, 46, 0.08);
}
#service .service:first-child {
  padding-top: 3rem;
}
#service .service:nth-child(odd) .service_contents {
  margin: auto auto auto 0;
  border-radius: 0 1rem 1rem 0;
}
#service .service:nth-child(even) .service_contents {
  margin: auto 0 auto auto;
  border-radius: 1rem 0 0 1rem;
}
#service .service .service_contents {
  padding: 5rem;
  width: 95%;
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents {
    width: 95%;
    padding: 3rem;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents {
    width: 95%;
    padding: 1rem;
  }
}
#service .service .service_contents .service_headline {
  margin-bottom: 1rem;
}
#service .service .service_contents .service_headline h4 {
  color: #226d2e;
  font-size: 1.5rem;
  padding: 2rem 0 2rem 7rem;
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  #service .service .service_contents .service_headline h4 {
    font-size: 1.3rem;
    background-size: 40%;
    background-position: top center;
    padding: 7rem 0 0rem 0rem;
    text-align: center;
  }
}
#service .service .service_contents .service_textarea {
  padding-top: 1rem;
  border-top: solid 1px #226d2e;
}
#service .service .service_contents .service_textarea p {
  font-size: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents .service_textarea p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents .service_textarea p {
    font-size: 1rem;
  }
}
#service #service01 .service_contents .service_textarea dl {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #service #service01 .service_contents .service_textarea dl {
    display: block;
  }
}
#service #service01 .service_contents .service_textarea dl dt {
  width: 49%;
}
@media screen and (max-width: 768px) {
  #service #service01 .service_contents .service_textarea dl dt {
    width: 100%;
    margin-bottom: 1rem;
  }
}
#service #service01 .service_contents .service_textarea dl dt h5 {
  padding: 1rem;
  text-align: center;
  color: #fff;
  background-color: #226d2e;
}
#service #service01 .service_contents .service_textarea dl dt p {
  font-size: 1.5rem;
  height: 20vw;
  line-height: 20vw;
  text-align: center;
  border: solid 1px #ddd;
}
@media screen and (max-width: 768px) {
  #service #service01 .service_contents .service_textarea dl dt p {
    height: auto;
    line-height: auto;
  }
}
#service #service01 .service_contents .service_textarea dl dd {
  width: 49%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #service #service01 .service_contents .service_textarea dl dd {
    width: 100%;
  }
}
#service #service01 .service_contents .service_textarea dl dd h5 {
  padding: 1rem;
  text-align: center;
  color: #fff;
  background-color: #226d2e;
}
#service #service01 .service_contents .service_textarea dl dd p {
  font-size: 1.5rem;
  height: 20vw;
  line-height: 20vw;
  text-align: center;
  border: solid 1px #ddd;
}
#service #service02 .service_contents .service_textarea .kyoukaisen, #service #service03 .service_contents .service_textarea .kyoukaisen, #service #service04 .service_contents .service_textarea .kyoukaisen, #service #service05 .service_contents .service_textarea .kyoukaisen {
  padding-top: 2rem;
  margin-bottom: 2rem;
  border-width: 0;
  border-bottom: solid 1px #ddd;
}
#service #service02 .service_contents .service_textarea h4, #service #service03 .service_contents .service_textarea h4, #service #service04 .service_contents .service_textarea h4, #service #service05 .service_contents .service_textarea h4 {
  font-size: 1.2rem;
}
#service #service02 .service_contents .service_textarea strong, #service #service03 .service_contents .service_textarea strong, #service #service04 .service_contents .service_textarea strong, #service #service05 .service_contents .service_textarea strong {
  color: #226d2e;
}
#service #service02 .service_contents .service_textarea h5, #service #service03 .service_contents .service_textarea h5, #service #service04 .service_contents .service_textarea h5, #service #service05 .service_contents .service_textarea h5 {
  font-size: 1rem;
  padding: 1rem 0 0.5rem 0;
  color: #226d2e;
  margin-top: 0.5rem;
}
#service #service02 .service_contents .service_textarea .main_list, #service #service03 .service_contents .service_textarea .main_list, #service #service04 .service_contents .service_textarea .main_list, #service #service05 .service_contents .service_textarea .main_list {
  margin: 0;
  list-style: none;
}
#service #service02 .service_contents .service_textarea .main_list h5, #service #service03 .service_contents .service_textarea .main_list h5, #service #service04 .service_contents .service_textarea .main_list h5, #service #service05 .service_contents .service_textarea .main_list h5 {
  border-bottom: solid 2px #226d2e;
  font-size: 1rem;
  padding: 0.5rem 0;
  color: #226d2e;
  margin-bottom: 0.5rem;
}
#service #service02 .service_contents .service_textarea .main_list .sub_list, #service #service03 .service_contents .service_textarea .main_list .sub_list, #service #service04 .service_contents .service_textarea .main_list .sub_list, #service #service05 .service_contents .service_textarea .main_list .sub_list {
  margin-left: 2rem;
}
#service #service02 .service_contents .service_textarea ol, #service #service03 .service_contents .service_textarea ol, #service #service04 .service_contents .service_textarea ol, #service #service05 .service_contents .service_textarea ol {
  margin-left: 2rem;
}
#service #service02 .service_contents .service_textarea ol li h4, #service #service03 .service_contents .service_textarea ol li h4, #service #service04 .service_contents .service_textarea ol li h4, #service #service05 .service_contents .service_textarea ol li h4 {
  color: #226d2e;
  font-size: 1.5rem;
  padding: 2rem 0 2rem 7rem;
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
}
#service #service02 .service_contents .service_textarea ol li h5, #service #service03 .service_contents .service_textarea ol li h5, #service #service04 .service_contents .service_textarea ol li h5, #service #service05 .service_contents .service_textarea ol li h5 {
  font-size: 1rem;
  color: #226d2e;
}
#service #service04 .service_contents .service_textarea .main_list h4 {
  margin-left: -2rem;
}

#company {
  background-color: rgba(34, 109, 46, 0.08);
}
#company .company .company_contents {
  width: 70%;
  margin: auto;
  padding: 5rem 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company .company_contents {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents {
    width: 95%;
  }
}
#company .company .company_contents table {
  display: block;
  background-color: #fff;
  border-collapse: collapse;
  width: 100%;
  padding: 3rem;
  border-radius: 1rem;
}
#company .company .company_contents table tbody {
  width: 100%;
  display: inline-table;
}
#company .company .company_contents table tbody tr {
  border-bottom: 1px solid #226d2e;
}
#company .company .company_contents table tbody tr th, #company .company .company_contents table tbody tr td {
  color: #fff;
  padding: 1.4vw;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company .company_contents table tbody tr th, #company .company .company_contents table tbody tr td {
    padding: 2vw;
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table tbody tr th, #company .company .company_contents table tbody tr td {
    padding: 3vw;
    font-size: 2.2vw;
  }
}
#company .company .company_contents table tbody tr th {
  color: #226d2e;
  width: 30%;
}
#company .company .company_contents table tbody tr td {
  color: #000;
  width: 70%;
}

#lower_main .lower_main {
  position: relative;
  width: 100%;
  margin-bottom: 12vw;
  height: 50vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower_main .lower_main {
    height: 35vh;
    margin-bottom: 18vw;
  }
}
@media screen and (max-width: 768px) {
  #lower_main .lower_main {
    height: 35vh;
    margin-bottom: 24vw;
  }
}
#lower_main .lower_main .lower_image {
  width: 70%;
  height: 100%;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower_main .lower_main .lower_image {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #lower_main .lower_main .lower_image {
    width: 85%;
  }
}
#lower_main .lower_main .lower_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#lower_main .lower_main .lower_title {
  position: absolute;
  top: 40%;
  left: 15%;
  padding: 4vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  background-color: #333;
  color: #fff;
  width: 30%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower_main .lower_main .lower_title {
    top: 50%;
    padding: 8vw;
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #lower_main .lower_main .lower_title {
    top: 50%;
    padding: 8vw;
    width: 60%;
    left: 0;
  }
}
#lower_main .lower_main .lower_title h2 {
  color: #fff;
  letter-spacing: 0.6vw;
  margin-bottom: 0.3vw;
}
@media screen and (max-width: 768px) {
  #lower_main .lower_main .lower_title h2 {
    letter-spacing: 1.5vw;
  }
}

#contact {
  background-color: rgba(34, 109, 46, 0.08);
}
#contact .contact_form {
  width: 80%;
  margin: auto;
  padding: 5rem 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact_form {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact_form {
    width: 90%;
    padding: 4vw;
    margin-bottom: 18vw;
  }
}
#contact .contact_form p {
  text-align: center;
  margin-bottom: 3rem;
}
#contact form {
  width: 100%;
}
#contact form table {
  width: 100%;
  margin-bottom: 40px;
  border-collapse: collapse;
  border-top: 1px solid #d7bd48;
}
@media screen and (max-width: 768px) {
  #contact form table tr {
    display: flex;
    flex-flow: column;
  }
}
#contact form table tr:first-child td {
  display: block;
  width: 100%;
}
#contact form table tr:first-child td input {
  width: 50%;
}
#contact form table tr th, #contact form table tr td {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact form table tr th, #contact form table tr td {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #contact form table tr th, #contact form table tr td {
    font-size: 3vw;
  }
}
#contact form table tr th {
  padding: 40px 0;
  width: 42%;
  text-align: end;
  padding-right: 80px;
  border-bottom: 1px solid #d7bd48;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact form table tr th {
    width: 35%;
    padding-right: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #contact form table tr th {
    width: 100%;
    border-bottom: none;
    text-align: start;
    padding: 10px 0;
    padding-top: 20px;
    padding-left: 0px;
  }
}
#contact form table tr th span {
  padding: 10px;
  background-color: red;
  color: #fff;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  #contact form table tr th span {
    padding: 5px;
  }
}
#contact form table tr td {
  padding: 40px 0;
  width: 65%;
  border-bottom: 1px solid #d7bd48;
  padding-right: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact form table tr td {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  #contact form table tr td {
    width: 100%;
    padding: 10px 0;
    padding-bottom: 20px;
    padding-right: 0;
  }
}
#contact form table tr td input {
  width: 80%;
  height: 50px;
  padding-left: 5px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact form table tr td input {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #contact form table tr td input {
    width: 100%;
  }
}
#contact form table tr td textarea {
  width: 80%;
  height: 120px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact form table tr td textarea {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #contact form table tr td textarea {
    width: 100%;
  }
}
#contact form table tr:nth-child(5) td input {
  width: 20% !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact form table tr:nth-child(5) td input {
    width: 25% !important;
  }
}
@media screen and (max-width: 768px) {
  #contact form table tr:nth-child(5) td input {
    width: 29% !important;
  }
}
#contact form table tr:nth-child(4) th span {
  background-color: blue;
}
#contact form table tr:nth-child(4) td input {
  width: 20% !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact form table tr:nth-child(4) td input {
    width: 25% !important;
  }
}
@media screen and (max-width: 768px) {
  #contact form table tr:nth-child(4) td input {
    width: 29% !important;
  }
}
#contact form table tr:nth-child(6) th span {
  background-color: blue;
}
#contact form table tr:nth-child(7) th span {
  background-color: blue;
}
#contact form table tr:nth-child(8) th span {
  background-color: blue;
}
#contact form table tr:nth-child(9) th span {
  background-color: blue;
}
#contact form table tr:nth-child(10) th span {
  background-color: blue;
}
#contact form table tr:nth-child(10) td input {
  width: 4%;
  height: auto;
}
#contact form table tr:nth-child(11) th span {
  background-color: blue;
}
#contact form table tr:nth-child(11) td input {
  width: 4%;
  height: auto;
}
#contact form table tr:nth-child(12) th span {
  background-color: blue;
}
#contact form table tr:nth-child(12) td input {
  width: 4%;
  height: auto;
}
#contact form table tr:nth-child(13) th span {
  background-color: blue;
}
#contact form table tr:nth-child(13) td input {
  width: 4%;
  height: auto;
}
#contact form table tr:nth-child(14) th span {
  background-color: blue;
}
#contact form table tr:nth-child(14) td input {
  width: 4%;
  height: auto;
}
#contact form table tr:nth-child(15) th span {
  background-color: blue;
}
#contact form table tr:nth-child(15) td input {
  width: 4%;
  height: auto;
}
#contact form .agree {
  text-align: center;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  #contact form .agree {
    margin: 10px 0;
  }
}
#contact form .submit {
  text-align: center;
}
#contact form .submit input {
  padding: 20px 180px;
  font-size: 18px;
  border: none;
  background-color: #555;
  color: #fff;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #contact form .submit input {
    padding: 10px 90px;
  }
}
#contact form .submit input:hover {
  color: #555;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #555;
}
#contact form .submit input[name=submitBack] {
  padding: 20px 90px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  #contact form .submit input[name=submitBack] {
    padding: 10px 45px;
    margin-right: 10px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}
#contact form .submit input[name=confirm] {
  padding: 20px 90px;
}
@media screen and (max-width: 768px) {
  #contact form .submit input[name=confirm] {
    padding: 10px 45px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}

#lower_main .lower_main {
  position: relative;
  width: 100%;
  margin-bottom: 12vw;
  height: 50vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower_main .lower_main {
    height: 35vh;
    margin-bottom: 18vw;
  }
}
@media screen and (max-width: 768px) {
  #lower_main .lower_main {
    height: 35vh;
    margin-bottom: 24vw;
  }
}
#lower_main .lower_main .lower_image {
  width: 70%;
  height: 100%;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower_main .lower_main .lower_image {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #lower_main .lower_main .lower_image {
    width: 85%;
  }
}
#lower_main .lower_main .lower_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#lower_main .lower_main .lower_title {
  position: absolute;
  top: 40%;
  left: 15%;
  padding: 4vw;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  background-color: #333;
  color: #fff;
  width: 30%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower_main .lower_main .lower_title {
    top: 50%;
    padding: 8vw;
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #lower_main .lower_main .lower_title {
    top: 50%;
    padding: 8vw;
    width: 60%;
    left: 0;
  }
}
#lower_main .lower_main .lower_title h2 {
  color: #fff;
  letter-spacing: 0.6vw;
  margin-bottom: 0.3vw;
}
@media screen and (max-width: 768px) {
  #lower_main .lower_main .lower_title h2 {
    letter-spacing: 1.5vw;
  }
}

#policy_main {
  height: 58vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #policy_main {
    height: 58vw;
  }
}
@media screen and (max-width: 768px) {
  #policy_main {
    height: 58vw;
  }
}
#policy_main .policy_main_contents {
  background-position: center;
  background-size: cover;
  width: 70%;
  height: 58vw;
  margin-top: 2%;
  margin-right: 2%;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 30px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #policy_main .policy_main_contents {
    width: 60%;
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #policy_main .policy_main_contents {
    width: 95%;
    height: 300px;
  }
}
#policy_main .policy_main_contents .policy_main_bg {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  position: relative;
}
#policy_main .policy_main_contents .policy_main_bg .policy_title {
  text-align: center;
  color: #31a7e5;
  padding: 30px;
  position: absolute;
  width: 100%;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.75);
  left: 0%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  #policy_main .policy_main_contents .policy_main_bg .policy_title {
    top: 130%;
    left: 5%;
    color: #fff;
  }
}
#policy_main .policy_main_contents .policy_main_bg .policy_title h2 {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 48px;
  letter-spacing: 3.5px;
}
@media screen and (max-width: 768px) {
  #policy_main .policy_main_contents .policy_main_bg .policy_title h2 {
    font-size: 36px;
  }
}

.policy_contents {
  width: 80%;
  margin: auto;
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .policy_contents {
    width: 90%;
  }
}
.policy_contents h2 {
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .policy_contents h2 {
    font-size: 15px;
  }
}
.policy_contents p {
  font-size: 15px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .policy_contents p {
    font-size: 10px;
  }
}

footer #footer_contact .footer_contact {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 28vw;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer_contact .footer_contact {
    height: 35vw;
  }
}
@media screen and (max-width: 768px) {
  footer #footer_contact .footer_contact {
    height: 80vw;
  }
}
footer #footer_contact .footer_contact .footer_contact_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(51, 51, 51, 0.6);
}
footer #footer_contact .footer_contact .footer_contact_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .footer_contact .footer_contact_title {
    width: 90%;
  }
}
footer #footer_contact .footer_contact .footer_contact_title p {
  margin-bottom: 0.8vw;
  font-family: sans-serif;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .footer_contact .footer_contact_title p {
    margin-bottom: 2vw;
  }
}
footer #footer_contact .footer_contact .footer_contact_title h2 {
  margin-bottom: 2vw;
  letter-spacing: 0.6vw;
  font-size: 4vw;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .footer_contact .footer_contact_title h2 {
    font-size: 8vw;
    margin-bottom: 8vw;
  }
}
footer #footer_contact .footer_contact .footer_contact_title .contact_btn a {
  text-decoration: none;
}
footer #footer_contact .footer_contact .footer_contact_title .contact_btn a button {
  border: 1px solid #fff;
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  padding: 1.5vw 6vw;
  transition: all 0.4s;
  letter-spacing: 0.2vw;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .footer_contact .footer_contact_title .contact_btn a button {
    padding: 3vw 12vw;
  }
}
footer #footer_contact .footer_contact .footer_contact_title .contact_btn a button:hover {
  background: #c9b789;
  border: none;
}
footer #footer .footer .footer_contact {
  background-color: #226d2e;
  padding: 3rem 0;
}
footer #footer .footer .footer_contact .footer_link {
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .footer_contact .footer_link {
    font-size: 0.7rem;
  }
}
footer #footer .footer .footer_contact .footer_link a {
  font-size: 1.5rem;
  color: #226d2e;
  background-color: #fff;
  display: inline-block;
  margin: 0 auto;
  border-radius: 3rem;
  text-decoration: none;
  padding: 1rem 2rem;
  transition: all 0.4s;
}
footer #footer .footer .footer_contact .footer_link a i {
  margin-right: 1rem;
}
footer #footer .footer .footer_contact .footer_link a:hover {
  color: #000;
  opacity: 0.75;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .footer_contact .footer_link a {
    font-size: 0.8rem;
  }
}
footer #footer .footer .access {
  width: 100%;
  padding: 3vw 0;
  margin: auto;
  background-position: center;
  background-size: cover;
}
footer #footer .footer .access .access_headline {
  width: 100%;
  text-align: center;
  margin-bottom: 3vw;
}
footer #footer .footer .access .access_headline h3 {
  font-size: 3vw;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .access_headline h3 {
    font-size: 1rem;
  }
}
footer #footer .footer .access .access_headline p a {
  color: #333;
}
footer #footer .footer .access .company_detail_group {
  width: 85%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: -2rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer .footer .access .company_detail_group {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .company_detail_group {
    display: block;
    margin-top: 2rem;
  }
}
footer #footer .footer .access .company_detail_group .company_detail {
  width: 60%;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .company_detail_group .company_detail {
    width: 100%;
  }
}
footer #footer .footer .access .company_detail_group .company_detail img {
  width: 80%;
  margin-bottom: 1rem;
  display: block;
  text-align: left;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .company_detail_group .company_detail img {
    width: 100%;
  }
}
footer #footer .footer .access .company_detail_group .company_detail h3 {
  margin-bottom: 0.6vw;
  color: #333;
  font-weight: 600;
}
footer #footer .footer .access .company_detail_group .company_detail p {
  margin-bottom: 0.3vw;
  font-family: sans-serif;
  color: #333;
  text-align: left;
  letter-spacing: -1px;
}
footer #footer .footer .access .company_detail_group .company_concept {
  width: 40%;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .company_detail_group .company_concept {
    width: 100%;
  }
}
footer #footer .footer .access .company_detail_group .company_concept img {
  width: 100%;
}
footer #footer .footer .map {
  width: 100%;
  height: 30vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer .footer .map {
    height: 35vw;
  }
}
@media screen and (max-width: 768px) {
  footer #footer .footer .map {
    height: 50vw;
  }
}
footer #footer .footer .map iframe {
  width: 100%;
  height: 100%;
}
footer #footer .footer .footer_menu {
  background-color: #c9b789;
  background-color: #333;
}
footer #footer .footer .footer_menu ul {
  padding: 2vw 4vw;
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .footer_menu ul {
    width: 95%;
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer #footer .footer .footer_menu ul li {
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .footer_menu ul li {
    width: 48%;
    margin: 4vw 0;
  }
}
footer #footer .footer .footer_menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 100%;
  transition: all 0.4s;
}
footer #footer .footer .footer_menu ul li a:hover {
  opacity: 0.75;
}
footer #footer .footer .footer_menu .copyright {
  text-align: center;
  color: #fff;
  padding-top: 0.6vw;
  padding-bottom: 0.5vw;
}
footer #footer .footer .footer_menu .copyright p {
  font-size: 100%;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .footer_menu .copyright p {
    padding-top: 2vw;
    padding-bottom: 1.5vw;
  }
}/*# sourceMappingURL=style.css.map */