@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Noto Sans Japanese", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", Roboto, MotoyaLCedar, sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 2px;
  scroll-behavior: smooth;
}

body {
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
  z-index: 1;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  body {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 2.5vw;
  }
}

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

a {
  text-decoration: none;
  color: #333;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {
  animation: zoomUp 10s linear 0s normal both;
}

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

.fadeinZoom {
  opacity: 0;
  animation-name: fadeinZoom;
  animation-duration: 5s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

@keyframes fadeinZoom {
  0% {
    transform: scale(0.9);
    opacity: 0;
    transform: translate(0, 50px);
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    transform: translate(0, -50px);
    opacity: 1;
  }
}
.fadeinZoom2 {
  opacity: 0;
  animation-name: fadeinZoom2;
  animation-duration: 7s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  animation-delay: 2s;
}

@keyframes fadeinZoom2 {
  20% {
    transform: scale(0.9);
    opacity: 0;
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
p {
  font-size: 1.1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  p {
    font-size: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 0.7rem;
  }
}

h1 {
  font-size: 48px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  h1 {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 28px;
  }
}

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

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

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

.top_contents_btn {
  text-align: center;
}
.top_contents_btn a {
  text-decoration: none;
}
.top_contents_btn a button {
  color: #333;
  padding: 15px 30px;
  border: 1px solid #333;
  background-color: #fff;
  transition: all 0.4s;
  font-family: "Bebas Neue", sans-serif;
  cursor: pointer;
}
.top_contents_btn a button:hover {
  background-color: #333;
  color: #fff;
}
.top_contents_btn a button i {
  margin-left: 20px;
}

#news_single .outline ul {
  margin-top: 10px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  margin: 15px auto;
}
#news_single .outline ul li {
  width: 100%;
}
#news_single .outline ul li .title {
  border-bottom: solid 1px #000;
}
#news_single .outline ul li .date {
  text-align: right;
}

#blog_single .outline ul {
  margin-top: 10px;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  margin: 15px auto;
}
#blog_single .outline ul li {
  width: 100%;
}
#blog_single .outline ul li .title {
  border-bottom: solid 1px #000;
}
#blog_single .outline ul li .date {
  text-align: right;
}

#header_sp.change-color {
  transition: 0.3s;
}

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

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

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

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

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

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

.header_top .header_logo {
  width: 15%;
  position: absolute;
  top: 7vw;
  left: 2vw;
  z-index: 11;
}
.header_top .header_logo a img {
  width: 100%;
}

