@charset "UTF-8";
*, *::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: serif;
  font-weight: 400;
  font-style: normal;
}

body {
  background-color: #fffddb;
  color: #333;
}

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

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

h1 {
  font-size: 3.2rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }
}

h2 {
  font-size: 3rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h2 {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
  }
}

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

h4 {
  font-size: 1.6rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h4 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 1.2rem;
  }
}

.top_contents_title {
  display: inline-block;
}
.top_contents_title h2 {
  font-family: serif;
  letter-spacing: 3px;
  font-weight: 800;
}
.top_contents_title p {
  font-weight: 600;
}
.top_contents_title span {
  display: inline-block;
  width: 50%;
  height: 2px;
  background-color: #333;
}

.top_contents_btn {
  width: 30%;
  padding-left: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top_contents_btn {
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .top_contents_btn {
    width: 100%;
    padding-left: 20px;
  }
}
.top_contents_btn a {
  text-decoration: none;
  color: #333;
  position: relative;
}
.top_contents_btn a span {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translate(0, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #25813a;
  transition: all 0.4s;
}
.top_contents_btn a span i {
  color: #fff;
  font-size: 12.5px;
}

.top_contents_btn02 {
  width: 30%;
  padding-left: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top_contents_btn02 {
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .top_contents_btn02 {
    width: 100%;
    padding-left: 20px;
  }
}
.top_contents_btn02 a {
  text-decoration: none;
  color: #333;
  position: relative;
}
.top_contents_btn02 a span {
  position: absolute;
  top: 50%;
  right: -60px;
  transform: translate(0, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #25813a;
  transition: all 0.4s;
}
.top_contents_btn02 a span i {
  color: #fff;
  font-size: 12.5px;
}

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

.lower_headline {
  text-align: center;
  margin-bottom: 80px;
}
.lower_headline h2 {
  border-bottom: 1px solid #333;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .lower_headline {
    margin-bottom: 40px;
  }
}

header {
  position: relative;
  z-index: 99999;
}
header #header_pc {
  display: block;
  position: absolute;
}
header #header_pc .header_pc_contents {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc .header_pc_contents {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  header #header_pc .header_pc_contents {
    display: none;
  }
}
header #header_pc .header_pc_contents .header_copyright {
  width: 30%;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc .header_pc_contents .header_copyright {
    width: 20%;
  }
}
header #header_pc .header_pc_contents .header_copyright p {
  writing-mode: vertical-rl;
  color: #d1c584;
  letter-spacing: 2.5px;
}
header #header_pc .header_pc_contents .header_menu {
  width: 70%;
}
header #header_pc .header_pc_contents .header_menu .header_logo {
  height: 50px;
  margin-bottom: 3rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc .header_pc_contents .header_menu .header_logo {
    height: 40px;
  }
}
header #header_pc .header_pc_contents .header_menu .header_logo img {
  height: 100%;
}
header #header_pc .header_pc_contents .header_menu .header_menu_list {
  list-style: none;
  margin-bottom: 3rem;
}
header #header_pc .header_pc_contents .header_menu .header_menu_list li {
  margin-bottom: 2.5rem;
  padding-left: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc .header_pc_contents .header_menu .header_menu_list li {
    margin-bottom: 1.2rem;
  }
}
header #header_pc .header_pc_contents .header_menu .header_menu_list li a {
  text-decoration: none;
  color: #333;
  position: relative;
  font-size: 120%;
  font-weight: 800;
  padding: 5px 0;
}
header #header_pc .header_pc_contents .header_menu .header_menu_list li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #25813a;
  bottom: -4px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
header #header_pc .header_pc_contents .header_menu .header_menu_list li a:hover::after {
  transform: scale(1, 1);
}
header #header_pc .header_pc_contents .header_sns_icon ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
}
header #header_pc .header_pc_contents .header_sns_icon ul li {
  margin: 0 1rem;
  padding-left: 0;
}
header #header_pc .header_pc_contents .header_sns_icon ul li a {
  padding: 0px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #25813a;
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
header #header_pc .header_pc_contents .header_sns_icon ul li a:hover {
  background-color: #225a2f;
}
header #header_pc .header_pc_contents .header_sns_icon ul li a i::before {
  color: #fff;
}
header #header_pc .header_pc_contents .header_sns_icon ul li .new_twitter:before {
  content: "𝕏" !important;
  font-family: sans-serif !important;
  font-weight: bold;
  color: #fff;
}
header #header_pc .header_sp_contents {
  width: 100vw;
  position: fixed;
}
@media screen and (min-width: 1441px) {
  header #header_pc .header_sp_contents {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  header #header_pc .header_sp_contents {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc .header_sp_contents {
    display: none;
  }
}
header #header_pc .header_sp_contents .header_sp_contents_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fffddb;
  width: 100%;
}
header #header_pc .header_sp_contents .header_sp_contents_flex .header_logo_sp a {
  text-decoration: none;
}
header #header_pc .header_sp_contents .header_sp_contents_flex .header_logo_sp a img {
  height: 20px;
}
header #header_pc_scroll {
  display: none;
}
header #header_pc_scroll .header_pc_scroll_contents {
  position: fixed;
  background-color: #fff;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.5rem;
  height: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc_scroll .header_pc_scroll_contents {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header #header_pc_scroll .header_pc_scroll_contents {
    display: none;
  }
}
header #header_pc_scroll .header_pc_scroll_contents .header_logo {
  height: 30px;
}
header #header_pc_scroll .header_pc_scroll_contents .header_logo img {
  height: 100%;
}
header #header_pc_scroll .header_pc_scroll_contents .header_menu .header_menu_contents ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header #header_pc_scroll .header_pc_scroll_contents .header_menu .header_menu_contents ul li {
  margin-left: 2.5rem;
}
header #header_pc_scroll .header_pc_scroll_contents .header_menu .header_menu_contents ul li a {
  text-decoration: none;
  color: #333;
  position: relative;
}
header #header_pc_scroll .header_pc_scroll_contents .header_menu .header_menu_contents ul li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #25813a;
  bottom: -4px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
