@charset "UTF-8";

:root {
  --black: #444;
  --white: #fff;
  --red:#eb0000;
  --blue: #0af;
  --pink: #d2286e;
  --green:  #3cb432;
  --yellow: #fff01e;
}

html,body {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 3.3vw, 18px);
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 400;
  font-feature-settings: "palt";
  color: var(--black);
  width: 100%;
  background: none;
  line-height: 1.8;
}
@media screen and (min-width: 1025px) {
  html,body {
    font-size: clamp(12px, 1.2vw, 18px);
  }
}

body {
  position: relative;
}
body::before {
  content: '';
  width: 100%;
  height: 100lvh;
  position: fixed;
  background: url(../img/bg.webp)no-repeat;
  background-size: cover;
  background-position: center;
  filter: blur(2px);
  opacity: .5;
  z-index: -1;
  pointer-events: none;
}
@media (orientation: portrait){
  body::before {
    background-position: 90% bottom;
    filter: blur(1px);
  }
}

p {
  margin: .5em 0;
  text-align: left;
  word-break: break-all;
}
a,
a:visited,
a:active {
  color: var(--black);
  text-decoration: underline;
}
a:hover {
  color: var(--blue);
  text-decoration: none;
}
img {
  max-width: 100%;
}
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: var(--yellow);
  font-size: .8rem;
  font-weight: 500;
   z-index: 1000;
}
.header__inner {
  height: 100%;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--yellow);
}
.logo a {
  display: flex;
  width: 100px;
  align-items: center;
  align-content: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 1em;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__list a {
  text-decoration: none;
  color: #111;
  display: block;
  padding: .2rem .6rem;
  border-radius: 8px;
}
.nav__list li.x_post a,#x_post_sp {
  position: relative;
  background: #000;
  color: var(--white);
  border-radius: 100px;
  padding: 0 .7rem 0 1.6rem;
}
.nav__list li.x_post a::before,#x_post_sp::before {
  content: '';
  background: url(../img/logo-white.png)no-repeat;
  background-position: center;
  background-size: 70%;
  width: 1rem;
  height: 100%;
  position: absolute;
  left: .5rem;
  top: 0;
}
#x_post_sp {
  display: none;
}

.hamburger {
  display: none;
  position: relative;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--black);
  transition:
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
}
.hamburger span:nth-child(1) {
  top: 10%;
}
.hamburger span:nth-child(2) {
  top: calc(50% - 2px);
}
.hamburger span:nth-child(3) {
  bottom: 10%;
}
.hamburger.is-open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}
@media (min-width: 1001px) {
  .nav__list li a:not(.x_post a):hover {
    background: rgba(255, 255, 255, .6);
  }
}
@media (max-width: 1000px) {
  .hamburger {
    display: block;
  }
  .nav {
    font-size: 1rem;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    height: auto;
    background: var(--white);
    border-bottom: 4px solid var(--yellow);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: -1;
  }
  .nav.is-open {
    transform: translateY(0);
  }
  .nav__list {
    flex-direction: column;
    align-items: normal;
    padding: 2rem;
    gap: 1.6rem;
  }
  .nav__list li a{
    border-left: 3px solid var(--yellow);
    border-bottom: 1px solid #eee;
    border-radius: unset;
  }
  .nav__list li.x_post {
    display: none;
  }
  #x_post_sp {
    display: block;
    position: absolute;
    right: calc(2rem + 32px);
    text-decoration: none;
  }
}

main {
  position: relative;
  margin: 0 auto;
  width: 100%;
  padding: 50px 0 0;
  z-index: 1;
  overflow: hidden;
}
#top-img {
  position: relative;
  width: 100%;
  margin: 10rem auto;
  text-align: center;
}
h1 {
  margin: 0 auto;
  max-width: 1200px;
  width: 95%;
}
@media (max-width: 1000px) {
  #top-img {
    margin: 4rem auto 8rem;
  }
  h1 {
    width: 90%;
    max-width: 660px;
  }
}

