@charset "UTF-8";

/* 全体CSS */
body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 15px;
  line-height: 1.5em;
  letter-spacing: 0.03em;
  color: #333333;
}

img {
  width: 100%;
}

/* 共通CSS */
h2 {
  font-family: "Titan One", sans-serif;
  font-size: 40px;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 50px;
}

/* コンテンツ区切り波 */
.wave-lightblue {
  background-color: #056CF2;
  width: 100%;
  height: 100%;
  position: relative;
}

.wave-lightblue::after {
  content: "";
  background-image: url(../img/wave_lightblue.svg);
  background-repeat: repeat;
  width: 100%;
  height: 40px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.wave-blue {
  background-color: #05C7F2;
  width: 100%;
  height: 100%;
  position: relative;
}

.wave-blue::after {
  content: "";
  background-image: url(../img/wave_blue.svg);
  background-repeat: repeat;
  width: 100%;
  height: 30px;
  position: absolute;
  left: 0;
  bottom: 0;
}

/* ヘッダー */
header p {
  padding: 14px 0;
  margin: 21px 0;
  margin-right: 34px;
  text-align: right;
}

/* メインビジュアル */
.top {
  background-image: url(../img/main_visual_sp.webp);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  height: 90vh;
  overflow: hidden;
  position: relative;
}

.top h1 {
  max-width: 600px;
  height: auto;
  padding: 100px 30px 0;
}

/* 波 */
.footer_wave {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}

.parallax>use {
  animation: move-forever 12s linear infinite;
}

.parallax>use:nth-child(1) {
  animation-delay: -2s;
}

.parallax>use:nth-child(2) {
  animation-delay: -2s;
  animation-duration: 5s;
}

.parallax>use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 3s;
}

@keyframes move-forever {
  0% {
    transform: translate(-90px, 0%);
  }

  100% {
    transform: translate(85px, 0%);
  }
}

.editorial {
  display: block;
  width: 100%;
  height: 3em;
  max-height: 100vh;
  margin: 0;
  bottom: 0px;
}

/* コンセプト */
.concept {
  background-color: #056CF2;
  padding: 100px 0 130px;
}

.concept h2 {
  font-family: "BIZ UDGothic", sans-serif;
  font-size: 26px;
  line-height: 2;
  color: #ffffff;
}

/* ぽよんアニメ */
.poyon {
  opacity: 0;
  transform: translateY(30px) scale(0.9);
}

.poyon.is-visible {
  animation: poyon 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67) forwards;
}

@keyframes poyon {
  0% {}

  60% {
    opacity: 1;
    transform: translateY(-5px) scale(1.02);
  }

  80% {
    transform: translateY(2px) scale(0.98);
  }

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

/* 吹き出し */
.container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  font-size: 13px;
  color: #056CF2;
  text-align: center;
  margin: 0 auto;
  padding: 0 15px;
  margin-bottom: 50px;
}

.fukidashi1 {
  position: relative;
  margin-bottom: 30px;
  padding: 20px 30px;
  border-radius: 10px;
  background: #ffffff;
}

.fukidashi1:before,
.fukidashi1:after {
  position: absolute;
  content: '';
  border-radius: 50%;
  background: #ffffff;
}

.fukidashi1:before {
  bottom: -15px;
  left: 30px;
  width: 30px;
  height: 30px;
}

.fukidashi1:after {
  bottom: -30px;
  left: 50px;
  width: 15px;
  height: 15px;
}

.fukidashi2 {
  position: relative;
  margin-bottom: 30px;
  padding: 20px 30px;
  border-radius: 10px;
  background: #ffffff;
}

.fukidashi2 :before,
.fukidashi2 :after {
  position: absolute;
  content: '';
  border-radius: 50%;
  background: #ffffff;
}

.fukidashi2 :before {
  right: 30px;
  bottom: -15px;
  width: 30px;
  height: 30px;
}

