/* =====================================================
   Reset / Base
===================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  background-color: #ffffff;
  line-height: 1.7;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =====================================================
   Breadcrumb
===================================================== */
.breadcrumb {
  background-color: #e3dfd1;
  border-bottom: 1px solid #eeeeee;
  padding: 12px 0;
}

.breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  font-size: 11px;
  color: #333;
}

.breadcrumb-inner a {
  color: #333;
}

/* =====================================================
   Hero
===================================================== */
.hero {
  position: relative;
  width: 100%;
}

.hero img {
  width: 100%;
  height: 206px;
  object-fit: cover;
  display: block;
}

.hero-title {
  position: absolute;
  left: max(24px, calc(50% - 550px + 24px));
  bottom: 20px;
  font-size: 32px;
  font-weight: 500;
  color: #ffffff;
  padding: 8px 0;
  //  background: rgba(0, 0, 0, 0.15);
  //  border-radius: 4px;
}

/* =====================================================
   Main
===================================================== */
.content {
  max-width: 1100px;
  margin: 80px auto 120px;
  padding: 0 24px;
}

/* =====================================================
   FAQ Section
===================================================== */
.faq-section h2 {
  font-size: 26px;
  font-weight: 500;
  margin-bottom: 40px;
  color: #333;
}

/* FAQ list */
.faq-list {
  border-top: 1px solid #d0dae0;
}

/* FAQ item */
.faq-item {
  border-bottom: 1px solid #d0dae0;
}

/* Q（質問） */
.faq-question {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 48px 24px 0;
  cursor: pointer;
  color: #1a8aa3;
  font-weight: 500;
}

.q-label {
  font-weight: 700;
  font-size: 18px;
}

.faq-question p {
  font-size: 16px;
  flex: 1;
}

/* ＋／− マーク */
.faq-question::after {
  content: "+";
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  font-weight: 300;
  color: #1a8aa3;
}

/* 開いているときは − に */
.faq-item.is-open .faq-question::after {
  content: "−";
}

/* A（回答） */
.faq-answer {
  display: none;
  padding: 0 0 32px 32px;
  color: #444;
}

.a-label {
  font-weight: 700;
  font-size: 18px;
  margin-right: 16px;
  color: #333;
}

.faq-answer p {
  font-size: 15px;
  line-height: 1.8;
  display: inline;
}

/* 開いている状態 */
.faq-item.is-open .faq-answer {
  display: block;
}

/* =====================================================
   Contact Telephone
===================================================== */
.contact-tel {
  margin-top: 80px;
}

.contact-tel h2 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 16px;
}

.contact-tel p {
  font-size: 15px;
}

.contact-tel strong {
  font-size: 16px;
  color: #1a8aa3;
}


/* =====================================================
   Responsive
===================================================== */
@media screen and (max-width: 768px) {

  .hero-title {
    font-size: 22px;
    left: 24px;
    bottom: 16px;
  }

  .content {
    margin: 48px auto 64px;
  }

  .nav a {
    margin-left: 0;
    margin-right: 16px;
  }

  .faq-answer {
    padding-left: 0;
  }
}
