@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Forum&family=Noto+Sans+JP&family=Noto+Serif+JP:wght@500..900&display=swap");
:root {
  --White: #FFF;
  --cc-black: #232443;
  --cc-ylw: #F7CF01;
  /* Base Variable Width */
  --ff-base:"Noto Serif JP", serif;
  --ff-enfont:"Forum", serif;
  --ff-txt:"Noto Sans JP", sans-serif;
}

@media all and (min-width: 769px) {
  .-sp {
    display: none !important;
  }
}
@media all and (max-width: 768px) {
  .-pc {
    display: none !important;
  }
}
.-enFont {
  font-family: "Forum", serif;
}

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  box-sizing: border-box;
  width: 100%;
  transform: translate3d(0, 0, 0);
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  display: block;
  overflow: visible;
  margin: 0;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "×";
  text-align: center;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);
    opacity: 1;
  }
  to {
    transform: scale(0.95);
    opacity: 0;
    filter: blur(0);
  }
}
@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 950px;
  }
}
/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
/* Icons */
@font-face {
  font-family: "slick";
}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "";
}

[dir=rtl] .slick-prev:before {
  content: "";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "";
}

[dir=rtl] .slick-next:before {
  content: "";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

.slick-slider.-h100 {
  height: 100%;
}
.slick-slider.-h100 .slick-list, .slick-slider.-h100 .slick-track, .slick-slider.-h100 .slick-slide, .slick-slider.-h100 .slick-slide > div {
  height: 100%;
}

body.-menuLock {
  overflow: hidden;
}

.svg-holder {
  display: none;
}

.c-mask {
  -webkit-mask: url(../img/mask.svg) top center/100% auto no-repeat;
          mask: url(../img/mask.svg) top center/100% auto no-repeat;
  margin-top: -30px;
}
@media screen and (max-width: 768px) {
  .c-mask {
    margin-top: -8vw;
  }
}

.c-imgR {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .c-imgR {
    border-radius: 2.6666666667vw;
  }
}

.-ylw {
  color: var(--cc-ylw);
}

.menu {
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
}
.menu.-open .menuCnt {
  pointer-events: initial;
  opacity: 1;
}
.menu.-open .menuBtn {
  background-image: url(../img/menu_btn-close.svg);
}
.menu .menuCnt {
  transition: opacity 0.3s;
  position: absolute;
  pointer-events: none;
  opacity: 0;
  background: var(--cc-black);
  color: #fff;
  width: 100%;
  min-height: calc(var(--vh) * 100);
}
.menu .menuCnt__in {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 100px 30px 100px 30px;
}
.menu .menuCnt__ttl {
  line-height: 1;
  margin-bottom: 40px;
}
.menu .menuCnt__ttl .txt1 {
  font-family: var(--ff-enfont);
  font-size: 28px;
}
.menu .menuCnt__ttl .txt2 {
  font-size: 10px;
}
.menu .menuBtn {
  position: absolute;
  transition: background 0.3s;
  background: url(../img/menu_btn.svg) center center/100% auto no-repeat;
  width: 45px;
  height: 45px;
  top: 24px;
  right: 20px;
  z-index: 100;
}

.menuList {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.menuList li a {
  white-space: nowrap;
  color: #fff;
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 11px;
  transition: background 0.3s;
}
.menuList li a:before {
  background: url(../img/menu-cat-ico.svg) center center/100% auto no-repeat;
  width: 19px;
  height: 15px;
  content: "";
  position: relative;
  transition: background 0.3s;
}
.menuList li a .enTxt {
  font-family: var(--ff-enfont);
  font-size: 20px;
  margin: 0 10px 0 10px;
}
@media screen and (min-width: 769px) {
  .menuList li a:hover {
    color: var(--cc-ylw);
  }
  .menuList li a:hover::before {
    background-image: url(../img/menu-cat-ico-ylw.svg);
  }
}

.menuLink {
  width: 285px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 45px;
}
.menuLink a {
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  width: 100%;
  color: var(--cc-black);
  background: var(--cc-ylw);
  font-weight: 500;
  height: 50px;
  font-size: 18px;
  gap: 15px;
}
.menuLink a:after {
  content: "";
  background: url(../img/menu-arw.svg) center center/100% auto no-repeat;
  width: 6.5px;
  height: 11px;
}

#cattowerPage {
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt" on;
  font-family: var(--ff-base);
}
#cattowerPage p, #cattowerPage a {
  font-family: var(--ff-base);
}
@media screen and (min-width: 769px) {
  #cattowerPage {
    display: flex;
    align-items: flex-start;
    background: url(../img/pc-bg.jpg) center center/cover no-repeat fixed;
    padding: 80px 0;
  }
}
#cattowerPage .pageCnt {
  position: relative;
  background: url(../img/cnt-bg.jpg) top center/100% auto;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  #cattowerPage .pageCnt {
    width: 375px;
    z-index: 1;
  }
}
#cattowerPage .pcLogo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(var(--vh) * 100);
  width: calc(50% - 187.5px);
  position: sticky;
  top: 0;
}
#cattowerPage .pcLogo .logoimg {
  width: 100%;
  max-width: 337px;
}
#cattowerPage .pcLogo .menuLink {
  position: relative;
  margin-left: 0;
  margin-top: 75px;
}
#cattowerPage .pcLogo .menuLink .pcmenu-cat {
  position: absolute;
  transform-origin: left bottom;
  width: 90px;
  right: -30px;
  top: -50px;
}
#cattowerPage .pcLogo .menuLink a {
  font-family: var(--ff-base);
  position: relative;
  height: 80px;
}
@media screen and (max-width: 768px) {
  #cattowerPage .pcLogo {
    display: none;
  }
}
#cattowerPage .pcMenu {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(var(--vh) * 100);
  width: calc(50% - 187.5px);
  position: sticky;
  top: 0;
}
#cattowerPage .pcMenu .menuList li a .enTxt {
  font-size: 24px;
  margin-left: 15px;
}
#cattowerPage .pcMenu .menuList {
  gap: 25px;
}
@media screen and (max-width: 768px) {
  #cattowerPage .pcMenu {
    display: none;
  }
}

