@charset "UTF-8";

body {
  min-width: 1200px;
  line-height: 1.5;
  letter-spacing: 0.08em;
  font-family: "Noto Sans JP", sans-serif;
}
h2,
.business_link,
#contact {
  font-family: "Roboto Slab", serif;
}
header {
  z-index: 1000;
  position: fixed;
  height: fit-content;
  left: 0;
  width: 100%;
  top: 0;
  /* background-color: rgba(255, 255, 255, 1); */
  z-index: 1000;
}
/* .headerWrap{
    position: relative;
} */
.header_wrap {
  padding: 0 10px;
}
.header_wrap .h_logo {
  height: auto;
  line-height: 1;
  width: 70px;
  /* position: fixed;
  top: 15px;
  left: 15px; */
}
/* ---------------------------------------------- */
/* ハンバーガーメニュー */
/* ------------------------- */
#header-hamburger {
  /* 見た目のCSS */
  cursor: pointer;
  width: 50px;
  aspect-ratio: 1/1;
  margin-left: auto;
  /* ボタンがハンバーガーウィンドウの下に隠れないようにする指定 */
  position: relative;
  z-index: 10;
}
/* ----------------- */
/* 三本線 */
/* ----------------- */
#header-hamburger span {
  /* 見た目のCSS */
  display: inline-block;
  background: #517ea1;
  width: 100%;
  height: 2px;
  /* バーガー線の太さ */
  /*アニメーションの設定*/
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  /* バーガー線の位置 */
  transform: translateX(-50%);
}
/* １本目 */
#header-hamburger span:nth-of-type(1) {
  top: 30%;
}
/* ２本目 */
#header-hamburger span:nth-of-type(2) {
  top: 50%;
}
/* ３本目 */
#header-hamburger span:nth-of-type(3) {
  top: 70%;
}
/* ------------------ */
/* ×印 */
/* ------------------ */
/*activeクラスが付与されると線が回転して×になる*/
#header-hamburger.active span:nth-of-type(1) {
  top: 50%;
  left: 25%;
  transform: rotate(-45deg);
  width: 50%;
}
#header-hamburger.active span:nth-of-type(2) {
  opacity: 0;
}
#header-hamburger.active span:nth-of-type(3) {
  top: 50%;
  left: 25%;
  transform: rotate(45deg);
  width: 50%;
}
/* ----------------------------------------------- */
/* メニューウィンドウ */
/* -------------------------- */
#hamburger-window {
  transition: 0.3s;
  text-align: center;
  /* 初期状態は非表示 */
  visibility: hidden;
  position: fixed;
  top: 0;
  right: -100vw;
  z-index: 1;
  /* 画面いっぱいに表示されるサイズに設定 */
  width: 100%;
  height: 100vh;
  /* 画面からはみ出したらスクロール可能にする */
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background: #fff;
}
/*スクロールバー非表示（Chrome・Safari）*/
.content::-webkit-scrollbar {
  display: none;
}
#hamburger-window.open {
  visibility: visible;
  right: 0;
}
.hamburger-window__nav-list {
  max-width: 1200px;
  margin-inline: auto;
  margin: 20px auto;
}
.hamburger-window__link {
  display: block;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.hamburger-window__link:hover {
  background-color: #ececec;
}
.menu-link {
  display: flex;
  align-items: center;
  /* border-bottom: 1px solid #ccc; */
  padding: 23px 0 23px 5%;
  color: #333;
}
.menu-link.h-menuttl {
  font-weight: 600;
  font-size: 24px;
}
.hamburger-window__title {
  color: #333;
}

/* mv */
.mv {
  height: 100vh;
  max-height: 800px;
  position: relative;
  text-align: center;
}
.mv + * {
  margin-top: 160px;
}
.mv_bgarea {
  max-width: 1920px;
  max-height: 800px;
}
.mv > img {
  max-height: 100%;
}
/* .mv_sp{
  display: none;
} */
h1.h_logo {
  position: fixed;
  top: 15px;
  left: 15px;
}
/* intro */
.intro_inner {
  display: flex;
  align-items: center;
}
.intro_inner > * {
  width: 50%;
}
figure.intro_img {
  background: #aaa;
  height: 100%;
}
div.intro_txt {
  padding: 0 60px;
}
h2.cont_ttl {
  font-size: 55px;
}
.cont_sttl {
  margin-top: 20px;
  font-size: 17px;
}
.cont_txt {
  margin-top: 70px;
  font-size: 16px;
}
/* business */
#business {
  margin-top: 200px;
}
ul.business_list > li + li {
  margin-top: 160px;
}
li.business_item {
  max-width: 1440px;
  margin-inline: auto;
  display: flex;
  align-items: center;
}
li.business_item.reverse {
  flex-direction: row-reverse;
}
li.business_item > * {
  width: 50%;
}
figure.business_img {
  height: 100%;
}
div.business_txt {
  padding: 0 60px;
}
h4.business_sttl {
  font-size: 20px;
  color: #517e93;
  display: flex;
  align-items: center;
}
h4.business_sttl::after {
  content: "";
  width: calc(100% - 10em);
  height: 1px;
  background-color: #517ea1;
  display: block;
  margin-left: 20px;
}
h3.business_ttl {
  margin-top: 60px;
  font-size: 30px;
}
.business_txt {
  margin-top: 40px;
}
.business_link {
  margin-left: auto;
  padding: 20px 0;
  width: fit-content;
  font-size: 20px;
}
.business_link > a {
  display: flex;
  align-items: center;
}
.business_link > a > p {
  padding-right: 20px;
}
.business_link > a > img {
  max-width: 14px;
}
/* message */
#message {
  margin-top: 260px;
}
.message_inner {
  display: flex;
  align-items: center;
}
.message_inner > * {
  width: 80%;
  margin-inline: auto;
  text-align: center;
}
figure.message_img {
  text-align: center;
}
.message_txt {
  padding: 0 60px;
}
/* recruit */
.recruit {
  max-width: 500px;
  margin-inline: auto;
  padding: 100px 0;
}
a.recruit_btn {
  display: block;
  text-align: center;
  /* vertical-align: middle; */
  text-decoration: none;
  margin: 0 20px;
  padding: 1rem 4rem;
  font-size: 22px;
  font-weight: bold;
  border: 2px solid #000;
  color: #000;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
a.recruit_btn::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #000;
  transform: translateX(-100%);
  transition: all 0.3s;
  z-index: -1;
}
a.recruit_btn:hover::before {
  transform: translateX(0);
}
a.recruit_btn:hover {
  color: #fff;
}
a.recruit_btn > span {
  display: block;
  font-size: 14px;
  font-weight: normal;
}

