@charset "UTF-8";
/* ========================= /
/  mixin
/* =========================*/
body {
  font-family: "nitalago-ruika", sans-serif;
  font-weight: 100;
  font-style: normal;
  color: #373737;
}

p {
  font-weight: 200;
}

@media screen and (max-width: 768px) {
  .none-sp {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .none-tab {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .none-sp-over {
    display: none;
  }
}

@media screen and (max-width: 1200px) {
  .none-minpc {
    display: none;
  }
}

@media screen and (min-width: 1024.02px) {
  .none-over {
    display: none;
  }
}

.fadeUp {
  position: relative;
  top: 10px;
  opacity: 0;
  transition: 0.5s;
  transition-delay: 0.3s;
}
.fadeUp.show {
  top: 0;
  opacity: 1;
}

.inner {
  width: 100%;
  max-width: 1240px;
  margin: auto;
  padding-inline: 20px;
}

.sec {
  position: relative;
  padding-block: 130px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .sec {
    padding-block: 40px;
  }
}
.sec__ttl {
  font-size: 3.4rem;
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec__ttl {
    font-size: 2.4rem;
  }
}
.sec__ttl-row {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec__ttl .strong {
  display: inline-block;
  padding-inline: 10px;
  font-size: 6rem;
  color: #2394D0;
}
@media screen and (max-width: 768px) {
  .sec__ttl .strong {
    font-size: 4.4rem;
  }
}

.contact-btn {
  display: flex;
  align-items: center;
  width: 16vw;
  max-width: 282px;
  padding-block: 10px;
  padding-inline: 10px;
  font-size: clamp(16px, -9.45px + 1.82vw, 20px);
  color: #fff;
  border-radius: 50px;
}
.contact-btn__icon {
  display: inline-block;
  width: 52px;
  height: 52px;
  margin-right: 10px;
  line-height: 52px;
  font-size: 1.8rem;
  text-align: center;
  border-radius: 100%;
}
.contact-btn.--blue {
  background: #226EB4;
}
.contact-btn.--blue .contact-btn__icon {
  background: #038BE0;
}
.contact-btn.--orange {
  background: #F18A24;
}
.contact-btn.--orange .contact-btn__icon {
  background: #FAB067;
}
.contact-btn.--green {
  background: #068433;
}
.contact-btn.--green .contact-btn__icon {
  background: #14C252;
}

.txt-center {
  text-align: center;
}

.bold {
  font-weight: 100;
}

.yellow-underline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}
.yellow-underline::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: 0;
  width: 110%;
  height: 22px;
  background: #FFF103;
  z-index: -1;
  translate: -50% 50%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: 0.5s cubic-bezier(0.45, 0, 0.55, 1);
  transition-delay: 0.3s;
}
.yellow-underline.show::after {
  transform: scale(1, 1);
}

.bg-before-polygon::before {
  position: absolute;
  content: "";
  width: 27vw;
  max-width: 533px;
  height: 16vw;
  max-height: 300px;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background-color: #E8E8E8;
  top: 0;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .bg-before-polygon::before {
    width: 80vw;
    height: 38vw;
  }
}

.bg-affter-polygon::after {
  position: absolute;
  content: "";
  width: 58vw;
  max-width: 1160px;
  height: 100%;
  max-height: 640px;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background-color: #E8E8E8;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .bg-affter-polygon::after {
    width: 50vw;
    height: 60%;
  }
}

