@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a:hover {
  text-decoration: none !important;
}

img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

ul, ol {
  list-style: none;
}

ul, ol, li, h1, h2, h3, h4, h5, h6, dl, dt, dd, a, strong {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  font-weight: normal;
}

div {
  margin: 0;
  padding: 0;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

img, a img {
  border: none;
}

table {
  letter-spacing: 0.5px;
  border-collapse: collapse;
  border-spacing: 0;
}

iframe {
  border: none;
}

strong {
  font-weight: bold;
}

/* ============================================
 base
============================================ */
.no_pc {
  display: inline;
}

.no_sp {
  display: none;
}

html {
  overflow-y: scroll;
}

.civane {
  font-family: civane-condensed, sans-serif;
  font-weight: 900;
  font-style: normal;
}

html {
  background: #f8f2d6;
}

html, body {
  overflow: hidden;
  width: 100%;
  height: auto;
  color: #000;
  min-width: 320px;
  letter-spacing: -0.2px;
  font-size: 12px;
  background: #f8f2d6 url("https://d20dfxyuz7q532.cloudfront.net/utopia/rickshaw/page/page-repeat-bg.jpg") repeat center/contain;
  line-height: 1.65;
  font-weight: 400;
  font-style: normal;
  font-family: "Shippori Mincho", "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  -webkit-text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  scroll-behavior: smooth;
}

/*-----------------------------------------------------------------
    gloval navi
  ------------------------------------------------------------------*/
.dropdown_nav {
  z-index: 1000000000;
  display: none;
  position: fixed;
  top: 0;
  overflow: scroll;
  margin: 0 0 0 0;
  padding: 0 0 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9) url("https://d20dfxyuz7q532.cloudfront.net/utopia/rickshaw/nav-bg-wrap-sp.jpg") no-repeat center/cover;
}
.dropdown_nav .wrapper {
  position: relative;
  background: url("https://d20dfxyuz7q532.cloudfront.net/utopia/rickshaw/nav-bg-sp.jpg") no-repeat center center;
  background-size: cover;
  box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.6509803922);
  border-radius: 0px;
  width: 90%;
  height: auto;
  margin: 5% auto;
  padding: 7% 10%;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 1.5s cubic-bezier(0, 0, 0.58, 1);
  transition: all 1.5s cubic-bezier(0, 0, 0.58, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.dropdown_nav .wrapper.active::before {
  animation: img-wrap 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: rgba(0, 0, 0, 0.9) url("https://d20dfxyuz7q532.cloudfront.net/utopia/rickshaw/nav-bg-wrap-sp.jpg") no-repeat center/cover;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
@keyframes img-wrap {
  100% {
    transform: translateX(-100%);
  }
}
.dropdown_nav .rickshaw {
  position: absolute;
  left: 8%;
  bottom: 8%;
  width: 28%;
}
.dropdown_nav .nav-copy {
  position: absolute;
  left: 5%;
  bottom: 3%;
  width: 36%;
}
.dropdown_nav .nav-kumo01 {
  position: absolute;
  width: 50%;
  left: -5%;
  top: 6%;
  opacity: 0;
  transform: translateX(-20px);
}
.dropdown_nav .nav-kumo02 {
  position: absolute;
  width: 50%;
  right: -16%;
  bottom: 0;
  opacity: 0;
  transform: translateX(20px);
}

.dropdown_nav_open .fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
.dropdown_nav_open .nav-kumo01 {
  opacity: 0;
  animation-name: leftUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.7s;
}
.dropdown_nav_open .nav-kumo02 {
  opacity: 0;
  animation-name: rightUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  animation-delay: 0.7s;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes leftUpAnime {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 0.7;
    transform: translateX(0);
  }
}
@keyframes rightUpAnime {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 0.7;
    transform: translateX(0);
  }
}
.nav_top {
  margin-top: 45px;
}
.nav_top .nav_img {
  text-align: center;
  margin: 20px auto;
  width: 320px;
}
.nav_top .nav_img img {
  width: 100%;
  max-width: 100%;
}
.nav_top ul.menu {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  /* align-items: center; */
  justify-content: flex-start;
  width: 100%;
  padding: 20px 0;
}
.nav_top .menu li {
  margin: 0 1.5%;
  width: 17%;
  opacity: 0;
}
.nav_top .menu li:nth-child(1) {
  animation-delay: 0.3s;
}
.nav_top .menu li:nth-child(2) {
  animation-delay: 0.35s;
}
.nav_top .menu li:nth-child(3) {
  animation-delay: 0.35s;
}
.nav_top .menu li:nth-child(4) {
  animation-delay: 0.4s;
}
.nav_top .menu li:nth-child(5) {
  animation-delay: 0.45s;
}
.nav_top .menu li:nth-child(6) {
  animation-delay: 0.5s;
}
.nav_top .menu li:nth-child(7) {
  animation-delay: 0.55s;
}
.nav_top .menu li:nth-child(8) {
  animation-delay: 0.6s;
}
.nav_top .menu li:nth-child(9) {
  animation-delay: 0.65s;
}
.nav_top .menu li:nth-child(10) {
  animation-delay: 0.7s;
}
.nav_top .menu li a {
  font-size: 34px;
  font-size: 2.8333333333rem;
  letter-spacing: 1.5px;
  display: block;
  padding: 10px 9px 10px 9px;
  line-height: 18px;
  text-decoration: none;
  color: #fff;
}
.nav_top .menu li a span {
  position: absolute;
  letter-spacing: 0.2px;
  top: 35px;
  left: -15px;
  font-size: 16px;
  font-size: 1.3333333333rem;
}
.nav_top .menu li a .fa-external-link-alt {
  font-size: 12px;
  font-size: 1rem;
}
.nav_top ul.sub-menu {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  /* align-items: center; */
  justify-content: flex-start;
  width: 100%;
}
.nav_top .sub-menu li {
  margin: 1% 0.5%;
  width: 13.5%;
  opacity: 0;
}
.nav_top .sub-menu li:nth-child(1) {
  animation-delay: 0.8s;
}
.nav_top .sub-menu li:nth-child(2) {
  animation-delay: 0.85s;
}
.nav_top .sub-menu li:nth-child(3) {
  animation-delay: 0.9s;
}
.nav_top .sub-menu li:nth-child(4) {
  animation-delay: 0.95s;
}
.nav_top .sub-menu li:nth-child(5) {
  animation-delay: 1s;
}
.nav_top .sub-menu li:nth-child(6) {
  animation-delay: 1.05s;
}
.nav_top .sub-menu li a {
  font-size: 34px;
  font-size: 2.8333333333rem;
  letter-spacing: 1.5px;
  display: block;
  padding: 10px 9px 10px 9px;
  line-height: 18px;
  text-decoration: none;
  color: #fff;
}
.nav_top .sub-menu li a span {
  position: absolute;
  letter-spacing: 0.2px;
  top: 35px;
  left: -15px;
  font-size: 16px;
  font-size: 1.3333333333rem;
}
.nav_top .sub-menu li a .fa-external-link-alt {
  font-size: 12px;
  font-size: 1rem;
}

.lity {
  z-index: 999999999;
}

#ico path {
  stroke-width: 0.3px;
}