header #header_pc_scroll .header_pc_scroll_contents .header_menu .header_menu_contents ul li a:hover::after {
  transform: scale(1, 1);
}
header #header_pc_scroll .header_pc_scroll_contents .header_menu .header_menu_contents ul li:last-child a {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  background-color: #25813a;
  transition: all 0.4s;
  color: #fff;
}
header #header_pc_scroll .header_pc_scroll_contents .header_menu .header_menu_contents ul li:last-child a:hover {
  background-color: #225a2f;
}
header #header_pc_scroll .header_pc_scroll_contents .header_menu .header_menu_contents ul li:last-child a::after {
  width: 0;
}
@media screen and (min-width: 1441px) {
  header #header_pc_scroll .header_sp_scroll_contents {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  header #header_pc_scroll .header_sp_scroll_contents {
    display: none;
  }
}
header #header_pc_scroll .header_sp_scroll_contents .header_sp_contents_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: #fffddb;
  width: 100%;
}
header #header_pc_scroll .header_sp_scroll_contents .header_sp_contents_flex .header_logo_sp a {
  text-decoration: none;
}
header #header_pc_scroll .header_sp_scroll_contents .header_sp_contents_flex .header_logo_sp a img {
  height: 20px;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 10005;
  right: 13px;
  top: 12px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
  background-color: #25813a;
  border-radius: 50%;
}
@media screen and (min-width: 1441px) {
  .hamburger {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .hamburger {
    display: none;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 25px;
  height: 2px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #fff;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 12px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 28px;
}

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

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 19px;
  left: 9px;
  background: #fff;
  transform: rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index: -1;
  top: 0;
  left: 0;
  color: #25813a;
  background: rgba(255, 255, 255, 0.9);
  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;
}
nav.globalMenuSp ul.header_menu_list {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
nav.globalMenuSp ul.header_menu_list li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
  margin-bottom: 20px;
}
nav.globalMenuSp ul.header_menu_list li:hover {
  transform: scale(1.1);
}
nav.globalMenuSp ul.header_menu_list li a {
  display: block;
  color: #25813a;
  padding: 10px 0;
  font-weight: 800;
  text-decoration: none;
}
nav.globalMenuSp ul.header_sns {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  list-style: none;
}
nav.globalMenuSp ul.header_sns li {
  margin: 0 1rem;
  padding-left: 0;
}
nav.globalMenuSp ul.header_sns li a {
  color: #25813a;
  font-size: 120%;
  padding: 0px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
nav.globalMenuSp ul.header_sns li .new_twitter:before {
  content: "𝕏" !important;
  font-family: sans-serif !important;
  font-weight: bold;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  visibility: visible;
}

#top_main {
  height: 100vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main {
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #top_main {
    height: 300px;
  }
}
#top_main .slide-images {
  width: 70%;
  height: 90vh;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .slide-images {
    width: 60%;
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #top_main .slide-images {
    width: 100%;
    height: 300px;
  }
}
#top_main .slide-images .slick-list {
  width: 100%;
  height: 100%;
}
#top_main .slide-images .slick-list .slick-track {
  width: 100%;
  height: 100%;
}
#top_main .slide-images .slick-list .slick-track img {
  border-radius: 0 0 0 80px;
  width: 100%;
  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_news {
  margin-bottom: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news {
    flex-flow: column;
    border: none;
  }
}
@media screen and (max-width: 768px) {
  #top_news {
    flex-flow: column;
    border: none;
    margin-bottom: 3rem;
  }
}
#top_news .top_contents_title {
  width: 100%;
  text-align: center;
  padding: 3rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_contents_title {
    width: 100%;
    text-align: start;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_contents_title {
    width: 100%;
    text-align: center;
  }
}
#top_news .top_contents_title h2 {
  margin-right: 1rem;
}
#top_news .top_contents_title p {
  color: #25813a;
}
#top_news .top_news_contents {
  width: 70%;
  margin: auto;
  padding: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news_contents {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news_contents {
    width: 100%;
    flex-flow: column;
    padding: 1rem;
  }
}
#top_news .top_news_contents .top_news_list {
  width: 70%;
}
@media screen and (max-width: 768px) {
  #top_news .top_news_contents .top_news_list {
    width: 100%;
  }
}
#top_news .top_news_contents .top_news_list ul {
  list-style: none;
}
#top_news .top_news_contents .top_news_list ul a {
  text-decoration: none;
}
#top_news .top_news_contents .top_news_list ul a li {
  padding: 1rem 0;
}
#top_news .top_news_contents .top_news_list ul a li .outline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
#top_news .top_news_contents .top_news_list ul a li .outline .date {
  margin-right: 2rem;
  color: #fff;
  background-color: #25813a;
  font-size: 80%;
  padding: 0.25rem 0.5rem;
  border-radius: 25px;
  transition: all 0.4s;
}
#top_news .top_news_contents .top_news_list ul a li .outline .title {
  border-bottom: 1px solid #d2d2d2;
  color: #333;
  position: relative;
  width: 70%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news_contents .top_news_list ul a li .outline .title {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news_contents .top_news_list ul a li .outline .title {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news_contents .top_contents_btn {
    text-align: end;
    margin-right: 100px;
  }
}

#top_two_contents {
  position: relative;
  margin-bottom: 10rem;
  background: linear-gradient(180deg, #ecdc2b 0%, #fffddb 60%, #fffddb 60%, #fffddb 100%);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_two_contents {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 768px) {
  #top_two_contents {
    margin-bottom: 5rem;
  }
}
#top_two_contents .top_two_contents_title {
  padding: 3rem 0;
}
#top_two_contents .top_two_contents_title h2 {
  text-align: center;
  color: #fff;
}
#top_two_contents .top_banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 98%;
  margin: auto;
  margin-bottom: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_two_contents .top_banner {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #top_two_contents .top_banner {
    width: 90%;
    flex-flow: column;
  }
}
#top_two_contents .top_banner .top_banner_contents {
  width: 33%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #top_two_contents .top_banner .top_banner_contents {
    width: 100%;
    margin-bottom: 5rem;
  }
}
#top_two_contents .top_banner .top_banner_contents .top_banner_contents_image {
  width: 100%;
  height: 100%;
}
#top_two_contents .top_banner .top_banner_contents .top_banner_contents_image img {
  width: 100%;
  height: 100%;
  vertical-align: top;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 25px;
}
#top_two_contents .top_banner .top_banner_contents .top_contents_btn02 {
  width: 90%;
  margin: auto;
  text-align: center;
  padding: 1rem;
  border-radius: 100px;
  background-color: #eba121;
  position: absolute;
  top: 90%;
  left: 50%;
  transform: translate(-50%, 0);
}
#top_two_contents .top_banner .top_banner_contents .top_contents_btn02 .top_banner_contents_title {
  text-align: center;
  align-items: center;
  width: 70%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_two_contents .top_banner .top_banner_contents .top_contents_btn02 .top_banner_contents_title {
    width: 90%;
  }
}
#top_two_contents .top_banner .top_banner_contents .top_contents_btn02 .top_banner_contents_title h4 {
  color: #fff;
  padding: 0 5%;
  font-family: serif;
  margin-right: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_two_contents .top_banner .top_banner_contents .top_contents_btn02 .top_banner_contents_title h4 {
    padding: 0;
    margin-right: 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  #top_two_contents .top_banner .top_banner_contents .top_contents_btn02 .top_banner_contents_title h4 {
    padding: 0;
  }
}
#top_two_contents .top_banner .top_banner_contents .top_contents_btn02 .top_banner_contents_title p {
  color: #fff;
}
@media screen and (max-width: 768px) {
  #top_two_contents .top_banner .top_banner_contents .top_contents_btn02 .top_banner_contents_title p {
    padding-top: 0;
  }
}
#top_two_contents .top_banner .top_banner_contents .top_contents_btn02 .arrow {
  width: 30%;
}
#top_two_contents .top_banner .top_banner_contents .top_contents_btn02 .arrow span {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.4s;
}
#top_two_contents .top_banner .top_banner_contents .top_contents_btn02 .arrow span i {
  color: #eba121;
}

