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

html {
  font-size: 62.5%;
}

@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;
  }
}

body {
  overflow-x: hidden !important;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

#lower .lower {
  background-position: center;
  background-size: cover;
  width: 100vw;
  height: 30vw;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower {
    height: 45vw;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower {
    height: 60vw;
  }
}
#lower .lower .lower_headline {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #lower .lower .lower_headline {
    top: 55%;
  }
}
#lower .lower .lower_headline h2 {
  font-family: "Zen Maru Gothic", sans-serif;
}

p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1vw;
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  p {
    font-size: 1.8vw;
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 3.4vw;
    line-height: 8vw;
  }
}

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;
  }
}

.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);
}

header {
  z-index: 9999999999;
  position: fixed;
  width: 100%;
  background-color: #fff;
}
header #header_pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header #header_pc {
    display: none;
  }
}
header #header_pc .header_menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
}
header #header_pc .header_menu .header_menu_left {
  width: 60%;
  margin-right: 3vw;
}
header #header_pc .header_menu .header_menu_left .header_tel {
  text-align: end;
  margin-bottom: 0.5vw;
}
header #header_pc .header_menu .header_menu_left .header_tel a {
  font-size: 2vw;
  text-decoration: none;
  font-weight: 600;
  color: #009E4D;
  font-family: "Zen Maru Gothic", sans-serif;
}
header #header_pc .header_menu .header_menu_left .header_tel a i {
  margin-right: 0.5vw;
}
header #header_pc .header_menu .header_menu_left .header_menu_detail ul {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}
header #header_pc .header_menu .header_menu_left .header_menu_detail ul li {
  width: 25%;
}
header #header_pc .header_menu .header_menu_left .header_menu_detail ul li a {
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  text-align: center;
  text-decoration: none;
  position: relative;
}
header #header_pc .header_menu .header_menu_left .header_menu_detail ul li a .header_subMenu01 {
  color: #000;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc .header_menu .header_menu_left .header_menu_detail ul li a .header_subMenu01 {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  header #header_pc .header_menu .header_menu_left .header_menu_detail ul li a .header_subMenu01 {
    font-size: 3.4vw;
  }
}
header #header_pc .header_menu .header_menu_left .header_menu_detail ul li a .header_subMenu02 {
  font-size: 0.8vw;
  font-weight: 500;
  color: #009E4D;
}
header #header_pc .header_menu .header_menu_right .contact_btn button {
  border: none;
  padding: 1vw 3vw;
  background-color: #009E4D;
  transition: all 0.3s;
  border-radius: 50px;
}
header #header_pc .header_menu .header_menu_right .contact_btn button:hover {
  background-color: #00602F;
}
header #header_pc .header_menu .header_menu_right .contact_btn button a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: 500;
  gap: 1vw;
  font-family: "Zen Maru Gothic", sans-serif;
}
header #header_pc .header_menu .header_menu_right .contact_btn button a span {
  font-size: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc .header_menu .header_menu_right .contact_btn button a span {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  header #header_pc .header_menu .header_menu_right .contact_btn button a span {
    font-size: 3.8vw;
  }
}
header #header_pc .header_menu .header_menu_right .contact_btn button a i {
  margin-bottom: 0;
}

/* メニュー項目に下線用のクラスを追加するためのスタイル */
.current-page::after {
  position: absolute;
  content: "";
  width: 30%;
  height: 3px;
  bottom: -5px;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #DF1614; /* 線の色 */
}

#header_sp {
  position: fixed;
  width: 100%;
  height: 45px;
  z-index: 10000;
  background: #fff;
}
@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 {
    height: 85px;
    display: flex;
    align-items: center;
  }
}
#header_sp .header_logo {
  height: 45px;
  margin-left: 4vw;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #header_sp .header_logo img {
    height: 50%;
    margin-left: 0px;
  }
}
#header_sp {
  /*　ハンバーガーボタン　*/
}
#header_sp .hamburger {
  display: block;
  position: fixed;
  z-index: 10005;
  right: 20px;
  top: 2px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #header_sp .hamburger {
    right: 0;
    top: 0;
    width: 45px;
    height: 45px;
  }
}
#header_sp .hamburger span {
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  left: 6px;
  background: #009E4D;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  #header_sp .hamburger span {
    width: 30px;
  }
}
#header_sp .hamburger p {
  position: absolute;
  top: 65%;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 1.8vw;
  color: #009E4D;
}
@media screen and (max-width: 768px) {
  #header_sp .hamburger p {
    top: 47%;
    font-size: 3vw;
  }
}
#header_sp .hamburger span:nth-child(1) {
  top: 25%;
  left: 50%;
  transform: translate(-50%, 0);
}
#header_sp .hamburger span:nth-child(2) {
  top: 40%;
  left: 50%;
  transform: translate(-50%, 0);
}
#header_sp .hamburger span:nth-child(3) {
  top: 55%;
  left: 50%;
  transform: translate(-50%, 0);
}
#header_sp {
  /* ナビ開いてる時のボタン */
}
#header_sp .hamburger.active span:nth-child(1) {
  top: 16px;
  left: 10px;
  background: #009E4D;
  transform: rotate(-45deg);
}
#header_sp .hamburger.active p {
  color: #009E4D;
}
#header_sp .hamburger.active span:nth-child(2),
#header_sp .hamburger.active span:nth-child(3) {
  top: 16px;
  left: 10px;
  background: #009E4D;
  transform: rotate(45deg);
}
#header_sp nav.globalMenuSp {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  color: #009E4D;
  background: #fff;
  text-align: center;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
