@charset "UTF-8";
/* style.scss */ /* reset Document */
/* --------------------------------------------------
    Reset.css
-------------------------------------------------- */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@200;400;500;600;800&display=swap");
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, div {
  display: block;
}

nav 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;
  text-decoration: none;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* mixin.scss */
/* --------------------------------------------------
    breakpoint / レスポンシブ
-------------------------------------------------- */
/* --------------------------------------------------
    breakpoint / レスポンシブ
-------------------------------------------------- */
/* --------------------------------------------------
   [共通] color (色)
-------------------------------------------------- */
/* --------------------------------------------------
  flexbox
-------------------------------------------------- */
/* --------------------------------------------------
  reverse 入れ替える
-------------------------------------------------- */
/* --------------------------------------------------
  box-sizing
-------------------------------------------------- */
/* --------------------------------------------------
   br
-------------------------------------------------- */
/* --------------------------------------------------
  img
-------------------------------------------------- */
/* --------------------------------------------------
   飾り
-------------------------------------------------- */
.dot-line {
  color: #f9f9f9;
  margin: 0 auto;
  text-align: center;
  font-size: 1.6rem;
  line-height: 170%;
}
@media screen and (min-width: 768px) {
  .dot-line {
    line-height: 270%;
  }
}

/* --------------------------------------------------
   col (カラム)
-------------------------------------------------- */
/* sp縦並び / pc横並び */
/* sp縦並び / pc横並び */
/* --------------------------------------------------
   btn (ボタン)
-------------------------------------------------- */
/* --------------------------------------------------
   hover
-------------------------------------------------- */
/* --------------------------------------------------
    relative / absolute / fixed / static
-------------------------------------------------- */
/* --------------------------------------------------
    transform-center
-------------------------------------------------- */
/* --------------------------------------------------
  三角 - 下
-------------------------------------------------- */
/* --------------------------------------------------
  三角 - 上
-------------------------------------------------- */
/* common.scss */
/* --------------------------------------------------
    body
-------------------------------------------------- */
a {
  text-decoration: none;
  text-decoration-color: none;
  color: inherit;
}

body {
  position: relative;
  background: #00034a;
  overflow-y: scroll;
  margin: 0px;
  text-align: center;
  border: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
}

main {
  position: relative;
  overflow: hidden;
}

.inner {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  position: relative;
  z-index: 999;
  max-width: 1560px;
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 768px) {
  .inner {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .inner {
    padding-left: 80px;
    padding-right: 80px;
  }
}

/* --------------------------------------------------
    三角 - 左下がり
-------------------------------------------------- */
.left-btm-blk {
  position: relative;
  border-bottom: 1px solid #00034a;
}
.left-btm-blk::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .left-btm-blk::after {
    height: 200px;
  }
}
.left-btm-blk::after {
  background: #00034a;
}

.left-btm-orn {
  position: relative;
  border-bottom: 1px solid #00034a;
}
.left-btm-orn::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .left-btm-orn::after {
    height: 200px;
  }
}
.left-btm-orn::after {
  background: #00034a;
}

.left-btm-yel {
  position: relative;
  border-bottom: 1px solid #00034a;
}
.left-btm-yel::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  clip-path: polygon(0 0, 0 100%, 100% 0);
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .left-btm-yel::after {
    height: 200px;
  }
}
.left-btm-yel::after {
  background: #00034a;
}

/* --------------------------------------------------
    三角 - 右下がり
-------------------------------------------------- */
.right-btm-blk {
  position: relative;
  border-bottom: 1px solid #00034a;
}
.right-btm-blk::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 99;
  transform: scale(-1, 1);
}
@media screen and (min-width: 768px) {
  .right-btm-blk::after {
    height: 200px;
  }
}
.right-btm-blk::after {
  background: #00034a;
}

.right-btm-orn {
  position: relative;
  border-bottom: 1px solid #f5f5f5;
}
.right-btm-orn::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 99;
  transform: scale(-1, 1);
}
@media screen and (min-width: 768px) {
  .right-btm-orn::after {
    height: 200px;
  }
}
.right-btm-orn::after {
  background: #00034a;
}

.right-btm-yel {
  position: relative;
  border-bottom: 1px solid #f5f5f5;
}
.right-btm-yel::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 99;
  transform: scale(-1, 1);
}
@media screen and (min-width: 768px) {
  .right-btm-yel::after {
    height: 200px;
  }
}
.right-btm-yel::after {
  background: #f5f5f5;
}

/* --------------------------------------------------
    三角 - 左上がり
-------------------------------------------------- */
.left-top-blk {
  position: relative;
  border-top: 1px solid #00034a;
}
.left-top-blk::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .left-top-blk::before {
    height: 200px;
  }
}
.left-top-blk::before {
  background: #00034a;
}

.left-top-orn {
  position: relative;
  border-top: 1px solid #00034a;
}
.left-top-orn::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .left-top-orn::before {
    height: 200px;
  }
}
.left-top-orn::before {
  background: #00034a;
}

.left-top-yel {
  position: relative;
  border-top: 1px solid #f5f5f5;
}
.left-top-yel::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
  z-index: 99;
}
@media screen and (min-width: 768px) {
  .left-top-yel::before {
    height: 200px;
  }
}
.left-top-yel::before {
  background: #f5f5f5;
}

/* --------------------------------------------------
    三角 - 右上がり
-------------------------------------------------- */
.right-top-blk {
  position: relative;
  border-top: 1px solid #00034a;
}
.right-top-blk::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
  z-index: 99;
  transform: scale(-1, 1);
}
@media screen and (min-width: 768px) {
  .right-top-blk::before {
    height: 200px;
  }
}
.right-top-blk::before {
  background: #00034a;
}

.right-top-orn {
  position: relative;
  border-top: 1px solid #00034a;
}
.right-top-orn::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
  z-index: 99;
  transform: scale(-1, 1);
}
@media screen and (min-width: 768px) {
  .right-top-orn::before {
    height: 200px;
  }
}
.right-top-orn::before {
  background: #00034a;
}

.right-top-yel {
  position: relative;
  border-top: 1px solid #f5f5f5;
}
.right-top-yel::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  clip-path: polygon(100% 100%, 0 100%, 100% 0);
  z-index: 99;
  transform: scale(-1, 1);
}
@media screen and (min-width: 768px) {
  .right-top-yel::before {
    height: 200px;
  }
}
.right-top-yel::before {
  background: #f5f5f5;
}

