@charset "UTF-8";
.body {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 300;
}

.header {
  height: 68px;
  background: #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  position: fixed;
  z-index: 1;
}

.header__inner {
  width: 100%;
  max-width: 1340px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0 20px 0;
}

.header__logo {
  font-size: 20px;
  font-weight: 300;
  letter-spacing: 0.7px;
}

@media (max-width: 768px) {
  .header-nav {
    display: none;
  }
}

.header-nav__list {
  width: 362px;
  padding-top: 2px;
  letter-spacing: 0.8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header-nav__link {
  color: #fff;
  font-weight: 500;
}

.header-nav__link::before {
  position: relative;
  top: -1px;
  left: -7px;
  display: inline-block;
  width: 10px;
  height: 10px;
  content: '';
  border-radius: 100%;
  background: #fff;
}

.header__btn,
.header__btn span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.header__btn {
  display: none;
  position: relative;
  top: 5px;
  width: 20px;
  height: 16px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

@media (max-width: 768px) {
  .header__btn {
    display: block;
  }
}

.header__btn span {
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #fff;
}

.header__btn span:nth-of-type(1) {
  top: 0;
}

.header__btn span:nth-of-type(2) {
  top: 7px;
}

.header__btn span:nth-of-type(3) {
  bottom: 0;
}

.header__btn.header__btn_active span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-45deg);
          transform: translateY(7px) rotate(-45deg);
}

.header__btn.header__btn_active span:nth-of-type(2) {
  opacity: 0;
}

.header__btn.header__btn_active span:nth-of-type(3) {
  -webkit-transform: translateY(-7px) rotate(45deg);
          transform: translateY(-7px) rotate(45deg);
}

.drawer {
  position: fixed;
  top: 68px;
  visibility: hidden;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  opacity: 0;
}

.drawer_active {
  visibility: visible;
  opacity: 1;
}

.drawer-bg {
  visibility: hidden;
  position: fixed;
  top: 68px;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  -webkit-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
}

.drawer-bg_active {
  visibility: visible;
  -webkit-transition: all 0.5s 0s ease;
  transition: all 0.5s 0s ease;
  opacity: 0.8;
}

.drawer-nav {
  position: fixed;
  height: 100%;
  width: 100%;
}

.drawer-nav__list {
  margin-top: 100px;
}

.drawer-nav__item {
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #fff;
  width: 180px;
  margin: 0 auto;
}

.drawer-nav__link {
  color: #fff;
  font-weight: bold;
}

.drawer-nav__link::before {
  position: relative;
  top: -1px;
  left: -7px;
  display: inline-block;
  width: 10px;
  height: 10px;
  content: '';
  border-radius: 100%;
  background: #fff;
}

.fv {
  width: 100%;
  height: 100vh;
  background-image: url(../images/fv.png);
  background-size: cover;
  background-position: center;
  position: relative;
}

.fv__scroll {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  position: absolute;
  bottom: 93.5px;
  right: 24.5px;
  letter-spacing: 0.5px;
}

.fv__scroll::after {
  content: "";
  position: absolute;
  right: 9px;
  width: 1px;
  background: #fff;
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite;
}

@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 150px;
    opacity: 0;
  }
  30% {
    height: 40px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 210px;
    opacity: 0;
  }
}

@keyframes pathmove {
  0% {
    height: 0;
    top: 150px;
    opacity: 0;
  }
  30% {
    height: 40px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 210px;
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .contents {
    margin-top: 36px;
  }
}

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1380px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .media {
    display: block;
  }
}

.media__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.media__img-wrapper {
  width: 50%;
  height: 699px;
}

@media (max-width: 768px) {
  .media__img-wrapper {
    width: 100%;
  }
}

.media__body {
  width: 50%;
  height: 699px;
}

@media (max-width: 768px) {
  .media__body {
    width: 100%;
    height: 720px;
  }
}

.media__body_reversal {
  background: #000000;
  color: #fff;
}

.media__body_sky {
  background: #8ECEEA;
}

