  @import url("https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@500&display=swap");
.pc_only {
  display: block;
}
@media (max-width: 767px) {
  .pc_only {
    display: none;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .pc_only {
    display: none;
  }
}
@media (min-width: 768px) and (max-height: 700px) {
  .pc_only {
    display: none;
  }
}

.sp_only {
  display: none;
}
@media (max-width: 767px) {
  .sp_only {
    display: block;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .sp_only {
    display: none;
  }
}
@media (min-width: 768px) and (max-height: 700px) {
  .sp_only {
    display: none;
  }
}

.sp_yoko_only {
  display: none;
}
@media (max-width: 767px) {
  .sp_yoko_only {
    display: none;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .sp_yoko_only {
    display: block;
  }
}
@media (min-width: 768px) and (max-height: 700px) {
  .sp_yoko_only {
    display: none;
  }
}

.pc_h700_only {
  display: none;
}
@media (max-width: 767px) {
  .pc_h700_only {
    display: none;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .pc_h700_only {
    display: none;
  }
}
@media (min-width: 768px) and (max-height: 700px) {
  .pc_h700_only {
    display: block;
  }
}

@media (max-width: 767px) {
  img {
    width: 100%;
    height: auto;
  }
}

body, html {
  overflow-y: hidden;
}
@media (max-width: 767px) {
  body, html {
    height: 100%;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  body, html {
    height: calc(var(--fullvh, 1vh) * 100);
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  body, html {
    height: calc(var(--fullvh, 1vh) * 100);
  }
}
body.active, html.active {
  overflow: auto;
}
@media (max-width: 767px) {
  body.active, html.active {
    height: auto;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  body.active, html.active {
    height: auto;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  body.active, html.active {
    height: auto;
  }
}

.fadein {
  opacity: 0;
  -webkit-transform: translate(0, 20px);
          transform: translate(0, 20px);
  -webkit-transition: all 500ms;
  transition: all 500ms;
}
.fadein.scrollin {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

.eachTextAnime span span {
  opacity: 0;
  display: inline-block;
}

@-webkit-keyframes text_anime_on {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  80% {
    opacity: 0;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}

@keyframes text_anime_on {
  0% {
    opacity: 0;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  80% {
    opacity: 0;
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
}
.scroll_icon {
  position: fixed;
  bottom: 15%;
  right: 10%;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  display: none;
  pointer-events: none;
}
@media (max-width: 767px) {
  .scroll_icon {
    width: 10px;
    bottom: 9%;
    right: 4%;
  }
}
.scroll_icon.scroll_icon_w {
  display: none;
}
.scroll_icon.scroll_icon_w span.arrow span {
  border-top: solid 10px #fff;
  border-left: solid 8px transparent;
  border-right: solid 8px transparent;
}
@media (max-width: 767px) {
  .scroll_icon.scroll_icon_w span.arrow span {
    border-top: solid 8px #fff;
    border-left: solid 5px transparent;
    border-right: solid 5px transparent;
  }
}
.scroll_icon span.arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 6px;
}
.scroll_icon span.arrow span {
  width: 10px;
  height: 0;
  border-top: solid 10px #000;
  border-left: solid 8px transparent;
  border-right: solid 8px transparent;
  display: inline-block;
  margin-bottom: 4px;
  -webkit-animation: arrow_anim 2s infinite;
          animation: arrow_anim 2s infinite;
}
@media (max-width: 767px) {
  .scroll_icon span.arrow span {
    border-top: solid 8px #000;
    border-left: solid 5px transparent;
    border-right: solid 5px transparent;
  }
}
.scroll_icon span.arrow span:nth-of-type(1) {
  -webkit-animation-delay: -1s;
          animation-delay: -1s;
}
.scroll_icon span.arrow span:nth-of-type(2) {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}
.scroll_icon span.arrow span:nth-of-type(3) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}
@-webkit-keyframes arrow_anim {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes arrow_anim {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  90% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

#ghibli_float {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  text-align: center;
  z-index: 3;
  display: none;
}
#ghibli_float a {
  display: block;
}
#ghibli_float span {
  position: relative;
}
@media (max-width: 767px) {
  #ghibli_float span {
    max-width: 330px;
    margin: 0 auto;
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  #ghibli_float span {
    max-width: 290px;
  }
}
#ghibli_float span .main_txt_02 {
  position: absolute;
  top: -1px;
  left: 43%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  pointer-events: all;
}
@media (max-width: 767px) {
  #ghibli_float span .main_txt_02 {
    width: 38%;
    max-width: 130px;
  }
}
@media (max-width: 767px) {
  #ghibli_float {
    padding: 10px 4%;
  }
  #ghibli_float img {
    width: 100%;
    max-width: 330px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) and (orientation: landscape) {
  #ghibli_float img {
    max-width: 290px;
  }
}

#loading {
  width: 100%;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  z-index: 10;
}
@media (max-width: 767px) {
  #loading {
    height: calc(var(--fullvh, 1vh) * 100);
  }
}
#loading #loading_anim {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
#loading #loading_anim svg {
  width: 300px !important;
}
@media (max-width: 767px) {
  #loading #loading_anim svg {
    width: 162px !important;
  }
}

