html,
body {
  height: 100%;
  margin: 0;
  padding: 0;
  /* overflow: hidden; */
}

body {
  font-family: Futura, "Yu Gothic", "YuGothic", Avenir, sans-serif;
  background-color: #00172C;
  color: white;
}

.bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  /* z-index: 0; */
  pointer-events: none;
}

#recruit-canvas {
  width: 100%;
  height: 100%;
  display: block;
}

/* ページ全体調整 */
.page-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* linear-gradient(角度, 初期色, グラデーション後) */
  /* background: linear-gradient(180deg, #000E1D, #003F83); */
}

/* .bg-svg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
} */


.contact-content-wrapper {
  width: 100%;
  /* height: 60rem; */
  /* min-height: 60rem; */
  display: flex;
  justify-content: center;
  padding: 3rem 1rem;
}

.contact-content {
  width: 90%;
  background: #fff;
  color: black;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  z-index: 5;
}

.contact-comment {
  text-align: center;
  margin-bottom: 2rem;
}


h1 {
  margin-top: 5rem;
  font-size: 4rem;
}

/* リンク＋矢印 */

.contact-link {
  text-align: center;
}

.contact-link a.arrow{
  display: inline-flex;
  color: black;
  align-items: center;
  position: relative;
  text-decoration: underline #42CCEB;
  gap: 0.5rem;

}

.contact-link a.arrow::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4rem 0 0.4rem 0.6rem;
  border-color: transparent transparent transparent #42CCEB;
  /* position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto; */
}

.contact-link-form {
  width: 40%;
  height: auto;
  min-height: 3rem;
  /* height: 50px; */
  text-align: center;
  background-color: #42CCEB;
  /* opacity: 0.9; */
  /* border: 1px solid #fff; */
  border-radius: 2rem;
  margin: 2rem auto;
  display: flex;
  justify-content: center;
  box-shadow: 0 5px 10px -5px rgba(0,0,0,0.8);
    transition: all 0.6s ease 0s;
<<<<<<< Updated upstream
=======

>>>>>>> Stashed changes
}

.contact-link-form a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0.3rem;
  position: relative;
  font-weight: bold;
  font-size: 1.2rem;
}

.contact-link-form a.arrow::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.4rem 0 0.4rem 0.6rem;
  border-color: transparent transparent transparent white;
  margin-left: 0.5rem;
}

.contact-link-form:hover {
  cursor: pointer;
	transform: scale(1.1, 1.1);
}

/* ========================　レスポンシブ　========================= */

/* ========================　スマホ　========================= */

@media (max-width: 768px) {
  .contact-comment {
    text-align: left;
  }
  h1 {
    font-size: 3rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  .contact-content-wrapper {
    width: 100%;
    padding: 3rem 0;
  }
  .contact-content {
    width: 95%;
    padding: 2rem 1rem;
  }
  /* .contact-content {
    padding: 2rem;
    height: auto;
    width: 90%;
  } */
  .contact-link-form {
    width: 100%;
  }
}