@charset "utf-8";
.spb{
  display: none;
  @media screen and (max-width: 767px){
    display: block;
  }
}
.pcb{
  display: block;
  @media screen and (max-width: 767px){
    display: none;
  }
}
.pcf{
  display: flex;
  @media screen and (max-width: 767px){
    display: none;
  }
}
.spnone{
  @media screen and (max-width: 767px) {
    display: none;
  }
}

.blog-content{
  color: #000;
  font-family: "'Noto Sans JP', 'ヒラギノ角ゴ Pro', Hiragino Kaku Gothic Pro, 'メイリオ', Meiryo, sans-serif";
  box-sizing: border-box;
}
.blog--wrapper{
  background: #EBF0F5;
  padding: 60px 0 60px;
  @media screen and (max-width: 767px){
      padding: 40px 0 60px;
  }
}
.search--wrapper{
  margin-top: 60px;
  padding: 28px 0 32px;
  .content__search{
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 88px;
    @media screen and (max-width: 767px) {
      display: block;
    }
  }
}
.content__wrap{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  img{
    width: 100%;
    height: auto;
  }
}
.content__pickup{
  background: #fff;
  width: 100%;
  max-width: 1100px;
  padding: 0 30px 56px;
  margin: 0 auto 56px;
  box-sizing: border-box;
  position: relative;
  @media screen and (max-width: 767px){
    width: calc(100% - 20px);
    margin: 0 10px 56px;
    padding: 0 16px 56px;
  }
}
.content__recommend,
.content__download,
.categories{
  position: relative;
}
.content__download{
  margin-top: 60px;
  @media screen and (max-width: 767px) {
    margin-top: 40px;
  }
}
.content__press{
  margin-top: 60px;
  @media screen and (max-width: 767px) {
    margin: 60px 10px 0;
    width: calc(100% - 20px);
  }
}
@media screen and (max-width: 767px){
  .content__new,
  .content__recommend{
    margin: 0 24px;
    width: calc(100% - 48px);
  }
  .content__new,
  .tabs-contents{
    .card_items li:nth-of-type(n+4){
      display: none;
    }
  }
}


.card_items{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
  @media screen and (max-width: 767px){
    flex-direction: column;
  }
  & > li{
    width: calc((100% - 64px) / 3);
    box-sizing: border-box;
    border: 1px solid #0050a0;
    background: #fff;
    transition: all .4s;
    position: relative;
    @media screen and (max-width: 767px){
      width: 100%;
    }
    &.card_item-bg_whi{
      background: #EBF0F5;
    }
    &:hover{
      box-shadow: 3px 2px 5px rgba(0, 0, 0, 0.4);
    }
  }
  .card_item-thumb {
    width: 100%;
    height: 200px;
    background: #F7FBFF;
    border-bottom: 1px solid #0050a0;
    overflow: hidden;
    display: flex;
    align-items: center;
  }
  .card_item-bg_whi{
    .card_item-thumb{
      background: #fff;
      border-bottom: none;
    }
  }
  .card_item-title{
    font-size: 18px;
    padding: 8px 8px 0;
    @media screen and (max-width: 767px){
      font-size: 16px;
    }
  }
  .card_item-data{
    font-size: 14px;
    text-align: right;
    padding: 4px 8px 8px;
  }
}
.card_item-cat{
  margin: 10px 8px 0;
  font-size: 14px;
  span{
    border: 1px solid #0050a0;
    background: #fff;
    padding: 2px 10px 1px;
    margin: 8px 8px 4px 0;
    color: #0050a0;
  }
  .cat-tags{
    display: inline-block;
    margin-bottom: 8px;
  }
}
.card_items-type2{
  .card_item{
    padding: 16px 0 100px;
    position: relative;
    background: #EBF0F5;
    &:hover{
      box-shadow: none;
    }
  }
  .card_item-thumb {
    width: 94%;
    max-height: 207px;
    background: #fff;
    border-bottom: none;
    margin: 15px auto 10px;
  }
  .card_item-title{
    text-align: center;
  }
  .card_item-btn {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    transition: all .4s;
    &:hover{
      bottom: 26px;
    }
    a{
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 10px;
      width: 100%;
      padding: 10px 0;
      background: #00AA62;
      font-size: 20px;
      font-weight: bold;
      color: #fff;
      text-align: center;
      text-decoration: none;
      border-radius: 15px;
      box-shadow: 0 4px #005430;
      transition: all .4s;
      &::before{
        content: "";
        display: block;
        width: 30px;
        height: 19px;
        background: url(/blog/wp-content/themes/theme_202508/image/icon-dl.svg) no-repeat;
        background-size: contain;
      }
      &:hover{
        box-shadow: 0 2px #005430;
      }
    }
  }
}
.thumbList_items{
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  @media screen and (max-width: 767px) {
    flex-direction: column;
    gap: 16px;
  }
}
.thumbList_item-wrap{
  width: calc((100% - 30px) / 2);
  background: #fff;
  transition: all .4s;
  position: relative;
  @media screen and (max-width: 767px) {
    width: 100%;
  }
  &:hover{
    box-shadow: 3px 2px 5px rgba(0, 0, 0, 0.4);
  }
}
.thumbList_item{
  display: flex;
  gap: 10px;
  .thumbList_item-title{
    font-size: 18px;
    padding: 8px 0 8px;
    @media screen and (max-width: 767px) {
      font-size: 14px;
    }
  }
  .thumbList_item-data{
    font-size: 14px;
    padding: 4px 0 0;
    @media screen and (max-width: 767px) {
      font-size: 12px;
    }
  }
}
.thumbList_item-cat{
  margin: 8px 8px 0;
  font-size: 14px;
  color: #0050a0;
  span{
    border: 1px solid #0050a0;
    background: #fff;
    padding: 2px 10px 1px;
    margin: 8px 8px 4px 0;
  }
  .cat-tags{
    display: inline-block;
    margin-bottom: 8px;
  }
}
.thumbList_item-thumb {
  width: 40%;
  max-width: 230px;
  height: 133px;
  background: #F7FBFF;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  overflow-y: hidden;
  @media screen and (max-width: 767px){
    height: 100px;
  }
}
.thumbList_item-rightCont{
  width: calc(60% - 10px) ;
}

