.text-link a {
    text-decoration: underline;
}
.text-link a:before {
    content: '●';
}
#wrapper .faq-title {
    background-color: #F2F0ED;
    padding: 20px 0;
    text-align: center;
    font-size: 30px;
    letter-spacing: .2em;
}
.faq-message {
    text-align: center;
    margin: 40px auto;
    line-height: 1.7;
}
#faq-list {
    margin-top: 80px;
}
#faq-list ul {
    display: flex;
    flex-wrap: wrap;
}
#faq-list ul li {
    width: calc(100%  / 2 - 50px);
    margin-bottom: 50px;
    font-size: 18px;
    position: relative;
    margin-right: 50px;
}
#faq-list ul li:nth-child(2n) {
    margin-right: 0;
}
#faq-list ul li:last-child {
    margin-bottom: 0;
}
#faq-list ul li a span {
    padding-left: 50px;
}
#faq-list ul li a span:before {
    content: '';
    background: url(https://www.osamaru-shuno.jp/wp-content/themes/pc-osamaru/img/faq/img_allow_r.png) center center no-repeat;
    position: absolute;
    left: 0;
    height: 15px;
    width: 10px;
    margin-left: 20px;
}
#faq-list ul li:after {
    content: '';
    background: url(https://www.osamaru-shuno.jp/wp-content/themes/pc-osamaru/img/faq/img_line_btm.png) center center no-repeat;
    background-size: cover;
    padding-bottom: 22px;
    display: block;
}
#faq-contact  {
    position: relative;
    margin: 100px auto 130px;
    font-family: "A1ゴシック M", "A1 Gothic M", 游ゴシック体, "Yu Gothic", YuGothic, sans-serif !important;
}
#faq-contact .c_txt01 {
  position: absolute;
  top: 14%;
  left: 30.5%;
  font-size: 24px;
  letter-spacing: .1em;
}
#faq-contact .c_txt02 {
    font-size: 65px;
    color: #fc7310;
    position: absolute;
    top: 40%;
    left: 30%;
    letter-spacing: 0.1125em;
}
#faq-contact .c_txt03 {
    position: absolute;
    bottom: 6%;
    color: #fff;
    font-size: 24px;
    left: 31.5%;
    letter-spacing: .3em;
}
/* detailページ */
.faq-detail #faq-box {
    margin-top: 40px;
}
.faq-detail #faq-box li.faq-box-list label:after {
  content: '';
  background: url(https://www.osamaru-shuno.jp/wp-content/themes/pc-osamaru/img/faq/img_line_btm_02.png) center center no-repeat;
  background-size: cover;
  padding-bottom: 22px;
  display: block;
}
.faq-detail #faq-box li.faq-box-list {
  position: relative;
  display: block;
    padding-top: 40px;
    margin-top: -40px;
}
/* Question */
.faq-detail .question {
 position: relative;
 margin: 0;
 font-size: 18px;
 display: block;
 width:100%;
 cursor: pointer;
 -webkit-transition: .3s ease;
 -moz-transition: .3s ease;
 -o-transition: .3s ease;
 transition: .3s ease;
 line-height: 1.2em;
}
.faq-detail .question span{
    display: flex;
}
.faq-detail .question:hover {
  color: #00ADEC;
}
.faq-detail .question span:before {
  content: 'Q. ';
  color: #00ADEC;
  margin-left: 40px;
}
.faq-detail .question:before {
   content: '';
   background: url(https://www.osamaru-shuno.jp/wp-content/themes/pc-osamaru/img/faq/faq_open.png) center left no-repeat;
   position: absolute;
   left: 0;
   height: 22px;
   width: 22px;
}
.faq-detail .questions:checked ~ :before {
   background: url(https://www.osamaru-shuno.jp/wp-content/themes/pc-osamaru/img/faq/faq_close.png) center left no-repeat;
}
/* Answer */
.faq-detail .answers {
 width:100%!important;
 height: 0;
 overflow: hidden;
 z-index: -1;
 opacity: 0;
 -webkit-transition: .3s ease;
 -moz-transition: .3s ease;
 -o-transition: .3s ease;
 transition: .3s ease;
 padding-left: 40px;
 margin-bottom: 30px;
}
.faq-detail .answers p:first-child:before {
  content: 'A. ';
  color: #FC7616;
  font-size: 18px;
}
.faq-detail .questions:checked ~ .answers{
 height: auto;
 opacity: 1;
 line-height: 2;
 padding-left: 40px;
 padding-top: 30px;
 padding-bottom: 30px;
}
.faq-detail .questions {
 display: none;
}
.faq-detail .answers .faq-answers-img {
    display: block;
}

.faq-answers-img-col2{
    display: flex;
    flex-wrap: wrap;
    align-items: center;  
    gap:1em;
}
.faq-answers-img-col2 figure{
    width: calc(100% / 2 - 0.5em);
}
.faq-answers-img-col2 figure img{
    width: 100%;
}
#faq .contact-message{
    color: #FC7310;
    font-size: 1.2em;
}