@charset "UTF-8";
.header {
  position: relative;
  background-color: #fff;
}
.header.header--s .header-lower {
  padding: 0.5rem 2rem;
}
.header.header--s .header-sub-menu {
  padding: 2rem 0;
}
@media (min-width: 992px) {
  .header {
    width: 100%;
    z-index: 10;
  }
}
.header-upper {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 1rem;
}
.header-lower {
  padding: 0 4rem 2rem;
  border-bottom: 1px solid #d1d1d1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  display: none;
  transition: 0.2s ease all;
}
@media (min-width: 992px) {
  .header-lower {
    display: block;
  }
}
.header-logo {
  text-align: center;
  padding: 1rem;
}
@media (min-width: 992px) {
  .header-logo {
    margin-right: 2rem;
  }
}
.header-logo__title {
  display: inline-flex;
}
@media (min-width: 768px) {
  .header-logo__title img {
    width: 200px;
  }
}
.header-logged {
  display: inline-flex;
}
.header-logged__item {
  margin: 0 1rem;
}
.header-sub-menu {
  display: none;
}
@media (min-width: 992px) {
  .header-sub-menu {
    margin-left: 2rem;
    margin-right: 160px;
    display: inline-flex;
    flex-basis: auto;
    align-items: center;
  }
}
.header-sub-menu__list {
  display: inline-flex;
}
.header-sub-menu__item:first-child {
  margin-right: 1.5rem;
}
.header-sub-menu__link {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: #727272;
  font-weight: normal;
}
.header-sub-menu__link-icon {
  font-size: 2rem;
  margin-right: 0.5rem;
}
.header-sub-menu__link:hover {
  color: black;
}
.header-sub-menu__img {
  margin-right: 1rem;
}

.bg-image {
  background-color: #001250;
  background-image: url(../img/common/bg-login@2x.png);
  background-size: cover;
  background-position: center 55%;
}

.header-market-info {
  background-color: white;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.2);
  border-radius: 0 0 8px 8px;
  padding: 0.5rem;
  display: inline-flex;
  width: 100%;
  align-items: center;
  display: none;
}
@media (min-width: 992px) {
  .header-market-info {
    flex-basis: calc(100% - 390px);
    max-width: calc(100% - 390px);
  }
}
.header-market-info__title {
  display: inline-flex;
  flex-basis: 100%;
  max-width: 80px;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .header-market-info__title {
    font-size: 1.8rem;
    max-width: 120px;
  }
}
.header-market-info__title i {
  margin-right: 0.5rem;
}
.header-market-info__list {
  padding: 0;
  list-style: none;
  margin: 0 0 0 1rem;
  padding: 0.5rem 0.5rem 0.5rem 1rem;
  border-left: solid 1px #d1d1d1;
  overflow: hidden;
  width: inherit;
}
.header-market-info__inner {
  display: inline-flex;
  white-space: nowrap;
}
.header-market-info__date {
  margin-right: 0.5rem;
}
.header-market-info__item {
  margin-right: 4rem;
}
.header-market-info__link {
  text-decoration: none;
  color: black;
  font-size: 1.6rem;
  transition: 0.2s ease all;
}
@media (min-width: 992px) {
  .header-market-info__link {
    font-size: 2rem;
  }
}
.header-market-info__link:hover {
  color: black;
}
.header-market-info__ttl {
  text-decoration: underline;
  font-weight: bold;
}
.header-market-info__list-link {
  padding: 1rem;
  font-size: 2.5rem;
  line-height: 1;
  color: black;
}

