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

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Serif JP", serif;
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: 0.2vw;
  position: relative;
  z-index: -100;
  background-color: #f4f4f4;
}

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

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

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

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

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

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

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

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

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

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

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

.js-header.change-color .header_group #header_sp {
  transition: 0.3s;
  background-color: rgba(255, 255, 255, 0.75);
}
.js-header.change-color .header_group #header_sp .header_logo a .logo {
  display: none;
}
.js-header.change-color .header_group #header_sp .header_logo a .change_logo {
  display: block;
}

.header_group {
  position: absolute;
  top: 0;
  z-index: 999999;
  width: 100%;
  background-color: #fff;
}
.header_group #header_pc {
  background-color: #fff;
  display: none;
  padding: 0 3rem;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .header_group #header_pc {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group #header_pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header_group #header_pc {
    display: none;
  }
}
.header_group #header_pc .header_bar {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
}
.header_group #header_pc .header_bar .header_logo {
  width: 15%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group #header_pc .header_bar .header_logo {
    width: 30vw;
  }
}
.header_group #header_pc .header_bar .header_logo img {
  width: 100%;
}
.header_group #header_pc .header_bar .header_contact {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  align-items: center;
}
.header_group #header_pc .header_bar .header_contact li {
  width: auto;
  padding: 0 1rem;
}
.header_group #header_pc .header_bar .header_contact li a {
  text-decoration: none;
}
.header_group #header_pc .header_bar .header_contact li a.header_contact_tel {
  color: #fff;
  font-size: 1.4rem;
}
.header_group #header_pc .header_bar .header_contact li a.header_contact_tel i {
  padding-right: 0.5rem;
}
.header_group #header_pc .header_bar .header_contact li a.header_contact_style {
  color: #48b6ce;
  background-color: #fff;
  padding: 5px 20px;
  border-radius: 1rem;
  transition: all 0.4s;
}
.header_group #header_pc .header_bar .header_contact li a.header_contact_style:hover {
  opacity: 0.75;
}
.header_group #header_pc .header_bar .header_contact li a.header_contact_style i {
  padding-right: 0.5rem;
}
.header_group #header_pc .header_menu {
  text-align: center;
  width: 100%;
}
.header_group #header_pc .header_menu ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-around;
  align-items: center;
}
.header_group #header_pc .header_menu ul li {
  width: auto;
}
.header_group #header_pc .header_menu ul li a {
  font-size: 0.8rem;
  display: block;
  padding: 2rem 0;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  position: relative;
  transition: all 0.4s;
}
.header_group #header_pc .header_menu ul li a i {
  display: block;
}
.header_group #header_pc .header_menu ul li a span {
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group #header_pc .header_menu ul li a span {
    font-size: 0.8rem;
  }
}
.header_group #header_pc .header_menu ul li a button {
  display: block;
  font-size: 1.2rem;
  border: none;
  padding: 0;
  cursor: pointer;
  background-color: transparent;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group #header_pc .header_menu ul li a button {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .header_group #header_pc .header_menu ul li a button {
    display: none;
  }
}
.header_group #header_pc .header_menu ul li a:hover, .header_group #header_pc .header_menu ul li a:active {
  color: #ebffe9;
}

#header_sp {
  width: 100%;
  height: 90px;
  display: block;
  position: fixed;
}
#header_sp .header_logo {
  width: 240px;
  padding: 1rem;
}
@media screen and (max-width: 768px) {
  #header_sp .header_logo {
    width: 50%;
  }
}
#header_sp .header_logo img {
  display: block;
  width: 100%;
}
#header_sp .header_logo .logo {
  display: block;
}
#header_sp .header_logo .change_logo {
  display: none;
}

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

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

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

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

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

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

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

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 35%;
  left: 50%;
  background: #045d2d;
  text-shadow: 0 0 20px #000;
  transform: translate(-50%, -50%) rotate(45deg);
}

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

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

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

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

nav.globalMenuSp ul li a {
  display: block;
  color: #045d2d;
  padding: 0.25em 0;
  text-decoration: none;
  font-size: 1rem;
  border-bottom: solid 1px #ddd;
}

nav.globalMenuSp ul li a i {
  padding-right: 0.5rem;
}

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

#sample_img img, #header_sample img, #footer_sample img {
  width: 100%;
}

#top_main {
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, #fff 0%, #fff 60%, #f4f9e3 60%, #f4f9e3 100%);
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_main {
    background: linear-gradient(180deg, #fff 0%, #fff 60%, #f4f9e3 60%, #f4f9e3 100%);
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main {
    background: linear-gradient(180deg, #fff 0%, #fff 65%, #f4f9e3 65%, #f4f9e3 100%);
  }
}
@media screen and (max-width: 768px) {
  #top_main {
    height: 60vh;
  }
}
#top_main .slide-images {
  width: 100%;
  margin-left: auto;
  height: 100vh;
  background-color: #f8faf3;
}
@media screen and (max-width: 768px) {
  #top_main .slide-images {
    height: 60vh;
  }
}
#top_main .slide-images::after {
  position: relative;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#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 {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top_main .top_main_writing_name {
  position: absolute;
  display: flex;
  top: 38vh;
  right: 0;
  width: 80px;
  text-align: center;
  z-index: 10;
  writing-mode: vertical-rl;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_writing_name {
    width: 15%;
    top: 20vh;
  }
}
#top_main .top_main_writing_name p {
  color: #fff;
  width: 80px;
  font-size: 2vw;
  padding: 0 1rem;
  animation: textAnime2 2s 0s forwards ease-in-out;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main_writing_name p {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main_writing_name p {
    width: 100%;
    padding: 0 0.5rem;
    font-size: 1.5rem;
  }
}
#top_main .top_main_writing {
  position: absolute;
  top: 15vh;
  right: 10vw;
  text-align: left;
  z-index: 10;
  padding: 0 5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main_writing {
    bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main_writing {
    top: 4vh;
    right: 20vw;
    padding: 1.5rem 0;
  }
}
#top_main .top_main_writing .top_main_text_en {
  margin-bottom: 0.5rem;
  overflow: hidden;
}
#top_main .top_main_writing .top_main_text_en p {
  font-size: 8rem;
  color: #333;
  letter-spacing: 0.4vw;
  line-height: 1.3;
  animation: textAnime 2s 0s forwards ease-in-out;
  transform: translateY(100%);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main_writing .top_main_text_en p {
    font-size: 8rem;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main_writing .top_main_text_en p {
    font-size: 5rem;
  }
}
#top_main .top_main_writing .top_main_text_en p img {
  width: 20rem;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_writing .top_main_text_en p img {
    width: 40vw;
  }
}
#top_main .top_main_writing .top_main_text_ja {
  padding-left: 3vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_writing .top_main_text_ja {
    padding-left: 1rem;
  }
}
#top_main .top_main_writing .top_main_text_ja p {
  line-height: 2;
  writing-mode: vertical-rl;
  font-size: 2.5rem;
  padding-right: 3rem;
  font-weight: 500;
  color: #fff;
  opacity: 0.75;
  transform: translateY(300%);
  animation: textanimation 4s forwards;
  /* 1文字目 */
  /* 2文字目 */
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main_writing .top_main_text_ja p {
    font-size: 2.3rem;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main_writing .top_main_text_ja p {
    font-size: 1.4rem;
    padding-right: 0;
    animation: textAnime3 0s forwards;
  }
}
#top_main .top_main_writing .top_main_text_ja p:nth-child(1) {
  animation-delay: 0s;
}
#top_main .top_main_writing .top_main_text_ja p:nth-child(2) {
  animation-delay: 0.5s;
}
#top_main .top_main_writing .top_main_text_ja p strong {
  display: block;
  font-size: 4rem;
  padding: 0.5rem 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main_writing .top_main_text_ja p strong {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main_writing .top_main_text_ja p strong {
    font-size: 1.8rem;
  }
}
#top_main .top_main_writing .top_main_text_ja .top_main_logo {
  width: 30%;
  margin: 1rem auto;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_writing .top_main_text_ja .top_main_logo {
    width: 60%;
  }
}
#top_main .top_main_writing .top_main_text_ja .top_main_logo img {
  width: 100%;
  margin: 0 auto;
  transform: translateY(200%);
  animation: textanimation 4s forwards;
}
#top_main .top_contents_btn {
  width: 20%;
  margin: 30px auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_contents_btn {
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_contents_btn {
    width: 100%;
  }
}

