@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

a:hover {
  color: inherit;
}

nav {
  position: fixed;
  top: 0;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  width: 100%;
  min-height: 4rem;
  color: #333;
  font-weight: 300;
  z-index: 3;
}

iframe {
  border: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  flex-grow: 1;
}

.main {
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.navbar-left {
  font-size: 1.5rem;
}

.navbar-nav {
  display: flex;
  justify-content: column;
  align-items: center;
  padding-right: 10px;
}
.navbar-nav a {
  color: #333;
  margin-right: 1rem;
  text-decoration: none;
}
.navbar-nav select {
  max-height: 2rem;
  width: 8rem;
}

.video-container {
  position: relative;
  z-index: -1;
  min-height: 75vh;
}

.video-about {
  text-align: center;
  background-color: white;
  width: 100%;
  height: 100%;
  position: relative;
}

video {
  width: 100%;
  height: auto;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 30, 0.8);
  display: flex;
  justify-content: center;
  z-index: 0;
}

.overlay-container {
  padding-top: 6rem;
  text-align: center;
  background-color: transparent;
  position: absolute;
  width: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.overlay-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.overlay-text {
  font-size: 6rem;
  font-weight: bold;
}

.overlay-section {
  text-align: center;
  font-size: 3rem;
  font-weight: bold;
}

.overlay-subtext {
  padding-top: 20px;
  font-size: 1.5rem;
  text-align: center;
}

.get-started-button {
  display: inline-block;
  padding: 10px 20px;
  background-color: black;
  color: white;
  text-decoration: none;
  margin-top: 20px;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 5px;
}

.contents {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  color: #000;
}

.content {
  margin: 10px;
  display: flex;
  width: 80%;
  flex-direction: column;
  background-color: #fff;
  border-radius: 5px;
}

.two-columns {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.column-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.column-image {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  overflow: hidden;
  border-radius: 5px;
}

.column-section {
  padding: 20px;
  text-align: left;
  font-size: 1.5rem;
  font-weight: bold;
}

.column-padding {
  padding: 20px;
}

.column-subtext {
  font-size: 1rem;
  text-align: left;
}

.footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  padding: 0.5rem;
  width: 100%;
}

.footer-content {
  text-align: center;
}

privacy-policy {
  margin: 10px;
  display: flex;
  flex-direction: column;
  width: 80%;
  text-align: left;
  font-size: 1rem;
  color: #000;
}

.privacy-policy-top {
  font-size: 3rem;
  font-weight: bold;
}

.privacy-policy-section {
  padding-top: 20px;
  font-size: 1.5rem;
  font-weight: bold;
}

.privacy-policy-content {
  padding-top: 10px;
  padding-bottom: 20px;
  font-size: 1rem;
}

.privacy-policy-update-date {
  padding-top: 20px;
  text-align: right;
}

@media screen and (max-width: 414px) {
  /* 414 px以下*/
  .overlay-text {
    font-size: 3rem;
  }
  .overlay-subtext {
    font-size: 1rem;
  }
  div.two-columns {
    flex-direction: column;
  }
}/*# sourceMappingURL=style.css.map */