@charset "UTF-8";

#sitemap {
  margin-top: 60px;
  padding-top: 64px;
  padding-bottom: 64px;
  background-color: #f2f5f6;
}
@media screen and (max-width: 599px) {
  #sitemap {
    margin-top: calc(40 / 375 * 100vw);
    padding-top: calc(40 / 375 * 100vw);
    padding-left: 1calc (16 / 375 * 100vw);
    padding-right: calc(16 / 375 * 100vw);
    padding-bottom: calc(40 / 375 * 100vw);
  }
}

#sitemap .sec-inner {
  display: flex;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
}

.sitemap-column {
  width: auto;
}
.column-left {
  width: 50%;
}

.column-right {
  display: flex;
  width: 48%;
}

/*タブレット時の見た目*/
@media screen and (max-width: 1240px) {
  #sitemap .sec-inner {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  .column-left,
  .column-right {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 599px) {
  .column-left {
    /* width: auto; */
  }
}
.column-right,
.column-left-inner {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 599px) {
  .column-right,
  .column-left-inner {
    display: block;
    gap: unset;
    justify-content: space-between;
  }
}
.sitemap-list {
  width: auto;
}
.column-left-inner .sitemap-list {
  flex: 1;
}
.sitemap-list.list-wide {
  width: 55%;
}
@media screen and (max-width: 599px) {
  .sitemap-list.list-wide {
    width: auto;
  }
}

.sitemap-column_h2 {
  display: block;
  position: relative;
  font-size: 20px;
  font-weight: 600;
  line-height: calc(28 / 20);
  margin-bottom: 26px;
}
@media screen and (max-width: 959px) {
  .sitemap-column_h2 {
    font-size: calc(20 / 960 * 100vw);
    margin-bottom: calc(26 / 960 * 100vw);
  }
}
@media screen and (max-width: 599px) {
  .sitemap-column_h2 {
    font-size: calc(20 / 375 * 100vw);
    margin-bottom: calc(16 / 375 * 100vw);
  }
}
.sitemap-column_h2::before {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background-color: #adadad;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
}
@media screen and (max-width: 599px) {
  .sitemap-column_h2::before {
    content: unset;
  }
}

.sitemap-list h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: calc(24 / 16);
}
@media screen and (max-width: 959px) {
  .sitemap-list h3 {
    font-size: calc(16 / 960 * 100vw);
  }
}
@media screen and (max-width: 599px) {
  .sitemap-list h3 {
    font-size: calc(16 / 375 * 100vw);
  }
}
.sitemap-list ul {
  margin-bottom: 40px;
}

@media screen and (max-width: 959px) {
  .sitemap-list ul {
    margin-bottom: calc(40 / 960 * 100vw);
  }
}

@media screen and (max-width: 599px) {
  .sitemap-list ul {
    margin-bottom: calc(24 / 375 * 100vw);
  }
}

.sitemap-list ul li {
  position: relative;
  padding-left: 1em;
  font-size: 16px;
  line-height: calc(24 / 16);
}

@media screen and (max-width: 959px) {
  .sitemap-list ul li {
    font-size: calc(16 / 960 * 100vw);
  }
}

@media screen and (max-width: 599px) {
  .sitemap-list ul li {
    font-size: calc(16 / 375 * 100vw);
  }
}

.sitemap-list ul li::before {
  content: "";
  width: 14px;
  height: auto;

  aspect-ratio: 1;
  position: absolute;
  top: 52%;
  left: 0;
  transform: translateY(-50%);

  background-repeat: no-repeat;
  background-size: contain;

  background-image: url("../images/common/r-arrow-black.svg");
}

@media screen and (max-width: 959px) {
  .sitemap-list ul li::before {
    width: calc(14 / 960 * 100vw);
  }
}

@media screen and (max-width: 599px) {
  .sitemap-list ul li::before {
    width: calc(14 / 375 * 100vw);
  }
}

