@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
}

html {
  font-size: 62.5%;
}

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

.header.first-color {
  background-color: #00989F;
  transition: 0.3s;
}

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

.top_headline {
  text-align: center;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top_headline {
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 768px) {
  .top_headline {
    margin-bottom: 12vw;
  }
}
.top_headline h2 {
  color: #fff;
  font-family: "Josefin Sans", sans-serif;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top_headline h2 {
    font-size: 4.5vw;
  }
}
@media screen and (max-width: 768px) {
  .top_headline h2 {
    font-size: 9vw;
  }
}
.top_headline h2 span {
  font-size: 3.6vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .top_headline h2 span {
    font-size: 6vw;
  }
}
@media screen and (max-width: 768px) {
  .top_headline h2 span {
    font-size: 12vw;
  }
}
.top_headline p {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .top_headline p {
    font-size: 3vw;
  }
}

#lower {
  position: relative;
}
#lower .lower {
  width: 100vw;
  height: 25vw;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower {
    height: 35vw;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower {
    height: 60vw;
  }
}
#lower .lower .lower_title {
  position: absolute;
  top: 70%;
  left: 0;
  width: 50%;
  background-color: rgba(0, 152, 159, 0.8);
  padding: 1vw 4vw;
  overflow: hidden;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower .lower_title {
    width: 70%;
    padding: 2vw 8vw;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower .lower_title {
    width: 95%;
    padding: 4vw 16vw;
  }
}
#lower .lower .lower_title h2 {
  color: #fff;
  text-align: end;
  font-size: 5vw;
  font-family: "Josefin Sans", sans-serif;
  font-weight: 400;
  line-height: 5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower .lower_title h2 {
    font-size: 7vw;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower .lower_title h2 {
    font-size: 14vw;
    line-height: 8vw;
  }
}
#lower .lower .lower_title h2 span {
  font-size: 7vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower .lower_title h2 span {
    font-size: 9vw;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower .lower_title h2 span {
    font-size: 18vw;
  }
}
#lower .lower .lower_title p {
  color: #fff;
  text-align: end;
  font-size: 1.8vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower .lower_title p {
    font-size: 2.8vw;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower .lower_title p {
    font-size: 5vw;
  }
}
#lower .lower .slide-in {
  opacity: 0;
  transform: translateX(-100%);
  animation: slideIn 1.2s ease-out forwards;
}
#lower .lower_logo {
  position: absolute;
  z-index: -1;
  top: 100%;
  right: 0;
  height: 50vh;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #lower .lower_logo {
    height: 35vh;
  }
}
@media screen and (max-width: 768px) {
  #lower .lower_logo {
    height: 35vh;
  }
}
#lower .lower_logo img {
  height: 100%;
}

@keyframes slideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
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: 2.5vw;
  }
}

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

.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 {
  z-index: 9999999999;
  width: 100%;
  position: fixed;
}
header .js-header {
  display: none;
}
header .js-header #header_pc {
  align-items: center;
  justify-content: center;
  background-color: #00989F;
}
header .js-header #header_pc .header_menu {
  margin: 0;
  padding: 1vw 0;
}
header #header_pc {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 2vw;
}
@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 {
  width: 12%;
}
header #header_pc .header_logo img {
  width: 100%;
}
header #header_pc .header_menu {
  margin-top: 1vw;
}
header #header_pc .header_menu .header_btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header #header_pc .header_menu .main_menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 10px;
  margin: 0;
  padding: 0;
}
header #header_pc .header_menu .main_menu > li:first-child a {
  border: none;
}
header #header_pc .header_menu .main_menu > li:last-child a {
  border: none;
}
header #header_pc .header_menu .main_menu > li > a {
  display: block;
  padding: 5px 20px;
  text-decoration: none;
  color: #fff;
  font-size: 1vw;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
header #header_pc .header_menu .main_menu > li > a span {
  font-weight: 400;
}

@media screen and (min-width: 1441px) {
  #header_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #header_sp {
    display: none;
  }
}
#header_sp .header_logo {
  width: 20%;
}
@media screen and (max-width: 768px) {
  #header_sp .header_logo {
    width: 25%;
  }
}
#header_sp .header_logo img {
  width: 100%;
}
#header_sp .hamburger {
  display: block;
  position: fixed;
  z-index: 10005;
  right: 0;
  top: 0;
  width: 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
  background-color: #00989F;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #header_sp .hamburger {
    right: 30px;
    top: 15px;
  }
}
#header_sp .hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #fff;
  transition: 0.3s ease-in-out;
}
#header_sp .hamburger span:nth-child(1) {
  top: 10px;
  left: 50%;
  transform: translate(-50%, 0);
}
#header_sp .hamburger span:nth-child(2) {
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0);
}
#header_sp .hamburger span:nth-child(3) {
  top: 30px;
  left: 50%;
  transform: translate(-50%, 0);
}
#header_sp .hamburger p {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translate(-50%, 0);
  font-size: 12.5px;
  color: #fff;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top: 16px !important;
  left: 15px !important;
  background: #fff !important;
  transform: rotate(-45deg) !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hamburger.active span:nth-child(1) {
    width: 6vw !important;
    top: 4vw !important;
  }
}

.hamburger.active p {
  display: none;
}

.hamburger.active {
  background-color: rgba(0, 0, 0, 0) !important;
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px !important;
  left: 15px !important;
  background: #fff !important;
  transform: rotate(45deg) !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    width: 6vw !important;
    top: 4vw !important;
  }
}

nav.globalMenuSp {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  color: #fff;
  background: rgba(0, 152, 159, 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;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  nav.globalMenuSp ul li {
    margin-bottom: 40px;
  }
}

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;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  font-size: 3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  nav.globalMenuSp ul li a {
    font-size: 3vw;
  }
}
nav.globalMenuSp ul li a span {
  font-size: 2vw;
}
nav.globalMenuSp ul li a img {
  width: 40%;
}

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