/*header
=======================*/
.header__inner {
  display: flex;
  justify-content: space-between;
  max-width: inherit;
  height: 90px;
  padding-left: 2vw;
  padding-right: 1vw;
}
@media screen and (max-width: 1024px) {
  .header__inner {
    justify-content: center;
  }
}
.header__logo {
  align-self: center;
  width: 20%;
  max-width: 209px;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 100%;
  }
}
.header__nav {
  display: flex;
  gap: clamp(0.5rem, -1.519rem + 2.31vw, 1.25rem);
}
@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  gap: 40px;
  align-self: center;
}
.header__nav-list__item {
  position: relative;
}
.header__nav-list__item::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -20px;
  width: 1px;
  height: 100%;
  background: #000;
}
.header__nav-list__item:last-child::after {
  display: none;
}
.header__nav-d-list {
  display: flex;
  gap: clamp(0.5rem, -1.519rem + 2.31vw, 1.25rem);
  align-self: center;
  height: 80%;
}
.header__nav-d-list__item {
  height: 100%;
}
.header__nav-d-list__link {
  display: flex;
  align-items: center;
  height: 100%;
  padding-inline: 10px;
}
@media screen and (max-width: 1200px) {
  .header__nav-d-list .contact-btn {
    width: initial;
  }
}
@media screen and (max-width: 1024px) {
  .header__nav-d-list .contact-btn__txt {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .header__nav-d-list .contact-btn__icon {
    margin-right: 0;
  }
}

/*fv
=======================*/
.fv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(rgba(5, 42, 110, 0.6), rgba(5, 42, 110, 0.6)), url("../img/fv_bg.webp");
  background-size: cover;
  height: 90vh;
  min-height: 850px;
}
@media screen and (max-width: 768px) {
  .fv {
    align-items: flex-end;
    height: calc(100svh - 90px);
    min-height: inherit;
  }
}
.fv__inner {
  position: relative;
}
@media screen and (max-width: 768px) {
  .fv__inner {
    margin: 0;
  }
}
.fv__mark {
  position: absolute;
  top: clamp(-120px, -21.82px - 4.24vw, -80px);
  right: clamp(-100px, 761.82px - 54.55vw, 20px);
  width: clamp(236px, 163.22px + 7.12vw, 278px);
}
@media screen and (max-width: 1024px) {
  .fv__mark {
    top: -40px;
    right: 40px;
    width: 200px;
  }
}
@media screen and (max-width: 768px) {
  .fv__mark {
    top: -40px;
    right: 10px;
    width: 114px;
  }
}
.fv__row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  .fv__row {
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .fv__row {
    flex-wrap: wrap-reverse;
    gap: 70px;
  }
}
.fv__woman {
  width: 27.834%;
}
@media screen and (max-width: 1024px) {
  .fv__woman {
    width: 32.5%;
  }
}
@media screen and (max-width: 768px) {
  .fv__woman {
    width: 43.5%;
  }
}
.fv__box {
  flex: 1;
  max-width: 807px;
}
@media screen and (max-width: 768px) {
  .fv__box {
    flex: auto;
    width: 100%;
    max-width: inherit;
  }
}
.fv__ttl {
  font-size: clamp(56px, -7.99px + 5.86vw, 67px);
  line-height: 1.4;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .fv__ttl {
    font-size: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .fv__ttl {
    font-size: 2.9rem;
  }
}
.fv__catch {
  position: relative;
  margin-top: 12px;
  padding-block: 15px;
  font-size: 3.4rem;
  font-weight: 100;
  color: #fff;
  border-radius: 100px;
}
@media screen and (max-width: 1024px) {
  .fv__catch {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 768px) {
  .fv__catch {
    margin-top: 20px;
    padding-block: 9px;
    font-size: 1.5rem;
  }
}
.fv__catch::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 13px;
  background-color: #FFF103;
}
@media screen and (max-width: 768px) {
  .fv__catch::after {
    height: 5px;
  }
}
.fv-content-list {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .fv-content-list {
    position: absolute;
    right: 40px;
    bottom: 36px;
    width: 40%;
    flex-flow: column;
    gap: 5px;
  }
}
.fv-content-list__item {
  position: relative;
  flex: 0 0 calc((100% - 96px) / 4);
  padding-block: 23.5px;
  text-align: center;
  font-size: 2.6rem;
  background: #1A6414;
  color: #fff;
  outline: 1px solid #fff;
  outline-offset: -10px;
}
@media screen and (max-width: 1024px) {
  .fv-content-list__item {
    flex: 0 0 calc((100% - 32px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .fv-content-list__item {
    padding-block: 14.5px;
    font-size: 1.4rem;
    outline-offset: -7px;
  }
}
.fv-content-list__item::before {
  position: absolute;
  content: "";
  width: 35%;
  height: 100%;
  max-height: 300px;
  clip-path: polygon(100% 0, 0 0, 0 100%);
  background-color: #fff;
  top: 0;
  left: 0;
  opacity: 0.2;
}

/*question
=======================*/
.question {
  padding-top: 70px;
  padding-bottom: 100px;
  background: linear-gradient(rgba(2, 83, 210, 0.6), rgba(26, 100, 20, 0.6));
}
@media screen and (max-width: 768px) {
  .question {
    padding-top: 0px;
    padding-bottom: 32px;
  }
}
.question__icon {
  display: block;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .question__icon {
    position: relative;
    top: -20px;
    width: 74px;
  }
}
.question__ttl {
  margin-top: 40px;
  font-size: 4.8rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .question__ttl {
    margin-top: 0px;
    font-size: 2.4rem;
  }
}
.question-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 740px;
  margin: 54px auto 0;
}
@media screen and (max-width: 768px) {
  .question-list {
    margin: 24px auto 0;
  }
}
.question-list__item {
  padding-block: 36px;
  background: #fff;
  font-size: 2.8rem;
  color: #1B1464;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .question-list__item {
    padding-block: 5.5px;
    font-size: 1.6rem;
  }
}

/*お問合せ誘導
=======================*/
.contact-induction {
  background: #2672B3;
  text-align: center;
  background: linear-gradient(rgba(112, 181, 0, 0.4), rgba(112, 181, 0, 0.4)), url("../img/contact_bg.jpg");
}
@media screen and (max-width: 768px) {
  .contact-induction {
    background: linear-gradient(rgba(112, 181, 0, 0.4), rgba(112, 181, 0, 0.4)), url("../img/sp_contact_bg.png");
  }
}
.contact-induction__inner {
  padding-block: 126px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .contact-induction__inner {
    padding-block: 40px;
  }
}
.contact-induction__txt {
  font-size: 3.2rem;
  font-weight: 100;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .contact-induction__txt {
    font-size: 2rem;
  }
}
.contact-induction__bubble {
  position: relative;
  top: 10px;
  width: 80%;
  max-width: 503px;
  margin: 42px auto 0;
  padding-block: 19px;
  font-size: 2.4rem;
  font-weight: 100;
  background: #fff;
  border-radius: 100px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .contact-induction__bubble {
    top: 14px;
    margin: 10px auto 0;
    padding-block: 10px;
    font-size: 1.7rem;
  }
}
.contact-induction__bubble span {
  color: #FA605D;
}
.contact-induction__bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: #fff transparent transparent;
  translate: -50% 100%;
}
@media screen and (max-width: 768px) {
  .contact-induction__bubble::after {
    bottom: 6px;
  }
}
.contact-induction__link {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 80%;
  max-width: 820px;
  margin: auto;
  padding-block: 28.5px;
  font-size: 3.2rem;
  color: #fff;
  background: linear-gradient(90deg, #6E6A9D, #251E6B);
  border-radius: 120px;
}
@media screen and (max-width: 768px) {
  .contact-induction__link {
    width: 100%;
    padding-block: 24.5px;
    font-size: 1.7rem;
    justify-content: center;
  }
}
.contact-induction__link .free-txt {
  display: inline-block;
  padding: 5px 21px;
  font-size: 2.4rem;
  background: #fff;
  color: #1B1464;
  border-radius: 100px;
}
@media screen and (max-width: 768px) {
  .contact-induction__link .free-txt {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .contact-induction__allow {
    position: absolute;
    right: 30px;
  }
}
.contact-induction__woman {
  position: absolute;
  width: 23%;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .contact-induction__woman {
    display: none;
  }
}

/*point
=======================*/
.point-list {
  display: flex;
  gap: 30px;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .point-list {
    flex-wrap: wrap;
    gap: 50px;
  }
}
.point-list__item {
  position: relative;
  flex: 1;
  padding: 80px 10px 60px;
  background: #1B1464;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .point-list__item {
    flex: auto;
    width: 100%;
    padding: 70px 10px 50px;
  }
}
.point-list__pointNo {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 260px;
  background: #FFF103;
  font-size: 2.4rem;
  line-height: 60px;
  border-radius: 60px;
}
@media screen and (max-width: 1024px) {
  .point-list__pointNo {
    width: 66%;
    font-size: 2rem;
    line-height: 53px;
  }
}
.point-list__pointNo::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  border-style: solid;
  border-width: 15px 10px 0 10px;
  border-color: #FFF103 transparent transparent;
  translate: -50% 100%;
}
@media screen and (max-width: 1024px) {
  .point-list__pointNo::after {
    bottom: 1px;
  }
}
.point-list__txt {
  color: #fff;
}
.point-list__txt-ttl {
  display: block;
  font-size: 2.8rem;
}
@media screen and (max-width: 1024px) {
  .point-list__txt-ttl {
    font-size: 2.4rem;
  }
}
.point-list__txt-desc {
  display: block;
  margin-top: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 1024px) {
  .point-list__txt-desc {
    margin-top: 20px;
    font-size: 2rem;
  }
}

/*feature
=======================*/
.feature {
  background: #F4F4F4;
}
.feature .yellow-underline::after {
  bottom: 28px;
}
@media screen and (max-width: 768px) {
  .feature__ttl {
    font-size: 3.4rem;
  }
}
@media screen and (max-width: 768px) {
  .feature__ttl .strong {
    font-size: 6rem;
  }
}
.feature-list {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  gap: 30px;
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .feature-list {
    flex-flow: column;
    gap: 20px;
    margin-top: 30px;
  }
}
.feature-list__item {
  flex: 0 0 calc((100% - 60px) / 3);
  padding: 30px;
  background: #fff;
  box-shadow: 0px 0px 6px -1px #777777;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .feature-list__item {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .feature-list__item {
    display: flex;
    padding: 30px 18px;
  }
}
.feature-list__thumb {
  aspect-ratio: 1/0.5625;
  border-radius: 5px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .feature-list__thumb {
    width: 90px;
    max-height: 175px;
  }
}
.feature-list__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .feature-list__para {
    flex: 1;
    padding-left: 10px;
  }
}
.feature-list__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 130px;
  line-height: 1.3;
  font-size: 2.8rem;
  font-weight: 100;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .feature-list__ttl {
    height: auto;
    justify-content: left;
    font-size: 2rem;
    text-align: left;
  }
}
.feature-list__desc {
  padding-bottom: 22px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .feature-list__desc {
    margin-top: 8px;
    padding-bottom: 0;
    line-height: 1.6;
    text-align: justify;
  }
}

