@charset "UTF-8";
:root {
  --font-en: "Oswald", serif;
  --white: #ffffff;
  --yellow: #ffe379;
  --blue: #3ad0c3;
  --border: rgba(255,255,255,0.3);
  --color-copy: rgba(255,255,255,0.5);
  --bg-footer: #000000;
  --menu-filter: rgba(0,0,0,0.8);
  --cont-border: #ffffff;
  --box-blur: calc(0.5* var(--blur));
  --shadow-blue: #3ca79e;
  --shadow-yellow: #d1b23d;
}

/************************
common
************************/
body {
  position: relative;
  color: var(--white);
  background: url(../img/common/bg.jpg);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width:768px) {
  body {
    background-size: 50px auto;
  }
}
.l-main {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

.l-logo {
  position: fixed;
  top: 8px;
  left: 8px;
  width: 160px;
  -webkit-transform: translateX(-105%);
          transform: translateX(-105%);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0, 0.55, 0.45, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0, 0.55, 0.45, 1);
  transition: transform 0.8s cubic-bezier(0, 0.55, 0.45, 1);
  transition: transform 0.8s cubic-bezier(0, 0.55, 0.45, 1), -webkit-transform 0.8s cubic-bezier(0, 0.55, 0.45, 1);
  z-index: 998;
}
@media only screen and (max-width:768px) {
  .l-logo {
    top: 0;
    left: 0;
    width: 26.6vw;
  }
}
.content-in .l-logo {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.l-logo img {
  -webkit-animation: flash_scr 10s linear infinite;
          animation: flash_scr 10s linear infinite;
}

.l-nav {
  z-index: 999;
}
@media only screen and (max-width:768px) {
  .l-nav__btn {
    position: fixed;
    top: 0;
    right: 0;
    width: 25.3vw;
    height: auto;
    z-index: 1000;
  }
  .l-nav__btn figure.-menu {
    opacity: 1;
  }
  .l-nav__btn figure.-close {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  .l-nav__btn.--open {
    -webkit-animation: flash 0.2s 1 alternate forwards 0.1s;
            animation: flash 0.2s 1 alternate forwards 0.1s;
  }
  .l-nav__btn.--open figure.-menu {
    opacity: 0;
  }
  .l-nav__btn.--open figure.-close {
    opacity: 1;
  }
}
@media only screen and (min-width:768px) {
  .l-nav {
    position: fixed;
    top: 50%;
    right: 0;
    width: 188px;
    height: 247px;
    background: url(../img/common/menu_frame_pc.png) no-repeat;
    background-size: contain;
    background-position: top center;
    -webkit-transform: translateX(105%) translateY(-50%);
            transform: translateX(105%) translateY(-50%);
  }
  .is-load .l-nav {
    -webkit-transform: translateX(0) translateY(-50%);
            transform: translateX(0) translateY(-50%);
    -webkit-transition: -webkit-transform 0.8s cubic-bezier(0, 0.55, 0.45, 1) 1.4s;
    transition: -webkit-transform 0.8s cubic-bezier(0, 0.55, 0.45, 1) 1.4s;
    transition: transform 0.8s cubic-bezier(0, 0.55, 0.45, 1) 1.4s;
    transition: transform 0.8s cubic-bezier(0, 0.55, 0.45, 1) 1.4s, -webkit-transform 0.8s cubic-bezier(0, 0.55, 0.45, 1) 1.4s;
  }
}
@media only screen and (max-width:768px) {
  .l-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: 54.4vw;
    height: 100vh;
    background: url(../img/common/bg.jpg);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    background-size: 50px auto;
    -webkit-transform: translateX(105%);
            transform: translateX(105%);
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0, 0.55, 0.45, 1);
    transition: -webkit-transform 0.4s cubic-bezier(0, 0.55, 0.45, 1);
    transition: transform 0.4s cubic-bezier(0, 0.55, 0.45, 1);
    transition: transform 0.4s cubic-bezier(0, 0.55, 0.45, 1), -webkit-transform 0.4s cubic-bezier(0, 0.55, 0.45, 1);
  }
  .l-nav.--open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  .l-nav.--open::before {
    height: 100vh;
    -webkit-transition: height 0.8s cubic-bezier(0, 0.55, 0.45, 1) 0.1s;
    transition: height 0.8s cubic-bezier(0, 0.55, 0.45, 1) 0.1s;
  }
  .l-nav.--open::after {
    opacity: 0.8;
    -webkit-transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1);
    transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1);
  }
  .l-nav::before {
    content: "";
    position: absolute;
    top: 0;
    left: -14px;
    width: 35px;
    height: 0;
    background: url(../img/common/menu_frame_sp.png) repeat-y;
    background-size: 100% auto;
    pointer-events: none;
  }
  .l-nav::after {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    width: 300vw;
    height: 100vh;
    background: var(--bg-footer);
    opacity: 0;
    z-index: -1;
    pointer-events: none;
  }
}
.l-nav__list {
  font-family: var(--font-en);
  line-height: 1;
}
@media only screen and (min-width:768px) {
  .l-nav__list {
    padding-top: 80px;
  }
}
@media only screen and (max-width:768px) {
  .l-nav__list {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}
.l-nav__list-item {
  cursor: pointer;
  color: var(--white);
}
.l-nav__list-item.on {
  color: var(--yellow);
  pointer-events: none;
}
.l-nav__list-item + .l-nav__list-item {
  margin-top: 12px;
}
@media only screen and (min-width:768px) {
  .l-nav__list-item:hover {
    color: var(--blue);
    -webkit-animation: flash 0.2s 1 alternate forwards 0.1s;
            animation: flash 0.2s 1 alternate forwards 0.1s;
  }
}
.l-nav__list-item span {
  font-size: 17px;
  font-weight: 500;
  letter-spacing: 0.04rem;
  line-height: 1;
}
.l-nav__deco-item {
  position: absolute;
}
.l-nav__deco-item.-donut_b {
  top: 7.1vh;
  left: 0;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  opacity: 0;
}
.--open .l-nav__deco-item.-donut_b {
  -webkit-animation: flash 0.2s 1 alternate forwards 0.4s;
          animation: flash 0.2s 1 alternate forwards 0.4s;
}
.l-nav__deco-item.-donut_b img {
  width: 25vw;
  height: auto;
}
.l-nav__deco-item.-donut_p {
  bottom: 0;
  right: -16vw;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  opacity: 0;
}
.--open .l-nav__deco-item.-donut_p {
  -webkit-animation: flash 0.2s 1 alternate forwards 0.4s;
          animation: flash 0.2s 1 alternate forwards 0.4s;
}
.l-nav__deco-item.-donut_p img {
  width: 210px;
  height: auto;
}
.l-nav__deco-item.-sparkle_p {
  bottom: 15.7vh;
  right: 35.2vw;
  width: 10.6vw;
  opacity: 0;
}
.--open .l-nav__deco-item.-sparkle_p {
  -webkit-animation: flash 0.2s 1 alternate forwards 0.5s;
          animation: flash 0.2s 1 alternate forwards 0.5s;
}
.l-nav__deco-item.-sparkle_p img {
  width: 100%;
  height: auto;
}
.l-nav__deco-item.-sparkle_pp {
  top: 19.7vh;
  right: 4.2vw;
  width: 13.3vw;
  opacity: 0;
}
.--open .l-nav__deco-item.-sparkle_pp {
  -webkit-animation: flash 0.2s 1 alternate forwards 0.5s;
          animation: flash 0.2s 1 alternate forwards 0.5s;
}
.l-nav__deco-item.-sparkle_pp img {
  width: 100%;
  height: auto;
}

.l-wrapper {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1;
  margin: auto;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding-bottom: 100px;
}

.p-top {
  position: relative;
  width: 100%;
  height: 100vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width:768px) {
  .p-top {
    height: 100svh;
  }
}
.p-top__logo {
  position: relative;
  z-index: 1;
  padding-top: 4vh;
  opacity: 0;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: opacity 0.8s cubic-bezier(0, 0.55, 0.45, 1), -webkit-transform 0.8s cubic-bezier(0, 0.55, 0.45, 1);
  transition: opacity 0.8s cubic-bezier(0, 0.55, 0.45, 1), -webkit-transform 0.8s cubic-bezier(0, 0.55, 0.45, 1);
  transition: transform 0.8s cubic-bezier(0, 0.55, 0.45, 1), opacity 0.8s cubic-bezier(0, 0.55, 0.45, 1);
  transition: transform 0.8s cubic-bezier(0, 0.55, 0.45, 1), opacity 0.8s cubic-bezier(0, 0.55, 0.45, 1), -webkit-transform 0.8s cubic-bezier(0, 0.55, 0.45, 1);
}
@media only screen and (max-width:768px) {
  .p-top__logo {
    padding-top: 27.1vh;
  }
}
.is-load .p-top__logo {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}
.p-top__logo img {
  height: 80.6vh;
  width: auto;
}
@media only screen and (max-width:768px) {
  .p-top__logo img {
    width: 100%;
    height: auto;
  }
}
.p-top__date {
  position: absolute;
  bottom: 0.6vh;
  left: 0;
  z-index: 1;
  opacity: 0;
}
@media only screen and (max-width:768px) {
  .p-top__date {
    bottom: 0;
    width: 85.3%;
    height: auto;
  }
}
.is-load .p-top__date {
  -webkit-animation: flash 0.2s 1 alternate forwards 0.6s;
          animation: flash 0.2s 1 alternate forwards 0.6s;
}
.p-top__date img {
  height: 26vh;
  width: auto;
  margin: 0;
}
@media only screen and (max-width:768px) {
  .p-top__date img {
    width: 100%;
    height: auto;
  }
}
.p-top__deco {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-top__deco-item {
  position: absolute;
  opacity: 0;
}
.is-load .p-top__deco-item {
  -webkit-animation: flash 0.2s 1 alternate forwards 0.8s;
          animation: flash 0.2s 1 alternate forwards 0.8s;
}
.p-top__deco-item.-donut_p {
  top: 6vh;
  left: 5.7vw;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  margin-bottom: 8vh;
}
@media only screen and (max-width:768px) {
  .p-top__deco-item.-donut_p {
    top: -1vw;
    left: -2.1vw;
  }
}
.p-top__deco-item.-donut_p img {
  height: 47.3vh;
  width: auto;
}
@media only screen and (max-width:768px) {
  .p-top__deco-item.-donut_p img {
    width: 56vw;
    height: auto;
  }
}
.p-top__deco-item.-donut_b {
  right: 11.7vw;
  bottom: 5.6vh;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media only screen and (max-width:768px) {
  .p-top__deco-item.-donut_b {
    right: -8vw;
    bottom: 14.9vh;
  }
}
.p-top__deco-item.-donut_b img {
  height: 28.5vh;
  width: auto;
}
@media only screen and (max-width:768px) {
  .p-top__deco-item.-donut_b img {
    width: 29.3vw;
    height: auto;
  }
}
.p-top__deco-item.-sparkle_y {
  top: 15.4h;
  right: 15.8vw;
}
@media only screen and (max-width:768px) {
  .p-top__deco-item.-sparkle_y {
    top: 18.6vh;
    right: 9.2vw;
  }
}
.p-top__deco-item.-sparkle_y img {
  height: 14.2vh;
  width: auto;
}
@media only screen and (max-width:768px) {
  .p-top__deco-item.-sparkle_y img {
    width: 20.2vw;
    height: auto;
  }
}
.p-top__deco-item.-sparkle_b {
  bottom: 30.9vh;
  left: 14.28vw;
}
@media only screen and (max-width:768px) {
  .p-top__deco-item.-sparkle_b {
    bottom: 18.3vh;
    left: 8.5vw;
  }
}
.p-top__deco-item.-sparkle_b img {
  height: 12.6vh;
  width: auto;
}
@media only screen and (max-width:768px) {
  .p-top__deco-item.-sparkle_b img {
    width: 15.2vw;
    height: auto;
  }
}
.p-top__light {
  pointer-events: none;
}
.p-top__light-item {
  position: absolute;
}
.p-top__light-item.-pink {
  position: absolute;
  top: -50%;
  left: -50%;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
  -webkit-animation: light_top01 10s linear infinite;
          animation: light_top01 10s linear infinite;
}
.p-top__light-item.-yellow {
  position: absolute;
  bottom: -50%;
  right: -50%;
  -webkit-animation: light_top02 10s linear infinite;
          animation: light_top02 10s linear infinite;
}
.p-top__scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  opacity: 0;
  cursor: pointer;
  -webkit-transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1) 0s;
  transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1) 0s;
}
@media only screen and (max-width:768px) {
  .p-top__scroll {
    right: 0;
    left: auto;
    width: 13.3vw;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
@media only screen and (min-width:768px) {
  .p-top__scroll:hover {
    opacity: 0.5;
  }
}
.is-load .p-top__scroll {
  -webkit-animation: flash 0.2s 1 alternate forwards 1s;
          animation: flash 0.2s 1 alternate forwards 1s;
}
.p-top__scroll img {
  -webkit-animation: flash_scr 3s linear infinite;
          animation: flash_scr 3s linear infinite;
}

.p-sct {
  position: relative;
  margin: 0 auto;
  padding-top: 100px;
}
@media only screen and (max-width:768px) {
  .p-sct {
    padding-top: 80px;
  }
}
.p-sct:nth-child(odd) .p-sct__in {
  -webkit-box-shadow: 0 0 10px #fff, inset 0 0 10px #fff, 0 0 20px var(--shadow-yellow), inset 0 0 10px var(--shadow-yellow), 0 0 10px var(--shadow-yellow), inset 0 0 10px var(--shadow-yellow);
          box-shadow: 0 0 10px #fff, inset 0 0 10px #fff, 0 0 20px var(--shadow-yellow), inset 0 0 10px var(--shadow-yellow), 0 0 10px var(--shadow-yellow), inset 0 0 10px var(--shadow-yellow);
}
@media only screen and (max-width:768px) {
  .p-sct:nth-child(odd) .p-sct__in {
    -webkit-box-shadow: 0 0 5px #fff, inset 0 0 5px #fff, 0 0 20px var(--shadow-yellow), inset 0 0 5px var(--shadow-yellow), 0 0 5px var(--shadow-yellow), inset 0 0 5px var(--shadow-yellow);
            box-shadow: 0 0 5px #fff, inset 0 0 5px #fff, 0 0 20px var(--shadow-yellow), inset 0 0 5px var(--shadow-yellow), 0 0 5px var(--shadow-yellow), inset 0 0 5px var(--shadow-yellow);
  }
}
.p-sct__in {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  width: 94.6%;
  max-width: 1000px;
  margin: auto;
  padding: 45px 100px 65px;
  border: 3px solid var(--white);
  border-radius: 30px;
  -webkit-box-shadow: 0 0 10px #fff, inset 0 0 10px #fff, 0 0 20px var(--shadow-blue), inset 0 0 10px var(--shadow-blue), 0 0 10px var(--shadow-blue), inset 0 0 10px var(--shadow-blue);
          box-shadow: 0 0 10px #fff, inset 0 0 10px #fff, 0 0 20px var(--shadow-blue), inset 0 0 10px var(--shadow-blue), 0 0 10px var(--shadow-blue), inset 0 0 10px var(--shadow-blue);
}
@media only screen and (max-width:768px) {
  .p-sct__in {
    padding: 5.8rem 5.3vw;
    -webkit-box-shadow: 0 0 5px #fff, inset 0 0 5px #fff, 0 0 20px var(--shadow-blue), inset 0 0 5px var(--shadow-blue), 0 0 5px var(--shadow-blue), inset 0 0 5px var(--shadow-blue);
            box-shadow: 0 0 5px #fff, inset 0 0 5px #fff, 0 0 20px var(--shadow-blue), inset 0 0 5px var(--shadow-blue), 0 0 5px var(--shadow-blue), inset 0 0 5px var(--shadow-blue);
  }
}
.p-sct__in + .p-sct__in {
  margin-top: 50px;
}
@media only screen and (max-width:768px) {
  .p-sct__in + .p-sct__in {
    margin-top: 25px;
  }
}
.p-sct__cont {
  margin-top: 50px;
}
@media only screen and (max-width:768px) {
  .p-sct__cont {
    margin-top: 40px;
  }
}
.p-sct__ttl {
  margin: auto;
  opacity: 0;
}
.is-scroll .p-sct__ttl {
  -webkit-animation: flash 0.2s 1 alternate forwards 0.1s;
          animation: flash 0.2s 1 alternate forwards 0.1s;
}
@media only screen and (min-width:768px) {
  .p-sct__ttl {
    width: 375px;
  }
}
@media only screen and (max-width:768px) {
  .p-sct__ttl {
    width: 52vw;
  }
}
.p-attention .p-sct__ttl {
  width: 462px;
  margin-bottom: 20px;
}
@media only screen and (max-width:768px) {
  .p-attention .p-sct__ttl {
    width: 64vw;
  }
}
.p-sct__lead {
  margin-top: 15px;
  font-size: 22px;
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 0.06rem;
  text-align: center;
  opacity: 0;
}
@media only screen and (max-width:768px) {
  .p-sct__lead {
    font-size: 1.5rem;
  }
}
.is-scroll .p-sct__lead {
  opacity: 1;
  -webkit-transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1) 0.2s;
  transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1) 0.2s;
}
.p-sct__lead.-nomargin {
  margin-top: 0;
}
.p-sct__lead small {
  display: block;
  font-size: 70%;
}
.p-sct__info {
  position: relative;
  margin-top: 32px;
  opacity: 0;
}
@media only screen and (max-width:768px) {
  .p-sct__info {
    margin-top: 22px;
  }
}
.is-scroll .p-sct__info {
  opacity: 1;
  -webkit-transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1) 0.3s;
  transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1) 0.3s;
}
.p-sct__info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--border);
}
.is-scroll .p-sct__info::before {
  width: 100%;
  -webkit-transition: width 0.4s cubic-bezier(0, 0.55, 0.45, 1) 0.4s;
  transition: width 0.4s cubic-bezier(0, 0.55, 0.45, 1) 0.4s;
}
.p-sct__info-txt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  text-align: left;
  padding: 24px 0 25px;
}
@media only screen and (max-width:768px) {
  .p-sct__info-txt {
    padding: 1.4rem 0 1.5rem;
  }
}
.p-sct__info-txt::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--border);
}
.is-scroll .p-sct__info-txt::before {
  width: 100%;
  -webkit-transition: width 0.4s cubic-bezier(0, 0.55, 0.45, 1) 0.4s;
  transition: width 0.4s cubic-bezier(0, 0.55, 0.45, 1) 0.4s;
}
.p-sct__info-txt-cap {
  width: 140px;
  font-size: 18px;
  font-weight: 500;
  color: var(--yellow);
  line-height: 1.7;
}
@media only screen and (max-width:768px) {
  .p-sct__info-txt-cap {
    width: 7rem;
    font-size: 1.3rem;
  }
}
.p-sct__info-txt-detail {
  width: calc(100% - 140px);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  word-break: break-all;
}
@media only screen and (max-width:768px) {
  .p-sct__info-txt-detail {
    width: calc(100% - 7rem);
    font-size: 1.3rem;
  }
}
.p-sct__info-txt-detail small {
  font-size: 80%;
  vertical-align: baseline;
}
.p-sct__info-txt-detail a {
  display: inline-block;
  color: var(--blue);
}
@media only screen and (min-width:768px) {
  .p-sct__info-txt-detail a:hover {
    -webkit-animation: flash 0.2s 1 alternate forwards 0.1s;
            animation: flash 0.2s 1 alternate forwards 0.1s;
  }
}
.p-sct__info-txt-detail figure {
  margin-top: 1rem;
}
@media only screen and (min-width:768px) {
  .p-sct__info-txt-detail figure {
    width: calc(100% - 140px);
  }
}
.p-sct__info-txt-detail span.-end {
  padding: 2px 6px 3px;
  margin-left: 1em;
  font-size: 13px;
  border: 1px solid #fff;
  vertical-align: baseline;
}
@media only screen and (max-width:768px) {
  .p-sct__info-txt-detail span.-end {
    font-size: 10px;
  }
}
.p-sct__info-txt-detail .p-sct__info-attlist {
  margin-top: 1rem;
}
@media only screen and (max-width:768px) {
  .p-sct__info-txt-detail .p-sct__info-attlist {
    margin-top: 0.6rem;
  }
}
.p-sct__info-attlist {
  margin-top: 30px;
  text-align: left;
  opacity: 0;
}
.is-scroll .p-sct__info-attlist {
  opacity: 1;
  -webkit-transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1) 0.5s;
  transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1) 0.5s;
}
@media only screen and (max-width:768px) {
  .p-sct__info-attlist {
    margin-top: 22px;
  }
}
.p-sct__info-attlist-item {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 13px;
  line-height: 1.7;
}
@media only screen and (max-width:768px) {
  .p-sct__info-attlist-item {
    font-size: 1.1rem;
  }
}
.p-sct__info-attlist-item + .p-sct__info-attlist-item {
  margin-top: 2px;
}
.p-sct__attention-block {
  position: relative;
  padding: 24px 0 25px;
  opacity: 0;
  text-align: left;
}
.is-scroll .p-sct__attention-block {
  opacity: 1;
  -webkit-transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1) 0.3s;
  transition: opacity 0.4s cubic-bezier(0, 0.55, 0.45, 1) 0.3s;
}
.p-sct__attention-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--border);
}
.is-scroll .p-sct__attention-block::before {
  width: 100%;
  -webkit-transition: width 0.4s cubic-bezier(0, 0.55, 0.45, 1) 0.4s;
  transition: width 0.4s cubic-bezier(0, 0.55, 0.45, 1) 0.4s;
}
.p-sct__attention-cap {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--yellow);
  line-height: 1.7;
}
@media only screen and (max-width:768px) {
  .p-sct__attention-cap {
    font-size: 1.3rem;
  }
}
.p-sct__attention-cap strong {
  display: inline-block;
  margin-left: 1rem;
  color: var(--blue);
  vertical-align: baseline;
  line-height: 1;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.04rem;
}
.p-sct__attention-attlist small {
  font-size: 80%;
  vertical-align: baseline;
}
.p-sct__attention-attlist a {
  display: inline-block;
  color: var(--blue);
}
@media only screen and (min-width:768px) {
  .p-sct__attention-attlist a:hover {
    -webkit-animation: flash 0.2s 1 alternate forwards 0.1s;
            animation: flash 0.2s 1 alternate forwards 0.1s;
  }
}
.p-sct__attention-attlist strong {
  display: inline-block;
  margin-left: 1rem;
  text-indent: 0;
  color: var(--blue);
  vertical-align: baseline;
  line-height: 1;
  font-family: var(--font-en);
  font-weight: 500;
  letter-spacing: 0.04rem;
}
.p-sct__attention-attlist-item {
  padding-left: 1em;
  text-indent: -1em;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}
