@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1vw;
  line-height: 2.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  * {
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  * {
    line-height: 8vw;
  }
}

html {
  font-size: 62.5%;
}

body {
  background-color: #EAEAEA;
  overflow-x: hidden;
}

a {
  color: #0E0D0D;
}

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

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

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

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

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

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

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

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

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

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

#lower {
  padding-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower {
    padding-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  #lower {
    padding-bottom: 8vw;
    padding-top: 50px;
  }
}
#lower .lower {
  width: 100%;
  height: 25vw;
  position: relative;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower {
    height: 30vw;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower {
    height: 50vw;
  }
}
#lower .lower::after {
  position: absolute;
  width: 100%;
  height: 100%;
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
}
#lower .lower .lower_headline {
  position: absolute;
  top: 50%;
  left: 10%;
  z-index: 100;
  transform: translate(0, -50%);
}
#lower .lower .lower_headline h2 {
  letter-spacing: 0.6vw;
  color: #fff;
}
#lower .lower .lower_headline h5 {
  letter-spacing: 0.4vw;
  color: #fff;
}

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

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

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

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

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

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

.rainbow-heading span {
  display: inline-block;
  color: #000;
  animation: rainbowText 0.5s ease forwards;
  animation-play-state: paused;
}
.rainbow-heading.is-active span {
  animation-play-state: running;
}
.rainbow-heading span:nth-child(1) {
  animation-delay: 0s;
  animation-name: rainbowText-1;
}
@keyframes rainbowText-1 {
  0% {
    color: #000;
  }
  50% {
    color: #e50020;
  }
  100% {
    color: #000;
  }
}
.rainbow-heading span:nth-child(2) {
  animation-delay: 0.1s;
  animation-name: rainbowText-2;
}
@keyframes rainbowText-2 {
  0% {
    color: #000;
  }
  50% {
    color: #ff8c00;
  }
  100% {
    color: #000;
  }
}
.rainbow-heading span:nth-child(3) {
  animation-delay: 0.2s;
  animation-name: rainbowText-3;
}
@keyframes rainbowText-3 {
  0% {
    color: #000;
  }
  50% {
    color: #ffd700;
  }
  100% {
    color: #000;
  }
}
.rainbow-heading span:nth-child(4) {
  animation-delay: 0.3s;
  animation-name: rainbowText-4;
}
@keyframes rainbowText-4 {
  0% {
    color: #000;
  }
  50% {
    color: #00a040;
  }
  100% {
    color: #000;
  }
}
.rainbow-heading span:nth-child(5) {
  animation-delay: 0.4s;
  animation-name: rainbowText-5;
}
@keyframes rainbowText-5 {
  0% {
    color: #000;
  }
  50% {
    color: #0094ff;
  }
  100% {
    color: #000;
  }
}
.rainbow-heading span:nth-child(6) {
  animation-delay: 0.5s;
  animation-name: rainbowText-6;
}
@keyframes rainbowText-6 {
  0% {
    color: #000;
  }
  50% {
    color: #6a00ff;
  }
  100% {
    color: #000;
  }
}
.rainbow-heading span:nth-child(7) {
  animation-delay: 0.6s;
  animation-name: rainbowText-7;
}
@keyframes rainbowText-7 {
  0% {
    color: #000;
  }
  50% {
    color: #e50020;
  }
  100% {
    color: #000;
  }
}
.rainbow-heading span:nth-child(8) {
  animation-delay: 0.7s;
  animation-name: rainbowText-8;
}
@keyframes rainbowText-8 {
  0% {
    color: #000;
  }
  50% {
    color: #ff8c00;
  }
  100% {
    color: #000;
  }
}
.rainbow-heading span:nth-child(9) {
  animation-delay: 0.8s;
  animation-name: rainbowText-9;
}
@keyframes rainbowText-9 {
  0% {
    color: #000;
  }
  50% {
    color: #ffd700;
  }
  100% {
    color: #000;
  }
}
.rainbow-heading span:nth-child(10) {
  animation-delay: 0.9s;
  animation-name: rainbowText-10;
}
@keyframes rainbowText-10 {
  0% {
    color: #000;
  }
  50% {
    color: #00a040;
  }
  100% {
    color: #000;
  }
}
.rainbow-heading span:nth-child(11) {
  animation-delay: 1s;
  animation-name: rainbowText-11;
}
@keyframes rainbowText-11 {
  0% {
    color: #000;
  }
  50% {
    color: #0094ff;
  }
  100% {
    color: #000;
  }
}
.rainbow-heading span:nth-child(12) {
  animation-delay: 1.1s;
  animation-name: rainbowText-12;
}
@keyframes rainbowText-12 {
  0% {
    color: #000;
  }
  50% {
    color: #6a00ff;
  }
  100% {
    color: #000;
  }
}
.rainbow-heading span:nth-child(13) {
  animation-delay: 1.2s;
  animation-name: rainbowText-13;
}
@keyframes rainbowText-13 {
  0% {
    color: #000;
  }
  50% {
    color: #e50020;
  }
  100% {
    color: #000;
  }
}
.rainbow-heading span:nth-child(14) {
  animation-delay: 1.3s;
  animation-name: rainbowText-14;
}
@keyframes rainbowText-14 {
  0% {
    color: #000;
  }
  50% {
    color: #ff8c00;
  }
  100% {
    color: #000;
  }
}
.rainbow-heading span:nth-child(15) {
  animation-delay: 1.4s;
  animation-name: rainbowText-15;
}
@keyframes rainbowText-15 {
  0% {
    color: #000;
  }
  50% {
    color: #ffd700;
  }
  100% {
    color: #000;
  }
}
.rainbow-heading span:nth-child(16) {
  animation-delay: 1.5s;
  animation-name: rainbowText-16;
}
@keyframes rainbowText-16 {
  0% {
    color: #000;
  }
  50% {
    color: #00a040;
  }
  100% {
    color: #000;
  }
}
.rainbow-heading span:nth-child(17) {
  animation-delay: 1.6s;
  animation-name: rainbowText-17;
}
@keyframes rainbowText-17 {
  0% {
    color: #000;
  }
  50% {
    color: #0094ff;
  }
  100% {
    color: #000;
  }
}
.rainbow-heading span:nth-child(18) {
  animation-delay: 1.7s;
  animation-name: rainbowText-18;
}
@keyframes rainbowText-18 {
  0% {
    color: #000;
  }
  50% {
    color: #6a00ff;
  }
  100% {
    color: #000;
  }
}
.rainbow-heading span:nth-child(19) {
  animation-delay: 1.8s;
  animation-name: rainbowText-19;
}
@keyframes rainbowText-19 {
  0% {
    color: #000;
  }
  50% {
    color: #e50020;
  }
  100% {
    color: #000;
  }
}
.rainbow-heading span:nth-child(20) {
  animation-delay: 1.9s;
  animation-name: rainbowText-20;
}
@keyframes rainbowText-20 {
  0% {
    color: #000;
  }
  50% {
    color: #ff8c00;
  }
  100% {
    color: #000;
  }
}

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

header #header_pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  header #header_pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header #header_pc {
    display: none;
  }
}
header #header_pc .header_logo {
  margin-left: 2vw;
}
header #header_pc .header_menu {
  width: 70%;
  height: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 2vw;
}
header #header_pc .header_menu ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  width: 100%;
  height: 100%;
}
header #header_pc .header_menu ul li {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  height: 100%;
  margin: 0 1vw;
}
header #header_pc .header_menu ul li:last-child {
  width: 15%;
  height: 100%;
  margin: 0;
}
header #header_pc .header_menu ul li:last-child a {
  height: 50%;
  padding: 1vw;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #343434;
  text-align: center;
  color: #fff;
  font-weight: 800;
}
header #header_pc .header_menu ul li:last-child a i {
  margin-right: 0.4vw;
  font-size: 1.2vw;
}
header #header_pc .header_menu ul li a {
  text-decoration: none;
  font-size: 0.8vw;
  font-family: yu-gothic-pr6n, sans-serif;
}
header #header_pc .header_menu ul .contact_btn:hover a {
  border: 1px solid #343434;
  background-color: #fff;
  color: #343434;
}
header #header_pc .header_menu ul .contact_btn a {
  transition: all 0.4s;
}

