.page-faq-detail .p-contents .only-s-sp {
  display: none;
}
@media (max-width: 375px) {
  .page-faq-detail .p-contents .only-s-sp {
    display: block;
  }
}

.page-faq-detail  .wrapper {
  overflow: visible;
}

/* --------------------------------------------------
c-guide-header
-------------------------------------------------- */
.c-guide-header {
  max-width: 1200px;
  padding: 0 20px;
  margin: 100px auto 0;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-guide-header {
    margin: 50px 0 0;
  }
}
.c-guide-header__heading-1 {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .c-guide-header__heading-1 {
    font-size: 20px;
    margin-bottom: 40px;
  }
}

/* --------------------------------------------------
c-guide-body
-------------------------------------------------- */
.c-guide-body {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  padding: 0 0 200px;
  margin: auto;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .c-guide-body {
    display: block;
    padding-bottom: 50px;
  }
}
.c-guide-body .c-guide-body__primary {
  flex: 0 1 30%;
}
.c-guide-body .c-guide-body__secondary {
  flex: 0 1 67%;
}


/* --------------------------------------------------
c-guide-nav-1
-------------------------------------------------- */
.c-guide-nav-1 {
  position: sticky;
  top: 100px;
}
@media screen and (max-width: 768px) {
  .c-guide-nav-1 {
    position: relative;
    top: 0;
    padding: 20px;
    background: #A6CEC4;
    margin: 0 10px 40px;
  }
}

.c-guide-nav-1 .nav-item {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .c-guide-nav-1 .nav-item {
    font-size: 13px;
    margin-bottom: 2px;
  }
}
.c-guide-nav-1 .nav-item a {
  display: block;
  padding: 10px 20px;
  border-left: 3px solid #fff;
  transition: all .2s;
}
@media screen and (max-width: 768px) {
  .c-guide-nav-1 .nav-item a {
    position: relative;
    border-left: none;
    background: #fff;
  }
  .c-guide-nav-1 .nav-item a::after {
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 20px;
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    transform: rotate(135deg);
 }
}
.c-guide-nav-1 .nav-item a.selected {
  color: #A6CEC4;
  border-left: 3px solid #A6CEC4;
}
@media screen and (max-width: 768px) {
  .c-guide-nav-1 .nav-item a.selected {
    color: #333;
    border-left: none;
  }
}
.c-guide-nav-1 .nav-item a:hover {
  color: #A6CEC4;
  border-left: 3px solid #A6CEC4;
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .c-guide-nav-1 .nav-item a:hover {
    color: #333;
    opacity: 1;
    border-left: none;
  }
}

/* --------------------------------------------------
c-guide-section
-------------------------------------------------- */
.c-guide-section {
  /* padding-top: 80px; */
  /* margin-top: -80px; */
  margin-bottom: 50px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .c-guide-section {
    /* padding-top: 50px; */
    /* margin-top: -50px; */
    margin-bottom: 40px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* --------------------------------------------------
c-guide-lead
-------------------------------------------------- */
.c-guide-lead {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c-guide-lead {
    margin-bottom: 10px;
  }
}
.c-guide-lead__heading-1 {
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .c-guide-lead__heading-1 {
    font-size: 20px;
  }
}


/* --------------------------------------------------
c-guide-box-1
-------------------------------------------------- */
.c-guide-box-1 {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .c-guide-box-1 {
    margin-bottom: 20px;
  }
}

.c-guide-box-1 .c-guide-box-1__header {
  cursor: pointer;
  position: relative;
  font-size: 20px;
  color: #fff;
  background: #A6CEC4;
  padding: 10px 60px 10px 30px;
  -webkit-tap-highlight-color:rgba(0,0,0,0);
}
@media screen and (max-width: 768px) {
  .c-guide-box-1 .c-guide-box-1__header {
    font-size: 14px;
    padding: 10px 20px;
  }
}
.c-guide-box-1 .c-guide-box-1__header::before,
.c-guide-box-1 .c-guide-box-1__header::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  background-color: #fff;
  width: 20px;
  height: 4px;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .c-guide-box-1 .c-guide-box-1__header::before,
  .c-guide-box-1 .c-guide-box-1__header::after {
    width: 15px;
    height: 3px;
  }
}
.c-guide-box-1 .c-guide-box-1__header::after {
  transform: rotate(90deg);
}

/* アコーディオン開閉時(-)スタイル */
.c-guide-box-1 .c-guide-box-1__header.is-open::before {
  transform: rotate(180deg);
}
.c-guide-box-1 .c-guide-box-1__header.is-open::after {
  transform: rotate(180deg);
  opacity: 0;
}


.c-guide-box-1 .c-guide-box-1__body {
  display: none;
  font-size: 14px;
  color: #333;
  background: #F0F5F5;
  padding: 30px 40px;
}
@media screen and (max-width: 768px) {
  .c-guide-box-1 .c-guide-box-1__body {
    font-size: 14px;
    padding: 20px;
  }
}
.c-guide-box-1 .c-guide-box-1__body a {
  color: #7198AB;
  text-decoration: underline;
}
.c-guide-box-1 .c-guide-box-1__body a:hover {
  text-decoration: none;
}