.delta-top-left {
  position: relative;
  padding-bottom: 200px;
}
.delta-top-left::after {
  position: absolute;
  bottom: 89%;
  left: 0;
  height: 200px;
  content: "";
  width: 100%;
  transform-origin: top left;
  transform: skewY(8deg);
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .delta-top-left {
    padding-bottom: 220px;
  }
  .delta-top-left::after {
    position: absolute;
    bottom: 94%;
    left: 0;
    height: 220px;
  }
}
@media screen and (min-width: 1200px) {
  .delta-top-left {
    padding-bottom: 280px;
  }
  .delta-top-left::after {
    position: absolute;
    bottom: 92%;
    left: 0;
    height: 300px;
  }
}
@media screen and (min-width: 1500px) {
  .delta-top-left {
    padding-bottom: 330px;
  }
  .delta-top-left::after {
    position: absolute;
    bottom: 95%;
    left: 0;
    height: 350px;
  }
}

.delta-top-right {
  position: relative;
  padding-bottom: 200px;
}
.delta-top-right::after {
  position: absolute;
  right: 0;
  bottom: 89%;
  height: 200px;
  content: "";
  width: 100%;
  transform-origin: top right;
  transform: skewY(-8deg);
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .delta-top-right {
    padding-bottom: 220px;
  }
  .delta-top-right::after {
    position: absolute;
    right: 0;
    bottom: 94%;
    height: 220px;
  }
}
@media screen and (min-width: 1200px) {
  .delta-top-right {
    padding-bottom: 320px;
  }
  .delta-top-right::after {
    position: absolute;
    right: 0;
    bottom: 93%;
    height: 300px;
  }
}
@media screen and (min-width: 1500px) {
  .delta-top-right {
    padding-bottom: 380px;
  }
  .delta-top-right::after {
    position: absolute;
    right: 0;
    bottom: 95%;
    height: 350px;
  }
}

.delta-btm-left {
  position: relative;
  padding-bottom: 50px;
}
.delta-btm-left::before {
  position: absolute;
  top: 71%;
  left: 0;
  height: 200px;
  content: "";
  width: 100%;
  transform-origin: bottom left;
  transform: skewY(8deg);
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .delta-btm-left {
    padding-bottom: 130px;
  }
  .delta-btm-left::before {
    position: absolute;
    top: 74%;
    left: 0;
    height: 220px;
  }
}
@media screen and (min-width: 1200px) {
  .delta-btm-left {
    padding-bottom: 80px;
  }
  .delta-btm-left::before {
    position: absolute;
    top: 63%;
    left: 0;
    height: 300px;
  }
}
@media screen and (min-width: 1500px) {
  .delta-btm-left {
    padding-bottom: 140px;
  }
  .delta-btm-left::before {
    position: absolute;
    top: 53%;
    left: 0;
    height: 350px;
  }
}

.delta-btm-right {
  position: relative;
  padding-bottom: 20px;
}
.delta-btm-right::before {
  position: absolute;
  top: 70%;
  right: 0;
  height: 200px;
  content: "";
  width: 100%;
  transform-origin: bottom right;
  transform: skewY(-8deg);
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .delta-btm-right {
    padding-bottom: 50px;
  }
  .delta-btm-right::before {
    position: absolute;
    top: 54%;
    right: 0;
    height: 220px;
  }
}
@media screen and (min-width: 1200px) {
  .delta-btm-right {
    padding-bottom: 100px;
  }
  .delta-btm-right::before {
    position: absolute;
    top: 53%;
    right: 0;
    height: 300px;
  }
}
@media screen and (min-width: 1500px) {
  .delta-btm-right {
    padding-bottom: 130px;
  }
  .delta-btm-right::before {
    position: absolute;
    top: 35%;
    right: 0;
    height: 350px;
  }
}

/* --------------------------------------------------
    scrolldown
-------------------------------------------------- */
.scrolldown {
  position: absolute;
  bottom: 60px;
  left: 50%;
}
.scrolldown span {
  position: absolute;
  top: -25px;
  left: -28px;
  color: #f9f9f9;
  font-size: 95%;
}
.scrolldown::after {
  position: absolute;
  top: 0;
  background: #f5f5f5;
  content: "";
  width: 2px;
  height: 30px;
  animation: pathmove 1.4s ease-in-out infinite;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}
/* --------------------------------------------------
   ボタンbtn-hamon / 波紋
-------------------------------------------------- */
.btn-hamon {
  background: #e50012;
  display: inline-block;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .btn-hamon {
    width: 190px;
    height: 190px;
  }
}
.btn-hamon .ticket-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
}
.btn-hamon .ticket-btn h5.btn-text {
  color: #f5f5f5;
  font-size: 4rem !important;
  text-align: center;
  line-height: 150%;
}
.btn-hamon .ticket-btn p {
  color: #f5f5f5;
  font-size: 1.7rem !important;
  text-align: center;
}
.btn-hamon:hover {
  background: #409ecc;
}

.btn-hamon.ripple {
  position: relative;
}
.btn-hamon.ripple::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
  z-index: -1;
  background: inherit;
  -webkit-animation: ripple 4s cubic-bezier(0.3, 0, 0.1, 1) infinite;
  animation: ripple 4s cubic-bezier(0.3, 0, 0.1, 1) infinite;
}

@-webkit-keyframes ripple {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.6, 1.6);
    transform: scale(1.6, 1.6);
    opacity: 0;
  }
}
@keyframes ripple {
  0% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1.6, 1.6);
    transform: scale(1.6, 1.6);
    opacity: 0;
  }
}
/* --------------------------------------------------
    動くアンダーライン
-------------------------------------------------- */
.global-nav-text {
  position: relative;
  display: inline-block;
  line-height: 160%;
  cursor: pointer;
}
.global-nav-text::after {
  background: #ff8c00;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  transition: all 0.3s ease 0s;
}
.global-nav-text:hover::after {
  width: 100%;
}

/* --------------------------------------------------
    背景img fixed
-------------------------------------------------- */
#img01 {
  background-image: url("../images/common/pc-top01.jpg");
}

#img02 {
  background-image: url("../images/common/pc-top02.jpg");
}

