@charset "UTF-8";

/*===============================

	コラムページ

================================*/
/* 見出し =====================*/
.entry-content h2 {
  background-color: #16374a;
  color: white;
  padding: 12px 15px;
  position: relative;
}

.entry-content h2::before,
.entry-content h2::after {
  background-color: #16374a;
  content: "";
  display: block;
  height: 1px;
  width: 100%;
  position: absolute;
  left: 0;
}

.entry-content h2::before{
  top: -3px;
}

.entry-content h2::after {
  bottom: -3px;
}

.entry-content h3 {
  border-bottom: 1px #111 solid;
  padding-bottom: 8px;
}

.entry-content h4 {
  border-bottom: none;
  border-left: 2px #16374a solid;
  padding-left: 10px;
}

.entry-content h5 {
  border-bottom: none;
  font-size: 1.25rem;
}

/* リスト =====================*/
.entry-content ol,
.entry-content ol ol,
.entry-content ol ul,
.entry-content .is-style-list-01 ol,
.entry-content .is-style-list-01 ul {
  list-style: decimal;
}

.entry-content .is-style-list-02,
.entry-content .is-style-list-02 ol,
.entry-content .is-style-list-02 ul {
  counter-reset: li;
  list-style: none;
  margin: 0;
}

.entry-content .is-style-list-02 li,
.entry-content .is-style-list-02 ol li,
.entry-content .is-style-list-02 ul li {
  padding-left: 32px;
  position: relative;
}

.entry-content .is-style-list-02 li::before {
  background-color: #16374a;
  border-radius: 100vw;
  box-sizing: content-box;
  color: #fff;
  content: counter(li);
  counter-increment: li;
  display: block;
  height: 1.8em;
  line-height: 1.8;
  padding: 0;
  text-align: center;
  width: 1.8em;
  position: absolute;
  top: -.15em;
  left: 1px;
  transform: scale(.75);
  transform-origin: 0 50%;
}

.entry-content .is-style-list-02 ol li::before,
.entry-content .is-style-list-02 ul li::before {
  background-color: white;
  border: 1px #16374a solid;
  color: #16374a;
}


/* 目次リスト =====================*/
.entry-content #toc_container {
  background: hsla(0,0%,78%,.15);
  background: linear-gradient(-45deg,transparent 25%,hsla(0,0%,78%,.15) 25%,hsla(0,0%,78%,.15) 50%,transparent 50%,transparent 75%,hsla(0,0%,78%,.15) 75%,hsla(0,0%,78%,.15));
  background-clip: padding-box;
  background-size: 4px 4px;
  border: none;
  border-bottom: 4px double hsla(0,0%,78%,.5);
  border-top: 4px double hsla(0,0%,78%,.5);
  padding: 34px;
  width: 100%;
  max-width: 100%;
  position: relative;
}

.entry-content #toc_container::before {
  background: #F9F9F9;
  background: linear-gradient(0deg, rgba(249, 249, 249, 1) 50%, rgba(255, 255, 255, 0) 100%);
  content: "";
  height: 4em;
  left: 0;
  pointer-events: none;
  width: 100%;
  position: absolute;
  bottom: 5em;
  opacity: .75;
  z-index: 1
}

.entry-content #toc_container::after {
  background: #f9f9f9;
  bottom: 0;
  content: "";
  height: 5em;
  left: 0;
  opacity: .75;
  position: absolute;
  width: 100%;
  z-index: 1;
}

.entry-content #toc_container.is_open::before,
.entry-content #toc_container.is_open::after,
.entry-content #toc_container.bg_none::before,
.entry-content #toc_container.bg_none::after {
  background: none;
}

.entry-content #toc_container a {
  color: #111;
}

.entry-content #toc_container .toc_list {
  counter-reset: none;
  list-style: none;
  border: none;
}

.entry-content #toc_container .toc_list ul {
  margin-left: 10px;
}

.entry-content #toc_container .toc_list li,
.entry-content #toc_container .toc_list li li  {
  list-style: none;
  padding-left: 1.25em;
  position: relative;
}