.l-header {
  margin-top: 0;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
.l-header.active {
  margin-top: -173px;
}
@media (max-width: 767px) {
  .l-header.active {
    margin-top: 0;
  }
}

.swiper-slide {
  overflow: hidden;
  position: relative;
}

#ghibli_park .l-main {
  padding: 0;
}
@media (max-width: 767px) {
  #ghibli_park .l-main {
    padding: 0;
    margin-top: 0 !important;
  }
}
#ghibli_park #message .txt_box {
  pointer-events: none;
}
#ghibli_park #message .txt_box .ttl_block h2 {
  overflow: hidden;
}
#ghibli_park #message .txt_box .ttl_block h2 span {
  -webkit-transform: translateY(240%);
          transform: translateY(240%);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
@-webkit-keyframes fadeInText {
  0% {
    -webkit-transform: translateY(240%);
            transform: translateY(240%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInText {
  0% {
    -webkit-transform: translateY(240%);
            transform: translateY(240%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateY(-20%);
            transform: translateY(-20%);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
#ghibli_park #message .txt_box .txt {
  display: table;
  margin: 0 auto;
}
#ghibli_park #message .txt_box.txt_anim .ttl_block h2 span:nth-child(1) {
  -webkit-animation: fadeInText 1s ease 0.1s forwards;
          animation: fadeInText 1s ease 0.1s forwards;
}
#ghibli_park #message .txt_box.txt_anim .ttl_block h2 span:nth-child(2) {
  -webkit-animation: fadeInText 1s ease 0.2s forwards;
          animation: fadeInText 1s ease 0.2s forwards;
}
#ghibli_park #message .txt_box.txt_anim .ttl_block h2 span:nth-child(3) {
  -webkit-animation: fadeInText 1s ease 0.3s forwards;
          animation: fadeInText 1s ease 0.3s forwards;
}
#ghibli_park #message .txt_box.txt_anim .ttl_block h2 span:nth-child(4) {
  -webkit-animation: fadeInText 1s ease 0.4s forwards;
          animation: fadeInText 1s ease 0.4s forwards;
}
#ghibli_park #message .txt_box.txt_anim .ttl_block h2 span:nth-child(5) {
  -webkit-animation: fadeInText 1s ease 0.5s forwards;
          animation: fadeInText 1s ease 0.5s forwards;
}
#ghibli_park #message .txt_box.txt_anim .ttl_block h2 span:nth-child(6) {
  -webkit-animation: fadeInText 1s ease 0.6s forwards;
          animation: fadeInText 1s ease 0.6s forwards;
}
#ghibli_park #message .txt_box.txt_anim .ttl_block h2 span:nth-child(7) {
  -webkit-animation: fadeInText 1s ease 0.7s forwards;
          animation: fadeInText 1s ease 0.7s forwards;
}
#ghibli_park #message .txt_box.txt_anim .ttl_block h2 span:nth-child(8) {
  -webkit-animation: fadeInText 1s ease 0.8s forwards;
          animation: fadeInText 1s ease 0.8s forwards;
}
#ghibli_park #message .txt_box.txt_anim .ttl_block h2 span:nth-child(9) {
  -webkit-animation: fadeInText 1s ease 0.9s forwards;
          animation: fadeInText 1s ease 0.9s forwards;
}
#ghibli_park #message .txt_box.txt_anim .ttl_block h2 span:nth-child(10) {
  -webkit-animation: fadeInText 1s ease 1s forwards;
          animation: fadeInText 1s ease 1s forwards;
}
#ghibli_park #message .txt_box.txt_anim .ttl_block h2 span:nth-child(11) {
  -webkit-animation: fadeInText 1s ease 1.1s forwards;
          animation: fadeInText 1s ease 1.1s forwards;
}
#ghibli_park #message .txt_box.txt_anim .ttl_block h2 span:nth-child(12) {
  -webkit-animation: fadeInText 1s ease 1.2s forwards;
          animation: fadeInText 1s ease 1.2s forwards;
}
#ghibli_park #message .txt_box.txt_anim .ttl_block h2 span:nth-child(13) {
  -webkit-animation: fadeInText 1s ease 1.3s forwards;
          animation: fadeInText 1s ease 1.3s forwards;
}
#ghibli_park #message .txt_box.txt_anim .ttl_block h2 span:nth-child(14) {
  -webkit-animation: fadeInText 1s ease 1.4s forwards;
          animation: fadeInText 1s ease 1.4s forwards;
}
#ghibli_park #message .txt_box.txt_anim .ttl_block h2 span:nth-child(15) {
  -webkit-animation: fadeInText 1s ease 1.5s forwards;
          animation: fadeInText 1s ease 1.5s forwards;
}
#ghibli_park #message .txt_box.txt_anim .ttl_block h2 span:nth-child(16) {
  -webkit-animation: fadeInText 1s ease 1.6s forwards;
          animation: fadeInText 1s ease 1.6s forwards;
}
#ghibli_park #message .txt_box.txt_anim .ttl_block h2 span:nth-child(17) {
  -webkit-animation: fadeInText 1s ease 1.7s forwards;
          animation: fadeInText 1s ease 1.7s forwards;
}
#ghibli_park #message .main_block {
  position: relative;
  height: 100vh;
  width: 100%;
}
#ghibli_park #message .main_block.active .swiper-slide-prev {
  -webkit-transition: 1s 1s !important;
  transition: 1s 1s !important;
}
#ghibli_park #message .main_block.active .swiper-slide-prev span {
  width: 200vw;
  -webkit-transition: 4s !important;
  transition: 4s !important;
}
#ghibli_park #message .main_block.active .slide02.swiper-slide-active span.swiper-bg {
  -webkit-transition: 2s !important;
  transition: 2s !important;
}
#ghibli_park #message .main_block.active .swiper-slide-active {
  opacity: 1 !important;
  -webkit-transition: 1s 2s !important;
  transition: 1s 2s !important;
}
#ghibli_park #message .main_block.active .swiper-slide-active span.swiper-bg {
  position: absolute;
  width: 130vw;
}
#ghibli_park #message .main_block.active .swiper-slide-next {
  opacity: 0 !important;
}
#ghibli_park #message .main_block .swiper-slide {
  width: 100%;
  height: 100vh !important;
}
@media (max-width: 767px) {
  #ghibli_park #message .main_block .swiper-slide {
    height: calc(var(--vh, 1vh) * 100) !important;
  }
}
#ghibli_park #message .main_block .swiper-slide > .swiper-bg {
  width: 100vw;
  height: 100vh;
  -webkit-transition: 3s !important;
  transition: 3s !important;
  display: block;
  top: 0;
  position: absolute;
}
@media (max-width: 767px) {
  #ghibli_park #message .main_block .swiper-slide > .swiper-bg {
    height: calc(var(--vh, 1vh) * 100);
  }
}
#ghibli_park #message .main_block .slide01 > span.swiper-bg, #ghibli_park #message .main_block .slide06 > span.swiper-bg {
  background: #fff;
}
#ghibli_park #message .main_block .slide02 > span.swiper-bg {
  background: url(/ghibli-park/images/main_bg_01.jpg) no-repeat right top/cover;
  right: 0;
}
@media (max-width: 767px) {
  #ghibli_park #message .main_block .slide02 > span.swiper-bg {
    left: 50%;
    top: 0;
    margin: 0 auto;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    background: url(/ghibli-park/images/main_bg_01_sp.jpg) no-repeat center top/cover;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  #ghibli_park #message .main_block .slide02 > span.swiper-bg {
    left: 50%;
    top: 0;
    margin: 0 auto;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    background: url(/ghibli-park/images/main_bg_01_sp.jpg) no-repeat center top/cover;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .main_block .slide02 > span.swiper-bg {
    left: auto;
    margin: 0 auto;
    -webkit-transform: none;
            transform: none;
    background: url(/ghibli-park/images/main_bg_01.jpg) no-repeat right top/cover;
  }
}
#ghibli_park #message .main_block .slide03 > span.swiper-bg {
  background: url(/ghibli-park/images/main_bg_02.jpg) no-repeat left top/cover;
  left: 0;
}
@media (max-width: 767px) {
  #ghibli_park #message .main_block .slide03 > span.swiper-bg {
    background: url(/ghibli-park/images/main_bg_02_sp.jpg) no-repeat left top/cover;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .main_block .slide03 > span.swiper-bg {
    background: url(/ghibli-park/images/main_bg_02.jpg) no-repeat left top/cover;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  #ghibli_park #message .main_block .slide03 > span.swiper-bg {
    background: url(/ghibli-park/images/main_bg_02_sp.jpg) no-repeat center top/cover;
  }
}
#ghibli_park #message .main_block .slide04 > span.swiper-bg {
  background: url(/ghibli-park/images/main_bg_03.jpg) no-repeat center center/cover;
  left: 50%;
  top: 50%;
  margin: 0 auto;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  #ghibli_park #message .main_block .slide04 > span.swiper-bg {
    background: url(/ghibli-park/images/main_bg_03_sp.jpg) no-repeat center center/cover;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .main_block .slide04 > span.swiper-bg {
    background: url(/ghibli-park/images/main_bg_03.jpg) no-repeat center center/cover;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  #ghibli_park #message .main_block .slide04 > span.swiper-bg {
    background: url(/ghibli-park/images/main_bg_03_sp.jpg) no-repeat center center/cover;
  }
}
#ghibli_park #message .main_block .slide05 > span.swiper-bg {
  background: url(/ghibli-park/images/main_bg_04.jpg) no-repeat left top/cover;
  left: 0;
}
@media (max-width: 767px) {
  #ghibli_park #message .main_block .slide05 > span.swiper-bg {
    background: url(/ghibli-park/images/main_bg_04_sp.jpg) no-repeat left top/cover;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .main_block .slide05 > span.swiper-bg {
    background: url(/ghibli-park/images/main_bg_04.jpg) no-repeat left top/cover;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: portrait) {
  #ghibli_park #message .main_block .slide05 > span.swiper-bg {
    background: url(/ghibli-park/images/main_bg_04_sp.jpg) no-repeat center top/cover;
  }
}
#ghibli_park #message .main_block .swiper-slide .op0 {
  opacity: 0;
}
#ghibli_park #message .main_block .swiper-slide .op0 span {
  opacity: 0;
}
#ghibli_park #message .panelInner {
  position: relative;
}
#ghibli_park #message .txt_box {
  position: fixed;
  top: 42%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 5;
  -webkit-transition: 2s;
  transition: 2s;
  padding-top: 70px;
}
#ghibli_park #message .txt_box.active_sl02 {
  top: 50%;
  -webkit-transition: 1s;
  transition: 1s;
}
@media (max-width: 767px) {
  #ghibli_park #message .txt_box {
    width: 90%;
    padding-top: 44px;
    top: 45%;
  }
}
@media (max-height: 550px) and (orientation: portrait) {
  #ghibli_park #message .txt_box {
    padding-top: 34px;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .txt_box {
    padding-top: 20px;
  }
}
#ghibli_park #message .txt_box .ttl_block {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 700px;
}
@media (max-width: 767px) {
  #ghibli_park #message .txt_box .ttl_block {
    width: 100%;
    line-height: 1;
    max-width: 420px;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .txt_box .ttl_block {
    width: 100%;
    line-height: 1;
    max-width: 350px;
  }
}
#ghibli_park #message .txt_box.active {
  top: 50%;
}
#ghibli_park #message .txt_box.active .ttl_block {
  top: 0;
  -webkit-transition: 2s;
  transition: 2s;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