@keyframes textAnime {
  0% {
    opacity: 0;
    transform: scale(0.5);
    transform: translateY(3em);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    transform: translateY(0);
  }
}
@keyframes textAnime2 {
  0% {
    opacity: 0;
    transform: scale(0.5);
    transform: translateY(3em);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    transform: translateY(0);
  }
}
@keyframes textAnime3 {
  0% {
    opacity: 0;
    transform: scale(0);
    transform: translateY(0em);
  }
  100% {
    opacity: 0;
    transform: scale(1);
    transform: translateY(0);
  }
}
@keyframes textanimation {
  0% {
    opacity: 0;
    transform: scale(0.5);
    transform: translateX(3rem);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    transform: translateX(0);
  }
}
.slide-images {
  overflow: hidden;
  margin: 0 auto;
}
.slide-images .slider-item {
  font-size: 0;
  height: 100%;
}
.slide-images .slider-item img {
  width: 100%;
}
.slide-images .add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.box {
  width: 100%;
  transition: width 2s linear;
}

#greeting {
  padding: 5rem 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #greeting {
    padding: 3rem 0;
  }
}
#greeting .greeting {
  position: relative;
}
#greeting .greeting .greeting_contents .greeting_header {
  width: 100%;
}
#greeting .greeting .greeting_contents .greeting_header h3 {
  writing-mode: vertical-rl;
  color: #6D8753;
  font-size: 1.5rem;
  padding-left: 2rem;
  margin-bottom: 2rem;
}
#greeting .greeting .greeting_contents .greeting_group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 5rem;
  border-bottom: solid 1px #ddd;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #greeting .greeting .greeting_contents .greeting_group {
    padding-bottom: 3rem;
  }
}
#greeting .greeting .greeting_contents .greeting_group h2 {
  color: #6D8753;
  width: 100%;
  padding-left: 5%;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .greeting_group h2 {
    text-align: center;
  }
}
#greeting .greeting .greeting_contents .greeting_group .greeting_imggroup {
  width: 70%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #greeting .greeting .greeting_contents .greeting_group .greeting_imggroup {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .greeting_group .greeting_imggroup {
    width: 100%;
    padding: 0 2rem;
    margin-bottom: 1rem;
  }
}
#greeting .greeting .greeting_contents .greeting_group .greeting_imggroup .view {
  position: relative;
  overflow: hidden;
}
#greeting .greeting .greeting_contents .greeting_group .greeting_imggroup .view:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #f1f1f0;
  transform: translateX(0%);
  transition: all 1s ease-in-out 0.3s;
}
#greeting .greeting .greeting_contents .greeting_group .greeting_imggroup .view img {
  vertical-align: middle;
  transform: translateX(0%);
}
#greeting .greeting .greeting_contents .greeting_group .greeting_imggroup .view.js-on:after {
  transform: translateX(100%);
}
#greeting .greeting .greeting_contents .greeting_group .greeting_imggroup .greeting_img {
  width: 100%;
  height: 400px;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #greeting .greeting .greeting_contents .greeting_group .greeting_imggroup .greeting_img {
    height: 40vw;
  }
}
#greeting .greeting .greeting_contents .greeting_group .greeting_imggroup p {
  color: #333;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .greeting_group .greeting_imggroup p {
    text-align: left;
  }
}
#greeting .greeting .greeting_contents .greeting_group .greeting_text {
  width: 30%;
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #greeting .greeting .greeting_contents .greeting_group .greeting_text {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .greeting_group .greeting_text {
    width: 100%;
    padding: 0 2rem;
  }
}
#greeting .greeting .greeting_contents .greeting_group .greeting_text h3 {
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  color: #6D8753;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .greeting_group .greeting_text h3 {
    writing-mode: horizontal-tb;
    margin-bottom: 2rem;
  }
}
#greeting .greeting .greeting_contents .greeting_group .greeting_textarea {
  width: 80%;
  margin: 2rem auto 0 auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #greeting .greeting .greeting_contents .greeting_group .greeting_textarea {
    width: 84%;
  }
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .greeting_group .greeting_textarea {
    writing-mode: horizontal-tb;
    margin: 2rem auto;
  }
}
#greeting .greeting .greeting_contents .greeting_group .greeting_textarea p {
  color: #555;
}

