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

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.1vw;
}

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

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

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

#lower .lower {
  height: 30vw;
  background-position: center;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 768px) {
  #lower .lower {
    height: 55vw;
  }
}
#lower .lower .lower_contents {
  position: absolute;
  bottom: 10%;
  left: 10%;
  color: #fff;
}
#lower .lower .lower_contents h3 {
  font-size: 3vw;
}
@media screen and (max-width: 768px) {
  #lower .lower .lower_contents h3 {
    font-size: 5vw;
  }
}
#lower .lower .lower_contents h2 {
  font-size: 5.5vw;
}
@media screen and (max-width: 768px) {
  #lower .lower .lower_contents h2 {
    font-size: 9vw;
  }
}

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: 3.4vw;
  }
}

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: 99999999;
  width: 100vw;
  position: fixed;
}
header #header_pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5vw 2vw;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.8);
}
@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: 15%;
  padding: 0.5vw;
}
header #header_pc .header_logo img {
  width: 100%;
}
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 15px;
  text-decoration: none;
  color: #000;
  font-size: 1vw;
  font-weight: 500;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
header #header_pc .header_menu .main_menu > li > a span {
  color: #E23A3A;
  font-weight: 600;
}
header #header_pc .header_menu .main_menu > li > a i {
  font-size: 2vw;
}
header #header_pc .header_menu .main_menu > li > a button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1vw 2vw;
  border: 1px solid #000;
  background-color: rgba(0, 0, 0, 0);
  color: #000;
  transition: all 0.4s;
}
header #header_pc .header_menu .main_menu > li > a button:hover {
  background-color: #000;
  color: #fff;
}
header #header_pc .header_menu .main_menu > li > a button i {
  font-size: 1vw;
  margin-right: 0.5vw;
}

#header_sp {
  height: 8vw;
  display: flex;
  align-items: top;
  background: rgb(255, 255, 255);
}
@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 (max-width: 768px) {
  #header_sp {
    height: 19vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #header_sp {
    height: 10vw;
  }
}
#header_sp .header_logo {
  width: 50%;
  margin-left: 3vw;
  padding: 1vw;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #header_sp .header_logo {
    width: 25%;
  }
}
#header_sp .header_logo img {
  width: 100%;
}

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

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 4px;
  left: 50%;
  transform: translate(-50%, 0);
  background: #5F6C66;
  transition: 0.3s ease-in-out;
}

.hamburger p {
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #5F6C66;
  font-size: 3vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hamburger p {
    font-size: 2vw;
  }
}

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

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

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

.hamburger p {
  top: 26px;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hamburger p {
    top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .hamburger p {
    top: 20px;
  }
}

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

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  left: 37%;
  top: 57%;
  background: #5F6C66;
  transform: rotate(45deg) translate(-50%, -50%);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hamburger.active span:nth-child(2),
  .hamburger.active span:nth-child(3) {
    left: 40%;
    top: 45%;
  }
}

nav.globalMenuSp {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  color: #000;
  background: rgb(255, 255, 255);
  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%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp ul li {
    margin-bottom: 20px;
  }
}

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

nav.globalMenuSp ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  color: #000;
  padding: 1em 0;
  text-decoration: none;
  font-size: 3.2vw;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp ul li a {
    font-size: 4.2vw;
  }
}
nav.globalMenuSp ul li a span {
  font-size: 3vw;
  color: #E23A3A;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp ul li a span {
    font-size: 3.8vw;
    margin-top: 1vw;
  }
}
nav.globalMenuSp ul li a button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1vw 2vw;
  border: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
  font-size: 2.8vw;
}
@media screen and (max-width: 768px) {
  nav.globalMenuSp ul li a button {
    font-size: 4vw;
  }
}
nav.globalMenuSp ul li a button i {
  font-size: 4vw;
  margin-right: 2vw;
}

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

#mv {
  width: 100vw;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  #mv {
    height: 100vh;
  }
}
#mv .mv {
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #mv .mv {
    height: 100%;
  }
}
#mv .mv::before {
  position: absolute;
  z-index: 1000;
  content: "";
  width: 7vw;
  height: 200vw;
  background-color: #D65E5E;
  top: 70%;
  left: 95%;
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv::before {
    width: 16vw;
    left: 110%;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv::before {
    width: 16vw;
    left: 120%;
  }
}
#mv .mv::after {
  position: absolute;
  z-index: 1000;
  content: "";
  width: 7vw;
  height: 200vw;
  background-color: #D65E5E;
  top: 70%;
  left: 110%;
  transform: translate(-50%, -50%) rotate(45deg);
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv::after {
    width: 16vw;
    left: 140%;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv::after {
    width: 16vw;
    left: 150%;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv .pc {
    display: none;
  }
}
@media screen and (min-width: 1441px) {
  #mv .mv .sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #mv .mv .sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv .sp {
    display: none;
  }
}
#mv .mv .slide-images {
  width: 100vw;
  height: 100vh;
}
#mv .mv .slide-images .slick-list {
  height: 100%;
}
#mv .mv .slide-images .slick-list .slick-track {
  height: 100%;
}
#mv .mv .slide-images .slick-list .slick-track img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#mv .mv .mv_headline {
  position: absolute;
  top: 70%;
  left: 6%;
  z-index: 1000;
  text-align: center;
  display: inline-block;
  text-shadow: 6px 6px 20px rgba(4, 51, 85, 0.6);
}
@media screen and (max-width: 768px) {
  #mv .mv .mv_headline {
    height: 95%;
    width: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    writing-mode: vertical-rl;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv .mv_headline .pc {
    display: none;
  }
}
@media screen and (min-width: 1441px) {
  #mv .mv .mv_headline .sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #mv .mv .mv_headline .sp {
    display: none;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv .mv_headline .sp {
    display: none;
  }
}
#mv .mv .mv_headline h2 {
  color: #fff;
  font-size: 5vw;
  padding: 0vw 1vw;
  margin-bottom: 1vw;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv .mv_headline h2 {
    font-size: 6.5vw;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv .mv_headline h2 {
    font-size: 8vw;
    margin-bottom: 4vw;
    letter-spacing: 1.4vw;
    line-height: 10vw;
  }
}

