/* ----------- faqアコーディオン001用 ----------- */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

.acc-container001 {
  width: 100%;
  margin: 0 auto 15px;
  overflow: hidden;
  position: relative;
}

.acc-container001::before {
  position: absolute;
  content: "";
  width: 54px;
  height: 54px;
  top: 0;
  left: 0;
  background-image: url(image/accordion_q.png);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 1;
}

.acc-container002 {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.acc-container002::before {
  position: absolute;
  content: "";
  width: 54px;
  height: 54px;
  top: 0;
  left: 0;
  background-image: url(image/accordion_q_2.png);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 1;
}

.acc-btn001 {
  width: 100%;
  color: #222222;
  font-weight: bold;
  cursor: pointer;
  background: #EFF3FC;
  padding-left: 80px;
  padding-right: 40px;
  position: relative;
}

.acc-btn001.active::after {
  transition: .3s;
  transform: rotate(45deg);
}

.acc-btn001::after {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  top: 33%;
  right: 10px;
  background-image: url(image/accordion_plus.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.acc-btn002 {
  width: 100%;
  color: #222222;
  font-weight: bold;
  cursor: pointer;
  background: #DDDADF;
  padding-left: 80px;
  padding-right: 40px;
  position: relative;
}

.acc-btn002.active::after {
  transition: .3s;
  transform: rotate(45deg);
}

.acc-btn002::after {
  position: absolute;
  content: "";
  width: 22px;
  height: 22px;
  top: 33%;
  right: 10px;
  background-image: url(image/accordion_plus.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.acc-content001 {
  width: 100%;
  margin: 20px 20px 10px;
  display: none;
  height: auto;
  font-size: 17px;
}

.entry-content .acc-container001 h3 {
  margin: 0;
  font-size: 22px;
  padding: 9px 0 !important;
  border: solid 0px;
  border-bottom-width: 0 !important;
}

.entry-content .acc-container002 h3 {
  margin: 0;
  font-size: 22px;
  padding: 9px 0 !important;
  border-bottom-width: 0 !important;
}

@media only screen and (max-width: 769px) {
  .acc-content001 {
    font-size: 14px;
    margin: 10px 0;
  }

  .acc-content002 {
    font-size: 14px;
    margin: 10px 0;
  }

  .acc-container001::before {
    width: 42px;
    height: 42px;
  }

  .acc-container002::before {
    width: 42px;
    height: 42px;
  }

  .acc-btn001 {
    padding-left: 55px;
  }

  .acc-btn002 {
    padding-left: 55px;
  }
  
  .entry-content .acc-container001 h3 {
    font-size: 16px;
    padding: 0;
  }

  .entry-content .acc-container002 h3 {
    font-size: 16px;
    padding: 0;
  }
}

/* ----------- アコーディオン ----------- */

.show_more {
  position: relative;
  margin-bottom: 50px;
}

.wpsm-show_wrapper {
  position: absolute;
  bottom: -27px;
  transform: translateX(-50%);
  left: 50%;
  width: 100%;
  text-align: center;
  padding-top: 40px;
  background-image: linear-gradient( 180deg, rgba(255,255,255,0.5), white );
  cursor: pointer;
  z-index: 1;
}
.wpsm-show {
  position: relative;
  display: inline-block;
  transition: bottom 0.2s;


}

.is-hide {
    display: none;
}

.wpsm-show::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 43%;
  right: -24px;
  background-image: url(image/arrow-bottom.svg);
  background-repeat: no-repeat;
  background-size: 100%;
}

.wpsm-content {
  height: 250px;
  overflow: hidden;
}

/* ----------- ライター紹介コード追加 ----------- */
.wraiter_container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.wraiter_role {
  display: block;
  font-size: 13px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0;
}

.wraiter_name {
  display: block;
  font-size: 28px;
  margin: 0;
}

.wraiter_text {
  font-size: 15px;
  letter-spacing: 0;
}

.wraiter_content {
  margin-left: 25px;
}

.wraiter_img_wrapper {
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;  
}

.wraiter_img_wrapper::after {
  position: absolute;
  content: "";
  width: 82px;
  height: 22px;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(image/writer_label.png);
  background-repeat: no-repeat;
  background-size: 100%;
}

.wraiter_img {
  width: 107px;
  height: 107px !important;
  border-radius: 50%;
}

.wraiter_youtube {
  margin-right: 40px;
}

.wraiter_twitter {
  margin-right: 38px;
}

.wraiter_more {
  display: none;
}

a[href=""]{
  display: none;
}

@media only screen and (max-width: 769px) {
  .wraiter_name {
    font-size: 18px;
	  margin-top:5px;
  }

  .wraiter_text {
    font-size: 13px;
  }

  .wraiter_content {
    margin-left: 10px;
    position: relative;
  }

  .wraiter_img_wrapper {
    margin: 0 auto 40px;
    display: block;
  }

  .wraiter_more {
    display: block;
    position: absolute;
    font-size: 13px;
    border: solid 0;
    line-height: 1.3;
    color: #999999;
    bottom: 3px;
    right: 0;
    background-color: #fff;
    }
}

/* ----------- pタグ間の余白設定 ----------- */
.entry-content p,
.nishiki-pro-content p {
  margin-top: 1em !important;
  margin-bottom: 1em !important;
}