@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@600&display=swap");
.fixed-contact {
  display: none;
}

.build-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
@media (max-width: 1024px) {
  .build-header {
    position: fixed;
    background: #fff;
    -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
    border-radius: 0 0 8px 8px;
  }
}
.build-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 35px 0 30px;
}
@media (max-width: 1024px) {
  .build-header__inner {
    padding: 8px 20px 10px 13px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media (min-width: 1025px) {
  .build-header__logo {
    background: #fff;
    border-radius: 0px 0px 10px 10px;
    -webkit-box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.16);
            box-shadow: 0px 3px 12px rgba(0, 0, 0, 0.16);
    margin-right: 28px;
  }
  .build-header__logo a {
    display: block;
    padding: 21px 28px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  .build-header__logo a:hover {
    opacity: 0.7;
  }
  .build-header__logo img {
    width: 123px;
  }
}
@media (max-width: 1024px) {
  .build-header__logo {
    width: 67px;
  }
}
.build-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-top: 45px;
}
.build-header__menu .btn-wrap .btn {
  font-weight: bold;
  color: #fff;
  letter-spacing: 0.04em;
  display: inline-block;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
  border-radius: 100px;
  text-align: center;
}
.build-header__menu .btn-wrap--contact .btn {
  background: rgba(0, 0, 0, 0.4);
  border: solid 3px #fff;
  padding: 7px 24px;
}
.build-header__menu .btn-wrap--contact .btn:hover {
  border-color: #FF4E4F;
  color: #FF4E4F;
  background: #fff;
}
.build-header__menu .btn-wrap--start {
  margin-left: 20px;
}
.build-header__menu .btn-wrap--start .btn {
  background: #FF4E4F;
  padding: 7px 16px;
  border: solid 3px #FF4E4F;
}
.build-header__menu .btn-wrap--start .btn:hover {
  background: #fff;
  color: #FF4E4F;
}
@media (max-width: 1024px) {
  .build-header__menu {
    padding-top: 0;
  }
  .build-header__menu .btn-wrap .btn {
    font-size: 1rem;
    line-height: 1.4;
  }
  .build-header__menu .btn-wrap--contact .btn {
    border: solid 1px #7B7B7B;
    color: #7B7B7B;
    background: #fff;
    padding: 13px 13px;
  }
  .build-header__menu .btn-wrap--start {
    margin-left: 10px;
  }
  .build-header__menu .btn-wrap--start .btn {
    padding: 4px 21px;
  }
}
.build-header.fixed {
  position: fixed;
  top: -78px;
  background: #fff;
  padding: 5px 0;
  height: 78px;
  -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.build-header.fixed .build-header__inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.build-header.fixed .build-header__logo {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  padding-bottom: 9px;
}
.build-header.fixed .build-header__logo a {
  padding: 0;
}
.build-header.fixed .build-header__menu {
  padding-top: 0;
}
.build-header.fixed .build-header__menu .btn-wrap--contact .btn {
  border-color: rgba(0, 0, 0, 0);
}
.build-header.fixed .build-header__menu .btn-wrap--contact .btn:hover {
  border-color: #FF4E4F;
}
.build-header.fixed.show {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

.main--build .gr {
  color: #00BFA5;
}
.main--build .rd {
  color: #ff4e4f;
}
.main--build .bold {
  font-weight: bold;
}
@media (min-width: 1025px) {
  .main--build .ttl-line {
    line-height: 1.4;
    padding-bottom: 22px;
  }
}
@media (max-width: 1024px) {
  .main--build .ttl-line {
    line-height: 1.4545454545;
    padding-bottom: 15px;
  }
}

@-webkit-keyframes slide {
  0% {
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    opacity: 0;
    top: 50%;
  }
  5%, 95% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-400%);
    transform: translateY(-400%);
  }
}

@keyframes slide {
  0% {
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    opacity: 0;
    top: 50%;
  }
  5%, 95% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: translateY(-400%);
    transform: translateY(-400%);
  }
}
.mv {
  height: 580px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.mv .txt-area {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 60px 3% 0;
}
.mv .txt-wrap {
  max-width: none;
}
.mv .ttl {
  font-size: 4.8rem;
  font-weight: bold;
}
.mv .txt {
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.625;
  letter-spacing: 0;
  margin-top: 10px;
}
.mv .txt span {
  display: inline-block;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(15%, transparent), color-stop(15%, #FFFF00), color-stop(85%, #FFFF00), color-stop(85%, transparent));
  background: linear-gradient(to bottom, transparent 15%, #FFFF00 15%, #FFFF00 85%, transparent 85%);
}
.mv .img-area {
  width: 50%;
}
@media (max-width: 1024px) {
  .mv {
    height: auto;
    display: block;
  }
  .mv .txt-area {
    width: 100%;
    padding: 107px 3% 39px;
    text-align: center;
  }
  .mv .ttl {
    font-size: 3.2rem;
  }
  .mv .txt {
    font-size: 2rem;
    line-height: 1.6;
    margin-top: 17px;
  }
  .mv .img-area {
    width: 100%;
    height: 272px;
  }
}
.mv--1 .img-area {
  background: center center/cover no-repeat;
}
.mv--2 .img-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.mv--2 .img-area .img-wrap {
  background: center center/cover no-repeat;
  width: 50%;
  height: 50%;
}
.mv--3 .txt-area {
  background: center center/cover no-repeat;
}
.mv--3 .txt-area .ttl {
  font-family: "Noto Serif JP", serif;
}
@media (min-width: 1025px) {
  .mv--3 .txt-area {
    padding-top: 22px;
  }
  .mv--3 .txt-area .ttl {
    font-size: 5.6rem;
  }
  .mv--3 .txt-area .txt {
    font-size: 2.8rem;
    line-height: 1.7142857143;
  }
}
.mv--3 .img-area {
  position: relative;
  overflow: hidden;
}
.mv--3 .img-area .img-wrap {
  width: 37%;
  max-width: 299px;
  position: absolute;
  top: 50%;
  opacity: 0;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
}
.mv--3 .img-area .img-wrap .img {
  background: center center/cover no-repeat;
  padding-bottom: 138.5%;
}
.mv--3 .img-area .img-wrap--1 {
  left: 60%;
  -webkit-animation: slide 24s 0s linear infinite;
  animation: slide 24s 0s linear infinite;
}
.mv--3 .img-area .img-wrap--2 {
  left: 4.5%;
  -webkit-animation: slide 24s 3s linear infinite;
  animation: slide 24s 3s linear infinite;
}
.mv--3 .img-area .img-wrap--3 {
  left: 46%;
  -webkit-animation: slide 24s 6s linear infinite;
  animation: slide 24s 6s linear infinite;
}
.mv--3 .img-area .img-wrap--4 {
  left: 4.5%;
  -webkit-animation: slide 24s 9s linear infinite;
  animation: slide 24s 9s linear infinite;
}
.mv--3 .img-area .img-wrap--5 {
  left: 60%;
  -webkit-animation: slide 24s 12s linear infinite;
  animation: slide 24s 12s linear infinite;
}
.mv--3 .img-area .img-wrap--6 {
  left: 4.5%;
  -webkit-animation: slide 24s 15s linear infinite;
  animation: slide 24s 15s linear infinite;
}
.mv--3 .img-area .img-wrap--7 {
  left: 46%;
  -webkit-animation: slide 24s 18s linear infinite;
  animation: slide 24s 18s linear infinite;
}
.mv--3 .img-area .img-wrap--8 {
  left: 4.5%;
  -webkit-animation: slide 24s 21s linear infinite;
  animation: slide 24s 21s linear infinite;
}
@media (max-width: 1024px) {
  .mv--3 .img-area .img-wrap {
    width: 40%;
    max-width: none;
  }
  .mv--3 .img-area .img-wrap--1 {
    left: 58%;
    -webkit-animation: slide 24s 0s linear infinite;
    animation: slide 24s 0s linear infinite;
  }
  .mv--3 .img-area .img-wrap--2 {
    left: 3%;
    -webkit-animation: slide 24s 3s linear infinite;
    animation: slide 24s 3s linear infinite;
  }
  .mv--3 .img-area .img-wrap--3 {
    left: 46%;
    -webkit-animation: slide 24s 6s linear infinite;
    animation: slide 24s 6s linear infinite;
  }
  .mv--3 .img-area .img-wrap--4 {
    left: 3%;
    -webkit-animation: slide 24s 9s linear infinite;
    animation: slide 24s 9s linear infinite;
  }
  .mv--3 .img-area .img-wrap--5 {
    left: 58%;
    -webkit-animation: slide 24s 12s linear infinite;
    animation: slide 24s 12s linear infinite;
  }
  .mv--3 .img-area .img-wrap--6 {
    left: 3%;
    -webkit-animation: slide 24s 15s linear infinite;
    animation: slide 24s 15s linear infinite;
  }
  .mv--3 .img-area .img-wrap--7 {
    left: 46%;
    -webkit-animation: slide 24s 18s linear infinite;
    animation: slide 24s 18s linear infinite;
  }
  .mv--3 .img-area .img-wrap--8 {
    left: 3%;
    -webkit-animation: slide 24s 21s linear infinite;
    animation: slide 24s 21s linear infinite;
  }
}
.mv--4 {
  background: center center/cover no-repeat;
}
.mv--4 .txt-area {
  display: block;
  width: 100%;
  text-align: center;
}
.mv--4 .txt-area .ttl {
  font-family: "Noto Serif JP", serif;
}
@media (min-width: 1025px) {
  .mv--4 .txt-area {
    padding-top: 126px;
  }
  .mv--4 .txt-area .ttl {
    font-size: 5.6rem;
  }
  .mv--4 .txt-area .txt {
    font-size: 2.6rem;
    line-height: 1.6923076923;
  }
}
@media (max-width: 1024px) {
  .mv--4 .txt-area .txt {
    background: rgba(255, 255, 255, 0.6);
    padding: 20px 10px;
  }
}

.intro {
  padding: 90px 5% 30px;
  text-align: center;
}
.intro__ttl {
  margin-bottom: 45px;
}
.intro__ttl:nth-of-type(n+2) {
  margin-top: 86px;
}
.intro__txt {
  margin-bottom: 32px;
  letter-spacing: 0.03em;
}
.intro__txt .large {
  font-size: 2.4rem;
  vertical-align: baseline;
}
.intro__img-wrap {
  margin-bottom: 32px;
}
@media (max-width: 1024px) {
  .intro {
    padding: 40px 5% 30px;
  }
  .intro__ttl {
    margin-bottom: 19px;
  }
  .intro__ttl:nth-of-type(n+2) {
    margin-top: 38px;
  }
  .intro__txt {
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.8571428571;
    margin-bottom: 20px;
  }
  .intro__txt .large {
    font-size: 1.6rem;
  }
  .intro__img-wrap {
    margin-bottom: 28px;
  }
}

.list-area {
  background: #E7F9F7;
  padding: 60px 0 70px;
}
.list-area__ttl {
  margin-bottom: 45px;
}
.list-area .list__item {
  background: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 12px rgba(0, 0, 0, 0.16);
  width: 1210px;
  max-width: 90%;
  padding: 40px 3% 50px;
  text-align: center;
  margin: 0 auto;
}
.list-area .list__item:nth-of-type(n+2) {
  margin-top: 50px;
}
.list-area .list__item .ttl {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 24px;
}
.list-area .list__item .btn-row {
  margin-top: 30px;
}
.list-area .list__item .btn-row .btn-arrow {
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 1024px) {
  .list-area {
    padding: 38px 0 47px;
  }
  .list-area__ttl {
    margin-bottom: 30px;
  }
  .list-area .list__item {
    padding: 26px 5% 34px;
    text-align: left;
    margin-bottom: 10px;
  }
  .list-area .list__item:nth-of-type(n+2) {
    margin-top: 38px;
  }
  .list-area .list__item .ttl {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .list-area .list__item .txt {
    font-size: 1.4rem;
    line-height: 1.8571428571;
  }
  .list-area .list__item .btn-row {
    margin-top: 15px;
  }
  .list-area .list__item .btn-row .btn-arrow {
    width: 100%;
  }
}

.recommend {
  background: url(../img/lp_build/recommend_bg.png) center center/cover no-repeat;
  padding: 60px 0 92px;
}
.recommend__ttl {
  margin-bottom: 68px;
}
.recommend .btn-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.recommend .btn-row .btn {
  display: inline-block;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: #00a790;
  text-align: center;
  color: #fff;
  padding: 90px 10px 0;
  -webkit-box-shadow: 10px 10px 0 rgba(247, 255, 0, 0.27);
          box-shadow: 10px 10px 0 rgba(247, 255, 0, 0.27);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.recommend .btn-row .btn .ttl {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
}
.recommend .btn-row .btn:nth-of-type(2) {
  margin: 0 50px;
}
.recommend .btn-row .btn:hover {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .recommend {
    background-image: url(../img/lp_build/recommend_bg_sp.png);
    padding: 37px 0 49px;
  }
  .recommend__ttl {
    margin-bottom: 33px;
  }
  .recommend .btn-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .recommend .btn-row .btn {
    width: 220px;
    height: 220px;
    padding: 63px 10px 0;
  }
  .recommend .btn-row .btn .ttl {
    font-size: 1.8rem;
    line-height: 2;
    margin-bottom: 2px;
  }
  .recommend .btn-row .btn .txt {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
  .recommend .btn-row .btn:nth-of-type(2) {
    margin: 24px 0;
  }
}

.info {
  padding: 146px 0 40px;
}
.info__ttl {
  margin-bottom: 60px;
}
.info__box {
  width: 1210px;
  max-width: 90%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.info__box:nth-of-type(n+2) {
  margin-top: 20px;
}
.info__box .txt-wrap {
  width: 50%;
}
.info__box .txt-wrap .ttl {
  color: #00bfa5;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.03em;
  margin-bottom: 24px;
  padding-left: 20px;
  position: relative;
}
.info__box .txt-wrap .ttl:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 6px;
  background: #00bfa5;
  border-radius: 3px;
}
.info__box .img-wrap {
  width: 46%;
  text-align: right;
}
@media (max-width: 1024px) {
  .info {
    padding: 35px 0 22px;
  }
  .info__ttl {
    margin-bottom: 20px;
  }
  .info__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .info__box .txt-wrap {
    width: 100%;
  }
  .info__box .txt-wrap .ttl {
    font-size: 1.8rem;
    line-height: 1.3333333333;
    letter-spacing: 0;
    padding: 0;
    margin-bottom: 15px;
  }
  .info__box .txt-wrap .ttl:before {
    display: none;
  }
  .info__box .txt-wrap .txt {
    font-size: 1.4rem;
    line-height: 1.8571428571;
  }
  .info__box .img-wrap {
    width: 100%;
    margin-bottom: 20px;
    text-align: center;
  }
}

.document {
  padding: 42px 0 40px;
}
.document__ttl {
  margin-bottom: 50px;
}
.document .card02 {
  width: 1114px;
  max-width: 90%;
  margin: 0 auto;
}
.document .card02__item {
  margin-bottom: 0;
}
.document .card02__item:nth-of-type(n+4) {
  margin-top: 20px;
}
@media (max-width: 1024px) {
  .document {
    padding: 30px 0 30px;
  }
  .document__ttl {
    margin-bottom: 28px;
  }
  .document .card02 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .document .card02__item {
    margin: 0 auto;
  }
  .document .card02__item:nth-of-type(n+2) {
    margin-top: 35px;
  }
}

.column {
  padding: 40px 0 40px;
}
.column__ttl {
  margin-bottom: 42px;
}
.column .card {
  width: 1130px;
  max-width: 90%;
  margin: 0 auto;
}
.column .card__item {
  width: 23%;
  margin-right: 2.66666%;
}
.column .card__item:nth-of-type(4n) {
  margin-right: 0;
}
@media (max-width: 1024px) {
  .column {
    padding: 30px 0 30px;
  }
  .column__ttl {
    margin-bottom: 26px;
  }
  .column .card__item {
    width: 100%;
    margin-right: 0;
  }
}