@charset "UTF-8";
/* ============================================
#共通タグ
=============================================== */
* {
  box-sizing: border-box; }

body {
  font-family: "Klee One", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.45;
  color: #666;
  margin: 0;
  padding: 62px 0 0;
  background-color: #3c2102; }
  body.fixed {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
    position: fixed; }

a,
a:visited,
a:hover {
  color: #fff; }

img {
  vertical-align: top;
  border: 0;
  max-width: 100%; }

.wrapper {
  text-align: left;
  margin: 0 auto;
  overflow: hidden;
  width: 100%;
  position: relative; }

.pc-br {
  display: inline; }
  @media all and (max-width: 768px) {
    .pc-br {
      display: none; } }

/* ===============================================
#ヘッダー
=============================================== */
.header {
  position: fixed;
  right: 0;
  top: 0;
  background-color: #2b1701;
  z-index: 999;
  width: 100%;
  border-bottom: 1px solid #b68e49; }

.header-inner {
  max-width: 1100px;
  margin: 0 auto; }

.header-link {
  font-family: math, serif;
  float: left;
  margin-left: 18px;
  display: flex;
  align-items: center;
  height: 62px; }
  .header-link a {
    display: inline-block;
    color: #b68e49;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.25rem;
    letter-spacing: 0.075rem;
    margin-left: 2rem; }

.header-ico {
  float: right;
  margin-right: 11px; }

.header-ico a {
  display: inline-grid;
  float: left;
  width: 62px;
  height: 62px;
  margin-left: 1px;
  cursor: pointer; }

.header-ico a.twitter {
  width: 62px;
  height: 62px;
  display: inline-grid;
  place-items: center; }

.header-ico a.twitter img {
  width: 22px; }

.header-ico a.ynn {
  width: 222px;
  height: 62px;
  display: inline-grid;
  place-items: center; }

.header-ico a.ynn img {
  width: 192px; }

.header-music {
  width: 62px;
  height: 62px;
  display: inline-grid;
  place-items: center; }

.header-music img {
  width: 22px; }

.header-sp {
  display: none; }

#overlay {
  display: none; }

@media all and (max-width: 900px) {
  .header,
  .header-link {
    display: none; }

  .header-sp {
    display: block;
    position: fixed;
    right: 0;
    top: 0;
    background-color: #2b1701;
    z-index: 999;
    width: 100%; }
    .header-sp .ynn {
      width: 222px;
      height: 62px;
      display: inline-grid;
      place-items: center; }
      .header-sp .ynn img {
        width: 192px; }

  /* スマホメニュートリガー 共通 */
  .menu-trigger {
    position: fixed;
    width: 22px;
    height: 18px;
    top: 20px;
    right: 20px;
    z-index: 1000;
    display: block; }

  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background-color: #b68e49;
    z-index: 1001; }

  .menu-trigger span:nth-of-type(1) {
    top: 0; }

  .menu-trigger span:nth-of-type(2) {
    top: 8px; }

  .menu-trigger span:nth-of-type(3) {
    bottom: 0; }

  /* スマホメニュートリガー エフェクト */
  .menu-trigger.active span {
    background-color: #b68e49; }

  .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(8px) rotate(-45deg);
    transform: translateY(8px) rotate(-45deg); }

  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0; }

  .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg); }

  #overlay {
    position: fixed;
    min-height: 0;
    width: 100%;
    min-width: 0;
    padding: 72px 20px 20px;
    z-index: 998;
    overflow-y: scroll;
    background-color: #2b1701;
    display: none;
    height: 100vh;
    height: 100dvh;
    box-sizing: border-box; }
    #overlay ul {
      margin: 0;
      padding: 0;
      list-style: none; }
      #overlay ul li {
        text-align: center;
        margin-bottom: 12px; }
        #overlay ul li a {
          font-family: math , serif;
          color: #b68e49;
          text-decoration: none;
          font-size: 1.25rem;
          font-weight: bold; }
        #overlay ul li img {
          width: 18px;
          vertical-align: -1.5px; } }