#header_sp {
  position: fixed;
  width: 100vw;
  height: 45px;
  z-index: 9999999999;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 1441px) {
  #header_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #header_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #header_sp {
    height: 80px;
  }
}
#header_sp .header_logo {
  height: 100%;
  margin-left: 4vw;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #header_sp .header_logo {
    height: 80px;
  }
}
@media screen and (max-width: 768px) {
  #header_sp .header_logo {
    height: 100%;
  }
}
#header_sp .header_logo a {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #header_sp .header_logo img {
    width: 50%;
    height: 100%;
    margin-left: 0px;
  }
}
#header_sp {
  /*　ハンバーガーボタン　*/
}
#header_sp .hamburger {
  display: block;
  position: fixed;
  z-index: 10005;
  right: 20px;
  top: 2vw;
  width: 45px;
  height: 45px;
  cursor: pointer;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #header_sp .hamburger {
    right: 0;
    top: 0;
  }
}
#header_sp .hamburger span {
  display: block;
  position: absolute;
  width: 25px;
  height: 2px;
  left: 6px;
  background: #343434;
  transition: 0.3s ease-in-out;
}
#header_sp .hamburger p {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 9px;
  color: #343434;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #header_sp .hamburger p {
    top: 20px;
  }
}
#header_sp .hamburger span:nth-child(1) {
  top: 7px;
  left: 50%;
  transform: translate(-50%, 0);
}
#header_sp .hamburger span:nth-child(2) {
  top: 14px;
  left: 50%;
  transform: translate(-50%, 0);
}
#header_sp .hamburger span:nth-child(3) {
  top: 21px;
  left: 50%;
  transform: translate(-50%, 0);
}
#header_sp {
  /* ナビ開いてる時のボタン */
}
#header_sp .hamburger.active span:nth-child(1) {
  top: 16px;
  left: 10px;
  background: #fff;
  transform: rotate(-45deg);
}
#header_sp .hamburger.active p {
  color: #fff;
}
#header_sp .hamburger.active span:nth-child(2),
#header_sp .hamburger.active span:nth-child(3) {
  top: 16px;
  left: 10px;
  background: #fff;
  transform: rotate(45deg);
}
#header_sp nav.globalMenuSp {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(52, 52, 52, 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;
}
#header_sp nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
#header_sp nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
  margin-bottom: 2.5vw;
}
#header_sp nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
#header_sp nav.globalMenuSp ul li:hover {
  transform: scale(1.1);
}
#header_sp nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
  font-size: 12.5px;
}
#header_sp nav.globalMenuSp ul li a i {
  margin-right: 2vw;
}
#header_sp {
  /* このクラスを、jQueryで付与・削除する */
}
#header_sp nav.globalMenuSp.active {
  opacity: 100;
  visibility: visible;
}

#mv {
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #mv {
    height: 80vh;
  }
}
#mv .mv {
  width: 100%;
  height: 100%;
}
#mv .mv img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#top_about {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 12vw 0;
  position: relative;
  margin: 12vw 0;
  overflow: hidden;
}
#top_about .top_about_img01 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20%;
}
@media screen and (max-width: 768px) {
  #top_about .top_about_img01 {
    width: 30%;
  }
}
#top_about .top_about_img01 img {
  width: 100%;
}
#top_about .top_about_img02 {
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
}
@media screen and (max-width: 768px) {
  #top_about .top_about_img02 {
    width: 50%;
  }
}
#top_about .top_about_img02 img {
  width: 100%;
}
#top_about .top_about_contents {
  width: 55%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about_contents {
    width: 80%;
    position: relative;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 8vw;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents {
    width: 95%;
    position: relative;
    z-index: 10;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 8vw;
  }
}
#top_about .top_about_contents .top_headline {
  margin-bottom: 4vw;
  transform: translateX(-8vw);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about_contents .top_headline {
    transform: translateX(0);
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents .top_headline {
    margin-bottom: 7vw;
    transform: translateX(0);
  }
}
#top_about .top_about_contents .top_about_text {
  width: 55%;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about_contents .top_about_text {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents .top_about_text {
    width: 100%;
    margin-bottom: 7vw;
  }
}
#top_about .top_about_contents .top_btn {
  width: 55%;
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents .top_btn {
    width: 100%;
  }
}
#top_about .top_about_contents .top_btn a {
  width: 100%;
  display: block;
  text-decoration: none;
}
#top_about .top_about_contents .top_btn a button {
  width: 100%;
  padding: 1vw 0;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-right: 3vw;
  transition: all 0.4s;
}
#top_about .top_about_contents .top_btn a button:hover {
  background-color: #000;
  color: #fff;
}
#top_about .top_about_contents .top_btn a button:hover:hover::before {
  background-color: #fff;
}
#top_about .top_about_contents .top_btn a button:hover:hover::after {
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about_contents .top_btn a button {
    padding-right: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents .top_btn a button {
    padding-right: 8vw;
  }
}
#top_about .top_about_contents .top_btn a button::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 60%;
  width: 10%;
  height: 1px;
  background-color: #000;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about_contents .top_btn a button::before {
    left: 65%;
  }
}
#top_about .top_about_contents .top_btn a button::after {
  position: absolute;
  content: "";
  top: 47%;
  left: 68%;
  width: 2%;
  height: 1px;
  transform: rotate(30deg);
  background-color: #000;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about_contents .top_btn a button::after {
    left: 73%;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about_contents .top_btn a button::after {
    top: 46.2%;
  }
}

#top_service {
  overflow: hidden;
}
#top_service .top_service .top_headline {
  width: 90%;
  margin: auto;
  margin-bottom: 8vw;
}
#top_service .top_service .top_service_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents {
    flex-flow: column;
  }
}
#top_service .top_service .top_service_contents {
  margin-bottom: 24vw;
}
#top_service .top_service .top_service_contents .top_service_image {
  position: relative;
  width: 35%;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents .top_service_image {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    margin: auto;
  }
}
#top_service .top_service .top_service_contents .top_service_image img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents .top_service_image img {
    width: 50%;
  }
}
#top_service .top_service .top_service_contents .top_service_image img:last-child {
  position: absolute;
  width: 65%;
  top: 70%;
  left: 50%;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents .top_service_image img:last-child {
    position: static;
    width: 50%;
  }
}
#top_service .top_service .top_service_contents .top_service_image02 {
  position: relative;
  width: 35%;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents .top_service_image02 {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 95%;
    margin: auto;
  }
}
#top_service .top_service .top_service_contents .top_service_image02 img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents .top_service_image02 img {
    width: 50%;
  }
}
#top_service .top_service .top_service_contents .top_service_image02 img:last-child {
  position: absolute;
  width: 65%;
  top: 70%;
  right: 50%;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents .top_service_image02 img:last-child {
    position: static;
    width: 50%;
  }
}
#top_service .top_service .top_service_contents .top_service_content {
  width: 35%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service .top_service_contents .top_service_content {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents .top_service_content {
    width: 95%;
    margin: auto;
    margin-bottom: 8vw;
  }
}
#top_service .top_service .top_service_contents .top_service_content .top_service_content_headline {
  margin-bottom: 4vw;
}
#top_service .top_service .top_service_contents .top_service_content .top_service_content_text {
  margin-bottom: 4vw;
}
#top_service .top_service .top_service_contents .top_service_content .top_btn {
  width: 55%;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents .top_service_content .top_btn {
    width: 80%;
    margin: auto;
  }
}
#top_service .top_service .top_service_contents .top_service_content .top_btn a {
  width: 100%;
  display: block;
  text-decoration: none;
}
#top_service .top_service .top_service_contents .top_service_content .top_btn a button {
  width: 100%;
  padding: 1vw 0;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-right: 3vw;
  transition: all 0.4s;
}
#top_service .top_service .top_service_contents .top_service_content .top_btn a button:hover {
  background-color: #000;
  color: #fff;
}
#top_service .top_service .top_service_contents .top_service_content .top_btn a button:hover:hover::before {
  background-color: #fff;
}
#top_service .top_service .top_service_contents .top_service_content .top_btn a button:hover:hover::after {
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service .top_service_contents .top_service_content .top_btn a button {
    padding-right: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents .top_service_content .top_btn a button {
    padding-right: 8vw;
  }
}
#top_service .top_service .top_service_contents .top_service_content .top_btn a button::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 60%;
  width: 10%;
  height: 1px;
  background-color: #000;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service .top_service_contents .top_service_content .top_btn a button::before {
    left: 65%;
  }
}
#top_service .top_service .top_service_contents .top_service_content .top_btn a button::after {
  position: absolute;
  content: "";
  top: 47%;
  left: 68%;
  width: 2%;
  height: 1px;
  transform: rotate(30deg);
  background-color: #000;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service .top_service_contents .top_service_content .top_btn a button::after {
    left: 73%;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents .top_service_content .top_btn a button::after {
    top: 46.2%;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service .sp_flex {
    flex-flow: column-reverse;
  }
}