#top_service {
  padding-bottom: 5rem;
  overflow: hidden;
}
#top_service .top_service {
  margin: 0 auto;
  position: relative;
  border-bottom: solid 1px #ddd;
  padding-bottom: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service {
    padding-bottom: 3rem;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service {
    width: 90%;
  }
}
#top_service .top_service .top_service_headline h2 {
  align-items: center;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_headline h2 {
    display: block;
  }
}
#top_service .top_service .top_service_headline h2 strong {
  font-size: 2.5rem;
  color: #6D8753;
  position: relative;
  display: block;
  text-align: center;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_headline h2 {
    font-size: 1.5rem;
  }
}
#top_service .top_service .top_service_headline h2 span {
  text-align: center;
  color: #555;
  display: block;
  font-weight: 500;
  font-size: 1.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service .top_service_headline h2 span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_headline h2 span {
    display: block;
    font-size: 1rem;
    padding-left: 0rem;
  }
}
#top_service .top_service .top_service_contents {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents {
    display: block;
  }
}
#top_service .top_service .top_service_contents .top_service_header {
  width: 10%;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service .top_service_contents .top_service_header {
    width: 8%;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents .top_service_header {
    width: 100%;
  }
}
#top_service .top_service .top_service_contents .top_service_header h4 {
  font-size: 1.2rem;
  writing-mode: vertical-rl;
  vertical-align: middle;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents .top_service_header h4 {
    writing-mode: horizontal-tb;
    text-align: center;
  }
}
#top_service .top_service .top_service_contents .view {
  position: relative;
  overflow: hidden;
}
#top_service .top_service .top_service_contents .view:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #f1f1f0;
  transform: translateY(0%);
  transition: all 1s ease-in-out 0.3s;
}
#top_service .top_service .top_service_contents .view img {
  vertical-align: middle;
  transform: translateY(0%);
}
#top_service .top_service .top_service_contents .view.js-on:after {
  transform: translateY(100%);
}
#top_service .top_service .top_service_contents .top_service_li {
  width: 26.6666666667%;
  text-align: center;
  padding: 0 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service .top_service_contents .top_service_li {
    width: 28%;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents .top_service_li {
    width: 30%;
  }
}
#top_service .top_service .top_service_contents .top_service_li:last-child {
  border-left: none;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents .top_service_li {
    width: 100%;
    margin: 1rem 0;
    border-left: none;
  }
  #top_service .top_service .top_service_contents .top_service_li:last-child {
    border-bottom: none;
  }
}
#top_service .top_service .top_service_contents .top_service_li p {
  color: #555;
  text-align: left;
}
#top_service .top_service .top_service_contents .top_service_li .top_service_bg {
  height: 24vw;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents .top_service_li .top_service_bg {
    height: 30vh;
  }
}
#top_service .top_service .top_service_contents .top_service_li .top_service_text {
  padding-top: 0.5rem;
  margin-top: 1rem;
}
#top_service .top_service .top_service_contents .top_service_li .top_service_text h3 {
  font-size: 1.2rem;
  font-weight: 500;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service .top_service_contents .top_service_li .top_service_text h3 {
    font-size: 1rem;
  }
}
#top_service .top_service .top_service_contents .top_service_li .top_service_text p a {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  background-color: #6D8753;
  padding: 0.5rem 3rem;
  margin-top: 1rem;
}
#top_service .top_service .top_service_contents .two {
  margin-top: 3rem;
}
#top_service .top_service .top_service_contents .three .top_service_btn {
  width: 80%;
  margin: 0 auto;
  text-align: right;
  margin-top: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service .top_service_contents .three .top_service_btn {
    width: 84%;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents .three .top_service_btn {
    width: 90%;
  }
}
#top_service .top_service .top_service_contents .three .top_service_btn a {
  text-decoration: none;
  display: inline-block;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 0.25rem;
  color: #555;
  border-bottom: solid 1px #555;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
}
#top_service .top_service .top_service_contents .three .top_service_btn a:hover {
  opacity: 0.75;
}

#top_works {
  padding-bottom: 5rem;
  overflow: hidden;
}
#top_works .top_works {
  position: relative;
  border-bottom: solid 1px #ddd;
  padding-bottom: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_works .top_works {
    padding-bottom: 3rem;
  }
}
#top_works .top_works .top_works_headline h2 {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  align-items: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_headline h2 {
    display: block;
  }
}
#top_works .top_works .top_works_headline h2 strong {
  font-size: 2.5rem;
  color: #6D8753;
  position: relative;
  display: inline-block;
  width: 100%;
  overflow: hidden;
}
#top_works .top_works .top_works_headline h2 strong:after {
  left: 13rem;
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 100%;
  height: 0.5px;
  background-color: #6D8753;
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_headline h2 strong:after {
    left: 11rem;
  }
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_headline h2 {
    font-size: 1.5rem;
  }
}
#top_works .top_works .top_works_headline h2 span {
  color: #555;
  display: inline-block;
  font-weight: 500;
  font-size: 1.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_works .top_works .top_works_headline h2 span {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_headline h2 span {
    display: block;
    font-size: 0.9rem;
    padding-left: 0rem;
  }
}
#top_works .top_works .top_works_contents {
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
  margin: 3rem;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_works .top_works .top_works_contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_contents {
    width: 90%;
    margin: 0 auto !important;
  }
}
#top_works .top_works .top_works_contents .top_works_header {
  width: 10%;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_works .top_works .top_works_contents .top_works_header {
    width: 8%;
  }
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_contents .top_works_header {
    width: 100%;
  }
}
#top_works .top_works .top_works_contents .top_works_header h4 {
  font-size: 1.2rem;
  writing-mode: vertical-rl;
  vertical-align: middle;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_contents .top_works_header h4 {
    writing-mode: horizontal-tb;
    text-align: center;
  }
}
#top_works .top_works .top_works_contents .top_works_link {
  list-style: none;
  display: flex;
  padding: 1rem;
  transition: transform 0.5s ease;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_works .top_works .top_works_contents .top_works_link {
    width: 84%;
  }
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_contents .top_works_link {
    width: 100%;
  }
}
#top_works .top_works .top_works_contents .top_works_link .view {
  position: relative;
  overflow: hidden;
}
#top_works .top_works .top_works_contents .top_works_link .view:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #f1f1f0;
  transform: translateY(0%);
  transition: all 1s ease-in-out 0.3s;
}
#top_works .top_works .top_works_contents .top_works_link .view img {
  vertical-align: middle;
  transform: translateY(0%);
}
#top_works .top_works .top_works_contents .top_works_link .view.js-on:after {
  transform: translateY(100%);
}
#top_works .top_works .top_works_contents .top_works_link .slide {
  min-width: 33.3333333333%; /* 3枚表示 */
  box-sizing: border-box;
  padding: 1rem;
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_contents .top_works_link .slide {
    min-width: 100%;
  }
}
#top_works .top_works .top_works_contents .top_works_link .slide img {
  width: 100%;
  display: block;
}
#top_works .top_works .top_works_btn {
  width: 80%;
  margin: 0 auto;
  text-align: right;
  margin-top: 4rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_works .top_works .top_works_btn {
    width: 84%;
  }
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_btn {
    width: 90%;
  }
}
#top_works .top_works .top_works_btn a {
  text-decoration: none;
  display: inline-block;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 0.25rem;
  color: #555;
  border-bottom: solid 1px #555;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
}
#top_works .top_works .top_works_btn a:hover {
  opacity: 0.75;
}
#top_works .top_works .top_works_btn a:hover:before {
  width: 0%;
}
#top_works .top_works .top_works_btn a:hover:after {
  height: 0%;
}

.prev, .next {
  font-size: 1.5rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.75);
  color: #6D8753;
  border: none;
  padding: 0.5rem 1rem;
  cursor: pointer;
}

.prev {
  left: 5px;
}

.next {
  right: 5px;
}

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

.active {
  display: block !important;
}

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

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

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

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

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

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

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