.tabs-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  @media screen and (max-width: 767px){
    display: none;
  }
  li{
    font-size: 20px;
    font-weight: 700;
    color: #000;
    padding: 8px 0 10px;
    width: calc((100% - 60px - 48px) / 5);
    border-radius: 999px;
    box-sizing: border-box;
    border: 2px solid #EBF0F5;
    text-align: center;
    &.tabbtn-active,
    &:hover{
      color: #fff;
      cursor: pointer;
      background: #fff;
      transition: all .4s;
      &.cat01{
        background: #4687C9;
      }
      &.cat02{
        background: #46B7A8;
      }
      &.cat03{
        background: #D7562A;
      }
      &.cat04{
        background: #A71986;
      }
      &.cat05{
        background: #153A7A;
      }
    }
  }
}
.tabs-contents{
  padding: 56px 30px;
  @media screen and (max-width: 767px) {
    margin: -20px 10px 0;
    padding: 56px 12px 40px;
  }
  &.select-cat01{
    background: #4687C9;
  }
  &.select-cat02{
    background: #46B7A8;
  }
  &.select-cat03{
    background: #D7562A;
  }
  &.select-cat04{
    background: #A71986;
  }
  &.select-cat05{
    background: #153A7A;
  }
  .card_items{
    display: none;
    &.tab-active{
      display: flex;
    }
  }
}
.new-icon{
  position: absolute;
  top: 0;
  left: 0;
}


