html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

li {
  list-style-type: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

html {
  font-size: 62.5%;
}

body, * {
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
}

p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.05em;
}

.faq-hero {
  padding-top: 20rem;
}

.faq-list {
  padding: 70px 0 160px;
}
.faq-list__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 28px;
}
.faq-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.faq-list__question, .faq-list__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  border-radius: 7px;
}
.faq-list__question {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 18px 32px;
  background-color: #0A1A2F;
  color: #F7FAFF;
}
.faq-list__question-text {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.faq-list__answer {
  padding: 22px 32px;
}
.faq-list__answer-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  margin-top: -5px;
}
.faq-list__answer-text {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 2;
  color: #0A1A2F;
}
.faq-list__label {
  font-family: "Figtree", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.faq-list__question .faq-list__label {
  color: #F7FAFF;
}
.faq-list__answer .faq-list__label {
  color: #0A1A2F;
}

@media (max-width: 960px) {
  .faq-hero {
    padding-top: 14rem;
  }
  .faq-list {
    padding: 40px 0 120px;
  }
  .faq-list__inner {
    gap: 24px;
  }
  .faq-list__question, .faq-list__answer {
    padding: 18px 20px;
  }
  .faq-list__question-text {
    font-size: 1.5rem;
  }
  .faq-list__answer-text {
    font-size: 1.4rem;
  }
}