@charset "utf-8";

/* 共通 */
* {
  box-sizing: border-box;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin-inline: auto;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans",
    "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  background-image: url(../img/umi1.jpg);
}

html {
  font-size: 62.5%;
  font-feature-settings: "palt";
  scroll-behavior: smooth;
}

.site-header {
  position: fixed;
  top: 20px;
  left: 20px;
  width: 200px;
  height: auto;
  border: 2.5px solid #fff;
  z-index: 100;
}

.hamburger {
  display: none;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 20px;
  z-index: 1000;
  flex-direction: column;
  align-items: center;
  width: 80px;
  height: 70px;
  border: none;
  border-radius: 5px;
  padding-top: 5px;
  background-color: rgba(239, 239, 239, 0.8);
}

.hamburger .bar {
  width: 40px;
  height: 3px;
  background-color: #125a6b;
  transition: 0.5s;
  border-radius: 3px;
  margin: 5px;
}

.hamburger.open .bar:nth-child(1) {
  transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.open .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.open .bar:nth-child(3) {
  transform: rotate(-45deg) translate(8px, -8px);
}

.menu-text {
  font-size: 1.6rem;
  color: #333;
  vertical-align: bottom;
}

.gnav-wrap .English {
  padding-right: 1.5em;
}

.gnav-wrap {
  position: absolute;
  background-color: rgba(208, 234, 234, 0.8);
  box-shadow: 0 1px 15px 0 rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  right: 50px;
  top: 25px;
}

.gnav-list a {
  text-decoration: none;
  color: #125a6b;
}

.gnav-list li {
  list-style: none;
  padding: 18px 0;
}

.gnav-list {
  margin-inline: auto;
  max-width: 1200px;
  align-items: center;
  justify-content: space-between;
  font-size: 1.8rem;
  font-weight: bold;
  gap: 3em;
}

.gnav-list.open {
  display: flex;
  animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@media screen and (min-width: 900px) {
  .gnav-list {
    display: flex;
  }
}

@media screen and (max-width: 900px) {
  .gnav-list {
    display: none;
    flex-direction: column;
    background-color: rgba(239, 239, 239, 0.95);
    position: fixed;
    top: 110px;
    right: 20px;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    width: 94%;
    height: 85%;
  }

  .gnav-wrap .English {
    padding-right: 0;
  }

  .gnav-list a {
    font-size: 1.8em;
    color: #288391;
    letter-spacing: 0.15em;
  }

  .hamburger {
    display: flex;
  }
}

@media screen and (max-width: 600px) {
  .gnav-list {
    right: 0;
    height: 90%;
    width: 100%;
  }
}

main {
  background-color: rgba(240, 248, 255, 0.9);
  border-radius: 50px;
  padding: 50px;
  color: #010c0f;
  margin: 110px 50px 50px;
}


@media screen and (max-width: 600px) {
  main {
    margin: 110px 10px 50px;
    padding: 20px;
  }
}

section {
  max-width: 1500px;
  margin-inline: auto;
}

.title {
  text-align: center;
}

.title p {
  padding-top: 2em;
  color: #d1260c;
  font-size: 1.4rem;
}

h1 {
  overflow: hidden;
  font-size: 6rem;
  color: #589ca7;
}

span {
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  margin: -0.5em;
  color: #010c0f;
}

h2 {
  font-size: clamp(1.8rem, calc(0.5vw + 1.500rem), 2.2rem);
  padding: 0.5em;
}

@media screen and (max-width: 900px) {
  * {
    font-size: 1.4rem;
  }

  h1 {
    font-size: 4.8rem;
    line-height: 1.2em;
  }
}

.credit {
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 50px;
}


#footer {
  width: 100%;
  margin: 0 auto;
  background-color: #fff;
}

.copyright {
  text-align: center;
  padding: 20px;
  color: #010c0f;
}

/* //////////////////////// */

/* チケット */
.ticket-agency h2,
.ticket-window h2 {
  background-color: #fce883;
  border-radius: 2px 50px 50px 2px;
  margin: 1.5em auto 1em;
}

.ticket-agency h2::before,
.ticket-window h2::before {
  display: inline-block;
  vertical-align: text-bottom;
  content: "";
  height: 1.2em;
  width: 5px;
  background-color: #257e8c;
  border-radius: 50px;
  margin-right: 0.5em;
}

.subtitle {
  border: 2px solid #68b7be;
  margin: 1.5em auto 1em;
  font-size: clamp(2rem, calc(1vw + 1.300rem), 2.5rem);
  text-align: center;
  color: #257e8c;
  background-color: #fff;
  border-radius: 50px;
}

table,
th,
td {
  border: 1.5px solid #125a6b;
  padding: 1.2em;
}

table {
  background-color: #fff;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: clamp(1rem, calc(1.5vw + 0.3rem), 2rem);
  margin: 0 auto 80px;
  table-layout: auto;
  max-width: 1300px;
}

.table-title th {
  background: #589ca7;
  color: #fff;
}

th {
  background-color: #d0eaea;
}

.soldout,
.price {
  text-align: right;
}

.soldout {
  position: relative;
}

td.soldout::before {
  content: "販売終了";
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: rgba(194, 204, 206, 0.7);
  color: #d66053;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
  letter-spacing: 0.1em;
}

.ticket .agency {
  text-align: center;
}

.ticket .agency th {
  background: #589ca7;
  color: #fff;
}

.link {
  color: #125a6b;
  word-wrap: break-word;
}

.ticket-window p {
  margin-left: 6vw;
  font-size: clamp(1.4rem, calc(1.5vw + 0.2rem), 2rem);
  line-height: 1.7em;
  padding-right: 60px;
}

.ticket-window ul {
  margin-top: 1em;
  list-style: none;
  font-size: 1.3rem;
  padding-bottom: 50px;
  padding-right: 40px;
}

.ticket-window li {
  position: relative;
  padding-left: 24px;
  margin-left: 2vw;
  min-width: 60vw;
}

.ticket-window ul li::before {
  content: "\0274a";
  color: #d66053;
  left: 0;
  position: absolute;
}

@media screen and (max-width: 600px) {
  .ticket-window li {
    margin-left: -0.5em;
  }

  .ticket-window p {
    margin-right: -50px;
  }

  .link {
    font-size: 1rem;
  }
}

/* グッズ */
.goods-p {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 50px;
  padding-bottom: 1em;
  border-bottom: 3px dotted #68b7be;
}

.container {
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-flow: row wrap;
  align-items: start;
  gap: 40px;
  justify-content: center;
  margin-bottom: 30px;
}

li {
  list-style: none;
  max-width: 300px;
}

.goods::before {
  display: block;
  content: "";
  width: 300px;
  height: 300px;
  border-radius: 15px;
  background-color: gray;
  margin: 0 auto;
}

.goods::before {
  content: "Sold Out";
  color: #d0eaea;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 5rem;
}

.goods-title {
  font-size: 1.5rem;
  margin-top: 0.7em;
}

.goods-title dt {
  font-size: 1.6rem;
  font-weight: bold;
}

.goods-red {
  color: #d1260c;
  padding-left: 1em;
  font-size: 1.1rem;
}

.goods-red::before {
  content: "\0274a";
  margin-left: -1em;
  margin-right: 5px;
  font-size: 1.3rem;
}

/* うらない */
#loading,
#loadingGif,
#result {
  display: none;
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  padding: 1rem;
}

a {
  text-decoration: none;
}

#loading {
  text-align: center;
  font-size: 1.8rem;
  color: #3d443b;
}

#result {
  text-align: center;
  font-size: 1.8rem;
  margin: 30px auto;
}

#loadingGif {
  margin: 0 auto;
  max-height: 500px;
}

#fortuneImage {
  margin: 0 auto;
  max-height: 700px;
}

#fortuneButton {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 0.3em 1em;
  border: 1.5px solid #010c0f;
  border-radius: 8px;
  margin: 30px auto;
  background-color: #fce883;
  display: flex;
  justify-content: center;
  width: 10em;
}