@charset "UTF-8";
/*===============================================================

  2015/7/17

===============================================================*/
/* 初期化
----------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
  outline: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

input, textarea {
  margin: 0;
  padding: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1, h2, h3, h4, h5, h6, p, li, th, td, dt, dd {
  font-size: 16px;
  font-family: 游ゴシック, "Yu Gothic", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

caption, th, td {
  text-align: left;
  vertical-align: top;
}

img {
  vertical-align: top;
  border: 0;
}

ul, li {
  list-style: none;
}

option {
  padding-right: 1em;
}

address, caption {
  font-style: normal;
  font-weight: normal;
}

a {
  outline: none;
  text-decoration: underline;
  word-break: break-all;
}

a:focus {
  outline: none;
}

ul a, li a {
  zoom: 1;
}

/* HTML5
----------------------------------------------------------------*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* iOS3.1のhtml5対応 */
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary {
  display: block;
}

/* body
----------------------------------------------------------------*/
body {
  width: 100%;
  color: #333;
  font-size: 16px;
  text-align: left;
  line-height: 30px;
  -webkit-text-size-adjust: none;
  font-family: 游ゴシック, "Yu Gothic", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

a {
  color: #36C;
  -webkit-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -ms-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -moz-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
  -o-transition: background-color 0.1s linear, color 0.1s linear, border-color 0.1s linear, border-width 0.1s linear, opacity 0.1s linear;
}

a:hover {
  color: #39F;
}

img {
  width: 100%;
  height: 100%;
}

.cb {
  clear: both;
}

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* スムーススクロール
----------------------------------------------------------------*/
html {
  scroll-behavior: smooth;
}

/* ---------------------------------------------------------------
                        mixin
----------------------------------------------------------------*/
@keyframes hurueru {
  0% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
  25% {
    transform: translate(2px, 2px) rotateZ(1deg);
  }
  50% {
    transform: translate(0px, 2px) rotateZ(0deg);
  }
  75% {
    transform: translate(2px, 0px) rotateZ(-1deg);
  }
  100% {
    transform: translate(0px, 0px) rotateZ(0deg);
  }
}
/* --------------------------------------------------------------

                        コンテンツスタート

----------------------------------------------------------------*/
.sp {
  display: none;
}

.pc {
  display: block;
}

/* ヘッダー
-----------------------------------------------*/
/*  ハンバーガーメニュー
---------------------------------------------- */
.sb-open-right {
  position: fixed;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #fff;
}

.menu-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  background-color: #fff;
  cursor: pointer;
}

.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
  content: "";
  display: block;
  height: 3px;
  width: 30px;
  border-radius: 3px;
  background-color: #333;
  position: absolute;
}

.menu-btn span:before {
  bottom: 12px;
}

.menu-btn span:after {
  top: 12px;
}

#menu-btn-check:checked ~ .menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}

#menu-btn-check:checked ~ .menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
  transition: all 300ms 0s ease;
}

#menu-btn-check:checked ~ .menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
  transition: all 300ms 0s ease;
}

#menu-btn-check:checked ~ .menu-btn {
  right: 10px;
}

#menu-btn-check {
  display: none;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #fff;
}

.menu-content ul {
  padding: 70px 10px 0;
  width: 35%;
  margin-left: 10px;
}

.menu-content ul li {
  border-bottom: solid 1px #333;
  list-style: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 1.5em;
  box-sizing: border-box;
  color: #333;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
  font-family: 游ゴシック, "Yu Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #333;
  border-right: solid 2px #333;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

.menu-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /*leftの値を変更してメニューを画面外へ*/
  z-index: 80;
  background-color: #fff;
  transition: all 0.5s; /*アニメーション設定*/
}

#menu-btn-check:checked ~ .menu-content {
  left: 60%; /*メニューを画面内へ*/
}

header .header__inner {
  width: auto;
  padding: 0 15px;
  position: relative;
}
header .header__inner .header_logo {
  width: 100px;
}