.c-tail {
  transform-origin: top center; /* 根元を支点に */
  animation: tail-wag 1.6s linear infinite;
}

@keyframes tail-wag {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(4deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(-4deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@media screen and (min-width: 769px) {
  #globalFooter {
    z-index: 100;
  }
}

.preload {
  display: none;
}

#loader {
  background: var(--cc-ylw);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}
#loader .pertxt {
  font-family: var(--ff-base);
  position: absolute;
  right: 10px;
  bottom: 10px;
}
#loader .loadani, #loader .loadaniSp {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
#loader .loadani {
  width: 100%;
  max-width: 1120px;
}
@media screen and (max-width: 768px) {
  #loader .loadani {
    width: 88.5333333333vw;
  }
}
.kvSec {
  position: relative;
}
.kvSec__img {
  width: 100%;
}
.kvSec__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 270px;
  width: 337px;
}
@media screen and (max-width: 768px) {
  .kvSec__logo {
    top: 46.1333333333vw;
  }
}
.kvSec__logo img {
  width: 100%;
  opacity: 0;
  transform: translateY(10%);
  transition: all 1.5s;
}
.-init .kvSec__logo img {
  opacity: 1;
  transform: translateY(0);
}
.kvSec__scrl {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 520px;
}
@media screen and (max-width: 768px) {
  .kvSec__scrl {
    top: 400px;
  }
}
.kvSec__scrl .bar {
  position: relative;
  margin: 0 auto 15px;
  height: 50px;
}
.kvSec__scrl .bar:before {
  opacity: 0.5;
  display: block;
  content: "";
  background: #fff;
  width: 1px;
  height: 100%;
  margin: 0 auto;
}
.kvSec__scrl .bar .dot {
  background: #fff;
  position: absolute;
  border-radius: 50%;
  width: 5px;
  height: 5px;
  top: -2.5px;
  left: 2.5px;
  animation: kvpoint 1.8s ease-in infinite;
}
@keyframes kvpoint {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(50px);
    opacity: 1;
  }
  51% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    opacity: 0;
    transform: translateY(50px);
  }
}
.introSec {
  color: #fff;
}
.introSec__head {
  position: relative;
  background: var(--cc-black);
  height: 110px;
}
.introSec__head .obj {
  position: absolute;
  left: 50%;
  top: -2px;
  width: 36px;
  margin-left: -18px;
}
.introSec__cnt {
  background: var(--cc-black);
  text-align: center;
  padding-bottom: 60px;
}
.introSec__cnt .ttl {
  line-height: 1.6;
  font-size: 32px;
}
.introSec__cnt .txt {
  font-family: var(--ff-txt);
  line-height: 2;
  font-size: 14px;
  margin-top: 20px;
}
.introSec__cnt .txt .ylw {
  color: var(--cc-ylw);
  display: inline-block;
  margin-top: -9px;
}
.introSec__cnt .txt .txtL {
  font-family: var(--ff-enfont);
  font-size: 24px;
}
.introSec__cnt .arw {
  margin: 20px auto 0;
}