#mv {
  width: 100%;
  position: relative;
}
#mv .slider {
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #mv .slider {
    height: 100vh;
  }
  #mv .slider .slide {
    overflow: hidden;
  }
  #mv .slider .slick-list {
    height: 100%;
  }
  #mv .slider .slick-list .slick-track {
    height: 100%;
  }
  #mv .slider .slick-list .slick-track img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#mv .slider img {
  width: 100%;
  transition: transform 6s ease;
  transform: scale(1.1);
}
#mv .slider .slick-active img {
  animation: zoomOut 6s linear forwards;
}
#mv .mv_text {
  width: 60%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv_text {
    width: 75%;
    top: 70%;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv_text {
    width: 95%;
  }
}
#mv .mv_text .fade-in-top {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeIn 1s ease-out forwards;
}
#mv .mv_text .fade-in-top.delay {
  animation-delay: 0.5s;
}
#mv .mv_text h1 {
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.2vw;
  margin-bottom: 1.5vw;
}
@media screen and (max-width: 768px) {
  #mv .mv_text h1 {
    margin-bottom: 3vw;
  }
}
#mv .mv_text p {
  color: #fff;
}
#mv .mv_text .mv_text_en {
  font-weight: 600;
  letter-spacing: 0.2vw;
  margin-bottom: 1.5vw;
}
@media screen and (max-width: 768px) {
  #mv .mv_text .mv_text_en {
    margin-bottom: 3vw;
    font-size: 3vw;
  }
}
#mv .mv_text .mv_text_jp {
  font-size: 1.6vw;
  line-height: 3vw;
}
@media screen and (max-width: 768px) {
  #mv .mv_text .mv_text_jp {
    font-size: 4vw;
    line-height: 8vw;
  }
}
#mv .mv_text .split-text span {
  display: inline-block;
  opacity: 0;
  transform: translate(-20px, -30px);
  animation: textIn 0.4s ease forwards;
}

@keyframes zoomOut {
  from {
    transform: scale(1.1);
  }
  to {
    transform: scale(1);
  }
}
@keyframes fadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes textIn {
  to {
    opacity: 1;
    transform: translate(0, 0);
  }
}
#contents .contents {
  background-color: #ECECEC;
  padding: 4vw 0;
  padding-bottom: 8vw;
}
#contents .contents .top_headline h2 {
  color: #00989F;
}
#contents .contents .top_headline p {
  color: #000;
}
#contents .contents .contents_flex {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contents .contents .contents_flex {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  #contents .contents .contents_flex {
    flex-wrap: wrap;
  }
}
#contents .contents .contents_flex a {
  display: block;
  width: 16.6666666667%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contents .contents .contents_flex a {
    width: 33.3333333333%;
  }
}
@media screen and (max-width: 768px) {
  #contents .contents .contents_flex a {
    width: 50%;
  }
}
#contents .contents .contents_flex a img {
  width: 100%;
}

#top_about .top_about {
  padding: 8vw 0;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 768px) {
  #top_about .top_about {
    padding: 16vw 4vw;
  }
}
#top_about .top_about .top_headline h2 {
  color: #00989F;
}
#top_about .top_about .top_headline p {
  color: #000;
}
#top_about .top_about .top_about_contents {
  width: 80%;
  margin: auto;
  background-color: #ededed;
  padding: 4vw;
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents {
    width: 90%;
    padding: 8vw 4vw;
  }
}
#top_about .top_about .top_about_contents .top_about_images {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_images {
    margin-bottom: 8vw;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4vw;
  }
}
#top_about .top_about .top_about_contents .top_about_images img {
  width: 30%;
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_images img {
    width: 40%;
  }
}
#top_about .top_about .top_about_contents .top_about_text {
  text-align: center;
  margin-bottom: 2vw;
}
#top_about .top_about .top_about_contents .top_about_text p {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about .top_about_contents .top_about_text p {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_text p {
    font-size: 4vw;
    margin-bottom: 8vw;
  }
}
#top_about .top_about .top_about_contents .top_btn01 {
  width: 30%;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_btn01 {
    width: 90%;
  }
}

#top_works .top_works {
  padding: 8vw 4vw;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
#top_works .top_works .top_works_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_contents {
    flex-flow: column;
  }
}
#top_works .top_works .top_works_contents .top_flex_image {
  width: 40%;
  position: relative;
  overflow: hidden;
}
#top_works .top_works .top_works_contents .top_flex_image::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #00989F;
  z-index: 2;
  transition: transform 2s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translateX(0);
}
#top_works .top_works .top_works_contents .top_flex_image.is-active::before {
  transform: translateX(200%);
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_contents .top_flex_image {
    width: 100%;
  }
}
#top_works .top_works .top_works_contents .top_flex_image img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_works .top_works .top_works_contents .top_works_content {
    width: 50%;
  }
}
#top_works .top_works .top_works_contents .top_works_content .top_headline {
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_contents .top_works_content .top_headline {
    margin-bottom: 8vw;
  }
}
#top_works .top_works .top_works_contents .top_works_content > h3 {
  color: #fff;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_contents .top_works_content > h3 {
    margin-bottom: 8vw;
    font-size: 6vw;
  }
}
#top_works .top_works .top_works_contents .top_works_content > p {
  color: #fff;
  margin-bottom: 4vw;
  font-size: 1vw;
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_works .top_works .top_works_contents .top_works_content > p {
    font-size: 2vw;
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_works .top_works .top_works_contents .top_works_content > p {
    font-size: 4vw;
    line-height: 8vw;
    margin-bottom: 8vw;
  }
}
#top_works .top_works .top_works_contents .top_btn02 {
  width: 80%;
  margin: auto;
  text-align: center;
}

