﻿@charset "utf-8";

/**/
.faq_wp section {
  width: 900px;
  margin: 60px auto 90px;
}
.faq_wp section > dl {
  padding: 25px 0 20px 30px;
  border-bottom: solid 1px #e6e6e6;
}
.faq_wp section > dl > dt {
  position: relative;
  padding: 5px 0 10px;
  font-size: 18px;
  z-index: 1;
}
.faq_wp section > dl > dt::before {
  content: "Q.";
  display: inline-block;
  position: absolute;
  top: 0;
  left: -25px;
  font-size: 20px;
  color: var(--color-whk);
}
.faq_wp section > dl > dt a {
  position: relative;
  display: block;
  padding-right: 20px;
  text-decoration: none;
}
.faq_wp section > dl > dt a::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 15px;
  height: 15px;
  background-image: url("../../img/common/icon_plus_blue.svg");
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100% auto;
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.faq_wp section > dl > dt.open a::after {
  background-image: url("../../img/common/icon_minus_blue.svg");
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  transform: rotate(0deg);
}
.faq_wp section > dl > dd {
  display: none;
  padding: 20px;
  background-color: #e7f5fb;
  font-size: 16px;
}
.faq_wp section > dl > dd a {
  color: var(--color-whk);
}
.faq_wp section > dl > dd > p:not(:last-child) {
  margin-bottom: .5em;
}
    /**/
    .sp-layout .faq_wp section {
        width: 100%;
        margin: 20px auto 50px;
    }
    .sp-layout .faq_wp section > dl {
      padding: 15px 0 10px 30px;
    }
    .sp-layout .faq_wp section > dl > dt {
      font-size: 16px;
    }
    .sp-layout .faq_wp section > dl > dd {
      font-size: 15px;
      line-height: 1.8em;
    }
    .sp-layout .faq_wp section > dl > dt a:hover {
      color: var(--font-base-color);
    }
    .sp-layout .faq_wp section > dl > dd a {
      color: var(--color-whk);
    }
    .sp-layout .faq_wp section > dl > dd > p:not(:last-child) {
      margin-bottom: .5em;
    }