@charset "utf-8";

/*-----( hero )-----*/
.sub-hero-frame {
  background: url(../img/faq/bg_kv.jpg) center top / cover no-repeat;
}

/*-----( contact )-----*/
.contact {
  margin: 0 auto 100px;
}
.contact .page__ttl {
  margin: 0 auto 40px;
}

@media only screen and (max-width: 767px) {
  .contact {
    margin: 60px auto 60px;
  }
}

/*-----( faq )-----*/
.faq-nav {
  display: flex;
  justify-content: space-between;
  margin: 39px auto 60px;
}
.faq-nav li {
  width: 20%;
}
.faq-nav a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 150px;
  padding: 10px 0 0;
  border: 1px solid #006428;
  border-bottom: 10px solid #006428;
  color: #006428;
  text-decoration: none;
}
.faq-nav b {
  font-size: 22px;
  font-weight: 700;
}
.faq-nav span {
  display: block;
  text-align: center;
  font-weight: 500;
  line-height: 1.8;
}
.faq-nav a::after {
  content: "";
  display: block;
  width: 20px;
  height: 11px;
  margin: 4px auto 0;
  background: url(../img/common/arw_07.svg) left top / cover no-repeat;
}
@media (hover: hover) {
  .faq-nav a:hover {
    background: #006428;
    color: #fff;
  }
  .faq-nav a:hover::after {
    background: url(../img/common/arw_10.svg) left top / cover no-repeat;
  }  
}

@media only screen and (max-width: 1099px) {
  .faq-nav b {
    font-size: 18px;
  }
}

@media only screen and (max-width: 879px) {
  .faq-nav b {
    font-size: 16px;
  }
}

@media only screen and (max-width: 767px) {
  .faq-nav {
    display: block;
    margin: 30px auto 40px;
  }
  .faq-nav li {
    width: 100%;
  }
  .faq-nav li + li {
    margin-top: 20px;
  }
  .faq-nav a {
    flex-direction: row;
    height: 65px;
    border-bottom: 5px solid #006428;
    padding: 0 4% 0;
  }
  .faq-nav b {
    flex-shrink: 0;
    width: 170px;
  }
  .faq-nav span {
    text-align: left;
    font-size: 12px;
    line-height: 1.5;
  }
  .faq-nav a::after {
    width: 12px;
    height: 7px;
    margin: 0 0 0 auto;
    background: url(../img/common/arw_07.svg) left top / cover no-repeat;
  }
}

@media only screen and (max-width: 374px) {
  .faq-nav b {
    width: 140px;
    font-size: 14px;
  } 
}

/*-----( details )-----*/
.cat details {
  padding: 0 3.6%;
}
.cat .cmn-head-02 {
  margin: 0 auto 3px;
}
.cat + .cat {
  margin-top: 60px;
}
.question {
  list-style: none;
  border-bottom: 1px solid #3C1A1A;
}
.question div {
  position: relative;
  display: flex;
  align-items: center;
  padding: 47px 0 24px;
}
.question::-webkit-details-marker {
  display: none;
}
@media all and (-ms-high-contrast:none){  
  .question {
    position: relative;
  }
  .question::before {
    content: "" !important;
    position: absolute !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 2 !important;
  }
}
@media (hover: hover) {
  .question:hover { cursor: pointer; }
}
.question div::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  margin: 0 0 0 auto;
  background: url(../img/common/arw_08.svg) left top / cover no-repeat;
}
details[open] .question div::after {
  background: url(../img/common/arw_09.svg) left top / cover no-repeat;
}
.q__icon {
  display: block;
  flex-shrink: 0;
  width: 17px;
  margin-right: 4.5%;
}
.q__txt {
  margin: 0 2% 0 0;
  font-size: 16px;
  font-weight: 500;
}
.answer {
  display: flex;
  padding: 28px 2% 0 0;
}
.a__icon {
  display: block;
  flex-shrink: 0;
  width: 20px;
  margin-right: 4%;
}
.a__txt {
  line-height: 1.8;
}
.a__txt a {
  color: #006428;
}
.a__txt .caution {
  color: #f00;
}

@media only screen and (max-width: 767px) {
  .cat details {
    padding: 0;
  }
  .cat .cmn-head-02 {
    font-size: 14px;
  }
  .cat + .cat {
    margin-top: 40px;
  }
  .question div {
    padding: 16px 0 14px;
  }
  .question div::after {
    width: 20px;
    height: 20px;
  }
  .q__icon {
    width: 14px;
    margin-right: 4%;
  }
  .q__txt {
    font-size: 14px;
  }
  .answer {
    padding: 18px 0 16px 0;
  }
  .a__icon {
    width: 14px;
  }
}