#ghibli_park #message .txt_box h2 {
  background-color: rgba(255, 255, 255, 0.5);
  padding: 5px 3px 5px 15px;
  display: inline-block;
  vertical-align: bottom;
  width: 100%;
  letter-spacing: 0.3em;
}
@media (max-width: 767px) {
  #ghibli_park #message .txt_box h2 {
    width: 105%;
    letter-spacing: normal;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    left: 50%;
    font-size: 0;
    position: absolute;
    line-height: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    padding: 5px 3px;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .txt_box h2 {
    padding: 3px 2px;
  }
}
#ghibli_park #message .txt_box h2 span {
  display: inline-block;
  vertical-align: bottom;
}
#ghibli_park #message .txt_box h2 span img {
  vertical-align: bottom;
}
@media (max-width: 767px) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(1) {
    width: 8px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(1) {
    width: 5px;
  }
}
@media (max-width: 767px) and (max-height: 600px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(1) {
    width: 6px;
  }
}
@media (max-width: 767px) and (max-height: 550px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(1) {
    width: 5px;
  }
}
@media (max-width: 767px) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(2), #ghibli_park #message .txt_box h2 span:nth-of-type(3), #ghibli_park #message .txt_box h2 span:nth-of-type(9) {
    width: 11px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(2), #ghibli_park #message .txt_box h2 span:nth-of-type(3), #ghibli_park #message .txt_box h2 span:nth-of-type(9) {
    width: 7px;
  }
}
@media (max-width: 767px) and (max-height: 600px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(2), #ghibli_park #message .txt_box h2 span:nth-of-type(3), #ghibli_park #message .txt_box h2 span:nth-of-type(9) {
    width: 9px;
  }
}
@media (max-width: 767px) and (max-height: 550px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(2), #ghibli_park #message .txt_box h2 span:nth-of-type(3), #ghibli_park #message .txt_box h2 span:nth-of-type(9) {
    width: 7px;
  }
}
@media (max-width: 767px) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(4) {
    width: 17px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(4) {
    width: 12px;
  }
}
@media (max-width: 767px) and (max-height: 600px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(4) {
    width: 15px;
  }
}
@media (max-width: 767px) and (max-height: 550px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(4) {
    width: 12px;
  }
}
@media (max-width: 767px) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(5), #ghibli_park #message .txt_box h2 span:nth-of-type(6), #ghibli_park #message .txt_box h2 span:nth-of-type(7), #ghibli_park #message .txt_box h2 span:nth-of-type(8) {
    width: 18px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(5), #ghibli_park #message .txt_box h2 span:nth-of-type(6), #ghibli_park #message .txt_box h2 span:nth-of-type(7), #ghibli_park #message .txt_box h2 span:nth-of-type(8) {
    width: 12px;
  }
}
@media (max-width: 767px) and (max-height: 600px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(5), #ghibli_park #message .txt_box h2 span:nth-of-type(6), #ghibli_park #message .txt_box h2 span:nth-of-type(7), #ghibli_park #message .txt_box h2 span:nth-of-type(8) {
    width: 16px;
  }
}
@media (max-width: 767px) and (max-height: 550px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(5), #ghibli_park #message .txt_box h2 span:nth-of-type(6), #ghibli_park #message .txt_box h2 span:nth-of-type(7), #ghibli_park #message .txt_box h2 span:nth-of-type(8) {
    width: 12px;
  }
}
@media (max-width: 767px) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(10) {
    width: 6px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(10) {
    width: 3px;
  }
}
@media (max-width: 767px) and (max-height: 600px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(10) {
    width: 4px;
  }
}
@media (max-width: 767px) and (max-height: 550px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(10) {
    width: 3px;
  }
}
@media (max-width: 767px) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(11) {
    width: 14px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(11) {
    width: 9px;
  }
}
@media (max-width: 767px) and (max-height: 600px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(11) {
    width: 12px;
  }
}
@media (max-width: 767px) and (max-height: 550px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(11) {
    width: 9px;
  }
}
@media (max-width: 767px) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(12) {
    width: 19px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(12) {
    width: 13px;
  }
}
@media (max-width: 767px) and (max-height: 600px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(12) {
    width: 17px;
  }
}
@media (max-width: 767px) and (max-height: 550px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(12) {
    width: 13px;
  }
}
@media (max-width: 767px) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(13) {
    width: 11px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(13) {
    width: 7px;
  }
}
@media (max-width: 767px) and (max-height: 600px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(13) {
    width: 9px;
  }
}
@media (max-width: 767px) and (max-height: 550px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(13) {
    width: 7px;
  }
}
@media (max-width: 767px) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(14) {
    width: 11px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(14) {
    width: 7px;
  }
}
@media (max-width: 767px) and (max-height: 600px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(14) {
    width: 9px;
  }
}
@media (max-width: 767px) and (max-height: 550px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(14) {
    width: 7px;
  }
}
@media (max-width: 767px) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(15) {
    width: 13px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(15) {
    width: 9px;
  }
}
@media (max-width: 767px) and (max-height: 600px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(15) {
    width: 11px;
  }
}
@media (max-width: 767px) and (max-height: 550px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(15) {
    width: 9px;
  }
}
@media (max-width: 767px) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(16) {
    width: 16px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(16) {
    width: 11px;
  }
}
@media (max-width: 767px) and (max-height: 600px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(16) {
    width: 14px;
  }
}
@media (max-width: 767px) and (max-height: 550px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(16) {
    width: 11px;
  }
}
@media (max-width: 767px) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(17) {
    width: 5px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(17) {
    width: 4px;
  }
}
@media (max-width: 767px) and (max-height: 600px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(17) {
    width: 3px;
  }
}
@media (max-width: 767px) and (max-height: 550px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h2 span:nth-of-type(17) {
    width: 3px;
  }
}
#ghibli_park #message .txt_box h3, #ghibli_park #message .txt_box p {
  opacity: 0;
  -webkit-transform: translate(0, 20px) scale(1.1);
          transform: translate(0, 20px) scale(1.1);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