#top_news .top_news {
  padding: 8vw 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8vw;
}
@media screen and (max-width: 768px) {
  #top_news .top_news {
    padding: 16vw 0;
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_headline {
    text-align: center;
  }
}
#top_news .top_news .top_headline img {
  margin-bottom: 1vw;
}
#top_news .top_news .top_news_contents ul {
  list-style: none;
}
#top_news .top_news .top_news_contents ul a {
  text-decoration: none;
  color: #000;
  display: block;
  font-size: 1vw;
}
#top_news .top_news .top_news_contents ul a:not(:last-child) {
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul a:not(:last-child) {
    margin-bottom: 6vw;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news .top_news_contents ul a {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul a {
    font-size: 3.4vw;
  }
}
#top_news .top_news .top_news_contents ul a li .outline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4vw;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_news_contents ul a li .outline {
    flex-flow: column;
    text-align: center;
    gap: 2vw;
  }
}
#top_news .top_news .top_btn a button {
  padding: 1vw;
  border-radius: 50px;
  background-color: #093869;
  color: #fff;
  border: none;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_btn a button {
    padding: 4vw 8vw;
  }
}
#top_news .top_news .top_btn a button:hover {
  background-color: #fff;
  color: #093869;
  border: 1px solid #093869;
}
#top_news .top_news .top_btn a button i {
  font-size: 1.2vw;
  margin-right: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_news .top_news .top_btn a button i {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_news .top_news .top_btn a button i {
    font-size: 3.8vw;
    margin-right: 4vw;
  }
}