#top_blog {
  padding-bottom: 5rem;
  overflow: hidden;
}
#top_blog .top_blog {
  position: relative;
}
#top_blog .top_blog .top_blog_group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-bottom: 5rem;
  border-bottom: solid 1px #ddd;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_blog .top_blog .top_blog_group {
    padding-bottom: 3rem;
  }
}
#top_blog .top_blog .top_blog_group .top_blog_header {
  width: 10%;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_blog .top_blog .top_blog_group .top_blog_header {
    width: 8%;
  }
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_group .top_blog_header {
    width: 100%;
  }
}
#top_blog .top_blog .top_blog_group .top_blog_header h4 {
  font-size: 1.2rem;
  writing-mode: vertical-rl;
  vertical-align: middle;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_group .top_blog_header h4 {
    writing-mode: horizontal-tb;
    text-align: center;
  }
}
#top_blog .top_blog .top_blog_group .top_blog_contents {
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_blog .top_blog .top_blog_group .top_blog_contents {
    width: 84%;
  }
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_group .top_blog_contents {
    width: 90%;
  }
}
#top_blog .top_blog .top_blog_group .top_blog_contents ul {
  list-style: none;
  margin-bottom: 0.5vw;
}
#top_blog .top_blog .top_blog_group .top_blog_contents ul a {
  color: #6D8753;
  text-decoration: none;
}
#top_blog .top_blog .top_blog_group .top_blog_contents ul a:hover .blog_link_btn {
  color: #555;
  background-color: #fff;
}
#top_blog .top_blog .top_blog_group .top_blog_contents ul a li {
  padding: 0.5rem 0;
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_group .top_blog_contents ul a li {
    padding: 0.5rem 0;
  }
}
#top_blog .top_blog .top_blog_group .top_blog_contents ul a li .outline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding-bottom: 1rem;
  border-bottom: solid 1px #999;
}
#top_blog .top_blog .top_blog_group .top_blog_contents ul a li .outline .list {
  width: 70%;
}
#top_blog .top_blog .top_blog_group .top_blog_contents ul a li .outline .list .date {
  color: #555;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_group .top_blog_contents ul a li .outline .list .date {
    padding: 0.25rem 0;
  }
}
#top_blog .top_blog .top_blog_group .top_blog_contents ul a li .outline .list .title {
  color: #555;
  font-size: 1rem;
  transition: all 0.4s;
}
#top_blog .top_blog .top_blog_group .top_blog_contents ul a .blog_arrow {
  width: auto;
  text-align: right;
  color: #6D8753;
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_group .top_blog_contents ul a .blog_arrow {
    display: none;
  }
}
#top_blog .top_blog .top_blog_group .top_blog_contents ul a .blog_arrow .blog_link_btn {
  color: #555;
  background-color: #fff;
  padding: 0.5rem 2rem;
  z-index: 15;
  transition: 0.4s all;
}
#top_blog .top_blog .top_blog_group .top_blog_contents ul a .blog_arrow .blog_link_btn i {
  font-size: 140%;
}
#top_blog .top_blog .top_blog_group .top_blog_contents ul a:hover .blog_arrow .blog_link_btn {
  color: #666;
}
#top_blog .top_blog .top_blog_group .top_blog_btn {
  width: 80%;
  margin: 0 auto;
  text-align: right;
  margin-top: 4rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_blog .top_blog .top_blog_group .top_blog_btn {
    width: 84%;
  }
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_group .top_blog_btn {
    width: 90%;
  }
}
#top_blog .top_blog .top_blog_group .top_blog_btn a {
  text-decoration: none;
  display: inline-block;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 0.25rem;
  color: #555;
  border-bottom: solid 1px #555;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
}
#top_blog .top_blog .top_blog_group .top_blog_btn a:hover {
  opacity: 0.75;
}
#top_blog .top_blog .top_blog_group .top_blog_btn a:hover:before {
  width: 0%;
}
#top_blog .top_blog .top_blog_group .top_blog_btn a:hover:after {
  height: 0%;
}

#top_banner {
  padding-bottom: 5rem;
}
#top_banner .top_banner .top_banner_contents {
  width: 80%;
  margin: 0 auto;
  padding-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  border-bottom: solid 1px #ddd;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_banner .top_banner .top_banner_contents {
    width: 84%;
  }
}
@media screen and (max-width: 768px) {
  #top_banner .top_banner .top_banner_contents {
    width: 90%;
  }
}
#top_banner .top_banner .top_banner_contents .top_banner_img {
  width: 48%;
  padding: 2rem;
  background-color: rgba(255, 255, 255, 0.5);
}
@media screen and (max-width: 768px) {
  #top_banner .top_banner .top_banner_contents .top_banner_img {
    width: 100%;
  }
}
#top_banner .top_banner .top_banner_contents .top_banner_img .view {
  position: relative;
  overflow: hidden;
  margin: 0;
}
#top_banner .top_banner .top_banner_contents .top_banner_img .view:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #f1f1f0;
  transform: translateX(0%);
  transition: all 1s ease-in-out 0.3s;
}
#top_banner .top_banner .top_banner_contents .top_banner_img .view img {
  vertical-align: middle;
  transform: translateX(0%);
}
#top_banner .top_banner .top_banner_contents .top_banner_img .view.js-on:after {
  transform: translateX(100%);
}
#top_banner .top_banner .top_banner_contents .top_banner_img .top_banner_img_style {
  width: 100%;
  height: 350px;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_banner .top_banner .top_banner_contents .top_banner_img .top_banner_img_style {
    height: 30vw;
  }
}
@media screen and (max-width: 768px) {
  #top_banner .top_banner .top_banner_contents .top_banner_img .top_banner_img_style {
    height: 50vw;
  }
}
#top_banner .top_banner .top_banner_contents .top_banner_btn {
  width: 100%;
  margin: 0 auto;
  margin: 1rem 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top_banner .top_banner .top_banner_contents .top_banner_btn {
    width: 84%;
  }
}
@media screen and (max-width: 768px) {
  #top_banner .top_banner .top_banner_contents .top_banner_btn {
    width: 100%;
  }
}
#top_banner .top_banner .top_banner_contents .top_banner_btn a {
  text-decoration: none;
  display: inline-block;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 0.25rem;
  color: #555;
  border-bottom: solid 1px #555;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
}
#top_banner .top_banner .top_banner_contents .top_banner_btn a:hover {
  opacity: 0.75;
}
#top_banner .top_banner .top_banner_contents .top_banner_btn a:hover:before {
  width: 0%;
}
#top_banner .top_banner .top_banner_contents .top_banner_btn a:hover:after {
  height: 0%;
}

#top_company {
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  background-color: #D7D3A4;
}
#top_company .top_company_headline {
  background-color: #6D8753;
  padding: 2rem 0;
}
#top_company .top_company_headline h3 {
  font-size: 2rem;
  color: #6D8753;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #top_company .top_company_headline h3 {
    font-size: 1.5rem;
  }
}
#top_company .top_company_headline p {
  color: #333;
  font-size: 1rem;
  text-align: center;
}
#top_company .top_company {
  position: relative;
  z-index: 1;
}
#top_company .top_company .top_company_contents .top_company_group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top_company .top_company .top_company_contents .top_company_group {
    flex-direction: column-reverse;
  }
}
#top_company .top_company .top_company_contents .top_company_group .top_company_text {
  width: 60%;
  padding: 0 3rem;
}
@media screen and (max-width: 768px) {
  #top_company .top_company .top_company_contents .top_company_group .top_company_text {
    width: 100%;
    margin: 3rem 0;
  }
}
#top_company .top_company .top_company_contents .top_company_group .top_company_text h3 {
  font-size: 2rem;
  color: #6D8753;
  margin-bottom: 2rem;
}
#top_company .top_company .top_company_contents .top_company_group .top_company_text h3 span {
  color: #555;
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
}
#top_company .top_company .top_company_contents .top_company_group .top_company_text p {
  margin-top: 3rem;
  color: #333;
}
#top_company .top_company .top_company_contents .top_company_group .top_company_text p a {
  color: #6d8b6d;
  margin-top: 2rem;
  text-decoration: none;
  position: relative;
  padding-right: 25px;
  display: table;
  margin-right: 0;
  margin-left: auto;
  transition: all 0.4s;
}
#top_company .top_company .top_company_contents .top_company_group .top_company_text p a:hover {
  margin-right: -5px;
}
#top_company .top_company .top_company_contents .top_company_group .top_company_text p a:hover:before {
  right: -5px;
}
#top_company .top_company .top_company_contents .top_company_group .top_company_text p a:before {
  position: absolute;
  content: "";
  bottom: -3px;
  right: 0;
  width: 0;
  height: 0;
  border: none;
  border-right: solid 15px transparent;
  border-bottom: solid 15px #6d8b6d;
  transition: all 0.4s;
}
#top_company .top_company .top_company_contents .top_company_group .top_company_text p a:after {
  position: absolute;
  content: "";
  bottom: -3px;
  right: 10px;
  width: 100%;
  border-bottom: solid 1px #6d8b6d;
}
#top_company .top_company .top_company_contents .top_company_group .top_company_img {
  width: 40%;
  height: 40vh;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  #top_company .top_company .top_company_contents .top_company_group .top_company_img {
    width: 100%;
  }
}