#ghibli_park #message .txt_box h3.txt_01.active, #ghibli_park #message .txt_box p.txt_01.active {
  opacity: 1;
  -webkit-transition: 1s 2s;
  transition: 1s 2s;
  -webkit-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
}
#ghibli_park #message .txt_box h3.txt_02.active, #ghibli_park #message .txt_box p.txt_02.active {
  opacity: 1;
  -webkit-transition: 1s 2s;
  transition: 1s 2s;
  -webkit-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
}
#ghibli_park #message .txt_box h3.txt_03.active, #ghibli_park #message .txt_box p.txt_03.active {
  opacity: 1;
  -webkit-transition: 1s 2s;
  transition: 1s 2s;
  -webkit-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
}
#ghibli_park #message .txt_box h3.active, #ghibli_park #message .txt_box p.active {
  opacity: 1;
  -webkit-transition: 1s 2s;
  transition: 1s 2s;
  -webkit-transform: translate(0, 0) scale(1);
          transform: translate(0, 0) scale(1);
}
#ghibli_park #message .txt_box h3 span {
  position: relative;
}
#ghibli_park #message .txt_box h3 span > img {
  max-width: none;
}
@media (max-width: 767px) {
  #ghibli_park #message .txt_box h3 span > img {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  #ghibli_park #message .txt_box h3 span {
    max-width: 330px;
    margin: 0 auto;
    width: 100%;
    display: block;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .txt_box h3 span {
    max-width: 290px;
  }
}
@media (max-height: 600px) and (orientation: portrait) {
  #ghibli_park #message .txt_box h3 span {
    width: 80%;
    margin: 0 auto;
  }
}
#ghibli_park #message .txt_box h3 span .main_txt_02 {
  position: absolute;
  top: -1px;
  left: 43%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media (max-width: 767px) {
  #ghibli_park #message .txt_box h3 span .main_txt_02 {
    width: 38%;
    max-width: 130px;
  }
}
#ghibli_park #message .txt_box h3 a {
  line-height: 1;
}
#ghibli_park #message .txt_box h3.active a {
  pointer-events: all;
}
#ghibli_park #message .txt_box p {
  font-family: "Zen Maru Gothic", sans-serif;
  margin-bottom: 17px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (max-width: 767px) {
  #ghibli_park #message .txt_box p {
    margin-bottom: 12px;
  }
}
@media (max-height: 550px) and (orientation: portrait) {
  #ghibli_park #message .txt_box p {
    margin-bottom: 7px;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .txt_box p {
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .txt_box p > span {
    line-height: 0.6;
  }
}
#ghibli_park #message .txt_box p > span > span {
  display: inline;
  font-size: 18px;
  line-height: 1.8;
  padding: 0 3px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media (max-width: 767px) {
  #ghibli_park #message .txt_box p > span > span {
    font-size: 12px;
    line-height: 2.1;
    padding: 1px 3px;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #message .txt_box p > span > span {
    line-height: 1;
    font-size: 11px;
    padding: 0px 3px;
  }
}
@media (max-height: 600px) and (orientation: portrait) {
  #ghibli_park #message .txt_box p > span > span {
    font-size: 10px;
  }
}
#ghibli_park #message .txt_box p > span > span::after {
  content: "";
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
#ghibli_park #message .txt_box p.active > span > span::after {
  width: 100%;
  -webkit-transition: 1s 2.5s;
  transition: 1s 2.5s;
  z-index: -1;
}
#ghibli_park .Vswiper-container {
  height: 100vh;
}
@media (max-width: 767px) {
  #ghibli_park .Vswiper-container {
    height: calc(var(--vh, 1vh) * 100);
  }
}
#ghibli_park #Vswiper-container2 {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  height: 100vh;
}
@media (max-width: 767px) {
  #ghibli_park #Vswiper-container2 {
    height: 100vh;
  }
}
#ghibli_park .swiper-pagination {
  display: none;
  width: 16px;
}
#ghibli_park .swiper-pagination {
  left: 20px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-transition: none;
  transition: none;
}
@media (max-width: 767px) {
  #ghibli_park .swiper-pagination {
    left: 3%;
    top: calc(100vw - 12%);
    -webkit-transform: none;
            transform: none;
  }
}
@media (max-height: 550px) and (orientation: portrait) {
  #ghibli_park .swiper-pagination {
    top: calc(100vw - 30%);
  }
}
#ghibli_park .swiper-pagination span {
  display: inline-block;
}
#ghibli_park .swiper-pagination span:first-of-type {
  display: none;
}
#ghibli_park .swiper-pagination .swiper-pagination-bullet {
  background-color: #808080;
  width: 16px;
  height: 16px;
  border: solid 1px #fff;
  margin: 30px 0;
  opacity: 1;
}
@media (max-width: 767px) {
  #ghibli_park .swiper-pagination .swiper-pagination-bullet {
    margin: 12px 0;
    width: 14px;
    height: 14px;
  }
}
#ghibli_park .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #e60012;
}
#ghibli_park #main {
  background: url(/ghibli-park/images/main_bg_05.jpg) no-repeat top center/cover;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: calc(100vh - 90px);
}
@media (max-width: 767px) {
  #ghibli_park #main {
    height: 100vh;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  #ghibli_park #main {
    height: 100vh;
  }
}
@media (max-width: 767px) {
  #ghibli_park #main h2 {
    margin-top: -9%;
    width: 184px;
  }
}
@media (max-width: 767px) {
  #ghibli_park #main .inner {
    width: 100%;
    height: calc(var(--fullvh, 1vh) * 100);
    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;
  }
}
#ghibli_park #history {
  background: url(/ghibli-park/images/history_bg_01_pc.jpg) no-repeat top center/cover;
  padding: 50px 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: calc(100vh + 100px);
  padding: 160px 0 100px;
}
@media (min-width: 768px) and (max-height: 700px) {
  #ghibli_park #history {
    padding: 0;
  }
}
@media (max-width: 767px) {
  #ghibli_park #history {
    height: 100vh;
    padding: 0;
  }
}
@media screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  #ghibli_park #history {
    height: 100vh;
  }
}
#ghibli_park #history > .inner {
  width: 100%;
}
@media (max-width: 767px) {
  #ghibli_park #history > .inner {
    height: auto;
  }
}
@media (max-width: 767px) {
  #ghibli_park #history #carousel3d .carousel-3d-controls {
    height: 33px;
    margin-top: auto;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
  }
}
#ghibli_park #history #carousel3d .next {
  width: 33px;
  height: 33px;
  background: url(/ghibli-park/images/slider_arrow_next.png) no-repeat top left/100% auto;
  right: 40px;
}
@media (max-width: 767px) {
  #ghibli_park #history #carousel3d .next {
    right: 35px;
  }
}
#ghibli_park #history #carousel3d .next span {
  display: none;
}
#ghibli_park #history #carousel3d .prev {
  width: 33px;
  height: 33px;
  background: url(/ghibli-park/images/slider_arrow_prev.png) no-repeat top left/100% auto;
  left: 40px;
}
@media (max-width: 767px) {
  #ghibli_park #history #carousel3d .prev {
    left: 35px;
  }
}
#ghibli_park #history #carousel3d .prev span {
  display: none;
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #history #carousel3d .carousel-3d-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#ghibli_park #history #carousel3d .carousel-3d-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  background-color: #fff;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  cursor: pointer;
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  #ghibli_park #history #carousel3d .carousel-3d-slide {
    width: 100% !important;
    height: 100% !important;
  }
}
#ghibli_park #history #carousel3d .carousel-3d-slide .btn {
  position: relative;
}
#ghibli_park #history #carousel3d .carousel-3d-slide .btn:hover {
  cursor: pointer;
}
#ghibli_park #history #carousel3d .carousel-3d-slide.current {
  background-color: #fff;
  color: #fff;
  position: relative;
}
#ghibli_park #history #carousel3d .carousel-3d-slide.current span {
  font-size: 20px;
  font-weight: 500;
}
#ghibli_park #history #carousel3d .carousel-3d-slide.current .btn img {
  -webkit-transition: 0.8s;
  transition: 0.8s;
  opacity: 1;
}
#ghibli_park #history #carousel3d .carousel-3d-slide.current .btn::after {
  content: "";
  width: 63px;
  height: 28px;
  background: url(/ghibli-park/images/history_click_icon.svg) no-repeat top left/100% auto;
  position: absolute;
  bottom: 77px;
  right: 37px;
  opacity: 0;
  -webkit-transition: 1s;
  transition: 1s;
}
@media (max-width: 767px) {
  #ghibli_park #history #carousel3d .carousel-3d-slide.current .btn::after {
    width: 16%;
    height: 9%;
    background: url(/ghibli-park/images/history_click_icon.svg) no-repeat top left/100% auto;
    bottom: 15.5%;
    right: 6%;
  }
}
#ghibli_park #history #carousel3d .carousel-3d-slide.current .btn:hover img {
  opacity: 0.7;
}
#ghibli_park #history #carousel3d .carousel-3d-slide.current .btn:hover::after {
  opacity: 1;
}
#ghibli_park #history .history_scroll {
  display: table;
  margin: 30px auto 0;
}
@media (max-width: 767px) {
  #ghibli_park #history .history_scroll {
    width: 120px;
  }
}
#ghibli_park #denki {
  padding: 180px 0 145px;
  width: 100%;
  height: auto !important;
}
@media (max-width: 767px) {
  #ghibli_park #denki {
    padding: 60px 0;
  }
}
#ghibli_park #denki > p {
  display: table;
  margin: 30px auto 0;
  font-size: 17px;
}
@media (max-width: 767px) {
  #ghibli_park #denki > p {
    display: table;
    font-size: 14px;
    width: 85%;
  }
}
#ghibli_park #denki > p a {
  color: #000;
  text-decoration: underline;
  opacity: 1;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#ghibli_park #denki > p a:hover {
  opacity: 0.7;
}
#ghibli_park #denki > p sub {
  bottom: -0.25em;
}
#ghibli_park #denki > p sub, #ghibli_park #denki > p sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}
#ghibli_park #denki .denki_txt_01 {
  text-align: center;
  margin: 0 auto;
  display: table;
  margin: 0px auto 25px;
}
@media (max-width: 767px) {
  #ghibli_park #denki .denki_txt_01 {
    max-width: 225px;
    margin-bottom: 15px;
  }
}
#ghibli_park #denki .inner {
  width: 85%;
  height: 600px;
  background: url(/ghibli-park/images/denki_img_01_pc.jpg) no-repeat top center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