/*price
=======================*/
.price {
  background: #F4F4F4;
}
@media screen and (max-width: 768px) {
  .price {
    background: #fff;
  }
}
.price__sp-img {
  display: block;
  margin-top: 30px;
  margin-inline: auto;
}
.price-header-table {
  width: 100%;
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .price-header-table {
    display: none;
  }
}
.price-header-table th {
  width: 25%;
  padding-block: 48px;
  font-size: 22px;
  background: #DEDEDE;
  border-left: 2px solid #fff;
}
.price-header-table th:first-child {
  border-left: none;
}
.price-header-table th.none {
  background: none;
}
@media screen and (max-width: 1024px) {
  .price-header-table th.none {
    display: none;
  }
}
.price-header-table th.wakeari {
  background: #fff;
}
@media screen and (max-width: 1024px) {
  .price-header-table th.wakeari {
    width: 50%;
  }
}
.price-header-table th.wakeari img {
  max-width: 263px;
  margin: auto;
}
.price-table {
  width: 100%;
  text-align: center;
}
.price-table__box {
  margin-top: 65px;
  padding-block: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0px 0px 6px -1px #777777;
}
@media screen and (max-width: 768px) {
  .price-table__box {
    display: none;
  }
}
.price-table tr {
  position: relative;
}
.price-table tr::after {
  position: absolute;
  display: block;
  content: "";
  left: 50%;
  bottom: 0;
  translate: -50% 0;
  width: calc(100% - 60px);
  height: 2px;
  background: #DEDEDE;
}
.price-table tr:last-child::after {
  display: none;
}
.price-table th, .price-table td {
  width: 25%;
}
.price-table th {
  padding-block: 48px;
  font-size: 2rem;
}
.price-table td {
  position: relative;
}
.price-table td::after {
  position: absolute;
  display: block;
  content: "";
  left: 0;
  top: 0;
  height: 100%;
  width: 2px;
  background: #DEDEDE;
}
.price-table td.wakeari {
  font-size: 3.2rem;
  color: #FA605D;
}
.price-table td.wakeari.--s {
  font-size: 1.8rem;
}
.price__sp-img {
  display: none;
}
@media screen and (max-width: 768px) {
  .price__sp-img {
    display: block;
  }
}