header {
  position: fixed;
  width: 100%;
  z-index: 9999;
  top: 0;
}
header #header_pc {
  position: relative;
  width: 100%;
  height: 14vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2vw;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  header #header_pc {
    height: 14vh;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc {
    height: 10vw;
  }
}
@media screen and (max-width: 768px) {
  header #header_pc {
    display: none !important;
  }
}
header #header_pc .header_logo {
  width: 145px;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  header #header_pc .header_logo {
    width: 145px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc .header_logo {
    width: 15vw;
  }
}
header #header_pc .header_logo a {
  width: 100%;
  margin: auto;
  display: block;
}
header #header_pc .header_logo a img {
  width: 100%;
}
header #header_pc .header_menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 80%;
}
header #header_pc .header_menu ul {
  list-style: none;
  display: flex;
  justify-content: end;
  align-items: center;
  width: 100%;
  height: 100%;
}
header #header_pc .header_menu ul li {
  width: auto;
  margin: 0 2rem;
  text-align: center;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc .header_menu ul li {
    margin: 0 1rem;
  }
}
header #header_pc .header_menu ul li a {
  text-decoration: none;
  color: #222;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc .header_menu ul li a {
    font-size: 1rem;
  }
}
header #header_pc .header_menu ul li a:hover {
  opacity: 0.75;
}
header #header_pc .header_menu ul li a span {
  font-size: 0.7rem;
  margin-top: 0.2rem;
  display: block;
  color: #6bb93d;
  font-weight: 600;
}
header #header_pc .header_menu ul li:not(:last-child):hover {
  opacity: 0.5;
}
header #header_pc .header_menu ul li:last-child button {
  color: #fff;
}
header #header_pc_scroll {
  position: relative;
  width: 100%;
  height: 14vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2vw;
  background: rgba(255, 255, 255, 0.8);
}
header #header_pc_scroll .header_logo {
  width: 145px;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  header #header_pc_scroll .header_logo {
    width: 145px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc_scroll .header_logo {
    width: 15vw;
  }
}
header #header_pc_scroll .header_logo a {
  width: 100%;
  margin: auto;
  display: block;
}
header #header_pc_scroll .header_logo a img {
  width: 100%;
}
header #header_pc_scroll .header_menu {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 80%;
}
header #header_pc_scroll .header_menu ul {
  list-style: none;
  display: flex;
  justify-content: end;
  align-items: center;
  width: 100%;
  height: 100%;
}
header #header_pc_scroll .header_menu ul li {
  width: auto;
  margin: 0 2rem;
  text-align: center;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc_scroll .header_menu ul li {
    margin: 0 1rem;
  }
}
header #header_pc_scroll .header_menu ul li a {
  text-decoration: none;
  color: #222;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc_scroll .header_menu ul li a {
    font-size: 1rem;
  }
}
header #header_pc_scroll .header_menu ul li a:hover {
  opacity: 0.75;
}
header #header_pc_scroll .header_menu ul li a span {
  font-size: 0.7rem;
  margin-top: 0.2rem;
  display: block;
  color: #6bb93d;
  font-weight: 600;
}
header #header_pc_scroll .header_menu ul li:not(:last-child):hover {
  opacity: 0.5;
}
header #header_pc_scroll .header_menu ul li:last-child button {
  color: #fff;
}
header #header_sp {
  position: relative;
  height: 45px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 1441px) {
  header #header_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  header #header_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_sp {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header #header_sp {
    display: flex;
  }
}
header #header_sp .header_logo {
  width: 145px;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  header #header_sp .header_logo {
    width: 145px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_sp .header_logo {
    width: 15vw;
  }
}
@media screen and (max-width: 768px) {
  header #header_sp .header_logo {
    width: 100px;
    margin-top: 10vw;
  }
}
header #header_sp .header_logo a {
  width: 100%;
  margin: auto;
  display: block;
}
header #header_sp .header_logo a img {
  width: 100%;
}
header .top_contact {
  position: absolute;
  top: 12vw;
  right: 0;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  header .top_contact {
    top: 12vh;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header .top_contact {
    top: 12vw;
  }
}
@media screen and (max-width: 768px) {
  header .top_contact {
    display: none;
  }
}
header .top_contact a {
  font-size: 1.1rem;
  display: block;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 7px 0px 0px 7px;
  writing-mode: vertical-rl;
  transition: all 0.4s;
}
header .top_contact a:hover {
  opacity: 0.75;
}
header .top_contact a span {
  display: inline;
  padding: 0.5rem;
  color: #fff;
  background-color: #6bb93d;
  border-radius: 7px 0px 0px 0px;
}
header .top_contact a strong {
  padding: 0.5rem;
  display: inline-block;
  margin-top: -5px;
  font-weight: 600;
}

.header_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 70vw 50vw 0 0;
  border-color: #6bb93d transparent transparent transparent;
  z-index: -100;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display: block;
  position: fixed;
  z-index: 10005;
  right: 0px;
  top: 0px;
  width: 80px;
  height: 80px;
  cursor: pointer;
  text-align: center;
  background: #000;
}
@media screen and (min-width: 1441px) {
  .hamburger {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  .hamburger {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hamburger {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .hamburger {
    width: 45px;
    height: 45px;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 40px;
  height: 2px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #fff;
  transition: 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .hamburger span {
    width: 30px;
  }
}

.hamburger span:nth-child(1) {
  top: 35%;
}
@media screen and (max-width: 768px) {
  .hamburger span:nth-child(1) {
    top: 30%;
  }
}

.hamburger span:nth-child(2) {
  top: 50%;
}

.hamburger span:nth-child(3) {
  top: 65%;
}
@media screen and (max-width: 768px) {
  .hamburger span:nth-child(3) {
    top: 70%;
  }
}

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

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

nav.globalMenuSp {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  width: 100%;
  height: 100vh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

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

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

nav.globalMenuSp ul li:hover {
  background: #ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 800;
}
nav.globalMenuSp ul li a span {
  font-weight: 300;
  font-size: 10px;
  display: block;
  color: #fff;
}

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

.loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 10000;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader .txt {
  font-size: 45px;
  font-weight: bold;
  color: rgb(30, 50, 93);
  display: none;
}

.loader .txt img {
  width: 400px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .loader .txt img {
    width: 250px;
  }
}

/* ローディング画面終了後のファーストビュー */
.my-first-view {
  height: 100vh;
  background-image: url(https://prograshi.com/wp-content/uploads/2024/06/image-125.jpg);
  background-size: cover;
  background-repeat: no-repeat;
}

/* ローディング画面 */
.my-custom-loader {
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 400;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.my-custom-loader .txt {
  width: 400px;
  font-weight: bold;
  color: #1D3B56;
  display: none;
}

.my-custom-loader .fulfilling-square-spinner {
  display: none;
}

.my-custom-loader .txt img {
  width: 100%;
  display: block;
}

/* スピンするアイコンのCSS*/
.fulfilling-square-spinner, .fulfilling-square-spinner * {
  box-sizing: border-box;
}

.fulfilling-square-spinner {
  height: 50px;
  width: 50px;
  position: relative;
  border: 4px solid #1D3B56;
  animation: fulfilling-square-spinner-animation 4s infinite ease;
}

.fulfilling-square-spinner .spinner-inner {
  vertical-align: top;
  display: inline-block;
  background-color: #1D3B56;
  width: 100%;
  opacity: 1;
  animation: fulfilling-square-spinner-inner-animation 4s infinite ease-in;
}

@keyframes fulfilling-square-spinner-animation {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(180deg);
  }
  50% {
    transform: rotate(180deg);
  }
  75% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fulfilling-square-spinner-inner-animation {
  0% {
    height: 0%;
  }
  25% {
    height: 0%;
  }
  50% {
    height: 100%;
  }
  75% {
    height: 100%;
  }
  100% {
    height: 0%;
  }
}
#top_main {
  position: relative;
  z-index: 10;
  height: 100vh;
  top: -1.1rem;
  margin-bottom: -1.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main {
    top: -1.4rem;
    margin-bottom: -1.4rem;
  }
}
@media screen and (max-width: 768px) {
  #top_main {
    height: 60vh;
  }
}
#top_main:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
#top_main .top_main {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 100vh;
  position: relative;
}
#top_main .top_main_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 9998;
}
#top_main .top_main_bg .top_main_logo {
  position: absolute;
  top: 40%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_bg .top_main_logo {
    top: 25vh;
  }
}
#top_main .top_main_bg .top_main_logo .top_main_logo_sub {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_bg .top_main_logo .top_main_logo_sub {
    line-height: 45vh;
    margin: 0 auto;
  }
}
#top_main .top_main_bg .top_main_logo .top_main_logo_sub img {
  width: 350px;
  height: auto;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_bg .top_main_logo .top_main_logo_sub img {
    width: 300px;
  }
}
#top_main .top_main_bg .top_main_logo .top_main_logo_sub .top_main_txt {
  width: 100%;
  text-align: center;
  margin-top: 1rem;
  line-height: 2.5;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_bg .top_main_logo .top_main_logo_sub .top_main_txt {
    line-height: 2;
  }
}
#top_main .top_main_bg .top_main_logo .top_main_logo_sub .top_main_txt h2 {
  font-size: 1.8rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0 10px #000000;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_bg .top_main_logo .top_main_logo_sub .top_main_txt h2 {
    font-size: 1.2rem;
  }
}
#top_main .top_main_bg .top_main_logo .top_main_logo_sub .top_main_txt p {
  font-size: 1.4rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0 10px #000000;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_bg .top_main_logo .top_main_logo_sub .top_main_txt p {
    font-size: 1rem;
  }
}
#top_main .top_main_bg .top_main_text {
  position: absolute;
  top: 68%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  border-bottom: 1px solid #fff;
}
#top_main .top_main_bg .top_main_text p {
  color: #fff;
  font-size: 1.4vw;
  margin: 0 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_main .top_main_bg .top_main_text p {
    top: 75%;
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main_bg .top_main_text p {
    top: 70%;
    font-size: 3.8vw;
  }
}
#top_main .top_main_bg .top_main_scroll {
  position: absolute;
  top: 60%;
  left: 5%;
  transform: rotate(-90deg);
}
#top_main .top_main_bg .top_main_scroll p {
  color: #fff;
  position: relative;
}
#top_main .top_main_bg .top_main_scroll p::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 110%;
  transform: translate(0, -50%);
  width: 200%;
  height: 1px;
  background-color: #fff;
  animation: 2s scroll infinite forwards;
}
#top_main .slide {
  width: 100%;
  height: 100%;
  margin: auto;
  overflow: hidden; /* 画像がはみ出ないようにする */
}
#top_main .slide .slick-list {
  height: 100%;
}
#top_main .slide .slick-list .slick-track {
  height: 100%;
}
#top_main .slide .slick-list .slick-track img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top_main .slide .slick-next {
  display: none !important;
}
#top_main .slide .slick-prev {
  display: none !important;
}
#top_main .top_main_headline {
  position: absolute;
  z-index: 10;
  top: 12vw;
  left: 0%;
  width: 100%;
  line-height: 90px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_headline {
    top: 25vw;
    line-height: 30px;
  }
}
#top_main .top_main_headline h2 span {
  color: #fff;
  font-size: 1.5rem;
}
#top_main .top_main_headline h2 span .bgappearTrigger {
  padding-left: 50px;
  padding-right: 30px;
  letter-spacing: 0.2rem;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_headline h2 span .bgappearTrigger {
    padding-left: 20px;
    padding-right: 15px;
    font-size: 6vw;
  }
}
#top_main .top_main_headline h2 span.text140 {
  font-size: 160%;
  color: #ff0000;
  font-weight: 600;
}
#top_main .top_main_headline .header_logo {
  width: 20%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #top_main .top_main_headline .header_logo {
    line-height: 0;
  }
}
@media screen and (max-width: 768px) {
  #top_main .top_main_headline .header_logo .bgappearTrigger {
    padding-left: 20px;
    padding-right: 15px;
    font-size: 2rem;
    margin-top: 1.5rem;
    display: block;
  }
}
#top_main .top_main_headline .header_logo .bgappearTrigger img {
  width: 100%;
}

@keyframes scroll {
  0% {
    width: 0;
  }
  100% {
    width: 200%;
  }
}
/*全共通*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 6s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden; /*　はみ出た色要素を隠す　*/
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*中の要素*/
.bgappear {
  animation-name: bgextendAnimeSecond;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*左から右*/
.bgLRextend::before {
  animation-name: bgLRextendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  padding: 20px;
  top: -15%;
}
@media screen and (max-width: 768px) {
  .bgLRextend::before {
    padding: 0px;
    height: 180%;
    top: -40%;
  }
}

@keyframes bgLRextendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(1);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.bgappearTrigger,
.bgLRextendTrigger {
  opacity: 0;
}

#greeting {
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  #greeting {
    margin-bottom: 40px;
    flex-flow: column;
  }
}
#greeting .greeting_title .greeting_header {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
}
@media screen and (max-width: 768px) {
  #greeting .greeting_title .greeting_header {
    padding: 2rem 0;
  }
}
#greeting .greeting_title .greeting_header h2 {
  color: #6bb93d;
  font-weight: 900;
  font-size: 2.5rem;
}
#greeting .greeting_title .greeting_header h3 {
  font-size: 1.5rem;
  color: #222;
}
#greeting .greeting_headline {
  text-align: center;
  margin-bottom: 40px;
}
#greeting .greeting_headline h3 {
  font-weight: 800;
}
#greeting .greeting_left {
  width: 85%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0;
  flex-flow: row-reverse;
  position: relative;
  height: 35vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #greeting .greeting_left {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #greeting .greeting_left {
    width: 90%;
    height: auto;
    padding: 0;
    margin-bottom: 40px;
    flex-flow: wrap;
  }
}
#greeting .greeting_left .greeting_text {
  width: 60%;
  position: absolute;
  bottom: -10%;
  right: 0;
  line-height: 2.5vw;
  background-color: #f4f4f4;
  z-index: 1;
  border-radius: 15px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #greeting .greeting_left .greeting_text {
    line-height: 3.5vw;
  }
}
@media screen and (max-width: 768px) {
  #greeting .greeting_left .greeting_text {
    position: static;
    width: 100%;
    line-height: 6vw;
    position: static;
    margin-bottom: 1rem;
  }
}
#greeting .greeting_left .greeting_text p {
  font-size: 1rem;
  padding: 2rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #greeting .greeting_left .greeting_text p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #greeting .greeting_left .greeting_text p {
    font-size: 0.7rem;
  }
}
#greeting .greeting_left .greeting_img {
  width: 60%;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  #greeting .greeting_left .greeting_img {
    position: static;
    width: 100%;
    margin-bottom: 6vw;
  }
}
#greeting .greeting_left .greeting_img img {
  width: 100%;
  border-radius: 15px;
}

