@charset "UTF-8";
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Shippori Mincho", serif !important;
}

html {
  font-size: 62.5%;
}

body {
  line-height: 1.8vw;
  letter-spacing: 0.2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  body {
    line-height: 6.5vw;
  }
}
@media screen and (max-width: 768px) {
  body {
    line-height: 9vw;
  }
}

.header.change-color {
  background-color: rgba(0, 0, 0, 0.6);
  transition: 0.3s;
}

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

p {
  font-size: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  p {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  p {
    font-size: 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;
  }
}

#lower {
  width: 100%;
  height: 50vh;
  position: relative;
}
#lower h1 {
  position: absolute;
  top: 70%;
  left: 2vw;
  color: #fff;
}

.junbi {
  text-align: center;
  padding: 8vw 0;
  color: #295098;
}

.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 {
  position: fixed;
  width: 100%;
  z-index: 999999999;
}
header #header_pc {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1vw 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 h2 {
  color: #fff;
}
header #header_pc .header_menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
  list-style: none;
}
header #header_pc .header_menu ul li {
  text-align: center;
}
header #header_pc .header_menu ul li a {
  text-decoration: none;
  color: #fff;
  text-align: center;
  font-size: 1vw;
}
header #header_pc .header_menu ul li a span {
  font-size: 0.8vw;
}

@media screen and (min-width: 1441px) {
  #header_sp {
    display: none;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1440px) {
  #header_sp {
    display: none;
  }
}

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

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

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* 開いている時のハンバーガー */
.hamburger.active span:nth-child(1) {
  top: 20px;
  left: 6px;
  background: #fff;
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 20px;
  background: #fff;
  transform: rotate(45deg);
}

/* ==============================
   SPナビ
============================== */
nav.globalMenuSp {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  /* 画面の80% */
  width: 80%;
  height: 100vh;
  color: #fff;
  background: #295098;
  /* 最初は画面右側に隠す */
  transform: translateX(100%);
  /* 右からスライド */
  transition: transform 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  /* 念のため */
  visibility: hidden;
}

/* メニュー */
nav.globalMenuSp ul {
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* メニュー項目 */
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  margin: auto;
  width: 80%;
  text-align: center;
  transition: 0.4s all;
  border-bottom: 1px dotted #fff;
}

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

/* リンク */
nav.globalMenuSp ul li a {
  display: block;
  width: 100%;
  color: #fff;
  padding: 1em 0;
  text-decoration: none;
  font-size: 4vw;
}

/* ==============================
   OPEN
============================== */
nav.globalMenuSp.active {
  transform: translateX(0);
  visibility: visible;
}