#header_sp nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
#header_sp nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
  margin-bottom: 40px;
}
#header_sp nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
#header_sp nav.globalMenuSp ul li:hover {
  transform: scale(1.1);
}
#header_sp nav.globalMenuSp ul li a {
  display: block;
  color: #009E4D;
  padding: 1em 0;
  text-decoration: none;
  font-size: 1.8vw;
}
@media screen and (max-width: 768px) {
  #header_sp nav.globalMenuSp ul li a {
    font-size: 3.4vw;
  }
}
#header_sp {
  /* このクラスを、jQueryで付与・削除する */
}
#header_sp nav.globalMenuSp.active {
  opacity: 100;
  visibility: visible;
}

#mv {
  width: 100vw;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  #mv {
    height: 100vh;
  }
}
#mv .mv {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #mv .mv {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv .pc {
    display: none;
  }
}
@media screen and (min-width: 1441px) {
  #mv .mv .sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #mv .mv .sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv .sp {
    display: none;
  }
}
#mv .mv .slide-images {
  width: 100vw;
  height: 100vh;
}
#mv .mv .slide-images .slick-list {
  height: 100%;
}
#mv .mv .slide-images .slick-list .slick-track {
  height: 100%;
}
#mv .mv .slide-images .slick-list .slick-track img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#mv .mv .mv_headline {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1000;
  width: 100%;
  text-align: center;
  display: inline-block;
  text-shadow: 6px 6px 20px rgba(4, 51, 85, 0.6);
}
@media screen and (max-width: 768px) {
  #mv .mv .mv_headline {
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
@media screen and (max-width: 768px) {
  #mv .mv .mv_headline .pc {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv .mv_headline .pc {
    display: none;
  }
}
@media screen and (min-width: 1441px) {
  #mv .mv .mv_headline .sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #mv .mv .mv_headline .sp {
    display: none;
  }
}
#mv .mv .mv_headline h2 {
  display: inline-block;
  color: #fff;
  font-size: 3vw;
  padding: 0vw 1vw;
  margin-bottom: 1vw;
  font-weight: 800;
  letter-spacing: 0.2vw;
}
#mv .mv .mv_headline h2 span {
  font-family: "Zen Maru Gothic", sans-serif;
  text-shadow: 0 4px 4px rgba(0, 0, 0, 0.5);
  background: linear-gradient(transparent 50%, rgba(0, 158, 77, 0.8) 50%);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv .mv_headline h2 span {
    font-size: 6.5vw;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv .mv_headline h2 span {
    font-size: 7vw;
    margin-bottom: 4vw;
    letter-spacing: 1.4vw;
    line-height: 10vw;
  }
}

.top_headline {
  text-align: center;
  margin-bottom: 4vw;
}
.top_headline h2 {
  color: #333;
}
@media screen and (max-width: 768px) {
  .top_headline h2 {
    font-size: 8vw;
    letter-spacing: 0.4vw;
  }
}
.top_headline h2 span {
  color: #009E4D;
  font-size: 2.8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top_headline h2 span {
    font-size: 3.6vw;
  }
}
@media screen and (max-width: 768px) {
  .top_headline h2 span {
    font-size: 9.5vw;
  }
}
.top_headline p {
  color: #333;
}

