@charset "UTF-8";

html {
  font-size: 100%;
}

body {
  color: #000;
  background-color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

li {
  list-style: none;
}

a {
  color: #6399E5;
  text-decoration: none;
}


a:hover {
  color: #00419D;
}


p {
  margin-bottom: 30px;
}

#header a,
#footer a {
  color: #000;
}

#header a:hover,
#footer a:hover {
  color: #00419D;
}

#header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 0 30px;
  position: fixed;
  z-index: 50;
}

#header .logo1 {
  width: 60px;
  height: auto;
  display: block;
  margin-left: 0.5rem;
  display: none;
}

#header .logo2 {
  width: 250px;
  height: auto;
  display: block;
  margin-left: 0.5rem;
}

#menu .menu {
  display: flex;
  list-style: none;
}

#menu li {
  border-left: 2px solid #9F282A;
}

#menu li:last-child {
  border-right: 2px solid #9F282A;
  padding-right: 30px;
}

#menu li:not(:last-child) {
  margin-right: 30px;
}

#menu li a {
  display: flex;
  flex-direction: column;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.3;
  padding: 10px 0;
  font-size: 16px;
  margin-left: 30px;
}

#menu li a span {
  color: #00419D;
  font-size: 14px;
  font-family: Sawarabi Mincho;
}

#subtitle {
  background-image: url(/img/concert/subtitle.jpg);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  max-width: 100%;
  height: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#subtitle h2 {
  font-size: 70px;
  font-family: Tangerine;
  color: #fff;
}

#wrapper {
  height: auto;
  max-width: 100%;
  margin: 180px 15rem 100px;
  padding: 400px 8rem 70px;
  background-color: #fff;
  clip-path: polygon(0 calc(10px + 4vw), 100% 0, 100% 100%, 0 100%);
}

h3 {
  font-family: Sawarabi Gothic;
  font-size: 24px;
  font-weight: regular;
  color: #00419D;
  position: relative;
  margin-bottom: 32px;
  text-align: left;
}

h3::after {
  content: "";
  width: 42px;
  height: 2px;
  background-color: #6399E5;
  position: absolute;
  bottom: -8px;
  left: 0px;
}


#footer {
  padding: 32px 15rem;
  max-width: 100%;
  height: auto;
  background-image: url(/img/common/footer_img.jpg);
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

#footer .footer .menu_footer {
  display: flex;
}

#footer .footer .menu_footer li {
  margin-right: 40px;
}

#footer .x_logo img {
  padding-top: 16px;
  width: 32px;
  height: auto;
  display: inline;
}

#footer .text_small {
  margin-top: 50px;
  font-size: 12px;
}

.remarks {
  color: #9F282A;
}


/* タブレットサイズ */
@media screen and (max-width: 1000px) {

#header .logo1 {
  display: block;
}

#header .logo2 {
  display: none;
}

  #wrapper {
    margin: 100px 5rem;
    padding: 480px 8rem 70px;
  }

  #footer {
    height: auto;
    padding: 30px 10rem 16px;
    background-position: 70% 50%;
  }

  #footer .footer .menu_footer {
    flex-direction: column;
    align-items: flex-start;
  }

  #footer .footer .menu_footer li {
    margin-top: 16px;
  }

  #footer .x_logo img {
    width: 24px;
    height: auto;
  }

  #footer .text_small {
    margin-top: 32px;
    font-size: 12px;
  }

}

.link3 {
  padding-top: 50px;
}



/* スマートフォン */
@media screen and (max-width: 767px) {

  #header {
    height: 60px;
    padding: 0;
  }

  #header .logo {
    max-width: 50px;
  }



  /* ハンバーガーここから */
  #menu {
    width: 100%;
    height: 400px;
    background-color: #fff;
    position: fixed;
    top: -100%;
    z-index: 20;
    transition: all 0.6s;
  }

  #menu.open {
    overflow: auto;
    top: 0;
  }

  #menu .menu {
  display: flex;
  flex-direction: column;
  padding-top: 80px;
}

#menu li {
  border-style: none;
}

#menu li:last-child {
  border-style: none;
  padding-right: 0;
}

#menu li:not(:last-child) {
  margin-right: 0;
}

#menu li a {
  padding: 15px 0;
  margin-left: 0px;
}

  #hamburger {
    width: 52px;
    height: 52px;
    cursor: pointer;
    position: fixed;
    right: 2px;
    z-index: 30;
  }

  #hamburger span {
    width: 30px;
    height: 2px;
    background-color: #9F282A;
    display: inline-block;
    position: absolute;
    right: 10px;
    top: 4px;
  }

  /* 閉じている状態 */
  #hamburger span:nth-of-type(1) {
    top: 16px
  }

  #hamburger span:nth-of-type(2) {
    top: 26px
  }

  #hamburger span:nth-of-type(3) {
    top: 36px
  }


  /* 開いている状態 */
  #menu.global_menu.active {
    top: 0;
  }

  #hamburger.active span:nth-of-type(1) {
    top: 24px;
    transform: rotate(-45deg);
  }

  #hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }

  #hamburger.active span:nth-of-type(3) {
    top: 24px;
    transform: rotate(45deg);
  }

  /* ハンバーガーここまで */



  #subtitle {
    height: 150px;
  }

  #subtitle h2 {
    font-size: 60px;
  }

  #wrapper {
    margin: 100px auto 0px;
    padding: 250px 2rem 70px;
  }


  #footer {
    height: auto;
    padding: 16px 0px 16px 40px;
    background-position: 70% 50%;
  }

  #footer .footer .menu_footer {
    flex-direction: column;
    align-items: flex-start;
  }

  #footer .footer .menu_footer li {
    margin-top: 16px;
  }

  #footer .x_logo img {
    width: 24px;
    height: auto;
  }

  #footer .text_small {
    margin-top: 32px;
    font-size: 12px;
  }

}