#area {
  margin-bottom: 120px;
  background-color: #f8f8f8;
}
@media screen and (max-width: 768px) {
  #area {
    margin-bottom: 40px;
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  #area .area_title {
    margin-bottom: 10px;
  }
}
#area .area_title .area_header {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 3rem 0;
}
#area .area_title .area_header h2 {
  color: #6bb93d;
  font-weight: 900;
  font-size: 2.5rem;
}
#area .area_title .area_header h3 {
  font-size: 1.5rem;
  color: #222;
}
#area .area_headline {
  text-align: center;
  margin-bottom: 40px;
}
#area .area_headline h3 {
  font-weight: 800;
}
#area .area_text {
  width: 90%;
  margin: auto;
  display: flex;
  padding: 3rem 0;
  justify-content: space-between;
  align-items: center;
  flex-flow: row-reverse;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #area .area_text {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #area .area_text {
    width: 100%;
    margin-bottom: 40px;
    flex-flow: column-reverse;
  }
}
#area .area_text .area_left {
  width: 55%;
  line-height: 2.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #area .area_text .area_left {
    line-height: 3.5vw;
  }
}
@media screen and (max-width: 768px) {
  #area .area_text .area_left {
    width: 100%;
    line-height: 6vw;
  }
}
#area .area_text .area_left p {
  font-size: 1rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #area .area_text .area_left p {
    font-size: 1rem;
  }
}
@media screen and (max-width: 768px) {
  #area .area_text .area_left p {
    font-size: 1rem;
    padding: 2rem;
  }
}
#area .area_text .area_left ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
#area .area_text .area_left ul li {
  width: 31% !important;
  margin-right: 2%;
  margin-bottom: 1rem;
  width: auto;
}
#area .area_text .area_left ul li span {
  padding: 0.3rem 0;
  font-size: 1rem;
  text-align: center;
  display: block;
  background-color: #ccc;
}
#area .area_text .area_right {
  width: 40%;
  position: relative;
}
@media screen and (max-width: 768px) {
  #area .area_text .area_right {
    width: 100%;
    margin-bottom: 6vw;
  }
}
#area .area_text .area_right img {
  width: 100%;
}

/* 
#top_product{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 0 ;
    margin-bottom: 120px;
    position: relative;
    @include sp{
        display: none;
    }
    .top_product_left{
        width: 65%;
        padding: 40px 80px;
        background-color: rgba(255,255,255,.7);
        position: absolute;
        z-index: 10;
        top: 50%;
        left: 0%;
        transform: translate(0,-50%);
        box-shadow: 0 3px 6px rgba(0,0,0,.16);
        @include tab{
            width: 70%;
            left: 0%;
            padding: 30px 60px;
        }
        @include sp{
            width: 100%;
            position: static;
            transform: translate(0,0);
        }
        .top_product_title{
            text-align: center;
            padding: 10px 40px;
            background-color: $main_color;
            width: 370px;
            margin: auto;
            margin-bottom: 20px;
            @include sp{
                width: 320px;
            }
            h2{
                font-weight: 900;
                color: #fff;
                letter-spacing: 6px;
            }
        }
        .top_product_headline{
            text-align: center;
            margin-bottom: 40px;
            h3{
                color: $main_color;
            }
        }
        .top_product_text{
            margin-bottom: 40px;
        }
    }
    .top_product_right{
        width: 60%;
        @include tab{
            width: 80%;
        }
        @include sp{
            width: 100%;
        }
        img{
            width: 100%;
        }
    }
}
#top_product_sp{
    padding: 0 10px;
    margin-bottom: 80px;
    @include monitor{
        display: none;
    }
    @include pc{
        display: none;
    }
    @include tab{
        display: none;
    }
    .top_product_title{
        text-align: center;
        padding: 10px 20px;
        background-color: $main_color;
        width: 80%;
        margin: auto;
        margin-bottom: 20px;
        h2{
            color: #fff;
            letter-spacing: 6px;
            font-weight: 900;
        }
    }
    .top_product_right{
        width: 100%;
        margin-bottom: 20px;
        img{
            width: 100%;
        }
    }
    .top_product_headline{
        text-align: center;
        margin-bottom: 20px;
    }
    .top_product_text{
        margin-bottom: 20px;
    }
}
*/
#top_product {
  position: relative;
  z-index: -1;
}
#top_product::after {
  position: absolute;
  content: "";
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 95%;
  height: 85%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
}
#top_product .top_product_image {
  position: relative;
  width: 100%;
  height: 30vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_product .top_product_image {
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  #top_product .top_product_image {
    height: 250px;
  }
}
#top_product .top_product_image .top_product_image_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#top_product .top_product_image .images {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#top_product .top_product_image .images img {
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top_product .top_product_title {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  margin-bottom: 20px;
  padding: 10px 0;
  display: inline-block;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_product .top_product_title {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #top_product .top_product_title {
    width: 90%;
    padding: 5px 40px;
  }
}
#top_product .top_product_title h2 {
  font-size: 3vw;
  font-weight: 900;
  color: #fff;
  letter-spacing: 6px;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #top_product .top_product_title h2 {
    font-size: 8vw;
  }
}
#top_product .top_product_title h3 {
  color: #fff;
  margin-bottom: 2rem;
}
#top_product .top_product_title p {
  color: #fff;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #top_product .top_product_title p {
    margin-bottom: 6vw;
  }
}
#top_product .top_product_title .top_contents_btn a button {
  border: none;
}
#top_product .top_product_title .top_contents_btn a button:hover {
  border: 1px solid #fff;
}
#top_product .top_product_contents {
  width: 80%;
  margin: auto;
  background-color: #fff;
  padding: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_product .top_product_contents {
    top: 40%;
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  #top_product .top_product_contents {
    width: 90%;
    top: 40%;
    padding: 25px;
  }
}
#top_product .top_product_contents .top_product_contents_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px solid #6bb93d;
  width: 95%;
  height: 90%;
}
#top_product .top_product_contents .top_product_headline {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #top_product .top_product_contents .top_product_headline {
    margin-bottom: 20px;
  }
}
#top_product .top_product_contents .top_product_headline h3 {
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  #top_product .top_product_contents .top_product_headline h3 {
    font-size: 15px;
  }
}
#top_product .top_product_contents .top_product_text {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #top_product .top_product_contents .top_product_text {
    margin-bottom: 20px;
  }
}
#top_product .top_product_contents .top_product_text .top_product_text_contents ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #top_product .top_product_contents .top_product_text .top_product_text_contents ul {
    flex-flow: column;
  }
}
#top_product .top_product_contents .top_product_text .top_product_text_contents ul li {
  width: 45%;
  padding: 1.4vw 0;
  margin: 0.5vw 0;
  background-color: #6bb93d;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top_product .top_product_contents .top_product_text .top_product_text_contents ul li {
    width: 80%;
  }
}
#top_product .top_product_contents .top_product_text .top_product_text_contents ul li p {
  color: #fff;
}
#top_product .top_product_contents .top_product_text .top_product_text_contents ul li p span {
  font-size: 2vw;
  color: #fff;
  font-weight: 600;
}
#top_product .top_product_contents .top_product_text .text {
  text-align: center;
}

#top_news {
  margin-bottom: 8vw;
  background-color: #f4f4f4;
  padding: 4vw 0;
}
@media screen and (max-width: 768px) {
  #top_news {
    padding: 6vw 0;
    margin-bottom: 12vw;
  }
}
#top_news .top_news {
  width: 80%;
  margin: auto;
  display: flex;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news {
    width: 95%;
  }
}
#top_news .top_news .top_news_title {
  text-align: left;
  padding: 10px 20px;
  width: 30%;
  margin: auto;
  margin-top: 0px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news .top_news_title {
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_title {
    width: 100%;
    margin-bottom: 8vw;
  }
}
#top_news .top_news .top_news_title h2 {
  color: #000;
  letter-spacing: 6px;
  font-weight: 900;
}
#top_news .top_news .news_contents {
  width: 70%;
}
#top_news .top_news .news_contents ul {
  list-style: none;
  margin: auto;
  margin-bottom: 30px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news .news_contents ul {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .news_contents ul {
    width: 90%;
  }
}
#top_news .top_news .news_contents ul li {
  padding: 0;
  border-bottom: 1px solid #6bb93d;
  margin-bottom: 15px;
}
#top_news .top_news .news_contents ul li .outline .date {
  color: #919191;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .news_contents ul li .outline .date {
    font-size: 3vw;
  }
}
#top_news .top_news .news_contents ul li .outline .title {
  display: block;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .news_contents ul li .outline .title {
    font-size: 3.5vw;
  }
}