.nav-btn {
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: start;
  border-radius: 8px;
  border: none;
  color: #fff;
  font-size: 14px;
  width: 140px;
  border: 2px solid black;
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 10;
  transition: 0.2s ease all;
  cursor: pointer;
}
.nav-btn.active {
  background-color: #f5f5f5;
  color: black;
}
.nav-btn__open {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
}
.nav-btn__open span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}
.nav-btn__open span:nth-of-type(1) {
  top: 15px;
}
.nav-btn__open span:nth-of-type(2) {
  top: 23px;
}
.nav-btn__open span:nth-of-type(3) {
  top: 31px;
}
.nav-btn__open.active span {
  background: black;
}
.nav-btn__open.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.nav-btn__open.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.nav-btn__open.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.nav {
  width: 100%;
  display: flex;
  align-items: center;
}
.nav-list {
  display: none;
}
@media (min-width: 992px) {
  .nav-list {
    max-width: 992px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}
.nav-item {
  flex-basis: 100%;
  padding: 0 2rem;
}
.nav-link {
  width: 100%;
  color: #727272;
  text-align: center;
  padding: 1rem 0;
  font-size: 1.4rem;
  font-weight: bold;
  position: relative;
}
.nav-icon {
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.5rem;
}
.nav-icon--mainte {
  font-size: 32px;
}
.nav-bana {
  display: none;
}
@media (min-width: 992px) {
  .nav-bana {
    display: inline-block;
    max-width: 160px;
  }
}
.nav-mymenu {
  display: none;
  transition: 0.2s ease all;
}
@media (min-width: 992px) {
  .nav-mymenu {
    position: absolute;
    display: block;
    top: 0;
    right: 0;
    background-color: black;
    font-size: 1.2rem;
    border-radius: 0 0 0 2rem;
    max-width: 240px;
    overflow: hidden;
    max-height: 100%;
    z-index: 12;
  }
}
.nav-mymenu__list {
  max-height: 0;
  overflow: hidden;
  transition: 0.2s ease all;
}
.nav-mymenu:hover .nav-mymenu__list {
  max-height: 100%;
  overflow: visible;
}
.nav-mymenu__user {
  background-color: black;
  display: inline-flex;
  align-items: center;
  width: 100%;
  padding: 2rem;
  justify-content: center;
}
.nav-mymenu__user-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  background-color: #d1d1d1;
  margin-right: 1rem;
}
.nav-mymenu__user-icon img {
  object-fit: cover;
}
.nav-mymenu__user-name {
  color: white;
  font-size: 1.4rem;
  margin-right: 1rem;
}
.nav-mymenu__link {
  display: inline-flex;
  padding: 1.5rem 3rem;
  width: 100%;
  color: white;
  font-size: 1.6rem;
  align-items: center;
}
.nav-mymenu__item {
  border-top: 1px solid #f5f5f5;
}
.nav-mymenu__icon {
  width: 32px;
  text-align: center;
}

