@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
/* 修正用CSS */
/* トップページのよくあるご質問 */
main.home .faq {
  background: #E7F9F7;
  padding: 60px 0 80px;
  margin-bottom: 93px;
}
@media (max-width: 1024px) {
  main.home .faq {
    padding: 36px 0 54px;
    margin-bottom: 61px;
  }
}
main.home .faq__ttl {
  margin-bottom: 58px;
}
main.home .faq__list {
  width: 880px;
  max-width: 90%;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  main.home .faq__ttl {
    margin-bottom: 30px;
  }
  main.home .faq__list {
    max-width: 88%;
  }
}
main.home .faq__item {
  background: #fff;
  border-radius: 10px;
}
main.home .faq__item + .faq__item {
  margin-top: 20px;
}
main.home .faq__item .ac {
  padding: 36px 9% 36px 4.5%;
}
@media (max-width: 1024px) {
  main.home .faq__item .ac {
    padding: 21px 11% 22px 7%;
  }
}
main.home .faq__item .ac .txt {
  font-weight: bold;
  position: relative;
  display: block;
  padding-left: 37px;
}
main.home .faq__item .ac .txt:before {
  display: block;
  position: absolute;
  left: 0;
  font-family: Arial, sans-serif;
  font-size: 2rem;
}
@media (max-width: 1024px) {
  main.home .faq__item .ac .txt {
    font-size: 1.4rem;
    line-height: 2;
    padding-left: 27px;
  }
}
main.home .faq__item .ac__trigger {
  cursor: pointer;
  position: relative;
}
main.home .faq__item .ac__trigger:before, main.home .faq__item .ac__trigger:after {
  content: "";
  display: block;
  position: absolute;
  width: 19px;
  height: 3px;
  background: #444444;
  border-radius: 3px;
  right: -6%;
  top: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
main.home .faq__item .ac__trigger:after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
main.home .faq__item .ac__trigger .txt:before {
  content: "Q";
  top: calc(50% - 1.6rem);
}
main.home .faq__item .ac__trigger.active:after {
  -webkit-transform: none;
          transform: none;
}
@media (max-width: 1024px) {
  main.home .faq__item .ac__trigger:before, main.home .faq__item .ac__trigger:after {
    width: 16px;
  }
  main.home .faq__item .ac__trigger .txt:before {
    top: calc(50% - 2rem);
  }
}
main.home .faq__item .ac__content {
  padding-top: 25px;
}
main.home .faq__item .ac__content .txt:before {
  content: "A";
  top: 0;
}
main.home .faq__item .ac__content .btn-row {
  display: block;
  margin-top: 20px;
}
main.home .faq__item .ac__content .btn-arrow {
  width: 220px;
}
main.home .faq__item .ac__content .btn-arrow .txt {
  display: inline;
  padding-left: 22px;
}
main.home .faq__item .ac__content .btn-arrow .txt:before {
  content: "";
  top: 4px;
  left: -6px;
}
main.home .faq__btn-wrap {
  text-align: center;
  margin-top: 40px;
}
main.home .faq__btn-wrap .btn-arrow {
  width: 350px;
  max-width: 90%;
}
@media (max-width: 1024px) {
  main.home .faq__btn-wrap {
    margin-top: 29px;
  }
  main.home .faq__btn-wrap .btn-arrow {
    width: 300px;
  }
}

/* トップページバナー */
.top-banner {
  width: 900px;
  max-width: 95%;
  margin: 0 auto 70px;
  background: url(../img/common/banner-bg.png) no-repeat center/cover;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 27px 37px 27px 53px;
}
@media (max-width: 1024px) {
  .top-banner {
    display: block;
    text-align: center;
    width: 335px;
    padding: 30px 17px;
    margin-bottom: 50px;
    background: url(../img/common/banner-bg_sp.png) no-repeat center/cover;
    position: relative;
  }
  .top-banner::after {
    position: absolute;
    content: "";
    width: 60px;
    height: 16px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    top: -15px;
    background: url(../img/common/arrow-icon.png) no-repeat center/cover;
  }
}

.top-banner__ttl {
  width: 310px;
  max-width: 100%;
}
@media (max-width: 1024px) {
  .top-banner__ttl {
    margin: 0 auto 5px;
    width: 290px;
  }
}

.top-banner__txt {
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}
@media (max-width: 1024px) {
  .top-banner__txt {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
}

@media (max-width: 1024px) {
  .top-banner__btn {
    display: block;
  }
}
.top-banner__btn .btn-arrow {
  width: 220px;
}
@media (max-width: 1024px) {
  .top-banner__btn .btn-arrow {
    display: block;
    margin: 0 auto;
    width: 100%;
  }
}
.top-banner__btn .btn-arrow:first-child {
  margin-right: 10px;
}
@media (max-width: 1024px) {
  .top-banner__btn .btn-arrow:first-child {
    margin-right: auto;
    margin-bottom: 12px;
  }
}

.top-banner__img {
  width: 316px;
  max-width: 40%;
}
@media (max-width: 1024px) {
  .top-banner__img {
    display: none;
  }
}

/* 新着コラム */
/* 人気コラム */
.popular-column {
  padding-bottom: 80px;
}
@media (max-width: 599px) {
  .popular-column {
    padding-bottom: 50px;
  }
}
.popular-column .top-card {
  margin-bottom: 20px;
}
@media (max-width: 599px) {
  .popular-column .top-card {
    margin-bottom: 30px;
  }
}

.top-column__inner {
  width: 1132px;
}

.top-card .card__item {
  width: calc(25% - 22.5px);
}
@media (max-width: 1024px) {
  .top-card .card__item {
    width: calc(50% - 15px);
  }
}
@media (max-width: 599px) {
  .top-card .card__item {
    width: 315px;
    max-width: 100%;
    margin: 0 auto;
  }
}
.top-card .card__item:not(:nth-child(4n)) {
  margin-right: 30px;
}
@media (max-width: 1024px) {
  .top-card .card__item:not(:nth-child(4n)) {
    margin-right: 0;
  }
}
@media (max-width: 599px) {
  .top-card .card__item:not(:nth-child(4n)) {
    margin-right: auto;
  }
}
@media (max-width: 1024px) {
  .top-card .card__item:not(:nth-child(2n)) {
    margin-right: 30px;
  }
}
@media (max-width: 599px) {
  .top-card .card__item:not(:nth-child(2n)) {
    margin-right: auto;
  }
}
.top-card .card__item-ttl {
  font-size: 1.8rem;
  line-height: 1.55;
}

.top-column__link {
  text-align: right;
}
@media (max-width: 599px) {
  .top-column__link {
    text-align: center;
  }
}