body {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #fff;
  color: #000;
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #000;
  cursor: pointer;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.7;
}

p {
  margin: 0;
  padding: 0;
}

.wrapper {
  width: 100%;
  max-width: 590px;
  margin: 0 auto;
}

.kv {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------------
utility
--------------- */

.inline-block {
  display: inline-block;
}

.pc-only {
  display: block;
}

@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

.sp-only {
  display: none;
}

@media (max-width: 767px) {
  .sp-only {
    display: block;
  }
}

.shadow-img {
  transform: translateX(5px);
}

/* ---------------
cta
--------------- */
.cta {
  width: 100%;
  padding: 20px 30px;
}

.cta__inner {
  display: grid;
  gap: 20px;
}

.cta__title {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.cta__btn {
  width: 100%;
}

/* ---------------
header
--------------- */
.header {
  width: 100%;
}

/* ---------------
intro
--------------- */

.intro {
  display: grid;
  gap: 20px;
  width: 100%;
  padding: 20px 10px;
  background-color: #fff;
}

.intro__img {
  width: 100%;
}
.intro__img.cp {
    width: 97%;
    margin: 0 auto;
}

.intro__img--top {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
}

/* ---------------
step4
--------------- */

.step4 {
  width: 100%;
  padding: 50px 10px 20px;
  background-color: #e6f6fc;
}

.step4__title {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.step4__items {
  display: grid;
  gap: 20px;
  margin-top: 40px;
}

.step4__item {
  width: 100%;
}

/* ---------------
info
--------------- */

.info {
  width: 100%;
  padding: 20px 0;
  background-color: #fff;
}

.info__price {
  width: 100%;
  padding: 20px 10px;
}

.info__subject {
  width: 100%;
  padding: 20px;
}

/* ---------------
voice
--------------- */

.voice {
  width: 100%;
  padding: 30px 15px 50px;
  background-color: #fff;
}

.voice__title {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.voice__items {
  display: grid;
  grid-template-columns: 100%;
  gap: 50px;
  margin-top: 40px;
}

.voice__item {
  width: 100%;
}

.voice__item-title {
  width: 50%;
  padding-left: 10px;
}

.voice__item-slider {
  width: 100%;
}

.voice__item-slider-img {
  width: 100%;
}

.voice__item-slider-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
}

.voice__item-slider-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background-color: #000;
  opacity: 0.3;
  margin: 0 !important;
}

.voice__item-slider-pagination .swiper-pagination-bullet-active {
  opacity: 1;
}

/* ---------------
step3
--------------- */

.step3 {
  width: 100%;
  padding: 50px 10px;
  background-color: #fcfce6;
}

.step3__title {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.step3__img {
  width: 100%;
  margin-top: 40px;
}

/* ---------------
faq
--------------- */

.faq {
  width: 100%;
  padding: 50px 10px;
  background-color: #fff;
}

.faq__title {
  font-size: 30px;
  font-weight: 900;
  text-align: center;
  color: #01a2e9;
}

.faq__items {
  display: grid;
  grid-template-columns: 100%;
  gap: 20px;
  margin-top: 30px;
}

.faq__item {
  width: 100%;
  border-radius: 20px;
  background-color: #e7f6fc;
}

.faq__item-q {
  position: relative;
  cursor: pointer;
  padding: 15px 60px 15px 30px;
  font-weight: bold;
  position: relative;
}

.faq__item-q::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 30px;
  width: 20px;
  height: 3px;
  background-color: #01a2e9;
}

.faq__item-q::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 30px;
  width: 20px;
  height: 3px;
  background-color: #01a2e9;
  transform: rotate(90deg);
  transition: transform 0.3s;
}

.faq__item-q.active::after {
  transform: rotate(0deg);
}

.faq__item-q-text {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px;
  font-size: 18px;
  font-weight: bold;
  color: #01a2e9;
}

.faq__item-q-text::before {
  content: 'Q.';
  color: #01a2e9;
}

.js-faq-a {
  display: none;
  padding: 20px 30px;
}

.faq__item-a-wrap {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 10px;
  font-size: 18px;
}

.faq__item-a-wrap::before {
  content: 'A.';
}

.faq__item-a-inner a {
  display: inline;
  text-decoration: underline;
}

.faq__item-a-inner p {
  margin-top: 1em;
}

.faq__item-a-inner p:first-child {
  margin-top: 0;
}

/* ---------------
footer
--------------- */

.footer {
  width: 100%;
}

.copyright {
  padding: 20px 0;
  background-color: #01a2e9;
  color: #fff;
  font-size: 14px;
  text-align: center;
}

/* ---------------
fixed-button
--------------- */

.fixed-button {
  display: none;
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 590px;
  z-index: 999;
}

.fixed-button__inner {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0 10px;
}

.fixed-button__title {
  width: 100%;
}
