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

html {
  font-size: 100%;
}

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

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

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

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

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

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

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

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

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

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

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

@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  #lower {
    padding: 0;
  }
}
#lower .lower {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 35vw;
  position: relative;
  z-index: -10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower {
    height: 35vw;
  }
}
@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: linear-gradient(rgba(255, 255, 255, 0), #F3ECDC);
}
#lower .lower .lower_title {
  position: absolute;
  bottom: 10%;
  left: 3%;
  color: #fff;
  padding: 1rem;
  background-color: rgba(111, 90, 69, 0.75);
  text-align: left;
  border-radius: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower .lower_title {
    bottom: 20%;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower .lower_title {
    bottom: 20%;
    width: 96%;
    text-align: center;
  }
}
#lower .lower .lower_title h2 {
  font-size: 1.8rem;
  padding: 0 2vw;
  letter-spacing: 0.4vw;
}
@media screen and (max-width: 768px) {
  #lower .lower .lower_title h2 {
    font-size: 1.3rem;
    letter-spacing: 0.8vw;
  }
}

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

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

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

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

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

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

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

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

.header_group {
  position: fixed;
  top: 0;
  z-index: 999999;
  width: 100%;
}
.header_group #header_pc {
  padding: 0 2vw;
}
@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: auto;
}
.header_group #header_pc .header_bar .header_logo a {
  width: 200px;
  min-width: 200px;
  display: block;
}
.header_group #header_pc .header_bar .header_logo a img {
  width: 100%;
}
.header_group #header_pc .header_bar .header_contact {
  background-color: #fff;
  border-radius: 5rem;
  max-width: calc(100% - 250px);
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group #header_pc .header_bar .header_contact {
    max-width: calc(100% - 250px);
  }
}
.header_group #header_pc .header_bar .header_contact li {
  width: auto;
}
.header_group #header_pc .header_bar .header_contact li a {
  display: block;
  padding: 1rem 1.25rem;
  color: #6F5A45;
  text-decoration: none;
  transition: all 0.4s;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .header_group #header_pc .header_bar .header_contact li a {
    padding: 1rem 0.75rem;
  }
}
.header_group #header_pc .header_bar .header_contact li a i {
  padding-right: 0.5rem;
}
.header_group #header_pc .header_bar .header_contact li a:hover {
  color: #9C836A;
}
.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 span {
  font-size: 1rem;
  display: block;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .header_group #header_pc .header_menu ul li span {
    font-size: 0.8rem;
  }
}
.header_group #header_pc .header_menu ul li a {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  color: #fff;
  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 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: #07687d;
}

#header_sp {
  position: relative;
}
@media screen and (min-width: 1441px) {
  #header_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #header_sp {
    display: none;
  }
}
#header_sp .header_logo {
  width: 200px;
  padding: 1rem;
}
#header_sp .header_logo img {
  width: 100%;
}

/*　ハンバーガーボタン　*/
.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: #b8a38a;
  border-radius: 10px;
}
.hamburger img {
  width: 15px;
  display: block;
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

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

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

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

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

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

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

nav.globalMenuSp {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  color: #000;
  background-color: rgba(184, 163, 138, 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: #fff;
  padding: 0.25em 0;
  text-decoration: none;
  font-size: 1rem;
}

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 {
  position: relative;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  #top_main {
    height: 40vh;
  }
}
#top_main .slide-images {
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  #top_main .slide-images {
    height: 40vh;
  }
}
#top_main .slide-images::after {
  position: relative;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
