@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");

/* header */
header {
  position: relative;
}

.topmv {
  width: 100%;
  height: 70vh;
  object-fit: cover;
}

.top_title {
  position: absolute;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 100px;
  font-family: "Bebas Neue", sans-serif;
}

@media screen and (max-width: 768px) {
  .top_title {
    top: 47%;
    font-size: 75px;
  }
}

@media screen and (max-width: 480px) {
  .top_title {
    top: 47%;
    font-size: 50px;
  }
}

.top_title_sub {
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 22px;
}

@media screen and (max-width: 768px) {
  .top_title_sub {
    top: 55%;
    font-size: 20px;
  }
}

@media screen and (max-width: 480px) {
  .top_title_sub {
    top: 53%;
    font-size: 18px;
  }
}

/* パンクズリスト */
.breadcrumb {
  background-color: #b9d4ee;
  padding: 14px 32px;
}

@media screen and (max-width: 1024px) {
  .breadcrumb {
    padding: 12px 24px;
    font-size: 14px;
  }
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    padding: 10px 20px;
  }
}

@media screen and (max-width: 480px) {
  .breadcrumb {
    padding: 8px 16px;
    font-size: 12px;
  }
}

.breadcrumb ol {
  display: flex;
  gap: 8px;
  color: #3b3b3b;
  align-items: center;
}