/* // layout */
.blog-content{
  margin-top: 72px;
  .breadcrumb-list{
    font-size: 18px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    @media screen and (max-width: 767px){
      display: none;
    }
  }
  .content__header{
    margin-top: 96px;
    text-align: center;
    position: relative;
    @media screen and (max-width: 767px){
      margin-top: 120px;
    }
    & + .blog--wrapper{
      margin-top: -16px;
      @media screen and (max-width: 767px){
        margin-top: -8px;
      }
    }
  }
  .content__header-title{
    font-size: 32px;
    position: relative;
    z-index: 2;
    color: #0050A0;
    font-weight: 800;
    line-height: 1;
    @media screen and (max-width: 767px){
      font-size: 24px;
    }
  }
  .content__header-title-back{
    font-size: 96px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: #EBF0F5;
    font-weight: 700;
    font-family: Montserrat;
    line-height: 1;
    @media screen and (max-width: 767px){
      font-size: 48px;
    }
  }
  .content-read{
    text-align: center;
    font-weight: 700;
    color: #000;
    font-size: 18px;
    margin-bottom: 36px;
    @media screen and (max-width: 767px){
      font-size: 16px;
    }
  }
  .content-title{
    font-size: 24px;
    font-weight: 700;
    color: #0050a0;
    line-height: 1;
    @media screen and (max-width: 767px){
      font-size: 20px;
    }
  }
  .title-back{
    font-size: 88px;
    color: #EBF0F5;
    font-weight: 700;
    line-height: 1;
    font-family: Montserrat;
    position: absolute;
    top: -16px;
    left: 30px;
    @media screen and (max-width: 767px){
      font-size: 44px;
      top: -8px;
      left: 16px;
    }
  }
  .title-bg{
    padding: 36px 0 36px;
    position: relative;
    z-index: 2;
    @media screen and (max-width: 767px){
      padding: 16px 0;
    }
  }
  .title-links{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    @media screen and (max-width: 767px){
      margin-bottom: 16px;
    }
  }
  .links-arrow{
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    @media screen and (max-width: 767px){
      font-size: 14px;
    }
    &::before{
      content: "";
      display: block;
      background: url(/blog/wp-content/themes/theme_202508/image/circle-arrow.svg) no-repeat;
      width: 18px;
      height: 18px;
      background-size: contain;
      transition: all .4s;
    }
    &:hover{
      text-decoration: underline;
      &::before{
        transform: rotate(360deg);
      }
    }
  }
}
.categories-lists{
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 60px;
  @media screen and (max-width: 767px) {
    margin: 16px 0 40px;
  }
  li{
    width: calc((100% - 32px) / 5);
    margin-bottom: 12px;
    @media screen and (max-width: 767px) {
      width: calc((100% - 8px) / 2);
      margin-bottom: 8px;
    }
  }
  .links-arrow{
    font-size: 14px;
  }
}
.content__recommend,
.content__download,
.categories{
  .title-back{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    @media screen and (max-width: 767px){
      left: 0;
      transform: translateX(0);
    }
  }
  .title-bg{
    text-align: center;
    position: relative;
    z-index: 2;
    @media screen and (max-width: 767px){
      text-align: left;
    }
  }
}
@media screen and (max-width: 767px) {
  .categories{
    margin: 0 24px;
    width: calc(100% - 48px);
  }
}
.download__wrap{
  @media screen and (max-width: 767px) {
    margin: 0 24px;
    width: calc(100% - 48px);
  }
  .all-article{
    display: flex;
    justify-content: end;
    margin-top: 4px;
  }
}
.content__information{
  padding: 60px 0 100px;
  text-align: center;
  @media screen and (max-width: 767px) {
    box-sizing: border-box;
    padding: 60px 16px 80px;
    .content-title{
      line-height: 1.4;
    }
  }
}
.information-btns{
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 64px;
  @media screen and (max-width: 767px) {
    flex-direction: column;
    gap: 20px;
  }
}
.information-btn{
  border: 2px solid #00BB6C;
  background: #fff;
  border-radius: 10px;
  padding: 2px;
  box-sizing: border-box;
  width: 100%;
  max-width: 424px;
  opacity: 1;
  transition: all .4s;
  &:hover{
    opacity: .7;
  }
  .information-btn-inner{
    background: #00BB6C;
    border-radius: 6px;
    padding: 40px 0 36px;
  }
  p{
    color: #fff;
    font-size: 18px;
    @media screen and (max-width: 767px) {
      font-size: 12px;
    }
  }
  h3{
    font-size: 24px;
    margin-top: 8px;
    @media screen and (max-width: 767px) {
      font-size: 16px;
    }
    .arrows{
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 4px;
      &::before{
        content: "";
        display: block;
        width: 27px;
        height: 27px;
        background: url(/blog/wp-content/themes/theme_202508/image/icon-arrow.svg) no-repeat;
        background-size: contain;
      }
    }
  }
}
.information-btn-orange{
  border: 2px solid #FF3C19;
  .information-btn-inner{
    background: #FF3C19;
  }
}
.content__contact{
  border-top: 2px solid #0050A0;
  display: flex;
  justify-content: center;
  @media screen and (max-width: 767px) {
    flex-direction: column;
  }
  .contact-inner{
    width: 50%;
    position: relative;
    opacity: 1;
    transition: all .4s;
    @media screen and (max-width: 767px) {
      width: 100%;
    }
    &:hover{
      opacity: .7;
    }
    &::before{
      content: "";
      display: block;
      width: 10px;
      height: 10px;
      background: #0050A0;
      clip-path: polygon(0 0, 100% 100%, 0 100%);
      position: absolute;
      bottom: 5px;
      left: 5px;
    }
    &::after{
      content: "";
      display: block;
      width: 10px;
      height: 10px;
      background: #0050A0;
      clip-path: polygon(0 0, 100% 0, 100% 100%);
      position: absolute;
      top: 5px;
      right: 5px;
    }
    a{
      display: block;
      padding: 36px 0 56px;
    }
  }
  .contact-inner-blue{
    background: #1673D0;
    &::before,
    &::after{
      background: #fff;
    }
  }
  .btn-contact{
    max-width: 550px;
    margin: 0 0 0 auto;
    padding-right: 40px;
    box-sizing: border-box;
    @media screen and (max-width: 767px) {
      padding: 0 16px;
    }
    p{
      color: #0050A0;
      font-size: 14px;
    }
    h3{
      color: #0050A0;
      font-size: 24px;
      border-top: 2px solid #0050A0;
    }
    span{
      color: #0050A0;
      font-size: 14px;
      font-family: Montserrat;
    }
  }
  .btn-recruit{
    max-width: 550px;
    margin: 0 auto 0 0;
    padding-left: 40px;
    box-sizing: border-box;
    @media screen and (max-width: 767px) {
      padding: 0 16px;
    }
    p{
      color: #fff;
      font-size: 14px;
    }
    h3{
      color: #fff;
      font-size: 24px;
      border-top: 2px solid #fff;
    }
    span{
      color: #fff;
      font-size: 14px;
      font-family: Montserrat;
    }
  }
}
.search-input{
  width: 100%;
  max-width: 350px;
  position: relative;
  @media screen and (max-width: 767px) {
    margin: 0 auto;
    &.search-text{
      margin-bottom: 12px;
    }
  }
  input{
    width: 100%;
    font-size: 18px;
    padding: 8px 10px;
    box-sizing: border-box;
    border-radius: 999px;
    border: 1px solid #0050A0;
  }
  p{
    text-align: center;
    font-size: 18px;
    margin-bottom: 16px;
    @media screen and (max-width: 767px) {
      margin-bottom: 8px;
    }
  }
  button{
    background: #0050A0 url(/blog/wp-content/themes/theme_202508/image/icon-search.svg) no-repeat 50% 50%;
    color: transparent;
    width: 47px;
    height: 47px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    right: -1px;
    border: none;
  }
  select{
    width: 100%;
    font-size: 18px;
    padding: 8px 10px;
    box-sizing: border-box;
    border-radius: 999px;
    border: 1px solid #0050A0;
  }
}
.search-select form{
  height: 47px;
  span{
    background: #0050A0 url(/blog/wp-content/themes/theme_202508/image/icon-triangle.svg) no-repeat 50% 50%;
    display: block;
    position: absolute;
    bottom: 0;
    right: -1px;
    width: 47px;
    height: 47px;
    border-radius: 50%;
  }
  select{
    height: 100%;
  }
}
.content__other{
  @media screen and (max-width: 767px) {
    margin: 0 10px;
    width: calc(100% - 20px);
  }
}
.custom-select{
  position: relative;
  width: calc(100% - 20px);
  margin: 0 auto;
  font-family: sans-serif;
  padding-top: 8px;
  span{
    background: #0050A0 url(/blog/wp-content/themes/theme_202508/image/icon-triangle.svg) no-repeat 50% 50%;
    display: block;
    position: absolute;
    bottom: 0;
    right: -1px;
    width: 47px;
    height: 47px;
    border-radius: 50%;
  }
}
.select-trigger {
  padding: 10px 15px;
  background: #FFF;
  color: #000;
  cursor: pointer;
  border-radius: 999px;
  border: 1px solid #0050A0;
}
.select-options {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  display: none;
  z-index: 10;
  li{
    padding: 10px;
    cursor: pointer;
    &:hover{
      background: #f0f0f0;
    }
  }
}
.bnrArea{
  width: 100%;
  max-width: 1100px;
  margin: 60px auto 0;
  @media screen and (max-width: 767px) {
    margin: 60px 24px 0;
    width: calc(100% - 48px);
  }
  img{
    width: 100%;
  }
}