#top_news .top_news {
  background-position: center;
  background-size: cover;
  padding: 4vw 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news {
    padding: 8vw 0;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news {
    padding: 16vw 0;
  }
}
#top_news .top_news .top_news_contents {
  width: 80%;
  margin: auto;
  border-radius: 25px;
  background: #fff;
  padding: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news .top_news_contents {
    padding: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents {
    width: 90%;
    padding: 8vw;
  }
}
#top_news .top_news .top_news_contents .top_headline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents .top_headline {
    margin-bottom: 6vw;
  }
}
#top_news .top_news .top_news_contents .top_news_content {
  width: 80%;
  height: 6vw;
  margin: auto;
  overflow: scroll;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news .top_news_contents .top_news_content {
    width: 90%;
    margin-right: 8vw;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents .top_news_content {
    width: 90%;
    margin: auto;
    height: 20vw;
  }
}
#top_news .top_news .top_news_contents .top_news_content ul {
  list-style: none;
}
#top_news .top_news .top_news_contents .top_news_content ul a {
  text-decoration: none;
  color: #000;
  display: block;
  margin-bottom: 1vw;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news .top_news_contents .top_news_content ul a {
    font-size: 1.8vw;
    margin-bottom: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents .top_news_content ul a {
    font-size: 3.4vw;
    margin-bottom: 8vw;
  }
}
#top_news .top_news .top_news_contents .top_news_content ul a .outline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4vw;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents .top_news_content ul a .outline {
    flex-flow: column;
    align-items: flex-start;
    gap: 2vw;
  }
}

#top_about .top_about {
  background-position: center;
  background-size: cover;
  padding: 4vw 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about {
    padding: 8vw 0;
    padding-bottom: 20vw;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about {
    padding: 16vw 0;
    padding-bottom: 40vw;
  }
}
#top_about .top_about .top_about_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents {
    width: 100%;
  }
}
#top_about .top_about .top_about_contents .top_about_image {
  width: 50%;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_image {
    width: 90%;
    height: 120vw;
  }
}
#top_about .top_about .top_about_contents .top_about_image img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#top_about .top_about .top_about_contents .top_about_content {
  width: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 2vw;
  position: absolute;
  z-index: 100;
  top: 50%;
  right: 5%;
  transform: translate(0, -50%);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about .top_about_contents .top_about_content {
    width: 70%;
    top: 80%;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_content {
    width: 90%;
    top: 10%;
    right: auto;
    left: 50%;
    transform: translate(-50%, 0);
    padding: 4vw;
  }
}
#top_about .top_about .top_about_contents .top_about_content .top_headline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_content .top_headline {
    margin-bottom: 6vw;
  }
}
#top_about .top_about .top_about_contents .top_about_content .top_about_text {
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_content .top_about_text {
    margin-bottom: 4vw;
  }
}
#top_about .top_about .top_about_contents .top_about_content .top_btn {
  text-align: center;
}
#top_about .top_about .top_about_contents .top_about_content .top_btn a {
  display: block;
  text-decoration: none;
}
#top_about .top_about .top_about_contents .top_about_content .top_btn a button {
  border: none;
  padding: 1vw 3vw;
  background-color: #009E4D;
  color: #fff;
  border-radius: 25px;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_content .top_btn a button {
    padding: 2vw 6vw;
  }
}
#top_about .top_about .top_about_contents .top_about_content .top_btn a button:hover {
  background-color: #00602F;
}
#top_about .top_about .top_about_contents .top_about_content .top_btn a button i {
  margin-left: 1vw;
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_content .top_btn a button i {
    margin-left: 2vw;
  }
}
#top_about .top_about .top_about_contents .top_about_bg {
  position: absolute;
  z-index: 0;
  width: 50vw;
  height: 23vw;
  background-color: #009E4D;
  right: 0;
  top: 40%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about .top_about_contents .top_about_bg {
    width: 80vw;
    height: 35vw;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_bg {
    top: 20%;
    width: 90vw;
    height: 110vw;
  }
}