#top_greeting {
  position: relative;
  background-position: top center;
  background-size: cover;
  margin-bottom: 5rem;
}
#top_greeting .top_greeting_contents {
  background: linear-gradient(#fffddb, rgba(255, 255, 255, 0), #fffddb);
  width: 100%;
  height: 100%;
  padding: 10rem 0;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_greeting .top_greeting_contents {
    width: 100%;
    padding: 5rem;
  }
}
@media screen and (max-width: 768px) {
  #top_greeting .top_greeting_contents {
    width: 100%;
    padding: 5rem 0.5rem;
  }
}
#top_greeting .top_greeting_contents .top_greeting_content {
  background-color: rgba(255, 255, 255, 0.6);
  width: 80%;
  margin: auto;
  padding: 3rem 0;
  border-radius: 50px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_greeting .top_greeting_contents .top_greeting_content {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #top_greeting .top_greeting_contents .top_greeting_content {
    width: 95%;
  }
}
#top_greeting .top_greeting_contents .top_greeting_content .line {
  width: 100%;
  height: 2px;
  background-color: #faf298;
  position: relative;
  margin-bottom: 2rem;
}
#top_greeting .top_greeting_contents .top_greeting_content .line::after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  width: 30%;
  height: 2px;
  background-color: #ebe300;
}
#top_greeting .top_greeting_contents .top_greeting_content .top_greeting_writing {
  width: 60%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_greeting .top_greeting_contents .top_greeting_content .top_greeting_writing {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #top_greeting .top_greeting_contents .top_greeting_content .top_greeting_writing {
    width: 90%;
  }
}
#top_greeting .top_greeting_contents .top_greeting_content .top_greeting_writing .top_greeting_headline {
  color: #333;
  font-size: 185%;
  font-weight: 600;
  margin-bottom: 2rem;
  line-height: 1.6;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_greeting .top_greeting_contents .top_greeting_content .top_greeting_writing .top_greeting_headline {
    font-size: 130%;
  }
}
@media screen and (max-width: 768px) {
  #top_greeting .top_greeting_contents .top_greeting_content .top_greeting_writing .top_greeting_headline {
    font-size: 120%;
  }
}
#top_greeting .top_greeting_contents .top_greeting_content .top_greeting_writing .top_greeting_text {
  color: #333;
  line-height: 2;
  margin-bottom: 3rem;
  font-weight: bold;
}
#top_greeting .top_greeting_contents .top_greeting_content .top_greeting_writing .top_greeting_img {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#top_greeting .top_greeting_contents .top_greeting_content .top_greeting_writing .top_greeting_img img {
  width: 45%;
  border-radius: 25px;
}

#top_area {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 13rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_area {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 768px) {
  #top_area {
    flex-flow: column;
    margin-bottom: 10rem;
  }
}
#top_area .top_area_contents {
  width: 50%;
  padding: 5%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_area .top_area_contents {
    padding: 2rem;
    left: 5%;
  }
}
@media screen and (max-width: 768px) {
  #top_area .top_area_contents {
    width: 100%;
    padding: 1rem;
    position: static;
  }
}
#top_area .top_area_contents .top_contents_title {
  margin-bottom: 3rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_area .top_area_contents .top_contents_title {
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  #top_area .top_area_contents .top_contents_title {
    align-items: center;
    margin-bottom: 1rem;
  }
}
#top_area .top_area_contents .top_contents_title h2 {
  margin-right: 1rem;
}
#top_area .top_area_contents .top_contents_title p {
  color: #25813a;
}
#top_area .top_area_contents .top_area_text {
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_area .top_area_contents .top_area_text {
    top: 40%;
  }
}
@media screen and (max-width: 768px) {
  #top_area .top_area_contents .top_area_text {
    position: static;
    width: 90%;
  }
}
#top_area .top_area_image {
  width: 50%;
  height: 550px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_area .top_area_image {
    height: 350px;
  }
}
@media screen and (max-width: 768px) {
  #top_area .top_area_image {
    width: 90%;
    height: 300px;
  }
}
#top_area .top_area_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#top_recruit {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row-reverse;
  margin-bottom: 13rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit {
    flex-flow: column;
    margin-bottom: 10rem;
  }
}
#top_recruit .top_recruit_contents {
  width: 50%;
  padding: 5%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit .top_recruit_contents {
    padding: 2rem;
    left: 5%;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit_contents {
    width: 100%;
    padding: 1rem;
    position: static;
  }
}
#top_recruit .top_recruit_contents .top_contents_title {
  margin-bottom: 3rem;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit .top_recruit_contents .top_contents_title {
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit_contents .top_contents_title {
    align-items: center;
    margin-bottom: 1rem;
  }
}
#top_recruit .top_recruit_contents .top_contents_title h2 {
  margin-right: 1rem;
}
#top_recruit .top_recruit_contents .top_contents_title p {
  color: #25813a;
}
#top_recruit .top_recruit_contents .top_recruit_text {
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit .top_recruit_contents .top_recruit_text {
    top: 40%;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit_contents .top_recruit_text {
    position: static;
    width: 90%;
  }
}
#top_recruit .top_recruit_contents .top_recruit_text p {
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit_contents .top_recruit_text p {
    margin-bottom: 1rem;
  }
}
#top_recruit .top_recruit_contents .top_recruit_text .top_contents_btn {
  margin-left: auto;
  margin-right: 3rem;
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit_contents .top_recruit_text .top_contents_btn {
    text-align: end;
    padding-right: 3rem;
  }
}
#top_recruit .top_recruit_image {
  width: 50%;
  height: 550px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit .top_recruit_image {
    height: 350px;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit_image {
    width: 90%;
    height: 300px;
  }
}
#top_recruit .top_recruit_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn_active {
  background-color: #225a2f !important;
  width: 40px !important;
  height: 40px !important;
}

.btn_active02 {
  background-color: #fff !important;
  width: 40px !important;
  height: 40px !important;
}

#top_gallery {
  padding: 3rem;
  padding-bottom: 15rem;
  background-color: #F2E2D4;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_gallery {
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 768px) {
  #top_gallery {
    flex-flow: column;
    padding: 3rem 2rem;
    padding-bottom: 10rem;
  }
}
#top_gallery .top_contents_title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #top_gallery .top_contents_title {
    margin-bottom: 1rem;
  }
}
#top_gallery .top_contents_title p {
  color: #25813a;
}
#top_gallery .top_gallery_contents {
  width: 60%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_gallery .top_gallery_contents {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  #top_gallery .top_gallery_contents {
    width: 100%;
  }
}
#top_gallery .top_gallery_contents ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}
#top_gallery .top_gallery_contents ul li {
  width: 30%;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #top_gallery .top_gallery_contents ul li {
    width: 45%;
  }
}
#top_gallery .top_gallery_contents ul li img {
  width: 100%;
  border-radius: 25px;
  -o-object-fit: cover;
     object-fit: cover;
}