@media screen and (max-width: 768px) {
  #top_service .pc {
    display: none !important;
  }
}
@media screen and (min-width: 1441px) {
  #top_service .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #top_service .sp {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .sp {
    display: none !important;
  }
}
#top_service .top_service {
  position: relative;
  background-position: center;
  background-size: cover;
}
#top_service .top_service .top_service_main_contents {
  background-color: rgba(255, 255, 255, 0.7);
  width: 70%;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-flow: row-reverse;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_main_contents {
    flex-flow: column;
    align-items: center;
  }
}
#top_service .top_service .top_service_main_contents > h4 {
  font-size: 4vw;
  padding: 1vw 0;
  color: #093869;
  margin-bottom: 2vw;
  writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_main_contents > h4 {
    writing-mode: unset;
    font-size: 7vw;
  }
}
#top_service .top_service .top_service_main_contents .top_service_main_contents_flex {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4vw;
  flex-flow: row-reverse;
  margin-bottom: 4vw;
}
#top_service .top_service .top_service_main_contents .top_service_main_content {
  writing-mode: vertical-rl;
  padding: 2vw;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_main_contents .top_service_main_content:nth-child(2) {
    margin-top: 8vw;
  }
}
#top_service .top_service .top_service_main_contents .top_service_main_content:nth-child(3) {
  margin-top: 4vw;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_main_contents .top_service_main_content:nth-child(3) {
    margin-top: 16vw;
  }
}
#top_service .top_service .top_service_main_contents .top_service_main_content:nth-child(4) {
  margin-top: 6vw;
}
#top_service .top_service .top_service_main_contents .top_service_main_content h3 {
  font-size: 4.6vw;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  background-color: #093869;
  padding: 0.5vw;
  display: inline-block;
  margin-left: 2vw;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_main_contents .top_service_main_content h3 {
    padding: 1vw;
    font-size: 7vw;
  }
}
#top_service .top_service .top_service_main_contents .top_service_main_content h2 {
  font-size: 5.6vw;
  font-family: "Noto Serif JP", serif;
  color: #fff;
  background-color: #E23A3A;
  padding: 0.5vw;
  display: inline-block;
  margin-left: 2vw;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_main_contents .top_service_main_content h2 {
    padding: 1vw;
    font-size: 8.5vw;
  }
}
#top_service .top_service .top_service_main_contents .top_service_main_content h4 {
  padding-top: 8vw;
  font-size: 3.6vw;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_main_contents .top_service_main_content h4 {
    display: inline-block;
    padding-top: 4vw;
    font-size: 4.2vw;
  }
}
#top_service .top_service .top_service_main_contents .top_service_main_content h5 {
  padding-top: 8vw;
  font-size: 2vw;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_main_contents .top_service_main_content h5 {
    display: inline-block;
    padding-top: 4vw;
    font-size: 3vw;
  }
}
#top_service .top_service .top_service_contents {
  position: absolute;
  top: 15%;
  left: 5%;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents {
    position: static;
    padding: 2vw;
  }
}
#top_service .top_service .top_service_contents h5 {
  color: #fff;
  font-size: 2.5vw;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_service_contents h5 {
    font-size: 6vw;
  }
}
#top_service .top_service .top_service_contents h5 span {
  color: #E23A3A;
}
#top_service .top_service .top_btn {
  position: absolute;
  top: 70%;
  left: 5%;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_btn {
    position: static;
    text-align: center;
    margin-bottom: 2vw;
  }
}
#top_service .top_service .top_btn a button {
  padding: 1.5vw 4vw;
  border-radius: 50px;
  background-color: #fff;
  color: #093869;
  border: none;
  transition: all 0.4s;
  font-size: 1.6vw;
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_btn a button {
    padding: 4vw 8vw;
    font-size: 4vw;
  }
}
#top_service .top_service .top_btn a button:hover {
  background-color: #093869;
  color: #fff;
}
#top_service .top_service .top_btn a button i {
  font-size: 2vw;
  margin-right: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service .top_btn a button i {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service .top_btn a button i {
    font-size: 3.8vw;
    margin-right: 4vw;
  }
}
#top_service .top_service_center {
  padding: 4vw 0;
  background-size: cover;
  background-position: center;
}
#top_service .top_service_center h2 {
  padding: 1vw;
  background-color: #093869;
  color: #fff;
  width: 60%;
  text-align: end;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #top_service .top_service_center h2 {
    width: 80%;
    padding: 2vw;
    margin-bottom: 8vw;
  }
}
#top_service .top_service_center .top_service_center_contents01 {
  width: 60%;
  margin: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  margin-bottom: 12vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service_center .top_service_center_contents01 {
    width: 80%;
    margin-bottom: 18vw;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service_center .top_service_center_contents01 {
    width: 95%;
    justify-content: flex-start;
    margin-bottom: 65vw;
  }
}
#top_service .top_service_center .top_service_center_contents01 .top_service_center_text {
  width: 50%;
  padding: 2vw;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  left: 0%;
  top: 40%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service_center .top_service_center_contents01 .top_service_center_text {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service_center .top_service_center_contents01 .top_service_center_text {
    width: 85%;
    top: 80%;
    left: 15%;
  }
}
#top_service .top_service_center .top_service_center_contents01 .top_service_center_text p {
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service_center .top_service_center_contents01 .top_service_center_text p {
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service_center .top_service_center_contents01 .top_service_center_text p {
    line-height: 8vw;
  }
}
#top_service .top_service_center .top_service_center_contents01 .top_service_center_image {
  width: 70%;
}
@media screen and (max-width: 768px) {
  #top_service .top_service_center .top_service_center_contents01 .top_service_center_image {
    width: 95%;
  }
}
#top_service .top_service_center .top_service_center_contents01 .top_service_center_image img {
  width: 100%;
}
#top_service .top_service_center .top_service_center_contents02 {
  width: 60%;
  margin: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-bottom: 12vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service_center .top_service_center_contents02 {
    width: 80%;
    margin-bottom: 24vw;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service_center .top_service_center_contents02 {
    width: 95%;
    margin-bottom: 85vw;
  }
}
#top_service .top_service_center .top_service_center_contents02 .top_service_center_text {
  width: 50%;
  padding: 2vw;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  right: 0%;
  top: 40%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service_center .top_service_center_contents02 .top_service_center_text {
    width: 70%;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service_center .top_service_center_contents02 .top_service_center_text {
    width: 85%;
    top: 80%;
    left: 15%;
  }
}
#top_service .top_service_center .top_service_center_contents02 .top_service_center_text h4 {
  color: #E23A3A;
  margin-bottom: 1.5vw;
}
@media screen and (max-width: 768px) {
  #top_service .top_service_center .top_service_center_contents02 .top_service_center_text h4 {
    font-size: 6vw;
  }
}
#top_service .top_service_center .top_service_center_contents02 .top_service_center_text p {
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service_center .top_service_center_contents02 .top_service_center_text p {
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service_center .top_service_center_contents02 .top_service_center_text p {
    line-height: 8vw;
  }
}
#top_service .top_service_center .top_service_center_contents02 .top_service_center_image {
  width: 70%;
}
@media screen and (max-width: 768px) {
  #top_service .top_service_center .top_service_center_contents02 .top_service_center_image {
    width: 95%;
  }
}
#top_service .top_service_center .top_service_center_contents02 .top_service_center_image img {
  width: 100%;
}
#top_service .top_service_bottom {
  padding: 4vw 0;
  background-position: top right;
  background-size: cover;
  position: relative;
}
#top_service .top_service_bottom h3 {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  width: 40%;
  margin-left: 12vw;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service_bottom h3 {
    width: 60%;
    margin-left: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service_bottom h3 {
    width: 80%;
    margin-bottom: 4vw;
    margin-left: 3vw;
  }
}
#top_service .top_service_bottom p {
  color: #fff;
  width: 60%;
  margin-left: 12vw;
  line-height: 2vw;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_service .top_service_bottom p {
    line-height: 4vw;
    margin-bottom: 4vw;
    margin-left: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #top_service .top_service_bottom p {
    line-height: 8vw;
    margin-bottom: 8vw;
    width: 80%;
    margin-left: 3vw;
  }
}
#top_service .top_service_bottom .top_service_bottom_image {
  width: 60%;
  margin-right: 8vw;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  #top_service .top_service_bottom .top_service_bottom_image {
    margin: auto;
  }
}
#top_service .top_service_bottom .top_service_bottom_image img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  #top_service .top_service_bottom .top_service_bottom_image img {
    margin-bottom: 2vw;
  }
}