@media only screen and (max-width:768px) {
  .p-sct__attention-attlist-item {
    font-size: 1.2rem;
  }
}
.p-sct__attention-attlist-item + .p-sct__attention-attlist-item {
  margin-top: 0.5rem;
}
.p-sct__attention-attlist + .p-sct__attention-txt {
  margin-top: 2rem;
}
.p-sct__attention-txt {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}
@media only screen and (max-width:768px) {
  .p-sct__attention-txt {
    font-size: 1.2rem;
  }
}
.p-sct__attention-txt + .p-sct__attention-txt {
  margin-top: 2rem;
}
.p-sct__attention-txt + .p-sct__attention-attlist {
  margin-top: 2rem;
}
.p-sct__attention-txt strong {
  font-weight: bold;
}
.p-sct__attention-txt small {
  font-size: 80%;
}
.p-sct__attention-txt small.-att {
  display: inline-block;
  padding-left: 1em;
  text-indent: -1em;
}
.p-sct__attention-txt.--box {
  padding: 2rem;
  border: 1px solid var(--border);
}

.p-about {
  position: relative;
}
.p-about__deco-item {
  position: absolute;
  opacity: 0;
}
.p-about__deco-item.is-scroll {
  -webkit-animation: flash 0.2s 1 alternate forwards 0.1s;
          animation: flash 0.2s 1 alternate forwards 0.1s;
}
.p-about__deco-item.-donut_p {
  top: 208px;
  left: -70px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  margin-bottom: 8vh;
}
.p-about__deco-item.-donut_p img {
  width: 210px;
  height: auto;
}
.p-about__deco-item.-sparkle_p {
  bottom: 0;
  right: 90px;
  width: 100px;
}
.p-about__deco-item.-sparkle_p img {
  width: 100px;
  height: auto;
}
.p-about__light {
  pointer-events: none;
}
.p-about__light-item {
  position: absolute;
}
.p-about__light-item.-purple {
  position: absolute;
  bottom: -50%;
  left: -50%;
  -webkit-animation: light_top01 15s linear infinite;
          animation: light_top01 15s linear infinite;
}