.top_slide-images {
  margin-bottom: 8vw;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .top_slide-images {
    margin-bottom: 16vw;
  }
}
.top_slide-images .slider-image02 {
  transform: scaleX(-1);
}
.top_slide-images .slider-image02 .slick-list {
  height: 100%;
}
.top_slide-images .slider-image02 .slick-list .slick-track {
  height: 100%;
}
.top_slide-images .slider-image02 .slick-list .slick-track img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scaleX(-1);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top_slide-images .slider-image02 .slick-list .slick-track img {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .top_slide-images .slider-image02 .slick-list .slick-track img {
    width: 60%;
  }
}

#top_voice {
  overflow: hidden;
  margin-bottom: 8vw;
}
#top_voice .top_headline {
  width: 80%;
  margin: auto;
  margin-bottom: 8vw;
}
#top_voice .top_voice_contents {
  width: 80%;
  margin: auto;
}
#top_voice .top_voice_contents .top_voice_content {
  margin-bottom: 4vw;
}
#top_voice .top_voice_contents .top_voice_content ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
@media screen and (max-width: 768px) {
  #top_voice .top_voice_contents .top_voice_content ul {
    flex-flow: column;
  }
}
#top_voice .top_voice_contents .top_voice_content ul a {
  display: block;
  width: 30%;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  #top_voice .top_voice_contents .top_voice_content ul a {
    width: 100%;
    margin-bottom: 12vw;
  }
}
#top_voice .top_voice_contents .top_voice_content ul a li .outline .thumb {
  position: relative;
  width: 100%;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #top_voice .top_voice_contents .top_voice_content ul a li .outline .thumb {
    margin-bottom: 6vw;
  }
}
#top_voice .top_voice_contents .top_voice_content ul a li .outline .thumb::before {
  position: absolute;
  content: "";
  bottom: -1vw;
  right: -1vw;
  height: 4vw;
  width: 4vw;
  z-index: 10;
  background: #EAEAEA;
  clip-path: polygon(0% 100%, 100% 100%, 100% 0%);
}
@media screen and (max-width: 768px) {
  #top_voice .top_voice_contents .top_voice_content ul a li .outline .thumb::before {
    width: 10vw;
    height: 10vw;
  }
}
#top_voice .top_voice_contents .top_voice_content ul a li .outline .thumb::after {
  position: absolute;
  content: "";
  top: -1vw;
  left: -1vw;
  height: 4vw;
  width: 4vw;
  background: #EAEAEA;
  clip-path: polygon(0% 0%, 0% 100%, 100% 0%);
}
@media screen and (max-width: 768px) {
  #top_voice .top_voice_contents .top_voice_content ul a li .outline .thumb::after {
    width: 10vw;
    height: 10vw;
  }
}
#top_voice .top_voice_contents .top_voice_content ul a li .outline .thumb img {
  width: 100%;
  height: 20vw;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_voice .top_voice_contents .top_voice_content ul a li .outline .thumb img {
    height: 30vw;
  }
}
@media screen and (max-width: 768px) {
  #top_voice .top_voice_contents .top_voice_content ul a li .outline .thumb img {
    height: 65vw;
  }
}
#top_voice .top_voice_contents .top_voice_content ul a li .outline .thumb .title {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 0 0.5vw;
  background-color: #EAEAEA;
  width: 80%;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_voice .top_voice_contents .top_voice_content ul a li .outline .thumb .title {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_voice .top_voice_contents .top_voice_content ul a li .outline .thumb .title {
    font-size: 4vw;
    padding: 0 2vw;
  }
}
#top_voice .top_voice_contents .top_btn {
  width: 30%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #top_voice .top_voice_contents .top_btn {
    width: 80%;
    margin: auto;
  }
}
#top_voice .top_voice_contents .top_btn a {
  width: 100%;
  display: block;
  text-decoration: none;
}
#top_voice .top_voice_contents .top_btn a button {
  width: 100%;
  padding: 1vw 0;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-right: 3vw;
  transition: all 0.4s;
}
#top_voice .top_voice_contents .top_btn a button:hover {
  background-color: #000;
  color: #fff;
}
#top_voice .top_voice_contents .top_btn a button:hover:hover::before {
  background-color: #fff;
}
#top_voice .top_voice_contents .top_btn a button:hover:hover::after {
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_voice .top_voice_contents .top_btn a button {
    padding-right: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_voice .top_voice_contents .top_btn a button {
    padding-right: 8vw;
  }
}
#top_voice .top_voice_contents .top_btn a button::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 60%;
  width: 10%;
  height: 1px;
  background-color: #000;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_voice .top_voice_contents .top_btn a button::before {
    left: 65%;
  }
}
#top_voice .top_voice_contents .top_btn a button::after {
  position: absolute;
  content: "";
  top: 47%;
  left: 68%;
  width: 2%;
  height: 1px;
  transform: rotate(30deg);
  background-color: #000;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_voice .top_voice_contents .top_btn a button::after {
    left: 73%;
  }
}
@media screen and (max-width: 768px) {
  #top_voice .top_voice_contents .top_btn a button::after {
    top: 46.2%;
  }
}

#top_company {
  overflow: hidden;
}
#top_company .top_company {
  padding: 12vw 8vw;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
#top_company .top_company .top_headline {
  color: #fff;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company .top_company .top_headline {
    margin-bottom: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #top_company .top_company .top_headline {
    margin-bottom: 6vw;
  }
}
#top_company .top_company .top_company_text {
  margin-bottom: 4vw;
}
#top_company .top_company .top_company_text p {
  color: #fff;
}
#top_company .top_company .top_company_btn {
  width: 60%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company .top_company .top_company_btn {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #top_company .top_company .top_company_btn {
    width: 95%;
  }
}
#top_company .top_company .top_company_btn a {
  display: block;
  text-align: end;
}

