@charset "UTF-8";
@media screen and (max-width: 767px) {
  .only-pc {
    display: none !important;
  }
}
@media print, screen and (min-width: 768px) {
  .only-sp {
    display: none;
  }
}
/*共通*/
.find {
  overflow: hidden;
  position: relative;
  padding: 0;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #000;
  line-height: 1.4;
}
.find a {
  transition: all 0.3s;
  text-decoration: none;
  color: #000;
  line-height: 1.4;
}
.find a:hover {
  opacity: 0.8;
}
.find p {
  line-height: 1.5;
}
.find ul {
  list-style: none;
}
.find img {
  vertical-align: bottom;
}

.w1100 {
  width: 95%;
  margin: 0 auto;
  max-width: 1100px;
}

.find {
  margin-bottom: 3em;
}
.find__header {
  text-align: center;
}
.find__wrap {
  width: 95%;
  margin: 0 auto;
  max-width: 1200px;
}
.find__howto__ttl {
  width: 75%;
  margin: 0 auto;
  text-align: center;
}
.find__howto__steplist {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2em;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .find__howto__steplist {
    grid-template-columns: repeat(1, 1fr);
    gap: 25px;
    max-width: 500px;
  }
}
.find__howto__step {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .find__howto__step {
    max-width: 500px;
  }
}
.find__howto__step-img {
  width: 28%;
}
.find__howto__step-main {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .find__howto__step-main {
    width: 68%;
  }
}
.find__howto__step-main-img {
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .find__howto__step-main-img {
    width: 45%;
    max-width: 120px;
    margin-bottom: 4px;
  }
}
.find__btn {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.find__btn a {
  display: block;
}
@media screen and (max-width: 767px) {
  .find__about {
    max-width: 500px;
    margin: 0 auto;
    margin-top: 2em;
  }
}
.find__about p {
  color: #000F49;
  line-height: 1.8;
}
.find__about__ttl {
  color: #000F49;
  font-weight: 700;
  font-size: 1.4em;
  margin-bottom: 1em;
}
.find__about__btn {
  max-width: 450px;
}
.find__about__btn a {
  display: block;
}
.find .mt-top {
  margin-top: 3em;
}
@media screen and (max-width: 767px) {
  .find .mt-top {
    margin-top: 2em;
  }
}

/*アニメーション*/
.anime-l {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateX(-40px);
}

.anime-b {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transform: translateY(30px);
}

.anime-o {
  opacity: 0;
  visibility: hidden;
  transition: 2.5s;
}

.anime-o2 {
  opacity: 0;
  visibility: hidden;
  transition: 3.5s;
  transition-delay: 0.4s;
}

.anime-o3 {
  opacity: 0;
  visibility: hidden;
  transition: 3.5s;
  transition-delay: 1.6s;
}

.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}