.p-ticket {
  position: relative;
}
.p-ticket__deco-item {
  position: absolute;
  opacity: 0;
}
.p-ticket__deco-item.is-scroll {
  -webkit-animation: flash 0.2s 1 alternate forwards 0.1s;
          animation: flash 0.2s 1 alternate forwards 0.1s;
}
.p-ticket__deco-item.-donut_b {
  bottom: -90px;
  right: -140px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.p-ticket__deco-item.-donut_b img {
  width: 355px;
  height: auto;
}
.p-ticket__deco-item.-sparkle_p {
  top: 268px;
  left: 80px;
  width: 100px;
}
.p-ticket__deco-item.-sparkle_p img {
  width: 100px;
  height: auto;
}
.p-ticket__light {
  pointer-events: none;
}
.p-ticket__light-item {
  position: absolute;
}
.p-ticket__light-item.-blue {
  position: absolute;
  bottom: -50%;
  right: -50%;
  -webkit-animation: light_top02 15s linear infinite;
          animation: light_top02 15s linear infinite;
}

.p-attention {
  position: relative;
}
.p-attention__deco-item {
  position: absolute;
  opacity: 0;
}
.p-attention__deco-item.is-scroll {
  -webkit-animation: flash 0.2s 1 alternate forwards 0.1s;
          animation: flash 0.2s 1 alternate forwards 0.1s;
}
.p-attention__deco-item.-donut_p {
  top: 208px;
  left: -70px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  margin-bottom: 8vh;
}
.p-attention__deco-item.-donut_p img {
  width: 210px;
  height: auto;
}
.p-attention__deco-item.-sparkle_p {
  bottom: 0;
  right: 90px;
  width: 100px;
}
.p-attention__deco-item.-sparkle_p img {
  width: 100px;
  height: auto;
}
.p-attention__light {
  pointer-events: none;
}
.p-attention__light-item {
  position: absolute;
}
.p-attention__light-item.-purple {
  position: absolute;
  bottom: -50%;
  left: -50%;
  -webkit-animation: light_top01 15s linear infinite;
          animation: light_top01 15s linear infinite;
}

.l-footer {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  background: var(--bg-footer);
}
@media only screen and (min-width:768px) {
  .l-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 50px;
  }
}
@media only screen and (max-width:768px) {
  .l-footer {
    padding: 50px 0;
  }
}
@media only screen and (min-width:768px) {
  .l-footer__left {
    width: 300px;
    text-align: left;
  }
}
.l-footer__right {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (min-width:768px) {
  .l-footer__right {
    width: calc(100% - 300px);
    text-align: right;
    padding-left: 1em;
  }
}
.l-footer__logo {
  margin: 0;
}
@media only screen and (min-width:768px) {
  .l-footer__logo {
    width: 200px;
  }
}
@media only screen and (max-width:768px) {
  .l-footer__logo {
    width: 40%;
    margin: auto;
  }
}
.l-footer__logo a {
  position: relative;
  display: block;
  width: 100%;
}
@media only screen and (min-width:768px) {
  .l-footer__logo a:hover {
    -webkit-animation: flash 0.2s 1 alternate forwards 0.1s;
            animation: flash 0.2s 1 alternate forwards 0.1s;
  }
}
.l-footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 30px auto 0;
}
@media only screen and (max-width:768px) {
  .l-footer__link {
    margin-bottom: 2.6rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.l-footer__link li {
  position: relative;
  margin-left: 27px;
}
.l-footer__link li:first-child {
  margin-left: 0;
}
.l-footer__link li:first-child::before {
  content: none;
}
.l-footer__link li::before {
  content: "｜";
  position: absolute;
  top: 0;
  left: -17px;
  color: var(--white);
}
@media only screen and (max-width:768px) {
  .l-footer__link li::before {
    left: -15px;
  }
}
@media only screen and (max-width:768px) {
  .l-footer__link li {
    margin-left: 22px;
  }
}
.l-footer__link li a {
  display: block;
  color: var(--main-white);
  font-family: var(--font-en);
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
}
@media only screen and (min-width:768px) {
  .l-footer__link li a:hover {
    -webkit-animation: flash 0.2s 1 alternate forwards 0.1s;
            animation: flash 0.2s 1 alternate forwards 0.1s;
  }
}
@media only screen and (max-width:768px) {
  .l-footer__link li a {
    font-size: 1rem;
  }
}
.l-footer__share {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
}
@media only screen and (min-width:768px) {
  .l-footer__share {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
@media only screen and (max-width:768px) {
  .l-footer__share {
    margin: 40px auto 0;
  }
}
.l-footer__share_cap {
  margin-right: 10px;
  font-family: var(--font-en);
  font-size: 1.1rem;
}
.l-footer__share_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.l-footer__share_list li {
  margin-left: 20px;
}
@media only screen and (max-width:768px) {
  .l-footer__share_list li {
    margin: 0 10px;
  }
}
.l-footer__share_list li a img {
  height: 19px;
  width: auto;
  fill: #fff;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), -webkit-transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
@media only screen and (max-width:768px) {
  .l-footer__share_list li a img {
    height: 24px;
  }
}
@media only screen and (min-width:768px) {
  .l-footer__share_list li a:hover {
    -webkit-animation: flash 0.2s 1 alternate forwards 0.1s;
            animation: flash 0.2s 1 alternate forwards 0.1s;
  }
}
.l-footer__notes {
  line-height: 1.2;
  font-size: 1.1rem;
  color: var(--color-copy);
}
@media only screen and (min-width:768px) {
  .l-footer__notes {
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
@media only screen and (max-width:768px) {
  .l-footer__notes {
    margin-top: 38px;
    line-height: 2;
    font-size: 1rem;
  }
}

table, td, th {
  border: 1px solid var(--border);
  border-collapse: collapse;
}

table {
  margin-top: 0.5rem;
}
@media only screen and (max-width:768px) {
  table {
    width: 100%;
  }
}

td, th {
  padding: 0.6rem 0.8rem;
  width: 30px;
  height: 25px;
}
@media only screen and (max-width:768px) {
  td, th {
    text-align: center;
  }
}
td.-tl, th.-tl {
  background: unset !important;
}
td.-no, th.-no {
  width: 3rem;
  background: rgba(255, 227, 121, 0.3);
  text-align: center;
}
td.-no02, th.-no02 {
  width: 9rem;
}

th {
  background: rgba(58, 208, 195, 0.3);
  text-align: center;
}