#top_company .top_company {
  padding: 8vw 4vw;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
#top_company .top_company .top_company_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #top_company .top_company .top_company_contents {
    flex-flow: column-reverse;
  }
}
#top_company .top_company .top_company_contents .top_flex_image {
  width: 40%;
  position: relative;
  overflow: hidden;
}
#top_company .top_company .top_company_contents .top_flex_image::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #00989F;
  z-index: 2;
  transition: transform 2s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translateX(0);
}
#top_company .top_company .top_company_contents .top_flex_image.is-active::before {
  transform: translateX(200%);
}
@media screen and (max-width: 768px) {
  #top_company .top_company .top_company_contents .top_flex_image {
    width: 100%;
  }
}
#top_company .top_company .top_company_contents .top_flex_image img {
  width: 100%;
  display: block;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company .top_company .top_company_contents .top_company_content {
    width: 50%;
  }
}
#top_company .top_company .top_company_contents .top_company_content .top_headline {
  margin-bottom: 2vw;
}
#top_company .top_company .top_company_contents .top_company_content .top_headline h2 {
  color: #00989F;
}
#top_company .top_company .top_company_contents .top_company_content .top_headline p {
  color: #000;
}
@media screen and (max-width: 768px) {
  #top_company .top_company .top_company_contents .top_company_content .top_headline {
    margin-bottom: 8vw;
  }
}
#top_company .top_company .top_company_contents .top_company_content > h3 {
  color: #000;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #top_company .top_company .top_company_contents .top_company_content > h3 {
    margin-bottom: 8vw;
    font-size: 6vw;
  }
}
#top_company .top_company .top_company_contents .top_company_content > p {
  color: #000;
  margin-bottom: 4vw;
  font-size: 1vw;
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_company .top_company .top_company_contents .top_company_content > p {
    font-size: 2vw;
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_company .top_company .top_company_contents .top_company_content > p {
    font-size: 4vw;
    line-height: 8vw;
    margin-bottom: 8vw;
  }
}
#top_company .top_company .top_company_contents .top_btn01 {
  width: 80%;
  margin: auto;
  text-align: center;
}

#top_news .top_news {
  padding: 8vw 0;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
#top_news .top_news .top_news_contents {
  width: 80%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news .top_news_contents {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents {
    width: 95%;
    margin-bottom: 8vw;
  }
}
#top_news .top_news .top_news_contents ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul {
    flex-flow: column;
  }
}
#top_news .top_news .top_news_contents ul a {
  text-decoration: none;
  display: block;
  color: #000;
  width: 30%;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news .top_news_contents ul a {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul a {
    width: 100%;
    font-size: 4vw;
    margin-bottom: 4vw;
  }
}
#top_news .top_news .top_news_contents ul a li .thumb {
  width: 100%;
}
#top_news .top_news .top_news_contents ul a li .thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
#top_news .top_news .top_news_contents ul a li .outline {
  background-color: #fff;
  padding: 2vw;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul a li .outline {
    padding: 4vw;
  }
}
#top_news .top_news .top_news_contents ul a li .outline .date {
  margin-bottom: 1.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news .top_news_contents ul a li .outline .date {
    margin-bottom: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul a li .outline .date {
    margin-bottom: 4vw;
  }
}
#top_news .top_news .top_news_contents ul a li .outline .title {
  margin-bottom: 1.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news .top_news_contents ul a li .outline .title {
    margin-bottom: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul a li .outline .title {
    margin-bottom: 4vw;
  }
}
#top_news .top_news .top_news_contents ul a li .outline .descn {
  margin-bottom: 1.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news .top_news_contents ul a li .outline .descn {
    margin-bottom: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul a li .outline .descn {
    margin-bottom: 4vw;
  }
}
#top_news .top_news .top_btn02 {
  width: 80%;
  margin: auto;
  text-align: center;
}

#top_recruit .top_recruit {
  padding: 8vw 4vw;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
#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-reverse;
  }
}
#top_recruit .top_recruit .top_recruit_contents .top_flex_image {
  width: 40%;
  position: relative;
  overflow: hidden;
}
#top_recruit .top_recruit .top_recruit_contents .top_flex_image::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #00989F;
  z-index: 2;
  transition: transform 2s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translateX(0);
}
#top_recruit .top_recruit .top_recruit_contents .top_flex_image.is-active::before {
  transform: translateX(200%);
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit .top_recruit_contents .top_flex_image {
    width: 100%;
  }
}
#top_recruit .top_recruit .top_recruit_contents .top_flex_image img {
  width: 100%;
  display: block;
}
#top_recruit .top_recruit .top_recruit_contents .top_recruit_content {
  width: 45%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit .top_recruit .top_recruit_contents .top_recruit_content {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit .top_recruit_contents .top_recruit_content {
    width: 100%;
    margin-bottom: 4vw;
  }
}
#top_recruit .top_recruit .top_recruit_contents .top_recruit_content .top_headline {
  margin-bottom: 2vw;
}
#top_recruit .top_recruit .top_recruit_contents .top_recruit_content .top_headline h2 {
  color: #00989F;
}
#top_recruit .top_recruit .top_recruit_contents .top_recruit_content .top_headline p {
  color: #000;
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit .top_recruit_contents .top_recruit_content .top_headline {
    margin-bottom: 8vw;
  }
}
#top_recruit .top_recruit .top_recruit_contents .top_recruit_content > h3 {
  color: #000;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit .top_recruit_contents .top_recruit_content > h3 {
    margin-bottom: 8vw;
    font-size: 6vw;
  }
}
#top_recruit .top_recruit .top_recruit_contents .top_recruit_content > p {
  color: #000;
  margin-bottom: 4vw;
  font-size: 1vw;
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit .top_recruit .top_recruit_contents .top_recruit_content > p {
    font-size: 2vw;
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit .top_recruit_contents .top_recruit_content > p {
    font-size: 4vw;
    line-height: 8vw;
    margin-bottom: 8vw;
  }
}
#top_recruit .top_recruit .top_recruit_contents .top_btn01 {
  width: 80%;
  margin: auto;
  text-align: center;
}

