@charset "UTF-8";
/* --- Back to Top --- */
.backtotop{
  position: fixed;
  right: 1.6rem;         
  bottom: 2.0rem;        
  width: 4.4rem;         
  height: 4.4rem;
  display: grid;
  place-items: center;
  border: none;
  border-radius: 999rem;
  background: linear-gradient(135deg, #111, #333);
  color: #fff;
  box-shadow: 0 0.4rem 1.2rem rgba(0,0,0,.2);
  cursor: pointer;
  opacity: 0;
  transform: translateY(1.0rem);
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity .2s ease,
    transform .2s ease,
    box-shadow .2s ease,
    visibility 0s linear .2s;
  z-index: 9999;
}
.backtotop.is-visible{
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
  transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
}
.backtotop__icon{
  width: 2.2rem;   
  height: 2.2rem;
  fill: currentColor;
}
.backtotop:hover{
  box-shadow: 0 0.6rem 1.6rem rgba(0,0,0,.28);
}
.backtotop:active{
  transform: translateY(.2rem);
}
.backtotop:focus-visible{
  outline: none;
  box-shadow:
    0 0.6rem 1.6rem rgba(0,0,0,.28),
    0 0 0 .3rem rgba(0,136,255,.35);
}

@media (max-width: 48rem){
  .backtotop{ right: 1.2rem; bottom: 1.6rem; }
}

.backtotop.-plant{
  background: linear-gradient(135deg, #EA5B13, #f77c18);
}

.footer {
  margin-top: 8rem;
  padding-top: 8rem;
  padding: 8rem;
  position: relative;
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  /* 親要素の上端に引く場合 */
  left: 0;
  width: calc(100% - 16rem);
  margin-left: 8rem;
  height: 1px;
  background: repeating-linear-gradient(to right, #353636 0, #353636 0.5rem, transparent 0.5rem, transparent 1rem);
}

.footer__logo {
  width: 16rem;
}

.footer__content {
  margin-top: 3.9rem;
  display: flex;
  gap: 4rem;
  position: relative;
}

.footer__content::after,
.footer__content::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: #145D99;
  opacity: 5%;
  z-index: -1;
  aspect-ratio: 1/1;
  pointer-events: none;

}

.footer__content::after {
  width: 90.4rem;
  top: -58rem;
  right: -64rem;
}

.footer__content::before {
  width: 57rem;
  top: -25rem;
  left: -55rem;
}

.footer__content-nav {
  display: flex;
}

.footer__content-nav li {
  font-size: 1.6rem;
  font-weight: bold;
  transition: all 0.3s ease;
}

.footer__content-nav li:not(.li-not):hover {
  color: #145D99;
}

.footer__nav-left {
  margin-right: 6rem;
}

.footer__nav-left>ul>li {
  margin-bottom: 2rem;
}

.footer__nav-right>ul>li {
  margin-bottom: 2rem;
}

.footer .tour__nav {
  margin-top: 1.5rem;
  margin-left: 3.5rem;
  position: relative;
}

.footer .tour__nav:nth-of-type(1)::after {
  content: "";
  position: absolute;
  top: 0;
  /* 上端から */
  left: -2.5rem;
  /* 左端に配置したい場合 */
  width: 0.1rem;
  height: calc(200% + 6rem);
  background: repeating-linear-gradient(to bottom, #353636 0, #353636 0.5rem, transparent 0.5rem, transparent 1rem);
}

.footer .tour__nav-ttl {
  font-weight: 500;
  color: #707070;
}

.footer .tour__nav-item {
  margin-top: 1.5rem;
  display: flex;
  align-items: center;
}

.footer .tour__nav-item::before {
  content: "";
  width: 0.8rem;
  height: 0.1rem;
  background-color: #353636;
  display: block;
  margin: 0 0.5rem;
}

.footer .tour__nav+.tour__nav {
  margin-top: 4rem;
}

.footer__rules {
  margin-top: 2rem;
  color: #353636;
  font-size: 1.6rem;
  display: flex;
  gap: 4rem;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}

.footer__rules a {
  position: relative;
}

.footer__rules a:nth-of-type(1)::after {
  content: "";
  position: absolute;
  height: 100%;
  width: 0.1rem;
  right: -2rem;
  transform: translateX(-50%);
  background-color: #CCCCCC;
}

.footer__banner {
  margin-top: 4rem;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}

.footer__banner img {
  width: 49rem;
  aspect-ratio: 49/12.9;
}

.footer__map {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer__map-box {
  width: 40rem;
}

.footer__map-obj {
  aspect-ratio: 4/2.5;
  width: 100%;
}

.footer__map-obj iframe {
  width: 100%;
  height: 100%;
}

.footer__map-ttl {
  margin-top: 1rem;
  font-size: 1.6rem;
  font-weight: bold;
}

.footer__map-txt {
  margin-top: 0.5rem;
  line-height: 1.875em;
}

.footer__map-btn {
  margin-top: 2.5rem;
}

.footer__mv {
  margin-top: -12rem;
}

@media screen and (max-width: 1024px) {
  .footer {
    padding: 8rem 2rem 0;
  }

  .footer__content {
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
  }

  .footer__content-nav {
    flex-direction: column;
    gap: 2rem;
  }

  .footer__nav-left {
    margin-right: 0;
  }

  .footer__rules {
    flex-direction: column;
    gap: 2rem;
  }

  .footer__rules a:nth-of-type(1)::after {
    display: none;
  }

  .footer__rules--login {
    flex-direction: row;
    font-weight: bold;
    margin-top: 0;
  }

  .footer__rules--login a:nth-of-type(1)::after {
    display: inline-block;
    right: -1rem;
  }

  .footer__banner img {
    width: 100%;
    aspect-ratio: 1/0.26;
  }

  .footer__map {
    grid-template-columns: 1fr;
  }

  .footer__map-box {
    width: 100%;
  }

  .footer__map-obj {
    aspect-ratio: 4/2.5;
  }

  .footer__map-btn {
    width: 100%;
    text-align: center;
  }

  .footer__mv {
    margin-top: 0rem;
  }

  .footer__mv img {
    width: 100%;
    aspect-ratio: 1/0.26;
  }

  .footer__logo {
    width: 12rem;
  }

  .footer__mv img {
    aspect-ratio: inherit;
  }

  .footer::after {
    width: calc(100% - 4rem);
    margin-left: 2rem;
  }

}

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