/*works
=======================*/
.works {
  background: #1B1464;
}
@media screen and (max-width: 768px) {
  .works {
    padding-block: 70px 110px;
  }
}
.works__ttl {
  color: #fff;
}
.works-list {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
  gap: 80px 30px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .works-list {
    gap: 54px;
  }
}
.works-list__item {
  position: relative;
  flex: 0 0 calc((100% - 60px) / 3); /* 3列。gapを考慮 */
  padding: 30px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .works-list__item {
    flex: 0 0 calc((100% - 30px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .works-list__item {
    flex: auto;
    padding: 26px;
  }
}
.works-list__item::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  border-style: solid;
  border-width: 34px 20px 0 20px;
  border-color: #fff transparent transparent;
  translate: -50% 100%;
}
.works-list__thumb {
  aspect-ratio: 1/0.5625;
  border-radius: 5px;
  overflow: hidden;
}
.works-list__ttl {
  padding-block: 20px;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .works-list__ttl {
    font-size: 2.1rem;
  }
}
.works-list__infoBox {
  display: flex;
  gap: 10px;
}
.works-list__infoItem {
  flex: 0 0 calc((100% - 20px) / 3); /* 3列。gapを考慮 */
}
.works-list__infoTtl {
  line-height: 4.6rem;
  background: #FFF103;
  color: #1B1464;
}
@media screen and (max-width: 768px) {
  .works-list__infoTtl {
    line-height: 4rem;
    font-size: 1.2rem;
  }
}
.works-list__infoTxt {
  line-height: 4.6rem;
  font-size: 1.9rem;
  color: #1B1464;
}
@media screen and (max-width: 768px) {
  .works-list__infoTxt {
    font-size: 1.5rem;
  }
}
.works-list__infoTxt.--s {
  font-size: 1.3rem;
}
.works-list__desc {
  text-align: left;
  line-height: 1.8;
}

/*flow
=======================*/
.flow {
  background: #F4F4F4;
}
@media screen and (max-width: 768px) {
  .flow {
    padding-bottom: 76px;
  }
}
.flow__catch {
  position: relative;
  width: 260px;
  margin: 0 auto 28px;
  color: #fff;
  font-size: 2.4rem;
  line-height: 60px;
  text-align: center;
  background: #1B1464;
  border-radius: 60px;
}
.flow__catch::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 50%;
  border-style: solid;
  border-width: 16px 10px 0 10px;
  border-color: #1B1464 transparent transparent;
  translate: -50% 100%;
}
.flow__img {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .flow__img {
    width: 100%;
    margin-inline: auto;
    margin-top: 50px;
  }
}
.flow__img img {
  margin: auto;
}

/*media
=======================*/
.media {
  padding-bottom: 45px;
  background: #F4F4F4;
}
@media screen and (max-width: 768px) {
  .media {
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .media__inner {
    padding: 0;
  }
}
.media__ttl {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .media__ttl {
    font-size: 3rem;
    display: block;
    line-height: 1.5;
  }
}
.media__slider {
  margin-top: 42px;
  overflow: hidden;
  position: relative;
}
.media__slider::before, .media__slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 100px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.media__slider::before {
  left: 0;
  background: linear-gradient(to right, #F4F4F4, transparent);
}
.media__slider::after {
  right: 0;
  background: linear-gradient(to left, #F4F4F4, transparent);
}
.media__track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  gap: 32px;
  animation: scroll 60s linear infinite;
}
.media__item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 143px;
  transition: transform 0.3s ease;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/*audit
=======================*/
.audit {
  padding-top: 45px;
  background: #F4F4F4;
}
@media screen and (max-width: 768px) {
  .audit {
    padding-bottom: 60px;
  }
}
.audit__inner {
  max-width: 1395px;
}
.audit .yellow-underline::after {
  width: 96%;
  bottom: 20px;
}
@media screen and (max-width: 768px) {
  .audit .yellow-underline::after {
    bottom: 10px;
  }
}
.audit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .audit-list {
    margin-top: 30px;
  }
}
.audit-list__item {
  flex: 0 0 calc((100% - 75px) / 4); /* 3列。gapを考慮 */
  text-align: center;
}
@media screen and (max-width: 768px) {
  .audit-list__item {
    flex: 0 0 calc((100% - 25px) / 2);
  }
}
.audit-list__img {
  aspect-ratio: 1/0.83;
  border-radius: 5px;
  overflow: hidden;
}
.audit-list__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.audit-list__ttl {
  margin-top: 15px;
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .audit-list__ttl {
    margin-top: 8px;
    font-size: 1.5rem;
  }
}

/*faq
=======================*/
.faq {
  background: #1B1464;
}
.faq__ttl {
  color: #fff;
}
.faq-list {
  margin-top: 60px;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .faq-list {
    font-size: 1.6rem;
  }
}
.faq-list__q {
  display: flex;
  gap: 10px;
  padding-block: 38px;
  padding-inline: 30px;
  background: #fff;
  border-radius: 5px;
}
.faq-list__q::before {
  content: "Q.";
  color: #1B1464;
}
.faq-list__a {
  display: flex;
  gap: 10px;
  padding-block: 30px;
  padding-inline: 30px;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .faq-list__a {
    padding-block: 15px 25px;
    padding-inline: 0;
  }
}
.faq-list__a::before {
  content: "A.";
}

.footer {
  padding-block: 75px 260px;
}
@media screen and (max-width: 768px) {
  .footer {
    padding-block: 50px 180px;
  }
}
.footer__logo {
  width: 50%;
  max-width: 375px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 67%;
  }
}
.footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  font-weight: 200;
}
@media screen and (max-width: 768px) {
  .footer__nav-list {
    display: block;
    text-align: center;
  }
}
.footer__nav-d-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .footer__nav-d-list {
    gap: 10px;
    margin-top: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav-d-list__item {
    width: 100%;
  }
}
.footer__nav-d-list .contact-btn {
  width: 23vw;
}
@media screen and (max-width: 768px) {
  .footer__nav-d-list .contact-btn {
    width: 100%;
    margin: auto;
    font-size: 2rem;
  }
}

/*追尾コンテンツ
=======================*/
.tracking {
  opacity: 0;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 820px;
  text-align: center;
  z-index: 10;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .tracking {
    width: 100%;
    bottom: -20px;
  }
}
.tracking.show {
  opacity: 1;
  bottom: 50px;
}
@media screen and (max-width: 768px) {
  .tracking.show {
    bottom: 0px;
  }
}
.tracking .contact-induction__link {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .tracking .contact-induction__link {
    border-radius: 0;
  }
}

/*ポップアップ
=======================*/
.popup {
  background: rgba(255, 255, 255, 0.75);
  padding: 20px 20px 90px;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  max-width: 500px;
  width: 90%;
  transform: scale(0.7);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 1000;
}
.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}
.popup-overlay.show .popup {
  transform: scale(1);
  opacity: 1;
}
.popup__link {
  width: 100%;
  margin: 20px auto 0;
  font-size: 2rem;
}
.popup__close {
  margin-bottom: 50px;
  text-align: right;
}/*# sourceMappingURL=style.css.map */