@charset "UTF-8";
/* 共通の要素--------------------------------------------------------------------------------------- */
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

a {
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

*:focus {
  outline: none;
}

* {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  color: #333;
}

.br-l {
  display: none;
}
@media screen and (max-width: 1024px) {
  .br-l {
    display: block;
  }
}
.br-l-hide {
  display: block;
}
@media screen and (max-width: 1024px) {
  .br-l-hide {
    display: none;
  }
}
.br-m {
  display: none;
}
@media screen and (max-width: 980px) {
  .br-m {
    display: block;
  }
}
.br-m-hide {
  display: block;
}
@media screen and (max-width: 980px) {
  .br-m-hide {
    display: none;
  }
}
.br-s {
  display: none;
}
@media screen and (max-width: 520px) {
  .br-s {
    display: block;
  }
}
.br-s-hide {
  display: block;
}
@media screen and (max-width: 520px) {
  .br-s-hide {
    display: none;
  }
}

.wrap {
  position: relative;
  overflow-x: hidden;
  max-width: 100%;
}
@media screen and (min-width: 981px) {
  .wrap {
    display: none;
  }
}

/*ヘッダー*/
.header {
  position: fixed;
  z-index: 10;
  width: 100%;
}
.header__outer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 100%;
  margin: auto;
  padding: 0 30px;
}
@media screen and (max-width: 980px) {
  .header__outer {
    padding: 0 10px;
  }
}
.header__logo {
  margin-top: 20px;
  width: 21.4vw;
}
@media screen and (max-width: 980px) {
  .header__logo {
    max-width: 145px;
    margin-top: 10px;
  }
}
.header__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  margin-top: 10px;
}
@media screen and (max-width: 980px) {
  .header__right {
    position: fixed;
    top: 15px;
    right: 50px;
    margin-top: 0;
  }
}
.header__search {
  width: 50px;
  height: 50px;
  cursor: pointer;
}
@media screen and (max-width: 980px) {
  .header__search {
    width: 25px;
    height: 25px;
  }
}
.header__icon {
  cursor: pointer;
}
@media screen and (max-width: 980px) {
  .header__icon {
    display: none;
  }
}

/*ハンバーガーメニュー--------------------------------------------------------------------*/
.hamburger {
  position: fixed;
  z-index: 20;
  top: 20px;
  right: 20px;
  display: none;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 980px) {
  .hamburger {
    display: block;
  }
}
.hamburger__bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-bottom: 5px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background-color: #fff;
}
.hamburger .cross-top {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(7px) rotate(45deg);
          transform: translateY(7px) rotate(45deg);
}
.hamburger .cross-middle {
  opacity: 0;
}
.hamburger .cross-bottom {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transform: translateY(-7px) rotate(-45deg);
          transform: translateY(-7px) rotate(-45deg);
}