#service_main {
  height: 100vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service_main {
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #service_main {
    height: 300px;
  }
}
#service_main .service_main_contents {
  background-position: center;
  background-size: cover;
  width: 70%;
  height: 700px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service_main .service_main_contents {
    width: 60%;
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #service_main .service_main_contents {
    width: 95%;
    height: 300px;
  }
}
#service_main .service_main_contents .service_main_bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0 0 0 80px;
  position: relative;
}
#service_main .service_main_contents .service_main_bg .service_title {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  #service_main .service_main_contents .service_main_bg .service_title {
    top: 130%;
    left: 5%;
    color: #25813a;
  }
}
#service_main .service_main_contents .service_main_bg .service_title h1 {
  font-family: Arial, Helvetica, sans-serif;
}

#service {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  #service {
    margin-top: 10rem;
  }
}
#service .service_top_contents {
  padding: 3rem 0;
}
#service .service_top_contents .service_writing {
  width: 50%;
  margin-left: auto;
  margin-right: 0;
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 25px 0 0 25px;
  padding: 3rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service_top_contents .service_writing {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  #service .service_top_contents .service_writing {
    width: 90%;
    padding: 2rem;
  }
}
#service .service_top_contents .service_writing .service_writing_headline h3 {
  position: relative;
  color: #333;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #service .service_top_contents .service_writing .service_writing_headline h3 {
    font-size: 18px;
    margin-bottom: 40px;
  }
}
#service .service_top_contents .service_writing .service_writing_headline h3::after {
  position: absolute;
  content: "";
  width: 50%;
  height: 2px;
  background-color: #333;
  bottom: -30px;
  left: 0;
}
@media screen and (max-width: 768px) {
  #service .service_top_contents .service_writing .service_writing_headline h3::after {
    height: 1px;
    bottom: -20px;
  }
}
#service .service_bottom_contents {
  background-color: #fffddb;
  padding-bottom: 15rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service_bottom_contents {
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 768px) {
  #service .service_bottom_contents {
    padding-bottom: 10rem;
  }
}
#service .service_bottom_contents .service_bottom_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #service .service_bottom_contents .service_bottom_content {
    flex-flow: column;
    margin-bottom: 3rem;
  }
}
#service .service_bottom_contents .service_bottom_content .service_bottom_image {
  width: 50%;
  height: 550px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service_bottom_contents .service_bottom_content .service_bottom_image {
    height: 350px;
  }
}
@media screen and (max-width: 768px) {
  #service .service_bottom_contents .service_bottom_content .service_bottom_image {
    width: 100%;
    height: 300px;
  }
}
#service .service_bottom_contents .service_bottom_content .service_bottom_image img {
  width: 100%;
  height: 100%;
  vertical-align: top;
  -o-object-fit: cover;
     object-fit: cover;
}
#service .service_bottom_contents .service_bottom_content .service_bottom_writing {
  color: #333;
  width: 50%;
  padding: 3rem;
}
@media screen and (max-width: 768px) {
  #service .service_bottom_contents .service_bottom_content .service_bottom_writing {
    width: 100%;
    padding: 2rem;
  }
}
#service .service_bottom_contents .service_bottom_content .service_bottom_writing h2 {
  color: #333;
  font-size: 180%;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #service .service_bottom_contents .service_bottom_content .service_bottom_writing h2 {
    margin-bottom: 1rem;
    font-size: 150%;
  }
}
@media screen and (max-width: 768px) {
  #service .service_bottom_contents .service_bottom_content:nth-child(2) {
    flex-flow: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  #service .service_bottom_contents .service_bottom_content:last-child {
    flex-flow: column-reverse;
  }
}

#works_main {
  height: 100vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works_main {
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #works_main {
    height: 300px;
  }
}
#works_main .works_main_contents {
  background-position: center;
  background-size: cover;
  width: 70%;
  height: 700px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works_main .works_main_contents {
    width: 60%;
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #works_main .works_main_contents {
    width: 95%;
    height: 300px;
  }
}
#works_main .works_main_contents .works_main_bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0 0 0 80px;
  position: relative;
}
#works_main .works_main_contents .works_main_bg .works_title {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  #works_main .works_main_contents .works_main_bg .works_title {
    top: 130%;
    left: 5%;
    color: #25813a;
  }
}
#works_main .works_main_contents .works_main_bg .works_title h1 {
  font-family: Arial, Helvetica, sans-serif;
}

#works {
  position: relative;
  background-color: #fffddb;
  margin-top: 5rem;
  padding-bottom: 15rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works {
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 768px) {
  #works {
    margin-top: 10rem;
    padding-bottom: 10rem;
  }
}
#works .lower_headline {
  padding-top: 3rem;
}
#works .works_contents {
  width: 80%;
  margin: auto;
  padding: 5rem 0;
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  #works .works_contents {
    width: 95%;
    padding: 2rem 0;
  }
}
#works .works_contents ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}
#works .works_contents ul li {
  width: 30%;
  margin-bottom: 2rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works_contents ul li {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #works .works_contents ul li {
    width: 45%;
    margin: auto;
    margin-bottom: 2rem;
  }
}
#works .works_contents ul li .thumb {
  text-align: center;
  width: 100%;
  height: 180px;
}
#works .works_contents ul li .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: top;
}
#works .works_contents ul li .outline {
  background-color: #fff;
  padding: 2rem 1rem;
}
#works .works_contents ul li .outline .title {
  color: #25813a;
  margin-bottom: 1rem;
  font-size: 130%;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #works .works_contents ul li .outline .title {
    font-size: 120%;
  }
}
#works .works_contents .navigation {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #works .works_contents .navigation {
    margin-top: 40px;
  }
}

.wp-pagenavi span.current {
  color: #fff;
  padding: 10px;
  margin: 0 10px;
  background-color: #25813a;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi span.current {
    padding: 5px;
  }
}

.wp-pagenavi a, .wp-pagenavi span {
  border: none !important;
}

.wp-pagenavi a {
  text-decoration: underline;
  transition: all 0.4s;
  padding: 10px;
  text-decoration: none;
  color: #25813a;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi a {
    padding: 5px;
  }
}
.wp-pagenavi a:hover {
  opacity: 0.5;
}

.nextpostslink {
  text-decoration: none;
}

.previouspostslink {
  text-decoration: none;
}

#modal-container {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
}
#modal-container > div {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}
#modal-container > div > img {
  width: 560px;
  height: 340px;
}
@media screen and (max-width: 768px) {
  #modal-container > div > img {
    width: 300px;
    height: 180px;
  }
}
#modal-container .close {
  position: absolute;
  top: 30%;
  right: 30%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #modal-container .close {
    top: 32%;
    right: 22%;
  }
}
@media screen and (max-width: 768px) {
  #modal-container .close {
    top: 33%;
    right: 15%;
  }
}
#modal-container .close span:first-child {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(-45deg);
  width: 50px;
  height: 2px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #modal-container .close span:first-child {
    width: 25px;
  }
}
#modal-container .close span:last-child {
  position: absolute;
  top: 0;
  left: 0;
  transform: rotate(45deg);
  width: 50px;
  height: 2px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #modal-container .close span:last-child {
    width: 25px;
  }
}