#mv {
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv {
    height: 100vh;
  }
}
@media screen and (max-width: 768px) {
  #mv {
    height: 100vh;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv {
    height: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv .slide-images {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv .slide-images {
    height: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv .slide-images .slick-list {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv .slide-images .slick-list {
    height: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv .slide-images .slick-list .slick-track {
    height: 100%;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv .slide-images .slick-list .slick-track {
    height: 100%;
  }
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv .slide-images .slick-list .slick-track img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv .slide-images .slick-list .slick-track img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#mv .mv_text {
  position: absolute;
  content: "";
  bottom: 4vw;
  left: 5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv_text {
    bottom: 12vw;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv_text {
    bottom: 18vw;
  }
}
#mv .mv_text h1 {
  color: #fff;
  font-weight: 300;
  letter-spacing: 0.6vw;
  line-height: 5vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv_text h1 {
    line-height: 12vw;
    font-size: 8vw;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv_text h1 {
    font-size: 8vw;
    line-height: 12vw;
  }
}
#mv .mv_text h1 span {
  font-size: 2.4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #mv .mv_text h1 span {
    font-size: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #mv .mv_text h1 span {
    font-size: 6vw;
  }
}

#index {
  padding: 4vw 0;
  background: url(./img/bg.png);
  background-size: 100%;
}
#index #greeting {
  width: 90%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #index #greeting {
    width: 95%;
  }
}
#index #greeting .greeting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #index #greeting .greeting {
    flex-flow: column-reverse;
    gap: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #index #greeting .greeting {
    flex-flow: column-reverse;
    gap: 4vw;
  }
}
#index #greeting .greeting .greeting_text {
  position: relative;
  z-index: 10;
  padding-top: 12vw;
}
#index #greeting .greeting .greeting_text .greeting_headline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2vw;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #index #greeting .greeting .greeting_text .greeting_headline img {
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  #index #greeting .greeting .greeting_text .greeting_headline img {
    width: 25%;
  }
}
#index #greeting .greeting .greeting_text .greeting_headline h2 {
  font-size: 4.6vw;
  font-weight: 300 !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #index #greeting .greeting .greeting_text .greeting_headline h2 {
    font-size: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #index #greeting .greeting .greeting_text .greeting_headline h2 {
    font-size: 8vw;
  }
}
#index #greeting .greeting .greeting_text p {
  padding: 4vw;
  width: 50vw;
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #index #greeting .greeting .greeting_text p {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #index #greeting .greeting .greeting_text p {
    width: 100%;
  }
}
#index #greeting .greeting .greeting_image {
  width: 50%;
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  z-index: 1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #index #greeting .greeting .greeting_image {
    width: 100%;
    position: static;
  }
}
@media screen and (max-width: 768px) {
  #index #greeting .greeting .greeting_image {
    width: 100%;
    position: static;
  }
}
#index #greeting .greeting .greeting_image img {
  width: 100%;
}
#index #introduce {
  width: 90%;
  margin: 8vw auto;
}
#index #introduce .introduce .introduce_headline {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2vw;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #index #introduce .introduce .introduce_headline img {
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  #index #introduce .introduce .introduce_headline img {
    width: 25%;
  }
}
#index #introduce .introduce .introduce_headline h2 {
  font-size: 4.6vw;
  font-weight: 300 !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #index #introduce .introduce .introduce_headline h2 {
    font-size: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #index #introduce .introduce .introduce_headline h2 {
    font-size: 8vw;
  }
}
#index #introduce .introduce p {
  padding: 2vw;
  text-align: center;
  width: 100%;
  background-color: #fff;
  margin-bottom: 2vw;
}
#index #introduce .introduce .introduce_contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#index #introduce .introduce .introduce_contents .introduce_item {
  width: 40%;
  margin: 2vw;
  position: relative;
  z-index: 10 !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #index #introduce .introduce .introduce_contents .introduce_item {
    width: 45%;
  }
}
@media screen and (max-width: 768px) {
  #index #introduce .introduce .introduce_contents .introduce_item {
    width: 100%;
  }
}
#index #introduce .introduce .introduce_contents .introduce_item a {
  width: 100%;
  display: block;
  padding: 1vw;
  background: linear-gradient(45deg, #295098, #7286AA);
  color: #fff;
  text-align: center;
  font-size: 2vw;
  text-decoration: none;
  line-height: 2.6vw;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #index #introduce .introduce .introduce_contents .introduce_item a {
    padding: 2vw;
    font-size: 2.8vw;
  }
}
@media screen and (max-width: 768px) {
  #index #introduce .introduce .introduce_contents .introduce_item a {
    padding: 4vw;
    font-size: 6vw;
    line-height: 8vw;
  }
}
#index #introduce .introduce .introduce_contents .introduce_item a span {
  font-size: 1.6vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #index #introduce .introduce .introduce_contents .introduce_item a span {
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 768px) {
  #index #introduce .introduce .introduce_contents .introduce_item a span {
    font-size: 4vw;
  }
}
#index #introduce .introduce .introduce_contents .introduce_item a .btn {
  font-size: 1.2vw;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.4vw;
}
@media screen and (max-width: 768px) {
  #index #introduce .introduce .introduce_contents .introduce_item a .btn {
    font-size: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #index #introduce .introduce .introduce_contents .introduce_item a .btn {
    font-size: 3.6vw;
  }
}
#index #introduce .introduce .introduce_contents .introduce_item::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 1vw;
  left: -1vw;
  background-color: #EDCC70;
  z-index: 1;
  transition: all 0.4s;
}
#index #introduce .introduce .introduce_contents .introduce_item:hover::before {
  top: 0;
  left: 0;
}
#index #company {
  width: 90%;
  margin: auto;
}
#index #company .company {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #index #company .company {
    flex-flow: column;
  }
}
@media screen and (max-width: 768px) {
  #index #company .company {
    flex-flow: column;
  }
}
#index #company .company .company_text {
  padding-top: 12vw;
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  z-index: 1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #index #company .company .company_text {
    position: static;
  }
}
@media screen and (max-width: 768px) {
  #index #company .company .company_text {
    position: static;
  }
}
#index #company .company .company_text .company_headline {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2vw;
  margin-bottom: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #index #company .company .company_text .company_headline img {
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  #index #company .company .company_text .company_headline img {
    width: 25%;
  }
}
#index #company .company .company_text .company_headline h2 {
  font-size: 4.6vw;
  font-weight: 300 !important;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #index #company .company .company_text .company_headline h2 {
    font-size: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #index #company .company .company_text .company_headline h2 {
    font-size: 8vw;
  }
}
#index #company .company .company_text .p {
  padding: 4vw;
  width: 50vw;
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #index #company .company .company_text .p {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #index #company .company .company_text .p {
    width: 100%;
  }
}
#index #company .company .company_text .p p {
  margin-bottom: 2vw;
}
@media screen and (max-width: 768px) {
  #index #company .company .company_text .p p {
    margin-bottom: 4vw;
  }
}
#index #company .company .company_text .p h4 {
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  #index #company .company .company_text .p h4 {
    margin-bottom: 2vw;
  }
}
#index #company .company .company_text .p a {
  text-decoration: none;
  color: #000;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2vw;
  font-size: 1.4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #index #company .company .company_text .p a {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 768px) {
  #index #company .company .company_text .p a {
    font-size: 4vw;
  }
}
#index #company .company .company_image {
  width: 50%;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #index #company .company .company_image {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #index #company .company .company_image {
    width: 100%;
  }
}
#index #company .company .company_image img {
  width: 100%;
}
#index #map {
  width: 90%;
  margin: auto;
  margin-top: 18vw;
}
#index #map .map {
  width: 100%;
}
#index #map .map iframe {
  max-width: 100%;
  width: 100%;
}