.hamburger-menu .sns__nav {
  width: 200px;
}
.hamburger-menu .sns__nav ul {
  margin-top: 15px;
  padding-top: 0;
}
.hamburger-menu .sns__nav ul li {
  border: none;
}
.hamburger-menu .sns__nav ul li a::before {
  display: none;
}
.hamburger-menu .sns__nav ul li a img {
  width: 100%;
  height: auto;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              スクロール
----------------------------------------------------------------*
----------------------------------------------------------------*/
.scroll__top.show {
  opacity: 1; /* 表示状態では完全に不透明 */
  transform: translateY(0); /* 元の位置に戻る */
}

.scroll__top {
  display: block; /* デフォルトでblockだが、後で非表示にするため */
  opacity: 0; /* 初期状態では透明 */
  transform: translateY(20px); /* 初期状態で少し下に */
  transition: opacity 0.5s ease, transform 0.5s ease; /* アニメーション設定 */
  width: 60px;
  height: auto;
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 2;
  border-radius: 15px;
  background-color: #fff;
  padding: 20px 10px;
  box-shadow: 3px 3px 10px 0px rgba(0, 0, 0, 0.4);
}
.scroll__top a {
  text-decoration: none;
}
.scroll__top a .scroll__top--img {
  width: 40px;
  margin: 0 auto;
}
.scroll__top a .scroll__top--img img {
  width: 100%;
  height: auto;
}
.scroll__top a p {
  font-size: 1em;
  color: #333;
  text-align: center;
  font-weight: bold;
  line-height: 13px;
  margin-top: 10px;
  font-family: 游ゴシック, "Yu Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* --------------------------------------------------------------

                        浮かび上がる

----------------------------------------------------------------*/
.floating-element {
  opacity: 0;
  transform: translateY(100px); /* 要素を下に隠す */
  transition: transform 1.5s ease-out, opacity 1.5s ease-out;
  position: relative;
  width: 100%;
}

.visible {
  opacity: 1;
  transform: translateY(0); /* 元の位置に移動 */
}

/* --------------------------------------------------------------

                        モーダル

----------------------------------------------------------------*/
.no-scroll {
  overflow: hidden;
}

.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}
.modal .modal-content {
  background-color: #fff;
  margin: 0 auto;
  padding: 60px;
  width: 800px;
  border-radius: 15px;
  margin-top: 100px;
  margin-bottom: 100px;
}
.modal .modal-content .modal-content__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.modal .modal-content .modal-content__wrap .modal__cast--img {
  width: 40%;
}
.modal .modal-content .modal-content__wrap .modal__cast--img img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}
.modal .modal-content .modal-content__wrap .modal__cast--text {
  width: 55%;
}
.modal .modal-content .modal-content__wrap .modal__cast--text p {
  font-size: 24px;
  line-height: 30px;
  font-family: "WDXL Lubrifont JP N", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.modal .close {
  margin-top: 30px;
}
.modal .close p {
  background-color: #fff;
  color: #333;
  font-size: 1em;
  text-align: center;
  width: 50%;
  margin: 0 auto;
  border: 1px solid #333;
}
.modal .close p:hover {
  color: #fff;
  background-color: #333;
  cursor: pointer;
  border: 1px solid #333;
}

/*----------------------------------------------------------------
----------------------------------------------------------------*
                              ヘッダー
----------------------------------------------------------------*
----------------------------------------------------------------*/
header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  margin: 15px 0;
}
header .header__inner {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
header .header__inner .header_logo {
  width: 110px;
  height: auto;
  z-index: 90;
}
header .header__inner .header_logo img {
  width: 100%;
  height: auto;
}
header .header__inner .header_nav {
  width: 800px;
  margin-left: 100px;
}
header .header__inner .header_nav ul {
  display: flex;
  justify-content: space-between;
}
header .header__inner .header_nav ul li a {
  color: #333;
  font-size: 1.5em;
  text-decoration: none;
  line-height: 59px;
  font-family: 游ゴシック, "Yu Gothic", sans-serif;
  font-weight: bold;
  text-shadow: 1px 1px 0 #fff, -1px 1px 0 #fff, -1px -1px 0 #fff, 1px -1px 0 #fff;
}
header .header__inner .header_nav ul li a:hover {
  color: #ffcd07;
}
header .header__inner .sns__nav {
  width: auto;
  margin-left: 100px;
}
header .header__inner .sns__nav ul {
  display: flex;
  justify-content: space-between;
}
header .header__inner .sns__nav ul li {
  width: 45px;
  background-color: #fff;
  border-radius: 100%;
  padding: 5px;
}
header .header__inner .sns__nav ul li:hover {
  background-color: #ffcd07;
}
header .header__inner .sns__nav ul li a img {
  width: 100%;
  height: auto;
}

.show .header__inner .header_logo {
  display: none;
}
.show .header__inner .pc {
  display: none;
}
.show .sp {
  display: block;
}
.show .sp .header_logo__wrap {
  width: 125px;
  margin-left: 20px;
}
.show .sp .header_logo__wrap .header_logo {
  display: block;
  margin-top: 25px;
}
.show .sp .header_logo__wrap .header_logo img {
  width: 100%;
  height: auto;
}

.back__01 {
  background-image: url(../img/main_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.back__02 {
  background-color: #333;
}
.back__02 .section__wrap .section__title {
  border-top: solid #fff;
  border-bottom: solid #fff;
}
.back__02 .section__wrap .section__title h2 {
  color: #fff;
}
.back__02 .section__wrap .section__title p {
  color: #fff;
}

.back__03 {
  padding-top: 60px;
  background-image: url("../img/top__bg.png"), url("../img/bottom__bg.png");
  background-repeat: no-repeat, no-repeat;
  background-position: top left, bottom right;
  background-size: 60%;
  background-color: #fff;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        メインビジュアル
----------------------------------------------------------------*
----------------------------------------------------------------*/
.mainvisual {
  width: stretch;
  height: auto;
  margin-bottom: -150px;
}
.mainvisual .mainvisual__inner {
  width: 80%;
  height: auto;
  margin: 0 auto;
  padding-top: 100px;
  padding-bottom: 60px;
  display: flex;
  justify-content: space-between;
}
.mainvisual .mainvisual__inner .mainvisual__title {
  width: 55%;
  opacity: 0;
  visibility: hidden;
  animation: fadeIn 1s ease-in-out forwards;
  animation-delay: 0.5s; /* 1秒後にアニメーションを開始 */
  margin-top: -100px;
}
.mainvisual .mainvisual__inner .mainvisual__title img {
  width: 100%;
  height: auto;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
  }
  100% {
    opacity: 1;
    visibility: visible;
  }
}
.mainvisual .mainvisual__inner .mainvisual__text {
  width: 40%;
  margin-top: 20%;
}
.mainvisual .mainvisual__inner .mainvisual__text h1 img {
  width: 100%;
  height: auto;
}
.mainvisual .mainvisual__inner .mainvisual__text .button020 a {
  position: relative;
  text-decoration: none;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 240px;
  padding: 10px 25px;
  color: #313131;
  transition: 0.3s ease-in-out;
  font-weight: bold;
  margin-top: 30px;
  border: 3px solid #333;
  background-color: #fff;
}
.mainvisual .mainvisual__inner .mainvisual__text .button020 a:hover {
  background: #ffcd07;
}
.mainvisual .mainvisual__inner .mainvisual__text .button020 a:before, .mainvisual .mainvisual__inner .mainvisual__text .button020 a:after {
  content: "";
  position: absolute;
  display: block;
  transition: all 0.3s;
  right: 0.6rem;
  top: 50%;
}
.mainvisual .mainvisual__inner .mainvisual__text .button020 a:before {
  width: 1.4rem;
  height: 2px;
  background: #614f38;
  transform: translateY(-50%);
}
.mainvisual .mainvisual__inner .mainvisual__text .button020 a:after {
  opacity: 0;
  width: 0;
  height: 0;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.mainvisual .mainvisual__inner .mainvisual__text .button020 a:hover:before {
  width: 1.5rem;
}
.mainvisual .mainvisual__inner .mainvisual__text .button020 a:hover:after {
  opacity: 1;
  width: 8px;
  height: 8px;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        コンテンツ
----------------------------------------------------------------*
----------------------------------------------------------------*/
.section__wrap {
  width: 80%;
  max-width: 1800px;
  margin: 0 auto;
}

.section__title {
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
  width: auto;
  margin: 0 auto;
}
.section__title h2 {
  font-size: 6em;
  line-height: 1.2em;
  color: #333;
  text-align: center;
  display: block;
  width: auto;
  margin: 0 auto;
  font-family: "Potta One", system-ui;
  font-weight: 400;
  font-style: normal;
}
.section__title p {
  font-size: 1.2em;
  line-height: 20px;
  padding-bottom: 18px;
  color: #333;
  text-align: center;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        チケット
----------------------------------------------------------------*
----------------------------------------------------------------*/
.ticket__wrap {
  padding-top: 60px;
  background-image: url(../img/bg_02.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.ticket__wrap .ticket {
  padding-bottom: 60px;
}
.ticket__wrap .ticket .section__title {
  border-top: solid #fff;
  border-bottom: solid #fff;
}
.ticket__wrap .ticket .section__title h2 {
  color: #fff;
}
.ticket__wrap .ticket .section__title p {
  color: #fff;
  font-size: 20px;
}
.ticket__wrap .ticket table {
  border-top: 1px solid #fff;
}
.ticket__wrap .ticket table tr {
  border-bottom: 1px solid #fff;
}
.ticket__wrap .ticket table tr:first-child {
  border-top: 1px solid #fff;
}
.ticket__wrap .ticket table th {
  color: #fff;
  width: 30%;
  vertical-align: top;
}
.ticket__wrap .ticket table td {
  color: #fff;
}
.ticket__wrap .ticket table td .overview__text--red {
  color: #ff0000;
  font-weight: bold;
}
.ticket__wrap .ticket table td .overview__text--bald {
  font-weight: bold;
  font-size: 1em;
  margin-top: 30px;
  margin-bottom: 15px;
  display: block;
}
.ticket__wrap .ticket table td .overview__text--bald:first-child {
  margin-top: 0;
}
.ticket__wrap .ticket .overview__ticket--caption {
  width: auto;
  border-radius: 15px;
  background-color: #fff;
  margin: 0 auto;
  margin-top: 30px;
  overflow: hidden;
  padding: 0 30px;
}
.ticket__wrap .ticket .overview__ticket--caption table {
  border: none;
  width: 100%;
}
.ticket__wrap .ticket .overview__ticket--caption table tr {
  border: none;
  width: 100%;
  border-top: 1px solid #333;
}
.ticket__wrap .ticket .overview__ticket--caption table tr:first-child {
  border-top: none;
}
.ticket__wrap .ticket .overview__ticket--caption table tr:first-child th, .ticket__wrap .ticket .overview__ticket--caption table tr:first-child td {
  padding-top: 30px;
}
.ticket__wrap .ticket .overview__ticket--caption table tr:last-child th, .ticket__wrap .ticket .overview__ticket--caption table tr:last-child td {
  padding-bottom: 30px;
}
.ticket__wrap .ticket .overview__ticket--caption table tr th {
  font-size: 1em;
  text-align: left;
  color: #333;
  margin-top: 15px;
  padding: 15px 0;
  width: 20%;
  padding-left: 15px;
  font-weight: bold;
}
.ticket__wrap .ticket .overview__ticket--caption table tr td {
  padding: 15px 0;
  font-size: 1em;
  text-align: left;
  color: #333;
  margin-top: 15px;
  width: 50%;
}
.ticket__wrap .ticket .play__guide {
  background-color: #fff;
  padding: 30px;
  margin-top: 30px;
  width: 25%;
  border-radius: 15px;
}
.ticket__wrap .ticket .play__guide h4 {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  padding-bottom: 30px;
  text-align: center;
}
.ticket__wrap .ticket .play__guide table tr {
  border-bottom: 1px solid #333;
}
.ticket__wrap .ticket .play__guide table tr:first-child {
  border-top: 1px solid #333;
}
.ticket__wrap .ticket .play__guide table tr th {
  font-size: 14px;
  font-weight: bold;
  color: #333;
  padding: 15px;
  text-align: left;
  width: 35%;
  vertical-align: middle;
}
.ticket__wrap .ticket .play__guide table tr td {
  font-size: 0.8em;
  color: #333;
  padding: 15px;
  text-align: left;
  vertical-align: middle;
}
.ticket__wrap .ticket .play__guide .play__guide--btn {
  width: 100%;
  background-color: #ff0000;
  border-radius: 15px;
}
.ticket__wrap .ticket .play__guide .play__guide--btn a {
  color: #fff;
  display: block;
  text-decoration: none;
  font-size: 0.8em;
  font-weight: bold;
  text-align: center;
  padding: 5px;
}
.ticket__wrap .ticket .play__guide .play__guide--btn:hover {
  background-color: #83311d;
}

.overview__ticket h3 {
  font-size: 2em;
  color: #fff;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
}
.overview__ticket .overview__ticket--inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.overview__ticket .overview__ticket--text {
  background-color: #333;
  width: auto;
  margin: 0 auto;
  border: 10px solid #fff;
  margin-top: 30px;
}
.overview__ticket .overview__ticket--text p {
  width: 800px;
  margin: 0 auto;
  font-size: 1em;
  color: #fff;
  line-height: 30px;
  padding: 30px;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        youtube
----------------------------------------------------------------*
----------------------------------------------------------------*/
.section__wrap:has(.youtube) {
  padding-top: 150px;
  width: 80%;
  padding-bottom: 60px;
}
.section__wrap .youtube {
  padding: 30px;
  background-color: #fff;
  width: stretch;
  height: 500px;
  margin: 0 auto;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        schedule
----------------------------------------------------------------*
----------------------------------------------------------------*/
.schedule {
  width: auto;
  padding-top: 60px;
  padding-bottom: 60px;
}
.schedule ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 30px;
}
.schedule ul li {
  width: 18%;
  margin-top: 15px;
}
.schedule ul li a img {
  width: 100%;
  height: auto;
}
.schedule ul li a:hover {
  display: inline-block;
  animation: hurueru 0.1s 3;
  cursor: pointer;
  color: #fff;
}

.schedule__title {
  width: 50%;
  margin: 0 auto;
}
.schedule__title img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        comment
----------------------------------------------------------------*
----------------------------------------------------------------*/
.back__01:has(.comment) {
  padding-top: 60px;
  background-image: url(../img/bg_02.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.back__01 .comment .section__title {
  border-top: solid #fff;
  border-bottom: solid #fff;
}
.back__01 .comment .section__title h2 {
  color: #fff;
}
.back__01 .comment .section__title p {
  color: #fff;
  font-size: 20px;
}
.back__01 .comment ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 60px;
}
.back__01 .comment ul li {
  width: 48%;
  margin-bottom: 30px;
  position: relative;
}
.back__01 .comment ul li a:hover {
  display: inline-block;
  animation: hurueru 0.1s 3;
  cursor: pointer;
  color: #fff;
}
.back__01 .comment ul li img {
  width: 100%;
  height: auto;
}

/* --------------------------------------------------------------
----------------------------------------------------------------*
                        フッター
----------------------------------------------------------------*
----------------------------------------------------------------*/
.footer .ponsorship__wrap {
  padding: 30px;
}
.footer .ponsorship__wrap .section__wrap {
  width: 1200px;
  background-color: #fff;
  margin: 0 auto;
  padding: 15px;
}
.footer .ponsorship__wrap .section__wrap h6 {
  font-size: 2em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
  line-height: 40px;
}
.footer .ponsorship__wrap .section__wrap p {
  font-size: 1.2em;
  text-align: center;
  margin-bottom: 15px;
  line-height: 30px;
}/*# sourceMappingURL=common.css.map */