#top_partner {
  width: 90%;
  margin: auto;
  padding: 8vw 0;
  overflow: hidden;
}
#top_partner .top_partner .top_partner_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #top_partner .top_partner .top_partner_contents {
    flex-flow: column;
    margin-bottom: 8vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_partner .top_partner .top_partner_contents .top_partner_content {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #top_partner .top_partner .top_partner_contents .top_partner_content {
    margin-bottom: 4vw;
  }
}
#top_partner .top_partner .top_partner_contents .top_headline {
  margin-bottom: 4vw;
}
#top_partner .top_partner .top_partner_contents .top_btn {
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #top_partner .top_partner .top_partner_contents .top_btn {
    width: 80%;
    margin: auto;
  }
}
#top_partner .top_partner .top_partner_contents .top_btn a {
  width: 100%;
  display: block;
  text-decoration: none;
}
#top_partner .top_partner .top_partner_contents .top_btn a button {
  width: 100%;
  padding: 1vw 0;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-right: 3vw;
  transition: all 0.4s;
}
#top_partner .top_partner .top_partner_contents .top_btn a button:hover {
  background-color: #000;
  color: #fff;
}
#top_partner .top_partner .top_partner_contents .top_btn a button:hover:hover::before {
  background-color: #fff;
}
#top_partner .top_partner .top_partner_contents .top_btn a button:hover:hover::after {
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_partner .top_partner .top_partner_contents .top_btn a button {
    padding-right: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_partner .top_partner .top_partner_contents .top_btn a button {
    padding-right: 8vw;
  }
}
#top_partner .top_partner .top_partner_contents .top_btn a button::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 60%;
  width: 10%;
  height: 1px;
  background-color: #000;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_partner .top_partner .top_partner_contents .top_btn a button::before {
    left: 65%;
  }
}
#top_partner .top_partner .top_partner_contents .top_btn a button::after {
  position: absolute;
  content: "";
  top: 47%;
  left: 68%;
  width: 2%;
  height: 1px;
  transform: rotate(30deg);
  background-color: #000;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_partner .top_partner .top_partner_contents .top_btn a button::after {
    left: 73%;
  }
}
@media screen and (max-width: 768px) {
  #top_partner .top_partner .top_partner_contents .top_btn a button::after {
    top: 46.2%;
  }
}
#top_partner .top_partner .top_partner_member ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_partner .top_partner .top_partner_member ul {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  #top_partner .top_partner .top_partner_member ul {
    flex-wrap: wrap;
  }
}
#top_partner .top_partner .top_partner_member ul a {
  text-decoration: none;
  width: 20%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_partner .top_partner .top_partner_member ul a {
    width: 40%;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_partner .top_partner .top_partner_member ul a {
    width: 100%;
    margin-bottom: 8vw;
  }
}
#top_partner .top_partner .top_partner_member ul a:first-child .thumb::after {
  background-color: red;
}
#top_partner .top_partner .top_partner_member ul a:nth-child(2) .thumb::after {
  background-color: blue;
}
#top_partner .top_partner .top_partner_member ul a:nth-child(3) .thumb::after {
  background-color: orange;
}
#top_partner .top_partner .top_partner_member ul a:last-child .thumb::after {
  background-color: green;
}
#top_partner .top_partner .top_partner_member ul a li .outline {
  padding-right: 4%;
}
#top_partner .top_partner .top_partner_member ul a li .outline .thumb {
  width: 100%;
  height: 25vw;
  margin-bottom: 1vw;
  position: relative;
}
#top_partner .top_partner .top_partner_member ul a li .outline .thumb::after {
  position: absolute;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.4s;
}
#top_partner .top_partner .top_partner_member ul a li .outline .thumb:hover::after {
  top: 2%;
  left: 2%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_partner .top_partner .top_partner_member ul a li .outline .thumb {
    height: 40vw;
  }
}
@media screen and (max-width: 768px) {
  #top_partner .top_partner .top_partner_member ul a li .outline .thumb {
    height: 100vw;
  }
}
#top_partner .top_partner .top_partner_member ul a li .outline .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #top_partner .top_partner .top_partner_member ul a li .outline .partner_detail p {
    font-size: 3vw;
  }
}
#top_partner .top_partner .top_partner_member ul a li .outline .partner_detail .name {
  font-size: 1.1vw;
  font-weight: 600;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_partner .top_partner .top_partner_member ul a li .outline .partner_detail .name {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #top_partner .top_partner .top_partner_member ul a li .outline .partner_detail .name {
    font-size: 4vw;
  }
}
#top_partner .top_partner .top_partner_member ul a li .outline .partner_detail .name span {
  margin-left: 2vw;
  font-weight: 400;
  font-size: 0.6vw;
  color: #666;
  font-style: italic;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_partner .top_partner .top_partner_member ul a li .outline .partner_detail .name span {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_partner .top_partner .top_partner_member ul a li .outline .partner_detail .name span {
    font-size: 3vw;
  }
}

#top_blog {
  overflow: hidden;
}
#top_blog .top_blog {
  background-color: #D8D8D8;
  padding: 12vw 0;
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog {
    padding: 24vw 0;
  }
}
#top_blog .top_blog .top_blog_top {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_top {
    flex-flow: column;
    margin-bottom: 16vw;
  }
  #top_blog .top_blog .top_blog_top .top_headline {
    margin-bottom: 8vw;
  }
}
#top_blog .top_blog .top_blog_top .top_btn {
  width: 30%;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_top .top_btn {
    width: 80%;
    margin: auto;
  }
}
#top_blog .top_blog .top_blog_top .top_btn a {
  width: 100%;
  display: block;
  text-decoration: none;
}
#top_blog .top_blog .top_blog_top .top_btn a button {
  width: 100%;
  padding: 1vw 0;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-right: 3vw;
  transition: all 0.4s;
}
#top_blog .top_blog .top_blog_top .top_btn a button:hover {
  background-color: #000;
  color: #fff;
}
#top_blog .top_blog .top_blog_top .top_btn a button:hover:hover::before {
  background-color: #fff;
}
#top_blog .top_blog .top_blog_top .top_btn a button:hover:hover::after {
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_blog .top_blog .top_blog_top .top_btn a button {
    padding-right: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_top .top_btn a button {
    padding-right: 8vw;
  }
}
#top_blog .top_blog .top_blog_top .top_btn a button::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 60%;
  width: 10%;
  height: 1px;
  background-color: #000;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_blog .top_blog .top_blog_top .top_btn a button::before {
    left: 65%;
  }
}
#top_blog .top_blog .top_blog_top .top_btn a button::after {
  position: absolute;
  content: "";
  top: 47%;
  left: 68%;
  width: 2%;
  height: 1px;
  transform: rotate(30deg);
  background-color: #000;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_blog .top_blog .top_blog_top .top_btn a button::after {
    left: 73%;
  }
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_top .top_btn a button::after {
    top: 46.2%;
  }
}
#top_blog .top_blog .top_blog_contents {
  width: 80%;
  margin: auto;
}
#top_blog .top_blog .top_blog_contents ul {
  list-style: none;
  border-top: 2px solid #000;
}
#top_blog .top_blog .top_blog_contents ul a {
  display: block;
  text-decoration: none;
  padding: 4vw 0;
  border-bottom: 2px solid #000;
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_contents ul a {
    padding: 8vw 0;
  }
}
#top_blog .top_blog .top_blog_contents ul a li .outline .date {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_blog .top_blog .top_blog_contents ul a li .outline .date {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_contents ul a li .outline .date {
    font-size: 4vw;
  }
}
#top_blog .top_blog .top_blog_contents ul a li .outline .outline_contents {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4vw;
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_contents ul a li .outline .outline_contents {
    align-items: flex-start;
    flex-flow: column;
  }
}
#top_blog .top_blog .top_blog_contents ul a li .outline .outline_contents .thumb {
  width: 30%;
  height: 15vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_blog .top_blog .top_blog_contents ul a li .outline .outline_contents .thumb {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_contents ul a li .outline .outline_contents .thumb {
    width: 100%;
    height: 55vw;
  }
}
#top_blog .top_blog .top_blog_contents ul a li .outline .outline_contents .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#top_blog .top_blog .top_blog_contents ul a li .outline .outline_contents .outline_text .title {
  font-size: 1.5vw;
  font-weight: 600;
  margin-bottom: 1.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_blog .top_blog .top_blog_contents ul a li .outline .outline_contents .outline_text .title {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_contents ul a li .outline .outline_contents .outline_text .title {
    font-size: 5vw;
  }
}
#top_blog .top_blog .top_blog_contents ul a li .outline .outline_contents .outline_text .descn {
  font-size: 1vw;
  width: 60%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_blog .top_blog .top_blog_contents ul a li .outline .outline_contents .outline_text .descn {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_contents ul a li .outline .outline_contents .outline_text .descn {
    width: 100%;
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_blog .top_blog .top_blog_contents ul a li .outline .outline_contents .blog_btn {
    width: 25%;
  }
  #top_blog .top_blog .top_blog_contents ul a li .outline .outline_contents .blog_btn img {
    width: 100%;
  }
}