#img03 {
  background-image: url("../images/common/pc-top03.jpg");
}

#img04 {
  background-image: url("../images/common/pc-top04.jpg");
}

#img01, #img02, #img03, #img04 {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  vertical-align: top;
  z-index: 1;
  height: 600px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #img01, #img02, #img03, #img04 {
    height: 850px;
    background-attachment: fixed;
  }
}
@media screen and (min-width: 1200px) {
  #img01, #img02, #img03, #img04 {
    height: 950px;
    background-attachment: fixed;
  }
}
@media screen and (min-width: 1500px) {
  #img01, #img02, #img03, #img04 {
    height: 1050px;
    background-attachment: fixed;
  }
}

/* Scss Document */
/* --------------------------------------------------
    font-family：游ゴシック
-------------------------------------------------- */
@font-face {
  font-family: "MyYuGothicM";
  font-weight: normal;
  src: local("YuGothic-Medium"), local("Yu Gothic Medium"), local("YuGothic-Regular"); /* 游ゴシックMediumが存在しないWindows8.1用 */
}
@font-face {
  font-family: "MyYuGothicM";
  font-weight: bold;
  src: local("YuGothic-Bold"), local("Yu Gothic"); /* PostScript Nameを認識できないChrome用にFull Nameを指定 */
}
body {
  font-family: MyYuGothicM, YuGothic, sans-serif;
}

/* --------------------------------------------------
    google font
-------------------------------------------------- */
/* --------------------------------------------------
    font-
-------------------------------------------------- */
h1 {
  font-family: "Barlow Condensed", sans-serif, sans-serif;
  font-weight: 800;
}

h2 {
  font-family: "Barlow Condensed", sans-serif, sans-serif;
  font-weight: 600;
}

h3 {
  font-family: "Barlow Condensed", sans-serif, sans-serif;
  font-weight: 600;
}

h4 {
  font-family: "Barlow Condensed", sans-serif, sans-serif;
  font-weight: 600;
}

h5 {
  font-family: "Barlow Condensed", sans-serif, sans-serif;
  font-weight: 600;
}

h6 {
  font-weight: 500;
}

/* --------------------------------------------------
    基本
-------------------------------------------------- */
html {
  font-size: 62.5%;
} /*16p*0.625 = 10px(=1rem)*/
body {
  font-size: 1.6rem;
  text-align: left;
  line-height: 180%;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.5rem;
    line-height: 180%;
  }
}

/* --------------------------------------------------
    サイズ font-size
-------------------------------------------------- */
h1.top-title {
  font-size: 7.6rem;
}
@media screen and (min-width: 768px) {
  h1.top-title {
    font-size: 11rem;
  }
}
@media screen and (min-width: 1200px) {
  h1.top-title {
    font-size: 12.5rem;
  }
}

h1 {
  font-size: 6.5rem;
}
@media screen and (min-width: 768px) {
  h1 {
    font-size: 10.5rem;
  }
}
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 11.5rem;
  }
}

h2 {
  font-size: 4.3rem;
}
@media screen and (min-width: 768px) {
  h2 {
    font-size: 6.2rem;
  }
}
@media screen and (min-width: 1200px) {
  h2 {
    font-size: 7.3rem;
  }
}

h3 {
  font-size: 5.5rem;
}
@media screen and (min-width: 768px) {
  h3 {
    font-size: 8rem;
  }
}
@media screen and (min-width: 1200px) {
  h3 {
    font-size: 9rem;
  }
}