#works_achievements {
  margin-bottom: 5rem;
  background-color: #fff;
}
#works_achievements .works_achievements {
  width: 85%;
  margin: 0 auto;
  padding-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works_achievements .works_achievements {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #works_achievements .works_achievements {
    width: 90%;
  }
}
#works_achievements .works_achievements .works_achievement {
  position: relative;
  padding: 5rem 0;
}
#works_achievements .works_achievements .works_achievement .works_detail_title {
  position: relative;
  margin-bottom: 2rem;
}
#works_achievements .works_achievements .works_achievement .works_detail_title h4 {
  font-size: 2rem;
  position: relative;
  padding-top: 1rem;
  padding: 2rem;
  text-align: center;
  color: #555;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #works_achievements .works_achievements .works_achievement .works_detail_title h4 {
    font-size: 1.3rem;
    padding: 1rem;
  }
}
#works_achievements .works_achievements .works_achievement ul.achievements {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  list-style: none;
}
#works_achievements .works_achievements .works_achievement ul.achievements .achievements_list {
  width: 48%;
}
@media screen and (max-width: 768px) {
  #works_achievements .works_achievements .works_achievement ul.achievements .achievements_list {
    width: 100%;
    margin-bottom: 2rem;
  }
}
#works_achievements .works_achievements .works_achievement ul.achievements .achievements_list h5 {
  position: relative;
  color: #c79405;
  font-size: 1.1rem;
  text-align: center;
  padding: 1rem 0;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #works_achievements .works_achievements .works_achievement ul.achievements .achievements_list h5 {
    font-size: 1rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works_achievements .works_achievements .works_achievement ul.achievements .achievements_list h5 {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 768px) {
  #works_achievements .works_achievements .works_achievement ul.achievements .achievements_list h5 {
    font-size: 1rem;
  }
}
#works_achievements .works_achievements .works_achievement ul.achievements .achievements_list h5:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: 0;
  left: 0;
  background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
}
#works_achievements .works_achievements .works_achievement ul.achievements .achievements_list h5:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: linear-gradient(45deg, #B67B03 0%, #DAAF08 45%, #FEE9A0 70%, #DAAF08 85%, #B67B03 90% 100%);
}
#works_achievements .works_achievements .works_achievement ul.achievements .achievements_list h5 span {
  font-size: 120%;
}
#works_achievements .works_achievements .works_achievement ul.achievements .achievements_list h5 .table_style {
  display: table;
  margin: 0 auto;
  text-align: end;
}
#works_achievements .works_achievements .works_achievement ul.achievements .achievements_list h5 .table_style span {
  font-size: 120%;
}
#works_achievements .works_achievements .works_achievement ul.achievements .achievements_list p {
  color: #555;
  font-size: 1rem;
}
#works_achievements .works_achievements .works_achievement ul.achievements .achievements_list p a {
  display: table;
  margin-top: 1rem;
  background-color: #fff;
  text-decoration: none;
  color: #555;
  margin: 1rem auto 0 auto;
  padding: 0.5rem 4rem;
  border: solid 1px #ddd;
  transition: all 0.4s;
}
#works_achievements .works_achievements .works_achievement ul.achievements .achievements_list p a:hover {
  opacity: 0.75;
}
#works_achievements .works_achievements .works_achievement ul.achievements .achievements_list p a img {
  width: 100%;
}

#top_contact {
  overflow: hidden;
  background-color: #C7D3B8;
}
#top_contact .top_contact_headline {
  padding: 2rem 0;
}
#top_contact .top_contact_headline h3 {
  font-size: 2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact_headline h3 {
    font-size: 1.5rem;
  }
}
#top_contact .top_contact_headline p {
  color: #fff;
  font-size: 1rem;
  text-align: center;
}
#top_contact .top_contact {
  position: relative;
  z-index: 1;
}
#top_contact .top_contact .top_contact_contents .top_contact_group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
#top_contact .top_contact .top_contact_contents .top_contact_group .top_contact_text {
  width: 60%;
  padding: 0 3rem;
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact .top_contact_contents .top_contact_group .top_contact_text {
    width: 100%;
    margin: 3rem 0;
  }
}
#top_contact .top_contact .top_contact_contents .top_contact_group .top_contact_text h3 {
  font-size: 2rem;
  color: #6D8753;
  margin-bottom: 2rem;
}
#top_contact .top_contact .top_contact_contents .top_contact_group .top_contact_text h3 span {
  color: #555;
  display: block;
  font-size: 1.5rem;
  font-weight: 500;
}
#top_contact .top_contact .top_contact_contents .top_contact_group .top_contact_text p a {
  color: #6d8b6d;
  margin-top: 2rem;
  text-decoration: none;
  position: relative;
  padding-right: 25px;
  display: table;
  margin-right: 0;
  margin-left: auto;
  transition: all 0.4s;
}
#top_contact .top_contact .top_contact_contents .top_contact_group .top_contact_text p a:hover {
  margin-right: -5px;
}
#top_contact .top_contact .top_contact_contents .top_contact_group .top_contact_text p a:hover:before {
  right: -5px;
}
#top_contact .top_contact .top_contact_contents .top_contact_group .top_contact_text p a:before {
  position: absolute;
  content: "";
  bottom: -3px;
  right: 0;
  width: 0;
  height: 0;
  border: none;
  border-right: solid 15px transparent;
  border-bottom: solid 15px #6d8b6d;
  transition: all 0.4s;
}
#top_contact .top_contact .top_contact_contents .top_contact_group .top_contact_text p a:after {
  position: absolute;
  content: "";
  bottom: -3px;
  right: 10px;
  width: 100%;
  border-bottom: solid 1px #6d8b6d;
}
#top_contact .top_contact .top_contact_contents .top_contact_group .top_contact_img {
  width: 40%;
  height: 40vh;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact .top_contact_contents .top_contact_group .top_contact_img {
    width: 100%;
  }
}