#top_recruit {
  overflow: hidden;
}
#top_recruit .top_recruit {
  padding: 16vw 0;
  padding-bottom: 30vw;
}
#top_recruit .top_recruit .top_recruit_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit .top_recruit_contents {
    flex-flow: column;
  }
}
#top_recruit .top_recruit .top_recruit_contents .top_recruit_left {
  width: 30%;
  margin-left: 5%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit .top_recruit .top_recruit_contents .top_recruit_left {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit .top_recruit_contents .top_recruit_left {
    width: 100%;
    margin-bottom: 8vw;
  }
}
#top_recruit .top_recruit .top_recruit_contents .top_recruit_left .top_headline {
  margin-bottom: 4vw;
}
#top_recruit .top_recruit .top_recruit_contents .top_recruit_left .top_recruit_text {
  margin-bottom: 4vw;
}
#top_recruit .top_recruit .top_recruit_contents .top_recruit_left .top_btn {
  width: 100%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit .top_recruit_contents .top_recruit_left .top_btn {
    width: 80%;
    margin: auto;
  }
}
#top_recruit .top_recruit .top_recruit_contents .top_recruit_left .top_btn a {
  width: 100%;
  display: block;
  text-decoration: none;
}
#top_recruit .top_recruit .top_recruit_contents .top_recruit_left .top_btn a button {
  width: 100%;
  padding: 1vw 0;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding-right: 3vw;
  transition: all 0.4s;
}
#top_recruit .top_recruit .top_recruit_contents .top_recruit_left .top_btn a button:hover {
  background-color: #000;
  color: #fff;
}
#top_recruit .top_recruit .top_recruit_contents .top_recruit_left .top_btn a button:hover:hover::before {
  background-color: #fff;
}
#top_recruit .top_recruit .top_recruit_contents .top_recruit_left .top_btn a button:hover:hover::after {
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit .top_recruit .top_recruit_contents .top_recruit_left .top_btn a button {
    padding-right: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit .top_recruit_contents .top_recruit_left .top_btn a button {
    padding-right: 8vw;
  }
}
#top_recruit .top_recruit .top_recruit_contents .top_recruit_left .top_btn a button::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 60%;
  width: 10%;
  height: 1px;
  background-color: #000;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit .top_recruit .top_recruit_contents .top_recruit_left .top_btn a button::before {
    left: 65%;
  }
}
#top_recruit .top_recruit .top_recruit_contents .top_recruit_left .top_btn a button::after {
  position: absolute;
  content: "";
  top: 47%;
  left: 68%;
  width: 2%;
  height: 1px;
  transform: rotate(30deg);
  background-color: #000;
  transition: all 0.4s;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit .top_recruit .top_recruit_contents .top_recruit_left .top_btn a button::after {
    left: 73%;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit .top_recruit_contents .top_recruit_left .top_btn a button::after {
    top: 46.2%;
  }
}
#top_recruit .top_recruit .top_recruit_contents .top_recruit_right {
  position: relative;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit .top_recruit_contents .top_recruit_right {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4vw;
    width: 95%;
    margin: auto;
  }
}
#top_recruit .top_recruit .top_recruit_contents .top_recruit_right img:first-child {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit .top_recruit_contents .top_recruit_right img:first-child {
    width: 45%;
  }
}
#top_recruit .top_recruit .top_recruit_contents .top_recruit_right img:last-child {
  position: absolute;
  bottom: -30%;
  left: -20%;
  width: 60%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit .top_recruit .top_recruit_contents .top_recruit_right img:last-child {
    width: 50%;
    left: 10%;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit .top_recruit_contents .top_recruit_right img:last-child {
    position: static;
    width: 45%;
    left: 10%;
  }
}

#blog {
  overflow: hidden;
}
#blog .blog {
  padding: 12vw 0;
}
@media screen and (max-width: 768px) {
  #blog .blog {
    padding: 24vw 0;
  }
}
#blog .blog .blog_top {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #blog .blog .blog_top {
    flex-flow: column;
    margin-bottom: 16vw;
  }
  #blog .blog .blog_top .top_headline {
    margin-bottom: 8vw;
  }
}
#blog .blog .blog_contents {
  width: 80%;
  margin: auto;
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #blog .blog .blog_contents {
    margin-bottom: 16vw;
  }
}
#blog .blog .blog_contents ul {
  list-style: none;
  border-top: 2px solid #000;
}
#blog .blog .blog_contents ul a {
  display: block;
  text-decoration: none;
  padding: 4vw 0;
  border-bottom: 2px solid #000;
}
@media screen and (max-width: 768px) {
  #blog .blog .blog_contents ul a {
    padding: 8vw 0;
  }
}
#blog .blog .blog_contents ul a li .outline .date {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog .blog .blog_contents ul a li .outline .date {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #blog .blog .blog_contents ul a li .outline .date {
    font-size: 4vw;
  }
}
#blog .blog .blog_contents ul a li .outline .outline_contents {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4vw;
}
@media screen and (max-width: 768px) {
  #blog .blog .blog_contents ul a li .outline .outline_contents {
    align-items: flex-start;
    flex-flow: column;
  }
}
#blog .blog .blog_contents ul a li .outline .outline_contents .thumb {
  width: 30%;
  height: 15vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog .blog .blog_contents ul a li .outline .outline_contents .thumb {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  #blog .blog .blog_contents ul a li .outline .outline_contents .thumb {
    width: 100%;
    height: 55vw;
  }
}
#blog .blog .blog_contents ul a li .outline .outline_contents .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#blog .blog .blog_contents ul a li .outline .outline_contents .outline_text .title {
  font-size: 1.5vw;
  font-weight: 600;
  margin-bottom: 1.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog .blog .blog_contents ul a li .outline .outline_contents .outline_text .title {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  #blog .blog .blog_contents ul a li .outline .outline_contents .outline_text .title {
    font-size: 5vw;
  }
}
#blog .blog .blog_contents ul a li .outline .outline_contents .outline_text .descn {
  font-size: 1vw;
  width: 60%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog .blog .blog_contents ul a li .outline .outline_contents .outline_text .descn {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #blog .blog .blog_contents ul a li .outline .outline_contents .outline_text .descn {
    width: 100%;
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #blog .blog .blog_contents ul a li .outline .outline_contents .blog_btn {
    width: 25%;
  }
  #blog .blog .blog_contents ul a li .outline .outline_contents .blog_btn img {
    width: 100%;
  }
}
#blog .blog .navigation {
  width: 50%;
  margin: auto;
  text-align: center;
}

#partner .partner_top {
  width: 80%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #partner .partner_top {
    margin-bottom: 8vw;
  }
}
#partner .partner_contents {
  width: 80%;
  margin: auto;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #partner .partner_contents {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #partner .partner_contents {
    width: 95%;
    margin-bottom: 4vw;
  }
}
#partner .partner_contents ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 2vw;
  flex-wrap: wrap;
}
#partner .partner_contents ul a {
  text-decoration: none;
  display: block;
  width: 20%;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #partner .partner_contents ul a {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  #partner .partner_contents ul a {
    width: 60%;
  }
}
#partner .partner_contents ul a li .outline .thumb {
  width: 100%;
  height: 30vw;
}
@media screen and (max-width: 768px) {
  #partner .partner_contents ul a li .outline .thumb {
    height: 80vw;
  }
}
#partner .partner_contents ul a li .outline .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#partner .partner_contents ul a li .outline .partner_detail {
  width: 100%;
}
#partner .partner_contents ul a li .outline .partner_detail .name {
  font-size: 1.1vw;
  font-weight: 600;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #partner .partner_contents ul a li .outline .partner_detail .name {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #partner .partner_contents ul a li .outline .partner_detail .name {
    font-size: 4vw;
  }
}
#partner .partner_contents ul a li .outline .partner_detail .name span {
  margin-left: 2vw;
  font-weight: 400;
  font-size: 0.6vw;
  color: #666;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #partner .partner_contents ul a li .outline .partner_detail .name span {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #partner .partner_contents ul a li .outline .partner_detail .name span {
    font-size: 3vw;
  }
}

.navigation {
  text-align: center;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .navigation {
    margin-bottom: 8vw;
  }
}