.nav-sp {
  background-color: #f5f5f5;
  position: fixed;
  width: 100%;
  transform: translateY(100%);
  opacity: 0;
  padding-bottom: 80px;
  z-index: 5;
  transition: 0.2s ease all;
  pointer-events: none;
  bottom: 0;
}
.nav-sp--active {
  transform: translateY(0);
  pointer-events: auto;
  opacity: 1;
}
.nav-sp__user {
  background-color: black;
  padding: 3rem;
  display: inline-flex;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #3f75a4;
}
.nav-sp__user-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background-color: #d1d1d1;
  margin-right: 1rem;
}
.nav-sp__user-icon img {
  object-fit: cover;
}
.nav-sp__user-name {
  color: white;
  font-size: 2rem;
}
.nav-sp__mymenu {
  background-color: black;
  display: grid;
  grid-template-columns: 1fr 1fr;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-sp__mymenu-item {
  position: relative;
}
.nav-sp__mymenu-item:first-child::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: -0.5px;
  background-color: #3f75a4;
  width: 1px;
  height: calc(100% - 2rem);
}
.nav-sp__mymenu-link {
  color: white;
  font-size: 1.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  width: 100%;
  height: 100%;
}
.nav-sp__mymenu-icon {
  margin-right: 1rem;
}
.nav-sp__menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  list-style: none;
  margin: 0;
  padding: 1rem;
  border-bottom: 1px solid #d1d1d1;
}
.nav-sp__menu-item {
  position: relative;
}
.nav-sp__menu-item--home {
  grid-column: 1/4;
  border-bottom: 1px solid #d1d1d1;
}
.nav-sp__menu-item--support {
  grid-column: 1/4;
  border-top: 1px solid #d1d1d1;
}
.nav-sp__menu-item::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  right: -0.5px;
  background-color: #d1d1d1;
  width: 1px;
  height: calc(100% - 2rem);
}
.nav-sp__menu-item:first-child::after {
  display: none;
}
.nav-sp__menu-item:nth-child(4)::after {
  display: none;
}
.nav-sp__menu-item:nth-child(7)::after {
  display: none;
}
.nav-sp__menu-item:nth-child(4)::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.5px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  left: 50%;
  background-color: #d1d1d1;
  width: calc(100% - 2rem);
  height: 1px;
}
.nav-sp__menu-item:nth-child(5)::before {
  content: "";
  display: block;
  position: absolute;
  top: -0.5px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  left: 50%;
  background-color: #d1d1d1;
  width: calc(100% - 2rem);
  height: 1px;
}
.nav-sp__menu-item:nth-child(6)::before {
  content: "";
  display: block;
  position: absolute;
  top: -0.5px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  left: 50%;
  background-color: #d1d1d1;
  width: calc(100% - 2rem);
  height: 1px;
}
.nav-sp__menu-item:nth-child(7)::before {
  content: "";
  display: block;
  position: absolute;
  top: -0.5px;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  left: 50%;
  background-color: #d1d1d1;
  width: calc(100% - 2rem);
  height: 1px;
}
.nav-sp__menu-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1rem;
  font-size: 1.5rem;
  height: 100%;
  color: #727272;
  font-weight: bold;
}
.nav-sp__menu-icon {
  margin-bottom: 0.5rem;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-sp__bana {
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 390px;
  margin: 0 auto;
}
.nav-sp__sub-menu {
  border-bottom: 1px solid #d1d1d1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 0.5rem 0;
}
.nav-sp__sub-menu-item:first-child {
  border-right: 1px solid #d1d1d1;
}
.nav-sp__sub-menu-icon {
  font-size: 1.8em;
  margin-right: 0.5rem;
}
.nav-sp__sub-menu-link {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  font-size: 1.6rem;
  color: #727272;
  font-weight: bold;
}
.nav-sp__sub-menu-img {
  margin-right: 1rem;
}

.btn, .btn--light {
  font-size: 1.6rem;
  padding: 2rem 4rem;
  background-color: #001250;
  border-radius: 8px;
  color: #fff;
  display: inline-block;
  width: 100%;
  max-width: 240px;
  text-align: center;
  font-weight: bold;
}
.btn--light {
  color: #001250;
  background-color: #e9eff5;
}

.login__list {
  margin: 2rem 0;
}
.login__info {
  font-size: 1.5rem;
  padding: 1.5rem;
  background-color: #f5f5f5;
  margin-bottom: 1rem;
  font-weight: bold;
}
@media (min-width: 992px) {
  .login__info {
    font-size: 1.8rem;
    padding: 2rem;
    margin-bottom: 2rem;
  }
}
.login__info a {
  color: #3ba1da;
  text-decoration: underline;
}

.site-footer {
  margin-bottom: 9rem;
  border-top: 4px solid black;
}
@media (min-width: 768px) {
  .site-footer {
    margin-bottom: 0;
  }
}
.site-footer__info {
  padding: 4rem;
  max-width: 1280px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .site-footer__info {
    display: flex;
    padding: 4rem 8rem;
    align-items: flex-start;
  }
}
.site-footer__left {
  flex-basis: 40%;
}
@media (min-width: 768px) {
  .site-footer__right {
    margin-left: 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(25%, 1fr));
    width: 100%;
  }
}
.site-footer__logo {
  margin-bottom: 4rem;
}
.site-footer__logo-img {
  width: 240px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .site-footer__logo-img {
    margin-right: auto;
    margin-left: 0;
  }
}
.site-footer__bana {
  display: flex;
  justify-content: center;
}
.site-footer__copy {
  background-color: black;
  text-align: center;
  padding: 1rem;
}
.site-footer__copy-text {
  font-size: 1.2rem;
  color: #fff;
}
.site-footer__links {
  margin: 2rem 0;
}
.site-footer__links-item {
  font-size: 2rem;
  color: black;
  font-weight: bold;
}

.notes-box {
  padding: 1rem;
  background-color: #f5f5f5;
  font-size: 1.5rem;
  margin: 1rem 0;
  display: flex;
  align-items: center;
}
.notes-box i {
  font-size: 2rem;
  margin-right: 1rem;
}

.page-header {
  padding: 2rem;
  min-height: 90px;
  display: flex;
  align-items: center;
  color: #fff;
}
@media (min-width: 992px) {
  .page-header {
    padding: 4rem;
    min-height: 178px;
  }
}
.page-header__title {
  font-size: 3rem;
  display: inline-flex;
  align-items: center;
  font-weight: bold;
}
@media (min-width: 992px) {
  .page-header__title {
    font-size: 4rem;
  }
}
.page-header__icon {
  font-size: 1.4em;
  margin-right: 0.2em;
}

.page-top {
  display: flex;
  position: fixed;
  font-size: 1.5rem;
  align-items: center;
  background-color: #f5f5f5;
  border-radius: 4px;
  padding: 1rem;
  bottom: 10rem;
  right: 1.5rem;
  opacity: 0;
  cursor: pointer;
  color: black;
  transition: 0.2s ease all;
}
@media (min-width: 992px) {
  .page-top {
    font-size: 2rem;
    padding: 1.5rem;
    right: 2rem;
    bottom: 2rem;
  }
}
.page-top--show {
  opacity: 1;
}
.page-top__icon {
  margin-right: 0.5rem;
}

.smf-item__description {
  font-size: 0.9em;
}

form.snow-monkey-form[data-screen=confirm] .smf-item__description {
  display: none;
}/*# sourceMappingURL=common.css.map */