<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
body {
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-style: normal;
  font-size: 16px;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url(../img/back_pc.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100vh;
}
body h1,
body h2,
body h3,
body p,
body a,
body dl,
body dt,
body dd,
body ul,
body li,
body th,
body td {
  margin: 0;
  padding: 0;
}
body a {
  text-decoration: none;
  color: inherit;
}
body ul,
body li {
  list-style: none;
}
body p {
  font-weight: 500;
  line-height: 1.5rem;
}
body img {
  vertical-align: baseline;
  height: auto;
}

.wrapper {
  position: relative;
  max-width: 500px;
  margin: auto;
  -webkit-box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
          box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.35);
}

.spbr {
  display: none;
}

.inner {
  padding: 0 20px;
}

.section {
  padding: 15% 0;
}

.title,
.title-2lines {
  width: 80%;
  max-width: 300px;
  margin: 0 auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}

.title img,
.title-2lines img {
  width: 100%;
  height: auto;
  max-height: 135px;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.title img {
  max-height: 70px;
}

.comingsoon,
.andmore {
  text-align: center;
  font-family: "Roboto", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #000000;
}

.andmore {
  margin: -2em 0 3em;
}

.btn {
  width: 100%;
  display: inline-block;
  margin: auto;
  padding: 30px 45px 30px 74px;
  background: #000000;
  color: #ffffff;
  position: relative;
  font-size: 1.44rem;
  font-weight: 800;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.btn::before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  position: absolute;
  left: 20px;
  /* top: 50%;と、transform: translateY(-50%) で上下中央に配置 */
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../img/icon_x.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.btn::after {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  position: absolute;
  right: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url("../img/arrow.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.btn:hover {
  background: #444444;
}

.flex-box-artists,
.single {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  gap: 20px;
  text-align: left;
  color: #000000;
  line-height: 1.3rem;
  margin-bottom: 5em;
}
.flex-box-artists .flex-img,
.single .flex-img {
  width: calc((100% - 20px) / 2);
}
.flex-box-artists .flex-img img,
.single .flex-img img {
  width: 100%;
}
.flex-box-artists p,
.single p {
  font-size: 1.3rem;
  font-weight: 800;
}

.single {
  margin-bottom: 40px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.mc {
  background: #c0a354;
  color: #ffffff;
  padding: 0 0.5em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-right: 10px;
}

.artist-text_mc {
  margin-top: 0.5em;
}

.img-frame {
  margin-top: 5%;
  width: 455px;
  height: 345px;
  border: 2px solid black;
}

.hamburger {
  position: fixed;
  right: calc(50% - 250px + 20px);
  width: 65px;
  height: 65px;
  background: #000000;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1001;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}

.hamburger-inner {
  width: 30px;
  height: 18px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* 線一本一本 */
.hamburger-inner div {
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform-origin: center;
          transform-origin: center;
}

/* 開いたとき背景色とバー色変更 */
.hamburger.open {
  background: #ffffff;
}

.hamburger.open .hamburger-inner div {
  background: #2375d3;
}

/* “×” に切り替え */
.hamburger.open .hamburger-inner div:nth-child(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
          transform: translateY(8px) rotate(-45deg);
}

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

.hamburger.open .hamburger-inner div:nth-child(3) {
  -webkit-transform: translateY(-8px) rotate(45deg);
          transform: translateY(-8px) rotate(45deg);
}

.menu {
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: 500px;
  height: 100vh;
  background: #2375d3;
  color: white;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 130px 20px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1000;
  overflow-y: auto;
}
.menu .btn {
  width: 100%;
  margin-top: 40px;
}

.menu.open {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.menu-item {
  padding: 20px 0;
  border-bottom: 2px solid #91bae9;
}
.menu-item p {
  font-size: 1.3rem;
  font-weight: 800;
}
.menu-item p:hover {
  opacity: 0.7;
}

.menu-item:first-child {
  border-top: 2px solid #91bae9;
}

.main {
  background-image: url(../img/back_mv.png);
  background-position: top center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.mv {
  margin: auto;
  text-align: center;
  position: relative;
  padding: 2.5em 0 2.8em 0;
  height: auto;
}

.logo {
  margin: auto;
  width: 60%;
}
.logo img {
  width: 100%;
}

.mv-date {
  margin-top: 1.2em;
  width: 100%;
}
.mv-date img {
  width: 100%;
}

.place {
  width: 95%;
  margin: 10px auto 0;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5%;
}
.place-name {
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 2.3rem;
}
.place-name span {
  font-size: 1.3rem;
}
.place .icon {
  width: 25%;
}
.place .icon img {
  width: 100%;
}

.mv-img {
  width: 100%;
  position: relative;
  margin: 45px auto 0;
}
.mv-img .hero img {
  width: 100%;
}
.mv-img .jim_copy {
  position: absolute;
  top: -20px;
  right: 5%;
  width: 52%;
}
.mv-img .jim_copy img {
  width: 100%;
}

.copy {
  margin-top: 30px;
  font-size: 1.5rem;
  font-weight: 800;
  font-style: italic;
  line-height: 2.3rem;
  color: #000000;
}

#perfoming-artists {
  background-image: url(../img/back_date-time.png);
  background-repeat: repeat-y;
  background-size: contain;
  text-align: center;
}

.artist-brock {
  margin-top: 2em;
}
.artist-brock .comingsoon {
  padding: 1em 0 3em 0;
}

.artists-list {
  background: url(../img/square.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 50%;
  max-width: 250px;
  aspect-ratio: 4.23/1;
  margin: 0 auto 2em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.artists-list .date {
  color: #ffffff;
  text-align: center;
  font-family: "Roboto", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.artists-list .date span {
  font-size: 2.5rem;
  padding-right: 0.5rem;
}

.timetable {
  margin-top: 0.8rem;
  width: 100%;
  font-weight: 600;
}
.timetable .comingsoon {
  margin-top: 2em;
}
.timetable-list {
  width: 100%;
  text-align: center;
  margin-top: 2em;
}
.timetable table + table {
  margin-top: 2em;
}
.timetable thead th {
  background-color: #2363bc;
  color: #ffffff;
  padding: 0.4em;
  font-size: 1em;
  text-align: center;
  font-family: "Roboto", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.timetable thead th span {
  font-size: 2.2rem;
  padding-right: 0.5rem;
}
.timetable tbody td {
  padding: 0.3em 0;
  font-size: 1.3rem;
  font-weight: 600;
}
.timetable .name {
  text-align: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 16em;
  padding-left: 1em;
}
.timetable tbody tr:nth-child(odd) {
  background-color: #b3d6f4;
}
.timetable tbody tr:nth-child(even) {
  background-color: #d8edfc;
}
.timetable-attention {
  margin-top: 2em;
  font-size: 0.8rem;
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
}
.timetable-attention::before {
  content: "※";
}

.official-ambassador {
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#6bd0ff), to(#2798ff));
  background: -webkit-linear-gradient(top, #6bd0ff, #2798ff);
  background: linear-gradient(180deg, #6bd0ff, #2798ff);
}
.official-ambassador .title-black {
  color: #000000;
  font-size: 1.5rem;
  font-weight: 800;
  margin-top: 1.5em;
}
.official-ambassador .img-frame {
  width: 100%;
  height: auto;
  -webkit-box-shadow: 5px 5px 0px #2363bc;
          box-shadow: 5px 5px 0px #2363bc;
}
.official-ambassador .img-frame img {
  width: 100%;
  height: auto;
  display: block;
}
.official-ambassador-text {
  margin-top: 15px;
  text-align: left;
  width: 100%;
  text-align: justify;
}

.drink {
  background: #ffffff;
}
.drink-menu {
  margin-top: 1.5em;
  width: 100%;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 2px solid black;
  -webkit-box-shadow: 5px 5px 0px #c0a354;
          box-shadow: 5px 5px 0px #c0a354;
}
.drink-menu img {
  width: 100%;
  height: auto;
  display: block;
}

#food {
  background-image: url(../img/back_food.png);
  background-repeat: repeat-y;
  background-size: cover;
  text-align: center;
}
#food .comingsoon {
  margin: 1.5em 0;
}

.food-copy {
  color: #000000;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.5em;
  margin-top: 1.3em;
}
.food-copy .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, rgba(255, 255, 255, 0.6)));
  background: -webkit-linear-gradient(top, transparent 50%, rgba(255, 255, 255, 0.6) 50%);
  background: linear-gradient(to bottom, transparent 50%, rgba(255, 255, 255, 0.6) 50%);
  background-repeat: no-repeat;
  background-size: 100% 1.5em;
  padding: 0 2px;
}

.flex-box-food {
  margin-top: 4em;
  text-align: left;
  color: #000000;
  line-height: 1.3em;
}
.flex-box-food .flex-food {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex-box-food .flex-img,
.flex-box-food .food-text {
  width: 50%;
}
.flex-box-food .flex-img img,
.flex-box-food .food-text img {
  width: 100%;
}
.flex-box-food .food-text {
  background-color: rgba(255, 255, 255, 0.3);
  padding: 1em 0;
  text-align: center;
}
.flex-box-food .food-text .store {
  font-size: 1.3rem;
  font-weight: 800;
}
.flex-box-food .food-text .small_text {
  font-size: 0.9rem;
  line-height: 1.2em;
  margin-top: 0.5em;
  font-weight: 600;
}

.flex-food + .flex-food {
  margin-top: 1em;
}

.flex-food:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.info {
  background-image: url(../img/back_map.png);
  background-repeat: repeat-y;
  background-size: cover;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.access .title-gold {
  color: #c0a354;
  font-size: 1.5rem;
  font-weight: 800;
  padding-bottom: 0.5em;
  margin-top: 1.5em;
}
.access .smalltext {
  font-size: 1rem;
}
.access .img-frame {
  width: 100%;
  -webkit-box-shadow: 5px 5px 0px #c0a354;
          box-shadow: 5px 5px 0px #c0a354;
}
.access iframe {
  width: 100%;
  height: 100%;
  border: none;
  aspect-ratio: 1.29/1;
}

#date-time {
  text-align: center;
}

.section-2 {
  padding-bottom: 4em;
}

.date-time ul {
  margin: 1.5em 0;
  font-size: 1.5rem;
  font-weight: 600;
}
.date-time li {
  padding: 10px;
}

.line-set {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3px;
  margin: 0 auto;
  width: 100%;
  max-width: 500px;
}

.line-thick,
.line-thin {
  background-color: #c0a354;
  width: 100%;
}

.line-thick {
  height: 4px;
}

.line-thin {
  height: 2px;
}

.attention {
  background: #c0a354;
  width: 100%;
  /* 左スラッシュ「／」 */
  /* 右スラッシュ「＼」 */
}
.attention ul {
  list-style: none;
  line-height: 1.4rem;
}
.attention li {
  text-indent: -1em;
  padding-left: 1em;
}
.attention li::before {
  content: "・";
}
.attention li + li {
  padding-top: 10px;
}
.attention .slash-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2em;
  margin-top: 4em;
}
.attention .slash-text p {
  color: #000000;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.3em;
}
.attention .slash-left,
.attention .slash-right {
  width: 0;
  height: 0;
  border: solid transparent;
  border-width: 0 0 60px 10px;
  border-left-color: #000000;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.attention .slash-right {
  border-width: 0 10px 60px 0;
  border-left-color: transparent;
  border-right-color: #000000;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.attention .btn {
  display: block;
  margin-top: 1em;
}
.attention .copyright {
  margin-top: 5em;
  text-align: center;
  font-size: 0.8rem;
  line-height: 1rem;
}

.section-last {
  padding: 3em 0;
}

@media screen and (max-width: 500px) {
  body {
    background-image: none;
  }
  .wrapper {
    position: relative;
    width: 100%;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media screen and (max-width: 499px) {
  .inner {
    padding: 0 15px;
  }
  .spbr {
    display: block;
  }
  .comingsoon,
  .andmore {
    font-size: 4.8vw;
  }
  .flex-box-artists p,
  .single p {
    font-size: 3.6vw;
    line-height: 1.4;
  }
  .title,
  .title-2lines {
    width: 90%;
    max-width: 250px;
  }
  .title img {
    max-height: 60px;
    min-height: 20px;
  }
  .title-2lines img {
    max-height: 100px;
  }
  .btn {
    width: 100%;
    font-size: 4.8vw;
    padding: 30px 35px 30px 60px;
  }
  .btn::before {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-image: url("../img/icon_x.png");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .btn::after {
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    background-image: url("../img/arrow.svg");
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
  }
  .hamburger {
    position: fixed;
    right: 15px;
    width: 55px;
    height: 55px;
  }
  .menu {
    font-size: 4.8vw;
    padding: 5em 20px;
  }
  .menu-item {
    padding: 1em 0;
  }
  .menu-item p {
    font-size: 4.8vw;
    font-weight: 800;
  }
  .menu .btn {
    width: 100%;
  }
  .mv {
    font-size: 4.8vw;
  }
  .place {
    width: 100%;
  }
  .place-name {
    text-align: left;
    font-size: 5.8vw;
    line-height: 1.2;
  }
  .place-name span {
    font-size: 4.2vw;
  }
  .mv-img {
    margin: 35px auto 0;
  }
  .copy {
    margin-top: 20px;
    font-size: 4.8vw;
    line-height: 1.6;
  }
  .artist-brock {
    font-size: 3.6vw;
    margin-top: 2em;
  }
  .artists-list .date {
    font-size: 3.6vw;
  }
  .artists-list .date span {
    font-size: 7vw;
  }
  .timetable-list {
    width: 100%;
    text-align: center;
    font-size: 3.6vw;
    margin-top: 2em;
  }
  .timetable thead th {
    font-size: 3.6vw;
  }
  .timetable thead th span {
    font-size: 7vw;
  }
  .timetable .time {
    font-size: 4.8vw;
  }
  .timetable .name {
    font-size: 3.6vw;
  }
  .timetable-attention {
    font-size: 3.2vw;
    line-height: 1.4;
  }
  .official-ambassador {
    font-size: 4.8vw;
  }
  .official-ambassador .title-black {
    font-size: 4.8vw;
    margin-top: 1.5em;
  }
  .food-copy {
    font-size: 4.8vw;
  }
  .flex-box-food {
    font-size: 3.6vw;
  }
  .flex-box-food .food-text .store {
    font-size: 3.6vw;
    line-height: 1.2em;
  }
  .flex-box-food .food-text .small_text {
    font-size: 3vw;
    line-height: 1.2em;
  }
  .info .img-frame {
    width: 100%;
    height: auto;
    display: block;
  }
  .info iframe {
    display: block;
  }
  .access .title-gold {
    font-size: 4.8vw;
  }
  .access .smalltext {
    font-size: 3.6vw;
    line-height: 1.4;
  }
  #date-time ul {
    font-size: 4.8vw;
  }
  #date-time li {
    padding: 0.5em;
  }
  .section-2 {
    font-size: 4.8vw;
    padding-bottom: 4em;
  }
  .attention {
    padding-bottom: 130px;
  }
  .attention ul {
    font-size: 3.6vw;
    line-height: 1.4;
  }
  .attention .slash-text p {
    font-size: 4.8vw;
  }
  .attention .copyright {
    text-align: center;
    font-size: 3.2vw;
  }
  .section-last {
    font-size: 3.6vw;
  }
}
@media screen and (max-width: 312px) {
  .flex-box-artists {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
  .flex-box-artists .flex-img {
    width: 100%;
  }
  .flex-box-artists .flex-img img {
    width: 100%;
  }
  .title,
  .title-2lines {
    width: 90%;
    max-width: 250px;
  }
  .title img {
    max-height: 40px;
  }
  .title-2lines img {
    max-height: 100px;
  }
  .hamburger {
    position: fixed;
    right: 3%;
    width: 1.7em;
    height: 1.7em;
  }
  .hamburger-inner {
    width: 1em;
    height: 10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  /* 線一本一本 */
  .hamburger-inner div {
    width: 100%;
    height: 1px;
    background: #ffffff;
    border-radius: 2px;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    -webkit-transform-origin: center;
            transform-origin: center;
  }
  /* “×” に切り替え */
  .hamburger.open .hamburger-inner div:nth-child(1) {
    -webkit-transform: translateY(4px) rotate(-45deg);
            transform: translateY(4px) rotate(-45deg);
  }
  .hamburger.open .hamburger-inner div:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open .hamburger-inner div:nth-child(3) {
    -webkit-transform: translateY(-5px) rotate(45deg);
            transform: translateY(-5px) rotate(45deg);
  }
  .btn {
    position: relative;
    display: inline-block;
    width: 100%;
    font-size: 4.8vw;
    padding: 15px 10px 40px 45px;
    text-align: left;
  }
  .btn::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    position: absolute;
    top: 27px;
    left: 15px;
    background-image: url("../img/icon_x.png");
    background-size: contain;
    background-repeat: no-repeat;
  }
  .btn::after {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    margin-top: 10px;
    position: absolute;
    bottom: 30px;
    right: 10px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    background-image: url("../img/arrow.svg");
    background-size: contain;
    background-repeat: no-repeat;
  }
}/*# sourceMappingURL=style.css.map */</pre></body></html>