#partner_single .partner_top {
  width: 80%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #partner_single .partner_top {
    width: 95%;
    margin-bottom: 8vw;
  }
}
#partner_single ul {
  list-style: none;
}
#partner_single li {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #partner_single li {
    width: 95%;
  }
}
#partner_single li .thumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  margin-bottom: 4vw;
}
#partner_single li .thumb > img {
  width: 30vw;
  height: 30vw;
  -o-object-fit: cover;
     object-fit: cover;
}
#partner_single li .partner_detail {
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #partner_single li .partner_detail {
    margin-bottom: 16vw;
  }
}
#partner_single li .partner_detail .name {
  font-size: 3vw;
  font-weight: 600;
  margin-bottom: 2vw;
  font-style: italic;
  padding-bottom: 1vw;
  border-bottom: 1px solid #333;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #partner_single li .partner_detail .name {
    font-size: 3.5vw;
    margin-bottom: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #partner_single li .partner_detail .name {
    font-size: 6vw;
    margin-bottom: 4vw;
  }
}
#partner_single li .partner_detail .name span {
  margin-left: 4vw;
  font-weight: 400;
  font-size: 1.5vw;
  color: #666;
  font-style: normal;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #partner_single li .partner_detail .name span {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #partner_single li .partner_detail .name span {
    font-size: 3vw;
  }
}
#partner_single li .partner_detail .partner_text {
  font-weight: 500;
  margin-bottom: 1.5vw;
}

#blog_single {
  overflow: hidden;
}
#blog_single .blog {
  padding: 12vw 0;
}
@media screen and (max-width: 768px) {
  #blog_single .blog {
    padding: 24vw 0;
  }
}
#blog_single .blog .blog_top {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #blog_single .blog .blog_top {
    flex-flow: column;
    margin-bottom: 16vw;
  }
  #blog_single .blog .blog_top .top_headline {
    margin-bottom: 8vw;
  }
}
#blog_single .blog .blog_contents {
  width: 80%;
  margin: auto;
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #blog_single .blog .blog_contents {
    margin-bottom: 16vw;
  }
}
#blog_single .blog .blog_contents ul {
  list-style: none;
}
#blog_single .blog .blog_contents ul li .outline .date {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog_single .blog .blog_contents ul li .outline .date {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #blog_single .blog .blog_contents ul li .outline .date {
    font-size: 4vw;
  }
}
#blog_single .blog .blog_contents ul li .outline .outline_contents .thumb {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #blog_single .blog .blog_contents ul li .outline .outline_contents .thumb {
    width: 100%;
    margin-bottom: 4vw;
  }
}
#blog_single .blog .blog_contents ul li .outline .outline_contents .thumb img {
  width: 100%;
  height: 100%;
}
#blog_single .blog .blog_contents ul li .outline .outline_contents .outline_text .title {
  font-size: 1.5vw;
  font-weight: 600;
  margin-bottom: 1.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog_single .blog .blog_contents ul li .outline .outline_contents .outline_text .title {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  #blog_single .blog .blog_contents ul li .outline .outline_contents .outline_text .title {
    font-size: 5vw;
  }
}
#blog_single .blog .blog_contents ul li .outline .outline_contents .outline_text .descn {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #blog_single .blog .blog_contents ul li .outline .outline_contents .outline_text .descn {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #blog_single .blog .blog_contents ul li .outline .outline_contents .outline_text .descn {
    font-size: 4vw;
  }
}

#voice {
  overflow: hidden;
}
#voice .voice {
  padding: 12vw 0;
}
@media screen and (max-width: 768px) {
  #voice .voice {
    padding: 24vw 0;
  }
}
#voice .voice .voice_top {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #voice .voice .voice_top {
    flex-flow: column;
    margin-bottom: 16vw;
  }
  #voice .voice .voice_top .top_headline {
    margin-bottom: 8vw;
  }
}
#voice .voice .voice_contents {
  width: 80%;
  margin: auto;
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #voice .voice .voice_contents {
    margin-bottom: 16vw;
  }
}
#voice .voice .voice_contents ul {
  list-style: none;
  border-top: 2px solid #000;
}
#voice .voice .voice_contents ul a {
  display: block;
  text-decoration: none;
  padding: 4vw 0;
  border-bottom: 2px solid #000;
}
@media screen and (max-width: 768px) {
  #voice .voice .voice_contents ul a {
    padding: 8vw 0;
  }
}
#voice .voice .voice_contents ul a li .outline .date {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #voice .voice .voice_contents ul a li .outline .date {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #voice .voice .voice_contents ul a li .outline .date {
    font-size: 4vw;
  }
}
#voice .voice .voice_contents ul a li .outline .outline_contents {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4vw;
}
@media screen and (max-width: 768px) {
  #voice .voice .voice_contents ul a li .outline .outline_contents {
    align-items: flex-start;
    flex-flow: column;
  }
}
#voice .voice .voice_contents ul a li .outline .outline_contents .thumb {
  width: 30%;
  height: 15vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #voice .voice .voice_contents ul a li .outline .outline_contents .thumb {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  #voice .voice .voice_contents ul a li .outline .outline_contents .thumb {
    width: 100%;
    height: 55vw;
  }
}
#voice .voice .voice_contents ul a li .outline .outline_contents .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#voice .voice .voice_contents ul a li .outline .outline_contents .outline_text .title {
  font-size: 1.5vw;
  font-weight: 600;
  margin-bottom: 1.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #voice .voice .voice_contents ul a li .outline .outline_contents .outline_text .title {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  #voice .voice .voice_contents ul a li .outline .outline_contents .outline_text .title {
    font-size: 5vw;
  }
}
#voice .voice .voice_contents ul a li .outline .outline_contents .outline_text .descn {
  font-size: 1vw;
  width: 60%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #voice .voice .voice_contents ul a li .outline .outline_contents .outline_text .descn {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #voice .voice .voice_contents ul a li .outline .outline_contents .outline_text .descn {
    width: 100%;
    font-size: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #voice .voice .voice_contents ul a li .outline .outline_contents .voice_btn {
    width: 25%;
  }
  #voice .voice .voice_contents ul a li .outline .outline_contents .voice_btn img {
    width: 100%;
  }
}
#voice .voice .navigation {
  width: 50%;
  margin: auto;
  text-align: center;
}

#voice_single {
  overflow: hidden;
}
#voice_single .voice {
  padding: 12vw 0;
}
@media screen and (max-width: 768px) {
  #voice_single .voice {
    padding: 24vw 0;
  }
}
#voice_single .voice .voice_top {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #voice_single .voice .voice_top {
    flex-flow: column;
    margin-bottom: 16vw;
  }
  #voice_single .voice .voice_top .top_headline {
    margin-bottom: 8vw;
  }
}
#voice_single .voice .voice_contents {
  width: 80%;
  margin: auto;
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #voice_single .voice .voice_contents {
    margin-bottom: 16vw;
  }
}
#voice_single .voice .voice_contents ul {
  list-style: none;
}
#voice_single .voice .voice_contents ul li .outline .date {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #voice_single .voice .voice_contents ul li .outline .date {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  #voice_single .voice .voice_contents ul li .outline .date {
    font-size: 4vw;
  }
}
#voice_single .voice .voice_contents ul li .outline .outline_contents .thumb {
  width: 30%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #voice_single .voice .voice_contents ul li .outline .outline_contents .thumb {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #voice_single .voice .voice_contents ul li .outline .outline_contents .thumb {
    width: 100%;
    margin-bottom: 4vw;
  }
}
#voice_single .voice .voice_contents ul li .outline .outline_contents .thumb img {
  width: 100%;
  height: 100%;
}
#voice_single .voice .voice_contents ul li .outline .outline_contents .outline_text .title {
  font-size: 1.5vw;
  font-weight: 600;
  margin-bottom: 1.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #voice_single .voice .voice_contents ul li .outline .outline_contents .outline_text .title {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  #voice_single .voice .voice_contents ul li .outline .outline_contents .outline_text .title {
    font-size: 5vw;
  }
}
#voice_single .voice .voice_contents ul li .outline .outline_contents .outline_text .descn {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #voice_single .voice .voice_contents ul li .outline .outline_contents .outline_text .descn {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #voice_single .voice .voice_contents ul li .outline .outline_contents .outline_text .descn {
    font-size: 4vw;
  }
}

