a {
  display: inline;
}

a:hover {
  text-decoration: none;
}

p:not(#global__pagetitle--title) {
  line-height: 1.6;
  margin: 0.5em 0 1em 0.8em;
}


/* qaアイコン */

div.textBlock01 .qaBlock01 .faq-content .fq {
  min-height: 25px;
  padding: 0px 2px 0px 40px;
  background: url("/business/i-wellebe/faq/images/ico_q.gif") no-repeat 0 14px;
  font-weight: bold;
  /* margin: 0 0 10px; */
  border-bottom: 1px dotted #999;
}

div.textBlock01 .qaBlock01 .faq-content .fa {
  margin: 0 0 0 6px;
  padding: 10px 10px 10px 2em;
  background: url("/business/i-wellebe/faq/images/ico_a.gif") no-repeat 0 14px;
}


.button_inner {
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0px;
  /* background-color: #f5f5f5; */
  /* box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2); */
  font-weight: bold;
}

.accordion-title {
  width: 100%;
  cursor: pointer;
  border: 0px solid #f5f5f5;
  background-color: #fff;
}

button:focus {
  outline: none;
}

.js-content {
  display: none;
}

/* --------アイコンを作ります-------- */
.icon {
  display: block;
  position: relative;
  width: 16px;
  margin-left: 6px;
  flex-shrink: 0;
  transform-origin: center 43%;
  transition: transform 0.4s;
}


/* アイコンのバーのスタイル */
.icon::before,
.icon::after {
  content: "";
  position: absolute;
  top: 0px;
  right: 3.4%;
  width: 14px;
  height: 2px;
  border-radius: 2px;
  background: #535353;
}

.icon::before {
  transform: rotate(90deg);
  transition: all .3s ease-in-out;
}

.icon::after {
  transition: all .2s ease-in-out;
}

/* アコーディオンが開いた時のスタイル */
.accordion-title.open .icon::before {
  transform: rotate(180deg);
}

.accordion-title.open .icon::after {
  opacity: 0;
}


/* --------アコーディオンの中身のスタイル-------- */
.content {
  overflow: hidden;
  /* details直下のタグにpaddingを設定すると挙動がおかしくなるので、ここには指定しない */
}

.content_inner {
  padding: 10px 30px;
}




/* SP */
@media only screen and (max-width: 767px) {

  /* qaアイコン */
  div.textBlock01 .qaBlock01 .faq-content .fq {
    background: url("/business/i-wellebe/faq/images/ico_q.gif") no-repeat 0px 8px;
  }

  p:not(#global__pagetitle--title) {
    line-height: 1.4;
  }

  .button_inner {
    font-size: 1.4rem;
    padding: 10px 0px;
    text-align: left;
  }

  .content_inner {
    padding: 10px 5px;
  }


}