.media__badge {
  display: block;
  padding-top: 33px;
  margin-left: 33px;
  margin-bottom: 50px;
  font-size: 20px;
  font-weight: 600;
}

.media__badge_reverse {
  text-align: right;
  margin-right: 42px;
  padding-top: 39px;
}

.media__logo {
  width: 59%;
  height: auto;
  margin: 0 auto;
  padding-left: 30px;
}

.media__logo_second {
  width: 47%;
  padding-left: 17px;
  margin-top: -77px;
}

.media__logo_third {
  width: 74%;
  margin-top: -2px;
  padding-left: 0;
}

.media__txt {
  min-width: 315px;
  width: 64%;
  margin: 27px auto 36px;
  line-height: 2.18;
  letter-spacing: 0.5px;
  padding-left: 5.2%;
}

.media__txt_second {
  margin-top: -7px;
  margin-bottom: 38px;
  width: 57.3%;
  padding-left: 6px;
}

.media__txt_third {
  width: 55%;
  margin-top: 42px;
  margin-bottom: 40px;
  line-height: 2.18;
  padding-left: 3px;
}

.media__btn {
  display: block;
  position: relative;
  width: 54.3%;
  height: 47px;
  color: #000000;
  font-weight: 900;
  border: solid 1px #000000;
  text-align: center;
  margin-left: 23.25%;
  margin-bottom: 16px;
  padding-top: 14px;
  letter-spacing: 0.7px;
}

.media__btn::after {
  position: absolute;
  top: 15px;
  right: 15px;
  display: inline-block;
  content: '▸';
  font-size: 14px;
}

@media (max-width: 768px) {
  .media__btn::after {
    right: 10px;
  }
}

.media__btn:hover {
  color: #fff;
  background: #000;
}

.media__btn_reversal {
  border-color: #fff;
  color: #fff;
  padding-top: 14px;
  margin-left: 22.8%;
}

.media__btn_reversal:hover {
  background: #fff;
  color: #000;
}

.media__link {
  display: block;
  height: 100%;
  padding-top: 14px;
  color: #000;
}

.media__link:hover {
  color: #fff;
  background: #000;
}

.media__link_reversal {
  color: #fff;
}

.media_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.logo__img {
  width: 100%;
  height: 100%;
}

.logo__link {
  color: #fff;
}

.cta {
  height: 437px;
  background: #000000;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  .cta {
    height: 630px;
  }
}

.cta__ttl {
  font-size: 30px;
  font-weight: bold;
  padding-top: 109px;
  text-align: center;
}

@media (max-width: 768px) {
  .cta__ttl {
    font-size: 26px;
  }
}

.cta__txt {
  margin-top: 28px;
  font-size: 14px;
  text-align: center;
}

.cta__link {
  display: block;
  text-align: center;
  padding-top: 27px;
  width: 306px;
  font-size: 20px;
  font-weight: 900;
  background: #FFFFFF;
  color: #000000;
  line-height: 1.2;
  position: relative;
  height: 102px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.cta__link:hover {
  -webkit-filter: brightness(80%);
          filter: brightness(80%);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

@media (max-width: 768px) {
  .cta__link {
    margin: 0 auto;
    max-width: 266px;
  }
}

.cta__link > span {
  font-size: 16px;
  font-weight: 500;
}

.cta__link::after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  border: 8px solid transparent;
  border-left-color: #000;
  top: 47px;
  right: 10px;
}

.cta__link:nth-child(2) {
  margin: 0 20px;
}

@media (max-width: 768px) {
  .cta__link:nth-child(2) {
    margin: 20px auto;
  }
}

.cta__link-container {
  width: 71%;
  height: 102px;
  margin: 0 auto;
  margin-top: 52px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 980px;
  min-width: 690px;
}

@media (max-width: 768px) {
  .cta__link-container {
    display: block;
    min-width: auto;
  }
}

.footer {
  padding-top: 17px;
  padding-bottom: 15px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.5px;
}
/*# sourceMappingURL=styles.css.map */