#top_business {
  position: relative;
  z-index: -1;
}
#top_business::after {
  position: absolute;
  content: "";
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 95%;
  height: 85%;
  transform: translate(-50%, -50%);
  border: 1px solid #fff;
}
#top_business .top_business_image {
  position: relative;
  width: 100%;
  height: 30vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_business .top_business_image {
    height: 400px;
  }
}
@media screen and (max-width: 768px) {
  #top_business .top_business_image {
    height: 250px;
  }
}
#top_business .top_business_image .top_business_image_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#top_business .top_business_image .images {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
#top_business .top_business_image .images img {
  width: 50%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top_business .top_business_title {
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  margin-bottom: 20px;
  padding: 10px 80px;
  display: inline-block;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_business .top_business_title {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  #top_business .top_business_title {
    width: 90%;
    padding: 5px 40px;
  }
}
#top_business .top_business_title h2 {
  font-size: 3vw;
  font-weight: 900;
  color: #fff;
  letter-spacing: 6px;
}
@media screen and (max-width: 768px) {
  #top_business .top_business_title h2 {
    font-size: 8vw;
  }
}
#top_business .top_business_title p {
  color: #fff;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #top_business .top_business_title p {
    margin-bottom: 3vw;
  }
}
#top_business .top_business_title .top_contents_btn a button {
  border: none;
}
#top_business .top_business_title .top_contents_btn a button:hover {
  border: 1px solid #fff;
}
#top_business .top_business_contents {
  width: 80%;
  margin: auto;
  background-color: #fff;
  padding: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_business .top_business_contents {
    top: 40%;
    padding: 40px;
  }
}
@media screen and (max-width: 768px) {
  #top_business .top_business_contents {
    width: 90%;
    top: 40%;
    padding: 25px;
  }
}
#top_business .top_business_contents .top_business_contents_bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: 1.5px solid #6bb93d;
  width: 95%;
  height: 90%;
}
#top_business .top_business_contents .top_business_headline {
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  #top_business .top_business_contents .top_business_headline {
    margin-bottom: 20px;
  }
}
#top_business .top_business_contents .top_business_headline h3 {
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  #top_business .top_business_contents .top_business_headline h3 {
    font-size: 15px;
  }
}
#top_business .top_business_contents .top_business_text {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  #top_business .top_business_contents .top_business_text {
    margin-bottom: 20px;
  }
}
#top_business .top_business_contents .top_business_text .top_business_text_contents ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #top_business .top_business_contents .top_business_text .top_business_text_contents ul {
    flex-flow: column;
  }
}
#top_business .top_business_contents .top_business_text .top_business_text_contents ul li {
  width: 45%;
  padding: 1.4vw 0;
  margin: 0.5vw 0;
  background-color: #6bb93d;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top_business .top_business_contents .top_business_text .top_business_text_contents ul li {
    width: 80%;
  }
}
#top_business .top_business_contents .top_business_text .top_business_text_contents ul li p {
  color: #fff;
}
#top_business .top_business_contents .top_business_text .top_business_text_contents ul li p span {
  font-size: 2vw;
  color: #fff;
  font-weight: 600;
}
#top_business .top_business_contents .top_business_text .text {
  text-align: center;
}

#contents {
  position: relative;
  z-index: -1;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 2rem;
  padding-bottom: 5rem;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #contents {
    flex-flow: column;
    padding-bottom: 3rem;
  }
}
#contents .top_contents {
  margin: 0 auto 5rem auto;
  background: linear-gradient(180deg, #fff 0%, #fff 70%, #efefef 30%, #efefef 100%);
}
@media screen and (max-width: 768px) {
  #contents .top_contents {
    margin: 0 auto 3rem auto;
  }
}
#contents .top_contents .top_contents_flex {
  width: 85%;
  height: 30vw;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contents .top_contents .top_contents_flex {
    width: 90%;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 768px) {
  #contents .top_contents .top_contents_flex {
    width: 100%;
    display: block;
    height: auto;
    margin-bottom: 0;
  }
}
#contents .top_contents .top_contents_flex .top_contents_txt {
  width: 48%;
}
@media screen and (max-width: 768px) {
  #contents .top_contents .top_contents_flex .top_contents_txt {
    width: 100%;
    margin-bottom: 3rem;
  }
}
#contents .top_contents .top_contents_flex .top_contents_txt h2 {
  font-size: 3vw;
  font-weight: 900;
  text-align: center;
  color: #000000;
  letter-spacing: 6px;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  #contents .top_contents .top_contents_flex .top_contents_txt h2 {
    font-size: 8vw;
  }
}
#contents .top_contents .top_contents_flex .top_contents_txt h2 span {
  font-size: 2vw;
  color: #6bb93d;
  display: block;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #contents .top_contents .top_contents_flex .top_contents_txt h2 span {
    font-size: 5vw;
  }
}
#contents .top_contents .top_contents_flex .top_contents_txt p {
  text-align: center;
  color: #000;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #contents .top_contents .top_contents_flex .top_contents_txt p {
    margin-bottom: 3vw;
  }
}
#contents .top_contents .top_contents_flex .top_contents_image {
  width: 48%;
  position: relative;
  height: 25vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contents .top_contents .top_contents_flex .top_contents_image {
    height: 250px;
  }
}
@media screen and (max-width: 768px) {
  #contents .top_contents .top_contents_flex .top_contents_image {
    width: 90%;
    height: 200px;
    margin: 0 auto;
  }
}
#contents .top_contents .top_contents_flex .top_contents_image:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 5%;
  top: -15%;
  background-color: #ccc;
  z-index: -1;
  border-radius: 7px;
}
#contents .top_contents .top_contents_flex .top_contents_image .images {
  position: absolute;
  bottom: 5%;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
}
#contents .top_contents .top_contents_flex .top_contents_image .images img {
  width: 100%;
  border-radius: 7px;
}
#contents .top_contents .top_contents_flex .top_contents_btn {
  margin-bottom: 1rem;
}
#contents .top_contents .top_contents_flex .top_contents_btn a button {
  border-radius: 7px;
}
#contents .top_contents_reverse .top_contents_flex {
  flex-flow: row-reverse;
}
#contents .top_contents_reverse .top_contents_flex .top_contents_image:before {
  left: auto;
  right: 6%;
}

#top_gallery {
  position: relative;
  background-color: #f4f4f4;
  background-image: radial-gradient(#fff 10%, transparent 20%), radial-gradient(#fff 20%, transparent 20%);
  background-size: 10px 10px;
  background-position: 0 0, 5px 5px;
  display: flex;
  width: 100%;
  padding: 30px 0;
}
@media screen and (max-width: 768px) {
  #top_gallery {
    display: block;
  }
}
#top_gallery .top_gallery_title {
  text-align: left;
  padding: 10px 20px;
  width: 30%;
  margin: auto;
}
#top_gallery .top_gallery_title h2 {
  color: #000;
  letter-spacing: 6px;
  font-weight: 900;
}
#top_gallery .top_gallery_img {
  width: 70%;
  margin-right: 3%;
}
@media screen and (max-width: 768px) {
  #top_gallery .top_gallery_img {
    width: 80%;
    margin: 0 10%;
  }
}
#top_gallery .top_gallery_img ul {
  list-style: none;
  width: 100%;
}
#top_gallery .top_gallery_img ul li div {
  height: 22vw;
  display: block;
  background-size: cover;
  border: solid 10px #fff;
}
@media screen and (max-width: 768px) {
  #top_gallery .top_gallery_img ul li div {
    height: 26vh;
  }
}
#top_gallery .top_gallery_img ul .add-animation {
  animation: zoomNone 0s linear 0s normal both;
}