.menu-btn {
  z-index: 100000000;
  position: fixed;
  width: 30px;
  right: 25px;
  top: 22px;
  cursor: pointer;
}

.menu_close {
  position: absolute;
  top: 4%;
  right: 5%;
  width: 40px;
  cursor: pointer;
}

.btn-en {
  display: none !important;
}

.btn-reserve {
  z-index: 100000000;
  position: fixed;
  width: 35px;
  right: 0px;
  bottom: 50px;
  cursor: pointer;
}

.btn-en {
  z-index: 100000000;
  position: fixed;
  width: 72px;
  right: 75px;
  top: 20px;
  cursor: pointer;
}

#top {
  position: relative;
  width: 100%;
  height: 1px !important;
  background: #005685;
  text-align: center;
  min-height: 0;
}

section {
  position: relative;
}
section .container {
  margin: 0 auto;
  position: relative;
  padding: 10% 0;
  width: 100%;
  max-width: 1000px;
}
section h2 {
  text-align: center;
  margin-bottom: 30px;
  width: 100%;
  background: rgba(255, 255, 255, 0.35);
  padding: 15px 0;
}
section h2 span {
  position: relative;
  display: inline-block;
  width: 65%;
}
section h2 span img {
  position: relative;
}
section h2 .line {
  position: absolute;
  left: 10%;
  top: 40%;
  width: 78%;
  opacity: 0;
  transform: translate(-20px, -20px);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.7s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.7s cubic-bezier(0, 0, 0.58, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
section h2 .line.img-animation {
  transform: translate(0, 0);
  opacity: 1;
}
section .btn-more {
  text-align: right;
  padding: 0 20px;
}
section .btn-more a {
  font-size: 14px;
  font-size: 3.7333333333vw;
  display: inline-block;
  padding: 0 15px;
  border: 1px solid #045e84;
  color: #045e84;
}

#external-wrapper {
  width: 100%;
  overflow: hidden;
}

@keyframes wobbling_x {
  0% {
    transform: translate(0, -1.5%);
  }
  100% {
    transform: translate(0, 1%);
  }
}
@keyframes floating-x {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(3%);
  }
  60% {
    transform: translateX(-3%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes floating-y {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-2%);
  }
  60% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0);
  }
}
.ico {
  animation: furifuri 2s linear 0s infinite;
}

.photo {
  width: 100%;
  height: 100dvh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
}

.photo-title {
  width: 100%;
  padding: 10px 0;
}

.photo-title h1 {
  text-align: center;
  position: relative;
  width: 140px;
  margin: 0 auto;
  z-index: 1;
  padding: 12px 0;
  color: #fff;
}

.photo-title h1 img {
  position: absolute;
  left: 0;
  top: 16px;
  z-index: -1;
}

.photo-container {
  width: 100%;
}

.photo-container-inner {
  width: 100%;
  position: relative;
}
.photo-container-inner .photo-bg {
  width: 100%;
  height: 100dvh;
  height: calc(var(--vh, 1vh) * 100);
  position: absolute;
  top: 0;
  left: 0;
  transform: translate3d(0, 0, 0);
  background-image: url(https://d20dfxyuz7q532.cloudfront.net/utopia/rickshaw/bg3.jpg);
  background-size: cover;
  background-position: 0% 50%;
  background-repeat: repeat-x;
}
.photo-container-inner .parts-kumo {
  position: absolute;
  opacity: 0.65;
}
.photo-container-inner .parts-kumo.kumo01 {
  width: 27%;
  left: 99%;
  top: 6%;
  opacity: 0.55;
}
.photo-container-inner .parts-kumo.kumo02 {
  width: 27%;
  left: 65%;
  top: 15%;
  opacity: 0.55;
}
.photo-container-inner .parts-kumo.kumo03 {
  width: 34%;
  left: 5%;
  top: 14%;
  opacity: 0.55;
}
.photo-container-inner .scroll-bar {
  position: absolute;
  bottom: calc(15vh + 50px);
  bottom: calc(var(--vh, 1vh) * 15 + 50px);
  right: 0;
  width: 100%;
}
.photo-container-inner .scroll-bar .character-img {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 23%;
}
.photo-container-inner .scroll-bar .character-img.character-img_on {
  opacity: 0;
}
.photo-container-inner .scroll-bar .copy {
  position: absolute;
  left: 28%;
  bottom: -40px;
  width: 45%;
}
.photo-container-inner .main-logo {
  position: absolute;
  left: 3%;
  top: 6%;
  width: 80%;
}
.photo-container-inner .main-sakura {
  position: absolute;
  left: -3%;
  top: 53%;
  width: 120%;
  z-index: 1;
}
.photo-container-inner .kaminarimon {
  position: absolute;
  width: 100%;
  height: 80dvh;
  height: calc(var(--vh, 1vh) * 80);
  top: 10vh;
  left: 0;
  transform: translate3d(0, 0, 0);
  transform-origin: bottom center;
}
.photo-container-inner .kaminarimon.active {
  z-index: 2;
}
.photo-container-inner .kaminarimon .kaminarimon-img {
  transform: translate3d(0, 0, 0);
  position: absolute;
  right: 2%;
  top: 34%;
  width: 80%;
}
.photo-container-inner .kaminarimon .kaminarimon-load {
  transform: translate3d(0, 0, 0);
  position: absolute;
  right: -3%;
  bottom: 19%;
  width: 74%;
}

.photo-container-inner .side-scroll {
  width: 100%;
}

.photo-container-inner .side-scroll-list-wrapper {
  position: relative;
  width: 100%;
  height: 100dvh;
  height: calc(var(--vh, 1vh) * 100);
}

.photo-container-inner .side-scroll-list {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  gap: 0px 0;
  height: 100dvh;
  height: calc(var(--vh, 1vh) * 100);
}
.photo-container-inner .side-scroll-list.active {
  z-index: 2;
}

.photo-container-inner .side-scroll-item {
  display: flex;
  justify-content: center;
  height: 100dvh;
  height: calc(var(--vh, 1vh) * 100);
  padding: 0 1%;
  margin: 0;
}
.photo-container-inner .side-scroll-item .slide-kumo {
  width: 0;
}
.photo-container-inner .side-scroll-item .slide-kumo h3 {
  scale: 0.8;
  margin-top: -9%;
  opacity: 0.8;
}
.photo-container-inner .side-scroll-item.slide-sky {
  width: auto;
}
.photo-container-inner .side-scroll-item.slide-gojunotou .photo-box {
  min-width: 10vw;
  text-align: center;
}
.photo-container-inner .side-scroll-item.slide-gojunotou .photo-box img {
  width: 80%;
}
.photo-container-inner .side-scroll-item.slide-top {
  width: auto;
  padding: 0 40vw;
}
.photo-container-inner .side-scroll-item.slide-top .img-gojunotou {
  display: block;
  position: absolute;
  right: -60%;
  width: 30%;
  bottom: 140px;
}
.photo-container-inner .side-scroll-item.slide-top .img-sky {
  display: block;
  position: absolute;
  left: 87%;
  width: 80%;
  bottom: 140px;
}
.photo-container-inner .side-scroll-item.slide-top .photo-box {
  margin-top: -15%;
  position: relative;
  width: 100vh;
  width: calc(var(--vh, 1vh) * 100);
}
.photo-container-inner .side-scroll-item.slide-top .photo-box .btn-aisatsu {
  display: block;
  position: absolute;
  left: 5%;
  top: 20%;
  width: 14%;
}
.photo-container-inner .side-scroll-item.slide-top:first-child {
  width: 100vw;
  min-width: 100vw;
}
.photo-container-inner .photo-container-inner-item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  height: calc(var(--vh, 1vh) * 100);
  padding: 50px 0 50px;
}
.photo-container-inner .photo-container-inner-item h1 {
  position: relative;
  left: -10%;
  width: 70%;
  top: 5%;
}
.photo-container-inner .photo-container-inner-item .ico {
  position: absolute;
  right: 12%;
  top: 9%;
  width: 15%;
}
.photo-container-inner .photo-container-inner-item h3 {
  margin-bottom: 20px;
  position: absolute;
}
.photo-container-inner .photo-container-inner-item h3.one img {
  width: 120%;
}
.photo-container-inner .photo-container-inner-item h3.y2018 img {
  width: 37%;
}
.photo-container-inner .photo-container-inner-item h3 img {
  width: 70%;
}
.photo-container-inner .photo-container-inner-item .photo-box {
  min-height: 300px;
  min-width: 80vw;
}
.photo-container-inner .photo-container-inner-item .photo-box ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.photo-container-inner .photo-container-inner-item .photo-box ul li {
  width: 430px;
  padding: 0;
}
.photo-container-inner .photo-container-inner-item .photo-box ul li a {
  display: block;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.photo-container-inner .photo-container-inner-item .photo-box ul li a:hover {
  transform: rotate(3deg);
}
.photo-container-inner .photo-container-inner-item .photo-box ul li a img {
  width: 100%;
}
.photo-container-inner .photo-container-inner-item .korekara img {
  width: 50%;
}
.photo-container-inner .photo-container-inner-item .photo-container-inner-item-view {
  display: block;
}

.kumo {
  mix-blend-mode: overlay;
}

footer {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px;
  background: rgba(4, 94, 132, 0.77) url("https://d20dfxyuz7q532.cloudfront.net/utopia/rickshaw/footer/footer-bg.png") no-repeat center/50%;
}
footer .footer-container {
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
}
footer .footer-information .footer-sns {
  margin-top: 20px;
}
footer .footer-information .footer-sns ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer-information .footer-sns li {
  margin: 0 13px;
  font-size: 20px;
  font-size: 5.3333333333vw;
}
footer .footer-information .footer-reserved {
  display: flex;
  justify-content: center;
  align-content: center;
  margin: 20px auto;
}
footer .footer-information .footer-reserved a {
  padding: 6px 20px;
  background: #aa0009;
  color: #fff;
  text-align: center;
  font-size: 22px;
  font-size: 5.8666666667vw;
}
footer .footer-information .footer-tel p {
  color: #fff;
  font-size: 22px;
  font-size: 5.8666666667vw;
  text-align: center;
  line-height: 1.1;
  letter-spacing: 0.5px;
}
footer .footer-information .footer-tel p small {
  font-size: 14px;
  font-size: 3.7333333333vw;
}
footer .footer-nav {
  margin-top: 40px;
}
footer .footer-nav ul {
  display: flex;
  flex-direction: row-reverse;
  align-content: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
footer .footer-nav ul li {
  width: 9%;
  margin: 10px 2.5%;
}
footer .copy {
  margin: 30px auto 10px;
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 10px;
  font-size: 2.6666666667vw;
  letter-spacing: 1px;
}

@keyframes wobbling_x {
  0% {
    transform: translate(0, -1.5%);
  }
  100% {
    transform: translate(0, 1%);
  }
}
@keyframes floating-x {
  0% {
    transform: translateX(0);
  }
  30% {
    transform: translateX(3%);
  }
  60% {
    transform: translateX(-3%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes floating-y {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(-2%);
  }
  60% {
    transform: translateY(3%);
  }
  100% {
    transform: translateY(0);
  }
}
.ico {
  animation: furifuri 2s linear 0s infinite;
}

@media screen and (min-width: 900px) {
  .no_pc {
    display: none;
  }
  .no_sp {
    display: inline;
  }
  html, body {
    overflow: hidden;
    width: 100%;
    height: auto;
    color: #000;
    min-width: 320px;
    letter-spacing: -0.1px;
    font-size: 12px;
    line-height: 1.65;
    font-weight: 400;
    font-style: normal;
    font-family: "Shippori Mincho", "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    -webkit-text-size-adjust: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    scroll-behavior: auto;
  }
  /*-----------------------------------------------------------------
      gloval navi
    ------------------------------------------------------------------*/
  .dropdown_nav {
    z-index: 1000000000;
    display: none;
    position: fixed;
    top: 0;
    overflow: scroll;
    margin: 0 0 0 0;
    padding: 0 0 0;
    width: 100%;
    height: 100dvh;
    height: calc(var(--vh, 1vh) * 100);
    background: rgba(0, 0, 0, 0.9) url("https://d20dfxyuz7q532.cloudfront.net/utopia/rickshaw/nav-bg-wrap-pc.jpg") no-repeat center/cover;
  }
  .dropdown_nav .wrapper {
    position: relative;
    background: url("https://d20dfxyuz7q532.cloudfront.net/utopia/rickshaw/nav-bg-pc.jpg") no-repeat center center;
    background-size: cover;
    box-shadow: 0px 0px 20px 3px rgba(0, 0, 0, 0.6509803922);
    border-radius: 0px;
    width: 90%;
    height: auto;
    max-width: 1100px;
    margin: 60px auto;
    padding: 50px 160px 50px 60px;
  }
  .dropdown_nav .rickshaw {
    position: absolute;
    left: 9%;
    bottom: 13%;
    width: 23%;
  }
  .dropdown_nav .nav-copy {
    position: absolute;
    left: 5%;
    bottom: 5%;
    width: 30%;
  }
  .dropdown_nav .nav-kumo01 {
    position: absolute;
    width: 510px;
    left: 0%;
    top: 70px;
    opacity: 0;
    transform: translateX(-20px);
  }
  .dropdown_nav .nav-kumo02 {
    position: absolute;
    width: 510px;
    right: -130px;
    bottom: auto;
    top: 650px;
    transform: translateX(20px);
  }
  .dropdown_nav_open .fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 0.5s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  .dropdown_nav_open .nav-kumo01 {
    opacity: 0;
    animation-name: leftUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 0.7s;
  }
  .dropdown_nav_open .nav-kumo02 {
    opacity: 0;
    animation-name: rightUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    animation-delay: 0.7s;
  }
  @keyframes fadeUpAnime {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .nav_top {
    margin-top: 30px;
  }
  .nav_top .nav_img {
    text-align: center;
    margin: 20px auto;
    width: 320px;
  }
  .nav_top .nav_img img {
    width: 100%;
    max-width: 100%;
  }
  .nav_top ul.menu {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    /* align-items: center; */
    justify-content: flex-start;
    width: 100%;
  }
  .nav_top .menu li {
    margin: 0 1.5%;
    width: 7%;
    opacity: 0;
  }
  .nav_top .menu li:nth-child(1) {
    animation-delay: 0.2s;
  }
  .nav_top .menu li:nth-child(2) {
    animation-delay: 0.25s;
  }
  .nav_top .menu li:nth-child(3) {
    animation-delay: 0.3s;
  }
  .nav_top .menu li:nth-child(4) {
    animation-delay: 0.35s;
  }
  .nav_top .menu li:nth-child(5) {
    animation-delay: 0.4s;
  }
  .nav_top .menu li:nth-child(6) {
    animation-delay: 0.45s;
  }
  .nav_top .menu li:nth-child(7) {
    animation-delay: 0.5s;
  }
  .nav_top .menu li:nth-child(8) {
    animation-delay: 0.55s;
  }
  .nav_top .menu li:nth-child(9) {
    animation-delay: 0.6s;
  }
  .nav_top .menu li:nth-child(10) {
    animation-delay: 0.65s;
  }
  .nav_top .menu li a {
    font-size: 34px;
    font-size: 2.8333333333rem;
    letter-spacing: 1.5px;
    display: block;
    padding: 7px 7px 7px 7px;
    line-height: 18px;
    text-decoration: none;
    color: #fff;
  }
  .nav_top .menu li a img {
    width: 100%;
  }
  .nav_top .menu li a span {
    position: absolute;
    letter-spacing: 0.2px;
    top: 35px;
    left: -15px;
    font-size: 16px;
    font-size: 1.3333333333rem;
  }
  .nav_top .menu li a .fa-external-link-alt {
    font-size: 12px;
    font-size: 1rem;
  }
  .nav_top ul.sub-menu {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
    /* align-items: center; */
    justify-content: flex-start;
    width: 100%;
  }
  .nav_top .sub-menu li {
    margin: 1% 0.7%;
    width: 6%;
    opacity: 0;
  }
  .nav_top .sub-menu li:nth-child(1) {
    margin-right: 2%;
    animation-delay: 0.8s;
  }
  .nav_top .sub-menu li:nth-child(2) {
    animation-delay: 0.85s;
  }
  .nav_top .sub-menu li:nth-child(3) {
    animation-delay: 0.9s;
  }
  .nav_top .sub-menu li:nth-child(4) {
    animation-delay: 0.95s;
  }
  .nav_top .sub-menu li:nth-child(5) {
    animation-delay: 1s;
  }
  .nav_top .sub-menu li:nth-child(6) {
    animation-delay: 1.05s;
  }
  .nav_top .sub-menu li a {
    font-size: 34px;
    font-size: 2.8333333333rem;
    letter-spacing: 1.5px;
    display: block;
    padding: 10px 8px 10px 8px;
    line-height: 18px;
    text-decoration: none;
    color: #fff;
  }
  .nav_top .sub-menu li a img {
    width: 100%;
  }
  .nav_top .sub-menu li a span {
    position: absolute;
    letter-spacing: 0.2px;
    top: 35px;
    left: -15px;
    font-size: 16px;
    font-size: 1.3333333333rem;
  }
  .nav_top .sub-menu li a .fa-external-link-alt {
    font-size: 12px;
    font-size: 1rem;
  }
  .lity {
    z-index: 999999999;
  }
  .menu-btn {
    z-index: 100000000;
    position: fixed;
    width: 30px;
    right: 25px;
    top: 242px;
    cursor: pointer;
  }
  .menu_close {
    position: absolute;
    top: 105px;
    right: 5%;
    width: 60px;
    cursor: pointer;
  }
  .btn-reserve {
    z-index: 100000000;
    position: fixed;
    width: 42px;
    right: 0px;
    bottom: 50px;
    cursor: pointer;
  }
  .btn-en {
    z-index: 100000000;
    position: fixed;
    width: 100px;
    right: 28px;
    top: 20px;
    cursor: pointer;
  }
  #top {
    position: relative;
    width: 100%;
    height: 1px;
    background: #005685;
    text-align: center;
  }
  .word {
    display: flex;
    margin-right: 1rem;
  }
  section {
    position: relative;
    padding-top: 30px;
  }
  section .container {
    margin: 0 auto;
    position: relative;
    padding: 100px 0;
    width: 100%;
    max-width: none;
  }
  section h2 {
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
    background: rgba(255, 255, 255, 0.35);
    padding: 30px 0;
  }
  section h2 span {
    position: relative;
    display: inline-block;
    width: 500px;
  }
  section h2 span img {
    position: relative;
  }
  section h2 .line {
    position: absolute;
    left: 10%;
    top: 34%;
    width: 80%;
    opacity: 0;
    transform: translate(-20px, -20px);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.7s cubic-bezier(0, 0, 0.58, 1);
    transition: all 0.7s cubic-bezier(0, 0, 0.58, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  section h2 .line.img-animation {
    transform: translate(0, 0);
    opacity: 1;
  }
  section .btn-more {
    margin: 40px auto 0;
    text-align: right;
    padding: 0 0px;
    max-width: 1000px;
  }
  section .btn-more a {
    font-size: 26px;
    font-size: 2.1666666667rem;
    display: inline-block;
    padding: 0 20px;
    border: 1px solid #045e84;
    color: #045e84;
  }
  #external-wrapper {
    width: 100%;
    overflow: hidden;
  }
  .fixed {
    min-height: 100dvh;
    min-height: calc(var(--vh, 1vh) * 100);
  }
  .fixed.active {
    opacity: 1;
  }
  .fixed .bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    height: calc(var(--vh, 1vh) * 100);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: 50% 0%;
  }
  .fixed .bg.bg-photo {
    background-image: url("https://d20dfxyuz7q532.cloudfront.net/utopia/rickshaw/bg3.jpg");
    background-position: 0% 50%;
    background-repeat: repeat-x;
  }
  .fixed .bg.bg01 {
    background-image: url("https://d20dfxyuz7q532.cloudfront.net/utopia/creephyp/15th/0210/bg03.jpg");
    background-position: 50% 80%;
  }
  .fixed .bg.bg02 {
    background-image: url("https://d20dfxyuz7q532.cloudfront.net/utopia/creephyp/15th/0210/bg02.jpg");
  }
  .fixed .bg.bg03 {
    background-image: url("https://d20dfxyuz7q532.cloudfront.net/utopia/creephyp/15th/0210/bg01.jpg");
  }
  .fancybox-close-small {
    display: none;
  }
  footer {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 20px;
    background: rgba(4, 94, 132, 0.77) url("https://d20dfxyuz7q532.cloudfront.net/utopia/rickshaw/footer/footer-bg.png") no-repeat center 35%/290px;
  }
  footer .footer-container {
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-direction: row;
    align-content: center;
    justify-content: space-between;
  }
  footer .footer-information .footer-sns {
    margin-top: 20px;
  }
  footer .footer-information .footer-sns ul {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  footer .footer-information .footer-sns li {
    margin: 0 13px;
    font-size: 30px;
    font-size: 2.5rem;
  }
  footer .footer-information .footer-reserved {
    display: flex;
    justify-content: center;
    align-content: center;
    margin: 20px auto;
  }
  footer .footer-information .footer-reserved a {
    letter-spacing: -0.1px;
    padding: 6px 20px;
    background: #aa0009;
    color: #fff;
    text-align: center;
    font-size: 28px;
    font-size: 2.3333333333rem;
  }
  footer .footer-information .footer-tel p {
    color: #fff;
    font-size: 32px;
    font-size: 2.6666666667rem;
    text-align: center;
    line-height: 1.1;
    letter-spacing: 0.5px;
  }
  footer .footer-information .footer-tel p small {
    font-size: 20px;
    font-size: 1.6666666667rem;
  }
  footer .footer-nav {
    margin-top: 20px;
  }
  footer .footer-nav ul {
    display: flex;
    flex-direction: row-reverse;
    align-content: flex-start;
    justify-content: center;
    flex-wrap: wrap;
  }
  footer .footer-nav ul li {
    width: 31px;
    margin: 10px 10px;
  }
  footer .copy {
    margin: 30px auto 10px;
    width: 100%;
    color: #fff;
    text-align: center;
    font-size: 16px;
    font-size: 1.3333333333rem;
    letter-spacing: 1px;
  }
  .ico {
    animation: furifuri 2s linear 0s infinite;
  }
  .photo {
    width: 100%;
    height: 100dvh;
    height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
  }
  .photo-title {
    width: 100%;
    padding: 10px 0;
  }
  .photo-title h1 {
    text-align: center;
    position: relative;
    width: 140px;
    margin: 0 auto;
    z-index: 1;
    padding: 12px 0;
    color: #fff;
  }
  .photo-title h1 img {
    position: absolute;
    left: 0;
    top: 16px;
    z-index: -1;
  }
  .photo-container {
    width: 100%;
  }
  .photo-container-inner {
    width: 100%;
    position: relative;
  }
  .photo-container-inner .photo-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform: translate3d(0, 0, 0);
    background-image: url(https://d20dfxyuz7q532.cloudfront.net/utopia/rickshaw/bg3.jpg);
    background-position: 0% 50%;
    background-repeat: repeat-x;
  }
  .photo-container-inner .parts-kumo {
    position: absolute;
    opacity: 0.65;
  }
  .photo-container-inner .parts-kumo.kumo01 {
    width: 20%;
    left: 116%;
    top: 8%;
    opacity: 0.55;
  }
  .photo-container-inner .parts-kumo.kumo02 {
    width: 27%;
    left: 65%;
    top: 15%;
    opacity: 0.55;
  }
  .photo-container-inner .parts-kumo.kumo03 {
    width: 24%;
    left: 11%;
    top: 8%;
    opacity: 0.55;
  }
  .photo-container-inner .scroll-bar {
    position: absolute;
    bottom: 50px;
    right: 0;
    width: 100%;
  }
  .photo-container-inner .scroll-bar .character-img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 14%;
  }
  .photo-container-inner .scroll-bar .character-img.character-img_on {
    opacity: 0;
  }
  .photo-container-inner .scroll-bar .copy {
    position: absolute;
    left: 3%;
    bottom: 0;
    width: 15%;
  }
  .photo-container-inner .main-logo {
    position: absolute;
    left: 3%;
    top: 9%;
    width: 50%;
  }
  .photo-container-inner .main-sakura {
    position: absolute;
    left: -1%;
    top: 56%;
    width: 69%;
  }
  .photo-container-inner .kaminarimon {
    position: absolute;
    width: 100%;
    height: 100dvh;
    height: calc(var(--vh, 1vh) * 100);
    top: 0;
    left: 0;
    transform-origin: bottom center;
  }
  .photo-container-inner .kaminarimon.active {
    z-index: 1;
  }
  .photo-container-inner .kaminarimon .kaminarimon-img {
    position: absolute;
    right: 5%;
    top: 21%;
    width: 45%;
  }
  .photo-container-inner .kaminarimon .kaminarimon-load {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
  }
  .photo-container-inner .side-scroll {
    width: 100%;
  }
  .photo-container-inner .side-scroll-list-wrapper {
    position: relative;
    width: 100%;
    height: 100dvh;
    height: calc(var(--vh, 1vh) * 100);
  }
  .photo-container-inner .side-scroll-list {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    gap: 0px 0;
    height: 100dvh;
    height: calc(var(--vh, 1vh) * 100);
  }
  .photo-container-inner .side-scroll-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 100dvh;
    height: calc(var(--vh, 1vh) * 100);
    padding: 0 1%;
  }
  .photo-container-inner .side-scroll-item.dammy-item {
    display: none;
  }
  .photo-container-inner .side-scroll-item .slide-kumo {
    width: auto;
  }
  .photo-container-inner .side-scroll-item.slide-sky {
    width: 200vw;
  }
  .photo-container-inner .side-scroll-item.slide-gojunotou .photo-box {
    min-width: 30vw;
  }
  .photo-container-inner .side-scroll-item.slide-top {
    width: 220vw;
    padding: 0 20vw;
  }
  .photo-container-inner .side-scroll-item.slide-top .img-gojunotou {
    display: block;
    position: absolute;
    right: -71%;
    width: 30%;
    bottom: 110px;
  }
  .photo-container-inner .side-scroll-item.slide-top .img-sky {
    display: block;
    position: absolute;
    left: 150%;
    width: 80%;
    bottom: 110px;
  }
  .photo-container-inner .side-scroll-item.slide-top .photo-box {
    width: 100vw;
    margin-top: -10%;
    position: relative;
  }
  .photo-container-inner .side-scroll-item.slide-top .photo-box > img {
    width: 80%;
  }
  .photo-container-inner .side-scroll-item.slide-top .photo-box .btn-aisatsu {
    display: block;
    position: absolute;
    left: 5%;
    width: 11%;
    top: 20%;
  }
  .photo-container-inner .photo-container-inner-item {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    height: calc(var(--vh, 1vh) * 100);
    padding: 50px 0 50px;
  }
  .photo-container-inner .photo-container-inner-item h1 {
    position: relative;
    left: -10%;
    width: 70%;
    top: 5%;
  }
  .photo-container-inner .photo-container-inner-item .ico {
    position: absolute;
    right: 12%;
    top: 9%;
    width: 15%;
  }
  .photo-container-inner .photo-container-inner-item h3 {
    margin-bottom: 20px;
  }
  .photo-container-inner .photo-container-inner-item h3.one img {
    width: 120%;
  }
  .photo-container-inner .photo-container-inner-item h3.y2018 img {
    width: 37%;
  }
  .photo-container-inner .photo-container-inner-item h3 img {
    width: 70%;
  }
  .photo-container-inner .photo-container-inner-item .photo-box {
    min-height: 300px;
    min-width: 80vw;
  }
  .photo-container-inner .photo-container-inner-item .photo-box ul {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .photo-container-inner .photo-container-inner-item .photo-box ul li {
    width: 430px;
    padding: 0;
  }
  .photo-container-inner .photo-container-inner-item .photo-box ul li a {
    display: block;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    transition: all 0.3s cubic-bezier(0, 0, 0.58, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }
  .photo-container-inner .photo-container-inner-item .photo-box ul li a:hover {
    transform: rotate(3deg);
  }
  .photo-container-inner .photo-container-inner-item .photo-box ul li a img {
    width: 100%;
  }
  .photo-container-inner .photo-container-inner-item .korekara img {
    width: 50%;
  }
  .photo-container-inner .photo-container-inner-item .photo-container-inner-item-view {
    display: block;
  }
  .kumo {
    mix-blend-mode: overlay;
  }
  @keyframes wobbling_x {
    0% {
      transform: translate(0, -1.5%);
    }
    100% {
      transform: translate(0, 1%);
    }
  }
  .ico {
    animation: furifuri 2s linear 0s infinite;
  }
  .photo {
    width: 100%;
    height: 100dvh;
    height: calc(var(--vh, 1vh) * 100);
    overflow: hidden;
  }
  .photo-title {
    width: 100%;
    padding: 10px 0;
  }
  .photo-title h1 {
    text-align: center;
    position: relative;
    width: 140px;
    margin: 0 auto;
    z-index: 1;
    padding: 12px 0;
    color: #fff;
  }
  .photo-title h1 img {
    position: absolute;
    left: 0;
    top: 16px;
    z-index: -1;
  }
  .photo-container {
    width: 100%;
  }
  .photo-container-inner .side-scroll {
    width: 100%;
  }
  .photo-container-inner .side-scroll-list-wrapper {
    position: relative;
    width: 100%;
    height: 100dvh;
    height: calc(var(--vh, 1vh) * 100);
  }
  .photo-container-inner .side-scroll-list {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    gap: 0px 0;
    height: 100dvh;
    height: calc(var(--vh, 1vh) * 100);
  }
}
/* iOS Safari での長押し時のコールアウト抑止（非標準・効果限定） */
@supports (-webkit-touch-callout: none) {
  a {
    -webkit-touch-callout: none; /* 長押しのコールアウトを抑止（完全ではない） */
    -webkit-tap-highlight-color: transparent; /* タップ時の灰色ハイライトを消す */
  }
}
/* テキスト選択を無効化（長押しでの選択→コールアウトを起きにくくする） */
a, a * {
  -webkit-user-select: none;
  user-select: none;
}

/* キーボード操作の可視フォーカスは維持しつつ、タッチでは輪郭を出さない */
a:focus {
  outline: none;
}

a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* タッチデバイス限定でより積極的に輪郭を消す */
@media (hover: none) and (pointer: coarse) {
  a {
    outline: none;
  }
}
/* タッチ端末だけに適用（iPhone含む） */
@media (hover: none) and (pointer: coarse) {
  a, button, [role=button] {
    -webkit-tap-highlight-color: transparent; /* タップ時の白/灰ハイライト除去 */
    -webkit-touch-callout: none; /* 古いiOS向け補助 */
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y; /* リンク上からの縦スクロールを許可 */
  }
  /* フォーカスの白枠/影を消す（タッチ時のみ） */
  a:focus, a:active, a:focus-visible,
  button:focus, button:active, button:focus-visible,
  [role=button]:focus, [role=button]:active, [role=button]:focus-visible {
    outline: 0 !important;
    box-shadow: none !important;
  }
}
/* PCでは可視フォーカスを維持 */
@media (hover: hover) and (pointer: fine) {
  a:focus-visible, button:focus-visible, [role=button]:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
  }
}

/*# sourceMappingURL=common.css.map */