.entry-content #toc_container .toc_list li::before{
  background-color: #111;
  border-radius: 100%;
  content: "";
  display: block;
  height: 6px;
  width: 6px;
  position: absolute;
  top: 10px;
  left: 2px;
}

.entry-content #toc_container .toc_list li + li {
  margin-top: 6px;
}

.entry-content #toc_container .toc_list li a {
  display: inline-block;
  position: relative;
}

.entry-content #toc_container .toc_list li li::before {
  background: none;
  border-bottom: 2px solid;
  border-left: 2px solid;
  border-radius: 0;
  box-shadow: none;
  content: "";
  height: 15px;
  width: 8px;
  position: absolute;
  top: 2px;
  left: .25em;
  transform: none;
  transform: scale(.75);
  transform-origin: 50% 100%;
  opacity: .75;
}

.entry-content #toc_container .toc_list li.hidden-items {
  display: none;
}

.entry-content #toc_container .toc_title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  font-size: 20px;
  margin-bottom: 16px;
  position: relative;
}

.entry-content #toc_container .toc_title::before {
  background: url(../images/icon_list.svg) no-repeat center center;
  background-size: 100% auto;
  content: "";
  display: block;
  height: 12px;
  width: 20px;
}

.entry-content #toc_container .toc_container_expandBtn {
  background-color: #f7f7f7;
  border: rgba(0,0,0,.2);
  border-radius: 5em;
  box-shadow: 0 0 0 1px #bbb;
  color: #333;
  display: block;
  font-size: 14px;
  line-height: 1.5;
  margin: .75em auto 0;
  min-width: 100px;
  padding: .5em 1em;
  position: relative;
  transition: .25s ease-in-out;
  z-index: 2
}

.entry-content #toc_container .toc_container_expandBtn::before,
.entry-content #toc_container .toc_container_expandBtn::after {
  border-top-color: inherit;
  border-top-style: dotted;
  border-top-width: 3px;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: calc(50% - 1px);
  transition: border-color .25s;
  width: 100%;
  width: 22px
}

.entry-content #toc_container .toc_container_expandBtn::before {
  right: calc(100% + 1em)
}

.entry-content #toc_container .toc_container_expandBtn::after {
  left: calc(100% + 1em)
}

.entry-content #toc_container .toc_container_expandBtn:hover {
  box-shadow: 0 0 0 1px #111, 0 0 0 2px #111;
}

/* テーブル =====================*/
.entry-content table {
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 1.6;
  text-align: left;
  max-width: 100%;
  width: 100%;
}

.entry-content table th,
.entry-content table td {
  background-clip: padding-box;
}

.entry-content table thead th,
.entry-content table thead td {
  background-color: #16374a;
  border-color: #dcdcdc;
  color: white;
}

.entry-content table tbody td {
  border-color: #dcdcdc;
}

/* ボタン =====================*/
/*
#styleguide

```
<div class="is-style-btn01">
  <a class="">ボタンスタイル01</a>
</div>
```
*/

.entry-content [class^="is-style-btn"],
.entry-content [class^="is-style-btn"] > div {
  text-align: center;
}

.entry-content [class^="is-style-btn"] a,
.entry-content [class^="is-style-btn"] a div {
  border-radius: 100vw;
  transition: .4 ease-in-out;
}

.entry-content .is-style-btn01 a,
.entry-content .is-style-btn01 > div {
  background-color: white;
  border: 1px #0095ff solid;
  color: #0095ff;
}

.entry-content .is-style-btn01 a:hover {
  background-color: #0095ff;
  color: white;
}

.entry-content .is-style-btn02 a,
.entry-content .is-style-btn02 > div {
  background-color: #00c6ad;
  box-shadow: 0 4px 0 rgba(0, 149, 130, 1);
  color: white;
  font-weight: 700;
  transform: .3s, box-shadow .3s;
}

.entry-content .is-style-btn02 a:hover {
  box-shadow: 0 0 0 transparent !important;
  color: white;
  transform: translate3d(0,4px,0);
}