.slide { /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

.slider01 {
  transition: 0s ease-in-out !important;
}

@keyframes zoomUp {
  0% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes zoomNone {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.slide img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slide .slick-slide {
  margin: 0 10px;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666; /*矢印の色*/
  border-right: 2px solid #666; /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev { /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next { /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}

.slider img {
  border: solid 10px #fff;
}

.slider { /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

.slider img {
  width: 100%; /*スライダー内の画像を横幅100%に*/
  height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin: 0 10px;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666; /*矢印の色*/
  border-right: 2px solid #666; /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev { /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next { /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}

#business_main {
  position: relative;
  z-index: 10;
  padding-top: 0px;
  height: 35vw;
  top: -1.8rem;
  margin-bottom: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #business_main {
    padding-top: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #business_main {
    height: 50vw;
  }
}
#business_main .breadcrumbs {
  background-color: #000;
  padding: 2vw;
}
#business_main .breadcrumbs p {
  font-size: 0.8vw;
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #business_main .breadcrumbs p {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  #business_main .breadcrumbs p {
    font-size: 2vw;
  }
}
#business_main .breadcrumbs p a {
  text-decoration: underline;
  color: #fff;
}
#business_main .breadcrumbs p span {
  margin: 0 1vw;
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #business_main .breadcrumbs p span {
    margin: 0 2vw;
  }
}
@media screen and (max-width: 768px) {
  #business_main .breadcrumbs p span {
    margin: 0 4vw;
  }
}
#business_main .business_main_image {
  width: 100%;
  height: 100%;
  margin: auto;
}
#business_main .business_main_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#business_main::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
#business_main .business_title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35vw;
  margin: auto;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  align-items: center;
  justify-content: center;
  display: flex;
}
@media screen and (max-width: 768px) {
  #business_main .business_title {
    height: 50vw;
  }
}
#business_main .business_title h2 {
  color: #fff;
  margin-top: 10vw;
}
#business_main .business_title p {
  color: #fff;
}

#business_nav {
  background-color: #333;
  margin-top: -25px;
}
#business_nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  line-height: 4vw;
}
#business_nav ul li {
  width: auto;
}
#business_nav ul li a {
  font-size: 1vw;
  color: #fff;
  padding: 0 15px;
}

#business {
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #business {
    width: 95%;
  }
}
#business .business {
  margin-bottom: 5rem;
}
#business .business:nth-child(even) .business_contents {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  #business .business:nth-child(even) .business_contents {
    flex-direction: column;
  }
}
#business .business .business_contents_headline {
  font-weight: 800;
  border-bottom: solid 3px #333;
  position: relative;
}
#business .business .business_contents_headline:first-letter {
  font-size: 150%;
  color: #6bb93d;
}
#business .business .business_contents_headline:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 3px #6bb93d;
  bottom: -3px;
  width: 30%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #business .business .business_contents_headline {
    font-size: 2.8vw;
    padding: 0.5rem 0;
  }
}
@media screen and (max-width: 768px) {
  #business .business .business_contents_headline {
    font-size: 5vw;
    width: 100%;
  }
}
#business .business .business_contents_headline strong {
  color: #6bb93d;
  font-weight: 600;
}
#business .business .business_contents {
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin: 30px 0 40px 0;
}
@media screen and (max-width: 768px) {
  #business .business .business_contents {
    height: auto;
    flex-flow: column;
    justify-content: center;
    margin: 30px 0 40px 0;
  }
}
#business .business .business_contents .business_writing {
  position: relative;
  width: 45%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #business .business .business_contents .business_writing {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  #business .business .business_contents .business_writing {
    width: 100%;
    margin-bottom: 20px;
  }
}
#business .business .business_contents .business_writing .business_contents_text {
  line-height: 1.8;
  padding: 2rem;
  background-color: rgba(242, 242, 242, 0.75);
  width: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #business .business .business_contents .business_writing .business_contents_text {
    padding: 1.5rem;
  }
}
@media screen and (max-width: 768px) {
  #business .business .business_contents .business_writing .business_contents_text {
    padding: 1.5rem;
    position: static;
  }
}
#business .business .business_contents .business_image {
  width: 50%;
  height: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #business .business .business_contents .business_image {
    width: 48%;
  }
}
@media screen and (max-width: 768px) {
  #business .business .business_contents .business_image {
    width: 100%;
    height: 50vw;
    padding: 0 20px;
  }
}
#business .business .business_contents .business_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#business .business .business_contents02 {
  margin: 30px 0;
}
#business .business .business_contents02 .business_contents_headline {
  margin: auto;
  color: #6bb93d;
  text-align: center;
  margin-bottom: 10px;
  font-weight: 800;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #business .business .business_contents02 .business_contents_headline {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #business .business .business_contents02 .business_contents_headline {
    width: 100%;
  }
}
#business .business .business_contents02 #business_contents02_box {
  padding: 30px 0;
  border-radius: 10px;
  width: 70%;
  margin: 5vw auto;
}
@media screen and (max-width: 768px) {
  #business .business .business_contents02 #business_contents02_box {
    width: 90%;
  }
}
#business .business .business_contents02 #business_contents02_box .business_contents_text02 {
  position: relative;
  padding: 2vw 0;
  border: solid 2px #333;
  text-align: center;
  font-size: 2vw;
}
@media screen and (max-width: 768px) {
  #business .business .business_contents02 #business_contents02_box .business_contents_text02 {
    padding: 5vw 0;
    font-size: 4vw;
  }
}
#business .business .business_contents02 #business_contents02_box .business_contents_text02:after {
  position: absolute;
  content: "徹底的な品質管理";
  top: -3vw;
  left: 17vw;
  background: #fff;
  font-size: 3vw;
  color: #333;
  padding: 0 10px;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  #business .business .business_contents02 #business_contents02_box .business_contents_text02:after {
    font-size: 5vw;
  }
}
#business .business .business_contents02 #business_contents02_box .business_contents_text03 {
  text-align: center;
}

#business_product {
  width: 90%;
  margin: 120px auto 60px;
}
@media screen and (max-width: 768px) {
  #business_product {
    width: 95%;
  }
}
#business_product .product_h1 {
  text-align: center;
}
#business_product .product_h1 h1 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #000;
  text-align: center;
  border-bottom: solid 3px #000;
  display: inline-block;
  padding: 1rem 0;
  margin-bottom: 30px;
}
#business_product .product_list_title h2 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
#business_product .product_list_title h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
#business_product .grid {
  align-items: center;
}
@media screen and (max-width: 768px) {
  #business_product .grid {
    width: 100%;
    flex-flow: column;
  }
}
#business_product .grid .cell {
  display: flex;
  justify-content: space-between;
  margin: 0 10px;
  list-style: none;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: solid 1px #000;
}
@media screen and (max-width: 768px) {
  #business_product .grid .cell {
    width: 100%;
    margin: 30px 10px;
    display: block;
  }
}
#business_product .grid .cell .product_image {
  width: 48%;
}
@media screen and (max-width: 768px) {
  #business_product .grid .cell .product_image {
    width: 96%;
  }
}
#business_product .grid .cell .product_image img {
  width: 100%;
  margin: 0;
}
#business_product .grid .cell .product_contents {
  width: 48%;
}
#business_product .grid .cell .product_contents h3 {
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  #business_product .grid .cell .product_contents {
    width: 96%;
  }
}
#business_product .grid .cell .product_contents dl {
  display: flex;
  padding: 5px 0;
}
#business_product .grid .cell .product_contents dl dt {
  width: auto;
}
#business_product .grid .cell .product_contents dl dd {
  width: auto;
}
#business_product .grid .cell2 {
  display: flex !important;
  justify-content: space-between;
  list-style: none;
  padding-bottom: 30px;
  margin-top: 15px;
  display: block;
}
@media screen and (max-width: 768px) {
  #business_product .grid .cell2 {
    width: 100%;
    margin: 10px 0px;
  }
}
#business_product .grid .cell2 .product_image {
  width: 48%;
}
#business_product .grid .cell2 .product_image img {
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  #business_product .grid .cell2 .product_image {
    width: 100%;
  }
}
#business_product .grid .cell2 .product_contents {
  width: 48%;
}
#business_product .grid .cell2 .product_contents h3 {
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  #business_product .grid .cell2 .product_contents {
    width: 100%;
  }
}
#business_product .grid .cell2 .product_contents dl {
  display: flex;
}
#business_product .grid .cell2 .product_contents dl dt {
  width: auto;
}
#business_product .grid .cell2 .product_contents dl dd {
  width: auto;
}
#business_product .product_list_other {
  display: block;
  width: 100%;
  overflow-x: auto;
  margin: 30px 10px;
}
#business_product .product_list_other .product_list_title h4 {
  font-weight: 600;
  margin-bottom: 0.5rem;
}
#business_product .product_list_other p {
  display: none;
}
@media screen and (max-width: 768px) {
  #business_product .product_list_other p {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  #business_product .product_list_other table {
    width: 800px;
    margin-bottom: 10px;
  }
}
#business_product .product_list_other table tr {
  display: flex;
  align-items: center;
  margin: 0 10px;
  border: 1px solid #bbb;
}
@media screen and (max-width: 768px) {
  #business_product .product_list_other table tr {
    flex-flow: row;
  }
}
#business_product .product_list_other table tr th {
  width: 25%;
  padding: 0.5rem;
  font-weight: 600;
  text-align: left;
  border-right: 1px solid #bbb;
  background: #e9ecef;
}
#business_product .product_list_other table tr td {
  padding: 0.5rem;
  text-align: left;
  border-right: 1px solid #bbb;
}
#business_product #bottom_text {
  background-color: #333;
  color: #fff;
  margin-top: 30px;
  padding: 30px 0;
  border-radius: 10px;
}
#business_product #bottom_text p {
  font-weight: 600;
  text-align: center;
  font-size: 1.5vw;
}
@media screen and (max-width: 768px) {
  #business_product #bottom_text p {
    font-size: 2.5vw;
  }
}