#about {
  padding-top: 12vw;
}
@media screen and (max-width: 768px) {
  #about {
    padding-top: 24vw;
  }
}
#about .about .about_cost {
  width: 90%;
  margin: auto;
  margin-bottom: 8vw;
}
#about .about .about_cost .cost_headline {
  width: 60%;
  margin: auto;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #about .about .about_cost .cost_headline {
    width: 95%;
    margin-bottom: 8vw;
  }
}
#about .about .about_cost .cost_headline img {
  width: 100%;
}
#about .about .about_cost .cost_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #about .about .about_cost .cost_flex {
    width: 95%;
    flex-flow: column;
  }
}
#about .about .about_cost .cost_flex .cost_image {
  width: 45%;
}
@media screen and (max-width: 768px) {
  #about .about .about_cost .cost_flex .cost_image {
    width: 80%;
    margin-bottom: 4vw;
  }
}
#about .about .about_cost .cost_flex .cost_image img {
  width: 100%;
}
#about .about .about_cost .cost_flex .cost_text {
  width: 45%;
}
@media screen and (max-width: 768px) {
  #about .about .about_cost .cost_flex .cost_text {
    width: 100%;
  }
  #about .about .about_cost .cost_flex .cost_text p {
    font-size: 4vw;
    line-height: 8vw;
  }
}
#about .about .about_worries {
  background-color: #F5F9FF;
  padding: 4vw 0;
}
@media screen and (max-width: 768px) {
  #about .about .about_worries {
    padding: 8vw 0;
  }
}
#about .about .about_worries .worries_headline {
  width: 35%;
  margin: auto;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #about .about .about_worries .worries_headline {
    width: 80%;
    margin-bottom: 4vw;
  }
}
#about .about .about_worries .worries_headline img {
  width: 100%;
}
#about .about .about_worries .worries_flex {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #about .about .about_worries .worries_flex {
    flex-flow: column;
  }
}
#about .about .about_worries .worries_flex .worries_text {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #about .about .about_worries .worries_flex .worries_text {
    width: 100%;
  }
}
#about .about .about_worries .worries_flex .worries_text img {
  width: 100%;
}
#about .about .about_worries .worries_flex .worries_illust {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #about .about .about_worries .worries_flex .worries_illust {
    width: 100%;
  }
}
#about .about .about_worries .worries_flex .worries_illust img {
  width: 100%;
}
#about .about .about_solve {
  padding: 4vw 0;
}
@media screen and (max-width: 768px) {
  #about .about .about_solve {
    padding: 8vw 0;
  }
}
#about .about .about_solve .solve_headline {
  width: 35%;
  margin: auto;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #about .about .about_solve .solve_headline {
    width: 90%;
    margin-bottom: 4vw;
  }
}
#about .about .about_solve .solve_headline img {
  width: 100%;
}
#about .about .about_solve .solve_flex {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #about .about .about_solve .solve_flex {
    flex-flow: column-reverse;
  }
}
#about .about .about_solve .solve_flex .solve_text {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #about .about .about_solve .solve_flex .solve_text {
    width: 100%;
    margin-bottom: 4vw;
  }
}
#about .about .about_solve .solve_flex .solve_text img {
  width: 100%;
  margin-bottom: 2vw;
}
#about .about .about_solve .solve_flex .solve_text p {
  color: #F78640;
  font-size: 1.4vw;
  text-align: center;
  line-height: 2.8vw;
}
@media screen and (max-width: 768px) {
  #about .about .about_solve .solve_flex .solve_text p {
    font-size: 4vw;
    line-height: 8vw;
  }
}
#about .about .about_solve .solve_flex .solve_illust {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #about .about .about_solve .solve_flex .solve_illust {
    width: 100%;
  }
}
#about .about .about_solve .solve_flex .solve_illust img {
  width: 100%;
}
#about .about .about_service {
  padding: 4vw 0;
}
@media screen and (max-width: 768px) {
  #about .about .about_service {
    padding: 8vw 0;
  }
}
#about .about .about_service .service_headline {
  width: 20%;
  margin: auto;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #about .about .about_service .service_headline {
    width: 60%;
    margin-bottom: 4vw;
  }
}
#about .about .about_service .service_headline img {
  width: 100%;
}
#about .about .about_service .about_service_contents {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  padding: 2vw 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .about_service .about_service_contents {
    padding: 4vw 0;
  }
}
@media screen and (max-width: 768px) {
  #about .about .about_service .about_service_contents {
    padding: 8vw 0;
    flex-flow: column-reverse;
  }
}
#about .about .about_service .about_service_contents:last-child {
  border-top: 1px solid #00989F;
  background-color: #F5F9FF;
}
#about .about .about_service .about_service_contents .about_service_left {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #about .about .about_service .about_service_contents .about_service_left {
    width: 95%;
    margin: auto;
  }
}
#about .about .about_service .about_service_contents .about_service_left .about_service_headline {
  margin-bottom: 2vw;
}
#about .about .about_service .about_service_contents .about_service_left .about_service_headline h4 {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #about .about .about_service .about_service_contents .about_service_left .about_service_headline h4 {
    font-size: 5.5vw;
  }
}
#about .about .about_service .about_service_contents .about_service_left .about_service_headline h4 img {
  margin-right: 1vw;
}
#about .about .about_service .about_service_contents .about_service_left p {
  width: 80%;
  font-size: 1vw;
  line-height: 2vw;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .about_service .about_service_contents .about_service_left p {
    font-size: 2vw;
    line-height: 4vw;
    margin-bottom: 4vw;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #about .about .about_service .about_service_contents .about_service_left p {
    font-size: 4vw;
    line-height: 8vw;
    margin-bottom: 8vw;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #about .about .about_service .about_service_contents .about_service_left .about_service_contact_btn a {
    width: 90%;
    margin: auto;
  }
  #about .about .about_service .about_service_contents .about_service_left .about_service_contact_btn a img {
    width: 100%;
  }
}
#about .about .about_service .about_service_contents .about_service_right {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #about .about .about_service .about_service_contents .about_service_right {
    width: 95%;
    margin: auto;
    margin-bottom: 4vw;
  }
}
#about .about .about_service .about_service_contents .about_service_right img {
  width: 100%;
}
#about .about .line_image {
  width: 80%;
  margin: auto;
  text-align: center;
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #about .about .line_image {
    width: 80%;
  }
  #about .about .line_image img {
    width: 100%;
  }
}
#about .about .about_business {
  padding: 4vw 0;
}
@media screen and (max-width: 768px) {
  #about .about .about_business {
    padding: 8vw 0;
  }
}
#about .about .about_business .business_headline {
  width: 20%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #about .about .about_business .business_headline {
    width: 50%;
    margin-bottom: 8vw;
  }
}
#about .about .about_business .business_headline img {
  width: 100%;
}
#about .about .about_business .business_contents {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #about .about .about_business .business_contents {
    flex-flow: column;
  }
}
#about .about .about_business .business_contents .business_content {
  width: 30%;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .about_business .business_contents .business_content {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #about .about .about_business .business_contents .business_content {
    width: 80%;
  }
}
#about .about .about_business .business_contents .business_content img {
  width: 100%;
}
#about .about #about_works {
  padding: 8vw 0;
  background-color: #F5F9FF;
}
@media screen and (max-width: 768px) {
  #about .about #about_works {
    padding: 16vw 0;
  }
}
#about .about #about_works h2 {
  font-family: "Josefin Sans", sans-serif;
  color: #00989F;
  text-align: center;
  margin-bottom: 1vw;
  font-size: 4vw;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #about .about #about_works h2 {
    font-size: 10vw;
  }
}
#about .about #about_works p {
  text-align: center;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about #about_works p {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about #about_works p {
    font-size: 4vw;
  }
}
#about .about #about_works .about_works_contents {
  width: 95%;
  margin: auto;
  padding: 2vw 4vw;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about #about_works .about_works_contents {
    width: 95%;
    padding: 4vw 6vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about #about_works .about_works_contents {
    width: 95%;
    padding: 8vw 0vw;
  }
}
#about .about #about_works .about_works_contents::after {
  position: absolute;
  z-index: -1;
  border-radius: 20px;
  content: "";
  width: 100%;
  height: 100%;
  top: 2%;
  left: 1%;
  background-color: #BFD8EC;
}
@media screen and (max-width: 768px) {
  #about .about #about_works .about_works_contents::after {
    top: 3%;
    left: 2%;
  }
}
#about .about #about_works .about_works_contents ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}
#about .about #about_works .about_works_contents ul li {
  width: 12.5%;
  width: 12.5%;
  margin: 2vw;
  margin-bottom: 2vw;
  display: none;
}
#about .about #about_works .about_works_contents ul li:nth-child(-n+10) {
  display: block;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about #about_works .about_works_contents ul li {
    width: 25%;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about #about_works .about_works_contents ul li {
    width: 41.6666666667%;
    padding: 4vw;
    margin-bottom: 8vw;
  }
}
#about .about #about_works .about_works_contents ul li a {
  text-decoration: none;
}
#about .about #about_works .about_works_contents ul li a .thumb {
  width: 10vw;
  height: 10vw;
  margin: auto;
  margin-bottom: 1.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about #about_works .about_works_contents ul li a .thumb {
    width: 15vw;
    height: 15vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about #about_works .about_works_contents ul li a .thumb {
    width: 30vw;
    height: 30vw;
  }
}
#about .about #about_works .about_works_contents ul li a .thumb img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
#about .about #about_works .about_works_contents ul li a .title {
  color: #000;
  font-size: 1vw;
  margin-bottom: 1vw;
  font-weight: 400;
  text-align: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about #about_works .about_works_contents ul li a .title {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about #about_works .about_works_contents ul li a .title {
    font-size: 4vw;
    margin-bottom: 3vw;
  }
}
#about .about #about_works .about_works_contents .news-loadmore-wrap {
  text-align: center;
}
#about .about #about_works .about_works_contents .news-loadmore-wrap #loadmore-btn {
  padding: 1.5vw 0;
  width: 20%;
  margin: auto;
  border: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about #about_works .about_works_contents .news-loadmore-wrap #loadmore-btn {
    width: 35%;
  }
}
@media screen and (max-width: 768px) {
  #about .about #about_works .about_works_contents .news-loadmore-wrap #loadmore-btn {
    width: 90%;
    padding: 4vw 0;
  }
}

