@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
}

a:focus {
  color: black;
}

ul,
li {
  list-style: none;
}

/* 
MARK: COMMON
*/
.page {
  & .container {
    width: 100%;
    margin: auto;
    max-width: 1080px;
  }

  & img {
    display: block;
    width: 100%;
    object-fit: cover;
  }
}

/* 
MARK: PAGE
*/

.page {
  background: #fef9eb;
  font-family: "Noto Serif JP";
  letter-spacing: 0.1em;
  line-height: 1.8;

  & .container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
  }
}

/* 
MARK: HEADER
*/

section.header {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 2px;

  & .access {
    display: flex;
    justify-content: end;
    height: 40px;
    align-items: center;
    justify-self: end;
    align-self: self-end;
    gap: 6px;

    & img {
      width: 37px;
    }

    & p {
      font-size: 14px;
      display: flex;
      align-items: baseline;

      & span,
      strong {
        color: #927e44;
      }

      & strong {
        font-size: 24px;
      }

      &+p::before {
        content: "／";
        font-size: 12px;
        color: #927e44;
        margin-right: 6px;
      }
    }
  }

  & .mv {
    grid-column: span 2;
  }
}

/* 
MARK: HOWTOENJOY
*/

section.howtoenjoy {
  display: flex;
  flex-direction: column;
  gap: 77px;

  & .title {
    text-align: center;

    & div {
      font-size: 48px;
      color: #927e44;
    }

    & span {
      font-size: 20px;
      font-weight: 400;
    }
  }

  & .days_list {
    display: flex;
    flex-direction: column;
    gap: 148px;

    & .day {
      display: flex;
      flex-direction: column;
      gap: 64px;

      & .title {
        text-align: center;

        & div {
          color: #6b5238;
          font-size: 48px;
          font-weight: 700;

          &::after {
            content: "";
            display: block;
            width: 80%;
            height: 2px;
            background: #6b5238;
            margin: 40px auto 16px;
          }
        }

        & span {
          color: #af9e3d;
          text-transform: capitalize;
        }
      }

      & .content {
        display: flex;
        flex-direction: column;
        gap: 24px;

        & .point {
          display: flex;
          gap: 60px;
          padding-bottom: 24px;
          border-bottom: 1px dotted #6b5238;

          &:last-child {
            border-bottom: none;
          }

          & .text {
            width: calc(50% - 20px);
            max-width: 520px;
            display: flex;
            flex-direction: column;
            gap: 16px;

            & .time {
              width: fit-content;
              padding: 0 10px;
              border-radius: 4px;
              background: linear-gradient(261deg, #ba8f42 0%, #8f6f33 100%);
              font-size: 20px;
              font-weight: 700;
              color: white;
              text-align: center;
              letter-spacing: 0.05em;
            }

            & strong {
              font-size: 32px;
              font-weight: 400;
            }
          }

          & .image {
            aspect-ratio: 500/346;
            border-radius: 0 40px;
            overflow: hidden;
          }

          &.reverse {
            flex-direction: row-reverse;
          }
        }

      }
    }
  }
}

/* 
MARK: FOOTER
*/

section.footer {
  width: 950px;
  margin-inline: auto;
  margin-top: 40px;
}

section.footer img {
  display: initial;
}

section.footer .group {
  width: 950px;
  float: left;
  overflow: hidden;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

section.footer .group dl {
  width: 950px;
  overflow: hidden;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

section.footer .group dl dt {
  width: 250px;
  float: left;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

section.footer .group dl dd {
  width: 700px;
  float: left;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}

section.footer .access {
  width: 950px;
  clear: both;
  position: relative;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 40px 0px;
}

section.footer .access span {
  width: 232px;
  position: absolute;
  top: 0;
  right: 0px;
  margin: 17px 20px 0px 0px;
  padding: 0px 0px 0px 0px;
}

section.footer .access ul {
  width: 720px;
  overflow: hidden;
  border-bottom: #CDCAB1 solid 1px;
  margin: 0px 0px 40px 0px;
  padding: 17px 0px 0px 25px;
}

section.footer .access ul li {
  width: auto;
  float: left;
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
}