.about-product h2,
.access h2 {
  font-family: Georgia, "Times New Roman", Times, serif;
}

/* ===================================================== */

/* ----------ヘッダー--------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 60px;
  padding: 0 2em 0 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgb(0, 0, 0, 0.3);
  z-index: 1001;

  >a {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

#headerLogo {
  width: 40px;
  height: 40px;
  object-fit: cover;
  margin-right: 1em;
  transition: .2s ease-in-out;
}

#headerLogo:hover {
  opacity: .8;
  cursor: pointer;
}


header h1 {
  display: flex;
  flex-direction: column;
}

header h1 span {
  color: #fff;
}

header h1 span:first-child {
  font-size: 14px;
}

header h1 span:last-child {
  font-size: 26px;
}


.global-nav ul {
  display: flex;
  list-style: none;
  gap: 16px;
  /* display: flex; */
  align-items: center;
}

.global-nav ul li:nth-last-child(1) {
  padding: 12px;
  border-radius: 6px;
  background-color: #26a69a;
  transition: .3s;
}

.global-nav ul li:nth-last-child(2) {
  padding: 12px;
  border-radius: 6px;
  background-color: #26a69a;
  transition: .3s;
}

.global-nav ul li:nth-last-child(2):hover {
  background-color: #90CAF9;
}

.global-nav ul li:nth-last-child(1):hover {
  background-color: #90CAF9;
}

.global-nav a {
  color: #fff;
  position: relative;
  padding: 6px 0;
  text-decoration: none;
  transition: transform 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.global-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: #fff;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 260ms cubic-bezier(0.2, 1, 0.3, 1);
  opacity: 0.95;
}

.global-nav a:hover,
.global-nav a:focus {
  transform: translateY(-3px);
}

.global-nav a:hover::after,
.global-nav a:focus::after {
  transform: translateX(-50%) scaleX(1);
}

.global-nav a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.06);
}

/* レスポンシブ用のメニュー */
.resp-nav {
  display: none;
}

/* ----------ファーストビュー-------- */
.first-view {
  background-image: url(../img/keyVisual/resize_KeyVisual1\ \(1\).jpg);
  background-position: center center;
  background-size: cover;
  /* いい感じのグラデーション */
  width: 100%;
  height: 95vh;
  max-height: 800px;
  padding: 50px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-end;
}

.held-date {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-family: "Georgia", "Times New Roman", Times, serif;
  padding: 1em;
  background: rgba(0, 0, 0, .5);

  >p {
    padding: 0;
    margin-top: 0;
    font-size: 2.5rem;
  }

  .mini {
    font-size: 1rem;
  }

  .week {
    font-size: 1.5rem;
  }
}

.held-date h2 {
  font-size: 45px;
}


/* ===================================================== */
/* レスポンシブ対応（スマホ・タブレット用） */
/* ===================================================== */

@media (max-width: 762px) {
  .first-view {
    background-image: url(../img/keyVisual/resize_KeyVisual2.jpg);
    padding: 100px 4vw 40px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 95vh;
    box-sizing: border-box;
    position: relative;
  }

  .held-date {
    flex-direction: column;
    /* 画面幅が足りない時だけ縦並びに（必要なければ削除） */
    gap: 0.5em;
  }

  .held-date>p {
    font-size: 2.3rem;
    /* スマホ用に少しサイズダウン */
  }

  .held-date>p span:last-child {
    font-size: 1.rem;
  }
}

.hamburger {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #fff;
  transition: all .4s;
}

.hamburger__line:nth-of-type(1) {
  top: 14px;
}

.hamburger__line:nth-of-type(2) {
  top: 23px;
}

.hamburger__line:nth-of-type(3) {
  top: 31px;
}

/* メニューオープン時 */
.hamburger.active .hamburger__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}

.hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.nav {
  position: fixed;
  top: 10vh;
  right: 0;
  width: 200px;
  height: auto;
  background-color: #fff;
  border-radius: 2em 0 0 2em;
  border-bottom: 4px solid #219388;
  border-left: 4px solid #219388;
  border-top: 4px solid #219388;
  box-shadow: 4px 0 4px rgba(0, 0, 0, .1);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 90;
}

.nav.active {
  transform: translateX(0);
}

.nav__list {
  margin: 0;
  padding: 20px 5px;
  list-style: none;
  text-align: center;
}

.nav__item:nth-last-child(1) {
  box-sizing: border-box;
  background-color: #26a69a;
  border-radius: 24px 0 0 24px;
  font-weight: 600;
  margin-bottom: .5em;

  >a {
    color: #fff;
  }
}

.nav__item>a {
  font-weight: 600;
}

.nav__item {
  border-radius: 24px 0 0 24px;
  transition: .3s;
}

.nav__item:hover {
  background-color: #90CAF9;

  a {
    color: #fff;
  }
}

.nav__item:nth-last-child(2),
.nav__item:nth-last-child(1) {
  box-sizing: border-box;
  background-color: #26a69a;
  border-radius: 24px 0 0 24px;
  font-weight: 600;

  >a {
    color: #fff;
  }
}

.nav__item:nth-last-child(2):hover,
.nav__item:nth-last-child(1):hover {
  background-color: #90CAF9;

  a {
    color: #fff;
  }
}


.nav__link {
  display: block;
  padding: 15px 0;
  color: #333;
  text-decoration: none;
  margin-bottom: 4px;
}


@media (max-width: 1050px) {
  .hamburger {
    display: block;
  }

  .global-nav {
    display: none;
  }

  .resp-nav {
    display: block;
  }

  header {
    padding: 0 1em 0 1em;

    a>h1 {
      display: none;
    }
  }

  header h1 span:first-child {
    font-size: 12px;
  }

  header h1 span:last-child {
    font-size: 20px;
  }
}