.access {
  background: url(./img/access_bg.png);
}

.bekkan {
  background: url(./img/bekkan_bg.png);
}

.kanda {
  background: url(./img/kanda_bg.png);
}

.main {
  background: url(./img/main_bg.png);
}

#main .main_container {
  padding: 16vw 0;
  padding-top: 0;
  background: url(./img/bg.png);
  background-size: 100%;
}
#main .main_container #greeting {
  width: 90%;
  margin: auto;
  margin-bottom: 12vw;
}
@media screen and (max-width: 768px) {
  #main .main_container #greeting {
    width: 95%;
  }
}
#main .main_container #greeting .greeting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #main .main_container #greeting .greeting {
    flex-flow: column-reverse;
    gap: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #main .main_container #greeting .greeting {
    flex-flow: column-reverse;
    gap: 4vw;
  }
}
#main .main_container #greeting .greeting .greeting_text {
  position: relative;
  z-index: 10;
  padding-top: 12vw;
  padding: 4vw;
  width: 50vw;
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #main .main_container #greeting .greeting .greeting_text {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #main .main_container #greeting .greeting .greeting_text {
    width: 100%;
  }
}
#main .main_container #greeting .greeting .greeting_text h2 {
  font-size: 3vw;
  font-weight: 300 !important;
  line-height: 6vw;
  margin-bottom: 1vw;
  border-left: 4px solid #295098;
  padding-left: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #main .main_container #greeting .greeting .greeting_text h2 {
    font-size: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #main .main_container #greeting .greeting .greeting_text h2 {
    font-size: 8vw;
  }
}
#main .main_container #greeting .greeting .greeting_image {
  width: 50%;
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #main .main_container #greeting .greeting .greeting_image {
    width: 100%;
    position: static;
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 768px) {
  #main .main_container #greeting .greeting .greeting_image {
    width: 100%;
    position: static;
    transform: translate(0, 0);
  }
}
#main .main_container #greeting .greeting .greeting_image img {
  width: 100%;
}
#main .main_container .greeting02 {
  background: url(./img/company_bg02.png);
  width: 100% !important;
  padding: 12vw 5%;
}
#main .main_container #banner {
  width: 60%;
  margin: auto;
  transition: all 0.4s;
  margin-bottom: 6vw;
}
@media screen and (max-width: 768px) {
  #main .main_container #banner {
    width: 90%;
    margin-bottom: 12vw;
  }
}
#main .main_container #banner img {
  width: 100%;
}
#main .main_container #banner:hover {
  opacity: 0.8;
}
#main .main_container #concept {
  width: 90%;
  margin: auto;
}
#main .main_container #concept .concept h2 {
  font-size: 3vw;
  font-weight: 300 !important;
  line-height: 6vw;
  margin-bottom: 2vw;
  border-left: 4px solid #295098;
  padding-left: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #main .main_container #concept .concept h2 {
    font-size: 6vw;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #main .main_container #concept .concept h2 {
    font-size: 8vw;
    margin-bottom: 8vw;
  }
}
#main .main_container #concept .concept .concept_contents {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  #main .main_container #concept .concept .concept_contents {
    flex-flow: column;
    margin-bottom: 12vw;
  }
}
@media screen and (max-width: 768px) {
  #main .main_container #concept .concept .concept_contents:nth-child(3) {
    flex-flow: column-reverse;
  }
}
#main .main_container #concept .concept .concept_contents .concept_image {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #main .main_container #concept .concept .concept_contents .concept_image {
    width: 100%;
  }
}
#main .main_container #concept .concept .concept_contents .concept_image img {
  width: 100%;
}
#main .main_container #concept .concept .concept_contents .concept_text {
  background-color: #fff;
  padding: 4vw;
}
#main .main_container #concept .concept .concept_contents .concept_text h4 {
  position: relative;
  padding-bottom: 1vw;
  margin-bottom: 1vw;
}
#main .main_container #concept .concept .concept_contents .concept_text h4::after {
  position: absolute;
  content: "";
  width: 30%;
  height: 2px;
  background-color: #295098;
  bottom: 0;
  left: 0;
}
#main .company {
  padding: 8vw 0;
  background: url(./img/company_bg.png);
  background-size: 100%;
}
#main .company h2 {
  font-size: 3vw;
  font-weight: 300 !important;
  line-height: 6vw;
  margin-bottom: 1vw;
  border-left: 4px solid #295098;
  padding-left: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #main .company h2 {
    font-size: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #main .company h2 {
    font-size: 8vw;
  }
}
#main .company .company_contents {
  width: 80%;
  margin: auto;
  background-color: #fff;
  padding: 4vw;
  border-radius: 25px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  #main .company .company_contents {
    width: 95%;
    padding: 8vw 4vw;
  }
}
#main .company table {
  border-collapse: collapse;
  width: 100%;
}
#main .company table tr th, #main .company table tr td {
  width: 50%;
  border-bottom: 1px solid #000;
  font-size: 1vw;
  padding: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #main .company table tr th, #main .company table tr td {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #main .company table tr th, #main .company table tr td {
    padding: 2vw 1vw;
    font-size: 3.4vw;
  }
}
@media screen and (max-width: 768px) {
  #main .company table tr th {
    width: 30%;
  }
}
#main .company02 {
  background: url(./img/company_bg02.png);
}
#main .company03 {
  background: url(./img/company_bg03.png);
}
#main .company04 {
  background: url(./img/company_bg04.png);
}
#main .map {
  width: 100%;
}
#main .map iframe {
  width: 100%;
}