/* ===============================================
#メインコンテンツ
=============================================== */
.visual {
  position: relative;
  aspect-ratio: 16 / 7;
  display: grid;
  place-items: center;
  width: 100%;
  height: auto; }
  @media all and (max-width: 640px) {
    .visual {
      height: calc(100vh - 62px);
      height: calc(100dvh - 62px); } }

@keyframes colored {
  0%,
  45% {
    filter: grayscale(100%); }
  100% {
    filter: grayscale(0%); } }
.logo {
  max-width: 450px;
  width: 85%;
  display: block; }
  @media all and (max-width: 768px) {
    .logo {
      max-width: 300px;
      width: 100%; } }

/*img.animate {
  animation: animationZoom 0.75s ease-in-out 1s forwards, animationZoom2 0.25s ease-in-out 2.25s forwards, animationBulubulu 0.25s ease-in-out 2.25s forwards;
}*/
@keyframes animationFade {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }
@keyframes animationZoom {
  0% {
    transform: scale(1);
    opacity: 0; }
  80% {
    transform: scale(3);
    opacity: 1; }
  100% {
    transform: scale(2);
    opacity: 1; } }
@keyframes animationZoom2 {
  0% {
    transform: scale(2);
    opacity: 1; }
  50% {
    transform: scale(3);
    opacity: 1; }
  100% {
    transform: scale(2);
    opacity: 1; } }
@keyframes animationBulubulu {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0); }
  10% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px); }
  20% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px); }
  30% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px); }
  40% {
    -webkit-transform: translate(2px, 2px);
    transform: translate(2px, 2px); }
  50% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px); }
  60% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px); }
  70% {
    -webkit-transform: translate(-2px, 2px);
    transform: translate(-2px, 2px); }
  80% {
    -webkit-transform: translate(-2px, -2px);
    transform: translate(-2px, -2px); }
  90% {
    -webkit-transform: translate(2px, -2px);
    transform: translate(2px, -2px); }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0); } }
section {
  display: block;
  padding: 5rem 20px;
  width: 100%;
  background-color: #3c2102;
  margin: 0 auto; }
  @media all and (max-width: 640px) {
    section {
      padding: 3rem 10px; } }
  section .section__inner {
    max-width: 800px;
    margin: 0 auto; }

h1 {
  font-family: math, serif;
  margin: 0;
  color: #b68e49;
  text-align: center;
  font-size: 3rem;
  letter-spacing: 0.15rem;
  padding-bottom: 1px; }
  @media all and (max-width: 768px) {
    h1 {
      font-size: 2.75rem; } }
  @media all and (max-width: 640px) {
    h1 {
      font-size: 2.5rem; } }
  h1 + p {
    font-family: math, serif;
    font-size: 2.25rem;
    font-weight: 900;
    color: #f5f5dc;
    margin: 0 0 3rem;
    text-align: center;
    letter-spacing: 0.025em; }
    @media all and (max-width: 768px) {
      h1 + p {
        font-size: 2rem; } }
    @media all and (max-width: 640px) {
      h1 + p {
        font-size: 1.25rem; } }
    h1 + p span {
      font-size: 1rem; }
      @media all and (max-width: 640px) {
        h1 + p span {
          font-size: 0.75rem; } }

h2 {
  color: #b68e49;
  font-weight: normal;
  text-align: center;
  padding: 0 0 0.5rem;
  font-size: 2rem;
  border-bottom: 1px solid rgba(182, 142, 73, 0.5);
  margin: 0 0 1.25rem; }
  @media all and (max-width: 640px) {
    h2 {
      font-size: 1.5rem; } }

section#timetable {
  background-color: #f5f5dc; }
  section#timetable h1 {
    color: #3c2102;
    font-weight: 300; }
    section#timetable h1 + p {
      color: #b68e49;
      padding-bottom: 2.5rem;
      background-image: url(../images/img_line.svg);
      background-position: center bottom;
      background-repeat: no-repeat;
      background-size: 300px auto;
      font-weight: 300; }