.hidden-item {
  display: none;
}

#company_top {
  margin-bottom: 12vw;
  padding-top: 18vw;
}
@media screen and (max-width: 768px) {
  #company_top {
    margin-bottom: 24vw;
  }
}
#company_top .company_top {
  width: 60%;
  margin: auto;
  margin-bottom: 12vw;
}
@media screen and (max-width: 768px) {
  #company_top .company_top {
    width: 90%;
  }
}
#company_top .company_top img {
  width: 100%;
}
#company_top .office_headline {
  width: 15%;
  margin: auto;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #company_top .office_headline {
    width: 40%;
    margin-bottom: 4vw;
  }
}
#company_top .office_headline img {
  width: 100%;
}
#company_top .office_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company_top .office_contents {
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  #company_top .office_contents {
    flex-flow: column;
  }
}
#company_top .office_contents .office_image {
  width: 45%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company_top .office_contents .office_image {
    width: 80%;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #company_top .office_contents .office_image {
    width: 90%;
    margin-bottom: 8vw;
  }
}
#company_top .office_contents .office_image img {
  width: 100%;
}
#company_top .office_contents .office_table {
  width: 45%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company_top .office_contents .office_table {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #company_top .office_contents .office_table {
    width: 90%;
  }
}
#company_top .office_contents .office_table table {
  width: 100%;
  border-spacing: collapse;
}
#company_top .office_contents .office_table table tr:nth-child(odd) {
  background-color: #F5F9FF;
}
@media screen and (max-width: 768px) {
  #company_top .office_contents .office_table table tr:nth-child(odd) {
    background-color: #fff;
  }
}
@media screen and (max-width: 768px) {
  #company_top .office_contents .office_table table tr {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-flow: column;
  }
}
#company_top .office_contents .office_table table tr th, #company_top .office_contents .office_table table tr td {
  padding: 1.5vw 0;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #company_top .office_contents .office_table table tr th, #company_top .office_contents .office_table table tr td {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #company_top .office_contents .office_table table tr th, #company_top .office_contents .office_table table tr td {
    width: 100%;
    font-size: 4vw;
    padding: 3vw 0;
  }
}
#company_top .office_contents .office_table table tr th {
  font-weight: 400;
  text-align: start;
}
@media screen and (max-width: 768px) {
  #company_top .office_contents .office_table table tr th {
    background-color: #F5F9FF;
  }
}