#top_business .top_business {
  background-size: cover;
  background-position: center;
  padding: 8vw 0;
}
@media screen and (max-width: 768px) {
  #top_business .top_business {
    padding: 16vw 0;
  }
}
#top_business .top_business .top_business_text {
  width: 80%;
  margin: auto;
  margin-bottom: 2vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top_business .top_business .top_business_text {
    width: 95%;
    margin-bottom: 4vw;
    text-align: start;
  }
}
#top_business .top_business .top_business_contents {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1vw;
  width: 95%;
  margin: auto;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_business .top_business .top_business_contents {
    gap: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_business .top_business .top_business_contents {
    gap: 4vw;
  }
}
#top_business .top_business .top_business_contents .top_business_content {
  width: 20%;
  text-decoration: none;
  color: #333;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_business .top_business .top_business_contents .top_business_content {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  #top_business .top_business .top_business_contents .top_business_content {
    width: 80%;
    margin: auto;
  }
}
#top_business .top_business .top_business_contents .top_business_content .top_business_image {
  width: 100%;
}
#top_business .top_business .top_business_contents .top_business_content .top_business_image img {
  width: 100%;
  vertical-align: bottom;
}
#top_business .top_business .top_business_contents .top_business_content .top_business_contents_headline {
  position: absolute;
  top: 45%;
  left: -3%;
  z-index: 100;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_business .top_business .top_business_contents .top_business_content .top_business_contents_headline {
    top: 57%;
  }
}
@media screen and (max-width: 768px) {
  #top_business .top_business .top_business_contents .top_business_content .top_business_contents_headline {
    top: 58%;
  }
}
#top_business .top_business .top_business_contents .top_business_content .top_business_contents_headline h5 {
  padding: 1vw;
  background-color: #009E4D;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #top_business .top_business .top_business_contents .top_business_content .top_business_contents_headline h5 {
    padding: 2vw;
  }
}
#top_business .top_business .top_business_contents .top_business_content .top_business_contents_text {
  background-color: #fff;
  padding: 1vw;
  padding-top: 4vw;
  text-align: end;
  position: relative;
  padding-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #top_business .top_business .top_business_contents .top_business_content .top_business_contents_text {
    padding: 3vw;
    padding-top: 10vw;
    padding-bottom: 8vw;
  }
}
#top_business .top_business .top_business_contents .top_business_content .top_business_contents_text p {
  text-align: start;
  margin-bottom: 1vw;
  height: 6vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_business .top_business .top_business_contents .top_business_content .top_business_contents_text p {
    height: 10vw;
  }
}
@media screen and (max-width: 768px) {
  #top_business .top_business .top_business_contents .top_business_content .top_business_contents_text p {
    height: 16vw;
  }
}
#top_business .top_business .top_business_contents .top_business_content .top_business_contents_text i {
  position: absolute;
  bottom: 5%;
  right: 5%;
  color: #009E4D;
  font-size: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_business .top_business .top_business_contents .top_business_content .top_business_contents_text i {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_business .top_business .top_business_contents .top_business_content .top_business_contents_text i {
    font-size: 4vw;
  }
}

#top_works {
  overflow-x: hidden !important;
}
#top_works .top_works {
  background-position: center;
  background-size: cover;
  padding: 4vw 0;
}
@media screen and (max-width: 768px) {
  #top_works .top_works {
    padding: 8vw 0;
  }
}
#top_works .top_works .top_works_text {
  text-align: center;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_text {
    width: 95%;
    margin: auto;
    margin-bottom: 4vw;
    text-align: start;
  }
}
#top_works .top_works .top_works_contents {
  height: 25vw;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_contents {
    height: 45vw;
  }
}
#top_works .top_works .top_works_contents .slick-list {
  height: 100%;
}
#top_works .top_works .top_works_contents .slick-list .slick-track {
  height: 100%;
}
#top_works .top_works .top_works_contents img {
  height: 100%;
  padding: 1vw;
  -o-object-fit: cover;
     object-fit: cover;
}
#top_works .top_works .top_btn {
  text-align: center;
}
#top_works .top_works .top_btn a {
  display: block;
  text-decoration: none;
}
#top_works .top_works .top_btn a button {
  border: none;
  padding: 1vw 3vw;
  background-color: #009E4D;
  color: #fff;
  border-radius: 25px;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_btn a button {
    padding: 2vw 6vw;
  }
}
#top_works .top_works .top_btn a button:hover {
  background-color: #00602F;
}
#top_works .top_works .top_btn a button i {
  margin-left: 1vw;
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_btn a button i {
    margin-left: 2vw;
  }
}

#business .business .business_top_text {
  background-position: center;
  background-size: cover;
  padding: 4vw 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #business .business .business_top_text p {
    width: 95%;
    margin: auto;
    text-align: start;
  }
}
#business .business .business_contents {
  background-size: cover;
  background-position: center;
  padding: 4vw 5vw;
}
@media screen and (max-width: 768px) {
  #business .business .business_contents {
    padding: 8vw 5vw;
  }
}
#business .business .business_contents:nth-child(odd) .business_flex {
  flex-flow: row-reverse;
}
@media screen and (max-width: 768px) {
  #business .business .business_contents:nth-child(odd) .business_flex {
    flex-flow: column-reverse;
  }
}
#business .business .business_contents h2 {
  margin-bottom: 1.5vw;
  border-bottom: 1px solid #009E4D;
  position: relative;
  padding-left: 2.5vw;
  padding-bottom: 0.5vw;
  color: #643D3D;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #business .business .business_contents h2 {
    margin-bottom: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #business .business .business_contents h2 {
    margin-bottom: 6vw;
  }
}
#business .business .business_contents h2::before {
  position: absolute;
  content: "";
  width: 1vw;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #009E4D;
}
#business .business .business_contents .business_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: auto;
  height: 25vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #business .business .business_contents .business_flex {
    height: 35vw;
  }
}
@media screen and (max-width: 768px) {
  #business .business .business_contents .business_flex {
    height: auto;
    flex-flow: column-reverse;
  }
}
#business .business .business_contents .business_flex .business_image {
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #business .business .business_contents .business_flex .business_image {
    width: 100%;
  }
}
#business .business .business_contents .business_flex .business_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#business .business .business_contents .business_flex .business_text {
  width: 50%;
  height: 100%;
  background-color: #fff;
  padding: 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #business .business .business_contents .business_flex .business_text {
    width: 100%;
  }
}