#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 {
  position: absolute;
  bottom: 0;
  right: 0%;
  width: 100%;
  text-align: center;
  z-index: 10;
}
#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;
  font-weight: 600;
  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 {
  overflow: hidden;
  text-align: end;
  padding: 10rem 2rem 2rem 2rem;
  background: linear-gradient(rgba(255, 255, 255, 0), #F3ECDC);
}
@media screen and (max-width: 768px) {
  #top_main .top_main_writing .top_main_text_ja {
    text-align: center;
    padding: 5rem 1rem 1rem 1rem;
  }
}
#top_main .top_main_writing .top_main_text_ja p {
  font-size: 2.5rem;
  font-weight: 600;
  color: #6f5a45;
  transform: translateY(200%);
  animation: textanimation 2.5s forwards;
  text-shadow: 1px 1px 0 #FFF, -1px -1px 0 #FFF, -1px 1px 0 #FFF, 1px -1px 0 #FFF, 0px 1px 0 #FFF, 0 -1px 0 #FFF, -1px 0 0 #FFF, 1px 0 0 #FFF;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main_writing .top_main_text_ja p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main_writing .top_main_text_ja p {
    font-size: 1.1rem;
  }
}
#top_main .top_main_writing .top_main_text_ja p {
  /* 1文字目 */
}
#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 {
  /* 2文字目 */
}
#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_blog {
  padding: 4rem 0;
}
#top_main #top_blog .top_blog {
  width: 70%;
  padding: 3rem;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main #top_blog .top_blog {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #top_main #top_blog .top_blog {
    position: relative;
    bottom: 0;
    top: 100%;
    width: 100%;
    padding: 18vw 8vw;
  }
}
#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 textanimation {
  0% {
    opacity: 0;
    transform: scale(0.5);
    transform: translateY(3em);
  }
  100% {
    opacity: 1;
    transform: scale(1);
    transform: translateY(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);
  }
}
#greeting {
  padding: 7rem 0;
}
@media screen and (max-width: 768px) {
  #greeting {
    padding: 5rem 0;
  }
}
#greeting .greeting {
  width: 85%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #greeting .greeting {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #greeting .greeting {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .fade-in {
    opacity: 1 !important;
  }
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .fade-in-up {
    transform: translate(0, 0) !important;
  }
}
#greeting .greeting .greeting_contents .greeting_headline {
  margin-bottom: 2rem;
}
#greeting .greeting .greeting_contents .greeting_headline h2 {
  font-size: 2rem;
  color: #6F5A45;
  text-align: center;
  margin-bottom: 1rem;
  padding: 1rem 0;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .greeting_headline h2 {
    font-size: 1.5rem;
    margin-bottom: 0rem;
  }
}
#greeting .greeting .greeting_contents .greeting_headline h2 span {
  width: 10%;
  margin: 0 auto;
  display: block;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .greeting_headline h2 span {
    width: 20%;
  }
}
#greeting .greeting .greeting_contents .greeting_headline h2 span img {
  width: 100%;
}
#greeting .greeting .greeting_contents .greeting_headline p {
  text-align: center;
}
#greeting .greeting .greeting_contents .greeting_group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .greeting_group {
    display: block;
  }
}
#greeting .greeting .greeting_contents .greeting_group h3 {
  width: 100%;
  text-align: center;
  color: #6F5A45;
  font-size: 2rem;
  margin-bottom: 3rem;
}
#greeting .greeting .greeting_contents .greeting_group h3 span {
  color: #9C836A;
  display: block;
  font-weight: 500;
  font-size: 1.5rem;
  border-radius: 1rem;
}
#greeting .greeting .greeting_contents .greeting_group .greeting_text {
  width: 48%;
  background-color: #fff;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 0 5px #6f5a45;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .greeting_group .greeting_text {
    width: 100%;
    margin-bottom: 1rem;
  }
}
#greeting .greeting .greeting_contents .greeting_group .greeting_text p {
  line-height: 2rem;
  background-image: linear-gradient(0deg, #ccc 1px, transparent 1px);
  background-size: 100% 2rem;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .greeting_group .greeting_text p {
    text-align: left;
  }
}
#greeting .greeting .greeting_contents .greeting_group .greeting_img {
  width: 48%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .greeting_group .greeting_img {
    width: 100%;
    margin: 0 auto;
  }
}
#greeting .greeting .greeting_contents .greeting_group .greeting_img .img01 {
  position: relative;
  z-index: 1;
}
#greeting .greeting .greeting_contents .greeting_group .greeting_img .img02 {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #greeting .greeting .greeting_contents .greeting_group .greeting_img .img02 {
    bottom: -30%;
  }
}
#greeting .greeting .greeting_contents .greeting_group .greeting_img img {
  width: 55%;
  border-radius: 1rem;
  box-shadow: 5px 5px 0 #6f5a45;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #greeting .greeting .greeting_contents .greeting_group .greeting_img img {
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #greeting .greeting .greeting_contents .greeting_group .greeting_img img {
    width: 90%;
    margin: 0 auto;
  }
}

#strengths {
  padding: 5rem 0;
  background-color: #fffcf4;
  border-radius: 5rem;
}
@media screen and (max-width: 768px) {
  #strengths {
    padding: 3rem 0;
  }
}
#strengths .strengths {
  width: 85%;
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #strengths .strengths {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #strengths .strengths {
    width: 90%;
  }
}
#strengths .strengths .strengths_headline h2 {
  font-size: 2rem;
  color: #6F5A45;
  display: block;
  position: relative;
  text-align: center;
}
#strengths .strengths .strengths_headline h2 span {
  color: #9C836A;
  display: block;
  font-weight: 500;
  font-size: 1.5rem;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  #strengths .strengths .strengths_headline h2 {
    font-size: 1.5rem;
  }
}
#strengths .strengths .strengths_text {
  padding: 2rem 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #strengths .strengths .strengths_text {
    text-align: left;
  }
}
#strengths .strengths .strengths_text h3 {
  color: #6F5A45;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #strengths .strengths .strengths_text h3 {
    font-size: 1.2rem;
  }
}
#strengths .strengths .strengths_text h3 i {
  color: #fff;
  padding: 1rem;
  border-radius: 5rem;
  margin-bottom: 1rem;
}
#strengths .strengths .strengths_text h3 .fa-sack-dollar {
  background-color: #82ce48;
}
#strengths .strengths .strengths_text h3 .fa-house {
  background-color: #ffa229;
}
#strengths .strengths .strengths_text h3 .fa-comments {
  background-color: #82ce48;
}
#strengths .strengths .strengths_text h3 .fa-car {
  background-color: #ffa229;
}
#strengths .strengths .strengths_text p a {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  background-color: #6F5A45;
  border-radius: 1rem;
  padding: 0.5rem 3rem;
  margin-top: 1rem;
  transition: all 0.4s;
}
#strengths .strengths .strengths_text p a:hover {
  opacity: 0.75;
}