#news {
  padding: 18vw 0;
}
#news .news_headline {
  width: 30%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #news .news_headline {
    width: 80%;
    margin-bottom: 8vw;
  }
}
#news .news_headline img {
  width: 100%;
}
#news .news_contents {
  width: 80%;
  margin: auto;
}
#news .news_contents ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #news .news_contents ul {
    flex-flow: column;
  }
}
#news .news_contents ul a {
  display: block;
  width: 30%;
  margin-bottom: 2vw;
  text-decoration: none;
  color: #000;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news_contents ul a {
    width: 45%;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news_contents ul a {
    width: 95%;
    margin-bottom: 8vw;
  }
}
#news .news_contents ul a li .thumb {
  width: 100%;
}
#news .news_contents ul a li .thumb img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
#news .news_contents ul a li .outline {
  background-color: #fff;
  padding: 2vw;
  border: 1px solid #ECECEC;
}
@media screen and (max-width: 768px) {
  #news .news_contents ul a li .outline {
    padding: 4vw 2vw;
  }
}
#news .news_contents ul a li .outline .date {
  margin-bottom: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news_contents ul a li .outline .date {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news_contents ul a li .outline .date {
    font-size: 4vw;
  }
}
#news .news_contents ul a li .outline .title {
  margin-bottom: 1vw;
  font-size: 1.2vw;
  padding-bottom: 0.5vw;
  border-bottom: 1px solid #ECECEC;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news_contents ul a li .outline .title {
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news_contents ul a li .outline .title {
    font-size: 4.5vw;
    padding-bottom: 1.5vw;
  }
}
#news .news_contents ul a li .outline .descn {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news .news_contents ul a li .outline .descn {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #news .news_contents ul a li .outline .descn {
    font-size: 4vw;
  }
}

