@charset "UTF-8";
/* CSS-Reset
-------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

input, select {
  vertical-align: middle;
}

/* mixin
-------------------- */
/* inview
-------------------- */
.inview {
  opacity: 0;
  -webkit-transform: translate(0, 60px);
          transform: translate(0, 60px);
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

.inview_show {
  opacity: 1.0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: transform 1.5s, opacity 1.5s;
  transition: transform 1.5s, opacity 1.5s, -webkit-transform 1.5s;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

.deview {
  opacity: 0;
  -webkit-transform: translate(0, 60px);
          transform: translate(0, 60px);
}

.deview_show {
  opacity: 1.0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: transform 1.5s, opacity 1.5s;
  transition: transform 1.5s, opacity 1.5s, -webkit-transform 1.5s;
}

.upview {
  opacity: 0;
  -webkit-transform: translate(0, -70px);
          transform: translate(0, -70px);
}

.upview_show {
  opacity: 1.0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: opacity 1.5s, -webkit-transform 1.5s;
  transition: transform 1.5s, opacity 1.5s;
  transition: transform 1.5s, opacity 1.5s, -webkit-transform 1.5s;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

.leftview {
  opacity: 0;
  -webkit-transform: translate(70px, 0);
          transform: translate(70px, 0);
}

.leftview_show {
  opacity: 1.0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: opacity 1.5s, -webkit-transform 2s;
  transition: opacity 1.5s, -webkit-transform 2s;
  transition: transform 2s, opacity 1.5s;
  transition: transform 2s, opacity 1.5s, -webkit-transform 2s;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

.rightview {
  opacity: 0;
  -webkit-transform: translate(-70px, 0);
          transform: translate(-70px, 0);
}

.rightview_show {
  opacity: 1.0;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-transition: opacity 1.5s, -webkit-transform 2s;
  transition: opacity 1.5s, -webkit-transform 2s;
  transition: transform 2s, opacity 1.5s;
  transition: transform 2s, opacity 1.5s, -webkit-transform 2s;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

.fadein {
  opacity: 0;
  -webkit-transform: scale(1.035);
          transform: scale(1.035);
}

.fadein_show {
  opacity: 1.0;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: opacity 1.5s, -webkit-transform 2s;
  transition: opacity 1.5s, -webkit-transform 2s;
  transition: transform 2s, opacity 1.5s;
  transition: transform 2s, opacity 1.5s, -webkit-transform 2s;
  -webkit-transition-delay: .1s;
          transition-delay: .1s;
}

.splitview {
  opacity: 0;
  z-index: 20;
  position: relative;
  overflow: hidden;
  width: 0;
  -webkit-transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  margin: 0 auto;
  white-space: nowrap;
}

.splitview_show {
  opacity: 1.0;
  -webkit-transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  transition: all 1.6s cubic-bezier(0.19, 1, 0.22, 1);
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
  width: 200px;
}

@media (max-width: 480px) {
  .splitview_show {
    width: calc(100vw - 35px);
  }
}

.about .splitview_show {
  width: 610px;
}

@media (max-width: 480px) {
  .about .splitview_show {
    width: 280px;
  }
}

.locations .splitview_show,
.time .splitview_show {
  width: 260px;
}

@media (max-width: 480px) {
  .locations .splitview_show,
  .time .splitview_show {
    width: 163px;
  }
}

.sametime .splitview_show {
  width: 410px;
}

@media (max-width: 480px) {
  .sametime .splitview_show {
    width: 240px;
  }
}

.events .splitview_show {
  width: 240px;
}

@media (max-width: 480px) {
  .events .splitview_show {
    width: 140px;
  }
}

.map .splitview_show {
  width: 200px;
}

@media (max-width: 480px) {
  .map .splitview_show {
    width: 120px;
  }
}

/* common
-------------------- */
body {
  text-align: center;
  font-family: "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3",'Meiryo',"ＭＳ Ｐゴシック","Osaka", sans-serif;
  color: #222;
  min-width: 1080px;
  background: url(img/bg.png) no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  font-weight: 900;
}

@media (max-width: 1080px) {
  body {
    min-width: 0;
    background: none;
  }
  body::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 50%;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url(img/bg.png) no-repeat center;
    background-size: auto 100vh;
    margin-left: -50%;
  }
}

a {
  color: #222;
  text-decoration: none;
}

img {
  width: 100%;
}

.sp {
  display: none;
}

@media (max-width: 480px) {
  .sp {
    display: block;
  }
}

@media (max-width: 480px) {
  .pc {
    display: none;
  }
}

.wrap {
  max-width: 1000px;
  padding-left: 20px;
  padding-right: 20px;
  margin: 0 auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media (max-width: 480px) {
  .flex {
    display: block;
  }
}

.reg {
  vertical-align: -.4em;
  line-height: 0;
}

/* snslink
-------------------- */
.snslink {
  position: fixed;
  top: 30px;
  right: 30px;
  z-index: 99999;
}

@media (max-width: 1080px) {
  .snslink {
    top: 20px;
    right: 20px;
  }
}

@media (max-width: 480px) {
  .snslink {
    top: 15px;
    right: 15px;
  }
}

.snslink ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 60px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.snslink a {
  display: inline-block;
  -webkit-transition: .3s;
  transition: .3s;
}

.snslink a:hover {
  opacity: .7;
}

.snslink .tw {
  padding-top: 1px;
}

.snslink .tw img {
  width: 24px;
}

.snslink .insta img {
  width: 21px;
}

/* header
-------------------- */
header {
  padding: 70px 0;
}

@media (max-width: 480px) {
  header {
    padding: 55px 0;
  }
}

header .wrap {
  max-width: 770px;
}

header .p1 {
  max-width: 376px;
  margin: 0 auto 10px;
}

@media (max-width: 480px) {
  header .p1 {
    max-width: 250px;
    margin-bottom: 0;
  }
}

header .p2 {
  max-width: 435px;
  margin: 0 auto 15px;
}

@media (max-width: 480px) {
  header .p2 {
    max-width: 261px;
    margin-bottom: 5px;
  }
}

header .sub {
  max-width: 720px;
  margin: -56px auto 0;
  text-align: right;
}

@media (max-width: 480px) {
  header .sub {
    max-width: 266px;
    margin: -36px auto 0;
  }
}

header .sub img {
  max-width: 611px;
}

header .same {
  margin-top: -76px;
  position: relative;
  z-index: -1;
}

@media (max-width: 480px) {
  header .same {
    margin-top: -8px;
    text-align: center;
    z-index: -1;
  }
}

header .same img {
  width: 300px;
}

@media (max-width: 480px) {
  header .same img {
    width: 210px;
  }
}

@media (max-width: 480px) {
  header .same img.sp {
    display: inline-block;
  }
}

header .txt {
  padding: 36px 30px 0 1px;
  text-align: left;
}

@media (max-width: 480px) {
  header .txt {
    padding: 0 0 18px;
  }
}

header .year {
  font-size: 39px;
  font-family: "Biryani", sans-serif;
}

@media (max-width: 480px) {
  header .year {
    font-size: 23px;
    max-width: 275px;
    margin: 0 auto;
  }
}

header .place {
  color: #5f2300;
  font-size: 25px;
  font-weight: 900;
  padding: 0;
}

@media (max-width: 480px) {
  header .place {
    text-align: center;
    font-size: 19px;
  }
}

@media (max-width: 480px) {
  header .term {
    max-width: 275px;
    margin: 0 auto;
  }
}

h1 img {
  max-width: 770px;
  padding-bottom: 23px;
}

@media (max-width: 480px) {
  h1 img {
    max-width: 280px;
  }
}

h1.fadein_show {
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
  -webkit-transition: 2s;
  transition: 2s;
}

.term {
  font-weight: 900;
  letter-spacing: .05em;
  margin-bottom: 9px;
}

.term .date {
  display: inline-block;
  position: relative;
}

.term .date.uno {
  padding-right: 25px;
}

@media (max-width: 480px) {
  .term .date.uno {
    padding-right: 19px;
  }
}

.term .date.uno::after {
  width: 12px;
  height: 17px;
  margin-top: -8px;
  top: 50%;
  right: 6px;
  position: absolute;
  content: '';
  background: url(img/arw.png) no-repeat;
  background-size: contain;
}

@media (max-width: 480px) {
  .term .date.uno::after {
    width: 9px;
    height: 12px;
    margin-top: -6px;
    right: 6px;
  }
}

.term .en {
  font-size: 46px;
  font-family: "Biryani", sans-serif;
}

@media (max-width: 480px) {
  .term .en {
    font-size: 32px;
  }
}

.term .jp {
  font-size: 25px;
  vertical-align: 2px;
}

@media (max-width: 480px) {
  .term .jp {
    font-size: 17px;
  }
}

/* grandprix
-------------------- */
.grandprix {
  padding: 60px 0;
}

.grandprix .wrap {
  max-width: 713px;
}

/* about
-------------------- */
.about {
  padding: 60px 0;
  font-weight: 900;
}

@media (max-width: 480px) {
  .about {
    padding: 20px 0;
  }
}

.about .wrap {
  max-width: 725px;
  background: url(img/bg_spoon.png) no-repeat center bottom;
  background-size: contain;
}

.about h2 {
  font-size: 50px;
  color: #5f2300;
  padding-bottom: 70px;
}

@media (max-width: 480px) {
  .about h2 {
    font-weight: 900;
    font-size: 23px;
    padding-bottom: 30px;
  }
}

.about .main {
  font-size: 28px;
  line-height: 44px;
}

@media (max-width: 480px) {
  .about .main {
    font-size: 18px;
    line-height: 28px;
  }
}

.about .main p {
  padding-bottom: 44px;
}

@media (max-width: 480px) {
  .about .main p {
    padding-bottom: 28px;
  }
}

.about .main strong {
  color: #c6161d;
}

.about .exp {
  font-weight: 700;
  font-size: 15px;
  line-height: 23px;
}

@media (max-width: 480px) {
  .about .exp {
    font-size: 14px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.about .exp p {
  padding-bottom: 23px;
}

/* time
-------------------- */
.time h3,
.locations h2 {
  background: url(img/h3_bg_spoon.png) no-repeat center;
  background-size: 303px;
  color: #f2c300;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: .07em;
  padding: 40px 0 39px 50px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  z-index: 20;
}

@media (max-width: 480px) {
  .time h3,
  .locations h2 {
    background: url(img/h3_bg_spoon.png) no-repeat center;
    background-size: 197px;
    font-size: 20px;
    padding: 40px 0 39px 40px;
  }
}

.time {
  margin-bottom: 40px;
}

.time .wrap {
  max-width: 730px;
}

.time .con {
  border-radius: 40px;
  border: 20px solid #f2c300;
  padding: 110px 20px 6px;
  margin-top: -62px;
}

@media (max-width: 480px) {
  .time .con {
    padding-top: 60px;
  }
}

.time h4 {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(20%, transparent), color-stop(20%, #f2c300));
  background: linear-gradient(to bottom, transparent 0%, transparent 20%, #f2c300 20%);
  padding: 0 20px 4px;
  line-height: 30px;
  margin-bottom: 10px;
}

@media (max-width: 480px) {
  .time h4 {
    padding: 0 10px 5px;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(35%, transparent), color-stop(35%, #f2c300));
    background: linear-gradient(to bottom, transparent 0%, transparent 35%, #f2c300 35%);
    line-height: 22px;
  }
}

.time .term {
  letter-spacing: .1em;
}

.time .term .en {
  font-size: 53px;
}

@media (max-width: 480px) {
  .time .term .en {
    font-size: 25px;
  }
}

.time .term .jp {
  font-size: 29px;
}

@media (max-width: 480px) {
  .time .term .jp {
    font-size: 15px;
  }
}

.time .exp {
  margin-bottom: 50px;
}

.time .exp .times {
  font-size: 36px;
  font-family: "Biryani", sans-serif;
}

@media (max-width: 480px) {
  .time .exp .times {
    font-size: 22px;
  }
}

.time .exp .lo {
  font-size: 20px;
}

@media (max-width: 480px) {
  .time .exp .lo {
    font-size: 16px;
    display: block;
  }
}

.time .exp .en {
  font-family: "Biryani", sans-serif;
  font-size: 28px;
}

@media (max-width: 480px) {
  .time .exp .en {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .time .exp {
    margin-bottom: 38px;
  }
}

.place, .price {
  padding: 30px;
}

@media (max-width: 480px) {
  .place, .price {
    padding: 20px;
  }
}

.place h3, .price h3 {
  font-size: 30px;
  font-weight: 900;
  color: #5f2300;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

@media (max-width: 480px) {
  .place h3, .price h3 {
    font-size: 22px;
    margin-bottom: 15px;
  }
}

.place h3::before, .price h3::before {
  width: 34px;
  height: 55px;
  margin-top: -27px;
  top: 50%;
  left: -60px;
  position: absolute;
  content: '';
  background: url(img/ico_spoon.png) no-repeat;
  background-size: contain;
}

@media (max-width: 480px) {
  .place h3::before, .price h3::before {
    width: 22px;
    height: 35px;
    margin-top: -15px;
    top: 50%;
    left: -41px;
    position: absolute;
  }
}

.place p, .price p {
  font-size: 25px;
  padding-bottom: 15px;
}

@media (max-width: 480px) {
  .place p, .price p {
    font-size: 17px;
    padding-bottom: 10px;
  }
}

.place p.cap, .price p.cap {
  font-size: 15px;
}

@media (max-width: 480px) {
  .place .wrap {
    padding-left: 0;
    padding-right: 0;
  }
}

.price {
  margin-bottom: 30px;
}

.price .menu {
  max-width: 730px;
  margin: 40px auto 0;
}

/* locations
-------------------- */
.locations section.one,
.locations section.two,
.locations section.thr {
  padding-bottom: 50px;
}

@media (max-width: 480px) {
  .locations .wrap {
    padding-left: 5px;
    padding-right: 15px;
  }
}

.locations h2 {
  margin-bottom: 30px;
}

.locations .term {
  letter-spacing: .1em;
}

@media (max-width: 480px) {
  .locations .term .date.uno::after {
    width: 8px;
    height: 11px;
    margin-top: -8px;
  }
}

.locations .term .en {
  font-size: 53px;
}

@media (max-width: 480px) {
  .locations .term .en {
    font-size: 25px;
  }
}

.locations .term .jp {
  font-size: 29px;
}

@media (max-width: 480px) {
  .locations .term .jp {
    font-size: 15px;
  }
}

.locations .flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (max-width: 705px) {
  .locations .flex {
    display: block;
  }
}

.locations .location {
  border-radius: 20px;
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
}

@media (max-width: 1080px) {
  .locations .location {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media (max-width: 705px) {
  .locations .location {
    margin: 0 auto;
    max-width: 360px;
  }
}

.locations .location .con {
  border: 13px solid #fff;
  border-radius: 20px;
  background: #f2c300;
  padding: 20px;
}

.locations .location .sub {
  font-size: 16px;
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 480px) {
  .locations .location .sub {
    font-size: 14px;
  }
}

.locations .location .sub .pref {
  display: inline-block;
  background: #5f2300;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 7px 7px 8px 8px;
  margin-right: 9px;
}

.locations .location .sub .name {
  padding-top: 6px;
  display: inline-block;
}

.locations .location .img {
  line-height: 0;
}

.locations .location h4 {
  font-size: 23px;
  line-height: 27px;
  color: #5f2300;
  padding-bottom: 10px;
  font-weight: 900;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 480px) {
  .locations .location h4 {
    font-size: 18px;
  }
}

.locations .location .cons {
  background: #fff;
  padding: 15px 20px;
  text-align: left;
}

.locations .location .exp {
  font-size: 12px;
  line-height: 17px;
  font-weight: 500;
  text-align: justify;
  padding-bottom: 12px;
}

.locations .location .topping h5 {
  padding: 3px 5px 4px;
  border-radius: 5px;
  margin-bottom: 7px;
  display: inline-block;
  font-size: 12px;
  font-weight: 900;
  color: #f2c300;
  background: #5f2300;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  z-index: 2;
}

.locations .location .topping h5::after {
  width: 152px;
  height: 1px;
  top: 50%;
  right: -152px;
  background: #5f2300;
  z-index: 1;
  content: '';
  position: absolute;
}

@media (max-width: 480px) {
  .locations .location .topping h5::after {
    width: 123px;
    right: -123px;
  }
}

.locations .location .topping ul {
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}

.locations .one .di .cons {
  padding-bottom: 90px;
}

@media (max-width: 1080px) {
  .locations .one .di .cons {
    padding-bottom: 15px;
  }
}

.locations .one .tri .cons {
  padding-bottom: 97px;
}

@media (max-width: 1080px) {
  .locations .one .tri .cons {
    padding-bottom: 15px;
  }
}

.locations .one .tetra .cons {
  padding-bottom: 43px;
}

@media (max-width: 1080px) {
  .locations .one .tetra .cons {
    padding-bottom: 15px;
  }
}

.locations .two .mono .cons {
  padding-bottom: 92px;
}

@media (max-width: 1080px) {
  .locations .two .mono .cons {
    padding-bottom: 15px;
  }
}

.locations .two .di .cons {
  padding-bottom: 55px;
}

@media (max-width: 1080px) {
  .locations .two .di .cons {
    padding-bottom: 15px;
  }
}

.locations .two .tri .name {
  padding-top: 0;
}

.locations .two .penta .name {
  padding-top: 0;
}

.locations .two .penta .cons {
  padding-bottom: 31px;
}

@media (max-width: 1080px) {
  .locations .two .penta .cons {
    padding-bottom: 15px;
  }
}

.locations .two .tetra .cons {
  padding-bottom: 47px;
}

@media (max-width: 1080px) {
  .locations .two .tetra .cons {
    padding-bottom: 15px;
  }
}

.locations .thr .di .cons {
  padding-bottom: 43px;
}

@media (max-width: 1080px) {
  .locations .thr .di .cons {
    padding-bottom: 15px;
  }
}

.locations .thr .tri .cons {
  padding-bottom: 25px;
}

@media (max-width: 1080px) {
  .locations .thr .tri .cons {
    padding-bottom: 15px;
  }
}

.locations .thr .tetra .cons {
  padding-bottom: 47px;
}

@media (max-width: 1080px) {
  .locations .thr .tetra .cons {
    padding-bottom: 15px;
  }
}

.locations .fou {
  margin-bottom: 60px;
}

.locations .fou h3 {
  font-size: 38px;
  padding-bottom: 21px;
}

@media (max-width: 480px) {
  .locations .fou h3 {
    font-size: 21px;
  }
}

.locations .fou .location .term {
  margin-bottom: 3px;
}

.locations .fou .location .term .date.uno::after {
  width: 9px;
  height: 12px;
  margin-top: -7px;
  top: 50%;
  right: 7px;
}

.locations .fou .location .term .en {
  font-size: 18px;
}

.locations .fou .mono .cons {
  padding-bottom: 65px;
}

@media (max-width: 1080px) {
  .locations .fou .mono .cons {
    padding-bottom: 15px;
  }
}

.locations .fou .tri .cons {
  padding-bottom: 82px;
}

@media (max-width: 1080px) {
  .locations .fou .tri .cons {
    padding-bottom: 15px;
  }
}

.locations .fou .tetra .sub .name {
  padding-top: 0;
}

.locations .fou .tetra .cons {
  padding-bottom: 105px;
}

@media (max-width: 1080px) {
  .locations .fou .tetra .cons {
    padding-bottom: 15px;
  }
}

.locations .fou .penta .sub .name {
  padding-top: 0;
}

.locations .fou .hexa .cons {
  padding-bottom: 76px;
}

@media (max-width: 1080px) {
  .locations .fou .hexa .cons {
    padding-bottom: 15px;
  }
}

.locations .more {
  font-size: 22px;
  line-height: 30px;
  font-weight: 900;
  margin-bottom: 60px;
}

@media (max-width: 480px) {
  .locations .more {
    font-size: 17px;
    margin-bottom: 30px;
  }
}

/* sametime - events - map
-------------------- */
.sametime h3,
.events h3,
.map h3 {
  font-size: 40px;
  font-weight: 900;
  color: #5f2300;
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(40%, transparent), color-stop(40%, #f2c300));
  background: linear-gradient(to bottom, transparent 0%, transparent 40%, #f2c300 40%);
  padding: 10px 32px 15px;
  margin-bottom: 30px;
  margin-top: 30px;
}

@media (max-width: 480px) {
  .sametime h3,
  .events h3,
  .map h3 {
    font-size: 23px;
    padding: 10px 16px 9px;
  }
}

.sametime .wrap {
  max-width: 870px;
}

.sametime .img {
  width: 262px;
}

@media (max-width: 480px) {
  .sametime .img {
    width: 210px;
    margin: 0 auto;
  }
}

.sametime .txt {
  font-size: 22px;
  line-height: 36px;
  font-weight: 900;
  text-align: left;
  padding-top: 20px;
}

@media (max-width: 480px) {
  .sametime .txt {
    font-size: 15px;
    line-height: 28px;
    padding: 15px 15px;
    font-weight: 700;
  }
}

.events h3 {
  margin-top: 50px;
}

@media (max-width: 480px) {
  .events h3 {
    margin-bottom: 0;
    margin-top: 30px;
  }
}

.events .exp {
  font-size: 22px;
  line-height: 36px;
  font-weight: 900;
  padding-top: 10px;
  padding-bottom: 40px;
}

@media (max-width: 480px) {
  .events .exp {
    font-size: 15px;
    line-height: 28px;
    padding: 15px 15px;
    font-weight: 700;
  }
}

.map h3 {
  margin-top: 70px;
}

#map {
  height: 350px;
}

.access,
.address {
  padding: 60px 0 0;
}

@media (max-width: 480px) {
  .access,
  .address {
    padding: 50px 0 0;
  }
}

.access h4,
.address h4 {
  font-size: 30px;
  font-weight: 900;
  color: #5f2300;
  margin-bottom: 15px;
}

@media (max-width: 480px) {
  .access h4,
  .address h4 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}

.access p,
.address p {
  font-size: 25px;
  font-weight: 900;
}

@media (max-width: 480px) {
  .access p,
  .address p {
    font-size: 18px;
  }
}

.access .wrap {
  max-width: 560px;
}

.access ol {
  text-align: left;
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
}

@media (max-width: 480px) {
  .access ol {
    font-size: 14px;
    line-height: 21px;
  }
}

.access ol > li {
  padding-bottom: 27px;
}

@media (max-width: 480px) {
  .access ol > li {
    padding-bottom: 14px;
  }
}

.access ol ul li {
  text-indent: -18px;
  padding-left: 18px;
}

/* credit
-------------------- */
.credit {
  padding: 40px 0 60px;
  font-size: 16px;
  line-height: 28px;
  font-weight: 900;
}

@media (max-width: 480px) {
  .credit {
    padding: 26px 0 40px;
    font-size: 14px;
    line-height: 25px;
  }
}

/* footer
-------------------- */
footer {
  background-color: #222;
  color: #fff;
  padding: 20px 0;
  font-weight: 500;
  font-size: 12px;
  line-height: 20px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media (max-width: 480px) {
  footer {
    padding: 20px 0px 20px;
    font-size: 10px;
  }
}
/*# sourceMappingURL=style.css.map */