#top_blog {
  padding: 5rem 0;
}
@media screen and (max-width: 768px) {
  #top_blog {
    padding: 3rem 0;
  }
}
#top_blog .top_blog {
  width: 85%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  border-radius: 10px;
  position: relative;
  z-index: 10;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_blog .top_blog {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog {
    width: 90%;
  }
}
#top_blog .top_blog .top_headline {
  width: 28%;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_headline {
    width: 100%;
  }
}
#top_blog .top_blog .top_headline h2 {
  font-size: 2.5rem;
  color: #6F5A45;
  display: block;
  position: relative;
  text-align: center;
}
#top_blog .top_blog .top_headline h2 span {
  color: #9C836A;
  display: block;
  font-weight: 500;
  font-size: 1.5rem;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_headline h2 {
    font-size: 1.5rem;
  }
}
#top_blog .top_blog .top_headline .top_blog_btn {
  margin-top: 2rem;
  text-align: center;
  display: block;
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_headline .top_blog_btn {
    display: none;
  }
}
#top_blog .top_blog .top_headline .top_blog_btn a {
  color: #fff;
  background-color: #B8A38A;
  text-decoration: none;
  padding: 0.5rem 2rem;
  border-radius: 10px;
  transition: all 0.4s;
}
#top_blog .top_blog .top_headline .top_blog_btn a:hover {
  color: #B8A38A;
  background-color: #fff;
  border: 1px solid #B8A38A;
}
#top_blog .top_blog .top_blog_contents {
  width: 68%;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_contents {
    width: 100%;
  }
}
#top_blog .top_blog .top_blog_contents ul {
  list-style: none;
  margin-bottom: 0.5vw;
}
#top_blog .top_blog .top_blog_contents ul a {
  color: #6F5A45;
  text-decoration: none;
}
#top_blog .top_blog .top_blog_contents ul a li {
  border-bottom: 2px dotted #B8A38A;
  padding: 0.5rem 0;
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_contents ul a li {
    padding: 1rem 0;
  }
}
#top_blog .top_blog .top_blog_contents ul a li .outline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#top_blog .top_blog .top_blog_contents ul a li .outline .list {
  width: 80%;
}
#top_blog .top_blog .top_blog_contents ul a li .outline .list .date {
  color: #6F5A45;
  font-size: 1rem;
  display: inline-block;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_blog .top_blog .top_blog_contents ul a li .outline .list .date {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_contents ul a li .outline .list .date {
    display: block;
    padding: 0.25rem 0;
  }
}
#top_blog .top_blog .top_blog_contents ul a li .outline .list .title {
  color: #6f5a4a;
  font-size: 1rem;
  transition: all 0.4s;
  display: inline-block;
  padding-left: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_blog .top_blog .top_blog_contents ul a li .outline .list .title {
    display: block;
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_contents ul a li .outline .list .title {
    display: block;
    padding-left: 0;
  }
}
#top_blog .top_blog .top_blog_contents ul a .blog_arrow {
  width: auto;
  text-align: right;
  color: #B8A38A;
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_contents ul a .blog_arrow {
    display: none;
  }
}
#top_blog .top_blog .top_blog_contents ul a .blog_arrow .blog_link_btn {
  color: #6f5a4a;
  line-height: 25px;
  width: 25px;
  text-align: center;
  border-radius: 5rem;
  z-index: 15;
  transition: 0.4s all;
}
#top_blog .top_blog .top_blog_contents ul a .blog_arrow .blog_link_btn i {
  font-size: 100%;
}
#top_blog .top_blog .top_blog_contents ul a .blog_arrow .blog_link_btn:hover {
  background-color: transparent !important;
}
#top_blog .top_blog .top_blog_contents .top_blog_btn_sp {
  display: none;
  margin-top: 2rem;
  text-align: center;
}
#top_blog .top_blog .top_blog_contents .top_blog_btn_sp a {
  color: #fff;
  background-color: #B8A38A;
  text-decoration: none;
  padding: 0.5rem 2rem;
  border-radius: 10px;
  transition: all 0.4s;
}
#top_blog .top_blog .top_blog_contents .top_blog_btn_sp a:hover {
  color: #B8A38A;
  background-color: #fff;
  border: 1px solid #B8A38A;
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_contents .top_blog_btn_sp {
    display: block;
  }
}

#top_service {
  overflow: hidden;
}
#top_service .top_service01 {
  margin-right: 10%;
  border-radius: 0 3rem 3rem 0;
}
@media screen and (max-width: 768px) {
  #top_service .top_service01 {
    margin-right: 5%;
  }
}
#top_service .top_service02 {
  margin-left: 10%;
  border-radius: 3rem 0 0 3rem;
}
@media screen and (max-width: 768px) {
  #top_service .top_service02 {
    margin-left: 5%;
  }
}
#top_service .top_service {
  width: 90%;
  padding: 3rem;
  position: relative;
  background-color: #fffcf4;
  margin-bottom: 5rem;
  box-shadow: 2px 2px 5px #6f5a45;
}
@media screen and (max-width: 768px) {
  #top_service .top_service {
    width: 95%;
    padding: 2rem;
  }
}
#top_service .top_service .top_service_headline h2 {
  font-size: 2rem;
  color: #6F5A45;
  display: block;
  position: relative;
  padding-bottom: 1rem;
  text-align: center;
  border-bottom: dashed 2px #6f5a45;
}
#top_service .top_service .top_service_headline h2 span {
  color: #9C836A;
  display: block;
  font-weight: 500;
  font-size: 1.5rem;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_headline h2 {
    font-size: 1.5rem;
  }
}
#top_service .top_service .top_service_text {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_text {
    display: block;
  }
}
#top_service .top_service .top_service_text .top_service_textarea {
  width: 58%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service .top_service_text .top_service_textarea {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_text .top_service_textarea {
    width: 100%;
    margin-bottom: 1rem;
  }
}
#top_service .top_service .top_service_text .top_service_textarea a {
  text-decoration: none;
  display: inline-block;
  color: #fff;
  background-color: #6F5A45;
  border-radius: 1rem;
  padding: 0.5rem 3rem;
  margin-top: 1rem;
  transition: all 0.4s;
}
#top_service .top_service .top_service_text .top_service_textarea a:hover {
  opacity: 0.75;
}
#top_service .top_service .top_service_text .top_service_img {
  width: 38%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service .top_service_text .top_service_img {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_text .top_service_img {
    width: 100%;
  }
}
#top_service .top_service .top_service_text .top_service_img img {
  width: 100%;
  background-color: #fff;
  padding: 0.5rem;
  box-shadow: 0 0 1px #6f5a45;
}

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

