@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');
* {
  box-sizing: border-box;
}
html, body {
  margin: 0;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
}
.top--main {
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 72px;
  background-image: url('../img/top/bg-top.jpg');
  background-position: center top;
  background-color: #214D7A88;
  background-repeat: none;
  background-size: cover;
  padding: 16px;
}
.top--main--inner {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width:1080px) {
  .top--main--inner {
    max-width: 1080px;
  }
}
.top--logo {
  align-self: center;
}
.top--logo img {
  width: 100%;
  height: auto;
}
@media screen and (min-width:640px) {
  .top--logo img {
    width: 350px;
  }
}
.top--content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
@media screen and (min-width:1080px) {
  .top--content {
    flex-direction: row;
    gap: 72px;
  }
}
.content_sec {
  width: 100%;
  padding: 24px;
  flex: 1 0 auto;
  max-width: 504px;
  background-color: var(--content_sec--bg_color);
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 10px;
}
@media screen and (min-width:640px) {
  .content_sec {
    width: 504px;
    padding: 48px;
  }
}
.content_sec-member {
  --content_sec--bg_color: #26AADA;
  --content_sec--strong_color: #0DAEB1;
}
.content_sec-company {
  --content_sec--bg_color: #4D52BE;
  --content_sec--strong_color: #2F36B2;
}
.content_sec p {
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
.content_sec a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 64px;
  color: #485357;
  background-color: #fff;
  background-clip: content-box;
  border: 3px solid #00000033;
  border-radius: 9999px;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
}
@media screen and (min-width:640px) {
  .content_sec a {
    width: 342px;
    height: 73px;
  }
}
.content_sec a span {
  color: var(--content_sec--strong_color);
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}
