@charset "UTF-8";

/*
 * [ページトップ]
 * .page_top_button
 * .page_top_button_arrow
 */

.page_top_button {
  display: flex;
  width: 7rem;
  height: 7rem;
  border: 0.2rem solid #FFFFFF;
  background-color: #000000;
  position: fixed;
  right: 3rem;
  bottom: 3.5rem;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  transition: .5s;
}

.page_top_button.upper_footer {
  position: absolute;
  bottom: 31rem;
}

.page_top_button.is_background {
  z-index: 5;
}

.page_top_button.fixed {
  position: fixed;
}

.page_top_button:hover {
  border: 0.2rem solid #000000;
  background-color: #FFFFFF;
}

.page_top_button_arrow {
  background-color: #FFFFFF;
  height: 4rem;
  width: 5rem;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.page_top_button:hover .page_top_button_arrow {
  background-color: #000000;
}

/*
 * [footer]
 * .footer
 * .footer_area
 * .footer_navigaiton
 * .footer_navigaiton_list
 * .footer_booking_link
 * .footer_contents
 * .footer_title
 * .footer_information
 * .footer_term
 * .footer_description
 */

.footer {
  width: 100%;
  height: 24.9rem;
  position: relative;
  z-index: 2000;
  background-image: url('/wp-content/themes/toritsubame/img/background.jpg');
  background-size: auto;
}

.footer_area {
  display: flex;
  position: relative;
}

.footer_navigation {
  width: 100%;
  height: 7rem;
  display: inline-block;
}

.footer_navigation_list {
  padding: 1.7rem 22.7rem 0 0;
}

.footer_booking_link {
  position: absolute;
  top: -3.9rem;
  right: 0;
}

.footer_booking_link img {
  width: 19.1rem;
  height: auto;
  object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
}

.footer_booking_link img:last-of-type {
  opacity: 0;
  transition: opacity .7s;
}

.footer_booking_link:hover img {
  opacity: 1;
}

.footer_contents {
  display: flex;
}

.footer_title {
  margin-top: -4rem;
}

.footer_information {
  color: #F8F5E3;
  font-size: 2.4rem;
  margin: 0.7rem 0 1.7rem;
  width: 100.8rem;
  display: flex;
  flex-wrap: wrap;
}

.footer_term {
  width: 14.4rem;
}

.footer_description {
  width: calc(100% - 14.4rem);
}

/* レスポンシブ対応 */
@media screen and (max-width:690px) {

  /*
 * [ページトップ]
 * .page_top_button
 * .page_top_button_arrow
 */

  .page_top_button {
    width: 5rem;
    height: 5rem;
    right: 1rem;
    bottom: 1rem;
  }

  .page_top_button.upper_footer {
    bottom: 6rem;
  }

  .page_top_button.hidden {
    display: none;
  }

  .page_top_button_arrow {
    height: 2.2rem;
    width: 3.2rem;
    clip-path: polygon(50% 0, 100% 100%, 0 100%);
  }

  .page_top_button:hover .page_top_button_triangle {
    background: #000000;
  }

  /*
 * [footer]
 * .footer
 * .footer_area
 * .footer_navigaiton
 * .footer_hamburger
 * .footer_booking_link_sp
 * .footer_title
 * .footer_information
 */

  .footer {
    height: 16.2rem;
    z-index: -3;
  }

  .footer.fixed {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 2000;
  }

  .footer_navigation {
    display: none;
  }

  .footer_hamburger {
    top: 11.2rem;
  }

  .footer_booking_link_sp img {
    width: 8rem;
    height: 5rem;
    object-fit: cover;
    position: absolute;
    right: 0;
    bottom: 0;
  }

  .footer_title {
    position: absolute;
    bottom: 0.5rem;
  }

  .footer_information {
    display: none;
  }
}