#news {
  position: relative;
  margin-top: 80px;
  margin-bottom: 80px;
}
#news .news_contents {
  width: 80%;
  margin: auto;
  padding: 0px 0;
}
@media screen and (max-width: 768px) {
  #news .news_contents {
    width: 95%;
  }
}
#news .news_contents ul {
  list-style: none;
}
#news .news_contents ul a {
  text-decoration: none;
  color: #6D8753;
}
#news .news_contents ul a li {
  width: 100%;
  transition: all 0.4s;
}
#news .news_contents ul a li:hover {
  opacity: 0.7;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news_contents ul a li {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #news .news_contents ul a li {
    width: 90%;
    margin: auto;
  }
}
#news .news_contents ul a li .outline {
  padding: 40px 20px;
  height: 180px;
}
@media screen and (max-width: 768px) {
  #news .news_contents ul a li .outline {
    height: 150px;
  }
}
#news .news_contents ul a li .outline .title {
  color: #6D8753;
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  position: relative;
  border-bottom: solid 1px #ddd;
}
@media screen and (max-width: 768px) {
  #news .news_contents ul a li .outline .title {
    font-size: 12.5px;
    margin-bottom: 10px;
  }
}
#news .news_contents ul a li .outline .descn p {
  color: #333;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  #news .news_contents ul a li .outline .descn p {
    font-size: 10px;
  }
}
#news .news_contents .navigation {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #news .news_contents .navigation {
    margin-top: 40px;
  }
}

.wp-pagenavi span.current {
  color: #333;
  padding: 10px;
  margin: 0 10px;
  background-color: #fff;
}
@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: #fff;
}
@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;
}

#works .works .works_contents {
  position: relative;
  padding: 5rem 0;
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .works_contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #works .works .works_contents {
    width: 95%;
  }
}
#works .works .works_contents .works_detail_title {
  position: relative;
  margin-bottom: 2rem;
}
#works .works .works_contents .works_detail_title h4 {
  font-size: 2rem;
  position: relative;
  padding-top: 1rem;
  padding: 2rem;
  text-align: center;
  color: #353535;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents .works_detail_title h4 {
    font-size: 1.3rem;
    padding: 1rem;
  }
}
#works .works .works_contents ul {
  width: 100%;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .works_contents ul {
    justify-content: start;
  }
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul {
    justify-content: space-between;
  }
}
#works .works .works_contents ul a {
  display: block;
  text-decoration: none;
  width: 48%;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .works_contents ul a {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul a {
    width: 48%;
    margin: 0;
  }
}
#works .works .works_contents ul a:hover {
  opacity: 0.75;
}
#works .works .works_contents ul a li {
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul a li {
    margin-bottom: 4vw;
  }
}
#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: 30vw;
  }
}
#works .works .works_contents ul a li .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#works .works .works_contents ul a li .outline {
  margin-top: 1rem;
  background-color: #fff;
}
#works .works .works_contents ul a li .outline .date {
  color: #fff;
  margin-bottom: 0.3vw;
}
#works .works .works_contents ul a li .outline .title {
  color: #333;
  font-size: 12.5px;
  padding: 1rem;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .works_contents ul a li .outline .title {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul a li .outline .title {
    font-size: 3vw;
  }
}
#works .works .works_achievements {
  position: relative;
  padding: 5rem 0;
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .works_achievements {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #works .works .works_achievements {
    width: 95%;
  }
}
#works .works .works_achievements .works_detail_title {
  position: relative;
  margin-bottom: 2rem;
}
#works .works .works_achievements .works_detail_title h4 {
  font-size: 2rem;
  position: relative;
  padding-top: 1rem;
  padding: 2rem;
  text-align: center;
  color: #353535;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #works .works .works_achievements .works_detail_title h4 {
    font-size: 1.3rem;
    padding: 1rem;
  }
}
#works .works .works_achievements ul.achievements {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  list-style: none;
}
#works .works .works_achievements ul.achievements .achievements_list {
  width: 48%;
}
@media screen and (max-width: 768px) {
  #works .works .works_achievements ul.achievements .achievements_list {
    width: 100%;
  }
}
#works .works .works_achievements ul.achievements .achievements_list h5 {
  font-size: 1.1rem;
  text-align: center;
  background-color: #fff;
  padding: 1rem 0;
  border: solid 1px #ddd;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #works .works .works_achievements ul.achievements .achievements_list h5 {
    font-size: 1rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .works_achievements ul.achievements .achievements_list h5 {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 768px) {
  #works .works .works_achievements ul.achievements .achievements_list h5 {
    font-size: 1rem;
  }
}
#works .works .works_achievements ul.achievements .achievements_list p {
  font-size: 1rem;
}
#works .works .works_achievements ul.achievements .achievements_list p a {
  display: block;
  margin-top: 1rem;
}
#works .works .works_achievements ul.achievements .achievements_list p a img {
  width: 100%;
}
#works .works .navigation {
  display: inline-block;
  text-align: center;
  width: 100%;
  margin: 0 auto 3rem auto;
}
#works .works .navigation .wp-pagenavi {
  display: inline-flex;
}

#works_single .works_contents {
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents {
    margin-bottom: 12vw;
  }
}
#works_single .works_contents h4 {
  color: #fff;
  letter-spacing: 0.2vw;
}
#works_single .works_contents h4 span {
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 1rem;
}
#works_single .works_contents h4 i {
  font-size: 4rem;
  display: inline-block;
  margin-right: 5px;
}
#works_single .works_contents h4 strong {
  font-size: 2.5rem;
  display: block;
  color: #333;
  font-weight: 500;
}
#works_single .works_contents ul li .thumb {
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works_single .works_contents ul li .thumb {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .thumb {
    width: 95%;
  }
}
#works_single .works_contents ul li .thumb .works_images {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .thumb .works_images {
    flex-flow: column;
  }
}
#works_single .works_contents ul li .thumb .works_images img {
  width: 30%;
  height: 20vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .thumb .works_images img {
    width: 80%;
    margin: auto;
    margin-bottom: 4vw;
  }
}
#works_single .works_contents ul li .thumb .b_a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10vw;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .thumb .b_a {
    flex-flow: column;
  }
}
#works_single .works_contents ul li .thumb .b_a .before, #works_single .works_contents ul li .thumb .b_a .during, #works_single .works_contents ul li .thumb .b_a .after {
  width: 32%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .thumb .b_a .before, #works_single .works_contents ul li .thumb .b_a .during, #works_single .works_contents ul li .thumb .b_a .after {
    width: 80%;
    margin: auto;
    margin-bottom: 4vw;
  }
}
#works_single .works_contents ul li .thumb .b_a .before::before {
  position: absolute;
  content: "Before";
  top: 0;
  left: 0;
  color: #fff;
  width: 30%;
  padding: 1.5vw 0;
  padding-left: 3vw;
  background-color: #fff;
  opacity: 0.8;
  font-size: 1.2vw;
  letter-spacing: 0.3vw;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .thumb .b_a .before::before {
    font-size: 3vw;
    padding: 3vw 0;
    padding-left: 6vw;
    letter-spacing: 0.6vw;
  }
}
#works_single .works_contents ul li .thumb .b_a .during::before {
  position: absolute;
  content: "During";
  top: 0;
  left: 0;
  color: #fff;
  width: 30%;
  padding: 1.5vw 0;
  padding-left: 3vw;
  background-color: #fff;
  opacity: 0.8;
  font-size: 1.2vw;
  letter-spacing: 0.3vw;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .thumb .b_a .during::before {
    font-size: 3vw;
    padding: 3vw 0;
    padding-left: 6vw;
    letter-spacing: 0.6vw;
  }
}
#works_single .works_contents ul li .thumb .b_a .after::before {
  position: absolute;
  content: "After";
  top: 0;
  left: 0;
  color: #fff;
  width: 30%;
  padding: 1.5vw 0;
  padding-left: 3vw;
  background-color: #fff;
  opacity: 0.8;
  font-size: 1.2vw;
  letter-spacing: 0.3vw;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .thumb .b_a .after::before {
    font-size: 3vw;
    padding: 3vw 0;
    padding-left: 6vw;
    letter-spacing: 0.6vw;
  }
}
#works_single .works_contents ul li .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#works_single .works_contents ul li .outline {
  width: 80%;
  margin: auto;
  margin-top: 4vw;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .outline {
    margin-top: 8vw;
    width: 95%;
  }
}
#works_single .works_contents ul li .outline .date {
  margin-bottom: 1vw;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .outline .date {
    margin-bottom: 2vw;
  }
}
#works_single .works_contents ul li .outline .title {
  font-size: 1.4vw;
  margin-bottom: 4vw;
  font-weight: 600;
  border-bottom: 1px solid #fff;
  display: inline-block;
  padding: 0 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works_single .works_contents ul li .outline .title {
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .outline .title {
    font-size: 4vw;
    margin-bottom: 8vw;
  }
}
#works_single .works_contents ul li .outline .descn {
  font-size: 0.8vw;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents ul li .outline .descn {
    font-size: 1.4vw;
  }
}

