@charset "utf-8";
/* 共通CSS */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 2em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  width: 100%;
  height: 100%;
  background: #fff;
  color: #080404;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}
a {
  text-decoration: none;
}

/* flex共通 */
.flex, .flex_pc {
  display:-webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex_jsb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex_ac {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media all and (max-width: 800px) {
  .flex_pc {
    display: block;
  }
}

header {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 114px;
  padding: 25px 50px;
  background-color: #fff;
}
.header__logo {
  width: 97px;
}
.header__logo a {
  display: block;
  transition: opacity .2s;
}
.header__logo img {
  vertical-align: top;
}
@media (hover: hover) {
  .header__logo a:hover {
    opacity: 0.7;
  }
}
.menu {
  display: none;
}
.header__nav li {
  display: inline-block;
  padding-left: 2.5em;
}
.header__nav a {
  position: relative;
  color: #171717;
  transition: background-color .2s, background-image .2s, color .2s;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-bottom: 1px solid #171717;
  transition: width .2s;
}
.header__nav--pamphlet a {
  display: inline-block;
  padding: 0.9em 2.5em 0.9em 4em;
  background: #1A1311 url(../img/icon_book_white.png) left 2.5em center / 17px auto no-repeat;
  border: 1px solid #1A1311;
  color: #fff;
  font-weight: 700;
}
.header__nav .header__nav--pamphlet a::after {
  border: none;
}
@media (hover: hover) {
  .header__nav a:hover::after {
    width: 100%;
  }
  .header__nav--pamphlet a:hover {
    background-color: #fff;
    background-image: url(../img/icon_book_black.png);
    color: #1A1311;
  }
}

.splash {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
#splash__bar {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 100%;
}

main {
  position: relative;
  display: block;
  padding-top: 114px;
}

section {
  overflow: hidden;
}

.fv {
  position: relative;
  height: calc(100vh - 114px);
  height: -webkit-fill-available;
  min-height: 570px;
  margin-bottom: 1000px;
}
.fv__sharp {
  position: fixed;
  top: calc(25% + 100px);
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.4;
  width: calc(100% - 48px);
  max-width: 700px;
  animation: none;
}
.fv__inner {
  position: absolute;
  top: calc(50% + 30px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.fv__title img {
  width: 61.5vw;
  max-width: 492px;
}
.fv__text {
  padding-top: 0.5em;
  font-size: 6.25em;
  font-weight: 900;
  line-height: 1.28em;
}
.fv__text br {
  display: none;
}

.scroll {
  position: fixed;
  right: 16px;
  bottom: 35px;
}
.scroll--white {
  opacity: 0;
}

.simple {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-image: linear-gradient(to bottom, #F7B862, #5D57F8);
}
.simple__text {
  position: fixed;
  top: calc(50% + 25px);
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100%;
  max-width: 7.75em;
  margin: 0 auto;
  color: #fff;
  font-size: 5em;
  font-weight: 900;
  line-height: 1.75em;
}
.simple__text.become-absolute {
  position: absolute;
}
.simple__vertical {
  position: fixed;
  top: 150px;
  left: 100%;
  opacity: 0.4;
  width: 100%;
  color: #fff;
  font-size: 10em;
  font-weight: 700;
  line-height: 1em;
}

.steps {
  position: relative;
  background-color: #F7B862;
}
.steps__item {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  font-weight: 700;
  color: #fff;
}
.steps__item01 {
  opacity: 0;
  margin-bottom: -100vh;
  background-color: #F7B862;
}
.steps__item02 {
  opacity: 0;
  margin-bottom: -100vh;
  background-color: #BC939B;
}
.steps__item23 {
  opacity: 0;
  margin-bottom: -100vh;
  background-color: #BC939B;
}
.steps__item03 {
  opacity: 0;
  margin-bottom: -100vh;
  background-color: #8C75CB;
}
.steps__item34 {
  opacity: 0;
  margin-bottom: -100vh;
  background-color: #8C75CB;
}
.steps__item04 {
  opacity: 0;
  background-color: #5D57F8;
}
.steps__inner {
  position: absolute;
  top: calc(50% + 57px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.steps__title {
  height: 138px;
  margin-bottom: 28.8px;
  overflow: hidden;
}
.steps__title span {
  display: block;
  padding: 0.7em 24px 0.73em;
  color: #fff;
  font-size: 3em;
  font-weight: 900;
  line-height: 1.43em;
  text-align: center;
}
.steps__title br {
  display: none;
}
.steps__title .steps__title-br {
  display: inline;
}
span.steps__title--3line {
  padding: 0 24px;
}
.steps__bullets {
  position: absolute;
  top: 130px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 100%;
  max-width: 496px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: right;
}
.steps__bullets1 {
  opacity: 0;
}
.steps__bullets span {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0.3;
}
.steps__bullets.first span:nth-child(1) {
  opacity: 1;
}
.steps__bullets.first span:nth-child(2),
.steps__bullets.first span:nth-child(3) {
  opacity: 0.3;
}
.steps__bullets.second span:nth-child(1),
.steps__bullets.third span:nth-child(3) {
  opacity: 0.3;
}
.steps__bullets.second span:nth-child(2) {
  opacity: 1;
}
.steps__bullets.third span:nth-child(1),
.steps__bullets.third span:nth-child(2) {
  opacity: 0.3;
}
.steps__bullets.third span:nth-child(3) {
  opacity: 1;
}
.slide2,
.slide3,
.slide4 {
  width: calc(300% + 144px);
}
.slide1__item {
  padding-left: 24px;
  margin-right: -24px;
}
.slide2__item,
.slide3__item,
.slide4__item {
  padding: 0 24px;
}
.steps__image {
  width: 100%;
  max-width: 400px;
  height: 77.67vw;
  max-height: 309.49px;
  margin: 0 auto;
  border-radius: 10px;
  overflow: hidden;
}
.steps__image img {
  width: calc(100% + 24px);
  max-width: none;
}
.steps__text {
  width: calc(100% - 24px);
  max-width: 400px;
  height: 2.5em;
  margin: 0 auto;
  padding: 0.25em 0.25em 0.25em 1.75em;
  transform: translate(-48px, -50%);
  background-color: #261D1D;
  border-radius: 10px;
  color: #fff;
  font-size: 1.25em;
  overflow: hidden;
}
.steps__text span {
  display: block;
}
.steps__num {
  width: 100%;
  max-width: 496px;
  height: 54px;
  margin: 0 auto;
  padding: 0 24px;
  overflow: hidden;
}
.steps__num span:nth-child(1) img {
  width: 51px;
  vertical-align: top;
}
.steps__num span:nth-child(2) {
  display: inline-block;
  width: 83px;
  text-align: center;
}
.steps__num span:nth-child(2) img {
  display: block;
  width: auto;
  height: 54px;
}
.steps__num span:nth-child(3) img {
  width: 47px;
  padding-top: 34px;
  vertical-align: top;
}

.message {
  position: relative;
  height: 75vh;
  min-height: 500px;
  margin-top: -1px;
  background-color: #5D57F8;
}
.message__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  width: 100%;
  color: #fff;
  font-size: 5em;
  font-weight: 900;
  line-height: 1.43em;
  text-align: center;
}

.search {
  position: relative;
  height: calc(100vh - 114px + 1000px);
  min-height: 1550px;
  padding-top: 1000px;
  background-color: #fff;
}
.search__sharp {
  position: fixed;
  top: calc(50% + 200px);
  left: 50%;
  transform: translate(-50%, -50%) scale(20);
  opacity: 0;
  width: calc(100% - 48px);
  max-width: 500px;
}
.search__inner {
  position: absolute;
  top: calc(50% - 25px + 590px);
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
.search__title img {
  width: 300px;
}
.search__text {
  display: inline-block;
  padding: 1em 0 1.5em;
  font-size: 3em;
  font-weight: 900;
  line-height: 1.28em;
  text-align: left;
}
.search__text--br {
  display: none;
}
.search__link {
  padding: 0 24px;
}
.search__link a {
  display: inline-block;
  width: 100%;
  max-width: 425px;
  padding: 0.75em;
  background-image: linear-gradient(to right, #F7B862, #5D57F8);
  color: #fff;
  font-weight: 700;
}
.search__link span {
  display: inline-block;
  padding-left: 1.5em;
  background: transparent url(../img/icon_person_white.png) left center / 1em auto no-repeat;
}

footer small {
  display: block;
  color: #ccc;
  font-size: 0.75em;
  text-align: center;
}



@media all and (max-width: 1200px) {
  header {
    padding: 25px;
  }

  .steps__title span {
    font-size: 2.5em;
  }
}

@media all and (max-width: 900px) {
  .header__nav--pamphlet a {
    padding: 0.9em 1em 0.9em 2.5em;
    background-position: left 1em center;
  }
  .header__nav--mypage a,
  .header__nav--like a {
    padding: 1em 1em 1em 2.5em;
    background-position: left 1em center;
  }
}

@media all and (max-width: 800px) {
  header {
    height: 60px;
    padding: 14px 24px;
  }
  .header__logo {
    width: 53px;
  }
  .menu {
    position: fixed;
    top: 0;
    right: 0;
    display: block;
    width: 60px;
    height: 60px;
  }
  .menu span {
    position: absolute;
    left: 17px;
    height: 2px;
    background-color: #1A1311;
    transition: transform .3s, opacity .3s;
  }
  .menu span:nth-child(1) {
    top: 20px;
    width: 26px;
  }
  .menu span:nth-child(2) {
    top: 28px;
    width: 19px;
  }
  .menu span:nth-child(3) {
    top: 36px;
    width: 14px;
  }
  .menu.batsu span:nth-child(1) {
    transform: rotate(135deg);
    top: 28px;
  }
  .menu.batsu span:nth-child(2) {
    opacity: 0;
  }
  .menu.batsu span:nth-child(3) {
    transform: rotate(-135deg);
    top: 28px;
    width: 26px;
  }
  nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    display: none;
    width: 100%;
    height: calc(100% - 60px);
    background-color: #fff;
  }
  .header__nav {
    padding: 2em 0;
    text-align: center;
  }
  .header__nav li {
    display: block;
    padding: 1em 0;
  }
  .header__nav .header__nav--mypage,
  .header__nav .header__nav--like {
    padding-left: 0;
  }
  .header__nav--mypage a {
    padding: 0.9em 5em 0.9em 6.5em;
    background-position: 5em;
  }
  .header__nav--like a {
    padding: 0.9em 4.5em 0.9em 6em;
    background-position: 4.5em;
  }

  main {
    padding-top: 60px;
  }
  .fv {
    position: relative;
    height: calc(100vh - 60px);
  }
  .fv__sharp {
    top: 50%;
  }
  .fv__text {
    font-size: 13vw;
  }
  .fv__text br {
    display: inline;
  }

  .simple__text {
    font-size: 11.2vw;
  }
  .simple__vertical {
    top: 75px;
    font-size: 8.875em;
  }

  .steps__item {
    min-height: 500px;
  }
  .steps__inner {
    top: calc(50% + 15px);
  }
  .steps__title {
    height: 34.3vw;
    margin-bottom: 18.01px;
  }
  .steps__title span {
    font-size: 8vw;
    text-align: left;
  }
  .steps__title br {
    display: inline;
  }
  .steps__bullets {
    top: 30vw;
  }
  .steps__text {
    font-size: 4.8vw;
  }

  .message__text {
    font-size: 8.5vw;
  }

  .search__text--br {
    display: inline;
  }
}

@media all and (max-width: 700px) {
  .search__sharp {
    top: calc(50% + 90px);
  }
  .search__title img {
    width: 61.5vw;
  }
  .search__text {
    font-size: 10vw;
  }
}

@media all and (max-width: 750px) {
    .fv__inner {
        position: absolute;
        top: calc(50% + 25px);
    }
}

@media all and (max-width: 424px) {
  .steps__text {
    transform: translate(-36px, -50%);
    padding: 0.25em 0.75em;
    border-radius: 0 10px 10px 0;
  }
}

/* overwrite css */
.steps {
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

main.frame::before,
main.frame::after {
  opacity: 0;
}
main p {
  margin: 0;
}

.search__title {
  padding-bottom: 0;
}

footer {
  padding: 100px 0 0;
  background-color: white;
}
.footer__inner {
  display: none;

}