h4 {
  font-size: 2.8rem;
}
@media screen and (min-width: 768px) {
  h4 {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 1200px) {
  h4 {
    font-size: 4.6rem;
  }
}

h5 {
  font-size: 2.8rem;
}
@media screen and (min-width: 768px) {
  h5 {
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 1200px) {
  h5 {
    font-size: 4.6rem;
  }
}

h6 {
  font-size: 1.9rem;
}
@media screen and (min-width: 768px) {
  h6 {
    font-size: 2.3rem;
  }
}

p {
  font-size: 1.7rem;
}
@media screen and (min-width: 768px) {
  p {
    font-size: 1.9rem;
  }
}

/* --------------------------------------------------
    文字色
-------------------------------------------------- */
body {
  color: #00034a;
}

h1, h2, h3, h4 {
  color: #00034a;
}

h5 {
  color: #00034a;
}

h6, p {
  color: #00034a;
}

/* --------------------------------------------------
    行間 line-height
-------------------------------------------------- */
h1, h2, h3, h4, h5 {
  line-height: 100%;
}

h6 {
  line-height: 180%;
}

p {
  line-height: 200%;
}

/* --------------------------------------------------
    字間 letter-spacing
-------------------------------------------------- */
p {
  letter-spacing: 0.03em;
}

/* --------------------------------------------------
    揃え text-align
-------------------------------------------------- */
h1.top-title, h3 {
  text-align: left;
}

h1, h2, h4, h5 {
  text-align: center;
}

h6, p {
  text-align: left;
}

/* header.scss */
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 60px;
}
header .logo {
  position: absolute;
  top: 0;
  left: 5px;
  display: block;
  width: 130px;
}
@media screen and (min-width: 768px) {
  header .logo {
    position: absolute;
    top: 10px;
    left: 20px;
    width: 180px;
  }
}
header .logo .logo-w-red {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  vertical-align: top;
  display: inline-block;
  height: 55px;
}
@media screen and (min-width: 768px) {
  header .logo .logo-w-red {
    height: 55px;
  }
}
header .logo .logo-w-red:hover {
  opacity: 0.5;
}
header .el_humburger {
  position: absolute;
  top: 15px;
  right: 13px;
  z-index: 10000;
  width: 35px;
  height: auto;
  padding-top: 1px;
  box-sizing: border-box;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  header .el_humburger {
    position: absolute;
    top: 20px;
    right: 20px;
  }
}
header .el_humburger span {
  background: #dcdcdc;
  display: block;
  width: 100%;
  margin: 0 auto 9px;
  height: 2px;
  transition: all 0.2s ease-in-out;
  border-radius: 1px;
}
header .el_humburger span:last-child {
  margin-bottom: 0;
}

.js_humburgerOpen .el_humburger span {
  color: #5f5f5f;
}
.js_humburgerOpen .el_humburger .top {
  transform: translateY(11px) rotate(-45deg);
}
.js_humburgerOpen .el_humburger .middle {
  opacity: 0;
}
.js_humburgerOpen .el_humburger .bottom {
  transform: translateY(-10px) rotate(45deg);
}

/*.el_humburgerButton.el_humburgerButton__close {
	top: 2%;
	right: 2%;
	span {
		@include bg-wht;
		display: block;
		width: 35px;
		margin: 0 auto;
		height: 4px;
	}
	.el_humburgerLineTop {
		transform: translateY(5px) rotate(-45deg);
	}
	.el_humburgerLineBottom {
		transform: translateY(-6px) rotate(45deg);
	}
}*/
.uq_spNavi {
  display: none;
}

.uq_spNavi.js_appear {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  z-index: 9999;
}

.uq_spNavi_screen {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 0;
  margin-top: 0px;
  padding-top: 0px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.navigation {
  padding: 20vh 0 0 0;
  text-align: center;
}
.navigation .navigation_item {
  margin-bottom: 7vh;
}
.navigation .navigation_item a {
  color: #f9f9f9;
  text-decoration: none;
  font-size: 2.8rem;
}
@media screen and (min-width: 768px) {
  .navigation .navigation_item a {
    font-size: 3.2rem;
  }
}
.navigation .navigation_item a:hover {
  color: #e50012;
}
.navigation .navigation_item .icon-btn:first-child {
  vertical-align: bottom;
  margin-right: 50px;
}
.navigation .navigation_item .icon-btn i.fa-instagram {
  font-size: 3.6rem;
}
@media screen and (min-width: 768px) {
  .navigation .navigation_item .icon-btn i.fa-instagram {
    font-size: 4.2rem;
  }
}
.navigation .navigation_item .icon-btn i.fa-shopping-cart {
  font-size: 2.8rem;
}
@media screen and (min-width: 768px) {
  .navigation .navigation_item .icon-btn i.fa-shopping-cart {
    font-size: 3.4rem;
  }
}

.js_fixed {
  position: fixed;
  width: 100%;
  height: 100%;
}

/* footer.scss */
footer {
  position: relative;
  background: #00034a;
  padding-bottom: 0 !important;
}
footer::after {
  background: #00034a;
}
footer .inner {
  position: relative;
  padding-top: 140px;
}
@media screen and (min-width: 768px) {
  footer .inner {
    padding-top: 100px;
  }
}
footer .inner .scrolldown {
  position: absolute;
  top: 70px;
  left: 50%;
}
@media screen and (min-width: 768px) {
  footer .inner .scrolldown {
    position: absolute;
    top: 30px;
    left: 50%;
  }
}
footer .inner .scrolldown span {
  position: absolute;
  top: -25px;
  left: -39px;
  color: #f5f5f5;
  width: 10rem;
}
footer .inner .scrolldown::after {
  background: #f5f5f5;
}
footer .inner .in-sns {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: space-between;
  max-width: 200px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  footer .inner .in-sns {
    max-width: 250px;
  }
}
footer .inner .in-sns a.sns-btn {
  vertical-align: middle;
  border-radius: 50%;
  width: 85px;
  height: 85px;
  display: inline-block;
  transition: all 0.2s ease 0s;
}
@media screen and (min-width: 768px) {
  footer .inner .in-sns a.sns-btn {
    width: 100px;
    height: 100px;
  }
}
footer .inner .in-sns a.sns-btn:hover {
  background: #f5f5f5;
}
footer .inner .in-sns a.sns-btn:hover i {
  color: #00034a;
}
footer .inner .in-sns a.sns-btn i {
  color: #f5f5f5;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  margin: 0 auto;
  display: block;
  text-align: center;
}
footer .inner .in-sns a.sns-btn .fa-facebook-f {
  font-size: 4.8rem;
  padding-top: 18px;
}
@media screen and (min-width: 768px) {
  footer .inner .in-sns a.sns-btn .fa-facebook-f {
    font-size: 5.4rem;
  }
}
footer .inner .in-sns a.sns-btn .fa-instagram {
  font-size: 4.5rem;
  padding-top: 20px;
}
@media screen and (min-width: 768px) {
  footer .inner .in-sns a.sns-btn .fa-instagram {
    font-size: 5.8rem;
    padding-top: 18px;
  }
}
footer .inner .in-sns a.sns-btn .fa-shopping-cart {
  font-size: 3.4rem;
  padding-top: 26px;
  padding-right: 5px;
}
@media screen and (min-width: 768px) {
  footer .inner .in-sns a.sns-btn .fa-shopping-cart {
    font-size: 4.4rem;
  }
}
footer .inner .logo {
  display: block;
  margin: 0 auto;
  text-align: center;
  padding: 80px 0 40px;
}
@media screen and (min-width: 768px) {
  footer .inner .logo {
    padding: 100px 0 60px;
  }
}
footer .inner .logo a .logo-img {
  width: 230px;
}
@media screen and (min-width: 768px) {
  footer .inner .logo a .logo-img {
    width: 340px;
  }
}
footer .inner .logo a:hover {
  opacity: 0.5;
}
footer .inner .copyright {
  color: #f5f5f5;
  display: block;
  text-align: center;
  margin: 0 auto;
  font-size: 1.4rem;
  padding-bottom: 20px;
}

/* loading.scss */
#loading-wrapper {
  background: #1f1f1f;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  z-index: 9999;
}
#loading-wrapper img {
  width: 260px;
}
@media screen and (min-width: 768px) {
  #loading-wrapper img {
    width: 500px;
  }
}
#loading-wrapper .loading {
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
  animation-name: loading;
  transform: scale(0.85, 0.85);
}

@-moz-keyframes "loading" {
  100% {
    transform: scale(1, 1);
  }
}
@-webkit-keyframes "loading" {
  100% {
    transform: scale(1, 1);
  }
}
@keyframes "loading" {
  100% {
    transform: scale(1, 1);
  }
}
.completed {
  opacity: 0;
  visibility: hidden;
  transform: scale(5, 5);
}

