@charset "utf-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}

body {
  color: #000;
  font-family: "neue-haas-grotesk-display", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  font-style: normal;
  text-align: left;
  font-weight: 300;
  font-feature-settings: "palt";
}

.ja {
  font-family: "dnp-shuei-gothic-gin-std", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.flex {
  display: flex;
}

.section {
  padding: 80px 4.29%;
}

img,
svg {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

a {
  cursor: pointer;
}

.none {
  display: none;
}

* {
  margin: 0;
  padding: 0;
}

* {
  list-style: none;
}

* {
  text-decoration: none;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}


#modal-container {
  display: none;
  position: fixed;
  background: rgba(0, 0, 0, 0.9);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10000;
}

#modal-container > div {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

#modal-container > div > img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}

img.popup {
  cursor: pointer;
}

.sa {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.sa--up {
  transform: translate(0, 30px);
}

.sa.show {
  opacity: 1;
  transform: none;
  transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 640px) {
  .wrap {
    width: 100%;
  }

  .text-move {
    font-size: 30px;
  }
}

/*===========================================================*/
/* CVボタン*/
/*===========================================================*/

.cv_button {
  margin-top: 40px;
}

.cv_button a {
  padding: 20px 24px;
  color: #fff;
  background-color: #001f30;
  display: inline-block;
  border-radius: 2px;
}

.cv_button a:hover {
  background-color: #000;
  transition: 0.4s;
}