/* // single */
.single-article{
  padding: 36px 0;
  background: #fff;
  margin: 0 auto;
  @media screen and (max-width: 767px) {
    margin: 0 10px;
    width: calc(100% - 20px);
    padding: 8px 0 32px;
  }
}
.single-article-inner{
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  @media screen and (max-width: 767px) {
    width: calc(100% - 20px);
    .single-article-data{
      font-size: 12px;
    }
  }
  .meta-info-top{
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .snslist{
    display: flex;
    justify-content: end;
    align-items: center;
    &.pcb{
      display: flex;
      @media screen and (max-width: 767px) {
        display: none;
      }
    }
    &.spb{
      display: none;
      @media screen and (max-width: 767px) {
        display: flex;
        justify-content: center;
        margin-top: 16px;
      }
    }
    li{
      padding-left: 0;
      &::before{
        display: none;
      }
      & + li{
        margin-top: 0;
      }
    }
  }
  .sns-bottom{
    margin-top: 60px;
  }
  .title{
    font-size: 24px;
    color: #000;
    margin: 8px 0 12px;
    @media screen and (max-width: 767px) {
      font-size: 20px;
    }
  }
  .card_item-cat{
    margin: 0 8px 0 0;
    @media screen and (max-width: 767px) {
      font-size: 12px;
    }
  }
  .eyechatch-img{
    margin-top: 28px;
  }
  .post-main{
    width: 100%;
    max-width: 740px;
    margin: 0 auto;
    p{
      font-size: 18px;
      margin-bottom: 20px;
      @media screen and (max-width: 767px) {
        font-size: 16px;
      }
    }
    h2{
      font-size: 20px;
      color: #fff;
      background: #0050A0;
      padding: 7px 8px 8px;
      margin-bottom: 20px;
      @media screen and (max-width: 767px) {
        font-size: 18px;
      }
      *{
        color: #fff;
      }
    }
    h3{
      background: #EBF0F5;
      color: #0050A0;
      font-size: 18px;
      padding: 7px 8px 8px;
      margin-bottom: 20px;
      @media screen and (max-width: 767px) {
        font-size: 16px;
      }
      *{
        color: #0050A0;
      }
    }
    h4{
      border-bottom: 2px solid #0050A0;
      color: #0050A0;
      font-size: 18px;
      padding: 7px 8px 8px;
      margin-bottom: 20px;
      @media screen and (max-width: 767px) {
        font-size: 16px;
      }
      *{
        color: #0050A0;
      }
    }
    a{
      color: #0050a0;
      text-decoration: underline;
      &:hover{
        text-decoration: none;
      }
    }
  }
}

.related-posts{
  padding: 60px 0;
  background-color: #EBF0F5;
  @media screen and (max-width: 767px) {
    padding: 0 10px 60px;
    box-sizing: border-box;
  }
}
.related-title{
  font-size: 24px;
  color: #0050A0;
  margin-bottom: 28px;
  @media screen and (max-width: 767px) {
   font-size: 20px;
   margin-bottom: 8px;
  }
}

/* // archives && search */
.posts-group-title{
  font-size: 24px;
  border-bottom: 2px solid #0050A0;
  padding-bottom: 8px;
  margin-bottom: 32px;
  @media screen and (max-width: 767px) {
    margin: 0 10px 32px;
    width: calc(100% - 20px);
    font-size: 20px;
  }
}
.thumbList_items-archives{
  @media screen and (max-width: 767px) {
    padding: 0 10px;
  }
  .thumbList_item-wrap{
    width: 100%;
    background: transparent;
    &:hover{
      box-shadow: none;
      background-color: #fff;
    }
  }
  .thumbList_item-rightCont{
    width: auto;
    @media screen and (max-width: 767px) {
      width: 60%;
    }
  }
  .thumbList_item-data{
    color: #000;
  }
  .thumbList_item-title{
    font-size: 20px;
    color: #000;
    @media screen and (max-width: 767px) {
      font-size: 14px;
    }
  }
  .thumbList_item-cat{
    margin-left: 0;
    @media screen and (max-width: 767px) {
      font-size: 12px;
    }
  }
}
.blog_author_archive{
  background: #f5f4f4;
  border-radius: 10px;
  margin-bottom: 32px;
  padding: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-sizing: border-box;
  @media screen and (max-width: 767px) {
    margin: 0 10px 32px;
    width: calc(100% - 20px);
  }
  .blog_author_desc{
    color: #000;
  }
}
.pager{
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 100px;
  position: relative;
  @media screen and (max-width: 767px) {
    padding: 0 0 40px;
    margin-top: 118px;
  }
  a,
  .current,
  .dots{
    display: block;
    border: 1px solid #0050A0;
    padding: 8px 20px;
    font-size: 20px;
    background: #fff;
    color: #000;
    font-family: Montserrat;
    border-radius: 5px;
  }
  .current{
    color: #fff;
    background: #0050A0;
  }
  .dots{
    background: transparent;
    border: none;
    padding: 8px 4px;
  }
  @media screen and (max-width: 767px) {
    .next,
    .prev{
      position: absolute;
      top: -58px;
    }
    .next{
      right: 10px;
    }
    .prev{
      left: 10px;
    }
  }
}


/* plug-in 改変 toc */
.toc_admin{
  background: #EEEEEE;
  color: #0050A0;
  font-size: 16px;
  padding: 20px;
  border-radius: 10px;
  &::before{
    display: inline-block;
    content: "";
    width: 1em;
    aspect-ratio: 1 / 1;
    background: url(/blog/wp-content/themes/theme_202508/image/icon-toc-bg.svg) no-repeat 50% 50%;
    background-size: contain;
    margin-right: 10px;
    transform: rotate(0);
    transition: all .4s;
  }
}
#toc_container{
  padding: 20px 20px 24px!important;
  border: none!important;
  border-top: 2px solid #0050A0!important;
  font-size: 16px!important;
  background: #eee!important;
  li{
    margin-top: 4px!important;
    a{
      color: #0050A0!important;
    }
  }
  .toc_list{
    margin-left: 20px!important;
    li{
      list-style: decimal!important;
    }
    ul li{
      list-style: circle!important;
      margin-left: .5em!important;
      ul li{
        list-style: disc!important;
      }
    }
  }
}
.single-article .toc_admin{
  margin-bottom: 24px;
  @media screen and (max-width: 767px) {
    font-size: 14px!important;
  }
  &.acc-act{
    margin-bottom: 0;
    border-radius: 10px 10px 0 0;
    &::before{
      transform: rotate(180deg);
    }
  }
}
.single-article #toc_container{
  display: none;
  margin-bottom: 24px;
  li{
    font-size: 14px!important;
  }
}
.single-article .blog_author{
  @media screen and (max-width: 767px) {
    padding: 24px 10px;
    width: calc(100% - 20px);
    margin: 40px auto 0;
    .blog_author-top{
      display: flex;
      justify-content: flex-start;
      align-items: center;
      flex-wrap: nowrap;
    }
    .blog_author_title{
      margin-bottom: 0;
      font-size: 14px;
    }
    .blog_author_name{
      font-size: 16px;
    }
    .blog_author_desc{
      font-size: 14px;
    }
  }
}