#top_about .top_about {
  background-position: center;
  background-size: cover;
  padding: 4vw 0;
}
@media screen and (max-width: 768px) {
  #top_about .top_about {
    padding: 8vw 0;
  }
}
#top_about .top_about .top_headline {
  width: 30%;
  margin: auto;
  margin-bottom: 4vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_headline {
    width: 80%;
    margin-bottom: 8vw;
  }
  #top_about .top_about .top_headline img {
    width: 80%;
    margin-bottom: 2vw;
  }
}
#top_about .top_about .top_about_contents {
  width: 60%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents {
    width: 90%;
  }
}
#top_about .top_about .top_about_contents .top_about_content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about .top_about_contents .top_about_content {
    margin-bottom: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_content {
    flex-flow: column;
    margin-bottom: 6vw;
  }
}
#top_about .top_about .top_about_contents .top_about_content .top_about_left {
  width: 35%;
  background-color: #E23A3A;
  height: 4vw;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about .top_about_contents .top_about_content .top_about_left {
    height: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_content .top_about_left {
    width: 100%;
    height: 12vw;
  }
}
#top_about .top_about .top_about_contents .top_about_content .top_about_left::after {
  position: absolute;
  content: "";
  display: block;
  width: 1vw;
  height: 0.5vw;
  bottom: 0;
  left: 100%;
  background-color: #E23A3A;
  clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_content .top_about_left::after {
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    bottom: auto;
    top: 100%;
    left: 50%;
    width: 4vw;
    height: 4vw;
    transform: translate(-50%, 0);
  }
}
#top_about .top_about .top_about_contents .top_about_content .top_about_left p {
  color: #fff;
}
#top_about .top_about .top_about_contents .top_about_content .top_about_right {
  width: 60%;
  background-color: #fff;
  padding: 1vw 2vw;
  margin-top: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_about .top_about .top_about_contents .top_about_content .top_about_right {
    margin-top: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_about .top_about .top_about_contents .top_about_content .top_about_right {
    width: 100%;
    text-align: center;
    padding: 4vw;
  }
}

#top_recruit .top_recruit {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 30vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit .top_recruit {
    height: 35vw;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit {
    height: auto;
    flex-flow: column-reverse;
  }
}
#top_recruit .top_recruit .top_recruit_left {
  width: 40%;
  height: 100%;
  background-color: #093869;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit .top_recruit .top_recruit_left {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit .top_recruit_left {
    width: 100%;
    height: auto;
    padding: 8vw 0;
  }
}
#top_recruit .top_recruit .top_recruit_left .top_headline {
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit .top_recruit .top_recruit_left .top_headline {
    width: 80%;
    margin: 0 auto;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit .top_recruit_left .top_headline {
    width: 60%;
    margin: 0 auto;
    margin-bottom: 8vw;
  }
}
#top_recruit .top_recruit .top_recruit_left .top_headline img {
  margin-bottom: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit .top_recruit .top_recruit_left .top_headline img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit .top_recruit_left .top_headline img {
    width: 100%;
    margin-bottom: 2vw;
  }
}
#top_recruit .top_recruit .top_recruit_left .top_headline h5 {
  text-align: center;
  color: #fff;
}
#top_recruit .top_recruit .top_recruit_left .top_btn a button {
  padding: 1.5vw 4vw;
  border-radius: 50px;
  background-color: #fff;
  color: #093869;
  border: none;
  transition: all 0.4s;
  font-size: 1.2vw;
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit .top_recruit_left .top_btn a button {
    padding: 4vw 8vw;
    font-size: 3.4vw;
  }
}
#top_recruit .top_recruit .top_recruit_left .top_btn a button:hover {
  background-color: #093869;
  color: #fff;
  border: 1px solid #fff;
}
#top_recruit .top_recruit .top_recruit_left .top_btn a button i {
  font-size: 1.5vw;
  margin-right: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit .top_recruit .top_recruit_left .top_btn a button i {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit .top_recruit_left .top_btn a button i {
    font-size: 3.8vw;
    margin-right: 4vw;
  }
}
#top_recruit .top_recruit .top_recruit_right {
  width: 60%;
  height: 100%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_recruit .top_recruit .top_recruit_right {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  #top_recruit .top_recruit .top_recruit_right {
    width: 100%;
    height: auto;
  }
}
#top_recruit .top_recruit .top_recruit_right img {
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

#top_contact .top_contact {
  background-position: center;
  background-size: cover;
  padding: 4vw 0;
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact {
    padding: 8vw 0;
  }
}
#top_contact .top_contact .top_headline {
  width: 40%;
  margin: auto;
  text-align: center;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact .top_headline {
    width: 60%;
    margin-bottom: 6vw;
  }
}
#top_contact .top_contact .top_headline img {
  margin-bottom: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #top_contact .top_contact .top_headline img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact .top_headline img {
    width: 100%;
  }
}
#top_contact .top_contact .top_contact_contents {
  width: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact .top_contact_contents {
    width: 90%;
    flex-flow: column;
  }
}
#top_contact .top_contact .top_contact_contents a {
  display: block;
  text-decoration: none;
  width: 50%;
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact .top_contact_contents a {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact .top_contact_contents a:first-child {
    margin-bottom: 4vw;
  }
}
#top_contact .top_contact .top_contact_contents a:hover button {
  background-color: #fff;
  border: 1px solid #E23A3A;
  color: #E23A3A;
}
#top_contact .top_contact .top_contact_contents a:hover button span {
  background-color: #E23A3A;
}
#top_contact .top_contact .top_contact_contents a:hover button span i {
  color: #fff;
}
#top_contact .top_contact .top_contact_contents a button {
  transition: all 0.4s;
  background-color: #E23A3A;
  color: #fff;
  border: none;
  padding: 1.5vw;
  border-radius: 50px;
  width: 100%;
  font-size: 2vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1vw;
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact .top_contact_contents a button {
    padding: 4vw;
    font-size: 4.5vw;
    gap: 4vw;
  }
}
#top_contact .top_contact .top_contact_contents a button span {
  width: 3vw;
  height: 3vw;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  #top_contact .top_contact .top_contact_contents a button span {
    width: 8vw;
    height: 8vw;
  }
}
#top_contact .top_contact .top_contact_contents a button span i {
  color: #E23A3A;
  transition: all 0.4s;
}