.footer-menu ul li {
  font-size: 16px;
  font-weight: 600;
  line-height: calc(24 / 16);
  margin-bottom: 1em;
}
@media screen and (max-width: 959px) {
  .footer-menu ul li {
    font-size: calc(16 / 960 * 100vw);
  }
}

@media screen and (max-width: 599px) {
  .footer-menu {
    padding-top: calc(16 / 375 * 100vw);
  }
  .footer-menu ul li {
    font-size: calc(16 / 375 * 100vw);
  }
}

/*  */
footer {
  display: flex;
  padding-top: 64px;
  padding-bottom: 64px;
  align-items: center;
  background-color: #00008b;
}

footer a {
  text-decoration: none;
  color: var(--text-color);
  transition: 0.3s;
}
footer a:hover {
  cursor: pointer;
  opacity: 0.6;
}
footer img {
  display: block;
  height: auto;
}

.footer-inner {
  display: flex;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;

  gap: 60px;
}
.footer-inner img {
  width: 160px;
}
.footer-inner h2 {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
}
.footer-inner address {
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 959px) {
  footer {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .footer-inner {
    display: block;
  }
  .footer-inner img {
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }
}
/*タブレット時の見た目*/
@media screen and (max-width: 959px) {
  /* ここにセレクタを指定する */
}
/*スマホ時の見た目*/
@media screen and (max-width: 599px) {
  /* ここにセレクタを指定する */
}

ul.sp-footer-menu {
  display: none;
}
/* SPフッター固定 */
@media screen and (max-width: 599px) {
  footer {
    height: 57px;
    padding-top: 0;
    padding-bottom: 0;
  }
  .footer-inner {
    display: none;
  }
  ul.sp-footer-menu {
    display: flex;
    width: 100vw;
    height: 57px;

    background-color: #ffffff;
    gap: 1px;
    position: fixed;
    bottom: 0;
    z-index: 9999;
  }
  ul.sp-footer-menu li {
    flex: 1;
  }
  ul.sp-footer-menu li a {
    display: block;
    padding: 10px 0;
    align-items: center;
    justify-content: center;
  }
  ul.sp-footer-menu li img {
    width: 20px;
    margin-left: auto;
    margin-right: auto;
  }
  ul.sp-footer-menu li p {
    font-size: 8px;
    text-align: center;
  }
  .sp-footer-menu .menu1 {
    background-color: #f2f2f2;
  }
  .sp-footer-menu .menu2 {
    background-color: #87cefa;
  }
  .sp-footer-menu .menu3 {
    background-color: #00008b;
  }
  .sp-footer-menu .menu4 {
    background-color: #00008b;
  }
  .sp-footer-menu .menu1 p {
    color: #00008b;
  }
  .sp-footer-menu .menu2 p {
    color: #00008b;
  }
  .sp-footer-menu .menu3 p {
    color: #ffffff;
  }
  .sp-footer-menu .menu4 p {
    color: #ffffff;
  }
}

/* 目次ナビゲーション */
#nav-table {
  width: 100%;
  max-width: 1000px;
  /* position: fixed;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  z-index: 9999; */
}
#nav-table.scroll-popup {
  position: fixed;
  bottom: -100px; /* 初期は画面下に隠す */
  left: 50%;
  transform: translateX(-50%);
  transition: bottom 1s ease, opacity 1s ease;
  opacity: 0;
  z-index: 8999;
}
@media screen and (max-width: 599px) {
#nav-table.scroll-popup {
  bottom: -400px; /* 初期は画面下に隠す */
}
}

#nav-table.scroll-popup.visible {
  bottom: 8px;
  opacity: 1;
}
@media screen and (max-width: 599px) {
	#nav-table.scroll-popup.visible {
  bottom: 60px;
}
}
#schedule-change-cancellation,
#cancelpolicy {
  margin-top: clamp(-80px, calc(-80 / 1920 * 100vw), -60px);
  padding-top: clamp(60px, calc(80 / 1920 * 100vw), 80px);
}