#main02 .access_container {
  padding-bottom: 0 !important;
}
#main02 .main_container {
  padding: 16vw 0;
  padding-top: 0;
  background: url(./img/bg.png);
  background-size: 100%;
}
#main02 .main_container #greeting {
  width: 90%;
  margin: auto;
  margin-bottom: 12vw;
}
@media screen and (max-width: 768px) {
  #main02 .main_container #greeting {
    width: 95%;
  }
}
#main02 .main_container #greeting .greeting {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #main02 .main_container #greeting .greeting {
    flex-flow: column-reverse;
    gap: 2vw;
  }
}
@media screen and (max-width: 768px) {
  #main02 .main_container #greeting .greeting {
    flex-flow: column-reverse;
    gap: 4vw;
  }
}
#main02 .main_container #greeting .greeting .greeting_text {
  position: relative;
  z-index: 10;
  padding-top: 12vw;
  padding: 4vw;
  width: 50vw;
  background-color: #fff;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #main02 .main_container #greeting .greeting .greeting_text {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #main02 .main_container #greeting .greeting .greeting_text {
    width: 100%;
    padding: 8vw 4vw;
  }
}
#main02 .main_container #greeting .greeting .greeting_text h2 {
  font-size: 3vw;
  font-weight: 300 !important;
  line-height: 6vw;
  margin-bottom: 1vw;
  border-left: 4px solid #295098;
  padding-left: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #main02 .main_container #greeting .greeting .greeting_text h2 {
    font-size: 6vw;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #main02 .main_container #greeting .greeting .greeting_text h2 {
    font-size: 8vw;
    margin-bottom: 6vw;
  }
}
#main02 .main_container #greeting .greeting .greeting_image {
  width: 50%;
  position: absolute;
  content: "";
  right: 0;
  top: 50%;
  transform: translate(0, -50%);
  z-index: 1;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #main02 .main_container #greeting .greeting .greeting_image {
    width: 100%;
    position: static;
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 768px) {
  #main02 .main_container #greeting .greeting .greeting_image {
    width: 100%;
    position: static;
    transform: translate(0, 0);
  }
}
#main02 .main_container #greeting .greeting .greeting_image img {
  width: 100%;
}
#main02 .main_container .greeting02 {
  background: url(./img/company_bg02.png);
  width: 100% !important;
  padding: 12vw 5%;
}
#main02 .main_container .greeting03 {
  background: url(./img/company_bg03.png);
  width: 100% !important;
  padding: 12vw 5%;
}
#main02 .main_container .greeting04 {
  background: url(./img/company_bg04.png);
  width: 100% !important;
  padding: 12vw 5%;
}
#main02 .main_container .greeting05 {
  background: url(./img/info05.png);
  width: 100% !important;
  padding: 12vw 5%;
  margin-bottom: 0 !important;
}
#main02 .main_container .greeting05 .greeting_text {
  width: 100% !important;
}
#main02 .main_container #banner {
  width: 60%;
  margin: auto;
  transition: all 0.4s;
  margin-bottom: 6vw;
}
@media screen and (max-width: 768px) {
  #main02 .main_container #banner {
    width: 90%;
    margin-bottom: 12vw;
  }
}
#main02 .main_container #banner img {
  width: 100%;
}
#main02 .main_container #banner:hover {
  opacity: 0.8;
}
#main02 .main_container #concept {
  width: 90%;
  margin: auto;
}
#main02 .main_container #concept .concept h2 {
  font-size: 3vw;
  font-weight: 300 !important;
  line-height: 6vw;
  margin-bottom: 2vw;
  border-left: 4px solid #295098;
  padding-left: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #main02 .main_container #concept .concept h2 {
    font-size: 6vw;
    margin-bottom: 4vw;
  }
}
@media screen and (max-width: 768px) {
  #main02 .main_container #concept .concept h2 {
    font-size: 8vw;
    margin-bottom: 8vw;
  }
}
#main02 .main_container #concept .concept .concept_contents {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  #main02 .main_container #concept .concept .concept_contents {
    flex-flow: column;
    margin-bottom: 12vw;
  }
}
@media screen and (max-width: 768px) {
  #main02 .main_container #concept .concept .concept_contents:nth-child(3) {
    flex-flow: column-reverse;
  }
}
#main02 .main_container #concept .concept .concept_contents .concept_image {
  width: 40%;
}
@media screen and (max-width: 768px) {
  #main02 .main_container #concept .concept .concept_contents .concept_image {
    width: 100%;
  }
}
#main02 .main_container #concept .concept .concept_contents .concept_image img {
  width: 100%;
}
#main02 .main_container #concept .concept .concept_contents .concept_text {
  background-color: #fff;
  padding: 4vw;
}
#main02 .main_container #concept .concept .concept_contents .concept_text h4 {
  position: relative;
  padding-bottom: 1vw;
  margin-bottom: 1vw;
}
#main02 .main_container #concept .concept .concept_contents .concept_text h4::after {
  position: absolute;
  content: "";
  width: 30%;
  height: 2px;
  background-color: #295098;
  bottom: 0;
  left: 0;
}
#main02 .company {
  padding: 8vw 0;
  background: url(./img/company_bg.png);
  background-size: 100%;
}
#main02 .company h2 {
  font-size: 3vw;
  font-weight: 300 !important;
  line-height: 6vw;
  margin-bottom: 1vw;
  border-left: 4px solid #295098;
  padding-left: 2vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #main02 .company h2 {
    font-size: 6vw;
  }
}
@media screen and (max-width: 768px) {
  #main02 .company h2 {
    font-size: 8vw;
  }
}
#main02 .company .company_contents {
  width: 80%;
  margin: auto;
  background-color: #fff;
  padding: 4vw;
  border-radius: 25px;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 768px) {
  #main02 .company .company_contents {
    width: 95%;
    padding: 8vw 4vw;
  }
}
#main02 .company table {
  border-collapse: collapse;
  width: 100%;
}
#main02 .company table tr th, #main02 .company table tr td {
  width: 50%;
  border-bottom: 1px solid #000;
  font-size: 1vw;
  padding: 1vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  #main02 .company table tr th, #main02 .company table tr td {
    font-size: 1.6vw;
  }
}
@media screen and (max-width: 768px) {
  #main02 .company table tr th, #main02 .company table tr td {
    padding: 2vw 1vw;
    font-size: 3.4vw;
  }
}
@media screen and (max-width: 768px) {
  #main02 .company table tr th {
    width: 30%;
  }
}
#main02 .company02 {
  background: url(./img/company_bg02.png);
}
#main02 .company03 {
  background: url(./img/company_bg03.png);
}
#main02 .company04 {
  background: url(./img/company_bg04.png);
}
#main02 .company05 {
  background: url(./img/access_bg02.png);
}
#main02 .map {
  width: 100%;
}
#main02 .map iframe {
  width: 100%;
}