.timetable {
  max-width: 800px;
  width: 100%;
  padding: 1.5rem;
  margin: 0 auto;
  background-color: #3c2102; }
  @media all and (max-width: 640px) {
    .timetable {
      padding: 0.75rem; } }

.timetable div {
  border: 1px solid #b68e49;
  padding: 0 1.5rem; }
  @media all and (max-width: 640px) {
    .timetable div {
      padding: 0 0.75rem; } }

.timetable table {
  border-collapse: collapse;
  max-width: 100%;
  width: 100%;
  margin: 0 auto 0 auto;
  font-weight: 600; }

.timetable caption {
  width: 100%;
  max-width: 393px;
  height: 65px;
  padding: 0;
  margin: 0 auto 38px; }

.timetable th {
  border-bottom: #b68e49 1px solid;
  width: 21%;
  text-align: center;
  padding: 1.4rem 1rem 1.6rem;
  color: #f5f5dc;
  font-family: "Klee One", serif;
  font-size: 1.25rem;
  font-weight: 400; }
  @media all and (max-width: 640px) {
    .timetable th {
      width: 100%;
      display: block;
      text-align: left;
      padding: 0.25rem 0.75rem 0;
      border-bottom: none;
      font-size: 1.125rem; } }

.timetable td {
  border-bottom: #b68e49 1px solid;
  text-align: center;
  padding: 1.5rem 1rem;
  color: #f5f5dc;
  font-size: 1.125rem;
  font-weight: 600; }
  @media all and (max-width: 640px) {
    .timetable td {
      width: 100%;
      display: block;
      padding: 0 0.75rem 0.75rem;
      font-size: 1rem; } }

.timetable td.left {
  text-align: left; }

.timetable tr.last th,
.timetable tr.last td {
  border-bottom: none; }

.bnr {
  margin: 0 auto 0px;
  max-width: 710px;
  color: #fff;
  text-align: center; }

#howtoenjoy h1 {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  background-image: url(../images/img_line.svg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 300px auto;
  font-family: math, serif;
  font-weight: 300;
  letter-spacing: 0.05rem; }
#howtoenjoy p {
  color: #f5f5dc;
  margin: 0 0 2rem;
  text-align: center;
  font-size: 1.125rem; }
  @media all and (max-width: 640px) {
    #howtoenjoy p {
      font-size: 1rem; } }
#howtoenjoy .bnr {
  margin: 0 auto 3rem;
  display: block;
  max-width: 100%; }
#howtoenjoy .bnr-mail {
  margin: 0 0 1rem;
  font-size: 1.25rem; }
  @media all and (max-width: 640px) {
    #howtoenjoy .bnr-mail {
      font-size: 1rem; } }
  #howtoenjoy .bnr-mail a {
    color: #f5f5dc;
    font-family: "Playfair Display", serif;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0.075rem;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    width: fit-content;
    padding: 0.5rem 1rem;
    background-color: #2b1701;
    text-shadow: 1px 0 #b68e49, -1px 0 #b68e49, 0 1px #b68e49, 0 -1px #b68e49; }
#howtoenjoy .bnr-tag a {
  display: flex;
  justify-content: center;
  gap: 10px 5px;
  text-decoration: none;
  flex-wrap: wrap; }
  #howtoenjoy .bnr-tag a span {
    font-size: 1.25rem;
    color: #f5f5dc;
    cursor: pointer;
    display: block;
    width: fit-content;
    padding: 0.75rem 1rem;
    background-color: #2b1701;
    font-weight: bold;
    text-shadow: 1px 0 #b68e49, -1px 0 #b68e49, 0 1px #b68e49, 0 -1px #b68e49; }
    @media all and (max-width: 640px) {
      #howtoenjoy .bnr-tag a span {
        font-size: 1rem; } }

/* ===============================================
#フッター
=============================================== */
.footer {
  font-family: math, serif;
  clear: both;
  font-size: 1.125rem;
  font-weight: 300;
  letter-spacing: 0.075rem;
  color: #b68e49;
  padding: 2em;
  text-align: center;
  background-color: #2b1701;
  position: relative; }