#news {
  position: relative;
  max-width: 800px;
  width: 96%;
  margin: 2rem auto;
  border: 4px solid var(--green);
  background: var(--white);
  border-radius: 10px;
  padding: 1rem;
  box-shadow: 0 0 0 2px var(--white);
  z-index: 1;
}
#news h2 {
  color: var(--green);
  font-size: 1.6rem;
  padding: .4rem;
  font-weight: 800;
  letter-spacing: 3px;
  border: none;
}
.n_head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: repeating-linear-gradient(-45deg, #f9f9f9, #f9f9f9 10px, #fff 0, #fff 20px);
  line-height: 1.2;
  padding: .4rem;
}
.n_head>div {
  color: var(--green);
  font-weight: 800;
  font-size: 1.6rem;
}
.n_head>a {
  position: relative;
  font-size: .8rem;
  background: var(--yellow);
  text-decoration: none;
  padding: .6em .8em .6em 3.8em;
  border-radius: 4px;
  text-align: left;
  font-weight: 500;
  color: #000;
}
.n_head>a::before {
  position: absolute;
  content: '';
  background: url(../img/logo-white.png), #000;
  background-repeat: no-repeat;
  background-size: 70%;
  background-position: center;
  width: 2.4em;
  height: 2.4em;
  top: 0;
  bottom: 0;
  left: .8em;
  border-radius: 4px;
  margin: auto;
}
.n_head>a:hover {
  text-decoration: underline;
}
.n_wrap {
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  height: 10rem;
  z-index: 2;
  -webkit-overflow-scrolling: touch;
}
.n_wrap>div {
  display: flex;
  align-items: center;
  margin: 1rem 0;
}
.n_d {
  color: var(--green);
  font-size: .8rem;
  border: 1px solid var(--green);
  border-radius: 60px;
  padding: 0 .5rem;
  margin-right: .3rem;
  background: #f9f9f9;
  white-space: nowrap;
}
.n_t {
  text-align: left;
}

#plan-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 96%;
  margin: 4rem auto;
  background: var(--white);
  padding: .5rem;
  border-radius: 10px;
}
#plan-wrap a{
  display: block;
  position: relative;
  transition: all .1s;
}
#plan-wrap a::before{
    content: '';
    position: absolute;
    width: 14%;
    height: 60px;
    background: url(../img/plan-down.png) no-repeat;
    background-size: contain;
    background-position: bottom;
    right: 0;
    left: 0;
    bottom: -1rem;
    margin: auto;
    z-index: 1;
}
#plan-wrap a:hover img {
  filter: brightness(1.05);
}
#plan-wrap a:hover::before {
  transform: translateY(2px);
}
@media screen and (max-width: 768px) {
  #plan-wrap {
    grid-template-columns: 1fr 1fr 1fr;
  }
  #plan-wrap a::before{
    bottom: .5rem;
  }
}
@media screen and (max-width: 600px) {
  #plan-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

.mainSec{
  position: relative;
  margin: 0;
  padding: 2rem 0;
}
.mainSec-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
}

.c-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.c-wrap .c-child {
  width: calc(100% / 2 - 1rem);
  margin: .5rem;
  padding: 1rem;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, .9);
}
@media screen and (max-width: 1024px) {
  .c-wrap .c-child {
    width: 100%;
  }
}

.restaurant {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .5rem;
  margin: 1rem 0 .5rem;
}
.restaurant dl {
  margin: 0;
   font-size: .9rem;
}
.restaurant dt {
  margin: .6rem 0 .4rem;
  font-weight: 600;
  line-height: 1.2;
}
.restaurant dd {
  margin: 0;
  text-align: left;
}

a.b-link {
  position: relative;
  display: block;
  background-color: var(--pink);
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  padding: .5rem 0;
  box-shadow: 0px 0px 6px 0 rgba(0, 0, 0, 0.4);
  transition: all .1s;
  margin: 1rem auto;
  text-align: center;
}
a.b-link:hover {
    outline: 4px solid var(--pink);
}
a.b-link.location {
  max-width: 1200px;
}
a.b-link.out {
  padding: .5rem 2rem;
}
a.b-link.out::before {
  content: '';
  position: absolute;
  background: url(../img/link-icon.svg) no-repeat;
  background-size: contain;
  background-position: center;
  width: 1rem;
  height: 100%;
  right: .5rem;
  top: 0;
  bottom: 0;
}


#about.mainSec,#ticket.mainSec {
  background-color: var(--white);
}
#about.mainSec h2,#ticket.mainSec h2 {
  color: var(--green);
  border-color: var(--green);
}
#about.mainSec h3,#ticket.mainSec h3 {
  color: var(--green);
  border-color: var(--green);
  margin-top: 4rem;
}
#about .mainSec-inner,#ticket .mainSec-inner {
  max-width: 800px;
}