#company_main {
  position: relative;
  z-index: 10;
  padding-top: 0px;
  height: 35vw;
  top: -1.8rem;
  margin-bottom: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company_main {
    padding-top: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #company_main {
    height: 50vw;
  }
}
#company_main .breadcrumbs {
  background-color: #000;
  padding: 2vw;
}
#company_main .breadcrumbs p {
  font-size: 0.8vw;
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company_main .breadcrumbs p {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  #company_main .breadcrumbs p {
    font-size: 2vw;
  }
}
#company_main .breadcrumbs p a {
  text-decoration: underline;
  color: #fff;
}
#company_main .breadcrumbs p span {
  margin: 0 1vw;
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company_main .breadcrumbs p span {
    margin: 0 2vw;
  }
}
@media screen and (max-width: 768px) {
  #company_main .breadcrumbs p span {
    margin: 0 4vw;
  }
}
#company_main .company_main_image {
  width: 100%;
  height: 100%;
  margin: auto;
}
#company_main .company_main_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#company_main::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
#company_main .company_title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35vw;
  margin: auto;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  align-items: center;
  justify-content: center;
  display: flex;
}
@media screen and (max-width: 768px) {
  #company_main .company_title {
    height: 50vw;
  }
}
#company_main .company_title h2 {
  color: #fff;
  margin-top: 10vw;
}
#company_main .company_title p {
  color: #fff;
}

#company_nav {
  background-color: #333;
  margin-top: -25px;
}
#company_nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  line-height: 4vw;
}
#company_nav ul li {
  width: auto;
}
#company_nav ul li a {
  font-size: 1vw;
  color: #fff;
  padding: 0 15px;
}

#company #company_policy {
  margin-bottom: 60px;
  padding: 0;
}
#company #company_policy dt {
  font-size: 160%;
  font-weight: 600;
  border-bottom: 1px solid #333;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #company #company_policy dt {
    font-size: 130%;
    text-align: center;
  }
}
#company #company_policy dd {
  font-size: 130%;
  padding-left: 2rem;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  #company #company_policy dd {
    font-size: 100%;
  }
}
#company #company_policy dd::before {
  content: "■";
}
#company #company_policy #management {
  text-align: center;
  padding: 10vw 0;
  position: relative;
  background-color: #f4f4f4;
}
@media screen and (max-width: 768px) {
  #company #company_policy #management {
    background-size: cover;
    background-attachment: scroll;
    padding: 10rem 0;
    height: 100%;
  }
}
#company #company_policy #management .contents {
  width: 70%;
  margin: 0 auto;
  border: solid 1px #000;
  background-color: #fff;
  padding: 5vw;
}
#company #company_policy #management .contents h3 {
  font-size: 2.3vw;
  font-weight: 800;
  border-bottom: 1px solid #333;
  padding: 1vw 0;
  margin-bottom: 1vw;
}
#company #company_policy #management .contents p {
  font-size: 1.5vw;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #company #company_policy #management {
    width: 100%;
    padding: 5rem 1rem;
  }
}
#company #company_policy #execution {
  text-align: center;
  padding: 10vw 0;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #company #company_policy #execution {
    background-size: cover;
    background-attachment: scroll;
    padding: 10rem 0;
    height: 100%;
  }
}
#company #company_policy #execution .contents {
  width: 70%;
  margin: 0 auto;
}
#company #company_policy #execution .contents h3 {
  font-size: 2.3vw;
  font-weight: 800;
  border-bottom: 1px solid #333;
  padding: 1vw 0;
  margin-bottom: 1vw;
}
#company #company_policy #execution .contents p {
  font-size: 1.5vw;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #company #company_policy #execution {
    width: 100%;
    padding: 5rem 1rem;
  }
}
#company #company_policy #quality {
  text-align: center;
  padding: 10vw 0;
  position: relative;
  background-color: #f4f4f4;
}
@media screen and (max-width: 768px) {
  #company #company_policy #quality {
    background-size: cover;
    background-attachment: scroll;
    padding: 10rem 0;
    height: 100%;
  }
}
#company #company_policy #quality .contents {
  width: 70%;
  margin: 0 auto;
}
#company #company_policy #quality .contents h3 {
  font-size: 2.3vw;
  font-weight: 800;
  border-bottom: 1px solid #333;
  padding: 1vw 0;
  margin-bottom: 1vw;
}
#company #company_policy #quality .contents p {
  font-size: 1.5vw;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  #company #company_policy #quality {
    width: 100%;
    padding: 5rem 1rem;
  }
}
#company .company_detail {
  width: 70%;
  margin: 2rem auto;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company_detail {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #company .company_detail {
    width: 90%;
  }
}
#company .company_detail .company_header {
  margin-bottom: 30px;
}
#company .company_detail .company_header h2 {
  margin: auto;
  color: #333;
  border-bottom: solid 1px #999;
  font-weight: 800;
}
#company .company_detail .company_header span {
  font-size: 1rem;
  margin-bottom: 15px;
  padding-top: 5px;
  display: block;
  color: #6bb93d;
  font-weight: 600;
}
#company .company_detail table {
  width: 100%;
  margin: 0;
  margin-bottom: 80px;
  border-collapse: collapse;
  border-top: 1px solid #c9c9c9;
  border-right: 1px solid #c9c9c9;
}
#company .company_detail table tr th {
  font-size: 1rem;
  border-left: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
  width: 30%;
  padding: 15px;
  text-align: left;
  padding-right: 40px;
  color: #333;
}
@media screen and (max-width: 768px) {
  #company .company_detail table tr th {
    padding: 10px 0;
    padding-left: 20px;
    padding-right: 0;
    font-size: 12.5px;
    width: 100%;
    text-align: start;
  }
}
#company .company_detail table tr td {
  font-size: 1rem;
  border-left: 1px solid #c9c9c9;
  border-bottom: 1px solid #c9c9c9;
  width: 70%;
  padding: 15px 0;
  padding-left: 20px;
}
@media screen and (max-width: 768px) {
  #company .company_detail table tr td {
    padding: 10px 0;
    padding-left: 20px;
    padding-top: 10px;
    font-size: 12.5px;
    width: 100%;
  }
}
#company .company_detail table tr:nth-child(odd) {
  background-color: #f9f9f9;
}
#company .company_detail .map {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #company .company_detail .map {
    height: 300px;
  }
}
#company .company_detail .map iframe {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #company .company_detail .map iframe {
    height: 100%;
  }
}