#works .works .works_contents {
  width: 90%;
  margin: auto;
  padding: 8vw 0;
}
#works .works .works_contents ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1vw;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul {
    gap: 3vw;
  }
}
#works .works .works_contents ul a {
  text-decoration: none;
  width: 30%;
  display: block;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul a {
    width: 45%;
  }
}
#works .works .works_contents ul a li .thumb {
  width: 100%;
  height: 20vw;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul a li .thumb {
    height: 35vw;
  }
}
#works .works .works_contents ul a li .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#works .works #works_single ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #works .works #works_single ul {
    flex-flow: column;
  }
}
#works .works #works_single ul .thumb {
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works #works_single ul .thumb {
    height: 30vw;
  }
}
#works .works #works_single ul img {
  width: 100%;
  height: 100%;
  margin-bottom: 1vw;
}
#works .works #works_single ul .date {
  width: 100%;
  margin: auto;
  margin-bottom: 0.5vw;
}
#works .works #works_single ul .title {
  width: 100%;
  margin: auto;
  margin-bottom: 2vw;
  font-size: 1.6vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works #works_single ul .title {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  #works .works #works_single ul .title {
    font-size: 4vw;
  }
}

#company .greeting {
  background-position: center;
  background-size: cover;
  padding: 4vw 0;
  position: relative;
  z-index: -100;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .greeting {
    padding: 16vw 0;
  }
}
#company .greeting .greeting_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2vw;
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .greeting .greeting_contents {
    width: 95%;
    justify-content: flex-end;
  }
}
@media screen and (max-width: 768px) {
  #company .greeting .greeting_contents {
    width: 95%;
    justify-content: center;
    flex-flow: column-reverse;
  }
}
#company .greeting .greeting_contents .greeting_image {
  width: 40%;
  position: relative;
  z-index: -20;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .greeting .greeting_contents .greeting_image {
    width: 60%;
    position: absolute;
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  #company .greeting .greeting_contents .greeting_image {
    width: 100%;
  }
}
#company .greeting .greeting_contents .greeting_image img {
  width: 100%;
}
#company .greeting .greeting_contents .greeting_text {
  background-color: #fff;
  padding: 2vw;
  position: relative;
  left: -5%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .greeting .greeting_contents .greeting_text {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #company .greeting .greeting_contents .greeting_text {
    width: 95%;
    left: 0;
    margin-bottom: 8vw;
  }
}
#company .greeting .greeting_contents .greeting_text::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #009E4D;
  top: 5%;
  left: 2%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  #company .greeting .greeting_contents .greeting_text::before {
    top: 2%;
  }
}
#company .greeting .greeting_contents .greeting_text .top_headline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2vw;
  font-family: "Zen Maru Gothic", sans-serif;
  margin-bottom: 1.5vw;
}
#company .greeting .greeting_contents .greeting_text > p {
  margin-bottom: 1vw;
}
#company .company {
  background-position: center;
  background-size: cover;
  width: 100%;
  padding: 8vw 0;
}
#company .company .company_contents {
  background-color: #fff;
  padding: 4vw 2vw;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  width: 65%;
  margin: auto;
}
@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 {
  width: 100%;
}
#company .company .company_contents .table table {
  width: 80%;
  margin: auto;
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  #company .company .company_contents .table table {
    width: 100%;
  }
}
#company .company .company_contents .table table tr td {
  padding: 1.5vw;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company .company_contents .table table tr td {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents .table table tr td {
    font-size: 3.4vw;
    padding: 3vw;
  }
}
#company .company .company_contents .table table tr td:first-child {
  width: 25%;
  border-bottom: 1px solid #009E4D;
}
#company .company .company_contents .table table tr td:last-child {
  width: 75%;
  border-bottom: 1px solid #643D3D;
}

