@charset "UTF-8";
@-webkit-keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes head {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes head {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes chara {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes chara {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

/*******************************************************************/
@media only screen and (min-width: 961px) {
  .is-sp {
    display: none;
  }
  .is-pc {
    display: block;
  }
}

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

body {
  position: relative;
  font-family: YakuHanMP, "Noto Serif JP", "Hiragino Mincho ProN", "Noto Serif JP", "Yu Mincho", YuMincho, serif;
  background: #fff;
  color: #111;
  z-index: -1;
}

@media only screen and (min-width: 961px) {
  body {
    min-width: 1100px;
  }
}

/*******************************************************************/
.wrapper {
  background: url(../img/bg.jpg);
  background-attachment: fixed;
  -webkit-animation: opacity 1s cubic-bezier(0.5, 1, 0.89, 1) 0.2s forwards;
  animation: opacity 1s cubic-bezier(0.5, 1, 0.89, 1) 0.2s forwards;
  opacity: 0;
  z-index: 1;
}

@media only screen and (max-width: 960px) {
  .wrapper {
    background-size: 500px;
  }
}

.wrapper::before {
  content: "";
  background: url(../img/deco_top.png) repeat-x top center;
  background-size: contain;
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 10;
}

.hero .logo {
  position: absolute;
  bottom: -50px;
  left: 50%;
  width: 400px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 10;
}

.hero .logo img {
  opacity: 0;
  -webkit-animation: head 0.6s cubic-bezier(0.5, 1, 0.89, 1) 1s forwards;
  animation: head 0.6s cubic-bezier(0.5, 1, 0.89, 1) 1s forwards;
}

@media only screen and (max-width: 960px) {
  .hero .logo {
    width: 70%;
    bottom: 0;
  }
}

.hero .main {
  position: relative;
  z-index: 10;
  width: 1000px;
  margin: 0 auto;
  padding: 100px 0 60px;
}

.hero .main img {
  opacity: 0;
  -webkit-animation: chara 0.5s cubic-bezier(0.5, 1, 0.89, 1) 0.7s forwards;
  animation: chara 0.5s cubic-bezier(0.5, 1, 0.89, 1) 0.7s forwards;
}

@media only screen and (max-width: 960px) {
  .hero .main {
    width: 100%;
    padding: 60px 0 200px;
  }
  .hero .main img {
    width: 100%;
  }
}

.contents {
  margin-top: 150px;
  width: 1000px;
  margin: 150px auto 0;
}

@media only screen and (max-width: 960px) {
  .contents {
    width: 92%;
    margin: 60px auto 0;
  }
}

.contents_in {
  position: relative;
  z-index: 1;
  background: #fff;
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
  margin: 50px auto 0;
  border-radius: 20px;
  padding: 70px 80px 90px 80px;
}

@media only screen and (max-width: 960px) {
  .contents_in {
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
  }
}

.contents_in::before {
  content: "";
  width: 202px;
  height: 193px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/contents_deco-01.png);
  z-index: -1;
}

.contents_in::after {
  content: "";
  width: 375px;
  height: 291px;
  position: absolute;
  bottom: 0;
  right: 0;
  background: url(../img/contents_deco-02.png);
  z-index: -1;
}

@media only screen and (max-width: 960px) {
  .contents_in {
    width: 100%;
    padding: 10% 5% 10% 5%;
    margin: 50px auto 0;
  }
}

.contents h2.ttl {
  position: relative;
  font-family: "Petit Formal Script", cursive;
  color: #28c0bb;
  text-align: center;
  font-weight: 400;
  letter-spacing: 0.3rem;
  font-size: 80px;
  margin-bottom: 70px;
}

.contents h2.ttl::before {
  content: "";
  background: url(../img/ttl_deco.png) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -90px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 100%;
  width: 200px;
  pointer-events: none;
}

@media only screen and (max-width: 960px) {
  .contents h2.ttl::before {
    bottom: -50px;
    width: 100px;
  }
}

@media only screen and (max-width: 960px) {
  .contents h2.ttl {
    font-size: 40px;
    margin-bottom: 30px;
  }
}

/*******************************************************************/
.about_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  margin-top: 30px;
}

@media only screen and (max-width: 960px) {
  .about_item {
    display: block;
    font-size: 13px;
    margin-top: 20px;
  }
}

.about_item:first-child {
  margin-top: 0;
}

.about_item dt {
  width: 200px;
}

@media only screen and (max-width: 960px) {
  .about_item dt {
    width: auto;
  }
}

.about_item dt p {
  position: relative;
  display: inline-block;
  color: #aa78b4;
  width: 100%;
}

@media only screen and (max-width: 960px) {
  .about_item dt p {
    width: auto;
  }
}

.about_item dd {
  width: calc(100% - 240px);
  margin-left: 40px;
  line-height: 1.5em;
}

@media only screen and (max-width: 960px) {
  .about_item dd {
    width: 100%;
    margin-left: 0;
    margin-top: 8px;
  }
}

.about_item dd .txt_m {
  font-size: 15px;
  line-height: 1.5em;
}

@media only screen and (max-width: 960px) {
  .about_item dd .txt_m {
    font-size: 11px;
  }
}

.about .contactus {
  margin-top: 40px;
}

.about .contactus dl {
  margin-top: 25px;
}

.about .contactus dl:first-child {
  margin-top: 0;
}

.about .contactus dl dt {
  color: #aa78b4;
}

.about .contactus dl dd {
  line-height: 1.5em;
  margin-top: 5px;
}

.about a {
  color: #333;
}

/*******************************************************************/
.ticket_lead {
  font-size: 18px;
  line-height: 1.5em;
  border-bottom: #ccc solid 1px;
  margin-bottom: 50px;
  padding-bottom: 50px;
}

@media only screen and (max-width: 960px) {
  .ticket_lead {
    font-size: 13px;
  }
}

.ticket_lead ul {
  font-size: 13px;
  line-height: 1.5em;
  margin-top: 10px;
}

@media only screen and (max-width: 960px) {
  .ticket_lead ul {
    font-size: 11px;
  }
}

.ticket_lead ul li {
  text-indent: -1em;
  padding-left: 1em;
}

.ticket_wrap_cap {
  color: #aa78b4;
  font-size: 24px;
  margin-bottom: 20px;
  font-weight: 600;
}

@media only screen and (max-width: 960px) {
  .ticket_wrap_cap {
    font-size: 18px;
  }
}

.ticket_wrap {
  margin-top: 50px;
}

.ticket_wrap.end {
  position: relative;
}

.ticket_wrap.end::before {
  content: "";
  position: absolute;
  top: -2%;
  left: -1%;
  width: 102%;
  height: 104%;
  background: #28c0bb;
  opacity: 0.8;
}

.ticket_wrap.end::after {
  content: "販売終了";
  color: #fff;
  font-size: 50px;
  line-height: 1em;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media only screen and (max-width: 960px) {
  .ticket_wrap.end::after {
    font-size: 30px;
  }
}

@media only screen and (max-width: 960px) {
  .ticket_wrap {
    margin-top: 30px;
  }
}

.ticket_wrap:first-child {
  margin-top: 0;
}

.ticket_wrap h3 {
  font-size: 18px;
}

@media only screen and (max-width: 960px) {
  .ticket_wrap h3 {
    font-size: 14px;
    line-height: 1.5em;
    margin-bottom: 0px;
  }
}

.ticket_wrap h3 p {
  display: inline-block;
  color: #aa78b4;
  width: 100%;
}

.ticket_wrap h3 p::before {
  content: "";
  background: url(../img/cap_deco.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: -10px;
  height: 100%;
  width: 10px;
}

.ticket_wrap dl {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

@media only screen and (max-width: 960px) {
  .ticket_wrap dl {
    font-size: 13px;
    display: block;
  }
}

.ticket_wrap dl dt {
  color: #aa78b4;
  width: 180px;
  line-height: 1.5em;
}

.ticket_wrap dl dd {
  line-height: 1.5em;
}

.ticket_wrap dl dd > .att {
  font-size: 13px;
  line-height: 1.4em;
  margin-top: 5px;
}

@media only screen and (max-width: 960px) {
  .ticket_wrap dl dd > .att {
    font-size: 10px;
  }
}

.ticket_wrap > .att {
  font-size: 13px;
  margin-top: 20px;
}

@media only screen and (max-width: 960px) {
  .ticket_wrap > .att {
    font-size: 10px;
  }
}

@media only screen and (max-width: 960px) {
  .ticket_wrap dl dt {
    width: 100%;
    margin-bottom: 10px;
  }
}

.ticket_wrap dl dt span {
  font-size: 12px;
}

.ticket_wrap .end_text {
  font-size: 18px;
  margin-top: 10px;
}

.ticket_wrap .end_text.top0 {
  margin-top: 0 !important;
}

.ticket .note {
  font-size: 13px;
  margin-top: 50px;
  padding-top: 50px;
  border-top: #ccc solid 1px;
}

@media only screen and (max-width: 960px) {
  .ticket .note {
    font-size: 11px;
    margin-top: 40px;
  }
}

.ticket .note li {
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 5px;
  line-height: 1.4em;
}

.ticket .note li:first-child {
  margin-top: 0;
}

.ticket a {
  color: #aa78b4;
}

.ticket .line {
  border-top: #000 solid 1px;
  width: 100%;
  margin: 50px 0;
}

@media only screen and (max-width: 960px) {
  .ticket .line {
    margin: 40px 0;
  }
}

.ticket_wrap .text {
  margin-top: 10px;
  font-weight: 600;
}

@media only screen and (max-width: 960px) {
  .ticket_wrap .text {
    font-size: 13px;
    margin-top: 20px;
  }
}

.ticket_goods {
  border: #ccc solid 1px;
  width: 450px;
  margin-top: 20px;
}

@media only screen and (max-width: 960px) {
  .ticket_goods {
    width: 100%;
  }
}

/*******************************************************************/
.goods_lead {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5em;
}

@media only screen and (max-width: 960px) {
  .goods_lead {
    font-size: 13px;
  }
}

.goods_note {
  font-size: 13px;
  line-height: 1.5em;
  margin-top: 40px;
}

.goods_note a {
  color: #aa78b4;
}

@media only screen and (max-width: 960px) {
  .goods_note {
    font-size: 10px;
  }
}

.goods_note .cap {
  color: #874aa8;
  font-weight: 500;
}

.goods_note li {
  text-indent: -0.5em;
  padding-left: 0.5em;
}

.goods_wrap h3 {
  font-size: 22px;
  margin-bottom: 10px;
  display: inline-block;
}

@media only screen and (max-width: 960px) {
  .goods_wrap h3 {
    font-size: 14px;
    margin-bottom: 0px;
  }
}

.goods_wrap h3 p {
  position: relative;
  display: inline-block;
  color: #aa78b4;
  font-weight: 600;
}

.goods_wrap dl {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

@media only screen and (max-width: 960px) {
  .goods_wrap dl {
    font-size: 13px;
    display: block;
  }
}

.goods_wrap dl dt {
  color: #aa78b4;
  font-weight: 600;
  width: 180px;
  line-height: 1.5em;
}

@media only screen and (max-width: 960px) {
  .goods_wrap dl dt {
    width: 100%;
  }
}

.goods_wrap dl dd {
  line-height: 1.5em;
  width: calc(100% - 180px);
}

.goods_wrap dl dd a {
  color: #aa78b4;
}

@media only screen and (max-width: 960px) {
  .goods_wrap dl dd {
    width: 100%;
  }
}

.goods_wrap dl dd > .att {
  font-size: 13px;
  line-height: 1.4em;
  margin-top: 5px;
}

@media only screen and (max-width: 960px) {
  .goods_wrap dl dd > .att {
    font-size: 10px;
  }
}

.goods_wrap .note {
  font-size: 13px;
  margin-top: 10px;
  line-height: 1.5em;
}

.goods_wrap .note_cap {
  color: #28c0bb;
  font-weight: 500;
  margin-bottom: 5px;
}

.goods_wrap .note a {
  color: #aa78b4;
}

.goods_wrap .note li {
  text-indent: -1em;
  padding-left: 1em;
}

.goods_wrap {
  margin-top: 40px;
}

.goods_wrap .lead {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}

@media only screen and (max-width: 960px) {
  .goods_wrap .lead {
    font-size: 13px;
    line-height: 1.5em;
  }
}

.goods_wrap .att {
  font-size: 13px;
  margin-top: 10px;
  line-height: 1.5em;
}

@media only screen and (max-width: 960px) {
  .goods_wrap .att {
    font-size: 10px;
  }
}

.goods_link {
  position: relative;
  width: 300px;
  padding: 20px;
  margin-top: 15px;
  background: #000;
  border: #000 2px solid;
  color: #fff;
  -webkit-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media only screen and (max-width: 960px) {
  .goods_link {
    font-size: 13px;
  }
}

.goods_link:hover {
  background: #fff;
  color: #000;
}

.goods_link p {
  text-align: center;
}

.goods_link a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media only screen and (max-width: 960px) {
  .goods_lineup {
    margin-top: 30px;
    padding-top: 30px;
  }
}

.goods_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.goods_list .goods_item {
  width: 31%;
  margin-left: 3.5%;
  margin-top: 6%;
}

@media only screen and (min-width: 961px) {
  .goods_list .goods_item:nth-child(3n+1) {
    margin-left: 0;
  }
  .goods_list .goods_item:nth-child(n+1):nth-child(-n+3) {
    margin-top: 0;
  }
}

@media only screen and (max-width: 960px) {
  .goods_list .goods_item {
    width: 49%;
    margin-left: 2%;
  }
  .goods_list .goods_item:nth-child(2n+1) {
    margin-left: 0;
  }
  .goods_list .goods_item:nth-child(n+1):nth-child(-n+2) {
    margin-top: 0;
  }
}

.goods_list .goods_item .img {
  border: #ccc solid 1px;
}
.goods_list .goods_item .img img{
  width: 100%;
}

.goods_list .goods_item .name {
  margin-top: 15px;
  font-weight: 600;
  line-height: 1.4em;
  color: #874aa8;
}

@media only screen and (max-width: 960px) {
  .goods_list .goods_item .name {
    font-size: 10px;
  }
}

.goods_list .goods_item .price {
  margin-top: 10px;
  font-size: 18px;
  font-weight: 600;
}

@media only screen and (max-width: 960px) {
  .goods_list .goods_item .price {
    font-size: 15px;
    margin-top: 5px;
  }
}

.goods_list .goods_item .price span {
  font-size: 13px;
  vertical-align: baseline;
}

@media only screen and (max-width: 960px) {
  .goods_list .goods_item .price span {
    font-size: 10px;
  }
}

.goods_list .goods_item .text {
  font-size: 13px;
  line-height: 1.4em;
  margin-top: 10px;
}

@media only screen and (max-width: 960px) {
  .goods_list .goods_item .text {
    font-size: 10px;
    margin-top: 5px;
  }
}

.goods_list .goods_item .att {
  font-size: 13px;
  line-height: 1.4em;
  margin-top: 10px;
}

@media only screen and (max-width: 960px) {
  .goods_list .goods_item .att {
    font-size: 10px;
    margin-top: 5px;
  }
}

.goods_list .goods_item .limit {
  color: #874aa8;
  font-weight: 600;
  font-size: 13px;
  margin-top: 10px;
}

@media only screen and (max-width: 960px) {
  .goods_list .goods_item .limit {
    font-size: 10px;
    margin-top: 5px;
  }
}

.pkg {
  margin-top: 50px;
  padding-top: 50px;
  border-top: #ccc solid 1px;
  line-height: 1.5em;
}

@media only screen and (max-width: 960px) {
  .pkg {
    margin-top: 30px;
    padding-top: 30px;
  }
}

.pkg dl {
  display: block;
}

.pkg dl dt {
  width: 100%;
  margin-bottom: 10px;
}

.pkg dl dd {
  width: 100%;
}

.pkg .note li {
  text-indent: -1em;
  padding-left: 1em;
}

.pkg .pkg_01,
.pkg .pkg_02,
.pkg .pkg_03 {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.5em;
}

@media only screen and (max-width: 960px) {
  .pkg .pkg_01,
  .pkg .pkg_02,
  .pkg .pkg_03 {
    font-size: 10px;
    margin-top: 10px;
  }
}

.pkg .pkg_01 .cap,
.pkg .pkg_02 .cap,
.pkg .pkg_03 .cap {
  color: #874aa8;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: 10px;
}

@media only screen and (max-width: 960px) {
  .pkg .pkg_01 .cap,
  .pkg .pkg_02 .cap,
  .pkg .pkg_03 .cap {
    font-size: 16px;
  }
}

.pkg .pkg_01 .sub,
.pkg .pkg_02 .sub,
.pkg .pkg_03 .sub {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}

@media only screen and (max-width: 960px) {
  .pkg .pkg_01 .sub,
  .pkg .pkg_02 .sub,
  .pkg .pkg_03 .sub {
    font-size: 13px;
    line-height: 1.5em;
  }
}

.pkg .pkg_01 .note,
.pkg .pkg_02 .note,
.pkg .pkg_03 .note {
  font-size: 13px;
  line-height: 1.5em;
  margin-top: 10px;
}

@media only screen and (max-width: 960px) {
  .pkg .pkg_01 .note,
  .pkg .pkg_02 .note,
  .pkg .pkg_03 .note {
    font-size: 10px;
  }
}

.pkg .pkg_01 .text,
.pkg .pkg_02 .text,
.pkg .pkg_03 .text {
  font-size: 15px;
  line-height: 1.5em;
}

@media only screen and (max-width: 960px) {
  .pkg .pkg_01 .text,
  .pkg .pkg_02 .text,
  .pkg .pkg_03 .text {
    font-size: 13px;
  }
}

.pkg .pkg_01 p,
.pkg .pkg_02 p,
.pkg .pkg_03 p {
  font-size: 13px;
  line-height: 1.5em;
}

@media only screen and (max-width: 960px) {
  .pkg .pkg_01 p,
  .pkg .pkg_02 p,
  .pkg .pkg_03 p {
    font-size: 10px;
  }
}

.pkg .pkg_02,
.pkg .pkg_03 {
  margin-top: 50px;
}

@media only screen and (max-width: 960px) {
  .pkg .pkg_02,
  .pkg .pkg_03 {
    margin-top: 30px;
  }
}

.pkg .img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 15px;
}

.pkg .img li {
  width: 35%;
  margin-left: 1%;
  border: solid 1px #ccc;
}

@media only screen and (max-width: 960px) {
  .pkg .img li {
    width: 49%;
    margin-left: 2%;
  }
}

.pkg .img li:first-child {
  margin-left: 0;
}

.goods_deco-01 {
  width: 150px;
  position: absolute;
  top: -30px;
  left: -55px;
}

@media only screen and (max-width: 960px) {
  .goods_deco-01 {
    width: 80px;
    top: -30px;
    left: -40px;
  }
}

.goods_deco-02 {
  width: 55px;
  position: absolute;
  top: 30px;
  left: 100px;
}

@media only screen and (max-width: 960px) {
  .goods_deco-02 {
    width: 28px;
    top: 15px;
    left: 30px;
  }
}

.goods_deco-03 {
  width: 35px;
  position: absolute;
  top: 95px;
  left: 40px;
}

@media only screen and (max-width: 960px) {
  .goods_deco-03 {
    width: 16px;
    top: 50px;
    left: 10px;
  }
}

.goods_deco-04 {
  width: 130px;
  position: absolute;
  right: -65px;
}

@media only screen and (min-width: 961px) {
  .goods_deco-04 {
    bottom: -25px;
  }
}

@media only screen and (max-width: 960px) {
  .goods_deco-04 {
    width: 60px;
    top: 535px;
    right: -10px;
  }
}

/*******************************************************************/
.attention ul.note {
  line-height: 1.3em;
  font-size: 13px;
}

@media only screen and (max-width: 960px) {
  .attention ul.note {
    font-size: 11px;
  }
}

.attention ul.note li {
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 5px;
}

.attention ul.note li:first-child {
  margin-top: 0;
}

.attention .cap {
  color: #28c0bb;
  font-size: 15px;
}

@media only screen and (max-width: 960px) {
  .attention .cap {
    font-size: 13px;
  }
}

.attention .mt {
  margin-top: 20px !important;
}

.attention a {
  color: #aa78b4;
}

/*******************************************************************/
.footer {
  position: relative;
  margin-top: 200px;
  padding: 50px;
  color: #777;
  font-size: 11px;
  z-index: 10;
}

@media only screen and (max-width: 960px) {
  .footer {
    font-size: 10px;
    margin-top: 100px;
    padding: 12% 5%;
  }
}

.footer a {
  color: #777;
  text-decoration: none;
}

@media only screen and (min-width: 961px) {
  .footer .anime {
    width: 260px;
    position: absolute;
    bottom: 50px;
    right: 50px;
    -webkit-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .footer .anime:hover {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
}

@media only screen and (max-width: 960px) {
  .footer .anime {
    position: relative;
    width: 60%;
    margin: 0 auto;
  }
}

.footer .share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 960px) {
  .footer .share {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 10%;
  }
}

.footer .share li {
  width: 30px;
  margin-left: 20px;
  -webkit-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media only screen and (min-width: 960px) {
  .footer .share li:hover {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

.footer .share li:first-child {
  margin-left: 0;
}

.footer .link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
}

@media only screen and (max-width: 960px) {
  .footer .link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-top: 10%;
  }
}

.footer .link li {
  margin-left: 10px;
  -webkit-transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

@media only screen and (min-width: 960px) {
  .footer .link li:hover {
    opacity: 0.6;
  }
}

.footer .link li:first-child {
  margin-left: 0;
}

.footer .text {
  margin-top: 8px;
}

@media only screen and (max-width: 960px) {
  .footer .text {
    text-align: center;
    line-height: 1.3em;
    margin-top: 10px;
  }
}

.footer .copy {
  margin-top: 12px;
}

@media only screen and (max-width: 960px) {
  .footer .copy {
    text-align: center;
    margin-top: 15px;
  }
}
/*# sourceMappingURL=event.css.map */