/* // その他元仕様引き継ぎ関連 */
.blog-modal-container {
  display: none;
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 1001;
}
.blog-modal-container-bg {
  background-color: rgba(0,0,0,0.8);
  position: absolute;
  width: 100%;
  height: 100vh;
}
.blog-modal-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(1.2);
}
.blog-modal-close-area {
  font-weight: bold;
  position: absolute;
  top: -10px;
  right: 0;
  width: 100%;
  text-align: right;
  padding: 10px 14px 0 0;
  box-sizing: border-box;
}
.blog-modal-close-btn {
  color: #fff;
}
.blog-modal-close-btn {
  display: inline-block;
  cursor: pointer;
}
.blog-modal-box {
  width: 100%;
  display: block;
  margin-top: 34px;
}
@media screen and (max-width: 720px) {
  .blog-modal-content {
    transform: translate(-50%,-50%) scale(1.7);
  }
  .blog-modal-close-area {
    font-size: 12px;
    padding: 0 2px 0 0;
  }
  .blog-modal-box {
    margin-top: 16px;
  }
}

.blog_author {
  padding: 28px 30px 30px;
  background: #f5f4f4;
  width: 100%;
  max-width: 740px;
  box-sizing: border-box;
  margin: 60px auto 0;
  border-radius: 20px;
  @media screen and (max-width: 767px) {
    padding: 18px 20px 20px;
  }
}
.blog_author-top{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}
.blog_author_title {
  width: 170px;
  margin-bottom: 4px;
  color: #000;
  font-size: 16px;
  letter-spacing: .03em;
  @media screen and (max-width: 767px) {
    width: 170px;
    margin: 0 calc(100% - 140px) 14px -20px;
    padding: 1px 0 3px 20px;
  }
}
.blog_author_image {
  width: 81px;
  margin-top: 8px;
  @media screen and (max-width: 767px) {
    width: 81px;
    margin: 8px auto 0;
  }
  img{
    max-width: 100%;
  }
}
.blog_author_detail {
  @media screen and (max-width: 767px) {
    width: 100%;
    margin-top: 10px;
    padding-left: 0;
  }
}
.blog_author_name {
  color: #0050a0;
  font-weight: bold;
  font-size: 20px;
}
.blog_author_desc {
  margin-top: 4px;
  font-size: 18px;
}
.blog_author_button {
  display: block;
  width: 100%;
  max-width: 304px;
  box-sizing: border-box;
  margin: 17px auto 0;
  padding: 8px 10px;
  border-radius: 18px;
  background: #0250a0;
  transform: translate3d(0, 0, 0);
  box-shadow: 0 3px 0 0 #03367f;
  color: #fff !important;
  font-weight: bold;
  text-align: center;
  letter-spacing: .03em;
  text-decoration: none !important;
  transition: transform 0.15s linear, box-shadow 0.15s linear;
  &:hover{
    transform: translate3d(0, 3px, 0);
    box-shadow: 0 0 0 0 #03367f;
  }
}

