@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;800;900&family=Roboto:wght@100;300;400;500;700;900&display=swap");
@import url("http://fonts.googleapis.com/earlyaccess/notosansjp.css");
@font-face {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-weight: 500;
}
/* ------------------------------ */
/* Header Menu (Common) */
/* ------------------------------ */
.b-header-menu__toggle {
  position: fixed;
  top: 84px;
  right: 20px;
  display: block;
  width: 40px;
  height: 40px;
  background-image: url("/sc_rsc/inner/assets/common/images/icon-menu.svg");
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 102;
}
.b-header-menu__toggle.is-active {
  background-image: url("/sc_rsc/inner/assets/common/images/icon-close.svg");
}
.b-header-menu__list {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  background-color: #F9F8F7;
  padding: 144px 20px 20px;
  z-index: 101;
  overflow-y: scroll;
}
.b-header-menu__list__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.b-header-menu__list__items__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0px 0px 5px;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 700;
  color: #555555;
  border-bottom: 1px solid #ABABAB;
}
.b-header-menu__list__items__item a small {
  font-size: 12px;
}
.b-header-menu__list__items__item a::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("/sc_rsc/inner/assets/common/images/icon-arrow-gray.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and ( min-width: 768px ) {
  .b-header-menu__toggle {
    top: 96px;
    cursor: pointer;
  }
  .b-header-menu__list__items {
    max-width: 1000px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 30px 40px;
    margin: 0 auto;
  }
  .b-header-menu__list__items__item {
    width: calc((100% - 40px) / 2);
  }
  .b-header-menu__list__items__item a {
    height: 100%;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .b-header-menu__list__items__item a:hover, .b-header-menu__list__items__item a:focus {
    letter-spacing: 0.05em;
    color: #897869;
  }
}

/* ------------------------------ */
/* Footer Menu */
/* ------------------------------ */
.b-footer-menu {
  position: relative;
  padding: 80px 20px;
  background-color: #F9F8F7;
  -webkit-box-shadow: 0 0 20px rgba(218, 207, 173, 0.6);
          box-shadow: 0 0 20px rgba(218, 207, 173, 0.6);
}
.b-footer-menu__back-to-top {
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 10px;
  font-size: 14px;
  text-align: center;
  color: #FFF;
  background-color: #897869;
}
.b-footer-menu__back-to-top::before {
  content: "";
  display: inline-block;
  background-image: url("/sc_rsc/inner/assets/common/images/icon-round-arrow-white.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
}
.b-footer-menu__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}
.b-footer-menu__nav__item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 5px;
  height: 100%;
  padding: 0px 0px 8px;
  font-family: "Zen Old Mincho", serif;
  font-size: 16px;
  font-weight: 700;
  color: #897869;
  border-bottom: 1px solid #ABABAB;
  background-image: url("/sc_rsc/inner/assets/common/images/icon-arrow-gold.svg");
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: right center;
}
.b-footer-menu__nav__item__link__sub {
  display: block;
  width: 200px;
}
.b-footer-menu__banners {
  margin: 40px auto 0;
  max-width: 760px;
}
.b-footer-menu__banners .pgadm-inner {
  gap: 10px;
}
@media screen and ( min-width: 768px ) {
  .b-footer-menu__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
  }
  .b-footer-menu__nav__item {
    width: calc((100% - 40px) / 2);
  }
  .b-footer-menu__nav__item__link {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .b-footer-menu__nav__item__link:hover, .b-footer-menu__nav__item__link:focus {
    letter-spacing: 0.05em;
    color: #555555;
  }
}

html {
  scroll-behavior: smooth;
}