#histry .company_detail {
  width: 70%;
  margin: auto;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #histry .company_detail {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  #histry .company_detail {
    width: 90%;
  }
}
#histry .company_detail .company_header {
  text-align: center;
  margin-bottom: 30px;
}
#histry .company_detail .company_header h2 {
  display: inline-block;
  border-bottom: solid 3px #000;
  font-size: 150%;
  padding: 10px 0;
  margin-bottom: 10px;
}
#histry .company_detail .company_header span {
  text-align: center;
  margin-bottom: 15px;
  display: block;
}
#histry .company_detail table {
  width: 100%;
  margin: 0;
  margin-bottom: 5rem;
  border-collapse: collapse;
}
#histry .company_detail table tr {
  border-top: 1px solid #c9c9c9;
}
@media screen and (max-width: 768px) {
  #histry .company_detail table tr {
    border-top: 1px solid #c9c9c9;
  }
}
#histry .company_detail table tr th {
  width: 30%;
  padding: 15px;
  text-align: left;
  padding-right: 40px;
  color: #333;
}
@media screen and (max-width: 768px) {
  #histry .company_detail table tr th {
    padding: 10px 0;
    padding-left: 20px;
    padding-right: 0;
    font-size: 12.5px;
    width: 35%;
    text-align: start;
  }
}
#histry .company_detail table tr td {
  width: 70%;
  padding: 15px;
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  #histry .company_detail table tr td {
    padding: 10px 0;
    padding-left: 20px;
    padding-top: 0;
    font-size: 12.5px;
    width: 80%;
  }
}

#works_main {
  position: relative;
  z-index: 10;
  padding-top: 0px;
  height: 35vw;
  top: -1.8rem;
  margin-bottom: 5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works_main {
    padding-top: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #works_main {
    height: 50vw;
  }
}
#works_main .breadcrumbs {
  background-color: #000;
  padding: 2vw;
}
#works_main .breadcrumbs p {
  font-size: 0.8vw;
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works_main .breadcrumbs p {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  #works_main .breadcrumbs p {
    font-size: 2vw;
  }
}
#works_main .breadcrumbs p a {
  text-decoration: underline;
  color: #fff;
}
#works_main .breadcrumbs p span {
  margin: 0 1vw;
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works_main .breadcrumbs p span {
    margin: 0 2vw;
  }
}
@media screen and (max-width: 768px) {
  #works_main .breadcrumbs p span {
    margin: 0 4vw;
  }
}
#works_main .works_main_image {
  width: 100%;
  height: 100%;
  margin: auto;
}
#works_main .works_main_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#works_main::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
#works_main .works_title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35vw;
  margin: auto;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  align-items: center;
  justify-content: center;
  display: flex;
}
@media screen and (max-width: 768px) {
  #works_main .works_title {
    height: 50vw;
  }
}
#works_main .works_title h2 {
  color: #fff;
  margin-top: 10vw;
}
#works_main .works_title p {
  color: #fff;
}

#works .works .works_contents {
  width: 80%;
  margin: 2rem auto;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents {
    width: 95%;
  }
}
#works .works .works_contents .top_contents_title h3 {
  position: relative;
  color: white;
  background: #ff9100;
  line-height: 1.4;
  padding: 0.5em 0.5em 0.5em 1.8em;
  margin: 10rem 0 2rem 0;
}
#works .works .works_contents .top_contents_title h3:before {
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  font-weight: 900;
  position: absolute;
  left: 0.5em; /*左端からのアイコンまでの距離*/
}
#works .works .works_contents ul {
  display: flex;
  justify-content: start;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}
#works .works .works_contents ul li {
  width: 23%;
  margin-bottom: 40px;
  margin: 1%;
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #works .works .works_contents ul li {
    width: 30%;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .works_contents ul li {
    width: 45%;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul li {
    width: 45%;
    margin: auto;
    margin-bottom: 40px;
  }
}
#works .works .works_contents ul li a {
  background-size: cover;
  background-position: center;
  height: 16vw;
  display: block;
  border: solid 5px #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works .works_contents ul li a {
    height: 220px;
  }
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul li a {
    height: 120px;
  }
}
#works .works .works_contents ul li .outline .title {
  padding: 0.75rem 0;
  margin-bottom: 0.5rem;
  background-color: #000;
  border-bottom: solid 10px #6cb93e;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul li .outline .title {
    font-size: 12.5px;
  }
}
#works .works .works_contents ul li .outline .descn p {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  #works .works .works_contents ul li .outline .descn p {
    font-size: 10px;
  }
}
#works .works .navigation {
  text-align: center;
  margin: 2vw 0;
}

#works_single .works_contents {
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #works_single .works_contents {
    margin-bottom: 12vw;
  }
}
#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: #6bb93d;
  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: #6bb93d;
  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: #6bb93d;
  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: #6bb93d;
}
@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 #6bb93d;
  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;
  }
}

#contact_main {
  position: relative;
  z-index: 10;
  padding-top: 0px;
  height: 35vw;
  top: -1.8rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact_main {
    padding-top: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #contact_main {
    height: 50vw;
  }
}
#contact_main .breadcrumbs {
  background-color: #000;
  padding: 2vw;
}
#contact_main .breadcrumbs p {
  font-size: 0.8vw;
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact_main .breadcrumbs p {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  #contact_main .breadcrumbs p {
    font-size: 2vw;
  }
}
#contact_main .breadcrumbs p a {
  text-decoration: underline;
  color: #fff;
}
#contact_main .breadcrumbs p span {
  margin: 0 1vw;
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact_main .breadcrumbs p span {
    margin: 0 2vw;
  }
}
@media screen and (max-width: 768px) {
  #contact_main .breadcrumbs p span {
    margin: 0 4vw;
  }
}
#contact_main .contact_main_image {
  width: 100%;
  height: 100%;
  margin: auto;
}
#contact_main .contact_main_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#contact_main::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
#contact_main .contact_title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35vw;
  margin: auto;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  align-items: center;
  justify-content: center;
  display: flex;
}
@media screen and (max-width: 768px) {
  #contact_main .contact_title {
    height: 50vw;
  }
}
#contact_main .contact_title h2 {
  color: #fff;
  margin-top: 10vw;
}
#contact_main .contact_title p {
  color: #fff;
}

#contact {
  width: 60%;
  margin: auto;
  margin-top: 5rem;
  margin-bottom: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact {
    width: 80%;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  #contact {
    width: 90%;
    margin-bottom: 40px;
  }
}

table {
  width: 100%;
  margin-bottom: 40px;
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  table {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  table tr {
    display: flex;
    flex-flow: column;
  }
}
table tr th {
  padding: 20px 0;
  width: 35%;
  text-align: end;
  padding-right: 60px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  table tr th {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  table tr th {
    width: 100%;
    border-bottom: none;
    text-align: start;
    padding: 10px 0;
    padding-top: 20px;
    padding-left: 0px;
  }
}
table tr th span {
  padding: 10px;
  background-color: #f00;
  color: #fff;
  margin-left: 20px;
}
table tr td {
  padding: 20px 0;
  width: 65%;
  padding-right: 40px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  table tr td {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  table tr td {
    width: 100%;
    padding: 10px 0;
    padding-bottom: 20px;
    padding-right: 0;
  }
}
table tr td input {
  width: 80%;
  height: 50px;
  padding-left: 5px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  table tr td input {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  table tr td input {
    width: 100%;
  }
}
table tr td textarea {
  width: 80%;
  height: 120px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  table tr td textarea {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  table tr td textarea {
    width: 100%;
  }
}
table tr:nth-child(4) th {
  padding-right: 140px;
}
table tr:nth-child(4) th span {
  background-color: #6bb93d;
}
table tr:nth-child(4) td input {
  width: 20% !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  table tr:nth-child(4) td input {
    width: 25% !important;
  }
}
@media screen and (max-width: 768px) {
  table tr:nth-child(4) td input {
    width: 29% !important;
  }
}

.agree {
  text-align: center;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  .agree {
    margin: 10px 0;
    margin-bottom: 40px;
  }
}
.agree p {
  margin-bottom: 60px;
  font-size: 90%;
}
.agree p a {
  text-decoration: underline;
}
.agree p:hover {
  text-decoration: none;
}

.submit {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .submit {
    margin-bottom: 40px;
  }
}
.submit input {
  padding: 20px 180px;
  border-radius: 50px;
  font-size: 18px;
  border: none;
  background-color: #333;
  color: #fff;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .submit input {
    padding: 10px 50px;
    font-size: 15px;
  }
}
.submit input:hover {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #333;
  color: #333;
}
.submit input[name=submitBack] {
  padding: 20px 90px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .submit input[name=submitBack] {
    padding: 10px 45px;
    margin-right: 10px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}
.submit input[name=confirm] {
  padding: 20px 90px;
}
@media screen and (max-width: 768px) {
  .submit input[name=confirm] {
    padding: 10px 45px;
    margin-bottom: 20px;
    font-size: 12.5px;
  }
}

#policy_main {
  position: relative;
  z-index: 10;
  padding-top: 0px;
  height: 35vw;
  top: -1.8rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #policy_main {
    padding-top: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #policy_main {
    height: 50vw;
  }
}
#policy_main .breadcrumbs {
  background-color: #000;
  padding: 2vw;
}
#policy_main .breadcrumbs p {
  font-size: 0.8vw;
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #policy_main .breadcrumbs p {
    font-size: 1.2vw;
  }
}
@media screen and (max-width: 768px) {
  #policy_main .breadcrumbs p {
    font-size: 2vw;
  }
}
#policy_main .breadcrumbs p a {
  text-decoration: underline;
  color: #fff;
}
#policy_main .breadcrumbs p span {
  margin: 0 1vw;
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #policy_main .breadcrumbs p span {
    margin: 0 2vw;
  }
}
@media screen and (max-width: 768px) {
  #policy_main .breadcrumbs p span {
    margin: 0 4vw;
  }
}
#policy_main .policy_main_image {
  width: 100%;
  height: 100%;
  margin: auto;
}
#policy_main .policy_main_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#policy_main::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
#policy_main .policy_title {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 35vw;
  margin: auto;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  align-items: center;
  justify-content: center;
  display: flex;
}
@media screen and (max-width: 768px) {
  #policy_main .policy_title {
    height: 50vw;
  }
}
#policy_main .policy_title h2 {
  color: #fff;
  margin-top:10vw;
}
#policy_main .policy_title p {
  color: #fff;
}

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