.blog_banner_service {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 32px auto 0;
  width: 100%;
  max-width: 740px;
}
.blog_banner_service a {
  width: 100%;
  -webkit-transition: -webkit-transform 0.15s linear, box-shadow 0.15s linear;
  -moz-transition: -moz-transform 0.15s linear, box-shadow 0.15s linear;
  -o-transition: -o-transform 0.15s linear, box-shadow 0.15s linear;
  -ms-transition: -ms-transform 0.15s linear, box-shadow 0.15s linear;
  transition: transform 0.15s linear, box-shadow 0.15s linear;
  -webkit-transition: transform 0.15s linear, box-shadow 0.15s linear;
  -moz-transition: transform 0.15s linear, box-shadow 0.15s linear;
  -ms-transition: transform 0.15s linear, box-shadow 0.15s linear;
}
.blog_banner_service a.blog_banner_service_two {
  width: calc(50% - 12px);
}
.blog_banner_service a:hover {
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -o-transform: scale(1.02);
  -ms-transform: scale(1.02);
  transform: scale(1.02);
  -webkit-transform: scale(1.02);
  -moz-transform: scale(1.02);
  -ms-transform: scale(1.02);
  -webkit-box-shadow: 0 0 20px 4px #d8e0e3;
  box-shadow: 0 0 20px 4px #d8e0e3;
}
.blog_banner_service img {
  display: block;
}
@media screen and (max-width: 767px) {
  .blog_banner_service {
    gap: 20px;
    margin: 20px 10px 0;
    width: calc(100% - 20px);
  }
  .blog_banner_service a.blog_banner_service_two {
    width: 100%;
  }
}

.post-gutenberg .toc_admin{
  display: block;
}
.post-gutenberg #toc_container{
  margin-top: 0;
}
.wp-block-post-content, .post-gutenberg{
  padding-bottom: 0;
}