@charset "UTF-8";

.menu-list {
  width: 90%;
  gap: 30px;
  flex-wrap: nowrap;
}

h2 {
  margin: 40px 0 0 0;
  text-align: center;
}

/* ナビゲーション */
.day-nav {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin: 20px 0 40px 0;
}

.day-nav a {
  text-decoration: none;
  padding: 10px 25px;
  border-radius: 999px;
  background-color: #f7d2e4;
  color: #7a5f87;
  font-weight: bold;
  transition: 0.3s;
}

.day-nav a:hover {
  transform: translateY(-3px);
}

/* dayタイトル */
.day-detail {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
}

.day-header1 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.day-header1 h3 {
  padding: 10px 60px;
  border-radius: 999px;
  color: white;
  background-color: #f7a8d3;
  width: 200px;
  margin: 40px 0 0 0;
}

.day-header1 p {
  margin-top: 16px;
  color: #7b6795;
}

.day-header2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.day-header2 h3 {
  padding: 10px 60px;
  border-radius: 999px;
  color: white;
  background-color: #b899ff;
  width: 200px;
  margin: 40px 0 0 0;
}

.day-header2 p {
  margin-top: 16px;
  color: #7b6795;
}

.day-header3 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.day-header3 h3 {
  padding: 10px 60px;
  border-radius: 999px;
  color: white;
  background-color: #8fd5ff;
  width: 200px;
  margin: 40px 0 0 0;
}

.day-header3 p {
  margin-top: 16px;
  color: #7b6795;
}

/* タイムライン */
.timeline {
  position: relative;
  margin-left: 60px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 3px;
  background-color: #f7c9e7;
}

.day2::before {
  background-color: #d7c4ff;
}

.day3::before {
  background-color: #bfe8ff;
}

.timeline-item {
  display: flex;
  gap: 20px;
  position: relative;
  margin-bottom: 30px;
}

.time {
  width: 70px;
  height: 25px;
  background-color: #f7a8d3;
  color: white;
  border-radius: 999px;
  text-align: center;
  padding: 6px 0;
  font-weight: bold;
}

.day2 .time {
  background-color: #b899ff;
}

.day3 .time {
  background-color: #8fd5ff;
}

.icon {
  width: 40px;
  height: 40px;
  background-color: white;
  border: 3px solid #f7c9e7;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  z-index: 1;
}

.day2 .icon {
  border: 3px solid #d7c4ff;
}

.day3 .icon {
  border: 3px solid #bfe8ff;
}

.content {
  flex: 1;
  background-color: #fff6fb;
  border: 3px solid #f7c9e7;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 0 #f4b8dc;
}

.day2 .content {
  background-color: #fbf8ff;
  border: 3px solid #d7c4ff;
  box-shadow: 0 4px 0 #c3a7ff;
}

.day3 .content {
  background-color: #f5f6ff;
  border: 3px solid #bfe8ff;
  box-shadow: 0 4px 0 #a8dfff;
}

h4 {
  margin-bottom: 8px;
  color: #7b6795;
}

.content p {
  line-height: 1.4;
  color: #666;
}

/* フッター */
.footer-mv {
  background-image: url(images/footer-mv.PNG);
  background-size: cover;
  background-position: bottom;
  height: 220px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

footer a {
  text-decoration: none;
  background-color: #d7c4ff;
  padding: 16px 32px;
  border-radius: 30px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.1em;
  display: flex;
}

@media screen and (max-width: 767px) {
  .timeline {
    margin-left: 0;
  }

  .timeline-item {
    flex-direction: column;
  }

  .timeline::before {
    display: none;
  }

  h2 {
    margin: 0;
  }
}