#company .company {
  padding: 8vw 0;
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #company .company {
    width: 95%;
  }
}
#company .company .top_headline {
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #company .company .top_headline {
    margin-bottom: 8vw;
  }
}
#company .company .company_greeting .greeting_headline {
  text-align: center;
  margin-bottom: 4vw;
}
#company .company .company_greeting .greeting_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  width: 100%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company .company_greeting .greeting_flex {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_greeting .greeting_flex {
    width: 100%;
    flex-flow: column;
  }
}
#company .company .company_greeting .greeting_flex .greeting_image {
  width: 30%;
}
@media screen and (max-width: 768px) {
  #company .company .company_greeting .greeting_flex .greeting_image {
    width: 45%;
  }
}
#company .company .company_greeting .greeting_flex .greeting_image img {
  width: 100%;
}
#company .company .company_greeting .greeting_flex .greeting_text {
  width: 65%;
}
@media screen and (max-width: 768px) {
  #company .company .company_greeting .greeting_flex .greeting_text {
    width: 100%;
  }
}
#company .company .company_greeting .greeting_flex .greeting_text h3 {
  margin-bottom: 1.5vw;
}
@media screen and (max-width: 768px) {
  #company .company .company_greeting .greeting_flex .greeting_text h3 {
    margin-bottom: 3vw;
  }
}
#company .company .company_greeting .greeting_flex .greeting_text p {
  width: 100%;
}
#company .company .company_contents {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company .company_contents {
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents {
    margin-bottom: 12vw;
  }
}
#company .company .company_contents table {
  width: 80%;
  margin: auto;
  border-collapse: collapse;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company .company_contents table {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table {
    width: 100%;
    margin-bottom: 8vw;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table tr {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
  }
}
#company .company .company_contents table tr td {
  font-size: 1vw;
  padding: 1vw 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company .company_contents table tr td {
    font-size: 2vw;
    padding: 1.5vw 3vw;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table tr td {
    width: 100%;
    font-size: 3vw;
    padding: 3vw 6vw;
  }
}
#company .company .company_contents table tr td:first-child {
  border-bottom: 1px solid #333;
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table tr td:first-child {
    border: none;
    background-color: #999;
  }
}
#company .company .company_contents table tr td:last-child {
  border-bottom: 1px solid #999;
}
@media screen and (max-width: 768px) {
  #company .company .company_contents table tr td:last-child {
    border: none;
  }
}
#company .company .company_contents .company_items {
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company .company .company_contents .company_items {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #company .company .company_contents .company_items {
    width: 95%;
  }
}
#company .company .company_contents .company_items h3 {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1vw;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #company .company .company_contents .company_items h3 {
    margin-bottom: 4vw;
  }
}
#company .company .company_contents .company_items .company_item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #company .company .company_contents .company_items .company_item {
    flex-flow: column;
  }
}
#company .company .company_contents .company_items .company_item h4 {
  width: 20%;
}
#company .company .company_contents .company_items .company_item .vision_contents .vision_content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  #company .company .company_contents .company_items .company_item .vision_contents .vision_content {
    flex-flow: column;
  }
}
#company .company .company_images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  height: 25vw;
}
@media screen and (max-width: 768px) {
  #company .company .company_images {
    flex-flow: column;
    height: auto;
  }
}
#company .company .company_images img {
  width: 45%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #company .company .company_images img {
    width: 80%;
  }
}

#recruit .recruit {
  padding: 8vw 0;
  width: 80%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit {
    width: 95%;
  }
}
#recruit .recruit .top_headline {
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .top_headline {
    margin-bottom: 8vw;
  }
}
#recruit .recruit .recruit_greeting .greeting_headline {
  text-align: center;
  margin-bottom: 4vw;
}
#recruit .recruit .recruit_greeting .greeting_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  width: 80%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_greeting .greeting_flex {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_greeting .greeting_flex {
    width: 100%;
    flex-flow: column;
  }
}
#recruit .recruit .recruit_greeting .greeting_flex .greeting_image {
  width: 30%;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_greeting .greeting_flex .greeting_image {
    width: 45%;
  }
}
#recruit .recruit .recruit_greeting .greeting_flex .greeting_image img {
  width: 100%;
}
#recruit .recruit .recruit_greeting .greeting_flex .greeting_text {
  width: 65%;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_greeting .greeting_flex .greeting_text {
    width: 100%;
  }
}
#recruit .recruit .recruit_greeting .greeting_flex .greeting_text p {
  width: 100%;
}
#recruit .recruit .recruit_contents {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_contents {
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents {
    margin-bottom: 12vw;
  }
}
#recruit .recruit .recruit_contents .recruit_content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_content {
    flex-flow: column;
    margin-bottom: 16vw;
  }
}
#recruit .recruit .recruit_contents .recruit_content .recruit_content_image {
  width: 45%;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_content .recruit_content_image {
    width: 100%;
  }
}
#recruit .recruit .recruit_contents .recruit_content .recruit_content_image img {
  width: 100%;
}
#recruit .recruit .recruit_contents .recruit_content .recruit_content_text {
  width: 48%;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_content .recruit_content_text {
    width: 100%;
  }
}
#recruit .recruit .recruit_contents .recruit_content .recruit_content_text h4 {
  margin-bottom: 1.5vw;
}
#recruit .recruit .recruit_contents .recruit_environment h2 {
  font-weight: 500;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_environment h2 {
    margin-bottom: 8vw;
  }
}
#recruit .recruit .recruit_contents .recruit_environment h2 span {
  color: #999;
  margin-left: 1vw;
  font-size: 1.5vw;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_environment h2 span {
    font-size: 3vw;
  }
}
#recruit .recruit .recruit_contents .recruit_environment .recruit_environment_contents {
  margin-bottom: 12vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2vw;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_contents .recruit_environment .recruit_environment_contents {
    margin-bottom: 18vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_environment .recruit_environment_contents {
    flex-flow: column-reverse;
    margin-bottom: 18vw;
    gap: 0;
  }
}
#recruit .recruit .recruit_contents .recruit_environment .recruit_environment_contents:nth-child(3) {
  flex-flow: row-reverse;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_environment .recruit_environment_contents:nth-child(3) {
    flex-flow: column-reverse;
  }
}
#recruit .recruit .recruit_contents .recruit_environment .recruit_environment_contents:nth-child(3) .recruit_environment_contents_text {
  left: 0;
  right: auto;
}
#recruit .recruit .recruit_contents .recruit_environment .recruit_environment_contents .recruit_environment_contents_text {
  width: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  padding: 6vw 2vw;
  position: absolute;
  right: 0;
  top: 40%;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_environment .recruit_environment_contents .recruit_environment_contents_text {
    width: 100%;
    position: static;
  }
}
#recruit .recruit .recruit_contents .recruit_environment .recruit_environment_contents .recruit_environment_contents_text h4 {
  margin-bottom: 1.5vw;
}
#recruit .recruit .recruit_contents .recruit_environment .recruit_environment_contents .recruit_environment_contents_image {
  width: 60%;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_environment .recruit_environment_contents .recruit_environment_contents_image {
    width: 100%;
  }
}
#recruit .recruit .recruit_contents .recruit_environment .recruit_environment_contents .recruit_environment_contents_image img {
  width: 100%;
  vertical-align: bottom;
}
#recruit .recruit .recruit_contents .recruit_member {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_contents .recruit_member {
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_member {
    margin-bottom: 8vw;
  }
}
#recruit .recruit .recruit_contents .recruit_member h2 {
  font-weight: 500;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_member h2 {
    margin-bottom: 8vw;
  }
}
#recruit .recruit .recruit_contents .recruit_member h2 span {
  color: #999;
  margin-left: 1vw;
  font-size: 1.5vw;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_member h2 span {
    font-size: 3vw;
  }
}
#recruit .recruit .recruit_contents .recruit_member .recruit_member_contents {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
#recruit .recruit .recruit_contents .recruit_member .recruit_member_contents:last-child {
  flex-flow: row-reverse;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_member .recruit_member_contents {
    margin-bottom: 8vw;
  }
}
#recruit .recruit .recruit_contents .recruit_member .recruit_member_contents .recruit_member_image {
  width: 40%;
  height: 25vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_contents .recruit_member .recruit_member_contents .recruit_member_image {
    height: 40vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_member .recruit_member_contents .recruit_member_image {
    height: 40vw;
  }
}
#recruit .recruit .recruit_contents .recruit_member .recruit_member_contents .recruit_member_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#recruit .recruit .recruit_contents .recruit_member .recruit_member_contents .recruit_member_text {
  width: 50%;
}
#recruit .recruit .recruit_contents .recruit_member .recruit_member_contents .recruit_member_text h4 {
  border-bottom: 1px solid #333;
  padding-bottom: 0.5vw;
  margin-bottom: 2vw;
}
#recruit .recruit .recruit_contents .recruit_detail {
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_detail {
    margin-bottom: 8vw;
  }
}
#recruit .recruit .recruit_contents .recruit_detail h3 {
  text-align: center;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_detail h3 {
    margin-bottom: 4vw;
  }
}
#recruit .recruit .recruit_contents .recruit_detail table {
  width: 80%;
  margin: auto;
  border-collapse: collapse;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_contents .recruit_detail table {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_detail table {
    width: 100%;
  }
}
#recruit .recruit .recruit_contents .recruit_detail table tr {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
#recruit .recruit .recruit_contents .recruit_detail table tr td {
  font-size: 1vw;
  padding: 1vw 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_contents .recruit_detail table tr td {
    font-size: 2vw;
    padding: 1.5vw 3vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_detail table tr td {
    font-size: 3vw;
    padding: 3vw 6vw;
  }
}
#recruit .recruit .recruit_contents .recruit_detail table tr td:first-child {
  border-bottom: 1px solid #333;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_contents .recruit_detail table tr td:first-child {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_detail table tr td:first-child {
    width: 100%;
    border: none;
    background-color: #333;
    color: #fff;
  }
}
#recruit .recruit .recruit_contents .recruit_detail table tr td:last-child {
  border-bottom: 1px solid #999;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_detail table tr td:last-child {
    width: 100%;
    border: none;
  }
}
#recruit .recruit .recruit_contents .recruit_flow {
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_flow {
    margin-bottom: 8vw;
  }
}
#recruit .recruit .recruit_contents .recruit_flow h3 {
  text-align: center;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_flow h3 {
    margin-bottom: 4vw;
  }
}
#recruit .recruit .recruit_contents .recruit_flow table {
  width: 80%;
  margin: auto;
  border-collapse: collapse;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_contents .recruit_flow table {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_flow table {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_flow table tr {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column;
  }
}
#recruit .recruit .recruit_contents .recruit_flow table tr td {
  font-size: 1vw;
  padding: 1vw 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_contents .recruit_flow table tr td {
    font-size: 2vw;
    padding: 1.5vw 3vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_flow table tr td {
    font-size: 3vw;
    padding: 3vw 6vw;
  }
}
#recruit .recruit .recruit_contents .recruit_flow table tr td:first-child {
  border-bottom: 1px solid #333;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_contents .recruit_flow table tr td:first-child {
    width: 30%;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_flow table tr td:first-child {
    width: 100%;
    border: none;
    background-color: #333;
    color: #fff;
  }
}
#recruit .recruit .recruit_contents .recruit_flow table tr td:last-child {
  border-bottom: 1px solid #999;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_flow table tr td:last-child {
    width: 100%;
    border: none;
  }
}
#recruit .recruit .recruit_contents .message {
  background-color: #333;
  padding: 4vw;
  text-align: center;
}
#recruit .recruit .recruit_contents .message h3 {
  border-bottom: 1px solid #fff;
  padding-bottom: 0.5vw;
  margin-bottom: 2vw;
  color: #fff;
}
#recruit .recruit .recruit_contents .message h4, #recruit .recruit .recruit_contents .message p {
  color: #fff;
  margin-bottom: 1vw;
}
#recruit .recruit .recruit_images {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
  height: 25vw;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_images {
    flex-flow: column;
    height: auto;
  }
}
#recruit .recruit .recruit_images img {
  width: 45%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_images img {
    width: 80%;
  }
}

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

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