img.popup {
  cursor: pointer;
  width: 100%;
  height: 100%;
}

#news_main {
  height: 100vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_main {
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #news_main {
    height: 300px;
  }
}
#news_main .news_main_contents {
  background-position: center;
  background-size: cover;
  width: 70%;
  height: 700px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_main .news_main_contents {
    width: 60%;
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #news_main .news_main_contents {
    width: 95%;
    height: 300px;
  }
}
#news_main .news_main_contents .news_main_bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0 0 0 80px;
  position: relative;
}
#news_main .news_main_contents .news_main_bg .news_title {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  #news_main .news_main_contents .news_main_bg .news_title {
    top: 130%;
    left: 5%;
    color: #25813a;
  }
}
#news_main .news_main_contents .news_main_bg .news_title h1 {
  font-family: Arial, Helvetica, sans-serif;
}

#news {
  position: relative;
  background-color: #fffddb;
  margin-top: 5rem;
  padding-bottom: 15rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news {
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 768px) {
  #news {
    margin-top: 10rem;
    padding-bottom: 10rem;
  }
}
#news .lower_headline {
  padding-top: 3rem;
}
#news .news_contents {
  width: 80%;
  margin: auto;
  padding: 5rem 0;
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  #news .news_contents {
    width: 95%;
    padding: 2rem 0;
  }
}
#news .news_contents ul {
  list-style: none;
}
#news .news_contents ul a {
  text-decoration: none;
  color: #25813a;
}
#news .news_contents ul a li {
  width: 100%;
  margin-bottom: 2rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: all 0.4s;
}
#news .news_contents ul a li:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  #news .news_contents ul a li {
    margin: auto;
    margin-bottom: 1rem;
  }
}
#news .news_contents ul a li .outline {
  background-color: #fff;
  padding: 2rem 1rem;
}
#news .news_contents ul a li .outline .title {
  color: #25813a;
  font-size: 140%;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}
#news .news_contents ul a li .outline .descn p {
  color: #333;
}
#news .news_contents .navigation {
  margin-top: 3rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #news .news_contents .navigation {
    margin-top: 2rem;
  }
}

.wp-pagenavi span.current {
  color: #fff;
  padding: 10px;
  margin: 0 10px;
  background-color: #25813a;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi span.current {
    padding: 5px;
  }
}

.wp-pagenavi a, .wp-pagenavi span {
  border: none !important;
}

.wp-pagenavi a {
  text-decoration: underline;
  transition: all 0.4s;
  padding: 10px;
  text-decoration: none;
  color: #25813a;
}
@media screen and (max-width: 768px) {
  .wp-pagenavi a {
    padding: 5px;
  }
}
.wp-pagenavi a:hover {
  opacity: 0.5;
}

.nextpostslink {
  text-decoration: none;
}

.previouspostslink {
  text-decoration: none;
}

#news_main {
  height: 100vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_main {
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #news_main {
    height: 300px;
  }
}
#news_main .news_main_contents {
  background-position: center;
  background-size: cover;
  width: 70%;
  height: 700px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_main .news_main_contents {
    width: 60%;
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #news_main .news_main_contents {
    width: 95%;
    height: 300px;
  }
}
#news_main .news_main_contents .news_main_bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0 0 0 80px;
  position: relative;
}
#news_main .news_main_contents .news_main_bg .news_title {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  #news_main .news_main_contents .news_main_bg .news_title {
    top: 130%;
    left: 5%;
    color: #25813a;
  }
}
#news_main .news_main_contents .news_main_bg .news_title h1 {
  font-family: Arial, Helvetica, sans-serif;
}

#single_news {
  position: relative;
  background-color: #fffddb;
  margin-top: 5rem;
  padding-bottom: 15rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #single_news {
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 768px) {
  #single_news {
    margin-top: 10rem;
    padding-bottom: 10rem;
  }
}
#single_news .lower_headline {
  padding-top: 3rem;
}
#single_news .news_contents {
  width: 80%;
  margin: auto;
  padding: 5rem 0;
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  #single_news .news_contents {
    width: 95%;
    padding: 2rem 0;
  }
}
#single_news .news_contents ul {
  list-style: none;
}
#single_news .news_contents ul li {
  width: 100%;
  margin-bottom: 2rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: all 0.4s;
}
#single_news .news_contents ul li:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  #single_news .news_contents ul li {
    margin: auto;
    margin-bottom: 1rem;
  }
}
#single_news .news_contents ul li a {
  text-decoration: none;
}
#single_news .news_contents ul li a .outline {
  background-color: #fff;
  padding: 2rem 1rem;
}
#single_news .news_contents ul li a .outline .date {
  color: #333;
}
#single_news .news_contents ul li a .outline .title {
  color: #25813a;
  font-size: 140%;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}
#single_news .news_contents ul li a .outline .descn p {
  color: #333;
}
#single_news .news_contents .navigation {
  margin-top: 3rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #single_news .news_contents .navigation {
    margin-top: 2rem;
  }
}

#company_main {
  height: 100vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company_main {
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #company_main {
    height: 300px;
  }
}
#company_main .company_main_contents {
  background-position: center;
  background-size: cover;
  width: 70%;
  height: 700px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company_main .company_main_contents {
    width: 60%;
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #company_main .company_main_contents {
    width: 95%;
    height: 300px;
  }
}
#company_main .company_main_contents .company_main_bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0 0 0 80px;
  position: relative;
}
#company_main .company_main_contents .company_main_bg .company_title {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  #company_main .company_main_contents .company_main_bg .company_title {
    top: 130%;
    left: 5%;
    color: #25813a;
  }
}
#company_main .company_main_contents .company_main_bg .company_title h1 {
  font-family: Arial, Helvetica, sans-serif;
}

#company {
  margin-top: 5rem;
  padding-top: 5rem;
  padding-bottom: 15rem;
  background-color: #fffddb;
}
@media screen and (max-width: 768px) {
  #company {
    margin-top: 10rem;
  }
}
#company .company_contents {
  width: 100%;
  padding-bottom: 5rem;
  margin: auto;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company_contents {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #company .company_contents {
    width: 100%;
  }
}
#company .company_contents .company_detail_title {
  width: 30%;
  margin: auto;
  position: relative;
  z-index: 100;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #company .company_contents .company_detail_title {
    width: 60%;
  }
}
#company .company_contents .company_detail_title h3 {
  padding: 2rem;
  background-color: #333;
  color: #fff;
}
#company .company_contents .company_detail {
  width: 60%;
  margin: auto;
  border-radius: 25px;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 3rem;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company_contents .company_detail {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #company .company_contents .company_detail {
    width: 95%;
    padding: 3rem 2rem;
  }
}
#company .company_contents .company_detail table {
  margin: 0;
  width: 100%;
  border-collapse: collapse;
}
#company .company_contents .company_detail table tr th {
  width: 35%;
  padding: 1rem;
  border-bottom: 2px solid #dddddd;
  text-align: end;
  color: #333;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company_contents .company_detail table tr th {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  #company .company_contents .company_detail table tr th {
    padding-right: 1rem;
    font-size: 90%;
    width: 40%;
    border-bottom: 1px solid #dddddd;
  }
}
#company .company_contents .company_detail table tr td {
  width: 65%;
  padding: 1rem;
  border-bottom: 2px solid #dddddd;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company_contents .company_detail table tr td {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #company .company_contents .company_detail table tr td {
    padding-left: 20px;
    font-size: 90%;
    width: 60%;
    border-bottom: 1px solid #dddddd;
  }
}
#company .company_map {
  width: 100%;
}
#company .company_map iframe {
  width: 100%;
}