#about .about .greeting {
  background-color: #093869;
  padding: 4vw 0;
}
@media screen and (max-width: 768px) {
  #about .about .greeting {
    padding: 8vw 0;
  }
}
#about .about .greeting .greeting_headline {
  text-align: center;
  width: 40%;
  margin: auto;
  margin-bottom: 2vw;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #about .about .greeting .greeting_headline {
    width: 80%;
    margin-bottom: 6vw;
  }
  #about .about .greeting .greeting_headline img {
    width: 20%;
  }
}
#about .about .greeting .greeting_contents {
  width: 80%;
  margin-left: 0;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .greeting .greeting_contents {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #about .about .greeting .greeting_contents {
    width: 90%;
    margin: auto;
    flex-flow: column;
  }
}
#about .about .greeting .greeting_contents img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #about .about .greeting .greeting_contents img {
    width: 100%;
  }
}
#about .about .greeting .greeting_contents p {
  width: 50%;
  color: #fff;
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .greeting .greeting_contents p {
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about .greeting .greeting_contents p {
    width: 100%;
    line-height: 8vw;
  }
}
#about .about .raise {
  padding: 4vw 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  #about .about .raise {
    padding: 8vw 0;
  }
}
#about .about .raise .raise_point {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  height: 100%;
}
@media screen and (max-width: 768px) {
  #about .about .raise .raise_point {
    width: 100%;
    height: auto;
  }
}
#about .about .raise .raise_point img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  #about .about .raise .raise_point img {
    width: 100%;
    height: auto;
  }
}
#about .about .raise .raise_headline {
  text-align: center;
  width: 40%;
  margin: auto;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #about .about .raise .raise_headline {
    width: 80%;
    margin-bottom: 6vw;
  }
  #about .about .raise .raise_headline img {
    width: 20%;
  }
}
#about .about .raise .raise_contents {
  width: 80%;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .raise .raise_contents {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #about .about .raise .raise_contents {
    width: 90%;
    margin: auto;
    flex-flow: column-reverse;
  }
}
#about .about .raise .raise_contents img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #about .about .raise .raise_contents img {
    width: 100%;
  }
}
#about .about .raise .raise_contents .raise_text {
  width: 50%;
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .raise .raise_contents .raise_text {
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about .raise .raise_contents .raise_text {
    width: 100%;
    line-height: 8vw;
  }
}
#about .about .raise .raise_contents .raise_text p {
  margin-bottom: 1vw;
}
#about .about .raise .raise_contents .raise_text h4 {
  text-align: end;
}
#about .about .raise .raise_contents .raise_text h4 span {
  font-weight: 300;
  font-size: 1.2vw;
  margin-right: 1vw;
}
@media screen and (max-width: 768px) {
  #about .about .raise .raise_contents .raise_text h4 span {
    font-size: 2vw;
  }
}
#about .about .about_contents .top_about {
  background-position: center;
  background-size: cover;
  padding: 4vw 0;
}
@media screen and (max-width: 768px) {
  #about .about .about_contents .top_about {
    padding: 8vw 0;
  }
}
#about .about .about_contents .top_about .top_headline {
  width: 30%;
  margin: auto;
  margin-bottom: 4vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #about .about .about_contents .top_about .top_headline .star {
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  #about .about .about_contents .top_about .top_headline {
    width: 80%;
    margin-bottom: 8vw;
  }
  #about .about .about_contents .top_about .top_headline img {
    width: 80%;
    margin-bottom: 2vw;
  }
}
#about .about .about_contents .top_about .top_about_contents {
  width: 60%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #about .about .about_contents .top_about .top_about_contents {
    width: 90%;
  }
}
#about .about .about_contents .top_about .top_about_contents .top_about_content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .about_contents .top_about .top_about_contents .top_about_content {
    margin-bottom: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about .about_contents .top_about .top_about_contents .top_about_content {
    flex-flow: column;
    margin-bottom: 6vw;
  }
}
#about .about .about_contents .top_about .top_about_contents .top_about_content .top_about_left {
  width: 35%;
  background-color: #E23A3A;
  height: 4vw;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .about_contents .top_about .top_about_contents .top_about_content .top_about_left {
    height: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about .about_contents .top_about .top_about_contents .top_about_content .top_about_left {
    width: 100%;
    height: 12vw;
  }
}
#about .about .about_contents .top_about .top_about_contents .top_about_content .top_about_left::after {
  position: absolute;
  content: "";
  display: block;
  width: 1vw;
  height: 0.5vw;
  bottom: 0;
  left: 100%;
  background-color: #E23A3A;
  clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
}
@media screen and (max-width: 768px) {
  #about .about .about_contents .top_about .top_about_contents .top_about_content .top_about_left::after {
    clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
    bottom: auto;
    top: 100%;
    left: 50%;
    width: 4vw;
    height: 4vw;
    transform: translate(-50%, 0);
  }
}
#about .about .about_contents .top_about .top_about_contents .top_about_content .top_about_left p {
  color: #fff;
}
#about .about .about_contents .top_about .top_about_contents .top_about_content .top_about_right {
  width: 60%;
  background-color: #fff;
  padding: 1vw 2vw;
  margin-top: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #about .about .about_contents .top_about .top_about_contents .top_about_content .top_about_right {
    margin-top: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #about .about .about_contents .top_about .top_about_contents .top_about_content .top_about_right {
    width: 100%;
    text-align: center;
    padding: 4vw;
  }
}
#about .about .map {
  width: 100%;
}
#about .about .map iframe {
  width: 100%;
  vertical-align: bottom;
}