@media (max-width: 767px) {
  #ghibli_park #denki .inner {
    height: auto !important;
    padding: 40px 0;
  }
}
#ghibli_park #denki .box {
  width: 740px;
  background-color: rgba(56, 81, 78, 0.5);
  color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
#ghibli_park #denki .box a {
  padding: 50px 55px 70px;
  display: block;
}
@media (max-width: 767px) {
  #ghibli_park #denki .box a {
    padding: 20px 20px 50px;
  }
}
@media (max-width: 767px) {
  #ghibli_park #denki .box {
    width: 72%;
  }
}
#ghibli_park #denki .box h2 {
  text-align: center;
}
@media (max-width: 767px) {
  #ghibli_park #denki .box h2 {
    max-width: 202px;
    margin: 0 auto;
  }
}
#ghibli_park #denki .box p {
  font-size: 18px;
  font-weight: 500;
  margin-top: 30px;
}
@media (max-width: 767px) {
  #ghibli_park #denki .box p {
    font-size: 13px;
    margin-top: 15px;
  }
}
#ghibli_park #denki .box span {
  position: absolute;
  bottom: 35px;
  right: 55px;
  background: url(/ghibli-park/images/denki_icon.svg) no-repeat top left/100% auto;
  width: 28px;
  height: 27px;
  display: inline-block;
}
@media (max-width: 767px) {
  #ghibli_park #denki .box span {
    width: 18px;
    height: 20px;
    bottom: 30px;
    right: 25px;
  }
}