#news_single .news_contents {
  width: 50%;
  margin: auto;
  margin-bottom: 8vw;
}
#news_single .news_contents ul {
  list-style: none;
  color: #555;
  text-decoration: none;
}
#news_single .news_contents ul li .thumb {
  width: 100%;
  height: 40vw;
  margin-bottom: 2vw;
}
#news_single .news_contents ul li .thumb img {
  width: 100%;
  height: 100%;
}
#news_single .news_contents ul li .outline .date {
  font-size: 1vw;
  margin-bottom: 0.5vw;
}
#news_single .news_contents ul li .outline .title {
  font-size: 1.6vw;
  margin-bottom: 2vw;
  font-weight: 600;
}
#news_single .news_contents ul li .outline .descn {
  font-size: 0.8vw;
}

#service .service {
  overflow: hidden;
  padding-bottom: 3rem;
}
#service .service div.service_contents {
  width: 85%;
  margin: 5rem auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service div.service_contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #service .service div.service_contents {
    width: 90%;
  }
}
#service .service div.service_contents p {
  font-size: 1rem;
}
#service .service ul.service_contents {
  width: 85%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  list-style: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service ul.service_contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #service .service ul.service_contents {
    width: 90%;
  }
}
#service .service ul.service_contents .service_list {
  width: 33.3333333333%;
  padding: 1rem;
  border: solid 1rem #f4f4f4;
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service ul.service_contents .service_list {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #service .service ul.service_contents .service_list {
    width: 100%;
  }
}
#service .service ul.service_contents .service_list dl dt .service_bg {
  height: 15vw;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service ul.service_contents .service_list dl dt .service_bg {
    height: 25vw;
  }
}
@media screen and (max-width: 768px) {
  #service .service ul.service_contents .service_list dl dt .service_bg {
    height: 50vw;
  }
}
#service .service ul.service_contents .service_list dl .service_headline h3 {
  color: #6D8753;
  font-size: 1.2rem;
  text-align: center;
  border-bottom: solid 1px #ddd;
  padding: 0.5rem;
  margin-bottom: 1rem;
}
#service .service ul.service_contents .service_list dl .service_headline p {
  font-size: 1rem;
}
#service .service .service_contents .service_event h4 {
  text-align: center;
  font-size: 1.5rem;
  border-top: solid 1px #555;
  border-bottom: solid 1px #555;
  padding: 1rem 0;
  margin-bottom: 2rem;
}
#service .service .service_contents .service_event p {
  text-align: center;
}
#service .service .service_contents .service_event p a {
  display: table;
  margin-top: 1rem;
  background-color: #fff;
  text-decoration: none;
  color: #555;
  margin: 1rem auto 0 auto;
  padding: 0.5rem 4rem;
  border: solid 1px #ddd;
  transition: all 0.4s;
}
#service .service .service_contents .service_event p a:hover {
  opacity: 0.75;
}

#company .company .company_contents {
  width: 85%;
  margin: auto;
  padding: 5rem 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company .company_contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents {
    width: 90%;
  }
}
#company .company .company_contents table {
  display: block;
  background-color: rgba(255, 255, 255, 0.75);
  border-collapse: collapse;
  width: 100%;
  padding: 3rem;
}
#company .company .company_contents table tbody {
  width: 100%;
  display: inline-table;
}
#company .company .company_contents table tbody tr {
  border-bottom: 1px solid #226d2e;
}
#company .company .company_contents table tbody tr th, #company .company .company_contents table tbody tr td {
  color: #fff;
  padding: 1.4vw;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company .company_contents table tbody tr th, #company .company .company_contents table tbody tr td {
    padding: 2vw;
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table tbody tr th, #company .company .company_contents table tbody tr td {
    padding: 3vw;
    font-size: 2.2vw;
  }
}
#company .company .company_contents table tbody tr th {
  color: #226d2e;
  width: 30%;
}
#company .company .company_contents table tbody tr td {
  color: #000;
  width: 70%;
}
#company .works_certified {
  position: relative;
  padding: 5rem 0;
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .works_certified {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #company .works_certified {
    width: 95%;
  }
}
#company .works_certified .works_detail_title {
  position: relative;
  margin-bottom: 2rem;
}
#company .works_certified .works_detail_title h4 {
  font-size: 2rem;
  position: relative;
  padding-top: 1rem;
  padding: 2rem;
  text-align: center;
  color: #353535;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  #company .works_certified .works_detail_title h4 {
    font-size: 1.3rem;
    padding: 1rem;
  }
}
#company .works_certified .works_detail_title p {
  text-align: center;
}
#company .works_certified ul.certified {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  list-style: none;
}
#company .works_certified ul.certified .certified_list {
  width: 48%;
}
@media screen and (max-width: 768px) {
  #company .works_certified ul.certified .certified_list {
    width: 100%;
  }
}
#company .works_certified ul.certified .certified_list h5 {
  font-size: 1.1rem;
  text-align: center;
  background-color: #fff;
  padding: 1rem 0;
  border: solid 1px #ddd;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #company .works_certified ul.certified .certified_list h5 {
    font-size: 1rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .works_certified ul.certified .certified_list h5 {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 768px) {
  #company .works_certified ul.certified .certified_list h5 {
    font-size: 1rem;
  }
}
#company .works_certified ul.certified .certified_list p {
  font-size: 1rem;
}
#company .works_certified ul.certified .certified_list p a {
  display: block;
  margin-top: 1rem;
}
#company .works_certified ul.certified .certified_list p a img {
  width: 100%;
}

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

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

#policy {
  margin: auto;
  padding: 5vw;
}
#policy h2 {
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #policy h2 {
    font-size: 15px;
  }
}
#policy p {
  font-size: 15px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #policy p {
    font-size: 10px;
  }
}

