@charset "UTF-8";
.faq_lead {
  margin-bottom: 40px;
  text-align: center;
  line-height: 2;
}

.mod_area .mod_cont .faq_nav ul > li {
  padding-left: 0;
}
.mod_area .mod_cont .faq_nav ul > li::before {
  content: none;
}
.mod_area .mod_cont .faq_nav ul li + li {
  margin-top: 0;
}
.mod_area .mod_cont .faq_nav ul li a {
  display: block;
  color: #000;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
}
.mod_area .mod_cont .faq_nav ul li a:hover {
  opacity: 1;
  text-decoration: none;
}

.faq_nav {
  margin-bottom: 60px;
}
.faq_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.faq_nav a {
  display: block;
  position: relative;
  padding: 12px 40px 12px 24px;
  border: 2px solid #d9c495;
  border-radius: 999px;
  background: #fff;
  color: #000;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.faq_nav a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #81662b;
  border-bottom: 2px solid #81662b;
  -webkit-transform: translateY(-70%) rotate(45deg);
          transform: translateY(-70%) rotate(45deg);
}
.faq_nav a:hover, .faq_nav a:focus-visible {
  background: #d9c495;
}

.faq_section {
  margin-bottom: 60px;
  scroll-margin-top: 100px;
}
.faq_section h2 {
  padding-left: 16px;
  border-left: 6px solid #d9c495;
}

.faq_item {
  margin-bottom: 16px;
  border: 1px solid #dedede;
  border-radius: 8px;
  background: #fff;
  overflow: hidden;
}
.faq_item[open] .faq_q::after {
  content: "−";
}

.faq_q {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 20px 56px 20px 20px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  -webkit-transition: background 0.2s;
  transition: background 0.2s;
}
.faq_q::-webkit-details-marker {
  display: none;
}
.faq_q::before {
  content: "Q";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  margin-right: 16px;
  border-radius: 50%;
  background: #81662b;
  color: #fff;
  font-size: 18px;
}
.faq_q::after {
  content: "＋";
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #81662b;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.faq_q:hover {
  background: #f7f7f7;
}
.faq_q:focus-visible {
  outline: 2px solid #81662b;
  outline-offset: -2px;
}

.faq_a {
  position: relative;
  padding: 20px 24px 24px 72px;
  border-top: 1px dashed #dedede;
  background: #f4f4f4;
  line-height: 1.8;
}
.faq_a::before {
  content: "A";
  position: absolute;
  top: 20px;
  left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid #81662b;
  border-radius: 50%;
  background: #fff;
  color: #81662b;
  font-size: 18px;
  font-weight: 700;
}
.faq_a p {
  margin: 0 0 1em;
}
.faq_a p:last-child {
  margin-bottom: 0;
}
.faq_a ul {
  margin: 0.5em 0 0;
  padding-left: 0;
}
.faq_a ul li {
  list-style: none;
}
.faq_a a {
  color: #81662b;
  text-decoration: underline;
}
.faq_a .faq_contact {
  margin-top: 1.5em;
}
.faq_a .faq_contact a {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 999px;
  background: #81662b;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.faq_a .faq_contact a:hover, .faq_a .faq_contact a:focus-visible {
  opacity: 0.8;
}

@media only screen and (max-width: 640px) {
  .faq_lead {
    margin-bottom: 24px;
    text-align: left;
  }
  .faq_nav {
    margin-bottom: 40px;
  }
  .faq_nav ul {
    gap: 8px;
  }
  .faq_nav a {
    padding: 10px 32px 10px 16px;
    font-size: 14px;
  }
  .faq_nav a::after {
    right: 14px;
  }
  .faq_section {
    margin-bottom: 40px;
  }
  .faq_q {
    padding: 16px 44px 16px 12px;
  }
  .faq_q::before {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    font-size: 15px;
  }
  .faq_q::after {
    right: 14px;
    font-size: 20px;
  }
  .faq_a {
    padding: 16px 16px 20px 56px;
  }
  .faq_a::before {
    top: 16px;
    left: 12px;
    width: 30px;
    height: 30px;
    font-size: 15px;
  }
}