/* top.scss */
/* --------------------------------------------------
    TOP
-------------------------------------------------- */
#top-view {
  height: auto !important;
}
#top-view .box {
  position: relative;
  background: #1f1f1f;
  overflow: hidden;
}
#top-view .box .fitImg {
  position: absolute;
}
#top-view .box .box__centered {
  left: 50%;
  position: absolute;
  top: 50%;
}
#top-view .box .box__centered .box__contents {
  text-align: center;
  transform: translate(-50%, -50%);
}
#top-view .box .box__centered .box__contents .in-draw {
  width: 320px;
}
@media screen and (min-width: 768px) {
  #top-view .box .box__centered .box__contents .in-draw {
    width: 600px;
  }
}
@media screen and (min-width: 1200px) {
  #top-view .box .box__centered .box__contents .in-draw {
    width: 900px;
  }
}

/* --------------------------------------------------
    INFOMATION
-------------------------------------------------- */
#information .flyer {
  background: #dcdcdc;
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  #information .flyer {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
#information .flyer .inner .in-flyer {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: space-between;
}
#information .flyer .inner .in-flyer img {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}
#information .flyer .inner .in-flyer img:last-child {
  margin-bottom: 0px;
}
@media screen and (min-width: 768px) {
  #information .flyer .inner .in-flyer img {
    width: 48%;
    margin-bottom: 0px;
  }
}
#information .info {
  background: #00034a;
  padding-top: 40px;
}
@media screen and (min-width: 768px) {
  #information .info {
    padding-top: 60px;
  }
}
#information .info .inner {
  position: relative;
  z-index: 999;
}
#information .info .inner .flyer {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: space-between;
}
#information .info .inner .flyer img {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #information .info .inner .flyer img {
    width: 48%;
    margin-bottom: 0px;
  }
}
#information .info .inner .in-title {
  margin-bottom: 15px;
  text-align: left;
}
@media screen and (min-width: 768px) {
  #information .info .inner .in-title {
    margin-bottom: 35px;
  }
}
#information .info .inner .in-title h1.top-title {
  color: #f5f5f5;
}
#information .info .inner .in-title h1.top-title br {
  display: block;
}
@media screen and (min-width: 768px) {
  #information .info .inner .in-title h1.top-title br {
    display: none;
  }
}
#information .info .inner h3.day {
  color: #f5f5f5;
  letter-spacing: 0.07em;
  line-height: 1.1;
  margin-bottom: 15px;
}
#information .info .inner h3.day span {
  font-size: 55%;
  font-weight: 200;
  margin-left: 3px;
  letter-spacing: 0.05em;
}
#information .info .inner h3.day span:nth-of-type(1), #information .info .inner h3.day span:nth-of-type(3) {
  padding: 0 2px;
}
@media screen and (min-width: 768px) {
  #information .info .inner h3.day span:nth-of-type(1), #information .info .inner h3.day span:nth-of-type(3) {
    padding: 0 3px;
  }
}
#information .info .inner h6 {
  color: #409ecc;
  text-align: left;
  font-size: 1.7rem;
  line-height: 120%;
  font-weight: 400;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  #information .info .inner h6 {
    font-size: 2.3rem;
    margin-bottom: 40px;
  }
}
#information .info .inner h4.in-place {
  text-align: left;
}
#information .info .inner h4.in-place a.place {
  color: #f5f5f5;
  display: inline-block;
  text-align: left;
  font-size: 80%;
  margin-bottom: 10px;
  border-bottom: solid 1px #f5f5f5;
}
@media screen and (min-width: 768px) {
  #information .info .inner h4.in-place a.place {
    font-size: 75%;
    margin-bottom: 10px;
  }
}
#information .info .inner h4.in-place a.place:hover {
  color: #e50012;
}
#information .info .inner p {
  color: #409ecc;
}
#information .register,
#information .live,
#information .dj,
#information .deco,
#information .sound,
#information .shop,
#information .notice {
  padding-top: 120px;
  padding-bottom: 60px;
}
@media screen and (min-width: 768px) {
  #information .register,
#information .live,
#information .dj,
#information .deco,
#information .sound,
#information .shop,
#information .notice {
    padding-top: 180px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1200px) {
  #information .register,
#information .live,
#information .dj,
#information .deco,
#information .sound,
#information .shop,
#information .notice {
    padding-top: 220px;
    padding-bottom: 60px;
  }
}
#information .register .inner h1,
#information .live .inner h1,
#information .dj .inner h1,
#information .deco .inner h1,
#information .sound .inner h1,
#information .shop .inner h1,
#information .notice .inner h1 {
  display: inline-block;
  padding-bottom: 10px;
  margin-bottom: 25px;
}
@media screen and (min-width: 768px) {
  #information .register .inner h1,
#information .live .inner h1,
#information .dj .inner h1,
#information .deco .inner h1,
#information .sound .inner h1,
#information .shop .inner h1,
#information .notice .inner h1 {
    padding-bottom: 20px;
    margin-bottom: 50px;
  }
}
#information .register .inner h2 span,
#information .live .inner h2 span,
#information .dj .inner h2 span,
#information .deco .inner h2 span,
#information .sound .inner h2 span,
#information .shop .inner h2 span,
#information .notice .inner h2 span {
  position: relative;
  display: block;
}
#information .register .inner h2 span::before,
#information .live .inner h2 span::before,
#information .dj .inner h2 span::before,
#information .deco .inner h2 span::before,
#information .sound .inner h2 span::before,
#information .shop .inner h2 span::before,
#information .notice .inner h2 span::before {
  display: none;
}
@media screen and (min-width: 768px) {
  #information .register .inner h2 span,
#information .live .inner h2 span,
#information .dj .inner h2 span,
#information .deco .inner h2 span,
#information .sound .inner h2 span,
#information .shop .inner h2 span,
#information .notice .inner h2 span {
    display: inline-block;
  }
  #information .register .inner h2 span::before,