#recruit_main {
  height: 100vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_main {
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #recruit_main {
    height: 300px;
  }
}
#recruit_main .recruit_main_contents {
  background-position: center;
  background-size: cover;
  width: 70%;
  height: 700px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit_main .recruit_main_contents {
    width: 60%;
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #recruit_main .recruit_main_contents {
    width: 95%;
    height: 300px;
  }
}
#recruit_main .recruit_main_contents .recruit_main_bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0 0 0 80px;
  position: relative;
}
#recruit_main .recruit_main_contents .recruit_main_bg .recruit_title {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  #recruit_main .recruit_main_contents .recruit_main_bg .recruit_title {
    top: 130%;
    left: 5%;
    color: #25813a;
  }
}
#recruit_main .recruit_main_contents .recruit_main_bg .recruit_title h1 {
  font-family: Arial, Helvetica, sans-serif;
}

#recruit {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  #recruit {
    margin-top: 10rem;
  }
}
#recruit .recruit_writing {
  text-align: center;
  width: 65%;
  margin: auto;
  margin-bottom: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit_writing {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit_writing {
    width: 90%;
  }
}
#recruit .recruit_writing .recruit_writing_headline {
  margin-bottom: 1rem;
}
#recruit .recruit_writing .recruit_writing_headline h3 {
  font-size: 160%;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #recruit .recruit_writing .recruit_writing_headline h3 {
    font-size: 130%;
  }
}
#recruit .recruit_writing .recruit_writing_text p {
  text-align: start;
}
#recruit .recruit_contents {
  width: 100%;
  padding: 3rem 0;
  background-color: #fffddb;
  margin: auto;
  position: relative;
  padding-bottom: 15rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit_contents {
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit_contents {
    padding: 2rem 0;
    padding-bottom: 10rem;
  }
}
#recruit .recruit_contents .recruit_detail_title {
  text-align: center;
  margin-bottom: 2rem;
  color: #25813a;
}
#recruit .recruit_contents .recruit_detail {
  width: 60%;
  margin: auto;
  margin-bottom: 5rem;
  background-color: #fff;
  border-radius: 25px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 5rem;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit_contents .recruit_detail {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit_contents .recruit_detail {
    width: 90%;
    padding: 20px;
  }
}
#recruit .recruit_contents .recruit_detail table {
  margin: 0;
  width: 100%;
  border-collapse: collapse;
}
#recruit .recruit_contents .recruit_detail table tr th {
  width: 35%;
  padding: 1rem;
  border-bottom: 2px solid #333;
  text-align: end;
  color: #333;
}
@media screen and (max-width: 768px) {
  #recruit .recruit_contents .recruit_detail table tr th {
    padding-right: 1rem;
    font-size: 0.8rem;
    width: 35%;
  }
}
#recruit .recruit_contents .recruit_detail table tr td {
  width: 65%;
  padding: 1rem;
  border-bottom: 2px solid #333;
}
@media screen and (max-width: 768px) {
  #recruit .recruit_contents .recruit_detail table tr td {
    padding-left: 1rem;
    font-size: 0.8rem;
    width: 65%;
  }
}
#recruit .recruit_contents .recruit_detail .recruit_btn {
  text-align: center;
  margin-top: 3rem;
}
#recruit .recruit_contents .recruit_detail .recruit_btn button {
  padding: 20px 180px;
  border-radius: 50px;
  font-size: 18px;
  border: none;
  background-color: #25813a;
  color: #fff;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #recruit .recruit_contents .recruit_detail .recruit_btn button {
    padding: 10px 60px;
    font-size: 12.5px;
  }
}
#recruit .recruit_contents .recruit_detail .recruit_btn button:hover {
  background-color: #225a2f;
}

#price_main {
  height: 100vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #price_main {
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #price_main {
    height: 300px;
  }
}
#price_main .price_main_contents {
  background-position: center;
  background-size: cover;
  width: 70%;
  height: 700px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #price_main .price_main_contents {
    width: 60%;
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #price_main .price_main_contents {
    width: 95%;
    height: 300px;
  }
}
#price_main .price_main_contents .price_main_bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0 0 0 80px;
  position: relative;
}
#price_main .price_main_contents .price_main_bg .price_title {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  #price_main .price_main_contents .price_main_bg .price_title {
    top: 130%;
    left: 5%;
    color: #25813a;
  }
}
#price_main .price_main_contents .price_main_bg .price_title h1 {
  font-family: Arial, Helvetica, sans-serif;
}

#price {
  margin-top: 5rem;
  padding-top: 5rem;
  padding-bottom: 8rem;
  background-color: #fffddb;
}
@media screen and (max-width: 768px) {
  #price {
    margin-top: 10rem;
  }
}
#price .price_contents {
  width: 100%;
  padding-bottom: 5rem;
  margin: auto;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #price .price_contents {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #price .price_contents {
    width: 100%;
  }
}
#price .price_contents .price_detail_title {
  width: 30%;
  margin: auto;
  position: relative;
  z-index: 100;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #price .price_contents .price_detail_title {
    width: 60%;
  }
}
#price .price_contents .price_detail_title h3 {
  padding: 2rem;
  background-color: #333;
  color: #fff;
}
#price .price_contents .price_detail {
  width: 60%;
  margin: 2vw auto;
  border-radius: 25px;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 3rem;
  position: relative;
  z-index: 100;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #price .price_contents .price_detail {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #price .price_contents .price_detail {
    width: 90%;
    padding: 3rem 2rem;
  }
}
#price .price_contents .price_detail h4 {
  text-align: center;
  padding: 2vw;
}
#price .price_contents .price_detail h5 {
  color: #eba121;
  text-align: center;
  font-size: 150%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #price .price_contents .price_detail h5 {
    font-size: 120%;
  }
}
@media screen and (max-width: 768px) {
  #price .price_contents .price_detail h5 {
    font-size: 120%;
  }
}
#price .price_contents .price_detail p {
  padding-top: 1vw;
  color: #eba121;
  text-align: center;
}
#price .price_contents .price_detail ul {
  list-style: none;
  font-size: 130%;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #price .price_contents .price_detail ul {
    font-size: 110%;
  }
}
#price .price_contents .price_detail ul li {
  margin-top: 1vw;
  width: 35%;
}
@media screen and (max-width: 768px) {
  #price .price_contents .price_detail ul li {
    margin-top: 3vw;
    width: 80%;
    font-size: 75%;
  }
}
#price .price_contents .price_detail table {
  margin: 0;
  width: 100%;
  border-collapse: collapse;
}
#price .price_contents .price_detail table tr th {
  width: 35%;
  padding: 1rem;
  border-bottom: 2px solid #dddddd;
  text-align: end;
  color: #333;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #price .price_contents .price_detail table tr th {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  #price .price_contents .price_detail table tr th {
    padding-right: 1rem;
    font-size: 90%;
    width: 70%;
    border-bottom: 1px solid #dddddd;
  }
}
#price .price_contents .price_detail table tr td {
  width: 65%;
  padding: 1rem;
  border-bottom: 2px solid #dddddd;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #price .price_contents .price_detail table tr td {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #price .price_contents .price_detail table tr td {
    padding-left: 20px;
    font-size: 90%;
    width: 30%;
    border-bottom: 1px solid #dddddd;
  }
}