.tachi {
  background: url(./img/tachi_bg.png);
}

footer {
  background: url(./img/footer_bg.png);
  background-size: 100%;
  padding: 2vw;
  border-top: 2px solid #295098;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer {
    padding: 4vw 0;
  }
}
@media screen and (max-width: 768px) {
  footer {
    padding: 8vw 0;
  }
}
footer .footer_title {
  text-align: center;
  margin-bottom: 4vw;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_title img {
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_title img {
    width: 30%;
  }
}
footer .footer_title h2 {
  margin-top: 1vw;
  color: #295098;
}
@media screen and (min-width: 769px) and (max-width: 1024px) {
  footer .footer_menu {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  footer .footer_menu {
    display: none;
  }
}
footer .footer_menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}
footer .footer_menu ul li {
  text-align: center;
  padding: 0 1vw;
  position: relative;
}
footer .footer_menu ul li:not(:first-child)::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 25px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background-color: #EDCC6F;
}
footer .footer_menu ul li a {
  text-decoration: none;
  color: #000;
  text-align: center;
  font-size: 1vw;
}
footer .footer_menu ul li a span {
  font-size: 0.8vw;
}

.copyright {
  padding: 1vw;
  background-color: #295098;
  color: #fff;
  text-align: center;
}/*# sourceMappingURL=style.css.map */