#information .live .inner h2 span::before,
#information .dj .inner h2 span::before,
#information .deco .inner h2 span::before,
#information .sound .inner h2 span::before,
#information .shop .inner h2 span::before,
#information .notice .inner h2 span::before {
    position: absolute;
    right: -2.5rem;
    content: "/";
    display: inline-block;
    transition: all 0.3s ease 0s;
    font-weight: normal;
    font-size: 70%;
    font-weight: 100;
    line-height: 160%;
  }
}
#information .register .inner h2 span.span-jp,
#information .live .inner h2 span.span-jp,
#information .dj .inner h2 span.span-jp,
#information .deco .inner h2 span.span-jp,
#information .sound .inner h2 span.span-jp,
#information .shop .inner h2 span.span-jp,
#information .notice .inner h2 span.span-jp {
  font-size: 70%;
  font-weight: 600;
}
#information .register .inner h4 span.span-jp,
#information .live .inner h4 span.span-jp,
#information .dj .inner h4 span.span-jp,
#information .deco .inner h4 span.span-jp,
#information .sound .inner h4 span.span-jp,
#information .shop .inner h4 span.span-jp,
#information .notice .inner h4 span.span-jp {
  font-size: 80%;
  font-weight: 600;
}
#information .register .inner .flyer,
#information .live .inner .flyer,
#information .dj .inner .flyer,
#information .deco .inner .flyer,
#information .sound .inner .flyer,
#information .shop .inner .flyer,
#information .notice .inner .flyer {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: space-between;
}
#information .register .inner .flyer img,
#information .live .inner .flyer img,
#information .dj .inner .flyer img,
#information .deco .inner .flyer img,
#information .sound .inner .flyer img,
#information .shop .inner .flyer img,
#information .notice .inner .flyer img {
  display: inline-block;
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #information .register .inner .flyer img,
#information .live .inner .flyer img,
#information .dj .inner .flyer img,
#information .deco .inner .flyer img,
#information .sound .inner .flyer img,
#information .shop .inner .flyer img,
#information .notice .inner .flyer img {
    width: 48%;
    margin-bottom: 0px;
  }
}
#information .register {
  position: relative;
  padding-top: 120px;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px) {
  #information .register {
    padding-top: 240px;
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1200px) {
  #information .register {
    padding-top: 240px;
    padding-bottom: 140px;
  }
}
#information .register .in-text h3 {
  color: #00034a;
  line-height: 110%;
  text-align: right;
  margin-bottom: 50px;
}
#information .register .in-text h3 br {
  display: block;
}
@media screen and (min-width: 768px) {
  #information .register .in-text h3 br {
    display: none;
  }
}
#information .register .in-text h4 {
  color: #00034a;
  text-align: right;
  margin-bottom: 15px;
}
@media screen and (min-width: 768px) {
  #information .register .in-text h4 {
    margin-bottom: 20px;
  }
}
#information .register .in-text h4:last-child {
  margin-bottom: 0;
}
#information .register .in-text h4 span {
  font-weight: 400;
  margin-right: 25px;
}
#information .register .in-text h4 span:last-child {
  margin-right: 0;
  margin-left: 8px;
}
#information .register .ticket {
  position: relative;
}
#information .register .ticket .in-btn {
  position: absolute;
  top: 150px;
  left: 50%;
  text-align: center;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  #information .register .ticket .in-btn {
    position: absolute;
    top: 220px;
  }
}
@media screen and (min-width: 1200px) {
  #information .register .ticket .in-btn {
    position: absolute;
    top: 245px;
  }
}
#information .register .ticket .in-btn h5.btn-text {
  color: #f5f5f5;
}
#information .live {
  position: relative;
  padding-top: 180px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #information .live {
    padding-top: 200px;
  }
}
@media screen and (min-width: 1200px) {
  #information .live {
    padding-top: 240px;
  }
}
#information .register,
#information .dj,
#information .sound {
  background: #f5f5f5;
}
#information .register h1,
#information .register h2,
#information .register h4,
#information .dj h1,
#information .dj h2,
#information .dj h4,
#information .sound h1,
#information .sound h2,
#information .sound h4 {
  color: #00034a;
}
#information .register h1,
#information .dj h1,
#information .sound h1 {
  border-bottom: 2px solid #00034a;
}
#information .register::after,
#information .dj::after,
#information .sound::after {
  background: #f5f5f5;
}
#information .live,
#information .deco,
#information .shop {
  background: #00034a;
}
#information .live h1,
#information .live h2,
#information .live h4,
#information .deco h1,
#information .deco h2,
#information .deco h4,
#information .shop h1,
#information .shop h2,
#information .shop h4 {
  color: #f5f5f5;
}
#information .live h1,
#information .deco h1,
#information .shop h1 {
  border-bottom: 2px solid #f5f5f5;
}
#information .live .inner,
#information .deco .inner,
#information .shop .inner {
  text-align: left;
}
#information .live .inner h1,
#information .deco .inner h1,
#information .shop .inner h1 {
  text-align: left;
}
#information .live .inner h2,
#information .deco .inner h2,
#information .shop .inner h2 {
  text-align: left;
}
#information .live .inner h2 span,
#information .deco .inner h2 span,
#information .shop .inner h2 span {
  padding: 0 0 7px;
}
@media screen and (min-width: 768px) {
  #information .live .inner h2 span,
#information .deco .inner h2 span,
#information .shop .inner h2 span {
    padding: 0 32px 20px 0;
  }
  #information .live .inner h2 span::before,
#information .deco .inner h2 span::before,
#information .shop .inner h2 span::before {
    position: absolute;
    right: 0.1rem;
  }
}
@media screen and (min-width: 1200px) {
  #information .live .inner h2 span,
#information .deco .inner h2 span,
#information .shop .inner h2 span {
    padding: 0 32px 30px 0;
  }
}
#information .live .inner h2 span:last-child,
#information .deco .inner h2 span:last-child,
#information .shop .inner h2 span:last-child {
  padding-bottom: 0;
}
#information .live .inner h2 span:last-child::before,
#information .deco .inner h2 span:last-child::before,
#information .shop .inner h2 span:last-child::before {
  display: none;
}
#information .live .inner h4,
#information .deco .inner h4,
#information .shop .inner h4 {
  text-align: left;
}
#information .live .inner h4 span,
#information .deco .inner h4 span,
#information .shop .inner h4 span {
  position: relative;
  display: block;
  padding: 0 0 10px;
}
#information .live .inner h4 span::before,
#information .deco .inner h4 span::before,
#information .shop .inner h4 span::before {
  display: none;
}
@media screen and (min-width: 768px) {
  #information .live .inner h4 span,
#information .deco .inner h4 span,
#information .shop .inner h4 span {
    display: inline-block;
    padding: 0 20px 30px;
  }
  #information .live .inner h4 span::before,