#service .service {
  background-position: center;
  background-size: cover;
  padding: 4vw 0;
}
@media screen and (max-width: 768px) {
  #service .service {
    padding: 8vw 0;
  }
}
#service .service .service_headline {
  text-align: center;
  width: 40%;
  margin: auto;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #service .service .service_headline {
    width: 80%;
    margin-bottom: 6vw;
  }
  #service .service .service_headline img {
    width: 20%;
  }
}
#service .service .service_contents {
  position: relative;
  margin-bottom: 12vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents {
    margin-bottom: 30vw;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents {
    margin-bottom: 100vw;
  }
}
#service .service .service_contents:nth-child(odd) .service_image {
  margin-left: auto;
  margin-right: 0;
}
#service .service .service_contents:nth-child(odd) .service_text {
  right: auto;
  left: 0;
}
#service .service .service_contents:nth-child(odd) .service_text h2 {
  color: #E23A3A;
  border-bottom: 1px solid #E23A3A;
}
#service .service .service_contents .service_image {
  width: 55%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents .service_image {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents .service_image {
    width: 90%;
  }
}
#service .service .service_contents .service_image img {
  width: 100%;
}
#service .service .service_contents .service_text {
  width: 55%;
  background-color: rgba(255, 255, 255, 0.85);
  padding: 4vw;
  position: absolute;
  top: 20%;
  right: 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents .service_text {
    width: 65%;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents .service_text {
    width: 95%;
    top: 80%;
  }
}
#service .service .service_contents .service_text h2 {
  font-family: "Noto Serif JP", serif;
  border-bottom: 1px solid #0C4E95;
  color: #0C4E95;
  font-size: 4.5vw;
  margin-bottom: 2vw;
  width: 80%;
}
@media screen and (max-width: 768px) {
  #service .service .service_contents .service_text h2 {
    width: 100%;
    font-size: 8vw;
  }
}
#service .service .service_contents .service_text p {
  width: 80%;
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #service .service .service_contents .service_text p {
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #service .service .service_contents .service_text p {
    width: 100%;
    line-height: 8vw;
  }
}

.archive {
  width: 100%;
  margin: auto;
  padding: 4vw 0;
  background-position: center;
  background-size: cover;
}
.archive .news_container {
  width: 80%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .archive .news_container {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .archive .news_container {
    width: 95%;
    flex-flow: column;
  }
}
.archive .news {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .archive .news {
    width: 100%;
    margin-bottom: 8vw;
  }
}
.archive .news ul {
  list-style: none;
}
.archive .news ul a {
  display: block;
  text-decoration: none;
  color: #000;
  padding: 2vw;
}
@media screen and (max-width: 768px) {
  .archive .news ul a {
    padding: 4vw 2vw;
  }
}
.archive .news ul a:last-child {
  border: none;
}
.archive .news ul a li .title {
  font-size: 1.6vw;
  text-align: center;
  background-color: #093869;
  padding: 1vw;
  color: #fff;
  margin-bottom: 1.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .archive .news ul a li .title {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .archive .news ul a li .title {
    font-size: 4vw;
    padding: 2vw;
    margin-bottom: 3vw;
  }
}
.archive .news ul a li .outline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  .archive .news ul a li .outline {
    flex-flow: column;
  }
}
.archive .news ul a li .outline .archive-image {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .archive .news ul a li .outline .archive-image {
    width: 60%;
    height: 50%;
  }
  .archive .news ul a li .outline .archive-image img {
    height: 100%;
  }
}
.archive .news ul a li .outline .archive-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive .news ul a li .outline .archive_detail {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .archive .news ul a li .outline .archive_detail {
    width: 100%;
  }
}
.archive .news ul a li .outline .archive_detail .category {
  display: inline-block;
  background-color: #E23A3A;
  color: #fff;
  padding: 0.5vw 2vw;
  margin-bottom: 1vw;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .archive .news ul a li .outline .archive_detail .category {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .archive .news ul a li .outline .archive_detail .category {
    font-size: 3.4vw;
    padding: 1vw 2vw;
    margin-bottom: 2vw;
  }
}
.archive .news ul a li .outline .archive_detail .text {
  font-size: 1vw;
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .archive .news ul a li .outline .archive_detail .text {
    font-size: 1.8vw;
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  .archive .news ul a li .outline .archive_detail .text {
    font-size: 3.4vw;
    line-height: 8vw;
  }
}
.archive .news_widget {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .archive .news_widget {
    width: 100%;
  }
}
.archive .news_widget .news_category {
  padding: 2vw;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  .archive .news_widget .news_category {
    padding: 4vw;
  }
}
.archive .news_widget .news_category h3 {
  font-size: 1.6vw;
  text-align: center;
  background-color: #093869;
  padding: 1vw;
  color: #fff;
  margin-bottom: 1.5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .archive .news_widget .news_category h3 {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .archive .news_widget .news_category h3 {
    font-size: 4vw;
    padding: 2vw;
  }
}
.archive .news_widget .news_category ul {
  list-style: none;
}
.archive .news_widget .news_category ul li {
  display: block;
  margin-bottom: 1.5vw;
  padding-bottom: 1vw;
  border-bottom: 1px dotted #000;
  font-size: 1vw;
}
.archive .news_widget .news_category ul li:last-child {
  border: none;
}
.archive .news_widget .news_category ul li a {
  text-decoration: none;
  color: #000;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .archive .news_widget .news_category ul li a {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  .archive .news_widget .news_category ul li a {
    font-size: 3.4vw;
  }
}
.archive .news_widget .news_category ul li a i {
  margin-right: 1.2vw;
}

.navigation {
  margin-top: 4vw;
  text-align: center;
}
.navigation span {
  border: none !important;
  font-size: 1vw;
}
.navigation .current {
  border-bottom: 1px solid #000;
}

#news_single {
  padding: 8vw 0;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  #news_single {
    padding: 16vw 0;
  }
}
#news_single .news_contents {
  width: 60%;
  margin: auto;
}
#news_single .news_contents ul {
  list-style: none;
}
#news_single .news_contents ul .news_image {
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news_contents ul .news_image {
    margin-bottom: 3vw;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news_contents ul .news_image {
    margin-bottom: 4vw;
  }
}
#news_single .news_contents ul .category {
  display: inline-block;
  background-color: #E23A3A;
  color: #fff;
  padding: 0.5vw 2vw;
  margin-bottom: 1vw;
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news_contents ul .category {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news_contents ul .category {
    font-size: 3.4vw;
    padding: 1vw 2vw;
    margin-bottom: 2vw;
  }
}
#news_single .news_contents ul .title {
  font-size: 2vw;
  margin-bottom: 2vw;
  background-color: #093869;
  color: #fff;
  padding: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news_contents ul .title {
    font-size: 3vw;
    margin-bottom: 3vw;
    padding: 1.5vw;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news_contents ul .title {
    font-size: 4.5vw;
    padding: 2vw;
    margin-bottom: 4vw;
  }
}
#news_single .news_contents ul .descn {
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #news_single .news_contents ul .descn {
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #news_single .news_contents ul .descn {
    line-height: 8vw;
  }
}