.news_single .outline ul {
  width: 30%;
  margin: auto;
  justify-content: center !important;
  align-items: center !important;
  list-style: none;
}
.news_single .outline ul li .outline .thumb {
  width: 100%;
  margin: auto;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  .news_single .outline ul li .outline .thumb {
    margin-bottom: 4vw;
  }
}
.news_single .outline ul li .outline .thumb img {
  width: 100%;
}
.news_single .outline ul li .outline .date {
  margin-bottom: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .news_single .outline ul li .outline .date {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .news_single .outline ul li .outline .date {
    font-size: 4vw;
  }
}
.news_single .outline ul li .outline .title {
  margin-bottom: 1vw;
  font-size: 1.2vw;
  padding-bottom: 0.5vw;
  border-bottom: 1px solid #ECECEC;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .news_single .outline ul li .outline .title {
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 768px) {
  .news_single .outline ul li .outline .title {
    font-size: 4.5vw;
    padding-bottom: 1.5vw;
  }
}
.news_single .outline ul li .outline .descn {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .news_single .outline ul li .outline .descn {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .news_single .outline ul li .outline .descn {
    font-size: 4vw;
  }
}

#recruit {
  padding-top: 12vw;
}
@media screen and (max-width: 768px) {
  #recruit {
    padding-top: 20vw;
  }
}
#recruit .recruit {
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #recruit .recruit {
    margin-bottom: 18vw;
  }
}
#recruit .recruit .recruit_headline {
  width: 20%;
  margin: auto;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_headline {
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_headline {
    width: 50%;
    margin-bottom: 8vw;
  }
}
#recruit .recruit .recruit_headline img {
  width: 100%;
}
#recruit .recruit .recruit_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents {
    flex-flow: column-reverse;
    align-items: flex-start;
  }
}
#recruit .recruit .recruit_contents .top_flex_image {
  width: 60%;
  position: relative;
  overflow: hidden;
}
#recruit .recruit .recruit_contents .top_flex_image::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #00989F;
  z-index: 2;
  transition: transform 2s cubic-bezier(0.77, 0, 0.175, 1);
  transform: translateX(0);
}
#recruit .recruit .recruit_contents .top_flex_image.is-active::before {
  transform: translateX(200%);
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .top_flex_image {
    width: 90%;
  }
}
#recruit .recruit .recruit_contents .top_flex_image img {
  width: 100%;
}
#recruit .recruit .recruit_contents .recruit_text {
  width: 30%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_text {
    width: 90%;
  }
}
#recruit .recruit .recruit_contents .recruit_text p {
  font-size: 1vw;
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_contents .recruit_text p {
    font-size: 2vw;
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_text p {
    font-size: 4vw;
    line-height: 8vw;
    margin-bottom: 8vw;
  }
}
#recruit .requirement {
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #recruit .requirement {
    margin-bottom: 16vw;
  }
}
#recruit .requirement .requirement_headline {
  width: 35%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #recruit .requirement .requirement_headline {
    width: 90%;
  }
}
#recruit .requirement .requirement_headline img {
  width: 100%;
}
#recruit .requirement .requirement_table {
  width: 85%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #recruit .requirement .requirement_table {
    width: 95%;
  }
}
#recruit .requirement .requirement_table table {
  border-collapse: collapse;
}
#recruit .requirement .requirement_table table tr {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #ececec;
}
@media screen and (max-width: 768px) {
  #recruit .requirement .requirement_table table tr {
    flex-flow: column;
    height: auto !important;
  }
}
#recruit .requirement .requirement_table table tr th, #recruit .requirement .requirement_table table tr td {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .requirement .requirement_table table tr th, #recruit .requirement .requirement_table table tr td {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit .requirement .requirement_table table tr th, #recruit .requirement .requirement_table table tr td {
    font-size: 4vw;
  }
}
#recruit .requirement .requirement_table table tr:nth-child(1) {
  height: 55vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .requirement .requirement_table table tr:nth-child(1) {
    height: 120vw;
  }
}
#recruit .requirement .requirement_table table tr:nth-child(2) {
  height: 10vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .requirement .requirement_table table tr:nth-child(2) {
    height: 20vw;
  }
}
#recruit .requirement .requirement_table table tr:nth-child(3) {
  height: 30vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .requirement .requirement_table table tr:nth-child(3) {
    height: 60vw;
  }
}
#recruit .requirement .requirement_table table tr:nth-child(4) {
  height: 5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .requirement .requirement_table table tr:nth-child(4) {
    height: 10vw;
  }
}
#recruit .requirement .requirement_table table tr:nth-child(5) {
  height: 25vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .requirement .requirement_table table tr:nth-child(5) {
    height: 50vw;
  }
}
#recruit .requirement .requirement_table table tr:nth-child(6) {
  height: 20vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .requirement .requirement_table table tr:nth-child(6) {
    height: 40vw;
  }
}
#recruit .requirement .requirement_table table tr th {
  width: 20%;
  height: 100%;
  background-color: #F5F9FF;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 2%;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  #recruit .requirement .requirement_table table tr th {
    width: 100%;
    text-align: start;
    align-items: center;
    padding: 0;
    height: 15vw;
  }
}
#recruit .requirement .requirement_table table tr td {
  width: 80%;
  padding-left: 4vw;
}
@media screen and (max-width: 768px) {
  #recruit .requirement .requirement_table table tr td {
    width: 100%;
    padding: 4vw;
  }
}

#contact .contact {
  padding-top: 12vw;
}
@media screen and (max-width: 768px) {
  #contact .contact {
    padding-top: 18vw;
  }
}
#contact .contact .line_banner {
  width: 50%;
  margin: 4vw auto;
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #contact .contact .line_banner {
    width: 80%;
  }
}
#contact .contact .line_banner img {
  width: 100%;
}
#contact .contact .contact_form {
  margin-bottom: 8vw;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form {
    margin-bottom: 16vw;
  }
}
#contact .contact .contact_form .contact_form_headline {
  width: 30%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form .contact_form_headline {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form .contact_form_headline {
    margin-bottom: 8vw;
  }
}
#contact .contact .contact_form .contact_form_headline img {
  width: 100%;
}
#contact .contact .contact_form .contact_form_contents {
  width: 50%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_form .contact_form_contents {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form .contact_form_contents {
    width: 90%;
  }
}
#contact .contact .contact_form .contact_form_contents .contact_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_form .contact_form_contents .contact_contents {
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form .contact_form_contents .contact_contents {
    flex-flow: column;
    align-items: flex-start;
    margin-bottom: 8vw;
  }
}
#contact .contact .contact_form .contact_form_contents .contact_contents p {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .contact_form .contact_form_contents .contact_contents p {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form .contact_form_contents .contact_contents p {
    font-size: 4vw;
  }
}
#contact .contact .contact_form .contact_form_contents .contact_contents p:first-child {
  width: 35%;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form .contact_form_contents .contact_contents p:first-child {
    width: 100%;
    margin-bottom: 4vw;
  }
}
#contact .contact .contact_form .contact_form_contents .contact_contents p:first-child span {
  padding-left: 2vw;
  color: red;
}
#contact .contact .contact_form .contact_form_contents .contact_contents p:last-child {
  width: 55%;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form .contact_form_contents .contact_contents p:last-child {
    width: 100%;
  }
}
#contact .contact .contact_form .contact_form_contents .contact_contents p:last-child input {
  padding: 0.5vw 0;
  border: none;
  background: #EEEEEE;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form .contact_form_contents .contact_contents p:last-child input {
    padding: 2vw 0;
    width: 100%;
  }
}
#contact .contact .contact_form .contact_form_contents .contact_contents p:last-child textarea {
  padding: 0.5vw 0;
  border: none;
  background: #EEEEEE;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form .contact_form_contents .contact_contents p:last-child textarea {
    padding: 2vw 0;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form .contact_form_contents .contact_contents p:last-child .wpcf7-radio {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-flow: column;
  }
  #contact .contact .contact_form .contact_form_contents .contact_contents p:last-child .wpcf7-radio .wpcf7-list-item {
    width: 100%;
    margin-bottom: 2vw;
  }
  #contact .contact .contact_form .contact_form_contents .contact_contents p:last-child .wpcf7-radio label {
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }
  #contact .contact .contact_form .contact_form_contents .contact_contents p:last-child .wpcf7-radio label input {
    padding-right: 1vw;
    width: 5vw;
  }
  #contact .contact .contact_form .contact_form_contents .contact_contents p:last-child .wpcf7-radio label span {
    width: 80%;
  }
}
#contact .contact .contact_form .submit {
  width: 40%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_form .submit {
    width: 90%;
  }
}
#contact .contact .contact_form .submit p {
  text-align: center;
  margin: auto;
}