/* contact */
/* #contact{
    margin-top: 200px;
    height: 380px;
    background-color: #aaa;
    background: url(../img/top/contact_bg.jpg),url(../img/top/contact_166deco.png);
    background-repeat: no-repeat;
    text-align: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
} */
.contact_menu {
  font-size: 60px;
  font-weight: 300;
  margin-top: 200px;
  height: 380px;
  position: relative;
  background: url(../img/top/contact_166deco.png), url(../img/top/contact_bg02.jpg);
  background-position: left 0 bottom, right 10% bottom 10%;
  background-size: 40% auto, cover;
  background-repeat: no-repeat;
  text-align: center;
  color: #fff;
}

.box {
  position: absolute;
  width: 100%;
  top: 45%;
  text-align: center;
  color: #fff;
}
.contact_menu::before {
  background-color: rgba(81, 126, 147, 0.239);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: " ";
}
a:hover .contact_menu::before {
  background-color: rgba(81, 126, 147, 0);
  transition: 0.4s;
  transform: scale(0.5);
}
/* .box:hover{
    transform: scale(1.2);
    transition: 0.4s;
} */

/* 元css */

a.contact_link {
  font-size: 60px;
  font-weight: 300;
  margin-top: 200px;
  height: 380px;
  background-color: #aaa;
  background: url(../img/top/contact_166deco.png), url(../img/top/contact_bg02.jpg);
  background-position: left 0 bottom, right 10% bottom 10%;
  background-size: 40% auto, 100% auto;
  background-repeat: no-repeat;
  text-align: center;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* a.contact_link:hover{
    filter: brightness(0.5);
} */
/* a.contact_link::after {
    content: "";
    background: rgba(255,255,255,.5);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  } */
/* footer */
#footer {
  padding: 100px 60px 60px;
}
.footer_wrap {
  display: flex;
}
h2.footer_logo {
  max-width: 150px;
  margin: 30px auto;
}
.footer_links {
  width: calc(100% - 150px);
  text-align: left;
  padding-left: 50px;
  justify-content: left;
}
.footer_links .link_list li {
  display: inline-block;
}
.footer_links .link_list li > a {
  padding-right: 30px;
}
li.link_item.f_ttl {
  margin: 30px 0 15px;
  font-weight: 600;
  font-size: 18px;
}
li.link_item.f_ttl:has(.f_intro) {
  width: 100%;
}
.copyright {
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 98%;
  color: #517ea1;
}
.copyright::before {
  content: "";
  width: calc(100% - 14em);
  height: 1px;
  background-color: #517ea1;
  display: block;
  margin-right: 20px;
}
@media only screen and (min-width: 769px) {
  .pc_none {
    display: none;
  }
}
@media only screen and (max-width: 768px) {
  body {
    min-width: inherit;
  }
  .sp_none {
    display: none;
  }
  .header_wrap .h_logo {
    width: 50px;
  }
  h1.h_logo {
    top: 10px;
    left: 10px;
  }
  .mv {
    max-height: 600px;
    margin-top: 50px;
  }
  .mv_sp {
    display: none;
  }
  .mv + * {
    margin-top: 100px;
  }
  #business {
    margin-top: 100px;
  }
  .intro_inner,
  li.business_item,
  li.business_item.reverse,
  .message_inner {
    flex-direction: column-reverse;
  }
  .intro_inner > *,
  li.business_item > *,
  .message_inner > * {
    width: 93%;
  }
  div.intro_txt {
    padding: 10px;
  }
  ul.business_list > li + li {
    margin-top: 80px;
  }
  div.business_txt {
    padding: 0;
  }
  h2.cont_ttl {
    font-size: 8vw;
  }
  .cont_txt {
    margin-top: 40px;
  }
  h3.business_ttl {
    font-size: 25px;
  }
  #message {
    margin-top: 100px;
  }
  .message_txt {
    margin-bottom: 40px;
    padding: 0 20px;
  }
  .contact_menu {
    margin-top: 100px;
    height: 160px;
    font-size: 25px;
  }
  #footer {
    padding: 50px 20px 30px;
  }
  .footer_wrap {
    flex-direction: column;
  }
  .footer_links {
    width: 100%;
    text-align: center;
    padding: 0;
  }
  .footer_links .link_list li {
    width: 100%;
    margin-top: 10px;
  }
  .footer_links .link_list li > a {
    padding-right: 0;
  }
}
/* @media only screen and (min-width: 541px) {
  .mv_sp{
    display: none;
  }
}
@media only screen and (max-width: 540px) {
  .mv_pc{
    display: none;
  }
  .mv_sp{
    display: block;
  }
} */