table.info {
  border-collapse: separate;
  border-spacing: 1rem;
}
table.info th{
  color: var(--green);
  font-weight: 600;
  border: 1px solid #ccc;
  border-radius: 2px;
  padding: .5rem;
  white-space: nowrap;
  background: #f9f9f9;
}
@media screen and (max-width: 600px) {
  table.info {
    border-spacing: 0;
    margin: 1rem 0 0;
  }
  table.info th,table.info td {
    display: block;
    width: 100%;
  }
  table.info td {
    margin: 1rem 0;
  }
}
ul.info-list {
  padding: 0;
  list-style: none;
  margin: 1rem 0 0;
}
ul.info-list li {
  border: 1px solid #ccc;
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 2px;
  margin: 0 0 .5rem;
}
ul.info-list li strong {
  font-weight: 600;
}
a.t-out {
  position: relative;
  padding-right: 1.2rem;
}
a.t-out::before {
  content: '';
  position: absolute;
  background: url(../img/link-icon.svg) no-repeat;
  background-size: contain;
  background-position: center;
  width: .9rem;
  height: 100%;
  top: 0;
  right: 0;
  filter: brightness(0.4);
}

.map_gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: .5rem;
  max-width: 1200px;
  margin: 1rem auto;
}
.map_item {
  cursor: pointer;
}
@media screen and (max-width: 600px) {
  .map_gallery {
    grid-template-columns: 1fr 1fr;
  }
}
.map2026 {
  cursor: zoom-in;
}

h2 {
  position: relative;
  font-size: min(6vw,3rem);
  font-weight: 900;
  margin: 0 auto;
  color: var(--pink);
  text-align: center;
  line-height: 1.2;
  border-top: 2px solid var(--pink);
  border-bottom: 2px solid var(--pink);
  background: repeating-linear-gradient(-45deg, #f9f9f9, #f9f9f9 10px, #fff 0, #fff 20px);
  padding: 1.6rem 0 1.8rem;
}
h2 span.h2-sub {
  display: block;
  font-size: 1rem;
  line-height: 1.6;
  margin: 1rem 0 0;
  color: var(--white);
  text-shadow: 2px 2px 1px var(--pink), -2px 2px 1px var(--pink), 2px -2px 1px var(--pink), -2px -2px 1px var(--pink), 2px 0px 1px var(--pink), 0px 2px 1px var(--pink), -2px 0px 1px var(--pink), 0px -2px 1px var(--pink);
  font-weight: 800;
  letter-spacing: 1px;
}
h2 span.h2-sub>span{
  display: inline-block;
}
h3 {
  margin: .5rem 0 1rem;
  padding: .5em;
  font-weight: 800;
  font-size: min(4.4vw, 1.6rem);
  border: 1px solid var(--pink);
  border-left: .5em solid var(--pink);
  color: var(--pink);
  border-radius: 3px;
  text-align: center;
  background: repeating-linear-gradient(-45deg, #f9f9f9, #f9f9f9 10px, #fff 0, #fff 20px);
  line-height: 1.2;
}
h4 {
  color: var(--pink);
  font-size: 1rem;
  padding: 0;
  margin: 1.4rem 0 0;
  position: relative;
  font-weight: 600;
  line-height: 1.2;
  text-align: left;
}
h4:before {
  content: '★';
  display: inline-block;
  margin: 0 1px 0 0;
  color: var(--pink);
}

.sp-br {
  display: none;
}

@media screen and (max-width: 750px) {
  .sp-br {
    display: block;
  }
  .pc-br {
    display: none;
  }
}


footer {
  width: 100%;
  margin: 0 auto;
  padding: 4rem 0;
  font-size: 12px;
  color: var(--black);
  text-align: center;
  font-weight: 500;
}
footer>p {
  text-align: center;
  margin: 0;
  color: var(--white);
  text-shadow: 0 0 4px #000, 0 0 4px #000, 0 0 4px #000, 0 0 4px #000;
}
footer p.socialshare {
  position: relative;
  font-size: 1rem;
  margin-bottom: 0;
  text-transform: uppercase;
  display: inline-block;
  background: var(--yellow);
  text-shadow: none;
  color: var(--black);
  padding: 0 1rem;
}
footer p.socialshare::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border: 8px solid transparent;
    border-top: 8px solid var(--yellow);
}
.sns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: .6rem;
  padding: 1.4rem 0;
  margin: 0 auto 2rem;
  max-width: 200px;
  justify-content: center;
  justify-items: center;
}
.sns li {
  list-style: none;
  width: 100%;
}
.sns li a {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--white);
  padding: 8px;
  border-radius: 8px;
}
#t-icon a {
  padding: 10px;
  color: #000;
}
#f-icon a{
  color: #0866ff;
}
#l-icon a{
  color: #00B900;
}

ul.attention {
    padding: 0;
    list-style: none;
    list-style-position: inside;
    margin: 1rem 0 0;
    font-size: .8rem;
    text-align: justify;
    font-weight: 400;
}
ul.attention li {
    position: relative;
    margin: 0 0 .4em;
    line-height: 1.5;
    padding-left: 1.1em;
}
ul.attention li::before {
    content: '※';
    position: absolute;
    left: 0;
    margin: auto;
}