.active {
  display: block !important;
}

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

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

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

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

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

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

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

#sakiame {
  background-size: cover;
  background-position: center;
  height: 35vh;
}

#blog {
  padding: 0 0 5rem 0;
  width: 85%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #blog {
    width: 90%;
  }
}
#blog .blog {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: start;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  #blog .blog {
    display: block;
    justify-content: center;
    align-items: center;
  }
}
#blog .blog .blog_contents {
  width: 65%;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog .blog .blog_contents {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #blog .blog .blog_contents {
    width: 100%;
    margin: 0 auto;
  }
}
#blog .blog .blog_contents h3 {
  color: #6f5a45;
  border-bottom: solid 1px rgba(34, 34, 34, 0.4);
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog .blog .blog_contents h3 {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  #blog .blog .blog_contents h3 {
    font-size: 1.2rem;
  }
}
#blog .blog .blog_contents ul {
  list-style: none;
}
#blog .blog .blog_contents ul a {
  color: #555;
  text-decoration: none;
}
#blog .blog .blog_contents ul a li {
  padding: 0.5rem 0;
  border-bottom: 1px solid #ddd;
}
#blog .blog .blog_contents ul a li .thumb {
  width: 100%;
  height: 40vw;
  margin-bottom: 2vw;
}
#blog .blog .blog_contents ul a li .thumb img {
  width: 100%;
  height: 100%;
}
#blog .blog .blog_contents ul a li .outline .date {
  font-size: 1.3rem;
  letter-spacing: 0.1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog .blog .blog_contents ul a li .outline .date {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  #blog .blog .blog_contents ul a li .outline .date {
    font-size: 4vw;
  }
}
#blog .blog .blog_contents ul a li .outline .title {
  font-size: 1rem;
}
#blog .blog .blog_contents ul a li .outline .descn {
  font-size: 0.8vw;
}
#blog .blog .blog_contents .navigation {
  display: block;
  margin-top: 2rem;
}
#blog .blog .monthly-archive {
  width: 30%;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog .blog .monthly-archive {
    width: 35%;
  }
}
@media screen and (max-width: 768px) {
  #blog .blog .monthly-archive {
    width: 100%;
    margin: 2rem auto 0 auto;
  }
}
#blog .blog .monthly-archive h4 {
  color: #6f5a45;
  font-size: 1.3rem;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog .blog .monthly-archive h4 {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 768px) {
  #blog .blog .monthly-archive h4 {
    font-size: 4vw;
  }
}
#blog .blog .monthly-archive h3 {
  color: #6f5a45;
  border-bottom: solid 1px rgba(34, 34, 34, 0.4);
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog .blog .monthly-archive h3 {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  #blog .blog .monthly-archive h3 {
    font-size: 1.2rem;
  }
}
#blog .blog .monthly-archive ul {
  list-style: none;
}
#blog .blog .monthly-archive ul li {
  padding: 0.5rem 0;
}
#blog .blog .monthly-archive ul li a {
  color: #000;
  font-size: 1rem;
}

#blog_single {
  padding: 5rem 0;
}
#blog_single .blog_single {
  width: 70%;
  padding: 3rem;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog_single .blog_single {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #blog_single .blog_single {
    width: 90%;
  }
}
#blog_single .blog_single .blog_contents ul {
  list-style: none;
  color: #555;
  text-decoration: none;
}
#blog_single .blog_single .blog_contents ul li .thumb {
  width: 100%;
  height: 40vw;
  margin-bottom: 2vw;
}
#blog_single .blog_single .blog_contents ul li .thumb img {
  width: 100%;
  height: 100%;
}
#blog_single .blog_single .blog_contents ul li .outline .date {
  font-size: 0.8vw;
  letter-spacing: 0.1vw;
  border-bottom: solid 1px #ddd;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog_single .blog_single .blog_contents ul li .outline .date {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  #blog_single .blog_single .blog_contents ul li .outline .date {
    font-size: 2vw;
  }
}
#blog_single .blog_single .blog_contents ul li .outline .title {
  color: #6f5a45;
  font-size: 1.3rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog_single .blog_single .blog_contents ul li .outline .title {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  #blog_single .blog_single .blog_contents ul li .outline .title {
    font-size: 1.3rem;
  }
}
#blog_single .blog_single .blog_contents ul li .outline .descn p {
  font-size: 1.1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog_single .blog_single .blog_contents ul li .outline .descn p {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 768px) {
  #blog_single .blog_single .blog_contents ul li .outline .descn p {
    font-size: 1.2rem;
  }
}