#works .works {
  width: 80%;
  margin: auto;
  padding: 4vw 0;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #works .works {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  #works .works {
    width: 95%;
    padding: 8vw 0;
  }
}
#works .works .works_text {
  text-align: center;
  width: 60%;
  margin: auto;
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #works .works .works_text {
    width: 100%;
    margin-bottom: 8vw;
  }
}
#works .works .works_text img {
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #works .works .works_text img {
    width: 10%;
  }
}
#works .works ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  #works .works ul {
    gap: 4vw;
  }
}
#works .works ul li {
  width: 30%;
}
@media screen and (max-width: 768px) {
  #works .works ul li {
    width: 80%;
  }
}
#works .works ul li img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#recruit {
  background-position: center;
  background-size: cover;
}
#recruit .recruit .recruit_works {
  padding: 4vw 0;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_works {
    padding: 8vw 0;
  }
}
#recruit .recruit .recruit_works .recruit_works_headline {
  text-align: center;
  width: 40%;
  margin: auto;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_works .recruit_works_headline {
    width: 90%;
    margin-bottom: 6vw;
  }
  #recruit .recruit .recruit_works .recruit_works_headline img {
    width: 20%;
  }
}
#recruit .recruit .recruit_works .recruit_works_contents {
  width: 80%;
  margin-left: 0;
  margin-right: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_works .recruit_works_contents {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_works .recruit_works_contents {
    width: 90%;
    margin: auto;
    flex-flow: column;
  }
}
#recruit .recruit .recruit_works .recruit_works_contents img {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_works .recruit_works_contents img {
    width: 100%;
  }
}
#recruit .recruit .recruit_works .recruit_works_contents p {
  width: 50%;
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_works .recruit_works_contents p {
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_works .recruit_works_contents p {
    width: 100%;
    line-height: 8vw;
  }
}
#recruit .recruit .recruit_contents .recruit_works_headline {
  text-align: center;
  width: 40%;
  margin: auto;
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_works_headline {
    width: 90%;
    margin-bottom: 6vw;
  }
  #recruit .recruit .recruit_contents .recruit_works_headline img {
    width: 20%;
  }
}
#recruit .recruit .recruit_contents .recruit_table {
  width: 70%;
  margin: auto;
  padding-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_table {
    width: 95%;
  }
}
#recruit .recruit .recruit_contents .recruit_table table {
  width: 100%;
  border-collapse: collapse;
}
#recruit .recruit .recruit_contents .recruit_table table tr {
  border: 1px solid #A9BDC0;
}
#recruit .recruit .recruit_contents .recruit_table table tr th, #recruit .recruit .recruit_contents .recruit_table table tr td {
  font-size: 1vw;
  padding: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_contents .recruit_table table tr th, #recruit .recruit .recruit_contents .recruit_table table tr td {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_table table tr th, #recruit .recruit .recruit_contents .recruit_table table tr td {
    font-size: 3.4vw;
  }
}
#recruit .recruit .recruit_contents .recruit_table table tr th {
  width: 30%;
  background-color: #093869;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_table table tr th {
    width: 25%;
  }
}
#recruit .recruit .recruit_contents .recruit_table table tr td {
  width: 70%;
  background-color: #fff;
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #recruit .recruit .recruit_contents .recruit_table table tr td {
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #recruit .recruit .recruit_contents .recruit_table table tr td {
    width: 75%;
    line-height: 8vw;
  }
}