.entry-content .is-style-btn03 a,
.entry-content .is-style-btn03 > div {
  background: linear-gradient(100deg, #f74a4a 0%, #ffbc49 100%);
  box-shadow: 0 2px 2px rgba(0, 0, 0, .1), 0 4px 8px -4px rgba(0, 0, 0, .2);
  color: #fff;
  font-weight: 700;
  transition: box-shadow .25s;
}

.entry-content .is-style-btn03 a:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,.1),0 12px 24px -12px rgba(0,0,0,.2);
  color: white;
  opacity: 1
}

/* 下線 =====================*/
.entry-content [class^="is-style-marker-0"] {
  background-image: none;
}

.entry-content .is-style-marker-01 {
  background: repeating-linear-gradient(-45deg, #ffddbc,#ffddbc 2px,transparent 2px,transparent 4px) no-repeat 0 .8em;
}

.entry-content .is-style-marker-02 {
  background: repeating-linear-gradient(-45deg, #fcf69f,#fcf69f 2px,transparent 2px,transparent 4px) no-repeat 0 .8em;
}

.entry-content .is-style-marker-03 {
  background: repeating-linear-gradient(-45deg, #bdf9c3,#bdf9c3 2px,transparent 2px,transparent 4px) no-repeat 0 .8em;
}

.entry-content .is-style-marker-04 {
  background: repeating-linear-gradient(-45deg, #b7e3ff,#b7e3ff 2px,transparent 2px,transparent 4px) no-repeat 0 .8em;
}

/* 枠線付きボックス =====================*/
.entry-content .is-style-border-box {
  border: 1px #16374a solid;
  padding: 24px;
}

.entry-content .is-style-gray-box {
  background-color: #f0f2f3;
  padding: 24px;
}

/* アイコン付きボックス1 =====================*/
.entry-content .is-style-good-box,
.entry-content .is-style-bad-box,
.entry-content .is-style-info-box,
.entry-content .is-style-announce-box {
  padding: 16px;
  padding-left: 68px;
  position: relative;
}

.entry-content .is-style-good-box::before,
.entry-content .is-style-good-box::after,
.entry-content .is-style-bad-box::before,
.entry-content .is-style-bad-box::after,
.entry-content .is-style-info-box::before,
.entry-content .is-style-info-box::after,
.entry-content .is-style-announce-box::before,
.entry-content .is-style-announce-box::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 20px;
}

.entry-content .is-style-good-box::before,
.entry-content .is-style-bad-box::before,
.entry-content .is-style-info-box::before,
.entry-content .is-style-announce-box::before {
  height: 20px;
  width: 20px;
  transform: translateY(-50%) scale(1.5);
}

.entry-content .is-style-good-box::after,
.entry-content .is-style-bad-box::after,
.entry-content .is-style-info-box::after,
.entry-content .is-style-announce-box::after {
  border-right: 1px solid;
  height: 50%;
  width: 0;
  position: absolute;
  top: 25%;
  left: 3.25em;
  opacity: .4;
}

.entry-content .is-style-good-box {
  background-color: #ecffe9;
}

.entry-content .is-style-good-box::after {
  border-color: #3cd250;
}

.entry-content .is-style-good-box::before {
  background: url(../images/icon_good.svg) no-repeat center center;
  background-size: 100% auto;
}

.entry-content .is-style-bad-box {
  background-color: #eafaff;
}

.entry-content .is-style-bad-box::after {
  border-color: #4b73eb;
}

.entry-content .is-style-bad-box::before {
  background: url(../images/icon_bad.svg) no-repeat center center;
  background-size: 100% auto;
}

.entry-content .is-style-info-box {
  background-color: #fff0fa;
}

.entry-content .is-style-info-box::after {
  border-color: #f578b4;
}

.entry-content .is-style-info-box::before {
  background: url(../images/icon_info.svg) no-repeat center center;
  background-size: 100% auto;
}

.entry-content .is-style-announce-box {
  background-color: #fff5f0;
}

.entry-content .is-style-announce-box::after {
  border-color: #ffa537;
}

.entry-content .is-style-announce-box::before {
  background: url(../images/icon_announce.svg) no-repeat center center;
  background-size: 100% auto;
}

/* アイコン付きボックス2 =====================*/
.entry-content .is-style-point-box,
.entry-content .is-style-check-box,
.entry-content .is-style-badmark-box,
.entry-content .is-style-question-box,
.entry-content .is-style-alert-box {
  border: 2px solid;
  padding: 40px 32px 32px;
  margin: 40px 0 32px;
  position: relative;
}

.entry-content .is-style-point-box::before,
.entry-content .is-style-check-box::before,
.entry-content .is-style-badmark-box::before,
.entry-content .is-style-question-box::before,
.entry-content .is-style-alert-box::before {
  border-radius: 100%;
  content: "";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  line-height: 1;
  padding: 0;
  position: absolute;
  top: -1px;
  left: 16px;
  transform: translateY(-50%);
}

.entry-content .is-style-point-box {
  border-color: #ffa639;
}

.entry-content .is-style-point-box::before {
  background: url(../images/icon_light.svg) no-repeat center center;
  background-size: 100% auto;
}

.entry-content .is-style-check-box {
  border-color: #86d67c;
}

.entry-content .is-style-check-box::before {
  background: url(../images/icon_checkmark.svg) no-repeat center center;
  background-size: 100% auto;
}

.entry-content .is-style-badmark-box {
  border-color: #f36060;
}

.entry-content .is-style-badmark-box::before {
  background: url(../images/icon_crossmark.svg) no-repeat center center;
  background-size: 100% auto;
}

.entry-content .is-style-question-box {
  border-color: #5295cc;
}

.entry-content .is-style-question-box::before {
  background: url(../images/icon_question.svg) no-repeat center center;
  background-size: 100% auto;
}

.entry-content .is-style-alert-box {
  border-color: #f7da38;
}

.entry-content .is-style-alert-box::before {
  background: url(../images/icon_caution.svg) no-repeat center center;
  background-size: 100% auto;
}

/* FAQスタイル =====================*/
.entry-content .bl_qanda .bl_qanda_ttl {
  background-color: #f0f2f3;
  padding: 16px;
  padding-left: 56px;
  position: relative;
}

.entry-content .bl_qanda .bl_qanda_ttl::before {
  background-color: #16374a;
  border-radius: 100vw;
  color: white;
  content: "Q";
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-weight: 700;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 16px;
  left: 16px;
}

.entry-content .bl_qanda .bl_qanda_ttl p,
.entry-content .bl_qanda .bl_qanda_body p {
  margin-bottom: 0;
}

.entry-content .bl_qanda .bl_qanda_body {
  padding: 16px;
  padding-left: 56px;
  margin: 0 0 16px 0;
  position: relative;
}

.entry-content .bl_qanda .bl_qanda_body::before {
  background-color: white;
  border: 1px #16374a solid;
  border-radius: 100vw;
  color: #16374a;
  content: "A";
  display: inline-flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  font-weight: 700;
  height: 30px;
  width: 30px;
  position: absolute;
  top: 16px;
  left: 16px;
}

/* キャプション付きブロック =====================*/
.entry-content .cap_block {
  border: 1px #444 solid;
  margin-bottom: 32px;
}
.entry-content .cap_block .cap_block_ttl {
  background-color: #444;
  color: white;
  text-align: center;
  padding: 8px;
}

.entry-content .cap_block .cap_block_body {
  padding: 24px;
  text-align: center;
}

.entry-content .cap_block .cap_block_ttl P,
.entry-content .cap_block .cap_block_body p {
  margin-bottom: 0;
}

.entry-content .cap_block.-orange {
  border: 1px #f59b5f solid;
}
.entry-content .cap_block.-orange .cap_block_ttl {
  background-color: #f59b5f;
}

.entry-content .cap_block.-orange .cap_block_body {
  background-color: #fffdf9;
}

.entry-content .cap_block.-blue {
  border: 1px #5fb9f5 solid;
}
.entry-content .cap_block.-blue .cap_block_ttl {
  background-color: #5fb9f5;
}

.entry-content .cap_block.-blue .cap_block_body {
  background-color: #edf5ff;
}

.entry-content .cap_block.-green {
  border: 1px #2fcd90 solid;
}
.entry-content .cap_block.-green .cap_block_ttl {
  background-color: #2fcd90;
}

.entry-content .cap_block.-green .cap_block_body {
  background-color: #eafaf2;
}

/* 関連記事ブロック =====================*/
.entry-content .block-postLink {
  position: relative;
}

.entry-content .p-blogCard {
  border: 1px #04384c solid;
  color: #444;
  display: block;
  margin-top: 10px;
  padding: 24px;
  text-decoration: none;
  transition: .3s ease-in-out;
}

.entry-content .p-blogCard:hover {
  box-shadow: 0 4px 16px rgba(0,0,0,.1),0 12px 28px -12px rgba(0,0,0,.05);
}

.entry-content .p-blogCard__inner {
  display: flex;
  gap: 10px 20px;
  position: relative;
}

.entry-content .p-blogCard__caption {
  background-color: white;
  font-size: 12px;
  padding: 0 8px;
  padding-left: 20px;
  position: absolute;
  top: -36px;
  left: 0;
}

.entry-content .p-blogCard__caption::before {
  background: url(../images/icon_arrow_black.svg) no-repeat center;
  background-size: 100% auto;
  content: "";
  display: block;
  height: 7px;
  width: 10px;
  position: absolute;
  top: 6px;
  left: 6px;
}

.entry-content .c-postThumb__figure,
.entry-content .p-blogCard__body {
  max-width: 100%;
}

.entry-content .p-blogCard__thumb {
  width: 30%;
  position: relative;
  overflow: hidden;
}

.entry-content .c-postThumb__figure {
  position: relative;
}

.entry-content .p-blogCard__thumb img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.entry-content .p-blogCard__body {
  display: flex;
  flex-direction: column;
  gap: 10px 0;
  width: calc(70% - 20px);
}

.entry-content .p-blogCard__title,
.entry-content .p-blogCard__excerpt {
  margin-bottom: 0;
}

.entry-content .p-blogCard__title {
  font-size: 18px;
  line-height: normal;
}

.entry-content .p-blogCard__excerpt {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .entry-content .is-style-border-box,
  .entry-content .is-style-gray-box {
    padding: 20px 16px;
  }
  .entry-content .is-style-good-box::before,
  .entry-content .is-style-bad-box::before,
  .entry-content .is-style-info-box::before,
  .entry-content .is-style-announce-box::before {
    left: 16px;
  }
  .entry-content .is-style-point-box,
  .entry-content .is-style-check-box,
  .entry-content .is-style-badmark-box,
  .entry-content .is-style-question-box,
  .entry-content .is-style-alert-box {
    padding: 20px 16px 16px;
  }
  .entry-content .is-style-point-box::before,
  .entry-content .is-style-check-box::before,
  .entry-content .is-style-badmark-box::before,
  .entry-content .is-style-question-box::before,
  .entry-content .is-style-alert-box::before {
    width: 36px;
    height: 36px;
  }
  .entry-content .p-blogCard {
    padding: 24px 16px;
  }
  .entry-content .p-blogCard__caption {
    left: -4px;
  }
  .entry-content .p-blogCard__inner {
    flex-wrap: wrap;
  }
  .entry-content .p-blogCard__thumb,
  .entry-content .p-blogCard__body {
    width: 100%;
  }
  .entry-content .p-blogCard__title {
    font-size: 16px;
  }
  .entry-content #toc_container {
    padding: 20px 12px;
  }
  .entry-content #toc_container .toc_list li li::before {
    height: 12px;
  }
  .entry-content #toc_container .toc_title {
    font-size: 18px;
    gap: 0 6px;
    margin-bottom: 10px;
  }
}