#service .service {
  overflow: hidden;
  padding-top: 5rem;
}
#service .service .service_contents {
  list-style: none;
}
#service .service .service_contents .service_content {
  width: 85%;
  margin: 0 auto 0 auto;
  border-radius: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents .service_content {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents .service_content {
    width: 90%;
  }
}
#service .service .service_contents .service_content .service_headline {
  width: 100%;
  margin-bottom: 1rem;
}
#service .service .service_contents .service_content .service_headline h3 {
  position: relative;
  text-align: center;
  color: #6f5a45;
  font-size: 1.8rem;
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  background-position: bottom;
  background-repeat: repeat-x;
  background-size: 30px;
  padding: 1rem 3rem;
  display: table;
  margin: 0 auto 2rem auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents .service_content .service_headline h3 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents .service_content .service_headline h3 {
    font-size: 1.2rem;
    padding: 1rem 0;
  }
}
#service .service .service_contents .service_content .service_group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: solid 1px rgba(78, 182, 206, 0.5);
}
#service .service .service_contents .service_content .service_group:last-child {
  border-bottom: none;
}
#service .service .service_contents .service_content .service_group .service_textarea {
  width: 65%;
  padding: 3rem 3rem 3rem 3rem;
  background-color: rgba(111, 90, 69, 0.1);
  border-radius: 1rem;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #service .service .service_contents .service_content .service_group .service_textarea {
    width: 60%;
    padding: 3rem 7rem 3rem 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents .service_content .service_group .service_textarea {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents .service_content .service_group .service_textarea {
    width: 100%;
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
}
#service .service .service_contents .service_content .service_group .service_textarea p {
  font-size: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents .service_content .service_group .service_textarea p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents .service_content .service_group .service_textarea p {
    font-size: 0.8rem;
  }
}
#service .service .service_contents .service_content .service_group .service_img {
  width: 450px;
  position: absolute;
  right: 0;
}
#service .service .service_contents .service_content .service_group .service_img img {
  width: 100%;
  border-radius: 1rem;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #service .service .service_contents .service_content .service_group .service_img {
    width: 450px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents .service_content .service_group .service_img {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents .service_content .service_group .service_img {
    width: 100%;
    position: relative;
  }
}
#service .service .service_contents .service_table {
  width: 85%;
  margin: 0 auto 0 auto;
}
#service .service .service_contents .service_table h3 {
  color: #6f5a45;
  text-align: center;
  padding: 1rem 0;
  margin-bottom: 2rem;
  border-bottom: dashed 2px #6f5a45;
}
#service .service .service_contents table {
  width: 85%;
  margin: 0 auto 0 auto;
  border-radius: 1rem;
  display: block;
  border-collapse: collapse;
  border-radius: 1rem;
  margin-bottom: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents table {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents table {
    width: 90%;
  }
}
#service .service .service_contents table tbody {
  width: 100%;
  display: inline-table;
}
#service .service .service_contents table tbody tr th, #service .service .service_contents table tbody tr td {
  color: #fff;
  padding: 1.4vw;
  font-size: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents table tbody tr th, #service .service .service_contents table tbody tr td {
    padding: 2vw;
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents table tbody tr th, #service .service .service_contents table tbody tr td {
    padding: 3vw;
    font-size: 0.8rem;
  }
}
#service .service .service_contents table tbody tr th {
  color: #fff;
  background-color: #6f5a45;
  border-bottom: 1px solid #fff;
  width: 30%;
}
#service .service .service_contents table tbody tr td {
  color: #6f5a45;
  background-color: #fff;
  border-bottom: 1px solid #f3ecdc;
  width: 70%;
}
#service .service .farm_contents_top {
  position: relative;
  padding: 5rem 0;
  background-position: center;
  background-size: cover;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .farm_contents_top {
    padding: 3rem 0;
  }
}
@media screen and (max-width: 768px) {
  #service .service .farm_contents_top {
    padding: 1.5rem 0;
  }
}
#service .service .farm_contents_top:after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.25);
}
#service .service .farm_contents_top .farm_headline {
  position: relative;
  width: 100%;
  z-index: 1;
}
#service .service .farm_contents_top .farm_headline h3 {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .farm_contents_top .farm_headline h3 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  #service .service .farm_contents_top .farm_headline h3 {
    font-size: 1.3rem;
    background-size: 40%;
    background-position: top center;
    text-align: center;
  }
}
#service .service .farm_contents_top .farm_headline h4 {
  font-size: 1.3rem;
  text-align: center;
  font-weight: 100;
  margin-bottom: 2rem;
  background-color: rgba(255, 255, 255, 0.75);
  padding: 2rem;
  display: table;
  margin: 0 auto;
  border-radius: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .farm_contents_top .farm_headline h4 {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  #service .service .farm_contents_top .farm_headline h4 {
    font-size: 1rem;
  }
}
#service .service .farm_contents {
  padding: 5rem 0;
  background-color: #fffaed;
}
@media screen and (max-width: 768px) {
  #service .service .farm_contents {
    padding: 1.5rem 0;
  }
}
#service .service .farm_contents .farm_content {
  width: 85%;
  padding: 3rem;
  margin: 0 auto 0 auto;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.75);
  flex-direction: row-reverse;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .farm_contents .farm_content {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #service .service .farm_contents .farm_content {
    width: 90%;
    padding: 1.5rem;
  }
}
#service .service .farm_contents .farm_content .farm_headline {
  width: 100%;
  margin-bottom: 4rem;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #service .service .farm_contents .farm_content .farm_headline {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .farm_contents .farm_content .farm_headline {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #service .service .farm_contents .farm_content .farm_headline {
    margin-bottom: 1rem;
  }
}
#service .service .farm_contents .farm_content .farm_headline h3 {
  position: relative;
  text-align: center;
  color: #6f5a45;
  font-size: 1.8rem;
  margin-bottom: 1rem;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .farm_contents .farm_content .farm_headline h3 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 768px) {
  #service .service .farm_contents .farm_content .farm_headline h3 {
    font-size: 1.2rem;
    padding: 1rem 0;
  }
}
@media screen and (max-width: 768px) {
  #service .service .farm_contents .farm_content .farm_headline h3 {
    font-size: 1.3rem;
    background-size: 40%;
    background-position: top center;
    text-align: center;
  }
}
#service .service .farm_contents .farm_content .farm_headline h4 {
  text-align: center;
  font-weight: 100;
  margin-bottom: 2rem;
}
#service .service .farm_contents .farm_content .farm_group {
  flex-flow: row-reverse;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 3rem;
  margin-bottom: 5rem;
  border-bottom: solid 1px #f0ede8;
  flex-direction: row-reverse;
  margin-top: 3rem;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #service .service .farm_contents .farm_content .farm_group {
    margin-top: 0rem;
    margin-bottom: 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .farm_contents .farm_content .farm_group {
    margin-top: 0rem;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 768px) {
  #service .service .farm_contents .farm_content .farm_group {
    margin-top: 0rem;
    margin-bottom: 3rem;
  }
}
#service .service .farm_contents .farm_content .farm_group .farm_textarea {
  width: 80%;
  padding: 3rem 3rem 3rem 7rem;
  background-color: rgba(111, 90, 69, 0.1);
  border-radius: 1rem;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #service .service .farm_contents .farm_content .farm_group .farm_textarea {
    width: 65%;
    padding: 3rem 3rem 3rem 3rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .farm_contents .farm_content .farm_group .farm_textarea {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #service .service .farm_contents .farm_content .farm_group .farm_textarea {
    width: 100%;
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
}
#service .service .farm_contents .farm_content .farm_group .farm_textarea p {
  font-size: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .farm_contents .farm_content .farm_group .farm_textarea p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #service .service .farm_contents .farm_content .farm_group .farm_textarea p {
    font-size: 0.8rem;
  }
}
#service .service .farm_contents .farm_content .farm_group .farm_img {
  width: 300px;
  position: absolute;
  left: 0;
}
#service .service .farm_contents .farm_content .farm_group .farm_img img {
  width: 100%;
  border-radius: 1rem;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #service .service .farm_contents .farm_content .farm_group .farm_img {
    width: 300px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .farm_contents .farm_content .farm_group .farm_img {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  #service .service .farm_contents .farm_content .farm_group .farm_img {
    position: relative;
    width: 100%;
  }
}
#service .service .farm_contents .farm_content .farm_headline02 {
  width: 100%;
  margin-bottom: 4rem;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #service .service .farm_contents .farm_content .farm_headline02 {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .farm_contents .farm_content .farm_headline02 {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #service .service .farm_contents .farm_content .farm_headline02 {
    margin-bottom: 1rem;
  }
}
#service .service .farm_contents .farm_content .farm_headline02 h4 {
  color: #6f5a45;
  font-weight: 100;
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-bottom: solid 1px #6f5a45;
}
#service .service .farm_contents .farm_content .farm_group02 {
  align-items: center;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: solid 1px #f0ede8;
  flex-direction: row-reverse;
}
#service .service .farm_contents .farm_content .farm_group02 .farm_textarea p {
  font-size: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .farm_contents .farm_content .farm_group02 .farm_textarea p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #service .service .farm_contents .farm_content .farm_group02 .farm_textarea p {
    font-size: 0.8rem;
  }
}
#service .service .farm_contents .farm_content .farm_headline03 {
  width: 100%;
  margin-bottom: 4rem;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #service .service .farm_contents .farm_content .farm_headline03 {
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .farm_contents .farm_content .farm_headline03 {
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #service .service .farm_contents .farm_content .farm_headline03 {
    margin-bottom: 1rem;
  }
}
#service .service .farm_contents .farm_content .farm_headline03 h4 {
  color: #6f5a45;
  font-weight: 100;
  padding: 1rem 0;
  margin-bottom: 1rem;
  border-bottom: solid 1px #6f5a45;
}
#service .service .farm_contents .farm_content .farm_group03 {
  align-items: center;
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: solid 1px #f0ede8;
  flex-direction: row-reverse;
}
#service .service .farm_contents .farm_content .farm_group03 .farm_textarea p {
  font-size: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .farm_contents .farm_content .farm_group03 .farm_textarea p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #service .service .farm_contents .farm_content .farm_group03 .farm_textarea p {
    font-size: 0.8rem;
  }
}
#service .service .farm_contents .farm_content .service_table h3 {
  color: #6f5a45;
  text-align: center;
  padding: 1rem 0;
  margin-bottom: 2rem;
  border-bottom: dashed 2px #6f5a45;
}
#service .service .farm_contents .farm_content table {
  border-radius: 1rem;
  display: block;
  border-collapse: collapse;
  border-radius: 1rem;
}
#service .service .farm_contents .farm_content table tbody {
  width: 100%;
  display: inline-table;
}
#service .service .farm_contents .farm_content table tbody tr th, #service .service .farm_contents .farm_content table tbody tr td {
  color: #fff;
  padding: 1.4vw;
  font-size: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .farm_contents .farm_content table tbody tr th, #service .service .farm_contents .farm_content table tbody tr td {
    padding: 2vw;
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #service .service .farm_contents .farm_content table tbody tr th, #service .service .farm_contents .farm_content table tbody tr td {
    padding: 3vw;
    font-size: 0.8rem;
  }
}
#service .service .farm_contents .farm_content table tbody tr th {
  color: #fff;
  background-color: #6f5a45;
  border-bottom: 1px solid #fff;
  width: 30%;
}
#service .service .farm_contents .farm_content table tbody tr td {
  color: #6f5a45;
  background-color: #fff;
  border-bottom: 1px solid #f3ecdc;
  width: 70%;
}

