@charset "utf-8";
/* リセットcss */
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}
body {
  background-color: #fff;
  color: #000;
  font-family: Noto Sans JP Medium, sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
}
a {
  text-decoration: none;
}
a:hover {
  color: blue;
}
ul {
  list-style-type: none;
}
.head {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -5;
}
/* ロゴ */
.logo {
  font-size: 50px;
  font-weight: normal;
  line-height: 1;
  padding: 15px 0;
}
.logo img {
  width: 1.1em;
}
/* ヘッダー */
header {
  width: 100%;
  height: auto;
  position: absolute;
  z-index: -2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 0;
  padding: 0 20px;
}
/* ナビゲーション */
.menu {
  display: flex;
  align-items: center;
}
.menu a {
  color: #fff;
  display: block;
  text-align: center;
  padding: 10px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}
.menu a:hover {
  color: #fff;
  border-bottom-color: #fff;
}
.nav-botton {
  display: none;
}
/* メイン画像 */
.mainimage {
  position: relative;
  margin-bottom: 100px;
  z-index: -4;
}
.mainimage > img {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
.catch {
  position: absolute;
  bottom: 4vw;
  left: 2vh;
}
.maincatch {
  width: 75vw;
  margin-bottom: 8vh;
}
.vision {
  color: #fff;
  font-family: Noto Sans JP Regular, sans-serif;
}
/* メインコンテンツ */
.main {
  max-width: 100vw;
  margin: 0 auto;
  margin-top: 120vh;
  padding: 0 20px;
  background-color: #fff;
  border: 1px solid #a5a5a5;
  border-radius: 3rem 3rem 0 0;
}
section {
  width: 100%;
  margin-bottom: 30vh;
  position: relative;
  z-index: 0;
}
section h2 {
  color: #083954;
  font-size: clamp(6rem, calc(2rem + 8.3vw), 12rem);
  text-align: left;
  position: sticky;
  top: 20vh;
  line-height: 1;
  margin-bottom: 50rem;
  z-index: -1;
}
section h2::after {
  content: attr(data-jp);
  font-size: 1.8rem;
  color: #000;
  position: absolute;
  bottom: -3rem;
  left: 3.5rem;
}
.box-area {
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.box {
  background-color: rgba(255, 255, 255, 0.5);
  width: 48%;
  margin-bottom: 5rem;
}
.box-area:last-child {
  margin-bottom: -50px;
}
h3 {
  text-align: center;
  font-size: clamp(3rem, calc(1rem + 4.2vw), 6rem);
  margin-bottom: 2.5rem;
}
dl {
  margin-bottom: 3rem;
}
dt {
  padding-top: 2rem;
  width: 20rem;
  float: left;
  font-size: 2.5rem;
}
dd {
  padding: 4rem;
  padding-left: 20rem;
  border-bottom: 1px dashed blue;
}
.box dt {
  text-align: center;
  width: auto;
  float: none;
  margin-top: 20rem;
  margin-bottom: 1rem;
}
.box dd {
  text-align: center;
  margin: 0;
  margin: 2.5rem 0;
  padding: 0;
  padding-bottom: 2rem;
}
figure {
  display: flex;
  justify-content: center;
}
/* 会社概要 */
.Companybox {
  background-color: rgba(255, 255, 255, 0.5);
  width: 50%;
}
/* news */
.news {
  display: flex;
  justify-content: space-around;
}
.newsbox {
  width: 48%;
}
iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.newsbox dt,
.newsbox dd {
  width: auto;
  font-size: 1.6rem;
  margin: 0;
  padding: 0;
}
.newsbox dt {
  padding-left: 3rem;
  padding-top: 2rem;
}
.newsbox dd {
  padding: 2rem 3rem 2rem 20rem;
}
footer {
  padding-bottom: 3rem;
  margin-bottom: 60px;
}
footer .menu {
  justify-content: center;
}
footer .menu a {
  color: #000;
}
footer .menu a:hover {
  color: blue;
}
.footimg {
  display: flex;
  justify-content: center;
}
.Copyright {
  display: flex;
  justify-content: space-between;
}
.gotop {
  text-align: right;
  position: sticky;
  top: 90vh;
  right: 2rem;
  opacity: 0.7;
  z-index: 1;
}
.employeehead {
  border: 1px solid #777;
  border-radius: 1rem;
}
.employeehead a {
  color: #000;
}
.employeehead .menu a:hover {
  color: blue;
  border-bottom-color: #000;
}
.employeehead nav {
  display: flex;
  align-items: center;
}
.employeemain {
  max-width: 100vw;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #fff;
}
.recruitment h2 {
  font-size: 6rem;
  position: static;
  text-align: center;
  margin: 0;
}
.recruitment h3 {
  font-size: 3rem;
  text-align-last: left;
}
.recruitment .Companybox {
  width: 100%;
}
@media (max-width: 800px) {
  .menu {
    padding: 0 1rem;
    display: none;
    background-color: #fff;
  }
  .nav-botton {
    display: block;
    width: 40px;
    height: 40px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-left: auto;
    position: relative;
  }
  .nav-botton span {
    width: 20px;
    height: 2px;
    background-color: #fff;
    position: absolute;
    left: 8px;
  }
  .nav-botton span:nth-child(1) {
    top: 9px;
  }
  .nav-botton span:nth-child(2) {
    top: 17px;
  }
  .nav-botton span:nth-child(3) {
    top: 25px;
  }
}
@media (max-width: 600px) {
  h3 {
    margin-bottom: 0;
  }
  .box dt {
    margin-top: 0rem;
  }
  .box-area {
    display: block;
  }
  .box {
    width: 100%;
    background-color: #fff;
  }
  section h2 {
    top: 0;
    left: 0;
    margin-bottom: 10vh;
  }
  section h2::after {
    top: 13rem;
    left: 4rem;
  }
  .Companybox {
    width: 100%;
    background-color: #fff;
  }
  .Companybox dt {
    float: none;
  }
  .Companybox dd {
    padding: 0;
  }
  .news {
    display: block;
  }
  .newsbox {
    width: 100%;
  }
  .newsbox dt {
    float: none;
  }
  .newsbox dd {
    padding: 0;
    text-align: center;
  }
  header {
    display: flex;
    align-items: center;
  }
  .menu a {
    color: #000;
    border-bottom: 1px solid #000;
  }
  .employeemain {
    padding-top: 50px;
  }
  footer .menu {
    display: block;
    margin-bottom: 2rem;
  }
  footer .menu a {
    color: #000;
  }
}