footer {
  padding-top: 3rem;
  background-color: #e7e7e7;
  position: relative;
  background-position: bottom;
  background-size: cover;
}
footer .footer_menu {
  z-index: 1;
  position: relative;
  padding: 1rem 2rem;
}
@media screen and (max-width: 768px) {
  footer .footer_menu {
    padding: 0 0rem;
  }
}
footer .footer_menu ul {
  padding: 2vw 0;
  width: 100%;
  margin: auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  list-style: none;
}
@media screen and (max-width: 768px) {
  footer .footer_menu ul {
    padding: 1rem 0;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .footer_menu ul li {
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer .footer_menu ul li {
    width: 48%;
    padding: 0.5rem 0;
  }
}
footer .footer_menu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 100%;
  transition: all 0.4s;
}
footer .footer_menu ul li a:hover {
  opacity: 0.75;
}
footer #footer_contact .footer_contact {
  background-position: center;
  background-size: cover;
  width: 100%;
  position: relative;
}
footer #footer_contact .footer_contact .footer_contact_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(51, 51, 51, 0.6);
}
footer #footer_contact .footer_contact .footer_contact_title {
  color: #333;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .footer_contact .footer_contact_title {
    width: 90%;
  }
}
footer #footer_contact .footer_contact .footer_contact_title p {
  margin-bottom: 0.8vw;
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .footer_contact .footer_contact_title p {
    margin-bottom: 2vw;
  }
}
footer #footer_contact .footer_contact .footer_contact_title h2 {
  margin-bottom: 2vw;
  letter-spacing: 0.6vw;
  font-size: 4vw;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .footer_contact .footer_contact_title h2 {
    font-size: 8vw;
    margin-bottom: 8vw;
  }
}
footer #footer_contact .footer_contact .footer_contact_title .contact_btn a {
  text-decoration: none;
}
footer #footer_contact .footer_contact .footer_contact_title .contact_btn a button {
  border: 1px solid #333;
  color: #333;
  background-color: rgba(0, 0, 0, 0);
  padding: 1.5vw 6vw;
  transition: all 0.4s;
  letter-spacing: 0.2vw;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .footer_contact .footer_contact_title .contact_btn a button {
    padding: 3vw 12vw;
  }
}
footer #footer_contact .footer_contact .footer_contact_title .contact_btn a button:hover {
  background: #c9b789;
  border: none;
}
footer #footer .footer .footer_contact {
  background-color: #6D8753;
  padding: 3rem 0;
}
footer #footer .footer .footer_contact .footer_link {
  font-size: 1.5rem;
  color: #333;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .footer_contact .footer_link {
    font-size: 0.7rem;
  }
}
footer #footer .footer .footer_contact .footer_link a {
  font-size: 1.5rem;
  color: #6D8753;
  background-color: #fff;
  display: inline-block;
  margin: 0 auto;
  border-radius: 3rem;
  text-decoration: none;
  padding: 1rem 2rem;
  transition: all 0.4s;
}
footer #footer .footer .footer_contact .footer_link a i {
  margin-right: 1rem;
}
footer #footer .footer .footer_contact .footer_link a:hover {
  color: #000;
  opacity: 0.75;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .footer_contact .footer_link a {
    font-size: 0.8rem;
  }
}
footer #footer .footer .access {
  width: 50%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  footer #footer .footer .access {
    width: 70%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer .footer .access {
    width: 85%;
  }
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access {
    width: 90%;
  }
}
footer #footer .footer .access .footer_logo {
  width: 35%;
  margin: 0 auto;
  padding-right: 3rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer .footer .access .footer_logo {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .footer_logo {
    width: 60%;
    margin: 0 auto;
    padding-right: 0;
  }
}
footer #footer .footer .access .footer_logo img {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 0.5rem;
  display: block;
  text-align: left;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .footer_logo img {
    width: 100%;
    margin: 0 auto;
  }
}
footer #footer .footer .access .footer_logo .footer_logo_p {
  color: #333;
  text-align: center;
}
footer #footer .footer .access .company_detail_group {
  width: 55%;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .company_detail_group {
    width: 100%;
    display: block;
    margin-top: 2rem;
  }
}
footer #footer .footer .access .company_detail_group .company_detail_left {
  width: 100%;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .company_detail_group .company_detail_left {
    width: 100%;
  }
}
footer #footer .footer .access .company_detail_group .company_detail_left .company_detail {
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .company_detail_group .company_detail_left .company_detail {
    width: 100%;
  }
}
footer #footer .footer .access .company_detail_group .company_detail_left .company_detail h3 {
  margin-bottom: 0.6vw;
  color: #333;
  font-weight: 600;
}
footer #footer .footer .access .company_detail_group .company_detail_left .company_detail p {
  margin-bottom: 0.3vw;
  color: #333;
  letter-spacing: -1px;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .company_detail_group .company_detail_left .company_detail p {
    text-align: center;
  }
}
footer #footer .footer .access .company_detail_group .company_detail_left .company_detail span {
  padding-left: 1rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .company_detail_group .company_detail_left .company_detail span {
    padding-left: 0;
    display: block;
  }
}
footer #footer .footer .access .company_detail_group .company_detail_right {
  width: 28%;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .company_detail_group .company_detail_right {
    width: 100%;
  }
}
footer #footer .footer .access .company_detail_group .company_detail_right .company_detail_contact {
  list-style: none;
}
footer #footer .footer .access .company_detail_group .company_detail_right .company_detail_contact li {
  margin: 1rem 0;
}
footer #footer .footer .access .company_detail_group .company_detail_right .company_detail_contact li a {
  display: block;
  padding: 0.5rem;
  color: #333;
  border-radius: 1rem;
  text-decoration: none;
  transition: all 0.4s;
}
footer #footer .footer .access .company_detail_group .company_detail_right .company_detail_contact li a i {
  padding-right: 0.5rem;
}
footer #footer .footer .access .company_detail_group .company_detail_right .company_detail_contact li a:hover {
  opacity: 0.75;
}
footer #footer .footer .access .company_detail_group .company_detail_right .company_detail_contact li .line {
  background-color: #5eb356;
}
footer #footer .footer .access .company_detail_group .company_detail_right .company_detail_contact li .insta {
  background-color: #CF2E92;
}
footer #footer .footer .access .company_detail_group .company_detail_right .company_detail_contact li .tiktok {
  background-color: #000;
}
footer #footer .footer .map {
  width: 100%;
  height: 30vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer .footer .map {
    height: 35vw;
  }
}
@media screen and (max-width: 768px) {
  footer #footer .footer .map {
    height: 50vw;
  }
}
footer #footer .footer .map iframe {
  width: 100%;
  height: 100%;
}
footer #footer .footer_btn {
  margin: 2rem 0;
}
footer #footer .footer_btn a {
  text-decoration: none;
  display: table;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin: 0 auto;
  padding: 0.5rem 3rem;
  color: #333;
  border: solid 1px #fff;
  background-color: #fff;
  font-size: 18px;
  font-weight: 700;
  transition: 0.3s;
}
footer #footer .footer_btn a:hover {
  color: #fff;
  background-color: #045d2d;
}
footer .copyright {
  width: 100%;
  padding-bottom: 2rem;
  text-align: center;
  color: #333;
  padding-top: 1rem;
}
footer .copyright p {
  font-size: 100%;
}
@media screen and (max-width: 768px) {
  footer .copyright p {
    padding-top: 2vw;
    padding-bottom: 1.5vw;
  }
}/*# sourceMappingURL=style.css.map */