.fukidashi2 :after {
  right: 50px;
  bottom: -30px;
  width: 15px;
  height: 15px;
}

.concept p {
  color: #ffffff;
  text-align: center;
  line-height: 3;
}

/* TIMETABLE */
.timetable {
  background-color: #05C7F2;
  padding: 100px 0 130px;
}

.timetable h3 {
  max-width: 30%;
  margin: 0 auto 10px;
  margin-bottom: 20px;
}

.timetable .timetableArea {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-evenly;
  padding: 0 15px;
  justify-content: center;
  gap: 20px;
}

.timetableArea>div p {
  margin: 0 auto 10px;
}

.timetableArea>div {
  flex-basis: calc(50% - 15px);
  flex-shrink: 1;
  min-width: 0;
}

.timetable h3:first-of-type+.timetableArea {
  margin-bottom: 30px;
}

.timetable .tArea1 {
  padding-top: 68px;
}

.timetable .tArea2 {
  padding-top: 20px;
}

.timetable dl {
  text-align: center;
  margin-bottom: 30px;
}

.timetable dt {
  font-weight: bold;
  padding-top: 8px;
}

.timetable dd {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.02em;
  padding: 5px 5px 10px;
}

.timetable a {
  display: block;
}

.timetable .yellow {
  background: linear-gradient(135deg, transparent 7px, #F2B705 0) top left,
    linear-gradient(-135deg, transparent 7px, #F2B705 0) top right,
    linear-gradient(-45deg, transparent 7px, #F2B705 0) bottom right,
    linear-gradient(45deg, transparent 7px, #F2B705 0) bottom left;
  background-size: 51% 51%;
  background-repeat: no-repeat;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.2));
  transition: .3s cubic-bezier(0.5, 1, 0.89, 1);
}

.timetable .blue {
  background: linear-gradient(135deg, transparent 7px, #056CF2 0) top left,
    linear-gradient(-135deg, transparent 7px, #056CF2 0) top right,
    linear-gradient(-45deg, transparent 7px, #056CF2 0) bottom right,
    linear-gradient(45deg, transparent 7px, #056CF2 0) bottom left;
  background-size: 51% 51%;
  background-repeat: no-repeat;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.2));
  transition: .3s cubic-bezier(0.5, 1, 0.89, 1);
}

.timetable .orange {
  transition: .3s cubic-bezier(0.5, 1, 0.89, 1);
  background: linear-gradient(135deg, transparent 7px, #F25C05 0) top left,
    linear-gradient(-135deg, transparent 7px, #F25C05 0) top right,
    linear-gradient(-45deg, transparent 7px, #F25C05 0) bottom right,
    linear-gradient(45deg, transparent 7px, #F25C05 0) bottom left;
  background-size: 51% 51%;
  background-repeat: no-repeat;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.2));
}

.timetable .yellow:hover {
  background: linear-gradient(135deg, transparent 7px, #F2B705 0) top left,
    linear-gradient(-135deg, transparent 7px, #F2B705 0) top right,
    linear-gradient(-45deg, transparent 7px, #F2B705 0) bottom right,
    linear-gradient(45deg, transparent 7px, #F2B705 0) bottom left;
  background-size: 51% 51%;
  background-repeat: no-repeat;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.2));
  transform: scale(1.1);
}

.timetable .blue:hover {
  background: linear-gradient(135deg, transparent 7px, #056CF2 0) top left,
    linear-gradient(-135deg, transparent 7px, #056CF2 0) top right,
    linear-gradient(-45deg, transparent 7px, #056CF2 0) bottom right,
    linear-gradient(45deg, transparent 7px, #056CF2 0) bottom left;
  background-size: 51% 51%;
  background-repeat: no-repeat;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.2));
  transform: scale(1.1);
}

.timetable .orange:hover {
  transition: .3s cubic-bezier(0.5, 1, 0.89, 1);
  background: linear-gradient(135deg, transparent 7px, #F25C05 0) top left,
    linear-gradient(-135deg, transparent 7px, #F25C05 0) top right,
    linear-gradient(-45deg, transparent 7px, #F25C05 0) bottom right,
    linear-gradient(45deg, transparent 7px, #F25C05 0) bottom left;
  background-size: 51% 51%;
  background-repeat: no-repeat;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.2));
  transform: scale(1.1);
}

.timetable>p {
  color: #ffffff;
  font-size: 18px;
  padding: 0 30px;
}

/* エリアマップ */
.areamap {
  background-color: #056CF2;
  text-align: center;
  padding: 100px 0 130px;
}

.areamap p img {
  max-width: 700px;
  height: auto;
  padding: 0 20px;
}

.areamap-download {
  margin-top: 50px;
}

.btn-download {
  display: inline-block;
  font-family: "Titan One", sans-serif;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #F2B705;
  padding: 10px 20px;
  border: 3px solid #056CF2;
  border-radius: 5px;
  box-shadow: 0 4px 0 0 #056CF2;
  transition: transform 0.1s, box-shadow 0.1s;
}

.btn-download:hover {
  transform: translateY(4px);
  box-shadow: none;
}

/* アクセス */
.access {
  background-color: #05C7F2;
  padding: 100px 0 130px;
}

.access dl {
  color: #ffffff;
  text-align: left;
  padding: 0 50px;
}

.access dt {
  display: inline-block;
  font-size: 18px;
  border-bottom: 2px dotted #ffffff;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.access dd {
  padding-bottom: 10px;
}

.access dl:nth-of-type(2) {
  margin-bottom: 30px;
}

.access .place {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
}

.access iframe {
  display: block;
  max-width: 100%;
  margin: 50px auto;
}

/* チケット */
.ticket {
  background-color: #056CF2;
  padding: 100px 0 130px;
  text-align: center;
}

.ticket h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.ticket p {
  color: #ffffff;
  text-align: center;
  padding: 0 20px;
}

.ticket p img {
  max-width: 375px;
  height: auto;
  padding: 0 20px;
}

/* さあ、“UMIOTO”を感じに行こう！ */
.ticket>p:first-of-type {
  margin-bottom: 70px;
}

/*  price画像1 */
.ticket .ticket_inner .sale1 p:nth-of-type(1) {
  margin-bottom: 10px;
}

/* 小学生以下は入場無料 */
.ticket .ticket_inner .sale1 p:nth-of-type(2) {
  margin-bottom: 70px;
}

/* 入場無料上の点 */
.ticket .ticket_inner .sale1 p:nth-of-type(2) span {
  text-emphasis: circle #ffffff;
}

/*  price画像2 */
.ticket .ticket_inner .sale2 p:nth-of-type(1) {
  margin-bottom: 70px;
}

.ticket .ticket_info {
  color: #ffffff;
  font-size: 13px;
  border: 1px solid #ffffff;
  border-radius: 15px;
  text-align: center;
  padding: 10px;
  width: 330px;
  margin: 0 auto 20px;
}

.ticket ul {
  width: 331px;
  margin: 0 auto 20px;
}

.ticket ul li {
  color: #ffffff;
  font-size: 13px;
  text-align: left;
}

.ticket-purchase-btn {
  text-align: center;
  margin: 10px auto 70px;
}

.btn-purchase {
  display: inline-block;
  font-family: "Titan One", sans-serif;
  font-size: 15px;
  font-weight: bold;
  text-transform: uppercase;
  background-color: #F2B705;
  padding: 10px 20px;
  border: 3px solid #056CF2;
  border-radius: 5px;
  box-shadow: 0 4px 0 0 #056CF2;
  transition: transform 0.1s, box-shadow 0.1s;
}

.btn-purchase:hover {
  transform: translateY(4px);
  box-shadow: none;
}

/* チケット購入はこちらの先のページ（又野）*/
.ticketPage {
  background-color: #056CF2;
}

.ticketPage .ticketPage_inner {
  max-width: 600px;
  margin: 0 auto;
}

.ticketPage .ticketPage_inner h1 {
  font-family: "Titan One", sans-serif;
  font-size: 45px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 50px;
  margin-top: 50px;
}

.ticketPage .cs {
  font-size: 50px;
  color: #fff;
}

.ticket_text {
  color: #fff;
  text-align: center;
  line-height: 2.5;
  margin-bottom: 50px;
}

.ticketPage_inner a {
  display: block;
  text-align: center;
  margin-bottom: 50px;
}

/* トレードサービス */
.trade {
  background-color: #05C7F2;
  padding: 100px 0 130px;
}

.trade h2 {
  font-size: 25px;
  font-weight: bold;
}

.trade p {
  color: #ffffff;
  text-align: center;
}

/* フード */
.food {
  background-image: url(../img/food_back.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  padding: 100px 0 130px;
}

.food h2 {
  filter: drop-shadow(5px 5px 20px rgba(0, 0, 0, 0.5));
}

.food p {
  background-color: rgba(238, 238, 238, 0.8);
  border-radius: 30px;
  font-size: 12px;
  text-align: center;
  padding: 10px;
  margin: 0 20px 50px;
}

.food .slider li {
  padding: 0 7px;
}

.food .slider li img {
  border: 5px solid #F2B705;
  border-radius: 20px;
  max-width: 250px;
  height: auto;
}

/* グッズ */
.goods {
  background-color: #05C7F2;
  padding: 100px 0 130px;
}

.goods p {
  color: #ffffff;
  text-align: center;
  margin-bottom: 50px;
}

.goods .list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 0 20px;
}

.list dt {
  margin-bottom: 12px;
}

.list dd {
  color: #ffffff;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.goods .list dl dd:nth-of-type(2) {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  padding-top: 20px;
}

.goods .list dl dd:nth-of-type(4) {
  color: #ffffff;
  font-size: 16px;
  font-weight: normal;
  padding-top: 20px;
}

.list img {
  border-radius: 20px;
}

/* ワークショップ */
.workshop {
  background-image: url(../img/workshop.jpg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
  height: 80vh;
  padding: 100px 0 130px;
}

.workshop h2 {
  filter: drop-shadow(5px 5px 20px rgba(0, 0, 0, 0.5));
}

.workshop p {
  background-color: rgba(238, 238, 238, 0.8);
  border-radius: 30px;
  font-size: 12px;
  text-align: center;
  padding: 10px 20px;
  margin: 0 20px 50px;
}

/* Q&A */
.QandA {
  background-color: #05C7F2;
  padding: 100px 10px 20px;
}

.QandA h3 {
  font-size: 20px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
}

.QandA dt {
  background-color: #056CF2;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 30px;
  padding: 10px;
  width: 300px;
  text-align: center;
  margin-bottom: 10px;
}

.QandA dd {
  background-color: #056CF2;
  color: #ffffff;
  border: 2px solid #ffffff;
  border-radius: 30px;
  padding: 10px;
  width: 300px;
  text-align: center;
}

/* Q&Aアコーディオン */
.tab-accordion {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 100px;
  font-family: sans-serif;
}

.tab-nav {
  display: flex;
  justify-content: space-evenly;
  gap: 1rem;
  margin-bottom: 1rem;
  max-width: 600px;
  margin: 30px 10px;
}

.tab-button {
  padding: 10px 10px;
  background: #f1f5f9;
  border: none;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: background-color 0.2s;
  display: flex;
  justify-content: center;
  flex: 1;
  width: 120px;
  align-items: center;
}

.tab-button:hover {
  background: #e2e8f0;
}

.tab-button.active {
  background: #3b82f6;
  color: white;
}

.tab-content {
  display: none;
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  overflow: hidden;
  max-width: 600px;
  background-clip: padding-box;
}

.tab-content.active {
  display: block;
  margin: 10px;
  background-clip: padding-box;
}

.tab-trigger {
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #3b82f6;
  border: none;
  cursor: pointer;
  border-bottom: 1px solid #e2e8f0;
  color: #ffffff;
}

.tab-icon {
  transition: transform 0.2s;
}

.tab-trigger[aria-expanded="true"] .tab-icon {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height ease;
}

.accordion-content.open {
  max-height: 500px;
  color: #4b4b4b;
  background-color: #ffffff;
}

.accordion-body {
  padding: 1rem;
}

/* contact form */
.contact {
  display: block;
  align-items: center;
  background-color: #056CF2;
  padding: 100px 20px;
  margin: 0px auto;
}

.contact p {
  color: #ffffff;
  text-align: center;
  line-height: 1.8em;
}

.contactP2 {
  margin-bottom: 30px;
}

.contactP,
.contactP2 {
  padding: 0 30px;
}

.contactbox {
  border: solid 2px #ffffff;
  border-radius: 20px;
  background-color: #05C7F2;
  padding: 30px;
  margin: 0 auto;
  max-width: 600px;

}

.contactbox p {
  font-size: 18px;
  text-align: left;
}

.form-group {
  margin-bottom: 10px;
}

.radio {
  width: 16px;
  height: 16px;
  margin: 0;
}

input {
  border: 1px solid #cccccc;
  background-color: #ffffff;
  width: 100%;
  padding: 10px 10px;
  border-radius: 10px;
  transition: 0.2s;
}

.inputbutton {
  margin-bottom: 15px;
  display: flex;
  justify-content: space-evenly;
}

.inputbutton p {
  font-size: 20px;
}

textarea {
  height: 150px;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  width: 100%;
  padding: 10px 10px;
  border-radius: 10px;
  transition: 0.2s;
}

input[type="email"]:focus,
input[type="tell"]:focus,
input[type="text"]:focus {
  background-color: aliceblue;
}

textarea:focus {
  background-color: aliceblue;
}

.submit {
  color: #ffffff;
  padding: 18px 80px;
}

.sendbutton {
  background-color: #F2B705;
  border-radius: 10px;
  width: 100px;
  text-align: center;
  margin: 30px auto;
  margin-bottom: 0;
  color: #fff;
}

.sendbutton:hover {
  background-color: #F2B705;
  transition: 0.2s;
  filter: drop-shadow(4px 4px 4px rgba(0, 0, 0, 0.2));
}

/* フッター */
footer {
  background-color: #056CF2;
  color: #ffffff;
  padding: 10px;
  text-align: center;
}

footer .snslinks {
  margin: 10px 10px;
  padding: 10px 10px;
  display: flex;
  justify-content: center;
}

footer .snslinks a {
  padding: 0px 20px;
}

.tiktok{
  background-color: #ffffff;
}

/* top戻るボタン */
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 15px;
  bottom: 15px;
  background: #F2B705;
  border-radius: 50%;
  opacity: 0.9;
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a::before {
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f102';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 25px;
  height: 34px;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/* レスポンシブ 768px以上 */
@media (width >=768px) {

  /* 全体共通 */
  body {
    font-size: 18px;
  }

  h2 {
    font-size: 55px;
  }

  /* ヘッダー */
  header div {
    background-color: #056CF2;
  }

  header div nav ul {
    background-color: #056CF2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0px 20px;
    padding: 30px 0;
    font-family: "Titan One", sans-serif;
    font-size: 24px;
    color: #ffffff;
  }

  .header div nav ul li a {
    padding: 20px;
  }

  .drawer-hidden {
    display: none;
  }

  /* トップ */
  .top {
    background-image: url(../img/main_visual_pc.webp);
    height: 85vh;
  }

  /* コンセプト */
  .concept {
    padding-bottom: 200px;
  }

  .concept h2 {
    font-size: 31px;
    margin-bottom: 100px;
  }

  .concept h2 br {
    display: none;
  }

  .concept p {
    font-size: 18px;
    max-width: 1180px;
    padding: 0 67px;
    margin: 0 auto;
  }

  .concept p br {
    display: none;
  }

  .container {
    font-size: 15px;
    margin-bottom: 150px;
    gap: 100px;
  }

  .fukidashi1 {
    width: 400px;
    font-size: 17px;
    font-weight: bold;
  }

  .fukidashi2 {
    width: 400px;
    font-size: 17px;
    font-weight: bold;
  }

  /* TIMETABLE */
  .timetable h2 {
    margin-bottom: 100px;
  }

  .timetabeleDetai {
    max-width: 1180px;
    padding: 0 30px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }

  .timetableItem {
    max-width: 510px;
  }

  .timetable>p {
    font-size: 14px;
    text-align: center;
  }

  /* エリアマップ */
  .btn-download {
    font-size: 18px;
    padding: 15px 30px;
  }

  /* アクセス */
  .access iframe {
    display: block;
    margin: 0;
  }

  .access div {
    display: grid;
    grid-template-rows: 50% 25% 25%;
    grid-template-columns: 50% 50%;
    max-width: 1100px;
    height: 100%;
    margin: 0 auto;
    padding: 0 60px;
    gap: 20px;
  }

  .access dl {
    padding: 0;
  }

  .item1 {
    grid-row-start: 1;
    grid-row-end: 2;
    grid-column-start: 1;
    grid-column-end: 2;
    border-bottom: 2px dotted #ffffff;
  }

  .item2 {
    grid-row: 1/4;
    grid-column: 2/3;
  }

  .item3 {
    grid-row: 2/3;
    grid-column: 1/2;
  }

  .item4 {
    grid-row: 3/4;
    grid-column: 1/2;
  }

  /* チケット */
  .ticket p img {
    max-width: 500px;
  }

  .ticket .ticket_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    max-width: 1200px;
    margin: 30px auto 0px;
  }

  .ticket p br {
    display: none;
  }

  .ticket>p:first-of-type {
    font-size: 18px;
    max-width: 1180px;
    padding: 0 140px;
    margin: 0 auto;
  }

  .ticket h3 {
    font-size: 26px;
    margin-bottom: 30px;
  }

  .ticket .ticket_inner .sale1 p:nth-of-type(2) {
    font-size: 20px;
  }

  .ticket-purchase-btn {
    margin: 15px 0 50px;
  }

  .ticket ul {
    width: 100%;
    max-width: 700px;
    margin: 20px auto 50px;
    padding: 0 50px;
  }

  .ticket li br {
    display: none;
  }

  /*チケットボタン*/
  .btn-purchase {
    font-weight:bold;
    font-size: 22px;
    padding: 15px 30px;
  }

  /* トレード */
  .trade h2 {
    font-size: 35px;
  }

  .trade p br {
    display: none;
  }

  .trade p {
    font-size: 18px;
    max-width: 770px;
    padding: 0 50px;
    margin: 0 auto;
  }

  /* フード */
  .food p {
    font-size: 18px;
    max-width: 600px;
    padding: 30px 30px;
    margin: 0 auto 50px;
    border-radius: 50px;
  }

  /* グッズ */
  .goods .list {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 950px;
    margin: 0 auto;
    padding: 0 30px;
  }

  /* ワークショップ */
  .workshop p {
    font-size: 18px;
    max-width: 600px;
    padding: 30px 30px;
    margin: 0 auto 50px;
    border-radius: 50px;
  }

  /* Q&A */
  /* アコーディオン */
  .tab-content.active {
    max-width: 600px;
    margin: 0 auto;
  }

  .tab-nav {
    max-width: 600px;
    margin: 30px auto;
  }

  /* フッター */
  /* top戻るボタン */
  #page_top {
    width: 70px;
    height: 70px;
    right: 30px;
    bottom: 30px;
  }

  #page_top a {
    width: 70px;
    height: 70px;
  }

  #page_top a::before {
    font-size: 30px;
    width: 30px;
    height: 40px;
  }

}