.slide-images {
  width: 100vw;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .slide-images {
    height: 80vw;
  }
}
.slide-images img {
  -o-object-fit: cover;
     object-fit: cover;
}

.footer_contact {
  width: 95%;
  margin: 8vw auto;
  background-color: #343434;
  padding: 8vw 4vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_contact {
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  .footer_contact {
    flex-flow: column;
  }
}
.footer_contact .top_headline {
  color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_contact .top_headline {
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_contact .top_headline {
    margin-bottom: 8vw;
  }
}
.footer_contact .footer_contact_text {
  width: 40%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_contact .footer_contact_text {
    width: 60%;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_contact .footer_contact_text {
    width: 90%;
    margin-bottom: 8vw;
  }
}
.footer_contact .footer_contact_text p {
  color: #fff;
}
.footer_contact .footer_contact_btn {
  width: 30%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_contact .footer_contact_btn {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  .footer_contact .footer_contact_btn {
    width: 80%;
  }
}
.footer_contact .footer_contact_btn:hover button {
  background-color: #fff;
  color: #343434;
}
.footer_contact .footer_contact_btn:hover button::before {
  background-color: #343434;
}
.footer_contact .footer_contact_btn:hover button::after {
  background-color: #343434;
}
.footer_contact .footer_contact_btn a {
  text-decoration: none;
}
.footer_contact .footer_contact_btn a button {
  padding: 1.5vw 0;
  width: 100%;
  border: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  position: relative;
  transition: all 0.4s;
}
.footer_contact .footer_contact_btn a button::before {
  position: absolute;
  content: "";
  width: 3vw;
  height: 1px;
  background-color: #fff;
  top: 50%;
  left: 75%;
}
@media screen and (max-width: 768px) {
  .footer_contact .footer_contact_btn a button::before {
    width: 6vw;
  }
}
.footer_contact .footer_contact_btn a button::after {
  position: absolute;
  content: "";
  width: 1vw;
  height: 1px;
  background-color: #fff;
  top: 45%;
  left: 83%;
  transform: rotate(30deg);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .footer_contact .footer_contact_btn a button::after {
    left: 80%;
  }
}
@media screen and (max-width: 768px) {
  .footer_contact .footer_contact_btn a button::after {
    top: 47%;
    left: 81%;
    width: 2vw;
  }
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8vw 8vw 2vw 8vw;
  overflow: hidden;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  footer {
    width: 100%;
    flex-flow: column;
    padding: 16vw 8vw 2vw 8vw;
  }
}
footer .footer_left {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1vw;
  width: 50%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_left {
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_left {
    width: 100%;
    flex-flow: column;
    align-items: center;
    margin-bottom: 8vw;
  }
}
footer .footer_left .footer_logo {
  width: 40%;
}
@media screen and (max-width: 768px) {
  footer .footer_left .footer_logo {
    width: 65%;
    margin-bottom: 4vw;
  }
}
footer .footer_left .footer_logo img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  footer .footer_left .footer_company {
    text-align: center;
  }
}
footer .footer_left .footer_company h2 {
  font-weight: 300;
  margin-bottom: 1.5vw;
  font-size: 2vw;
}
@media screen and (max-width: 768px) {
  footer .footer_left .footer_company h2 {
    font-size: 5vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_left .footer_company p {
    font-size: 3vw;
  }
}
footer .footer_left .footer_company .address {
  margin-bottom: 1.5vw;
}
@media screen and (max-width: 768px) {
  footer .footer_left .footer_company .address br {
    display: none;
  }
}
footer .footer_right {
  width: 35%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_right {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_right {
    width: 100%;
  }
}
footer .footer_right .footer_menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 1.5vw;
}
@media screen and (max-width: 768px) {
  footer .footer_right .footer_menu ul {
    gap: 3vw;
  }
}
footer .footer_right .footer_menu ul li a {
  text-decoration: none;
  font-size: 0.8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_right .footer_menu ul li a {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_right .footer_menu ul li a {
    font-size: 3vw;
  }
}

.copyright {
  text-align: center;
  padding: 1vw 0;
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .copyright p {
    font-size: 1vw;
  }
}/*# sourceMappingURL=style.css.map */