#contact_main {
  height: 100vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact_main {
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #contact_main {
    height: 300px;
  }
}
#contact_main .contact_main_contents {
  background-position: center;
  background-size: cover;
  width: 70%;
  height: 700px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact_main .contact_main_contents {
    width: 60%;
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #contact_main .contact_main_contents {
    width: 95%;
    height: 300px;
  }
}
#contact_main .contact_main_contents .contact_main_bg {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0 0 0 80px;
  position: relative;
}
#contact_main .contact_main_contents .contact_main_bg .contact_title {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  #contact_main .contact_main_contents .contact_main_bg .contact_title {
    top: 130%;
    left: 5%;
    color: #25813a;
  }
}
#contact_main .contact_main_contents .contact_main_bg .contact_title h1 {
  font-family: Arial, Helvetica, sans-serif;
}

.contact_form {
  width: 70%;
  margin: auto;
  padding: 3rem;
  color: #333;
  padding-bottom: 20rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact_form {
    width: 90%;
    padding-bottom: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .contact_form {
    width: 90%;
    padding: 10px;
    padding-bottom: 10rem;
    margin-top: 10rem;
  }
}
.contact_form .contact_text {
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .contact_form .contact_text {
    text-align: left;
    margin-bottom: 2rem;
  }
}
.contact_form form {
  width: 100%;
}
.contact_form form table {
  width: 100%;
  margin-bottom: 3rem;
  border-collapse: collapse;
  border-top: 1px solid #25813a;
}
@media screen and (max-width: 768px) {
  .contact_form form table tr {
    display: flex;
    flex-flow: column;
  }
}
.contact_form form table tr th {
  padding: 2rem 0;
  width: 35%;
  text-align: end;
  padding-right: 3rem;
  border-bottom: 1px solid #25813a;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact_form form table tr th {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .contact_form form table tr th {
    width: 100%;
    border-bottom: none;
    text-align: start;
    padding: 1rem 0;
    padding-top: 2rem;
    padding-left: 0px;
  }
}
.contact_form form table tr th span {
  padding: 10px;
  background-color: red;
  border-radius: 25px;
  color: #fff;
  margin-left: 1rem;
}
.contact_form form table tr td {
  padding: 2rem 0;
  width: 65%;
  border-bottom: 1px solid #25813a;
  padding-right: 2rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact_form form table tr td {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  .contact_form form table tr td {
    width: 100%;
    padding: 10px 0;
    padding-bottom: 2rem;
    padding-right: 0;
  }
}
.contact_form form table tr td input {
  width: 80%;
  height: 50px;
  padding-left: 5px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact_form form table tr td input {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .contact_form form table tr td input {
    width: 100%;
  }
}
.contact_form form table tr td textarea {
  width: 80%;
  height: 120px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact_form form table tr td textarea {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .contact_form form table tr td textarea {
    width: 100%;
  }
}
.contact_form form table tr:nth-child(4) th span {
  background-color: blue;
}
.contact_form form table tr:nth-child(4) td input {
  width: 20% !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .contact_form form table tr:nth-child(4) td input {
    width: 25% !important;
  }
}
@media screen and (max-width: 768px) {
  .contact_form form table tr:nth-child(4) td input {
    width: 29% !important;
  }
}
.contact_form form .agree {
  text-align: center;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .contact_form form .agree {
    margin: 10px 0;
  }
}
.contact_form form .submit {
  text-align: center;
}
.contact_form form .submit input {
  padding: 20px 180px;
  border-radius: 50px;
  font-size: 18px;
  border: none;
  background-color: #25813a;
  color: #fff;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .contact_form form .submit input {
    padding: 10px 90px;
  }
}
.contact_form form .submit input:hover {
  background-color: #225a2f;
}
.contact_form form .submit input[name=submitBack] {
  padding: 20px 90px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .contact_form form .submit input[name=submitBack] {
    padding: 10px 45px;
    margin-right: 10px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}
.contact_form form .submit input[name=confirm] {
  padding: 20px 90px;
}
@media screen and (max-width: 768px) {
  .contact_form form .submit input[name=confirm] {
    padding: 10px 45px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}

#policy_main {
  height: 100vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #policy_main {
    height: 550px;
  }
}
@media screen and (max-width: 768px) {
  #policy_main {
    height: 300px;
  }
}
#policy_main .policy_main_contents {
  background-position: center;
  background-size: cover;
  width: 70%;
  height: 700px;
  position: absolute;
  top: 0;
  right: 0;
  border-radius: 0 0 0 80px;
}
@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%;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0 0 0 80px;
  position: relative;
}
#policy_main .policy_main_contents .policy_main_bg .policy_title {
  color: #fff;
  position: absolute;
  top: 50%;
  left: 10%;
  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: #25813a;
  }
}
#policy_main .policy_main_contents .policy_main_bg .policy_title h1 {
  font-family: Arial, Helvetica, sans-serif;
}

.policy_contents {
  width: 80%;
  margin: auto;
  margin-top: 5rem;
  margin-bottom: 15rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .policy_contents {
    margin-bottom: 10rem;
  }
}
@media screen and (max-width: 768px) {
  .policy_contents {
    width: 90%;
    margin-top: 10rem;
    margin-bottom: 10rem;
  }
}
.policy_contents h2 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .policy_contents h2 {
    font-size: 1rem;
  }
}
.policy_contents p {
  margin-bottom: 2rem;
}