#contact .contact .contact_text {
  width: 60%;
  margin: auto;
  padding: 8vw 0;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_text {
    width: 95%;
  }
}
#contact .contact .contact_text p {
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_text p {
    margin-bottom: 6vw;
  }
}
#contact .contact .contact_text a {
  border: none;
  padding: 1vw 4vw;
  background-color: #009E4D;
  transition: all 0.3s;
  border-radius: 50px;
  display: block;
  width: 30%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_text a {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_text a {
    width: 95%;
  }
}
#contact .contact .contact_text a:hover {
  box-shadow: unset;
  transform: translateY(4px);
}
#contact .contact .contact_text a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: 500;
  gap: 1vw;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_text a {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_text a {
    font-size: 4vw;
    width: 100%;
    padding: 4vw;
  }
}
#contact .contact .contact_text a i {
  margin-bottom: 0;
}
#contact .contact .top_btn {
  width: 20%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #contact .contact .top_btn {
    width: 60%;
  }
}
#contact .contact .top_btn a {
  display: block;
  width: 100%;
  text-decoration: none;
}
#contact .contact .top_btn a button {
  width: 100%;
  background-color: #71C6FF;
  color: #fff;
  border: none;
  padding: 1vw 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #contact .contact .top_btn a button {
    padding: 4vw 8vw;
    gap: 3vw;
  }
}
#contact .contact .top_btn a button:hover {
  background-color: #18A0FA;
}
#contact .contact_form_contents {
  background-position: top;
  background-size: contain;
  background-repeat: repeat;
  padding: 6vw 0;
}
@media screen and (max-width: 768px) {
  #contact .contact_form_contents {
    padding: 12vw 0;
  }
}
#contact .contact_form_contents .top_headline {
  text-align: center;
  margin-bottom: 4vw;
}
#contact .contact_form_contents .top_headline h2 {
  color: #643D3D;
}
@media screen and (max-width: 768px) {
  #contact .contact_form_contents .top_headline h2 {
    font-size: 8vw;
    letter-spacing: 0.4vw;
  }
}
#contact .contact_form_contents .top_headline h2 span {
  color: #009E4D;
  font-size: 2.8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact_form_contents .top_headline h2 span {
    font-size: 3.6vw;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact_form_contents .top_headline h2 span {
    font-size: 9.5vw;
  }
}
#contact .contact_form_contents .contact_form_container {
  background-color: #fff;
  width: 60%;
  margin: auto;
  padding: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact_form_contents .contact_form_container {
    width: 85%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact_form_contents .contact_form_container {
    width: 95%;
  }
}
#contact .contact_form_contents .contact_form_container .contact_form {
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact_form_contents .contact_form_container .contact_form {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact_form_contents .contact_form_container .contact_form {
    width: 100%;
  }
}
#contact .contact_form_contents .contact_form_container .contact_form .contact_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4vw;
  padding: 2vw 0;
  margin-bottom: 4vw;
  border-bottom: 1px solid #D4D4D4;
}
@media screen and (max-width: 768px) {
  #contact .contact_form_contents .contact_form_container .contact_form .contact_contents {
    flex-flow: column;
    align-items: flex-start;
    margin-bottom: 8vw;
  }
}
#contact .contact_form_contents .contact_form_container .contact_form .contact_contents p {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact_form_contents .contact_form_container .contact_form .contact_contents p {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact_form_contents .contact_form_container .contact_form .contact_contents p {
    font-size: 4vw;
  }
}
#contact .contact_form_contents .contact_form_container .contact_form .contact_contents p:first-child {
  width: 30%;
}
@media screen and (max-width: 768px) {
  #contact .contact_form_contents .contact_form_container .contact_form .contact_contents p:first-child {
    width: 100%;
  }
}
#contact .contact_form_contents .contact_form_container .contact_form .contact_contents p:first-child span {
  padding: 1vw;
  margin-right: 1vw;
}
#contact .contact_form_contents .contact_form_container .contact_form .contact_contents p:first-child .required {
  color: #FF0000;
}
#contact .contact_form_contents .contact_form_container .contact_form .contact_contents p:first-child .any {
  background-color: #fff;
  border: 1px solid #919191;
  color: #919191;
}
#contact .contact_form_contents .contact_form_container .contact_form .contact_contents p:last-child {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #contact .contact_form_contents .contact_form_container .contact_form .contact_contents p:last-child {
    width: 100%;
  }
}
#contact .contact_form_contents .contact_form_container .contact_form .contact_contents p:last-child input {
  background-color: #DEDEDE;
  border: none;
  height: 3vw;
  width: 100%;
  padding: 0.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact_form_contents .contact_form_container .contact_form .contact_contents p:last-child input {
    height: 4.5vw;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact_form_contents .contact_form_container .contact_form .contact_contents p:last-child input {
    height: 9vw;
  }
}
#contact .contact_form_contents .contact_form_container .contact_form .contact_contents p:last-child textarea {
  background-color: #DEDEDE;
  border: none;
  height: 80%;
  width: 100%;
}
#contact .contact_form_contents .contact_form_container .contact_form .contact_contents p .wpcf7-radio input {
  width: auto;
  height: auto;
}
#contact .contact_form_contents .contact_form_container .contact_form .contact_contents .address_contents {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #contact .contact_form_contents .contact_form_container .contact_form .contact_contents .address_contents {
    width: 100%;
  }
}
#contact .contact_form_contents .contact_form_container .contact_form .contact_contents .address_contents .zip {
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  #contact .contact_form_contents .contact_form_container .contact_form .contact_contents .address_contents .zip {
    margin-bottom: 4vw;
  }
}
#contact .contact_form_contents .contact_form_container .contact_form .contact_contents .address_contents .zip p {
  width: auto;
}
#contact .contact_form_contents .contact_form_container .contact_form .contact_contents .address_contents .zip p input {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #contact .contact_form_contents .contact_form_container .contact_form .contact_contents .address_contents .zip p input {
    width: 80%;
  }
}
#contact .contact_form_contents .contact_form_container .contact_form .contact_contents .address_contents .pref {
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  #contact .contact_form_contents .contact_form_container .contact_form .contact_contents .address_contents .pref {
    margin-bottom: 4vw;
  }
}
#contact .contact_form_contents .contact_form_container .contact_form .contact_contents .address_contents .pref p {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#contact .contact_form_contents .contact_form_container .contact_form .contact_contents .address_contents .pref p span {
  width: 45%;
  margin: 0;
  padding: 0;
}
#contact .contact_form_contents .contact_form_container .contact_form .contact_contents .address_contents .addr p {
  width: 100%;
}
#contact .contact_form_contents .contact_form_container .contact_form .contact_contents .address_contents .addr p span {
  width: 100%;
  margin: 0;
  padding: 0;
}
#contact .contact_form_contents .contact_form_container .submit {
  width: 25%;
  margin: auto;
  text-align: center;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #contact .contact_form_contents .contact_form_container .submit {
    width: 40%;
  }
}
#contact .contact_form_contents .contact_form_container .submit input {
  border: none;
  color: #fff;
  text-align: center;
  font-weight: 800;
  width: 100%;
}
#contact .contact_form_contents .contact_form_container .submit .wpcf7-spinner {
  display: none;
}
#contact .contact_form_contents .contact_form_container .policy {
  background-color: #093869;
  padding: 4vw 0;
}
@media screen and (max-width: 768px) {
  #contact .contact_form_contents .contact_form_container .policy {
    padding: 8vw 0;
  }
}
#contact .contact_form_contents .contact_form_container .policy .contact_headline h3 {
  color: #fff;
}
#contact .contact_form_contents .contact_form_container .policy p {
  color: #fff;
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #contact .contact_form_contents .contact_form_container .policy p {
    width: 95%;
  }
}

