.container {
  max-width: 1100px;
  margin: 0 auto; }

.section-ttlimg {
  max-width: 480px;
  margin: auto; }

ul li {
  list-style: none; }

.fv_small .fv-content .fv-inner {
  background: url(../img/faq/fv_bg_pc.jpg) no-repeat right center #ed7500;
  background-size: contain; }
  @media (max-width: 768px) {
    .fv_small .fv-content .fv-inner {
      background: url(../img/faq/fv_bg_sp.jpg) no-repeat center right #ed7500;
      background-size: auto 100%; } }

.faq_wrap .cont_inner {
  background: #f4efe4;
  padding: 64px 32px; }
  @media (max-width: 768px) {
    .faq_wrap .cont_inner {
      padding: 32px 8px; } }

.ank_list {
  max-width: 914px;
  margin: 0 auto;
  display: grid;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px; }
  @media (max-width: 768px) {
    .ank_list {
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 32px; } }
  @media (max-width: 768px) {
    .ank_list li {
      width: 100%; }
      .ank_list li:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        width: calc(50% - 8px);
        margin: 32px auto 0; } }
  .ank_list li a {
    display: block;
    border: 1px solid #ed7500;
    padding: 8px 16px;
    border-radius: 100px;
    text-align: center;
    color: #ed7500;
    text-decoration: none;
    font-size: 16px;
    position: relative; }
    .ank_list li a:hover {
      background: #ed7500;
      color: #fff; }
      .ank_list li a:hover::before {
        bottom: -32px; }
    @media (max-width: 768px) {
      .ank_list li a {
        font-size: 14px; } }
    .ank_list li a::before {
      content: "";
      display: block;
      background: url(../img/arrow_o02.svg) no-repeat center center;
      background-size: cover;
      width: 20px;
      height: 10px;
      position: absolute;
      left: 50%;
      bottom: -24px;
      margin-left: -10px; }

.faq-container {
  border-radius: 0 0 10px 10px;
  overflow: hidden;
  max-width: 914px;
  margin: auto; }

.faq-item:last-child {
  border-bottom: none; }

.faq-question {
  border: 1px solid #ed7500;
  background: #fff;
  padding: 0 56px 0 6em;
  position: relative;
  cursor: pointer;
  margin-bottom: 16px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: 500;
  border-radius: 16px;
  overflow: hidden;
  font-size: 21px;
  min-height: 3em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1.2em; }
  @media (max-width: 768px) {
    .faq-question {
      font-size: 12px;
      padding: 0 9vw 0 4.5em;
      min-height: 3.5em; } }
  .faq-question span {
    background: #ed7500;
    padding: 16px 16px;
    color: #fff;
    width: 3.5em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 32px;
    position: absolute;
    left: 0;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: end; }
    @media (max-width: 768px) {
      .faq-question span {
        font-size: 16px;
        width: 3em;
        padding: 32px 4px; } }

.faq-question::after {
  content: '';
  width: 30px;
  height: 30px;
  background: url(../img/arrow_faq02.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -15px; }
  @media (max-width: 768px) {
    .faq-question::after {
      width: 5vw;
      height: 5vw;
      right: 2vw;
      margin-top: -2.5vw; } }

.faq-question.active::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 16px; }

.faq-answer.active {
  max-height: 500px;
  margin-bottom: 32px; }
  .faq-answer.active .faq-answer-content {
    position: relative; }

.faq-answer-content {
  padding: 24px;
  padding: 1.5rem;
  color: #444;
  line-height: 1.8;
  background: #fff;
  position: relative;
  padding: 32px 32px 32px 96px; }
  .faq-answer-content span {
    font-size: 32px;
    color: #ed7500;
    position: absolute;
    left: 40px;
    top: 16px; }