.modal_bg {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 9;
  display: none;
  top: 0;
  left: 0;
}

.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  max-width: 1300px;
  width: 84%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 60px 95px 50px 105px;
  z-index: 10;
  font-size: 16px;
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .modal {
    font-size: 12px;
    padding: 5% 6% 6%;
  }
}
@media (max-width: 767px) {
  .modal {
    font-size: 14px;
    padding: 10% 6% 14%;
  }
  .modal#modal01 h2 {
    width: 162px;
  }
  .modal#modal02 h2 {
    width: 206px;
  }
  .modal#modal03 h2 {
    width: 132px;
  }
  .modal#modal04 h2 {
    width: 146px;
  }
  .modal#modal05 h2 {
    width: 175px;
  }
  .modal#modal06 h2 {
    width: 194px;
  }
  .modal#modal07 h2 {
    width: 159px;
  }
}
@media (max-height: 550px) and (orientation: portrait) {
  .modal {
    font-size: 11px;
  }
}
.modal .close_btn {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 40px;
  top: 10px;
  cursor: pointer;
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .modal .close_btn {
    bottom: 1%;
  }
}
@media (max-width: 767px) {
  .modal .close_btn {
    top: auto;
    bottom: 6%;
    right: 6%;
  }
}
.modal .close_btn::after, .modal .close_btn::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #323232;
  position: absolute;
  top: 50%;
  left: 0;
}
.modal .close_btn::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modal .close_btn::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal ul h2 {
  margin-bottom: 30px;
}
.modal ul li:last-of-type {
  max-width: 640px;
  width: 50%;
}
@media (max-width: 767px) {
  .modal ul li:last-of-type {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .modal ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .modal ul li {
    width: 100%;
  }
  .modal ul li:first-of-type {
    padding: 0 20px;
  }
  .modal ul h2 {
    margin: 20px 0;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) and (orientation: landscape) {
  .modal ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.swiper-bg > span.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}