@charset "utf-8";
.col_textarea_full {
  max-width: 950px;
}
/*目次リスト*/
ul.l_mokuji_list {
  margin-top: 3em;
}
ul.l_mokuji_list a {
  display: flex;
  gap: 1em;
  border-bottom: 1px dashed #E5CFD0;
  padding: 1em;
  position: relative;
  text-decoration: none;
  transition: .4s;
  align-items: center;
}
ul.l_mokuji_list a:hover {
  background: #FFF9F7;
}
ul.l_mokuji_list a::before {
  background: #F9E4E4;
  bottom: -5px;
  content: '';
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: -1;
}
ul.l_mokuji_list a::after {
  background: #F0A992;
  bottom: -5px;
  content: '';
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  transition: all .4s ease-in-out;
  width: 0;
  z-index: 0;
}
ul.l_mokuji_list a:hover::after {
  width: 100%;
}
/**/
ul.l_mokuji_list a img {
  object-fit: contain;
  width: 170px;
}
ul.l_mokuji_list a h3 {
  font-size: clamp(0.813rem, 0.608rem + 1.02vw, 1.375rem);
  line-height: 1.5;
  margin-bottom: .5em;
}
ul.l_mokuji_list a p {
  color: #969696;
}
ul.l_mokuji_list a p span {
  display: inline-block;
  vertical-align: middle;
  background: #969696;
  color: #fff;
  font-size: .8em;
  padding: 0 1em;
  border-radius: 4px;
  margin-right: .6em;
}
/*span数字*/
ul.l_mokuji_list a span.number {
  display: block;
  font-size: clamp(1.125rem, 0.875rem + 1.25vw, 1.813rem);
}
@media screen and (max-width : 768px) {
  ul.l_mokuji_list a {
    padding: 1em .5em .5em .5em;
  }
  ul.l_mokuji_list h3 {}
  /**/
  ul.l_mokuji_list a img {
    width: 100px;
    height: 100px;
    object-fit: cover;
  }
  ul.l_mokuji_list a div:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
  }
  ul.l_mokuji_list a p {
    font-size: .9em;
  }
  ul.l_mokuji_list a p span {
    font-size: .8em;
  }
}
/*---------- 見出し -----------*/
.col_danraku_midashi.article {
  text-align: left;
  font-size: clamp(1.125rem, 0.852rem + 1.36vw, 1.875rem);
  display: flex;
  align-items: center;
}
.col_danraku_midashi.article::before {
  content: attr(data-number);
  display: inline-block;
  margin-right: .5em;
  padding-right: .5em;
  color: #ED9A79;
  border-right: 1px solid #ED9A79;
}
/*----------------------*/
.l_article_img img {
  width: 100%;
  border-radius: 10px;
}
/*----------- 執筆者ボックス ------------*/
.l_writer_box {
  background: #FDEEE8;
  display: flex;
  gap: 1em;
  padding: 1em;
  border-radius: 10px;
  align-items: center;
  justify-content: center;
}
.l_writer_box div.flex_prof {
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: space-between;
  column-gap: 2em;
}
/*顔アイコン*/
.l_writer_box img {
  object-fit: contain;
  width: 120px;
  height: 120px;
  border-radius: 100px;
}
/*役職*/
.l_writer_box ul.col_mark_circle {
  width: auto;
}
.l_writer_box ul.col_mark_circle li {
  margin: 0;
  padding: 0;
  border: none;
}
/*名前*/
.l_writer_box p:first-child {
  font-weight: bold;
  margin-bottom: 0;
}
.l_writer_box p span {
  display: inline-block;
  vertical-align: middle;
  background: #F0A78B;
  color: #fff;
  font-size: .9em;
  padding: 0 1em;
  font-weight: normal;
  border-radius: 4px;
  margin-right: .6em;
}
@media screen and (max-width : 768px) {
  .l_writer_box, .l_writer_box div.flex_prof {
    display: block;
    text-align: center;
  }
  .l_writer_box p {
    text-align: center;
  }
  .l_writer_box ul.col_mark_circle {
    margin: 0 auto;
    width: 80%;
  }
}
/*---------記事内の目次------------*/
.l_article_mokuji {
  border: solid 3px #FFDED1;
  border-radius: 10px;
  padding: 1em;
  margin-top: 2em;
}
.l_article_mokuji h5 {
  text-align: center;
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  color: #664E4F;
}
.l_article_mokuji ul {
  counter-reset: number;
  list-style-type: none !important;
  padding: 0.3em 0.8em;
}
.l_article_mokuji ul li {
  border-bottom: dashed 1px #F4E7DD;
  position: relative;
  padding: 0.5em 0.5em 0.5em 2em;
  line-height: 1.5em;
}
.l_article_mokuji ul li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background: #ED9A79;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 22px;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.l_article_mokuji ul li:last-of-type {
  border-bottom: none;
}
/*-------------------------------------------*/
/*数字リスト、円リストの使い分け用*/
.l_article_mokuji_circle {
  border: solid 3px #FFDED1;
  border-radius: 10px;
  padding: 1em;
  margin-top: 2em;
}
.l_article_mokuji_circle h5, .l_article_mokuji h5 {
  text-align: center;
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  color: #664E4F;
  margin-top: 0 !important;
}
/*数字*/
ul.l_mokuji_number {
  counter-reset: number;
  list-style-type: none !important;
  padding: 0.3em 0.8em;
}
ul.l_mokuji_number li {
  border-bottom: dashed 1px #F4E7DD;
  position: relative;
  padding: 0.5em 0.5em 0.5em 2em;
  line-height: 1.5em;
}
ul.l_mokuji_number li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background: #ED9A79;
  color: #fff;
  font-weight: bold;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