#information .deco .inner h4 span::before,
#information .shop .inner h4 span::before {
    position: absolute;
    right: -1.5rem;
    content: "/";
    display: inline-block;
    transition: all 0.3s ease 0s;
    font-weight: normal;
    font-size: 70%;
    font-weight: 100;
    line-height: 140%;
  }
}
#information .live .inner h4 span:last-child,
#information .deco .inner h4 span:last-child,
#information .shop .inner h4 span:last-child {
  padding-bottom: 0;
}
#information .live .inner h4 span:last-child::before,
#information .deco .inner h4 span:last-child::before,
#information .shop .inner h4 span:last-child::before {
  display: none;
}
#information .register .inner,
#information .dj .inner,
#information .sound .inner,
#information .notice .inner {
  text-align: right;
}
#information .register .inner h1,
#information .dj .inner h1,
#information .sound .inner h1,
#information .notice .inner h1 {
  text-align: right;
}
#information .register .inner h2,
#information .dj .inner h2,
#information .sound .inner h2,
#information .notice .inner h2 {
  text-align: right;
}
#information .register .inner h2 span,
#information .dj .inner h2 span,
#information .sound .inner h2 span,
#information .notice .inner h2 span {
  padding: 0 0 7px;
}
@media screen and (min-width: 768px) {
  #information .register .inner h2 span,
#information .dj .inner h2 span,
#information .sound .inner h2 span,
#information .notice .inner h2 span {
    padding: 0 0 25px 32px;
  }
  #information .register .inner h2 span::before,
#information .dj .inner h2 span::before,
#information .sound .inner h2 span::before,
#information .notice .inner h2 span::before {
    position: absolute;
    right: auto;
    left: 0;
  }
}
#information .register .inner h2 span:first-child,
#information .dj .inner h2 span:first-child,
#information .sound .inner h2 span:first-child,
#information .notice .inner h2 span:first-child {
  padding-bottom: 0;
}
#information .register .inner h2 span:first-child::before,
#information .dj .inner h2 span:first-child::before,
#information .sound .inner h2 span:first-child::before,
#information .notice .inner h2 span:first-child::before {
  display: none;
}
#information .register .inner h1.ttl-notice,
#information .dj .inner h1.ttl-notice,
#information .sound .inner h1.ttl-notice,
#information .notice .inner h1.ttl-notice {
  color: #f9f9f9;
  border-bottom: 2px solid #f9f9f9;
}
#information .register .inner h6,
#information .dj .inner h6,
#information .sound .inner h6,
#information .notice .inner h6 {
  color: #f9f9f9;
  text-align: right;
}

/* --------------------------------------------------
    NOTICE
-------------------------------------------------- */
#notice {
  background: #00034a;
}
#notice .gondola-text {
  padding-top: 60px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  #notice .gondola-text {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) {
  #notice .gondola-text {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
#notice .gondola-text .inner h2.gondola-ttl {
  color: #f5f5f5;
  font-size: 5.2rem;
  padding-bottom: 15px;
  margin-bottom: 35px;
  border-bottom: 2px solid #f5f5f5;
}
@media screen and (min-width: 768px) {
  #notice .gondola-text .inner h2.gondola-ttl {
    font-size: 6.8rem;
    padding-bottom: 20px;
    margin-bottom: 45px;
  }
}
@media screen and (min-width: 1200px) {
  #notice .gondola-text .inner h2.gondola-ttl {
    font-size: 8rem;
  }
}
#notice .gondola-text .inner .gondola-box {
  display: flex;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  justify-content: space-between;
}
#notice .gondola-text .inner .gondola-box .in-draw {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #notice .gondola-text .inner .gondola-box .in-draw {
    width: 46%;
    margin-bottom: 0;
  }
}
#notice .gondola-text .inner .gondola-box .in-draw img {
  width: 100%;
}
#notice .gondola-text .inner .gondola-box .in-text {
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #notice .gondola-text .inner .gondola-box .in-text {
    width: 46%;
  }
}
#notice .gondola-text .inner .gondola-box .in-text p {
  color: #f9f9f9;
  text-align: left;
  margin-bottom: 0;
}
#notice .notice-text {
  background: #f5f5f5;
  padding-top: 120px;
  padding-bottom: 120px;
}
@media screen and (min-width: 768px) {
  #notice .notice-text {
    padding-top: 240px;
    padding-bottom: 240px;
  }
}
@media screen and (min-width: 1200px) {
  #notice .notice-text {
    padding-top: 240px;
    padding-bottom: 240px;
  }
}
#notice .notice-text .inner {
  position: relative;
  max-width: 930px;
  z-index: 999;
}
#notice .notice-text .inner h2.notice-ttl {
  color: #00034a;
  font-size: 5.2rem;
  padding-bottom: 15px;
  margin-bottom: 35px;
  border-bottom: 2px solid #00034a;
}
@media screen and (min-width: 768px) {
  #notice .notice-text .inner h2.notice-ttl {
    font-size: 6.8rem;
    padding-bottom: 20px;
    margin-bottom: 45px;
  }
}
@media screen and (min-width: 1200px) {
  #notice .notice-text .inner h2.notice-ttl {
    font-size: 8rem;
  }
}
#notice .notice-text .inner ul.in-list {
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
#notice .notice-text .inner ul.in-list li {
  font-size: 1.6rem;
  margin-left: 1.6rem;
  line-height: 180%;
  text-align: left;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  #notice .notice-text .inner ul.in-list li {
    font-size: 1.9rem;
    margin-left: 1.9rem;
  }
}
#notice .sauna-text {
  padding-top: 60px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  #notice .sauna-text {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media screen and (min-width: 1200px) {
  #notice .sauna-text {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
#notice .sauna-text .inner {
  position: relative;
  max-width: 930px;
}
#notice .sauna-text .inner h2.sauna-ttl {
  color: #f5f5f5;
  font-size: 5.2rem;
  padding-bottom: 15px;
  margin-bottom: 35px;
  border-bottom: 2px solid #f5f5f5;
}
@media screen and (min-width: 768px) {
  #notice .sauna-text .inner h2.sauna-ttl {
    font-size: 6.8rem;
    padding-bottom: 20px;
    margin-bottom: 45px;
  }
}
@media screen and (min-width: 1200px) {
  #notice .sauna-text .inner h2.sauna-ttl {
    font-size: 8rem;
  }
}
#notice .sauna-text .inner ul.sauna-list {
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
#notice .sauna-text .inner ul.sauna-list li {
  color: #f5f5f5;
  font-size: 1.6rem;
  margin-left: 1.6rem;
  line-height: 180%;
  text-align: left;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  #notice .sauna-text .inner ul.sauna-list li {
    font-size: 1.9rem;
    margin-left: 1.9rem;
  }
}