#recruit {
  background-color: #fffcf4;
}
#recruit .recruit_contents {
  padding: 3rem 0;
  margin: auto;
  position: relative;
}
#recruit .recruit_contents p {
  text-align: center;
  font-size: 1.2rem;
}
#recruit .recruit_contents .recruit_detail {
  width: 65%;
  margin: auto;
  padding: 3rem;
  z-index: 100;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #recruit .recruit_contents .recruit_detail {
    width: 70%;
  }
}
@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: 2rem 0;
  }
}
#recruit .recruit_contents .recruit_detail .recruit_title h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
  background-color: #353535;
  color: #fff;
  padding: 2rem;
}
#recruit .recruit_contents .recruit_detail .recruit_title h2:before {
  content: "";
  border-left: 10px double #fff;
  margin-right: 0.5rem;
}
@media screen and (max-width: 768px) {
  #recruit .recruit_contents .recruit_detail .recruit_title h2 {
    font-size: 2rem;
    padding: 1rem;
  }
}
#recruit .recruit_contents .recruit_detail table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
}
#recruit .recruit_contents .recruit_detail table tr {
  font-size: 1.5rem;
}
#recruit .recruit_contents .recruit_detail table tr th {
  width: 35%;
  padding: 20px 0;
  text-align: end;
  padding-right: 40px;
  color: #333;
  border-bottom: 2px solid #333;
}
@media screen and (max-width: 768px) {
  #recruit .recruit_contents .recruit_detail table tr th {
    padding-right: 20px;
    font-size: 12.5px;
    width: 35%;
  }
}
#recruit .recruit_contents .recruit_detail table tr td {
  color: #333;
  width: 65%;
  padding: 20px 0;
  padding-left: 40px;
  border-bottom: 2px solid #333;
}
@media screen and (max-width: 768px) {
  #recruit .recruit_contents .recruit_detail table tr td {
    padding-left: 20px;
    font-size: 12.5px;
    width: 65%;
  }
}