footer #footer_contact .footer_contact {
  padding: 8vw 0;
  background-attachment: fixed;
}
footer #footer_contact .footer_contact .footer_contact_text {
  width: 40%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer_contact .footer_contact .footer_contact_text {
    width: 60%;
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 768px) {
  footer #footer_contact .footer_contact .footer_contact_text {
    width: 95%;
    margin-bottom: 12vw;
  }
}
footer #footer_contact .footer_contact .footer_contact_text p {
  color: #fff;
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer_contact .footer_contact .footer_contact_text p {
    font-size: 2vw;
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  footer #footer_contact .footer_contact .footer_contact_text p {
    font-size: 4vw;
    line-height: 8vw;
  }
}
footer #footer_contact .footer_contact .footer_contact_btn {
  width: 40%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer_contact .footer_contact .footer_contact_btn {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  footer #footer_contact .footer_contact .footer_contact_btn {
    width: 95%;
    flex-flow: column;
  }
}
footer #footer_contact .footer_contact .footer_contact_btn a {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  footer #footer_contact .footer_contact .footer_contact_btn a {
    display: block;
    margin-bottom: 8vw;
  }
}
footer #company_detail {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #company_detail {
    height: 70vw;
  }
}
@media screen and (max-width: 768px) {
  footer #company_detail {
    flex-flow: column;
    height: auto;
  }
}
footer #company_detail .company_detail {
  width: 50%;
  height: 100%;
  background-position: center;
  background-size: cover;
  padding: 4vw 0;
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_detail {
    width: 100%;
    padding: 12vw 0;
  }
}
footer #company_detail .company_detail .footer_logo {
  text-align: center;
  width: 30%;
  margin: auto;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #company_detail .company_detail .footer_logo {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_detail .footer_logo {
    width: 45%;
    margin-bottom: 8vw;
  }
}
footer #company_detail .company_detail .footer_logo img {
  width: 100%;
}
footer #company_detail .company_detail .footer_company_text {
  width: 50%;
  margin: auto;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #company_detail .company_detail .footer_company_text {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_detail .footer_company_text {
    width: 95%;
    margin-bottom: 8vw;
  }
}
footer #company_detail .company_detail .footer_company_text p {
  margin-bottom: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #company_detail .company_detail .footer_company_text p {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_detail .footer_company_text p {
    font-size: 4.6vw;
  }
}
footer #company_detail .company_detail .footer_company_text table {
  border-collapse: 20px 10px;
}
footer #company_detail .company_detail .footer_company_text table tr {
  display: flex;
  align-items: flex-start;
}
footer #company_detail .company_detail .footer_company_text table tr th, footer #company_detail .company_detail .footer_company_text table tr td {
  font-size: 1vw;
  padding: 10px 0px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #company_detail .company_detail .footer_company_text table tr th, footer #company_detail .company_detail .footer_company_text table tr td {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_detail .footer_company_text table tr th, footer #company_detail .company_detail .footer_company_text table tr td {
    font-size: 4vw;
  }
}
footer #company_detail .company_detail .footer_company_btn {
  width: 50%;
  margin: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_detail .footer_company_btn {
    width: 90%;
  }
}
footer #company_detail .company_map {
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  footer #company_detail .company_map {
    width: 100%;
    height: 80vw;
  }
}
footer #company_detail .company_map iframe {
  width: 100%;
  height: 100%;
}
footer #footer_menu {
  padding: 4vw 0;
  position: relative;
}
footer #footer_menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  gap: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer_menu ul {
    margin-right: 10vw;
  }
}
@media screen and (max-width: 768px) {
  footer #footer_menu ul {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 768px) {
  footer #footer_menu ul li {
    width: 30%;
  }
}
footer #footer_menu ul li a {
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  text-decoration: none;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer #footer_menu ul li a {
    font-size: 2vw;
  }
  footer #footer_menu ul li a span {
    font-size: 1.4vw;
  }
}
@media screen and (max-width: 768px) {
  footer #footer_menu ul li a {
    font-size: 4vw;
  }
  footer #footer_menu ul li a span {
    font-size: 2vw;
  }
}
footer #footer_menu .pageTop {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translate(0, -50%);
}
@media screen and (max-width: 768px) {
  footer #footer_menu .pageTop {
    display: none;
  }
}
footer #footer_menu .pageTop img {
  width: 100%;
}
footer .copyright {
  padding: 1.5vw 0;
  text-align: center;
  background: linear-gradient(45deg, #00989F, #0B3986);
}
footer .copyright p {
  color: #fff;
}
footer .footer_sp {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1441px) {
  footer .footer_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  footer .footer_sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_sp {
    display: none;
  }
}
footer .footer_sp img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}
footer .footer_sp .pageTop {
  width: 20%;
  margin: 0 auto;
  height: 100%;
}
footer .footer_sp .pageTop a {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer_sp .pageTop a img {
  width: 90%;
  height: 90%;
  vertical-align: bottom;
}/*# sourceMappingURL=style.css.map */