footer {
  position: relative;
}
footer #top_contact {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: #25813a;
  width: 70%;
  margin: auto;
  border-radius: 25px;
  padding: 2rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #top_contact {
    width: 90%;
    top: -30%;
  }
}
@media screen and (max-width: 768px) {
  footer #top_contact {
    width: 90%;
    padding: 1rem;
    top: -25%;
  }
}
footer #top_contact .top_contact_title {
  text-align: center;
  margin-bottom: 1rem;
}
footer #top_contact .top_contact_title h2 {
  color: #fff;
}
footer #top_contact .top_contact_text {
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer #top_contact .top_contact_text {
    margin-bottom: 2rem;
  }
}
footer #top_contact .top_contact_text p {
  color: #fff;
}
footer #top_contact .top_contact_contents {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #top_contact .top_contact_contents {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  footer #top_contact .top_contact_contents {
    width: 100%;
    flex-flow: column;
  }
}
footer #top_contact .top_contact_contents .top_contact_form {
  width: 45%;
}
@media screen and (max-width: 768px) {
  footer #top_contact .top_contact_contents .top_contact_form {
    width: 100%;
    text-align: center;
    margin-bottom: 1rem;
  }
}
footer #top_contact .top_contact_contents .top_contact_form button {
  padding: 20px 40px;
  border-radius: 50px;
  background-color: #fff;
  color: #25813a;
  border: none;
  font-size: 1.2rem;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #top_contact .top_contact_contents .top_contact_form button {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 768px) {
  footer #top_contact .top_contact_contents .top_contact_form button {
    padding: 5px 20px;
  }
}
footer #top_contact .top_contact_contents .top_contact_form button:hover {
  background-color: #225a2f;
  color: #fff;
}
footer #top_contact .top_contact_contents .top_contact_form button span {
  padding-left: 20px;
  padding-right: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #top_contact .top_contact_contents .top_contact_form button span {
    padding-left: 10px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  footer #top_contact .top_contact_contents .top_contact_form button span {
    padding-left: 10px;
    padding-right: 20px;
    font-size: 12.5px;
  }
}
footer #top_contact .top_contact_contents .top_contact_tel {
  width: 45%;
}
@media screen and (max-width: 768px) {
  footer #top_contact .top_contact_contents .top_contact_tel {
    width: 100%;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #top_contact .top_contact_contents .top_contact_tel .tel_pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  footer #top_contact .top_contact_contents .top_contact_tel .tel_pc {
    display: none;
  }
}
footer #top_contact .top_contact_contents .top_contact_tel .tel_pc p {
  text-align: center;
  color: #fff;
  font-size: 2.3rem;
}
@media screen and (min-width: 1441px) {
  footer #top_contact .top_contact_contents .top_contact_tel .tel_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  footer #top_contact .top_contact_contents .top_contact_tel .tel_sp {
    display: none;
  }
}
footer #top_contact .top_contact_contents .top_contact_tel .tel_sp a {
  text-decoration: none;
}
footer #top_contact .top_contact_contents .top_contact_tel .tel_sp a h2 {
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer #top_contact .top_contact_contents .top_contact_tel .tel_sp a h2 {
    font-size: 1.5rem;
  }
}
footer #top_contact .top_contact_contents .top_contact_tel .tel_sp p {
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer #top_contact .top_contact_contents .top_contact_tel .tel_sp p {
    font-size: 1rem;
  }
}
footer #footer {
  background-position: center;
  background-size: cover;
  width: 100%;
}
footer #footer .footer_bg {
  width: 100%;
  height: 100%;
  background-color: rgba(245, 235, 159, 0.6);
  padding-top: 15rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  footer #footer .footer_bg {
    padding-top: 12rem;
  }
}
footer #footer .footer_bg .footer_contents {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer .footer_bg .footer_contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  footer #footer .footer_bg .footer_contents {
    width: 90%;
    flex-flow: column-reverse;
  }
}
footer #footer .footer_bg .footer_contents .footer_company {
  width: 40%;
}
@media screen and (max-width: 768px) {
  footer #footer .footer_bg .footer_contents .footer_company {
    width: 100%;
  }
}
footer #footer .footer_bg .footer_contents .footer_company .footer_logo {
  width: 80%;
  margin: auto;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  footer #footer .footer_bg .footer_contents .footer_company .footer_logo {
    width: 65%;
  }
}
footer #footer .footer_bg .footer_contents .footer_company .footer_logo img {
  width: 100%;
}
footer #footer .footer_bg .footer_contents .footer_company .footer_company_contents {
  color: #225a2f;
  text-align: center;
}
footer #footer .footer_bg .footer_contents .footer_menu {
  width: 58%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer .footer_bg .footer_contents .footer_menu {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  footer #footer .footer_bg .footer_contents .footer_menu {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}
footer #footer .footer_bg .footer_contents .footer_menu .footer_menu_contents {
  margin-bottom: 1rem;
}
footer #footer .footer_bg .footer_contents .footer_menu .footer_menu_contents ul {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
}
@media screen and (max-width: 768px) {
  footer #footer .footer_bg .footer_contents .footer_menu .footer_menu_contents ul {
    justify-content: center;
  }
}
footer #footer .footer_bg .footer_contents .footer_menu .footer_menu_contents ul li {
  width: 30%;
  margin-bottom: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer .footer_bg .footer_contents .footer_menu .footer_menu_contents ul li {
    width: 33%;
  }
}
@media screen and (max-width: 768px) {
  footer #footer .footer_bg .footer_contents .footer_menu .footer_menu_contents ul li {
    text-align: center;
  }
}
footer #footer .footer_bg .footer_contents .footer_menu .footer_menu_contents ul li:last-child {
  width: auto;
}
footer #footer .footer_bg .footer_contents .footer_menu .footer_menu_contents ul li a {
  text-decoration: none;
  color: #225a2f;
  position: relative;
}
footer #footer .footer_bg .footer_contents .footer_menu .footer_menu_contents ul li a::after {
  position: absolute;
  left: 0;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #25813a;
  bottom: -4px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}
footer #footer .footer_bg .footer_contents .footer_menu .footer_menu_contents ul li a:hover::after {
  transform: scale(1, 1);
}
@media screen and (max-width: 768px) {
  footer #footer .footer_bg .footer_contents .footer_menu .footer_menu_contents ul li a {
    font-size: 80%;
  }
}
footer #footer .footer_bg .footer_contents .footer_menu .footer_sns_icon {
  padding-left: 20px;
  margin-bottom: 20px;
}
footer #footer .footer_bg .footer_contents .footer_menu .footer_sns_icon ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}
footer #footer .footer_bg .footer_contents .footer_menu .footer_sns_icon ul li {
  margin: 0 20px;
  padding-left: 0;
}
footer #footer .footer_bg .footer_contents .footer_menu .footer_sns_icon ul li a {
  padding: 0px;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #25813a;
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
footer #footer .footer_bg .footer_contents .footer_menu .footer_sns_icon ul li a:hover {
  background-color: #225a2f;
}
footer #footer .footer_bg .footer_contents .footer_menu .footer_sns_icon ul li a i::before {
  color: #fff;
}
footer #footer .footer_bg .footer_contents .footer_menu .footer_sns_icon ul li .new_twitter:before {
  content: "𝕏" !important;
  font-family: sans-serif !important;
  font-weight: bold;
  color: #fff;
}
footer #footer .footer_bg .footer_contents .footer_menu .footer_copyright {
  text-align: center;
  color: #225a2f;
  font-size: 80%;
}/*# sourceMappingURL=style.css.map */