footer {
  background-size: cover;
  background-position: center;
  position: relative;
  height: 35vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer {
    height: 45vw;
  }
}
@media screen and (max-width: 768px) {
  footer {
    height: 80vh;
  }
}
footer:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.26);
  position: absolute;
  top: 0;
  left: 0;
}
footer .footer_btn_group {
  position: absolute;
  width: 90%;
  margin: auto;
  padding: 3vw 0;
  bottom: 0;
  left: 5%;
  height: 35vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_btn_group {
    height: 45vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_btn_group {
    height: 80vh;
  }
}
footer .footer_btn_group .footer_header {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  padding: 1rem 0;
}
footer .footer_btn_group .footer_header h2 {
  color: #fff;
  font-weight: 900;
  font-size: 2.5rem;
}
footer .footer_btn_group .footer_header h3 {
  font-size: 1.5rem;
  color: #fff;
}
footer .footer_btn_group p {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  footer .footer_btn_group p {
    font-size: 1rem;
  }
}
footer .footer_btn_group .footer_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  footer .footer_btn_group .footer_btn {
    flex-flow: column;
  }
}
footer .footer_btn_group .footer_btn .footer_tel_btn {
  width: 49%;
}
@media screen and (max-width: 768px) {
  footer .footer_btn_group .footer_btn .footer_tel_btn {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_btn_group .footer_btn .footer_tel_btn .tel_btn_pc {
    display: none;
  }
}
footer .footer_btn_group .footer_btn .footer_tel_btn .tel_btn_pc button {
  background-color: #fff;
  padding: 10px 0;
  border: none;
  width: 100%;
  font-weight: 600;
  font-size: 2vw;
  color: #000;
  border-radius: 7px;
}
footer .footer_btn_group .footer_btn .footer_tel_btn .tel_btn_pc button i {
  margin-right: 15px;
}
footer .footer_btn_group .footer_btn .footer_tel_btn .tel_btn_pc button i::before {
  color: #000;
}
footer .footer_btn_group .footer_btn .footer_tel_btn .tel_btn_sp {
  display: block;
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (min-width: 1441px) {
  footer .footer_btn_group .footer_btn .footer_tel_btn .tel_btn_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  footer .footer_btn_group .footer_btn .footer_tel_btn .tel_btn_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_btn_group .footer_btn .footer_tel_btn .tel_btn_sp {
    display: none;
  }
}
footer .footer_btn_group .footer_btn .footer_tel_btn .tel_btn_sp button {
  background-color: #fff;
  padding: 10px 0;
  border: none;
  width: 100%;
  font-weight: 600;
  font-size: 15px;
  border: solid 1px #000;
}
footer .footer_btn_group .footer_btn .footer_tel_btn .tel_btn_sp button i {
  margin-right: 15px;
}
footer .footer_btn_group .footer_btn .footer_tel_btn .tel_btn_sp button i::before {
  color: #6bb93d;
}
footer .footer_btn_group .footer_btn .footer_contact_btn {
  width: 49%;
}
@media screen and (max-width: 768px) {
  footer .footer_btn_group .footer_btn .footer_contact_btn {
    width: 100%;
  }
}
footer .footer_btn_group .footer_btn .footer_contact_btn button {
  background-color: #6bb93d;
  padding: 10px 0;
  border: none;
  width: 100%;
  font-weight: 600;
  font-size: 2vw;
  transition: all 0.4s;
  color: #fff;
  cursor: pointer;
  border-radius: 7px;
}
@media screen and (max-width: 768px) {
  footer .footer_btn_group .footer_btn .footer_contact_btn button {
    font-size: 15px;
  }
}
footer .footer_btn_group .footer_btn .footer_contact_btn button:hover {
  color: #333;
  background-color: #fff;
}
footer .footer_btn_group .footer_btn .footer_contact_btn button i {
  margin-right: 15px;
}
footer .footer_contents {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 4vw 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_contents {
    width: 85%;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_contents {
    width: 100%;
    flex-flow: column;
  }
}
footer .footer_contents::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
footer .footer_contents .footer_content {
  width: 50%;
  padding: 2vw;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_contents .footer_content {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_contents .footer_content {
    width: 100%;
    flex-flow: column;
    margin-bottom: 30px;
  }
}
footer .footer_contents .footer_content .footer_logo {
  width: 50%;
  margin: auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  footer .footer_contents .footer_content .footer_logo {
    width: 60%;
  }
}
footer .footer_contents .footer_content .footer_logo img {
  width: 100%;
}
footer .footer_contents .footer_content .footer_company {
  text-align: center;
}
footer .footer_contents .footer_content .footer_company .company_name {
  margin-bottom: 20px;
  font-weight: 800;
  color: #fff;
}
footer .footer_contents .footer_content .footer_company p {
  margin-bottom: 5px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer .footer_contents .footer_content .footer_company p {
    font-size: 3vw;
    margin-left: 2vw;
  }
}
footer .footer_contents .map {
  width: 50%;
  padding: 0 5%;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_contents .map {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_contents .map {
    width: 100%;
    flex-flow: column;
  }
}

.footer_logo_group {
  width: 70%;
  margin: 0 auto;
  background-color: #fff;
  padding: 2rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .footer_logo_group {
    width: 90%;
    display: block;
  }
}
.footer_logo_group .footer_logo {
  width: 25%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footer_logo_group .footer_logo {
    width: 75%;
    margin: 1rem auto;
  }
}
.footer_logo_group .footer_logo img {
  width: 100%;
  text-align: center;
  padding: 0;
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .footer_logo_group .footer_logo img {
    display: block;
    padding: 0 0;
  }
}
.footer_logo_group .footer_text {
  width: 70%;
  text-align: left;
  padding-left: 5%;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .footer_logo_group .footer_text {
    width: 100%;
    text-align: center;
  }
}
.footer_logo_group .footer_text p {
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 768px) {
  .footer_logo_group .footer_text p {
    font-size: 0.7rem;
  }
}

.map iframe {
  height: 300px;
}

.footer_menu {
  text-align: center;
  padding: 1.5rem 0;
  background-color: #f4f4f4;
}
.footer_menu ul {
  flex-wrap: wrap;
  display: flex;
  width: 90%;
  margin: auto;
  justify-content: center;
  align-items: center;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .footer_menu ul {
    width: 100%;
  }
}
.footer_menu ul li {
  width: auto;
  padding: 0 1.5rem;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_menu ul li {
    padding: 0 0.5rem;
  }
}
@media screen and (max-width: 768px) {
  .footer_menu ul li {
    padding: 0.5rem 0.7rem;
  }
}
.footer_menu ul li a {
  font-size: 1rem;
  color: #000;
}
@media screen and (max-width: 768px) {
  .footer_menu ul li a {
    font-size: 0.7rem;
  }
}

.copy_right {
  text-align: center;
  padding-top: 2vw;
  padding-bottom: 2vw;
}
.copy_right ul {
  flex-wrap: wrap;
  display: flex;
  width: 90%;
  margin: auto;
  justify-content: center;
  align-items: center;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .copy_right ul {
    display: block;
  }
}
.copy_right p {
  color: #333;
}/*# sourceMappingURL=style.css.map */