.topSec__head {
  position: relative;
}
.topSec__head img {
  width: 100%;
}
.topSec__cnt {
  background: url(../img/line.svg) bottom left/100% auto repeat-x;
  margin: 0 auto;
  width: 345px;
  padding-top: 40px;
  padding-bottom: 40px;
}
.topSec__cnt .ani .aniCnt {
  transition: transform 0.6s ease-in-out;
  transform-origin: center bottom;
  transform: scale(0.5);
}
.topSec__cnt .ani.-viewed .aniCnt {
  transform: scale(1);
}
.topSec__cnt .txt {
  text-align: center;
  color: var(--blue01, #232443);
  font-size: 24px;
  font-weight: 600;
  line-height: 120%; /* 28.8px */
  margin-bottom: 35px;
}
.topSec__cnt .img {
  text-align: center;
}
.topSec__cnt .img img {
  margin: 0 auto;
  width: 260px;
}
.topSec__cnt .note {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
}
.topSec__cnt .noteList {
  display: flex;
  flex-direction: column;
  font-family: var(--ff-txt);
  margin-top: 20px;
  font-size: 10px;
  font-weight: 400;
  gap: 5px;
}
.topSec__cnt .noteList li {
  line-height: 160%; /* 16px */
}

@keyframes marq {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.c-secTtl {
  text-align: center;
  line-height: 1;
}
.c-secTtl .enTxt {
  font-weight: 400;
  font-family: var(--ff-enfont);
  letter-spacing: 0.03em;
  font-size: 32px;
}
.c-secTtl .jTxt {
  font-family: var(--ff-txt) !important;
  margin-top: 1em;
  font-size: 11px;
}

.planSec {
  padding-top: 40px;
}
.planSec .topTxt {
  text-align: center;
  font-weight: 500;
  line-height: 160%; /* 32px */
  font-size: 20px;
  margin-top: 27px;
}
.planSec__cnt {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 15px 55px;
  margin-top: 25px;
}
.planSec__cnt .item__txt img {
  width: 100%;
}
.planSec__cnt .item__img {
  position: relative;
  cursor: pointer;
}
.planSec__cnt .item__img img {
  width: 100%;
}
.planSec__cnt .item__img .ico-zoom {
  position: absolute;
  right: 10px;
  bottom: 10px;
  width: 40px;
}
.planSec__bottom img {
  width: 100%;
}

.locationSec {
  padding-top: 45px;
}
.locationSec .topTxt {
  text-align: center;
  font-weight: 500;
  line-height: 160%; /* 32px */
  font-size: 20px;
  margin-top: 25px;
}
.locationSec__cnt {
  margin: 40px 15px 55px;
}
.locationSec__cnt img {
  width: 100%;
}
.locationSec__cnt img.hand {
  position: absolute;
  left: 0;
  bottom: 0;
  transition: transform 0.3s;
  transform: translateY(20%);
}
.locationSec__cnt.-viewed .hand {
  transform: translateY(0%);
}
.locationSec__bottom img {
  width: 100%;
}

.equipmentSec {
  padding: 50px 15px 55px;
}
.equipmentSec__cnt {
  display: flex;
  flex-direction: column;
  margin-top: 33px;
  gap: 25px;
}
.equipmentSec__cnt .item {
  background: url(../img/line.svg) bottom left/100% auto repeat-x;
  padding-bottom: 25px;
}
.equipmentSec__cnt .item:last-child {
  background: none;
}
.equipmentSec__cnt .item__img {
  position: relative;
}
.equipmentSec__cnt .item__img img {
  width: 100%;
}
.equipmentSec__cnt .item__img .num {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  font-family: var(--ff-enfont);
  line-height: 1;
  top: 10px;
  left: 10px;
  border-radius: 5px;
  width: 40px;
  height: 40px;
  font-size: 20px;
}
.equipmentSec__cnt .item__img .note {
  font-family: var(--ff-txt) !important;
  margin-top: 20px;
  text-align: center;
  font-size: 10px;
  font-weight: 400;
  line-height: 160%; /* 16px */
  color: #fff;
  position: absolute;
  left: 10px;
  bottom: 8px;
}
.equipmentSec__cnt .item .ttl {
  text-align: center;
  line-height: 1;
  font-size: 20px;
  margin: 25px 0 15px;
}
.equipmentSec__cnt .item .txt {
  text-align: center;
  font-family: var(--ff-txt);
  line-height: 2.2;
  font-size: 14px;
}

.specialSec__head {
  color: #fff;
  background: url(../img/special-headbg.jpg) center center/cover no-repeat;
  height: 510px;
}
.specialSec__head .c-secTtl {
  padding-top: 50px;
}
.specialSec__head .time {
  text-align: center;
  padding-top: 20px;
}
.specialSec__head .time img {
  width: 180px;
}
.specialSec__head .ttl {
  text-align: center;
  padding-top: 10px;
  margin: 0 auto;
}
.specialSec__head .ttl img {
  width: 280px;
}
.specialSec__head .note {
  font-family: var(--ff-txt) !important;
  text-align: center;
  line-height: 2;
  margin-top: 15px;
  font-size: 10px;
}
.specialSec__head .date {
  text-align: center;
  margin-top: 20px;
  font-size: 12px;
}
.specialSec__head .date .sml {
  font-size: 10px;
}
.specialSec__head .btn {
  margin-top: 30px;
}
.specialSec__head .btn a {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #fff;
  color: #fff;
  border-radius: 25px;
  width: 285px;
  height: 40px;
  font-size: 14px;
  gap: 10px;
}
.specialSec__head .btn a:after {
  content: "";
  background: url(../img/special-arw.svg) center center/cover no-repeat;
  position: relative;
  top: 0.1em;
  width: 9px;
  height: 5px;
}
.specialSec__cnt {
  background: var(--cc-black);
  padding: 60px 30px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.specialSec__cnt__in {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 315px;
}
.specialSec__cnt .box {
  transform-origin: center bottom;
  position: relative;
  width: 55px;
}
.specialSec__cnt .box.-cusor {
  cursor: pointer;
}
.specialSec__cnt .box.-ani {
  cursor: pointer;
  animation: shake 0.7s ease-in-out infinite;
}
.specialSec__cnt .box.-ani1 {
  animation-delay: 0.2s;
}
.specialSec__cnt .box.-ani2 {
  animation-delay: 0.4s;
}
.specialSec__cnt .box.-ani3 {
  animation-delay: 0.6s;
}
.specialSec__cnt .box.-ani4 {
  animation-delay: 0.1s;
}
.specialSec__cnt .box.-ani5 {
  animation-delay: 0.3s;
}
.specialSec__cnt .box .boximg {
  position: relative;
  width: 100%;
}
.specialSec__cnt .box .obj {
  position: absolute;
}
.specialSec__cnt .box .obj.-obj1 {
  left: 20px;
  bottom: 15px;
  width: 51px;
}
.specialSec__cnt .box .obj.-obj2 {
  right: -25px;
  top: -20px;
  width: 67px;
}
.specialSec__cnt .box .obj.-obj3 {
  left: 25px;
  top: -18px;
  width: 53px;
}
.specialSec__cnt .box .obj.-obj4 {
  left: 25px;
  top: -30px;
  width: 42px;
}
.specialSec__cnt .box .obj.-obj5 {
  left: 3px;
  top: -15px;
  width: 42px;
}

@keyframes shake {
  0% {
    transform: translateX(0) rotate(0);
  }
  25% {
    transform: translatey(-2%) rotate(-2deg);
  }
  50% {
    transform: translateY(2%) rotate(0deg);
  }
  75% {
    transform: translateY(-2%) rotate(-2deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.movieSec {
  position: relative;
}
.movieSec__head {
  background: url(../img/cnt-bg.jpg) top center/100% auto;
  height: 140px;
}
.movieSec__head .c-secTtl {
  padding-top: 60px;
}
.movieSec__head .obj {
  position: absolute;
  top: 8px;
  right: 40px;
  width: 42px;
}
.movieSec__cnt {
  position: relative;
  margin: 0 15px 0;
}
.movieSec__cnt img {
  width: 100%;
}
.movieSec__cnt .playIco {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
}

.gallerySec {
  position: relative;
  overflow: hidden;
  padding: 55px 0 25px;
}
.gallerySec__cnt {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  margin-top: 25px;
}
.gallerySec__cnt .item {
  width: 320px;
}
.gallerySec__cnt .item img {
  margin: 0 auto;
  width: 315px;
}
.gallerySec__cnt .slick-list {
  overflow: initial;
}
.gallerySec__cnt .slick-dots li {
  opacity: 0.2;
  width: 6px;
  height: 6px;
}
.gallerySec__cnt .slick-dots li.slick-active {
  opacity: 1;
}
.gallerySec__cnt .slick-dots li button {
  border-radius: 50%;
  background: var(--cc-black);
  padding: 0;
  width: 100%;
  height: 100%;
}

.camplaignSec {
  background: url(../img/campaign-bg.svg) top center/100% auto var(--cc-ylw);
  padding: 50px 15px 45px;
}
.camplaignSec__cnt {
  margin-top: 25px;
}
.camplaignSec__cnt .topBlock .ttl {
  display: block;
  width: 270px;
  margin: 0 auto 20px;
}
.camplaignSec__cnt .topBlock .txt1 {
  text-align: center;
  line-height: 1.2;
  font-weight: 700;
  margin: 10px 0 10px;
  font-size: 28px;
}
.camplaignSec__cnt .topBlock .txt2 {
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.camplaignSec__cnt .topBlock .txt2 .txt {
  display: flex;
  justify-content: center;
  align-items: center;
}
.camplaignSec__cnt .topBlock .txt2 .txt .num {
  display: flex;
  align-items: baseline;
  justify-content: center;
  border: solid 1px var(--cc-black);
  border-radius: 3px;
  margin-right: 5px;
  width: 60px;
  height: 30px;
}
.camplaignSec__cnt .topBlock .txt2 .txt .num__val {
  font-size: 24px;
}
.camplaignSec__cnt .imgList {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  gap: 15px;
}
.camplaignSec__cnt .imgList img {
  width: 100%;
}
.camplaignSec__cnt .note {
  display: flex;
  flex-direction: column;
  font-family: var(--ff-txt);
  margin-top: 30px;
  gap: 5px;
}
.camplaignSec__cnt .note li {
  padding-left: 0.5em;
  text-indent: -0.5em;
  line-height: 2;
  font-size: 14px;
}
.camplaignSec .termSec {
  color: #fff;
  background: var(--cc-black);
  margin-top: 25px;
}
.camplaignSec .termSec__head {
  padding: 15px 30px;
}
.camplaignSec .termSec__head .txt {
  line-height: 1;
  font-weight: 500;
  font-size: 16px;
}

.flyerSec {
  padding: 65px 15px 60px;
}
.flyerSec .topTxt {
  text-align: center;
  font-weight: 500;
  line-height: 160%;
  font-size: 20px;
  margin-top: 25px;
}
.flyerSec__cnt {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 25px;
}
.flyerSec__cnt .img img {
  width: 100%;
}
.flyerSec__cnt .txtarea {
  background: var(--cc-ylw);
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  font-family: var(--ff-txt);
  height: 40px;
  gap: 8px;
  font-size: 12px;
}

.bgBlk__head {
  background: var(--cc-black);
  height: 30px;
}
@media screen and (max-width: 768px) {
  .bgBlk__head {
    height: 8vw;
  }
}
.bgBlk__cnt {
  background: var(--cc-black);
  color: #fff;
  padding-bottom: 80px;
}

.acItem__label {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: solid 1px rgba(255, 255, 255, 0.1);
  padding-bottom: 15px;
  line-height: 2.2;
  font-size: 16px;
}
.acItem__label::after {
  content: "";
  background: url(../img/acbtn_open.svg) center center/100% auto no-repeat;
  height: 13px;
  width: 13px;
}
.acItem__label.-open::after {
  background-image: url(../img/acbtn_close.svg);
}
.acItem__cnt {
  display: none;
  font-family: var(--ff-txt);
}
.acItem__cnt .in {
  display: flex;
  flex-direction: column;
  padding-bottom: 10px;
  padding-top: 15px;
  gap: 15px;
}
.acItem__cnt .in .txt {
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-family: var(--ff-txt);
}
.acItem__cnt .in .txt p {
  font-family: var(--ff-txt) !important;
  line-height: 2;
  font-size: 14px;
}
.acItem__cnt .in .txt .ico {
  margin-right: 10px;
}
.acItem__cnt .in .txt.-indent p {
  text-indent: -1.3em;
  padding-left: 1.3em;
  font-size: 12px;
}

.eventSec {
  padding: 60px 0 40px;
}
.eventSec__cnt {
  margin-top: 30px;
}
.eventSec__cnt .topBlock {
  text-align: center;
}
.eventSec__cnt .topBlock .txt1 {
  line-height: 1;
  font-size: 16px;
}
.eventSec__cnt .topBlock .ttl {
  margin: 20px auto 5px;
  width: 352px;
}
.eventSec__cnt .topBlock .txt2 {
  color: var(--cc-ylw);
  line-height: 1.6;
  font-size: 28px;
}
.eventSec__cnt .imgBlock {
  margin: 20px 15px;
}
.eventSec__cnt .imgBlock img {
  width: 100%;
}
.eventSec__cnt .ttlBlock {
  position: relative;
  text-align: center;
}
.eventSec__cnt .ttlBlock .obj {
  overflow: hidden;
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 60px;
}
.eventSec__cnt .ttlBlock .obj .hand {
  position: absolute;
  top: 0;
  width: 76px;
  transition: transform 0.3s;
}
.eventSec__cnt .ttlBlock .obj .hand.-l {
  left: 0;
  transform: translateX(-100%);
}
.eventSec__cnt .ttlBlock .obj .hand.-r {
  right: 0;
  transform: translateX(100%);
}
.eventSec__cnt .ttlBlock .obj.-viewed .hand {
  transform: translateX(0);
}
.eventSec__cnt .ttlBlock .txt1 {
  justify-content: center;
  display: flex;
  align-items: baseline;
  line-height: 1;
  font-size: 18px;
}
.eventSec__cnt .ttlBlock .txt1 .ylw {
  color: var(--cc-ylw);
  font-family: var(--ff-enfont);
  font-size: 50px;
}
.eventSec__cnt .ttlBlock .txt1 .txtL {
  font-size: 20px;
}
.eventSec__cnt .ttlBlock .txt2 {
  line-height: 1;
  margin-top: 0.5em;
  font-size: 20px;
}
.eventSec__cnt .noteList {
  display: flex;
  flex-direction: column;
  font-family: var(--ff-txt);
  line-height: 2;
  margin: 30px 15px 0;
  gap: 5px;
  font-size: 14px;
}
.eventSec__cnt .noteList li {
  text-indent: -0.5em;
  padding-left: 0.5em;
}
.eventSec .cntList {
  display: flex;
  flex-direction: column;
  margin: 30px auto 0;
  width: 345px;
  gap: 15px;
}

.voiceSec {
  background: #2F3053;
  margin: 0 15px;
  padding: 40px 30px 55px;
  border-radius: 10px;
}
.voiceSec .topTxt {
  white-space: nowrap;
  text-align: center;
  font-weight: 500;
  line-height: 160%; /* 25.6px */
  font-size: 16px;
  margin-top: 20px;
}
.voiceSec__cnt {
  display: flex;
  flex-direction: column;
  margin: 30px auto 0;
  background: url(../img/voice-line.svg) left top/100% auto repeat-x;
  width: 280px;
}
.voiceSec__cnt .voiceBox {
  font-family: var(--ff-txt);
  background: url(../img/voice-line.svg) left bottom/100% auto repeat-x;
  padding: 20px 0 15px;
}
.voiceSec__cnt .voiceBox__head {
  display: flex;
  align-items: center;
  gap: 15px;
}
.voiceSec__cnt .voiceBox .star {
  display: flex;
  gap: 3px;
}
.voiceSec__cnt .voiceBox .star img {
  width: 15px;
}
.voiceSec__cnt .voiceBox .name {
  line-height: 1;
  opacity: 0.6;
  font-size: 10px;
}
.voiceSec__cnt .voiceBox__cnt {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.voiceSec__cnt .voiceBox__cnt .ico {
  width: 40px;
}
.voiceSec__cnt .voiceBox__cnt .txtarea {
  font-family: var(--ff-txt) !important;
  line-height: 1.8;
  width: 226px;
  font-size: 14px;
}

.campainSec {
  background: #2F3053;
  margin: 15px 15px 0;
  padding: 40px 30px;
  border-radius: 10px;
}
.campainSec__cnt {
  max-width: 287px;
  margin: 0 auto;
  padding-top: 5px;
}
.campainSec .c-secTtl {
  margin-bottom: 25px;
}
.campainSec .acItem__cnt__in {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 287px;
  padding-top: 20px;
}
.campainSec .topItems {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-bottom: 50px;
}
.campainSec .topItem {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.campainSec .topItem dt {
  font-family: var(--ff-base);
  color: var(--cc-ylw);
  font-size: 14px;
}
.campainSec .topItem dd {
  line-height: 2;
  font-size: 12px;
}
.campainSec .topItem dd.txtL {
  font-size: 14px;
}
.campainSec .topItem .listTxt {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.campainSec .topItem .listTxt p {
  font-family: var(--ff-txt) !important;
  line-height: 2;
  font-size: 12px;
}
.campainSec .topItem .listTxt p.-indent {
  text-indent: -1.3em;
  padding-left: 1.3em;
}
.campainSec .cntList {
  display: flex;
  flex-direction: column;
  margin: 30px auto 0;
  gap: 15px;
}
.campainSec .acItem {
  position: relative;
}
.campainSec .acItem__label {
  line-height: 1.6;
  position: relative;
  padding: 0 0px 15px;
  border: none;
}
.campainSec .acItem__label:before {
  position: absolute;
  content: "";
  bottom: 0;
  height: 1px;
  left: 0px;
  width: 100%;
  background: rgba(255, 255, 255, 0.1);
}
.campainSec .acItem .txt {
  padding-left: 30px;
  padding-right: 30px;
}
.campainSec .infoCnt {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.campainSec .infoCnt__ttl {
  font-family: var(--ff-base);
  color: var(--cc-ylw);
  font-size: 14px;
}
.campainSec .infoCnt .areaBlock {
  border-radius: 10px;
  background: var(--blue01, #232443);
  padding: 15px 10px 10px;
}
.campainSec .infoCnt .areaBlock__ttl {
  font-family: var(--ff-txt) !important;
  color: var(--white, #FFF);
  font-size: 14px;
  line-height: 160%; /* 22.4px */
  margin-bottom: 15px;
}
.campainSec .infoCnt .areaBlock__cnt {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.campainSec .infoCnt .areaBlock__cnt dl {
  overflow: hidden;
  border-radius: 5px;
}
.campainSec .infoCnt .areaBlock__cnt dl dt {
  background: var(--blue02, #393A5C);
  font-weight: 400;
  font-size: 12px;
  line-height: 160%; /* 22.4px */
  padding: 10px;
}
.campainSec .infoCnt .areaBlock__cnt dl dd {
  display: flex;
  flex-direction: column;
  background: #fff;
  color: var(--blue01, #232443);
  padding: 10px;
  position: relative;
  gap: 2px;
}
.campainSec .infoCnt .areaBlock__cnt dl dd p {
  font-size: 12px;
  line-height: 200%; /* 24px */
  font-family: var(--ff-txt) !important;
}
.campainSec .infoCnt .areaBlock__cnt dl dd p.-indent {
  text-indent: -1.3em;
  padding-left: 1.3em;
}
.campainSec .infoCnt .noteList {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.campainSec .infoCnt .noteList p {
  font-family: var(--ff-txt) !important;
  text-indent: -1.3em;
  padding-left: 1.3em;
  line-height: 2;
  font-size: 12px;
}

.bottomBtn {
  color: #fff;
  position: relative;
}
.bottomBtn__head {
  background: #000;
  height: 80px;
}
.bottomBtn__cnt {
  background: #000;
}
@media screen and (max-width: 768px) {
  .bottomBtn__cnt {
    height: 65px;
  }
}
.bottomBtn .btn {
  padding: 0px 15px 15px;
}
@media screen and (max-width: 768px) {
  .bottomBtn .btn {
    z-index: 9;
    left: 0;
    bottom: 0;
    width: 100%;
    position: fixed;
  }
  .-footerview .bottomBtn .btn {
    position: absolute;
  }
}
.bottomBtn a {
  border-radius: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  width: 100%;
  color: var(--cc-black);
  background: var(--cc-ylw);
  font-weight: 500;
  height: 50px;
  font-size: 18px;
  gap: 15px;
}
.bottomBtn a:after {
  content: "";
  background: url(../img/menu-arw.svg) center center/100% auto no-repeat;
  width: 6.5px;
  height: 11px;
}

.remodal-close {
  position: absolute;
  top: 0px;
  right: 0;
  width: 45px;
  height: 44px;
  background: url(../img/menu_btn-close.svg) center center/100% auto no-repeat;
}
.remodal-close:before {
  display: none;
}

.remodal {
  max-width: 700px;
  padding: 70px 0;
}
.remodal .mdlImg img {
  width: 100%;
}
.remodal.mdlSpecial {
  width: 320px;
}
.remodal.mdlSpecial .imgBox {
  overflow: hidden;
  width: 320px;
  margin: 0 auto;
}
.remodal.mdlSpecial .imgBox img {
  transition: all 0.4s ease-out;
  opacity: 0;
  transform: translateY(30%);
  width: 100%;
}
.remodal.mdlSpecial .txt {
  text-align: center;
  font-family: var(--ff-base);
  position: relative;
  background: var(--cc-ylw);
  border-radius: 10px;
  padding: 20px 15px;
  margin: -5px 5px 35px;
  font-size: 20px;
  font-weight: 500;
  line-height: 160%; /* 32px */
  letter-spacing: -1px;
  font-size: 16px;
}
.remodal.mdlSpecial .txt.-fontL {
  font-size: 20px;
}
.remodal.mdlSpecial .txt::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/mdl-ylwarw.svg) center bottom/100% auto no-repeat;
  width: 21px;
  height: 17px;
  top: -15px;
}
.remodal.mdlSpecial .note {
  display: flex;
  flex-direction: column;
  color: #fff;
  text-align: left;
  gap: 5px;
  font-size: 12px;
}
.remodal.mdlSpecial .note li {
  line-height: 2;
  text-indent: -1.5em;
  padding-left: 1em;
}
.remodal.mdlSpecial.-open .imgBox img {
  opacity: 1;
  transform: translateY(0);
}
.remodal.mdlSpecial .txtCnt {
  padding-top: 30px;
}
.remodal.mdlSpecial .txtCnt__ttl {
  text-align: left;
  font-family: var(--ff-base);
  color: var(--yellow, #F7CF01);
  font-size: 24px;
  font-weight: 500;
  line-height: 120%; /* 28.8px */
  margin-bottom: 25px;
}
.remodal.mdlSpecial .txtCnt__txt {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.remodal.mdlSpecial .txtCnt__txt p {
  font-family: var(--ff-base);
  color: var(--white, #FFF);
  font-size: 14px;
  font-weight: 400;
  line-height: 200%; /* 28px */
}
.remodal.mdlSpecial .btnFix {
  top: 0;
  position: sticky;
  height: 44px;
}

.mdlmovieCnt {
  position: relative;
}
.mdlmovieCnt .movBox {
  position: relative;
  padding-top: 56.25%; /* 16:9 アスペクト比 */
  height: 0;
}
.mdlmovieCnt .movBox iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mdlmovieCnt .remodal-close {
  position: absolute;
  right: 35px;
  top: -40px;
  width: 14px;
  height: 14px;
  background-image: url(../img/mdl-mov-close_icon.svg);
}

@media screen and (min-width: 769px) {
  .menuLink a,
  .bottomBtn a,
  .pcMenu .menuLink a {
    transition: background 0.3s;
  }
  .menuLink a:hover,
  .bottomBtn a:hover,
  .pcMenu .menuLink a:hover {
    background: #fff;
  }
}

.js-step {
  position: relative;
}
.js-step img {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0;
}
.js-step .step-1 {
  position: relative;
  opacity: 1;
}
.js-step[data-step="1"] .step-1 {
  opacity: 1;
}
.js-step[data-step="2"] .step-1, .js-step[data-step="2"] .step-2 {
  opacity: 1;
}
.js-step[data-step="3"] .step-1, .js-step[data-step="3"] .step-2, .js-step[data-step="3"] .step-3 {
  opacity: 1;
}
.js-step[data-step="4"] .step-1, .js-step[data-step="4"] .step-2, .js-step[data-step="4"] .step-3, .js-step[data-step="4"] .step-4 {
  opacity: 1;
}
.js-step[data-step="5"] .step-1, .js-step[data-step="5"] .step-2, .js-step[data-step="5"] .step-3, .js-step[data-step="5"] .step-4, .js-step[data-step="5"] .step-5 {
  opacity: 1;
}
.js-step[data-step="6"] .step-1, .js-step[data-step="6"] .step-2, .js-step[data-step="6"] .step-3, .js-step[data-step="6"] .step-4, .js-step[data-step="6"] .step-5, .js-step[data-step="6"] .step-6 {
  opacity: 1;
}
.js-step[data-step="7"] .step-1, .js-step[data-step="7"] .step-2, .js-step[data-step="7"] .step-3, .js-step[data-step="7"] .step-4, .js-step[data-step="7"] .step-5, .js-step[data-step="7"] .step-6, .js-step[data-step="7"] .step-7 {
  opacity: 1;
}
.js-step[data-step="8"] .step-1, .js-step[data-step="8"] .step-2, .js-step[data-step="8"] .step-3, .js-step[data-step="8"] .step-4, .js-step[data-step="8"] .step-5, .js-step[data-step="8"] .step-6, .js-step[data-step="8"] .step-7, .js-step[data-step="8"] .step-8 {
  opacity: 1;
}
.js-step[data-step="9"] .step-1, .js-step[data-step="9"] .step-2, .js-step[data-step="9"] .step-3, .js-step[data-step="9"] .step-4, .js-step[data-step="9"] .step-5, .js-step[data-step="9"] .step-6, .js-step[data-step="9"] .step-7, .js-step[data-step="9"] .step-8, .js-step[data-step="9"] .step-9 {
  opacity: 1;
}/*# sourceMappingURL=style.css.map */