@charset "UTF-8";

.linkBtn.linkBtn--left {
  text-align: left;
}

.underlayerServiceMethod .underlayerServiceMethod__content .section__title {
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  .underlayerServiceMethod .underlayerServiceMethod__content .section__title {
    font-size: 2rem;
  }
}


.underlayerServiceMethod .underlayerServiceMethod__content .content__image-row > .col--image {
  width: 45rem;
}
@media screen and (max-width: 768px) {
  .underlayerServiceMethod .underlayerServiceMethod__content .content__image-row > .col--image {
    width: 100%;
  }
}

.underlayerServiceMethod .underlayerServiceMethod__content .service__card em {
  font-size: 1.6rem;
  line-height: 1.4;
  display: block;
}
@media screen and (max-width: 768px) {
  .underlayerServiceMethod .underlayerServiceMethod__content .service__card em {
    font-size: 1.4rem;
  }
}
.underlayerServiceMethod .underlayerServiceMethod__content .service__card .item__areaTtl {
  margin-top: 0.5rem;
}

.underlayerServiceMethod .underlayerServiceMethod__content .service__card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 768px) {
  .underlayerServiceMethod .underlayerServiceMethod__content .service__card {
    grid-template-columns: repeat(1, 1fr);
    gap: 3rem;
  }
}
.underlayerServiceMethod .underlayerServiceMethod__content .service__card .item {
  display: contents;
}
.item__area {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .item__area {
    display: block;
  }
}

.mainvisualBtn {
  background-color: #F8F2EC;
  border-top: 1px solid #E8DAD4;
  border-bottom: 1px solid #E8DAD4;
  padding: 3rem 0;
}
.mainvisualBtn .serviceBtn {
  margin-top: 0;
}

.faq {
  background-color: #F1F7FB;
  padding: 8rem 0;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 5rem 0;
  }
}
.faq__title {
  font-size: 2.8rem;
  font-weight: bold;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .faq__title {
    font-size: 2.4rem;
    line-height: 1.4;
  }
}
.faq__list {
  margin-top: 2.8rem;
  display: grid;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .faq__list {
    margin-top: 3rem;
  }
}

.faq__item {
  position: relative;
  overflow: clip;
  background-color: #fff;
  border: 0.1rem solid #DAE2E6;
  border-radius: 0.2rem;
}
.faq__item.is-active .faq__listIcon::after {
  rotate: 180deg;
  opacity: 0;
}

.faq__listHead {
  font-weight: bold;
  padding: 1.4rem 8rem 1.4rem 2.2rem;
  cursor: pointer;
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.2rem;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .faq__listHead {
    gap: 1.5rem;
    padding: 1.2rem 5.4rem 1.4rem 1rem;
    align-items: center;
  }
}
.faq__listHead::before {
  content: "Q";
  font-size: 2rem;
  line-height: 1;
  font-family: var(--fontEN);
  width: 3.8rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #214F74;
  display: grid;
  place-items: center;
  color: #fff;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .faq__listHead::before {
    font-size: 1.7rem;
    width: 3rem;
  }
}
.faq__listHead.open {
  cursor: pointer;
  background-color: #214F74;
}
.faq__listHead.open .faq__listTitle {
  color: #fff;
}
.faq__listHead.open::before {
  color: #214F74;
  background-color: #fff;
}
.faq__listHead.open .faq__listIcon::before, .faq__listHead:hover .faq__listIcon::after {
  background-color: #fff;
}
.faq__listHead.open .faq__listIcon::after {
  rotate: 0deg;
  opacity: 0;
}
@media (any-hover: hover) {
  .faq__listHead:hover {
    cursor: pointer;
    background-color: #214F74;
  }
  .faq__listHead:hover .faq__listTitle {
    color: #fff;
  }
  .faq__listHead:hover::before {
    color: #214F74;
    background-color: #fff;
  }
  .faq__listHead:hover .faq__listIcon::before, .faq__listHead:hover .faq__listIcon::after {
    background-color: #fff;
  }
}

.faq__listTitle {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-top: 0.6rem;
  -webkit-transition: color 0.3s cubic-bezier(0, 0, 0.4, 1);
  transition: color 0.3s cubic-bezier(0, 0, 0.4, 1);
}
@media screen and (max-width: 768px) {
  .faq__listTitle {
    font-size: 1.6rem;
    letter-spacing: 0;
    margin: 0;
  }
}

.faq__content {
  display: none;
  padding: 1.6rem 3rem 2.7rem 2.2rem;
  position: relative;
  background-color: #F3FBFD;
}
@media screen and (max-width: 768px) {
  .faq__content {
    padding: 2rem 2rem 2.8rem 1rem;
  }
}

.faq__contentInner {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 2.2rem;
}
@media screen and (max-width: 768px) {
  .faq__contentInner {
    gap: 1.5rem;
  }
}
.faq__contentInner::before {
  content: "A";
  display: block;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
  font-family: var(--fontEN);
  width: 3.8rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #EC1649;
  display: grid;
  place-items: center;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .faq__contentInner::before {
    font-size: 1.7rem;
    width: 3rem;
  }
}

.faq__listText {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
  margin-top: 0.5rem;
}
@media screen and (max-width: 768px) {
  .faq__listText {
    font-size: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
    letter-spacing: 0;
    margin: 0;
  }
}

.faq__listText a {
  color: #0064BE;
  text-decoration: underline;
}

.faq__listIcon {
  display: block;
  width: 6.6rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .faq__listIcon {
    width: 5rem;
  }
}
.faq__listIcon::before, .faq__listIcon::after {
  content: "";
  display: block;
  width: 1.8rem;
  height: 0.2rem;
  background-color: #214F74;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .faq__listIcon::before, .faq__listIcon::after {
    width: 2rem;
  }
}
.faq__listIcon::after {
  rotate: 90deg;
}