#contact {
  background-position: center;
  background-size: cover;
}
#contact .contact .contact_text {
  text-align: center;
  padding: 8vw 0;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_text {
    padding: 16vw 0;
    text-align: start;
  }
  #contact .contact .contact_text p {
    width: 95%;
    margin: auto;
    line-height: 8vw;
  }
}
#contact .contact .table {
  background-color: #fff;
  padding: 4vw 0;
}
@media screen and (max-width: 768px) {
  #contact .contact .table {
    padding: 8vw 0;
  }
}
#contact .contact .table table {
  width: 60%;
  margin: auto;
  border-collapse: collapse;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .table table {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .table table {
    width: 95%;
  }
}
#contact .contact .table table tr:first-child td input {
  width: 5%;
}
@media screen and (max-width: 768px) {
  #contact .contact .table table tr {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-flow: column;
    margin-bottom: 4vw;
  }
}
#contact .contact .table table tr th, #contact .contact .table table tr td {
  padding: 1.5vw 0;
  font-size: 1vw;
  text-align: start;
  font-weight: 400;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .table table tr th, #contact .contact .table table tr td {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .table table tr th, #contact .contact .table table tr td {
    font-size: 3.4vw;
  }
}
#contact .contact .table table tr th span {
  padding: 0.5vw;
  color: #fff;
  margin-right: 1vw;
}
@media screen and (max-width: 768px) {
  #contact .contact .table table tr th span {
    padding: 1vw;
    margin-right: 2vw;
  }
}
#contact .contact .table table tr th .required {
  background-color: #E23A3A;
}
#contact .contact .table table tr th .any {
  background-color: #979797;
}
#contact .contact .table table tr td input {
  width: 100%;
  padding: 1vw;
  border: none;
  background-color: #F0F0F0;
}
@media screen and (max-width: 768px) {
  #contact .contact .table table tr td input {
    padding: 4vw;
  }
}
#contact .contact .table table tr td textarea {
  width: 100%;
  padding: 3vw;
  border: none;
  background-color: #F0F0F0;
}
@media screen and (max-width: 768px) {
  #contact .contact .table table tr td textarea {
    padding: 8vw;
  }
}
#contact .contact .policy {
  padding: 4vw 0;
}
@media screen and (max-width: 768px) {
  #contact .contact .policy {
    padding: 8vw 0;
  }
}
#contact .contact .policy .policy_contents {
  width: 70%;
  margin: auto;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .policy .policy_contents {
    width: 85%;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .policy .policy_contents {
    width: 95%;
  }
}
#contact .contact .policy .policy_contents h2 {
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  #contact .contact .policy .policy_contents h2 {
    margin-bottom: 2vw;
  }
}
#contact .contact .policy .policy_contents p {
  margin-bottom: 4vw;
}
@media screen and (max-width: 768px) {
  #contact .contact .policy .policy_contents p {
    margin-bottom: 8vw;
  }
}
#contact .contact .policy .policy_contents h4 {
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  #contact .contact .policy .policy_contents h4 {
    margin-bottom: 2vw;
  }
}
#contact .contact .policy .policy_contents ul li {
  font-size: 1vw;
  line-height: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #contact .contact .policy .policy_contents ul li {
    font-size: 1.8vw;
    line-height: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #contact .contact .policy .policy_contents ul li {
    font-size: 3.4vw;
    line-height: 8vw;
  }
}
#contact .contact .contact_bottom {
  background-color: #fff;
  padding: 4vw 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_bottom {
    padding: 8vw 0;
  }
}
#contact .contact .contact_bottom .agree {
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_bottom .agree {
    margin-bottom: 8vw;
  }
}
#contact .contact .contact_bottom .agree .required {
  background-color: #E23A3A;
  padding: 0.5vw;
  color: #fff;
  margin-right: 1vw;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_bottom .agree .required {
    padding: 1vw;
    margin-right: 2vw;
  }
}
#contact .contact .contact_bottom .submit button {
  padding: 1vw 2vw;
  background-color: #093869;
  color: #fff;
  border-radius: 50px;
  border: none;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_bottom .submit button {
    padding: 3vw 6vw;
  }
}
#contact .contact .contact_bottom .submit button i {
  font-size: 1.2vw;
  margin-right: 0.5vw;
}
@media screen and (max-width: 768px) {
  #contact .contact .contact_bottom .submit button i {
    font-size: 4vw;
    margin-right: 2vw;
  }
}

form > p {
  display: none;
}

@media screen and (max-width: 768px) {
  footer .pc {
    display: none !important;
  }
}
@media screen and (min-width: 1441px) {
  footer .sp {
    display: none !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  footer .sp {
    display: none !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .sp {
    display: none !important;
  }
}
footer .footer {
  background-position: center;
  background-size: cover;
  width: 100%;
  padding: 4vw 0;
}
@media screen and (max-width: 768px) {
  footer .footer {
    padding: 8vw 0;
  }
}
footer .footer .footer_company {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60%;
  margin: auto;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_company {
    width: 80%;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_company {
    width: 95%;
    flex-flow: column;
    margin-bottom: 8vw;
  }
}
footer .footer .footer_company .footer_left {
  width: 40%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_company .footer_left {
    width: 80%;
    margin-bottom: 4vw;
  }
}
footer .footer .footer_company .footer_left .footer_logo {
  width: 40%;
  margin: auto;
  margin-bottom: 0.5vw;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_company .footer_left .footer_logo {
    width: 60%;
    margin-bottom: 2vw;
  }
}
footer .footer .footer_company .footer_left .footer_logo img {
  width: 100%;
}
footer .footer .footer_company .footer_left h4 {
  width: 100%;
  color: #fff;
  margin-bottom: 0.5vw;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_company .footer_left h4 {
    font-size: 6vw;
    margin-bottom: 2vw;
  }
}
footer .footer .footer_company .footer_left p {
  width: 100%;
  color: #fff;
}
footer .footer .footer_company .footer_right {
  width: 55%;
  height: 20vw;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_company .footer_right {
    width: 90%;
    height: 45vw;
  }
}
footer .footer .footer_company .footer_right iframe {
  width: 100%;
  height: 100%;
}
footer .footer .footer_tel {
  width: 50%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_tel {
    width: 60%;
    margin-bottom: 6vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_tel {
    width: 95%;
    flex-flow: column;
    margin-bottom: 8vw;
  }
}
footer .footer .footer_tel a {
  width: 50%;
  display: block;
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-size: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_tel a {
    font-size: 3vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_tel a {
    font-size: 6vw;
  }
}
footer .footer .footer_tel a span {
  margin-right: 1vw;
  font-size: 1.6vw;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_tel a span {
    font-size: 4vw;
    display: block;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_menu {
    width: 95%;
  }
}
footer .footer .footer_menu ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  footer .footer .footer_menu ul {
    flex-flow: column;
    gap: 6vw;
  }
}
footer .footer .footer_menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 1.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer .footer_menu ul li a {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  footer .footer .footer_menu ul li a {
    font-size: 4vw;
  }
}
footer .copyright {
  text-align: center;
  padding: 1.5vw 0;
  background-color: #093869;
  color: #fff;
}
@media screen and (max-width: 768px) {
  footer .copyright {
    padding: 4vw 0;
  }
}/*# sourceMappingURL=style.css.map */