footer .footer_contact {
  padding: 4vw 0;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_contact {
    padding: 6vw 0;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_contact {
    padding: 16vw 0;
    background-position: left;
  }
}
footer .footer_contact .top_headline {
  text-align: center;
  margin-bottom: 4vw;
}
footer .footer_contact .top_headline h2 {
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer .footer_contact .top_headline h2 {
    font-size: 8vw;
    letter-spacing: 0.4vw;
  }
}
footer .footer_contact .top_headline h2 span {
  color: #009E4D;
  font-size: 2.8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_contact .top_headline h2 span {
    font-size: 3.6vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_contact .top_headline h2 span {
    font-size: 9.5vw;
  }
}
footer .footer_contact .top_headline p {
  color: #fff;
}
footer .footer_contact .footer_contact_text {
  width: 60%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_contact .footer_contact_text {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_contact .footer_contact_text {
    width: 95%;
  }
}
footer .footer_contact .footer_contact_text p {
  color: #fff;
  font-size: 1.4vw;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_contact .footer_contact_text p {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_contact .footer_contact_text p {
    font-size: 4vw;
    margin-bottom: 8vw;
    font-weight: 600;
  }
}
footer .footer_contact .footer_contact_btns {
  width: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_contact .footer_contact_btns {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_contact .footer_contact_btns {
    width: 85%;
    flex-flow: column;
  }
}
footer .footer_contact .footer_contact_btns {
  gap: 4vw;
}
footer .footer_contact .footer_contact_btns a {
  border: none;
  padding: 1vw 4vw;
  background-color: #009E4D;
  transition: all 0.3s;
  border-radius: 50px;
}
footer .footer_contact .footer_contact_btns a:hover {
  box-shadow: unset;
  transform: translateY(4px);
}
footer .footer_contact .footer_contact_btns a {
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  font-weight: 500;
  gap: 1vw;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_contact .footer_contact_btns a {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_contact .footer_contact_btns a {
    font-size: 4vw;
    width: 100%;
    padding: 4vw;
  }
}
footer .footer_contact .footer_contact_btns a i {
  margin-bottom: 0;
}
footer .footer_map {
  width: 100%;
}
footer .footer_map iframe {
  width: 100%;
  height: 40vw;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  footer .footer_map iframe {
    height: 100vw;
  }
}
footer .footer_contents {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 8vw 2vw;
  background-color: #388242;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer .footer_contents {
    flex-flow: column;
    padding: 16vw 0;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_contents .footer_left {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_contents .footer_left {
    width: 95%;
    margin: auto;
    margin-bottom: 8vw;
  }
}
footer .footer_contents .footer_left .footer_logo {
  margin-bottom: 2vw;
  width: 50%;
}
@media screen and (max-width: 768px) {
  footer .footer_contents .footer_left .footer_logo {
    width: 50%;
    margin-bottom: 4vw;
  }
}
footer .footer_contents .footer_left .footer_logo img {
  width: 100%;
}
footer .footer_contents .footer_left .footer_company table {
  border-collapse: collapse;
}
footer .footer_contents .footer_left .footer_company table tr td {
  font-size: 1vw;
  padding: 0.3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_contents .footer_left .footer_company table tr td {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_contents .footer_left .footer_company table tr td {
    font-size: 3vw;
    padding: 1vw;
  }
}
footer .footer_contents .footer_left .footer_company table tr td:first-child {
  width: 20%;
}
footer .footer_contents .footer_right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  footer .footer_contents .footer_right {
    width: 95%;
    margin: auto;
  }
}
footer .footer_contents .footer_right ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_contents .footer_right ul {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_contents .footer_right ul {
    flex-wrap: wrap;
  }
}
footer .footer_contents .footer_right ul li {
  width: 25%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_contents .footer_right ul li {
    width: 30%;
  }
}
footer .footer_contents .footer_right ul li a {
  width: 100%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  text-align: center;
  text-decoration: none;
  position: relative;
}
footer .footer_contents .footer_right ul li a .header_subMenu01 {
  color: #000;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_contents .footer_right ul li a .header_subMenu01 {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_contents .footer_right ul li a .header_subMenu01 {
    font-size: 3.4vw;
  }
}
footer .footer_contents .footer_right ul li a .header_subMenu02 {
  font-size: 0.8vw;
  font-weight: 500;
  color: #009E4D;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_contents .footer_right ul li a .header_subMenu02 {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_contents .footer_right ul li a .header_subMenu02 {
    font-size: 3vw;
  }
}
footer .footer_contents .page_top_btn {
  position: absolute;
  bottom: -5%;
  right: 5%;
}
@media screen and (max-width: 768px) {
  footer .footer_contents .page_top_btn {
    display: none !important;
  }
}
footer .copyright {
  padding-bottom: 2vw;
  background-color: #009E4D;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    margin-bottom: 15vw;
  }
}
footer .copyright p {
  text-align: center;
  color: #fff;
  font-size: 0.8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .copyright p {
    font-size: 1vw;
  }
}
@media screen and (max-width: 768px) {
  footer .copyright p {
    font-size: 2.4vw;
  }
}
footer .footer_fix {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 15vw;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  border-top: 3px solid #fff;
}
@media screen and (min-width: 1441px) {
  footer .footer_fix {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  footer .footer_fix {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_fix {
    display: none !important;
  }
}
footer .footer_fix .footer_tel {
  width: 55%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  background-color: #009E4D;
  color: #fff;
  font-size: 3.5vw;
  font-weight: 600;
  text-decoration: none;
}
footer .footer_fix .footer_tel i {
  margin-bottom: 1vw;
}
footer .footer_fix .footer_contact_sp {
  width: 30%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  background-color: #009E4D;
  color: #fff;
  font-size: 3.5vw;
  font-weight: 600;
  border-left: 3px solid #fff;
  border-right: 3px solid #fff;
  text-decoration: none;
}
footer .footer_fix .footer_contact_sp i {
  margin-bottom: 1vw;
}
footer .footer_fix .pageTop {
  width: 15%;
  height: 100%;
  text-align: center;
}
footer .footer_fix .pageTop a {
  display: block;
  width: 100%;
  height: 100%;
}
footer .footer_fix .pageTop img {
  width: 100%;
}/*# sourceMappingURL=style.css.map */