/**
* Available vars:
* @var --viewport-from: <number> - Number in pixels without the unit. Required if `--font-size` is not exist.
* @var --viewport-to: <number> - Number in pixels without the unit. Required if `--font-size` is not exist.
* @var --font-size-from: <number> - Number in pixels without the unit. Required if `--font-size` and `--min-font-size` is not exist.
* @var --font-size-to: <number> - Number in pixels without the unit. Required if `--font-size` and `--max-font-size` is not exist.
* @var --max-font-size: <number> - Number in pixels without the unit. Optional.
* @var --min-font-size: <number> - Number in pixels without the unit. Optional.
* @var --viewport-unit-converter: 1vw | 1vh | 1vmin | 1vmax - Optional. Default: 1vw.
* @var --font-size: <length> | <percentage> | <absolute-size> | <relative-size> | Global values - Optional.
*/
*,
*::before,
*::after {
  --viewport-unit-converter: 1vw;
  --fz-from: var(--font-size-from, var(--min-font-size));
  --fz-to: var(--font-size-to, var(--max-font-size));
  --fz-slope: (var(--fz-to) - var(--fz-from)) / (var(--viewport-to) - var(--viewport-from)) * 100;
  --fz-intercept: (var(--viewport-to) * var(--fz-from) - var(--viewport-from) * var(--fz-to)) / (var(--viewport-to) - var(--viewport-from));
  --font-size: calc(var(--fz-slope) * var(--viewport-unit-converter) + var(--fz-intercept) * 1px);
  --min-fz-px: calc(var(--min-font-size) * 1px);
  --max-fz-px: calc(var(--max-font-size) * 1px);
  --clamp: clamp(var(--min-fz-px), var(--font-size), var(--max-fz-px));
  --max: var(--has-max, var(--min));
  --min: var(--has-min, var(--font-size));
  --has-max: min(var(--max-fz-px), var(--font-size));
  --has-min: max(var(--min-fz-px), var(--font-size));
  font-size: var(--clamp, var(--max));
}

/* -----------------------------------------------------------
  basic
----------------------------------------------------------- */
/* -----------------------------------------------------------
  sec-opn
----------------------------------------------------------- */
.sec-opn_bg {
  padding: 60px 0;
  background: url(../img/common/opn_bg.jpg) no-repeat center;
  background-size: cover;
}

.opn-ttl img {
  max-height: 55px;
}

@media (min-width: 769px) {
  .sec-opn_bg {
    padding: 180px 0;
  }
  .txt-width {
    width: 65%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .opn-ttl img {
    max-height: 25px;
  }
}
/* -----------------------------------------------------------
  sec01
----------------------------------------------------------- */
.sec01_bg {
  padding: 60px 20px;
  background: url(../img/top/sec04_bg.svg) no-repeat center;
  background-size: cover;
}

.sec-ttl {
  text-align: center;
}

.sec-subttl {
  font-size: 1.6rem;
  font-weight: 600;
}

.sec-cap {
  font-weight: 600;
  line-height: 2.1;
}

.sec-cap-ni {
  font-weight: 600;
  line-height: 2.1;
}

.sec-cap02 {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 2.1;
  text-indent: 1rem;
}

.ticket-img {
  width: 100%;
  min-height: 240px;
  background: #ddd;
}

.ticket-img img {
  width: 100%;
  height: auto;
}

.txt-bg {
  width: 100%;
  background: #c9a12b;
}

.bg-img {
  width: 100%;
  background: url(../img/share/header_bg.svg) no-repeat center;
  padding: 1rem 1.5rem;
}

.bb-line {
  border-bottom: 1px solid #252525;
}

.p-relative {
  position: relative;
}

.sec-item_01 {
  position: absolute;
  right: -15%;
  bottom: 5%;
  width: 12%;
  max-width: 140px;
  display: block;
  height: 0;
  padding-top: 18.41%;
  background: url(../img/fun/sec-item_01.png) 0 0 no-repeat;
  background-size: contain;
}

.sec-item_02 {
  position: absolute;
  left: -20%;
  bottom: 5%;
  width: 15%;
  max-width: 161px;
  display: block;
  height: 0;
  padding-top: 20.41%;
  background: url(../img/fun/sec-item_02.png) 0 0 no-repeat;
  background-size: contain;
}

@media (min-width: 769px) {
  .sec01_bg {
    padding: 80px 0;
  }
  .txt-width {
    width: 65%;
    margin: 0 auto;
  }
  .img-item {
    margin-top: -25px;
  }
  .sec-subttl {
    font-size: 2.1rem;
    line-height: 1.4;
  }
  .ticket-img {
    width: 80%;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 768px) {
  .p-xs-cstm {
    padding: 0.5rem;
  }
  .sec-ttl img {
    max-width: 180px;
  }
  .map-img_01 img {
    width: 100%;
    height: auto;
  }
  .img-item {
    max-height: 50px;
  }
  .ticket-img {
    min-height: 140px;
  }
  .sec-item_01 {
    right: 0;
    bottom: -4%;
    width: 13%;
    padding-top: 20.41%;
  }
  .sec-item_02 {
    left: -3%;
    bottom: -9%;
  }
}/*# sourceMappingURL=fun.css.map */