ul.l_mokuji_number li:last-of-type {
  border-bottom: none;
}
/*------------------- 本文　---------------------*/
/*中見出し*/
h3.article_chumidashi {
  font-size: clamp(1.125rem, 0.807rem + 1.59vw, 2rem);
  font-weight: bold;
  margin: 3em 0 .5em 0;
  background-image: linear-gradient(to right, #ffecd2 0%, #FFDCC5 100%);
  padding: .2em .5em .3em .5em;
  line-height: 1.3;
}
/*中見出しで数字と横並び*/
h3.article_chumidashi.number_flex {
  display: flex;
  align-items: center;
  gap: .5em;
}
h3.article_chumidashi em {
  font-size: .7em;
  display: inline-block;
  vertical-align: 10%;
  margin-left: .3em;
}
h3.article_chumidashi.number_flex span:first-child {
  background: #fff;
  display: block;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 100px;
  font-size: .9em;
  color: #F7A261;
  box-shadow: 0px 0px 15px -5px #F7A261;
  flex-shrink: 0;
}
/*小見出し*/
h4.article_komidashi {
  font-size: clamp(1.125rem, 0.966rem + 0.8vw, 1.563rem);
  font-weight: bold;
  margin: 2em 0 .5em 0;
  padding: 0 1em;
  color: #E3886F;
  border-bottom: 2px solid #F4CEC3;
}
/*小見出しより１つ下の小見出し*/
h5.article_komidashi_02 {
  font-size: clamp(1.125rem, 0.966rem + 0.8vw, 1.563rem);
  font-weight: bold;
  margin: 2em 0 .5em 0;
  padding: 0 1em;
  border-bottom: 2px solid #CFCFCF;
}
/*本文*/
.l_article_wrap p {
  width: 95%;
  margin: 0 auto;
}
/*画像*/
.l_article_wrap .figure a {
  text-align: center;
}
.l_article_wrap .figure a img {
  max-width: 500px !important;
  width: 100% !important;
}
/*キャプション*/
.l_caption {
  text-align: center;
  font-size: .9em;
}
/*公開日*/
.l_date {
  margin: 4em 0 2em 0;
  text-align: right;
  font-size: .9em;
}
/**/
.l_color_pink {
  color: #F1742A;
}
@media (max-width: 768px) {
  h3.article_chumidashi.number_flex span:first-child {
    font-size: .8em;
    width: auto;
    height: auto;
    line-height: auto;
    vertical-align: middle;
  }
  .l_date time span {
    display: block;
  }
}
/*------------前後ページ移動のボタン--------------*/
.bpts_prev_next_btn a.l_prev {
  padding: .6em 1em .6em 2.5em;
}
.bpts_prev_next_btn a.l_next {
  padding: .6em 2.5em .6em 1em;
}
.bpts_prev_next_btn li {
  max-width: 700px !important;
  width: 100% !important;
}
/*前へ*/
.bpts_prev_next_btn a.l_prev > span.icon_prev:after {
  font-weight: 900;
  content: "\f0a8";
  font-family: "Font Awesome 5 Free";
  color: #fff;
  position: absolute;
  left: 19px;
  transition: .4s;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
/*次へ*/
.bpts_prev_next_btn a.l_next > span.icon_next:after {
  font-weight: 900;
  content: "\f0a9";
  font-family: "Font Awesome 5 Free";
  color: #fff;
  position: absolute;
  right: 19px;
  transition: .4s;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.bpts_prev_next_btn a.l_prev:hover > span.icon_prev:after {
  left: 15px;
}
/*「前・次の記事」「タイトル」を横並びにする*/
.bpts_prev_next_btn a.l_next > span > div, .bpts_prev_next_btn a.l_prev > span > div {
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
  line-height: 1.5;
}
.bpts_prev_next_btn a.l_prev > span > div span:first-child, .bpts_prev_next_btn a.l_next > span > div span:first-child {
  flex-shrink: 0;
}
/*数字*/
.bpts_prev_next_btn a.l_next em, .bpts_prev_next_btn a.l_prev em {
  background: #F5F5AB;
  color: #727252;
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  text-align: center;
  border-radius: 100px;
  font-size: .9em;
  margin-right: 10px;
    flex-shrink: 0;
}
@media (max-width: 768px) {
  .bpts_prev_next_btn li a {
    border-radius: 10px;
  }
  .bpts_prev_next_btn a.l_next > span > div, .bpts_prev_next_btn a.l_prev > span > div {
    flex-direction: column;
  }
}
/*------------- 記事下関連リンク --------------*/
.l_kanren_links {
  background: #FFF4F0;
  border-radius: 10px;
  padding: 1em 2em;
}
.l_kanren_links h4 {
  padding-bottom: .5em;
}
.l_kanren_links ul {
  margin: 0 1em;
}
.l_kanren_links ul li {
  line-height: 1.4;
}
.l_kanren_links ul li a {
  white-space: pre-wrap;
}
.l_kanren_links ul li a span {
  color: #727272;
  font-size: .9em;
  margin-left: .6em;
  display: inline-block;
}
@media (max-width: 768px) {}
.l_kyakuchu {
  font-size: .9em;
}