/* --------------------------------------------------
    ABOUT
-------------------------------------------------- */
#about {
  background: #00034a;
}
#about .about-text {
  border-top: 1px solid #00034a;
  border-bottom: 1px solid #00034a;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #about .about-text {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1200px) {
  #about .about-text {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
#about .about-text .inner {
  max-width: 1200px;
}
#about .about-text .inner .in-text {
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
#about .about-text .inner .in-text h2.about-ttl {
  color: #f5f5f5;
  font-size: 5.2rem;
  padding-bottom: 15px;
  margin-bottom: 35px;
  border-bottom: 2px solid #f9f9f9;
}
@media screen and (min-width: 768px) {
  #about .about-text .inner .in-text h2.about-ttl {
    font-size: 6.8rem;
    padding-bottom: 20px;
    margin-bottom: 45px;
  }
}
@media screen and (min-width: 1200px) {
  #about .about-text .inner .in-text h2.about-ttl {
    font-size: 8rem;
  }
}
#about .about-text .inner .in-text h6 {
  color: #f5f5f5;
  text-align: left;
  margin-bottom: 0;
}
#about .about-text .inner .in-text h6 br {
  display: none;
}
@media screen and (min-width: 768px) {
  #about .about-text .inner .in-text h6 br {
    display: block;
  }
}
#about .about-logo {
  background: #f5f5f5;
  padding-top: 100px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #about .about-logo {
    padding-top: 130px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1200px) {
  #about .about-logo {
    padding-top: 160px;
    padding-bottom: 80px;
  }
}
#about .about-logo .inner {
  position: relative;
  z-index: 999;
}
#about .about-logo .inner .in-img {
  margin: 60px auto 0;
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #about .about-logo .inner .in-img {
    margin: 100px auto 0;
  }
}
#about .about-logo .inner .in-img .in-logo {
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  #about .about-logo .inner .in-img .in-logo {
    margin-bottom: 40px;
  }
}
#about .about-logo .inner .in-img .in-logo:last-child {
  margin-bottom: 0;
}
#about .about-logo .inner .in-img .in-logo .logo-ds {
  height: 50px;
}
@media screen and (min-width: 768px) {
  #about .about-logo .inner .in-img .in-logo .logo-ds {
    height: 95px;
  }
}
#about .about-logo .inner .in-img .in-logo .logo-pl {
  height: 66px;
}
@media screen and (min-width: 768px) {
  #about .about-logo .inner .in-img .in-logo .logo-pl {
    height: 110px;
  }
}
#about .about-logo .inner .in-img .in-logo .logo-om {
  height: 40px;
}
@media screen and (min-width: 768px) {
  #about .about-logo .inner .in-img .in-logo .logo-om {
    height: 80px;
  }
}

/* --------------------------------------------------
    WEBSHOP
-------------------------------------------------- */
#webshop {
  background: #f5f5f5;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #webshop {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1200px) {
  #webshop {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
#webshop .inner .logo {
  display: block;
  margin: 0 auto 40px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #webshop .inner .logo {
    margin: 0 auto 60px;
  }
}
#webshop .inner .logo img {
  display: inline-block;
  width: 200px;
  height: 200px;
}
@media screen and (min-width: 768px) {
  #webshop .inner .logo img {
    width: 260px;
    height: 260px;
  }
}
#webshop .inner .in-text {
  text-align: center;
  margin: 0 auto;
  max-width: 800px;
}
#webshop .inner .in-text h6 {
  color: #00034a;
  margin-bottom: 30px;
  text-align: left;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  #webshop .inner .in-text h6 {
    margin-bottom: 40px;
    text-align: center;
  }
}
#webshop .inner .in-text .onlineshop {
  text-align: center;
  margin: 25px auto 0;
}
@media screen and (min-width: 768px) {
  #webshop .inner .in-text .onlineshop {
    margin: 40px auto 0;
    font-size: 3.4rem;
  }
}
#webshop .inner .in-text .onlineshop a {
  font-family: "Barlow Condensed", sans-serif, sans-serif;
  font-weight: 600;
  background: #00034a;
  color: #f5f5f5;
  display: inline-block;
  padding: 20px 35px;
  font-size: 2.8rem;
}
@media screen and (min-width: 768px) {
  #webshop .inner .in-text .onlineshop a {
    padding: 30px 40px;
    font-size: 3.4rem;
  }
}
#webshop .inner .in-text .onlineshop a:hover {
  background: #e50012;
  color: #f5f5f5;
}

/* --------------------------------------------------
    CONTACT
-------------------------------------------------- */
#contact {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 768px) {
  #contact {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1200px) {
  #contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
#contact .inner .contact-in {
  display: block;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  #contact .inner .contact-in {
    display: flex;
    padding-bottom: 50px;
  }
}
#contact .inner .contact-in .contact-item {
  width: 100%;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  #contact .inner .contact-in .contact-item {
    margin-bottom: 0;
  }
  #contact .inner .contact-in .contact-item:nth-of-type(2n+1) {
    margin-right: 1%;
  }
}
#contact .inner .contact-in .contact-item a {
  color: #1f1f1f;
  font-size: 1.7rem;
  font-weight: 500;
  padding-top: 10px;
  padding-bottom: 10px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #contact .inner .contact-in .contact-item a {
    font-size: 2rem;
  }
}
#contact .inner .contact-in .contact-item a:hover {
  color: #e50012;
}
#contact .inner .contact-text {
  margin: 0 auto;
  display: inline-block;
}
#contact .inner .contact-text p {
  color: #1f1f1f;
  font-size: 11pt;
  text-align: left;
  max-width: 500px;
}
@media screen and (min-width: 768px) {
  #contact .inner .contact-text p {
    font-size: 13pt;
    max-width: none;
    text-align: center;
    margin: 0 auto;
  }
}
#contact .inner .contact-text p br {
  display: none;
}
@media screen and (min-width: 768px) {
  #contact .inner .contact-text p br {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */