/* herder */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
.header.header-sticky {
    background-color: var(--c-header-background);
    -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
}
.header__container {
    position: relative;
    display: flex;
    align-items: center;
    height: 55px;
/*
    background: -moz-linear-gradient(transparent  0 20%, #FFF 100% 40%);
    background: -webkit-linear-gradient(top bottom,180deg, transparent  0 20%, #FFF 100% 40%);
    background: linear-gradient(rgba(255, 255, 255, 0.6),rgb(255, 255, 255,0));
    background-repeat: no-repeat;
    background-position: center top;
    background-size: cover;
*/
}
.header__logo {
    position: relative;
    z-index: 102;
    color: var(--blue);
    transition: color var(--transition-default);
}

.side_nav {
    display: flex;
    flex-grow: 1;
}
.side_nav.is-active {
    visibility: visible;
    transform: translateX(0);
}

.header_menu {
    position: absolute;
    text-align: right;
    width: auto;
    z-index: 102;
    right: 0;
}
.header__menu-list {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: flex-end
}
.header__menu-link {
    position: relative;
    font-size: 14px;
    font-weight: 600;
    justify-content: space-between;
    align-items: center;
}
.header_title_area {
    position: absolute;
    width: 20%;
    text-align: center;
    z-index: 101;
    display: block;
    left: 40%;
}
/*
.header__menu-crossbar {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 16px;
    padding-left: 16px;
    gap: 16px;
    z-index: 1;
}
.header__menu-crossbar::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 1px;
    height: 16px;
    background-color: var(--gray-light);
    margin: auto 0;
}
.header__button {
    min-width: 146px;
    height: 32px;
    font-size: 14px;
    font-weight: 600;
}
.header__button span {
    padding-right: 10px;
}
.header__button-wrapper {
    position: relative;
    min-width: 146px;
    display: flex;
    align-items: center;
    z-index: 1;
}
.header__button--document {
    border-color: #717683;
    color: var(--c-text);
    background-color: var(--white);
}
.header__button--document:not([disabled]):hover {
    color: var(--blue);
    filter: drop-shadow(0px 6px 8px rgba(0, 181, 221, 0.3));
    background: linear-gradient(var(--white), var(--white)) padding-box, linear-gradient(#0059DF 90%, #00C2FF 100%) border-box;
    border-color: transparent;
}
.is-active .header__button--document:not([disabled]):hover {
    border-color: var(--white);
    filter: none;
    box-shadow: none;
}
.is-active .header__button--document:not([disabled]):hover svg {
    color: var(--blue);
}
.is-active .header__button--document {
    background-color: var(--blue-yankees);
    border-color: var(--white);
    color: var(--white);
}
.header__button--document svg {
    color: var(--blue);
}
.is-active .header__button--document svg {
    color: var(--white);
}
.header__button--open {
    position: relative;
    border: var(--not-border);
    margin-left: 16px;
    min-height: 32px;
    order: 1;
    z-index: 104;
}
.header__button--open:not([disabled]):hover {
    background: var(--c-btn-secondary-background-hover);
    box-shadow: var(--c-btn-secondary-shadow);
    border-color: var(--not-border);
    color: var(--white);
}
.is-active .header__button--open {
    color: var(--blue);
    background-color: var(--white);
}
.header__btn-mobile {
    display: none;
    position: relative;
    bottom: 0;
    cursor: pointer;
    height: 16px;
    width: 25px;
    order: 2;
    z-index: 103;
    display: block;
}
#header__btn {
    background-image:url('../img/header_menu.png');
    display:inline-block;
    margin-top:2px;
    width:16px;
    height:16px;
}

.header__btn-mobile.is-active .header__btn-mobile-el {
    opacity: 0;
    visibility: hidden;
}
.header__btn-mobile.is-active:before {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.header__btn-mobile.is-active:after {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
}
.header__btn-mobile-el,
.header__btn-mobile::before,
.header__btn-mobile::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 2px;
    background-color: var(--blue);
    transition: all var(--transition-default);
}
.is-active .header__btn-mobile-el,
.is-active .header__btn-mobile::before,
.is-active .header__btn-mobile::after {
    background-color: var(--white);
}
.header__btn-mobile-el .header__btn-mobile::after,
.header__btn-mobile-el .header__btn-mobile::before {
    background-color: var(--blue);
    }
.header__btn-mobile:before {
    top: 0;
}
.header__btn-mobile:after {
    top: calc(100% - 2px);
}
.header__btn-mobile-el {
    top: calc(50% - 1px);
}

.header__overlay {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    height: 100vh;
    width: 100%;
    background-color: var(--body-overlay);
    opacity: 0;
    z-index: 101;
    visibility: hidden;
    transition: visibility var(--transition-default), opacity var(--transition-default);
}
.is-active .header__overlay {
    display: block;
    opacity: 1;
    visibility: visible;
}
.header--inquiry .header__button--open {
    display: none;
}
.header--inquiry .header__btn-mobile {
    margin-left: auto;
}
*/
.header-logo {
    height: 35px;
    min-height: 35px;
    min-width: 160px;
}
.header-button {
    height: 35px;
}
.header-ttile {
    height: 35px;
}

.header_menu.is-active .header__menu-item:nth-child(1)  {
    display: none;
}
.header_menu.is-active .header__menu-item:nth-child(2)  {
    display: none;
}
.header_title_area.is-active {
    display: none;
}

/* main */
.main {
    overflow-x: hidden;
    /*margin-bottom: -120px;*/
}
.wrapper {
    position: relative;
    max-width: 100vw;
    margin: 0 auto;
}
#map-area {
    margin-top: 44px;
    background-image: url(../img/bg_town.png);
    background-repeat: no-repeat;
    background-size: cover;
    height: 55.56vw;
    position: relative;
    overflow: hidden;
}
#map-area::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(rgba(255, 255, 255, 1),rgb(255, 255, 255,0));
}
#map-hajimete {
    position: absolute;
    top: 12.2%;
    left: 30.4%;
    width: 12.7%;
    /*min-width: 10em;*/
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-name: fuwa-hajimete;
    z-index: 10;
}
#map-hajimete:hover {
    width: 14.7%;
    left: 29.4%;
    transition: 0.3s;
}
#map-senpai {
    position: absolute;
    top: 56%;
    left: 21.75%;
    width: 12.7%;
    /*min-width: 10em;*/
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-name: fuwa-senpai;
    z-index: 10;
}
#map-senpai:hover {
    width: 14.7%;
    left: 20.75%;
    transition: 0.3s;
}
#map-modelhouse {
    position: absolute;
    top: 34%;
    right: 31.95%;
    width: 12.7%;
    /*min-width: 10em;*/
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-name: fuwa-model;
    z-index: 10;
}
#map-modelhouse:hover {
    width: 14.7%;
    right: 30.95%;
    transition: 0.3s;
}
#map-kouzou {
    position: absolute;
    top: 7.5%;
    right: 11.5%;
    width: 12.7%;
    /*min-width: 10em;*/
    animation-duration: 3s;
    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-name: fuwa-kouzou;
    z-index: 10;
}
#map-kouzou:hover {
    width: 14.7%;
    right: 10.5%;
    transition: 0.3s;
}
#map-shindan {
    position: absolute;
    bottom: 5%;
    right: 6.6%;
    width: 12.7%;
    /*min-width: 10em;*/
    z-index: 10;
}
#map-shindan:hover {
    width: 14.7%;
    right: 5.6%;
    transition: 0.3s;
}
#map-stamp {
    /*display: none;*/
    position: absolute;
    /*bottom: 0;*/
    top: 2.0%;
    left: 2.3%;
    width: 18.5%;
    /*min-width: 14em;*/
    z-index: 10;
}
#map-stamp:hover {
    width: 20.5%;
    left: 1.3%;
    transition: 0.3s;
}
#map-airship {
    width: 11%;
    animation-duration: 30s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: move-airship;
    z-index: 15;
    transform: translate(70vw,calc(-2vw * 0.555));
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}
/*
#map-ship {
    width: 10%;
    animation-duration: 90s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: move-ship;
    z-index: 5;
    transform: translate(100vw,calc(100vw * 0.555));
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}
*/
#map-yacht {
    width: 4%;
    animation-duration: 40s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: move-yacht;
    z-index: 5;
    transform: translate(100vw,calc(75vw * 0.555));
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.main .tooltip-img {
    width: 100%;
}
@-webkit-keyframes fuwa-hajimete {50% {top: 11.2%;} 100% {top: 12.2%;} }
@keyframes fuwa-hajimete {50% {top: 11.2%;} 100% {top: 12.2%;} }
@-webkit-keyframes fuwa-kouzou {50% {top: 6.5%;} 100% {top: 7.5%;} }
@keyframes fuwa-kouzou {50% {top: 6.5%;} 100% {top: 7.5%;} }
@-webkit-keyframes fuwa-senpai {50% {top: 55%;} 100% {top: 56%;} }
@keyframes fuwa-senpai {50% {top: 55%;} 100% {top: 56%;} }
@-webkit-keyframes fuwa-model {50% {top: 33%;} 100% {top: 34%;} }
@keyframes fuwa-model {50% {top: 33%;} 100% {top: 34%;} }

@-webkit-keyframes move-airship {
  0% {transform: translate(90vw,calc(23vw * 0.555));opacity: 0;}
  5% {opacity: 1;}
  95% {opacity: 1;}
  100% {transform: translate(27vw,calc(76vw * 0.555));opacity: 0;}
}
@keyframes move-airship {
  0% {transform: translate(90vw,calc(23vw * 0.555));opacity: 0;}
  5% {opacity: 1;}
  95% {opacity: 1;}
  100% {transform: translate(27vw,calc(76vw * 0.555));opacity: 0;}
}
/*before ooks
@-webkit-keyframes move-airship {
  0% {transform: translate(70vw,calc(-2vw * 0.555));opacity: 0;}
  5% {opacity: 1;}
  95% {opacity: 1;}
  100% {transform: translate(13vw,calc(98vw * 0.555));opacity: 0;}
}
@keyframes move-airship {
  0% {transform: translate(70vw,calc(-2vw * 0.555));opacity: 0;}
  5% {opacity: 1;}
  95% {opacity: 1;}
  100% {transform: translate(13vw,calc(98vw * 0.555));opacity: 0;}
}*/
/*
@-webkit-keyframes move-ship {
  0% {translate(1000%,510%);opacity: 0;}
  2% {opacity: 1;}
  31% {opacity: 1;}
  33% {transform: translate(820%,680%);opacity: 0;}
  100% {transform: translate(820%,680%);opacity: 0;}
}
@keyframes move-ship {
  0% {translate(1000%,510%);opacity: 0;}
  2% {opacity: 1;}
  31% {opacity: 1;}
  33% {transform: translate(820%,680%);opacity: 0;}
  100% {transform: translate(820%,680%);opacity: 0;}
}
*/
@-webkit-keyframes move-yacht {
  0% {transform: translate(100vw,calc(75vw * 0.555));opacity: 0;}
  5% {opacity: 1;}
  95% {opacity: 1;}
  100% {transform: translate(82vw,calc(100vw * 0.555));opacity: 0;}
}
@keyframes move-yacht {
  0% {transform: translate(100vw,calc(75vw * 0.555));opacity: 0;}
  5% {opacity: 1;}
  95% {opacity: 1;}
  100% {transform: translate(82vw,calc(100vw * 0.555));opacity: 0;}
}


.br-res {
}

.disp-pc {

}
.disp-sp {
    display: none;
}
.hint_wrapper {
    display: none;
}


@media screen and (max-width: 1150px) {
  .header__menu-item:nth-child(1) {
      display: none;
  }
  .header__menu-item:nth-child(2) {
      display: none;
  }

  .br-res {
    display: none;
  }
}

@media screen and (max-width: 770px) {
  .wrapper {
      position: relative;
  }
  .hint_wrapper {
      display: block;
      position: absolute;
      top: calc(45% - 50px);
      left: calc(33% - 60px);
      width: 120px;
      height: 100px;
  }
  .hint_base {
      background: rgba(0,0,0, 0.8);
      border-radius: 10px;
      width: 100%;
      height: 100%;
  }
  .hint_img img {
      width: 80px;
      margin-left: 20px;
      display: block;
  }
  .hint_text {
      color: #FFFFFF;
      font-size: 0.7em;
      text-align: center;
      line-height: 0;
  }
}

@media screen and (max-width: 560px) {

  /* 100vw = 1280px */
  @-webkit-keyframes move-airship {
    0% {transform: translate(896px,calc(-25px * 0.555));opacity: 0;}
    5% {opacity: 1;}
    95% {opacity: 1;}
    100% {transform: translate(166px,calc(1254px * 0.555));opacity: 0;}
  }
  @keyframes move-airship {
    0% {transform: translate(896px,calc(-25px * 0.555));opacity: 0;}
    5% {opacity: 1;}
    95% {opacity: 1;}
    100% {transform: translate(166px,calc(1254px * 0.555));opacity: 0;}
  }
  @-webkit-keyframes move-yacht {
    0% {transform: translate(1280px,calc(960px * 0.555));opacity: 0;}
    5% {opacity: 1;}
    95% {opacity: 1;}
    100% {transform: translate(1050px,calc(1280px * 0.555));opacity: 0;}
  }
  @keyframes move-yacht {
    0% {transform: translate(1280px,calc(960px * 0.555));opacity: 0;}
    5% {opacity: 1;}
    95% {opacity: 1;}
    100% {transform: translate(1050px,calc(1280px * 0.555));opacity: 0;}
  }

  .header_title_area {
      display: none;
  }

  .main {
      overflow-x: scroll;
  }
  .wrapper {
      max-width: unset;
      min-width: 1280px;
  }
  #map-area {
      height: 711px;
  }

  .footer_bottom {
      position: sticky;
      bottom: 0;
      padding-top: 8px;
      background: #FFFFFF;
      z-index: 20;
  }
  .footer_links {
      display: flex;
      margin: 0px 10px;
      gap: 10px;
      position: sticky;
      bottom: 0;
      z-index: 100;
  }
  .footer_link {
      width: calc(50% - 5px);
  }

  .br-res {
      display: block;
  }

  .disp-pc {
      display: none;
  }
  .disp-sp {
      display: block;
  }
}