#company .company .company_contents {
  width: 70%;
  margin: auto;
  padding: 5rem 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company .company_contents {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents {
    width: 95%;
  }
}
#company .company .company_contents p {
  color: #48b6ce;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
}
#company .company .company_contents .company_table h3 {
  color: #6f5a45;
  text-align: center;
  padding: 1rem 0;
  margin-bottom: 2rem;
  border-bottom: dashed 2px #6f5a45;
}
#company .company .company_contents table {
  border-radius: 1rem;
  display: block;
  border-collapse: collapse;
  border-radius: 1rem;
  margin-bottom: 5rem;
}
#company .company .company_contents table tbody {
  width: 100%;
  display: inline-table;
}
#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: 0.8rem;
  }
}
#company .company .company_contents table tbody tr th {
  color: #fff;
  background-color: #6f5a45;
  border-bottom: 1px solid #fff;
  width: 30%;
}
#company .company .company_contents table tbody tr td {
  color: #6f5a45;
  background-color: #fff;
  border-bottom: 1px solid #f3ecdc;
  width: 70%;
}
#company .company .company_contents .map iframe {
  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 {
  width: 80%;
  margin: auto;
  margin-bottom: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact {
    width: 95%;
  }
}
#contact .contact .contact_text {
  margin-bottom: 3rem;
}
#contact .contact .contact_text p {
  font-size: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_text p {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_text p {
    font-size: 3.3vw;
  }
}
#contact .contact .form {
  width: 100%;
  margin-bottom: 8vw;
}
#contact .contact .form .wpcf7 {
  color: #333;
  background-color: #fff;
  padding: 5rem;
  border-radius: 10px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #contact .contact .form .wpcf7 {
    padding: 5rem 1rem;
  }
}
#contact .contact .form .wpcf7 label {
  display: block;
  margin-bottom: 2rem;
  font-size: 100%;
  font-weight: 600;
  color: #333333;
}
#contact .contact .form .wpcf7 label .red {
  background-color: #ff0000;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 10px;
  font-size: 80%;
}
#contact .contact .form .wpcf7 label .blue {
  background-color: #2986ff;
  color: #fff;
  padding: 2px 5px;
  border-radius: 3px;
  margin-left: 10px;
  font-size: 80%;
}
#contact .contact .form .wpcf7 label .wpcf7-form-control-wrap input {
  width: 100%;
  margin-top: 1rem;
  padding: 1rem;
}
#contact .contact .form .wpcf7 label textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #cccccc;
  border-radius: 5px;
  margin-top: 1rem;
  margin-bottom: 1rem;
  background-color: #ffffff;
  height: 250px;
  resize: vertical;
}
#contact .contact .form .wpcf7 label.policy {
  text-align: center;
}
#contact .contact .form .wpcf7 label.policy input {
  width: auto;
}
#contact .contact .form .wpcf7 .wpcf7 input[type=url], #contact .contact .form .wpcf7 .wpcf7 input[type=email], #contact .contact .form .wpcf7 .wpcf7 input[type=tel] {
  padding: 2rem;
  margin-bottom: 2rem;
  height: 20px;
}
#contact .contact .form .wpcf7 input[type=submit] {
  color: #fff;
  background-color: #333;
  cursor: pointer;
  transition: background-color 0.4s ease;
  border: none;
  width: 80%;
  margin: auto 10%;
  font-size: 120%;
  font-weight: 600;
  padding: 1rem;
  border-radius: 10px;
}
#contact .contact .form .wpcf7 input[type=submit]:hover {
  opacity: 0.7;
}
#contact .contact .form .wpcf7 .wpcf7-response-output {
  font-size: 160%;
  text-align: center;
  padding: 1rem;
  color: #333;
  font-weight: 600;
}
#contact .contact .form .wpcf7 .wpcf7-form-control {
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
}
#contact .contact .form .thanks {
  text-align: center;
  font-size: 140%;
}
@media screen and (max-width: 768px) {
  #contact .contact .form .thanks {
    text-align: left;
    font-size: 100%;
  }
}

#policy_main {
  padding: 0 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  #policy_main {
    padding: 0;
  }
}
#policy_main #policy_main_bg {
  background-position: center;
  background-size: cover;
  padding-top: 500px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #policy_main #policy_main_bg {
    padding-top: 500px;
  }
}
@media screen and (max-width: 768px) {
  #policy_main #policy_main_bg {
    padding-top: 280px;
  }
}
#policy_main #policy_main_bg .policy_main_title {
  position: absolute;
  top: 50%;
  left: 60%;
  transform: translate(0, -50%);
  color: #fff;
  font-size: 48px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #policy_main #policy_main_bg .policy_main_title {
    left: 50%;
    font-size: 48px;
  }
}
@media screen and (max-width: 768px) {
  #policy_main #policy_main_bg .policy_main_title {
    left: 55%;
    font-size: 24px;
  }
}
#policy_main #policy_main_bg .policy_main_logo {
  position: absolute;
  width: 30%;
  height: 300px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #policy_main #policy_main_bg .policy_main_logo {
    height: 200px;
  }
}
@media screen and (max-width: 768px) {
  #policy_main #policy_main_bg .policy_main_logo {
    width: 45%;
    height: 100px;
  }
}
#policy_main #policy_main_bg .policy_main_logo img {
  width: 60%;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #policy_main #policy_main_bg .policy_main_logo img {
    width: 80%;
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  #policy_main #policy_main_bg .policy_main_logo .policy_main_text {
    font-size: 10px;
  }
}

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

footer {
  position: relative;
  padding: 2rem 0;
  background-position: bottom;
  background-size: cover;
}
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: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .footer_contact .footer_contact_title {
    width: 90%;
  }
}
footer #footer_contact .footer_contact .footer_contact_title p {
  margin-bottom: 0.8vw;
  font-family: sans-serif;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .footer_contact .footer_contact_title p {
    margin-bottom: 2vw;
  }
}
footer #footer_contact .footer_contact .footer_contact_title h2 {
  margin-bottom: 2vw;
  letter-spacing: 0.6vw;
  font-size: 4vw;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .footer_contact .footer_contact_title h2 {
    font-size: 8vw;
    margin-bottom: 8vw;
  }
}
footer #footer_contact .footer_contact .footer_contact_title .contact_btn a {
  text-decoration: none;
}
footer #footer_contact .footer_contact .footer_contact_title .contact_btn a button {
  border: 1px solid #fff;
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
  padding: 1.5vw 6vw;
  transition: all 0.4s;
  letter-spacing: 0.2vw;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .footer_contact .footer_contact_title .contact_btn a button {
    padding: 3vw 12vw;
  }
}
footer #footer_contact .footer_contact .footer_contact_title .contact_btn a button:hover {
  background: #c9b789;
  border: none;
}
footer #footer .footer .footer_contact {
  background-color: #1c90b0;
  padding: 3rem 0;
}
footer #footer .footer .footer_contact .footer_link {
  font-size: 1.5rem;
  color: #fff;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .footer_contact .footer_link {
    font-size: 0.7rem;
  }
}
footer #footer .footer .footer_contact .footer_link a {
  font-size: 1.5rem;
  color: #1c90b0;
  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: 85%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access {
    display: block;
  }
}
footer #footer .footer .access .footer_left {
  width: 38%;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .footer_left {
    width: 100%;
  }
}
footer #footer .footer .access .footer_left .footer_logo {
  width: 200px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .footer_left .footer_logo {
    width: 100%;
    margin: 0 auto;
  }
}
footer #footer .footer .access .footer_left .footer_logo img {
  width: 100%;
  margin-bottom: 0.5rem;
  display: block;
  text-align: left;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .footer_left .footer_logo img {
    width: 60%;
    margin: 0 auto 0.5rem auto;
  }
}
footer #footer .footer .access .footer_left .company_detail p {
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .footer_left .company_detail p {
    text-align: center;
  }
}
footer #footer .footer .access .footer_left .company_detail .address span {
  display: block;
}
footer #footer .footer .access .footer_menu {
  width: 58%;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .footer_menu {
    width: 100%;
    padding: 0 0rem;
  }
}
footer #footer .footer .access .footer_menu ul {
  padding: 2vw 0;
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer .footer .access .footer_menu ul {
    padding: 1rem 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .footer_menu ul {
    padding: 1rem 0;
    width: 100%;
    flex-wrap: wrap;
  }
}
footer #footer .footer .access .footer_menu ul li {
  width: 48%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer .footer .access .footer_menu ul li {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  footer #footer .footer .access .footer_menu ul li {
    width: 100%;
  }
}
footer #footer .footer .access .footer_menu ul li a {
  text-decoration: none;
  padding: 0.5rem 0;
  display: block;
  color: #4A3F35;
  font-size: 100%;
  border-bottom: 1px dotted #B8A38A;
  transition: all 0.4s;
}
footer #footer .footer .access .footer_menu ul li a:hover {
  opacity: 0.75;
}
footer #footer .footer .access .footer_menu ul li a i {
  padding-right: 0.25rem;
}
footer #footer .footer .copyright {
  text-align: center;
  color: #6F5A45;
  padding-top: 0.6vw;
  padding-bottom: 0.5vw;
}
footer #footer .footer .copyright p {
  font-size: 100%;
}
@media screen and (max-width: 768px) {
  footer #footer .footer .copyright p {
    padding-top: 2vw;
    padding-bottom: 1.5vw;
  }
}
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%;
}/*# sourceMappingURL=style.css.map */