/**********
レスポンシブ
***********/
@media (max-width: 768px) {
  .nav_list {
    flex-direction: column;
  }

  .nav_item {
    width: 100%; /* フレキシブルに幅を調整 */
  }

  .block,
  .wrap {
    width: 100%; /* スマートフォン用のスタイル調整 */
  }
}

/**********
メイン
***********/

body {
  height: 100vh;
  height: 100dvh;
}

.header {
  position: sticky;
  z-index: 100;
  width: 100%;
  top: 0;
  left: 0;
}

.header img {
  height: 18px;
}

.nav_list {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.nav_item {
  width: 100%;
  color: #fff;
}

.nav_link {
  display: block;
  padding: 20px 0;
  text-align: center;
  background-color: #080808;
}

.nav_link.active {
  background-color: #080808;
  color: #fff;
  transition: 1.5s;
}

.wrap {
  position: fixed;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  top: 0;
  overflow: auto;
}

footer {
  position: sticky;
  text-align: center;
  z-index: 100;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 20px 0;
  color: rgb(173, 173, 173);
  font-size: 8px;
  background-color: #080808;
}

.block {
  position: relative;
  font-size: 15x;
  line-height: 100dvh;
  height: 100dvh;
  text-align: center;
  align-items: center;
  color: #fff;
  background-color: #000000;
  overflow-x: hidden;
}

.block p {
  position: absolute;
  font-size: 15px;
  width: 70%;
  left: 50%;
  bottom: 20%;
  line-height: 2.2;
  color: #0e0e0e;
  -ms-transform: translate(-50%, -50%); /*ベンダープレフィックス*/
  -webkit-transform: translate(-50%, -50%); /*ベンダープレフィックス*/
  transform: translate(-50%, -50%); /*センター寄せの修正*/

  /*
 vertical-align: middle;*/

  white-space: nowrap;
  overflow: hidden;
  animation: jojo 1s ease-in-out;
}

@keyframes jojo {
  from {
    width: 0%;
  }
}
#block9 p {
  position: absolute;
  font-size: 13px;
  width: 70%;
  left: 50%;
  top: 50%;
  line-height: 2.2;
  -ms-transform: translate(-50%, -50%); /*ベンダープレフィックス*/
  -webkit-transform: translate(-50%, -50%); /*ベンダープレフィックス*/
  transform: translate(-50%, -50%); /*センター寄せの修正*/
}

mark {
  background: rgb(255, 255, 255);
  background-size: auto 1.2em;
  padding: 0.3em 0.5em;
}

/**
.block:nth-of-type(odd) {
  background-color: #dda7fc;
}

.block:nth-of-type(even) {
  background-color: #a7fce0;
}
**/

.block video {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%); /*ベンダープレフィックス*/
  -webkit-transform: translate(-50%, -50%); /*ベンダープレフィックス*/
  transform: translate(-50%, -50%); /*センター寄せの修正*/
}

.block img {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%); /*ベンダープレフィックス*/
  -webkit-transform: translate(-50%, -50%); /*ベンダープレフィックス*/
  transform: translate(-50%, -50%); /*センター寄せの修正*/
}

#date_img {
  transition: transform 0.5s ease-in-out;
  transform-origin: center center;
}

/*******************************/
@keyframes parallax-large-anim {
  from {
    transform: translateY(500px);
  }
  to {
    transform: translateY(0px);
  }
}
.large {
  animation: parallax-large-anim linear;
  animation-timeline: scroll();
}

@keyframes parallax-small-anim {
  from {
    transform: translateY(-500px);
  }
  to {
    transform: translateY(0px);
  }
}

.small {
  animation: parallax-small-anim linear;
  animation-timeline: scroll();
}

/*******************************/
body {
  font-family: Arial, sans-serif;
  background-color: #080808;
  margin: 0;
  padding: 0;
}
.container {
  max-width: 500px;
  margin: 10px auto;
  background-color: #080808;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
h2 {
  text-align: center;
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 20px;
}
label {
  display: block;
  margin-bottom: 5px;
  color: #ffffff;
}
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  border: 0.1px solid #ffffff;
  color: #ffffff;
  border-radius: 4px;
  box-sizing: border-box;
}
textarea {
  height: 100px;
  color: #ffffff;
}
button {
  background-color: #ffffff;
  text-align: center;
  text-transform: bold;
  color: #000000;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
}
button:hover {
  background-color: #ff6c3b;
  color: #ffffff;
  font-weight: bold;
}