/*ハンバーガーメニュー内-----------------------------------------------------------------*/
.slide {
  position: fixed;
  z-index: 11;
  top: 0;
  right: 0;
  overflow-y: scroll;
  width: 60%;
  height: calc(var(--vh, 1vh) * 100);
  padding: 80px 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background: -webkit-gradient(linear, left top, left bottom, from(#3B70C7), color-stop(99.95%, #2A1E80));
  background: -webkit-linear-gradient(#3B70C7 0%, #2A1E80 99.95%);
  background: linear-gradient(#3B70C7 0%, #2A1E80 99.95%);
}
.slide.show {
  -webkit-transition: 0.5s;
  transition: 0.5s;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.slide__nav {
  padding: 0 15px;
}
.slide__menu {
  font-size: 1.5rem;
  display: block;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: #333 solid 1px;
}
.slide__menu--btn {
  max-height: 50px;
  width: auto;
  display: block;
  margin: 0 auto;
}
.slide__none {
  overflow: hidden;
}

.footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  padding: 0 20px 10px;
}
.footer__nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 965px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 980px) {
  .footer__nav {
    display: none;
  }
}
.footer__bottom {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: 200px;
}
@media screen and (max-width: 980px) {
  .footer__bottom {
    display: none;
  }
}
.footer__bottom-sp {
  display: none;
}
@media screen and (max-width: 980px) {
  .footer__bottom-sp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 10px 10px;
  }
}
.footer__left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 40px;
  bottom: 10px;
}
.footer__left-sp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.footer__left--icon {
  width: 35px;
  height: 35px;
}
.footer__left--icon-sp {
  width: 30px;
  height: 30px;
}
.footer__center {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 435px;
  margin-right: 30px;
}
.footer__info {
  border-radius: 8px;
  border: 1px solid #999999;
  background: -webkit-gradient(linear, left top, left bottom, from(#b3b3b3), color-stop(50.5%, #f2f2f2), color-stop(99.95%, #b3b3b3));
  background: -webkit-linear-gradient(#b3b3b3 0%, #f2f2f2 50.5%, #b3b3b3 99.95%);
  background: linear-gradient(#b3b3b3 0%, #f2f2f2 50.5%, #b3b3b3 99.95%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
  width: 100%;
  margin-bottom: 18px;
}
.footer__info ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 10;
  width: 100%;
  overflow-x: hidden;
}
.footer__info ul .footer__top--copyright {
  white-space: nowrap;
  position: absolute;
  margin: auto;
  opacity: 0;
  pointer-events: none;
}
.footer__info ul .footer__top--copyright.info-current {
  -webkit-animation: scrollInfo 7s linear;
          animation: scrollInfo 7s linear;
  pointer-events: all;
}
@-webkit-keyframes scrollInfo {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  80% {
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
  99% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    opacity: 0;
  }
}
@keyframes scrollInfo {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  80% {
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
  99% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    opacity: 0;
  }
}
.footer__info-sp {
  border-radius: 8px;
  border: 1px solid #999999;
  background: -webkit-gradient(linear, left top, left bottom, from(#b3b3b3), color-stop(50.5%, #f2f2f2), color-stop(99.95%, #b3b3b3));
  background: -webkit-linear-gradient(#b3b3b3 0%, #f2f2f2 50.5%, #b3b3b3 99.95%);
  background: linear-gradient(#b3b3b3 0%, #f2f2f2 50.5%, #b3b3b3 99.95%);
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 0 10px;
  width: 100%;
  height: 20px;
  margin-bottom: 10px;
  overflow-x: hidden;
}
.footer__info-sp ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 10;
}
.footer__info-sp ul .footer__top--copyright {
  white-space: nowrap;
  position: absolute;
  margin: auto;
  opacity: 0;
  pointer-events: none;
  top: 2px;
}
.footer__info-sp ul .footer__top--copyright.info-current {
  -webkit-animation: scrollInfo 7s linear;
          animation: scrollInfo 7s linear;
  pointer-events: all;
}
@keyframes scrollInfo {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  20% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  80% {
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
  }
  99% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-110%);
            transform: translateX(-110%);
    opacity: 0;
  }
}
.footer__info--head {
  font-size: 1.1rem;
  margin-right: 20px;
  font-weight: bold;
}
.footer__info--head-sp {
  color: #FFFF00;
  font-size: 1.2rem;
  margin-bottom: 5px;
}
.footer__info--text {
  font-size: 1rem;
}
.footer__info--text-sp {
  font-size: 1rem;
}
.footer__copy {
  color: #fff;
}
.footer__copy-sp {
  color: #fff;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
  white-space: nowrap;
  margin-top: 7px;
}
.footer__right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
}
.footer__right-sp {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 7px;
}
.footer__right--link {
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: 0.025em;
  text-shadow: 0 0 30px #fff;
  font-family: "Ropa Sans", sans-serif;
}
.footer__right--link-sp {
  color: #fff;
  font-family: "Ropa Sans", sans-serif;
}
.footer__icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  margin: 0 10px 0 30px;
}/*# sourceMappingURL=common.css.map */