/* =========================================================
button
========================================================= */
/* =========================================================
breadcrumbs
========================================================= */
.c-breadcrumbs--wrap {
  border-bottom: 1px solid #dbdbdb;
  margin: auto;
  max-width: 1760px;
  padding: 2rem 3vw;
  width: 96%;
}
.c-breadcrumbs-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}
.c-breadcrumbs-list > li {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1.6;
}
.c-breadcrumbs-list > li:not(:last-child)::after {
  background-color: #000;
  content: "";
  display: inline-block;
  height: 1px;
  width: 1rem;
  margin-left: 8px;
}
.c-breadcrumbs-list a {
  color: inherit;
  text-decoration: none;
}

/* =========================================================
title
========================================================= */
/* =========================================================
faq
========================================================= */
.p-faq {
  padding-top: 90px;
}
@media screen and (min-width: 992px) {
  .p-faq {
    padding-top: 150px;
  }
}
.p-faq-title {
  background: linear-gradient(to right, #3b75d3 0%, #a3dcf6 100%);
  border-radius: 10px;
  max-width: 1760px;
  margin: 0 auto;
  padding: 10vh 2vh;
  width: 90%;
}
@media screen and (min-width: 992px) {
  .p-faq-title {
    padding: 20vh 10vh;
  }
}
.p-faq-title .in {
  color: #ffffff;
}
.p-faq-title .en {
  border-bottom: 1px solid #ffffff;
  display: block;
  font-family: "brandon-grotesque", sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1;
  padding-bottom: 15px;
  margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
  .p-faq-title .en {
    font-size: 80px;
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.p-faq-title .jp {
  display: block;
  font-size: 20px;
}
@media screen and (min-width: 992px) {
  .p-faq-title .jp {
    font-size: 32px;
  }
}
.p-faq--inner {
  max-width: 1000px;
  margin: 0 auto 50px;
  width: 90%;
}
.p-faq-block {
  padding-top: 80px;
}
.p-faq-block:first-of-type {
  padding-top: 10px;
}
.p-faq-block_title {
  position: relative;
  margin-bottom: 28px;
  padding-left: 20px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.08em;
  color: #0a4f6b;
}
@media screen and (min-width: 992px) {
  .p-faq-block_title {
    font-size: 24px;
  }
}
.p-faq-block_title::before {
  content: "";
  position: absolute;
  top: 0.35em;
  left: 0;
  width: 6px;
  height: 1.2em;
  background: #0a4f6b;
}
.p-faq-list {
  border-top: 1px solid #cfcfcf;
}
.p-faq-item {
  border-bottom: 1px solid #cfcfcf;
  background: rgba(255, 255, 255, 0.35);
}
.p-faq-item_question {
  position: relative;
  display: block;
  padding: 15px 62px 15px 50px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.06em;
  cursor: pointer;
  list-style: none;
  color: #222;
}
@media screen and (min-width: 992px) {
  .p-faq-item_question {
    font-size: 16px;
    padding: 26px 72px 26px 64px;
  }
}
.p-faq-item_question::-webkit-details-marker {
  display: none;
}
.p-faq-item_question::before {
  content: "Q";
  position: absolute;
  top: 18px;
  left: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #0a4f6b;
}
@media screen and (min-width: 992px) {
  .p-faq-item_question::before {
    top: 26px;
  }
}
.p-faq-item_question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  width: 12px;
  height: 12px;
  border-right: 2px solid #0a4f6b;
  border-bottom: 2px solid #0a4f6b;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.3s;
}
.p-faq-item_answer {
  position: relative;
  padding: 0 72px 28px 64px;
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: #333;
}
.p-faq-item_answer::before {
  content: "A";
  position: absolute;
  top: 0.35em;
  left: 24px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #3b8fcc;
}
.p-faq-item_answer p {
  margin-top: 16px;
}
.p-faq-item_answer p:first-child {
  margin-top: 0;
}
.p-faq-item[open] .p-faq-item_question::after {
  transform: translateY(-40%) rotate(225deg);
}

@media screen and (min-width: 768px) {
  .p-faq--inner {
    width: min(100% - 32px, 1120px);
  }
  .p-faq-head {
    margin-bottom: 48px;
  }
  .p-faq-head_title {
    font-size: 30px;
  }
  .p-faq-block {
    margin-top: 56px;
  }
  .p-faq-block_title {
    font-size: 21px;
  }
  .p-faq-item_question {
    padding: 22px 52px 22px 48px;
    font-size: 15px;
  }
  .p-faq-item_question::before {
    left: 16px;
  }
  .p-faq-item_question::after {
    right: 20px;
  }
  .p-faq-item_answer {
    padding: 0 24px 24px 48px;
    font-size: 14px;
  }
  .p-faq-item_answer::before {
    left: 16px;
  }
}
/*# sourceMappingURL=style-faq.css.map */