@charset "UTF-8";
/* ================================================== *
 *
 *    Entry
 *
 * ================================================== */
.c-entry {
  --color-main: #2a7ad1;
  --color-sub: #82b2e6;
  --color-white: #fff;
  --color-gray: #999;
  --color-bg: #fffbf2;
  --color-subbg: #f8fbff;
  --color-th: #f0f0f0;
  --color_mark_blue: #b7e3ff;
  --color_mark_green: #bdf9c3;
  --color_mark_yellow: #fff7c7;
  --color_mark_orange: #ffddbc;
  --color_red: #e31c3d;
  --color_blue: #0078c8;
  --color_deep01: #b50005;
  --color_deep02: #3d79d5;
  --color_deep03: #63a84d;
  --color_deep04: #f09f4d;
  --fontsize-content: 16px;
  --block-margin: 2em;
}
/* ================================================== *
 *
 *    Base
 *
 * ================================================== */
.c-entry a {
  color: var(--color_blue);
  transition: opacity 0.25s;
  text-decoration: underline;
}
@media screen and (min-width: 1025px) {
  .c-entry a:hover {
    opacity: 0.5;
  }
}
/* ------------------------------------------------- *
 *    post_content
 * ------------------------------------------------- */
.c-entry .post_content {
  font-size: var(--fontsize-content,16px);
}
.c-entry > .post_content {
  margin: 2em 0;
  padding-bottom: 3em;
  border-bottom: 1px solid #ccc;
}
.c-entry .post_content > * {
  clear: both;
  margin-bottom: var(--block-margin,2em);
}
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
}
/* h2 */
.c-entry .post_content h2 {
  margin: 60px 0 28px;
  padding: 7px 0 7px 20px;
  border-left: solid 4px var(--color-main);
  font-size: 2.6rem;
}
@media screen and (max-width: 767px) {
  .c-entry .post_content h2 {
    font-size: 2.2rem;
  }
}
/* h3 */
.c-entry .post_content h3 {
  position: relative;
  margin: 91px 0 25px;
  padding: 5px 0 5px 16px;
  border-left: solid 4px var(--color-main);
  font-size: 2rem;
  font-weight: 700;
}
.c-entry .post_content h3::before {
  content: "";
  position: absolute;
  top: -21px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #ccc;
}
@media screen and (max-width: 767px) {
  .c-entry .post_content h3 {
    margin-bottom: 15px;
    font-size: 1.6rem;
  }
}
/* h4 */
.c-entry .post_content h4 {
  margin: 0 0 20px;
  padding: 20px;
  border: none;
  background: #fffbf2;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-entry .post_content h4 {
    margin-bottom: 15px;
    padding: 15px 15px;
    font-size: 1.6rem;
  }
}
/* p */
.c-entry .post_content p {
  line-height: 1.8;
}
.c-entry .post_content p.is-style-balloon_box2 {
  margin: 0 0 20px;
  padding: 20px;
  border: none;
  background: #fffbf2;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-entry .post_content p.is-style-balloon_box2 {
    margin-bottom: 15px;
    padding: 15px 15px;
    font-size: 1.8rem;
  }
}
/* ul */
.c-entry .post_content ul {
  list-style-type: none;
  margin: 0 0 1em;
  padding-left: 0;
}
.c-entry .post_content ul > li {
  position: relative;
  margin-bottom: 0.8em;
  padding: 0 0 0 20px;
}
.c-entry .post_content ul > li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  background: var(--color-main);
}
.c-entry .post_content ul.is-noicon > li {
  padding-left: 0;
}
.c-entry .post_content ul.is-noicon > li::before {
  display: none;
}
.c-entry .post_content ul.is-noicon > li {
  padding-left: 0;
}

.c-entry .post_content ul.is-bold,
.c-entry .post_content ol.is-bold {
  font-weight: 700;
}
.c-entry .post_content ul.is-col3 {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.c-entry .post_content ul.is-col3 > li {
  position: relative;
  margin-bottom: 1em;
  padding: 0 5px 0 5px;
}
@media screen and (min-width: 768px) {
  .c-entry .post_content ul.is-col3 > li {
    width: 33.33%;
  }
}
@media screen and (max-width: 767px) {
  .c-entry .post_content ul.is-col3 > li {
    width: 50%;
  }
}
.c-entry .post_content ul.is-style-good_list > li,
.c-entry .post_content ul.is-style-bad_list > li {
  padding-left: 35px;
}
.c-entry .post_content ul.is-style-good_list > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  box-sizing: border-box;
  width: 24px;
  height: 24px;
  border: 3px solid #cc1938;
  border-radius: 24px;
  background: transparent;
}
.c-entry .post_content ul.is-style-bad_list > li::before,
.c-entry .post_content ul.is-style-bad_list > li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 10px;
  box-sizing: border-box;
  width: 3px;
  height: 24px;
  background: #cc1938;
}
.c-entry .post_content ul.is-style-bad_list > li::before {
  transform: rotate(45deg);
}
.c-entry .post_content ul.is-style-bad_list > li::after {
  transform: rotate(-45deg);
}
.c-entry .post_content ul.is-style-type1 > li {
  padding-left: 0;
}
.c-entry .post_content ul.is-style-type1 > li::before {
  display: none;
}
.c-entry .post_content ul.is-style-type1 > li > strong:first-child {
  display: inline-block;
  width: 100%;
  margin-top: 1em;
  border-top: 1px solid #ccc;
  padding-top: 15px;
  color: #cca12d;
  font-size: 2rem;
}
.c-entry .post_content ul.is-style-type1 > li:first-child > strong:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.c-entry .post_content ul.is-style-type2 > li {
  display: flex;
  padding-left: 0;
  font-weight: 700;
}
.c-entry .post_content ul.is-style-type2 > li::before {
  display: none;
}
.c-entry .post_content ul.is-style-type2 > li > i:first-child {
  flex: 0 0 auto;
  color: var(--color-main);
  margin-right: 0.5em;

}
@media screen and (max-width: 767px) {
  .c-entry .post_content ul.is-style-type1 > li > strong:first-child {
    font-size: 1.8rem;
  }
}
/* ol */
.c-entry .post_content ol {
  counter-reset: item;
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0 -5px 1em;
  padding-left: 0;
}
.c-entry .post_content ol > li {
  position: relative;
  margin-bottom: 1em;
  padding: 0 5px 0 32px;
}
.c-entry .post_content ol > li::before {
  counter-increment: item;
  content: counter(item);
  position: absolute;
  top: 2px;
  left: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  background: var(--color-main);
  color: var(--color-white);
  font-size: 1.2rem;
  font-family: arial, sans-serif;
  font-weight: 700;
}
.c-entry .post_content ol.is-noflex {
  display: block;
}
@media screen and (min-width: 768px) {
  .c-entry .post_content ol > li {
    width: 33.33%;
  }
  .c-entry .post_content ol.is-noflex > li {
    width: auto;
  }
}
@media screen and (max-width: 767px) {
  .c-entry .post_content ol > li {
    width: 50%;
  }
  .c-entry .post_content ol.is-noflex > li {
    width: auto;
  }
}

.c-entry .post_content ul.is-noicon>li span.is-link {
  color: var(--color_blue);
  transition: opacity 0.25s;
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .c-entry .post_content ul.is-noicon>li span.is-link:hover {
    opacity: 0.5;
  }
}

/* table */
.c-entry .post_content table {
  border: none;
  border-spacing: 0;
  line-height: 1.5;
  max-width: 100%;
  text-align: left;
  width: 100%;
}
.c-entry .post_content table img {
  border-style: none;
  height: auto;
  max-width: 100%;
}
.c-entry .post_content caption {
  padding: 5px 20px;
  background: var(--color-main);
  color: var(--color-white);
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
}
.c-entry .post_content td,
.c-entry .post_content th {
  background-clip: padding-box;
  border: 1px solid #ccc;
  border-bottom: none;
  border-right: none;
  padding: 0.75em 0.75em;
  vertical-align: middle;
}
.c-entry .post_content td:last-child,
.c-entry .post_content th:last-child {
  border-right: 1px solid #ccc;
}
.c-entry .post_content tr:last-child > th,
.c-entry .post_content tr:last-child > td {
  border-bottom: 1px solid #ccc;
}
.c-entry .post_content .td_to_th_ tbody tr > :first-child,
.c-entry .post_content .td_to_th_.is-col2 tbody tr > :nth-child(3),
.c-entry .post_content tbody th {
  font-weight: 700;
  position: relative;
  z-index: 0;
}
.c-entry .post_content .td_to_th_ tbody tr > :first-child:before,
.c-entry .post_content .td_to_th_.is-col2 tbody tr > :nth-child(3):before,
.c-entry .post_content tbody th:before {
  background-color: var(--color-th);
  content: "";
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.c-entry .post_content thead td,
.c-entry .post_content thead th {
  background-color: var(--color-subbg);
  font-size: 1.4rem;
}
.c-entry .post_content thead tr:last-child > td,
.c-entry .post_content thead tr:last-child > th {
  border-top: 2px solid var(--color-main);
}
.c-entry .post_content [data-cell1-fixed] tr > :first-child {
  left: 0;
  position: sticky!important;
  top: 0;
  z-index: 3;
}
.c-entry .post_content [data-table-scrollable=both] {
  overflow-x: scroll;
  display: block;
  max-width: 100%;
  width: 100%;
  padding-bottom: 16px;
}
.c-entry .post_content [data-table-scrollable] table {
  border-collapse: separate;
  max-width: var(--table-width,100%)!important;
  min-width: 100%;
  width: var(--table-width,100%)!important;
}
@media screen and (min-width: 768px) {
  .c-entry .post_content [data-table-scrollable] table.is-w1300pc {
    --table-width: 1300px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry .post_content caption {
    text-align: left;
  }
  .c-entry .post_content [data-table-scrollable] table.is-w900sp {
    --table-width: 1000px;
  }
}
/* marker */
.c-entry .swl-marker {
  display: inline;
  padding: 2px;
}
.c-entry .mark_yellow {
  background: linear-gradient(transparent 50%,var(--color_mark_yellow) 0%)
}
/* color */
.c-entry .has-swl-deep-01-color {
  color: var(--color_deep01)!important
}
/* align */
.c-entry .has-text-align-center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-entry .c-grid_unit + .c-grid_unit > .wp-block-table:first-child {
    margin-top: -1px;

  }
}

/* ------------------------------------------------- *
 *    cap_box
 * ------------------------------------------------- */
.c-entry .cap_box {
  --color-main: #cca12d;
  --color-bg: #fffbf2;
}
.c-entry .cap_box_ttl {
  position: relative;
  padding: 7px 20px 7px 60px;
  background: var(--color-main);
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.8rem;
}
.c-entry .cap_box_ttl::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 29px;
  height: 20px;
  background: url(../images/icn_check01w.png) no-repeat 0 0;
  background-size: contain;
  margin: auto;
}
.c-entry .cap_box_ttl.is-crown::before {
  width: 28px;
  height: 19px;
  background-image: url(../images/icn_crown01w.png);
}
.c-entry .cap_box_content {
  position: relative;
  border: 1px solid var(--color-main);
  background-color: var(--color-bg);
}
.c-entry .cap_box_content *:last-child {
  margin-bottom: 0;
}
/* is-type1 */
.c-entry .cap_box.is-type1 {
  --color-main: var(--color-sub);
  --color-bg: #f8fbff;
}
.c-entry .cap_box.is-type1 .cap_box_ttl {
  padding-left: 20px;
}
.c-entry .cap_box.is-type1 .cap_box_ttl::before {
  display: none;
}
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
}
/* is-type2 */
.c-entry .cap_box.is-type2 {
  --color-main: var(--color-sub);
  --color-bg: #f8fbff;
}
@media screen and (min-width: 768px) {
  .c-entry .cap_box_content {
    padding: 25px 19px 24px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry .cap_box_content {
    padding: 20px 14px 19px;
  }
  .c-entry .cap_box_ttl {
    padding-left: 44px;
    font-size: 1.4rem;
  }
  .c-entry .cap_box_ttl::before {
    left: 15px;
    width: 20px;
    height: 16px;
  }
  .c-entry .cap_box_ttl.is-crown::before {
    width: 22px;
    height: 14px;
  }
}
/* is-merit */
/* is-demerit */
.c-entry .cap_box.is-merit {
  --color-main: var(--color-sub);
  --color-bg: #f8fbff;
}
.c-entry .cap_box.is-demerit {
  --color-main: var(--color-gray);
  --color-bg: #f4f4f4;
}
.c-entry .cap_box.is-merit .cap_box_ttl,
.c-entry .cap_box.is-demerit .cap_box_ttl {
  padding-left: 20px;
}
.c-entry .cap_box.is-merit .cap_box_ttl::before,
.c-entry .cap_box.is-demerit .cap_box_ttl::before {
  display: none;
}

/* ------------------------------------------------- *
 *    button
 * ------------------------------------------------- */
.c-entry .swell-block-button {
  margin: 0 0 2em;
}
.c-entry .swell-block-button__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 410px;
  height: 50px;
  margin: 0 auto;
  border-radius: 50px;
  background: var(--color_red);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity .25s;
}
.c-entry .swell-block-button__link::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  display: inline-block;
  width: 28px;
  height: 28px;
  margin: auto;
  border-radius: 28px;
  background: var(--color-white) url(../images/icn_finger04.png) no-repeat 50% 50%;
  background-size: 19px auto;
}
@media screen and (max-width: 767px) {
  .c-entry .swell-block-button__link {
    width: 100%;
    font-size: 1.6rem;
  }
}
/* -size-s */
.c-entry .swell-block-button.-size-s .swell-block-button__link {
  width: 160px;
  height: 40px;
  font-size: 1.4rem;
}
.c-entry .swell-block-button.-size-s .swell-block-button__link::before {
  display: none;
}
/* is-w */
.c-entry .swell-block-button.is-w540 .swell-block-button__link {
  width: 540px;
}
.c-entry .swell-block-button.is-w640 .swell-block-button__link {
  width: 640px;
}
@media screen and (max-width: 767px) {
  .c-entry .swell-block-button.-size-s .swell-block-button__link {
    width: 100%;
  }
  .c-entry .swell-block-button.is-w540 .swell-block-button__link {
    width: 100%;
  }
  .c-entry .swell-block-button.is-w640 .swell-block-button__link {
    width: 100%;
  }
}
/* ------------------------------------------------- *
 *    swell-block-accordion
 * ------------------------------------------------- */
.c-entry .swell-block-accordion {}
.c-entry .swell-block-accordion__item {}
.c-entry .swell-block-accordion__title {
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  margin: 0 auto;
  border: 1px solid var(--color-gray);
  border-radius: 40px;
  background: transparent;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gray);
  text-decoration: none;
  transition: opacity .25s;
  cursor: pointer;
}
.c-entry .swell-block-accordion__icon {
  display: none;
}
.c-entry .swell-block-accordion__body {
  height: auto;
  opacity: 1;
  overflow: hidden;
  padding: 1em 0;
  transition: padding .25s,height .25s,opacity .25s,visibility .25s;
}
.c-entry :not(.is-opened)>.swell-block-accordion__body {
  height: 0!important;
  opacity: 0;
  padding-bottom: 0!important;
  padding-top: 0!important;
}
.c-entry .swell-block-accordion__body > * {
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .c-entry .swell-block-accordion__title {
    width: 280px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry .swell-block-accordion__title {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .c-entry .swell-block-accordion__title:hover {
    opacity: 0.5;
  }
}

/* ------------------------------------------------- *
 *    swell-block-step
 * ------------------------------------------------- */
.swell-block-step {
  --swl-step_arrow_color: #dedede;
  counter-reset: step
}
.swell-block-step__item {
  margin-bottom: 0!important;
  padding: 0 0 3em 60px;
  position: relative
}

.swell-block-step__item:before {
  border-left: 1px dashed #c9c9c9;
  content: "";
  display: block;
  height: 100%;
  left: 23px;
  position: absolute;
  top: 0;
  width: 0
}

.swell-block-step__item:last-child:before {
  content: none
}

.swell-block-step__number {
  box-sizing: content-box;
  color: #fff;
  display: flex;
  flex-direction: column;
  height: 48px;
  justify-content: center;
  left: 0;
  line-height: 1;
  position: absolute;
  text-align: center;
  top: 0;
  width: 48px;
  font-family: 'Anton', Arial, sans-serif;
}

.swell-block-step__number .__label {
  content: attr(data-label);
  display: block;
  font-size: 1.2rem;
  padding-bottom: 3px
}

.swell-block-step__number:after {
  content: counter(step);
  counter-increment: step;
  display: block;
  font-size: 1.8rem;
}

.swell-block-step__number[data-num]:after {
  content: attr(data-num)
}

.swell-block-step__number[data-hide] .__label,.swell-block-step__number[data-hide]:after {
  display: none
}

[data-num-style=circle] .swell-block-step__number,[data-num-style=circle] .swell-block-step__number .__shape {
  border-radius: 50%
}

[data-num-style=horizontal] .swell-block-step__number {
  align-items: flex-end;
  flex-direction: row
}

[data-num-style=horizontal] .swell-block-step__number .__label {
  padding-bottom: 4px;
  padding-right: 4px
}

.swell-block-step__title {
  font-size: 2rem;
  font-weight: 700;
}

.swell-block-step__title+.swell-block-step__body {
  margin-top: 1em
}

.swell-block-step:not(.is-style-big)>.swell-block-step__item:last-child {
  padding-bottom: 0
}

.swell-block-step:not(.is-style-big):not(.is-style-small)>.swell-block-step__item>.swell-block-step__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 48px
}

.is-style-big>.swell-block-step__item {
  border-bottom: 1px dashed var(--swl-step_arrow_color);
  padding: 2em
}

.is-style-big>.swell-block-step__item:first-child {
  border-top: 1px dashed var(--swl-step_arrow_color)
}

.is-style-big>.swell-block-step__item:before {
  border: 12px solid transparent;
  border-top: 12px solid var(--swl-step_arrow_color);
  display: block;
  height: 0;
  left: 50%;
  top: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 0
}

.is-style-big>.swell-block-step__item>.swell-block-step__number {
  border-radius: 0;
  color: inherit;
  height: auto;
  margin: 0 auto 1em;
  position: relative;
  width: auto
}

.is-style-big>.swell-block-step__item>.swell-block-step__number .__label {
  font-size: 12px
}

.is-style-big>.swell-block-step__item>.swell-block-step__number:after {
  font-size: 24px
}

.is-style-big .swell-block-step__title {
  text-align: center
}

.is-style-small .swell-block-step__item {
  padding: 0 0 2em 24px
}

.is-style-small .swell-block-step__item:before {
  border-left: 2px solid var(--color_border);
  height: calc(100% - 20px);
  left: 7px;
  top: 18px
}

.is-style-small .swell-block-step__title {
  margin-top: .25em;
  text-align: left
}

.is-style-small .swell-block-step__body {
  margin-top: .5em
}

.is-style-small .swell-block-step__number {
  align-items: center;
  color: inherit;
  flex-direction: row;
  height: auto;
  justify-content: flex-start;
  margin-left: -24px;
  position: relative;
  width: auto
}

.is-style-small .swell-block-step__number .__shape {
  border: 2px solid;
  box-sizing: border-box;
  height: 16px;
  margin-right: 8px;
  width: 16px
}

.is-style-small .swell-block-step__number .__label {
  font-size: 12px;
  opacity: .8;
  padding: 0 2px 0 0
}

.is-style-small .swell-block-step__number:after {
  font-size: 14px;
  opacity: .8
}

.is-style-small [data-hide]+.swell-block-step__title {
  margin-top: -24px
}
/* ------------------------------------------------- *
 *    wp-block-columns
 * ------------------------------------------------- */
.c-entry .wp-block-columns {}
.c-entry .wp-block-column > * {
  margin-bottom: 2em;
}
/* ------------------------------------------------- *
 *    wp-block-table
 * ------------------------------------------------- */
.c-entry .wp-block-table {
  overflow-x: auto;
  margin-bottom: 2em;
}
.c-entry .wp-block-table > table {
  margin-bottom: 0;
  border-collapse: collapse;
}
.c-entry .wp-block-table .has-fixed-layout {
  table-layout: fixed;
  width: 100%;
}
.c-entry .wp-block-table .has-fixed-layout td,
.c-entry .wp-block-table .has-fixed-layout th {
  word-break: break-word;
}
.c-entry .wp-block-table .swell-block-button {
  margin-bottom: 0;
}
.c-entry .wp-block-table[data-theadfix] {
  max-height: 80vh;
}
.c-entry .wp-block-table[data-theadfix] thead th {
  position: sticky;
  top: 0;
  z-index: 3
}
.c-entry .post_content [data-cell1-fixed] thead tr>th:first-child {
  z-index: 4;
}
/* ------------------------------------------------- *
 *    wp-block-image
 * ------------------------------------------------- */
.c-entry .wp-block-image {
  text-align: center;
}
.c-entry .wp-block-image img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}
.c-entry .wp-block-image.is-hAuto img {
  height: auto!important;
  max-width: 100%;
}
/* ------------------------------------------------- *
 *    wp-block-quote
 * ------------------------------------------------- */
.c-entry .wp-block-quote {
  position: relative;
  padding: 20px 20px 20px 100px;
  background: #f4f4f4;
  color: #666;
  line-height: 1.8;
}
.c-entry .wp-block-quote::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 30px;
  color: #ccc;
  font-size: 10rem;
  font-family: 'Oswald', Arial, sans-serif;
  line-height: 1;
}
.c-entry .wp-block-quote > p::after {
  content: "“";
}
.c-entry .wp-block-quote cite {
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .c-entry .wp-block-quote {
    padding: 15px 15px 15px 50px;
  }
  .c-entry .wp-block-quote::before {
    top: 10px;
    left: 20px;
    font-size: 5rem;
  }
}

/* ------------------------------------------------- *
 *    c-entryquote
 * ------------------------------------------------- */
.c-entry .c-entryquote {
  position: relative;
  padding: 25px 25px 25px 105px;
  background: #f4f4f4;
  color: #666;
}
.c-entry .c-entryquote_head {
  position: absolute;
  left: 25px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .c-entry .c-entryquote {
    position: relative;
    padding: 15px;
  }
  .c-entry .c-entryquote_head {
    position: static;
    display: block;
  }
}

/* ------------------------------------------------- *
 *    faq_a
 * ------------------------------------------------- */
.c-entry .swell-block-faq {
  margin-top: 60px;
}
.c-entry .swell-block-faq__item {
}
.c-entry .swell-block-faq__item + .swell-block-faq__item {
  border-top: 1px solid #ccc;
  padding-top: 30px;
}
.c-entry .faq_q,
.c-entry .faq_a {
  position: relative;
  padding-left: 50px;
}
.c-entry .faq_q {
  font-size: 2rem;
  font-weight: 700;
}
.c-entry .faq_q::before {
  content: "Q";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-main);
  color: var(--color-white);
  font-family: 'Anton', Arial, sans-serif;
}
.c-entry .faq_a {
  margin-top: 1em;
  font-size: 1.6rem;
}
.c-entry .faq_a::before {
  content: "A";
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #cca12d;
  color: var(--color-white);
  font-family: 'Anton', Arial, sans-serif;
}

@media screen and (min-width: 768px) {
  .c-entry .swell-block-faq__item + .swell-block-faq__item {
    padding-top: 30px;
    margin-top: 30px;
  }
  .c-entry .faq_q {
    min-height: 36px;
    padding: 5px 0 5px 50px;
  }
  .c-entry .faq_q::before,
  .c-entry .faq_a::before {
    width: 36px;
    height: 36px;
    border-radius: 46px;
  }
  .c-entry .c-faq_a {
    min-height: 36px;
    padding: 5px 0 5px 50px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry .swell-block-faq__item + .swell-block-faq__item {
    padding-top: 15px;
    margin-top: 15px;
  }
  .c-entry .faq_q {
    min-height: 26px;
    padding: 0 0 0 40px;
  }
  .c-entry .faq_q::before,
  .c-entry .faq_a::before {
    width: 26px;
    height: 26px;
    border-radius: 26px;
  }
  .c-entry .faq_a {
    min-height: 26px;
    padding: 0 0 0 40px;
  }

}

/* ================================================== *
 *
 *    Component
 *
 * ================================================== */
/* ------------------------------------------------- *
 *    c-postTitle
 * ------------------------------------------------- */
.c-entry .c-postTitle {
  position: relative;
  background: var(--color-main);
  color:  var(--color-white);
}
.c-entry .c-postTitle__ttl {
  font-weight: 700;
}
.c-entry .c-postTitle__date {
  text-align: right;
  font-size: 1.2rem;
}
.c-entry .c-postTitle__date .__md::before {
  content: "/";
}
@media screen and (min-width: 768px) {
  .c-entry .c-postTitle {
    padding: 10px 100px 10px 20px;
  }
  .c-entry .c-postTitle__ttl {
    font-size: 2.2rem;
  }
  .c-entry .c-postTitle__date {
    position: absolute;
    top: 0;
    right: 20px;
    display: flex;
    align-items: center;
    justify-content: end;
    width: 70px;
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  .c-entry .c-postTitle {
    margin-right: -15px;
    margin-left: -15px;
    padding: 10px 15px 10px 15px;
  }
  .c-entry .c-postTitle__ttl {
    font-size: 1.6rem;
  }
  .c-entry .c-postTitle__date {
    display: block;
  }
}
/* ------------------------------------------------- *
 *    c-postTitle2
 * ------------------------------------------------- */
 .c-entry .c-postTitle2 {
  position: relative;
  background: var(--color-main);
  color:  var(--color-white);
}
@media screen and (min-width: 768px) {
  .c-entry .c-postTitle2 {
    padding: 10px 100px 10px 20px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry .c-postTitle2 {
    margin-left: -15px;
    padding: 10px 15px 10px 28px;
  }
}
/* ------------------------------------------------- *
 *    c-tabList
 * ------------------------------------------------- */
.c-entry ul.c-tabList {
  position: relative;
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0 -5px;
  padding: 0;
}
.c-entry .c-tabList::after {
  content: "";
  position: absolute;
  left: 5px;
  bottom: -4px;
  display: block;
  width: calc(100% - 10px);
  height: 4px;
  background: var(--color-main);
}
.c-entry .c-tabList > .c-tabList__item {
  width: 100%;
  margin-bottom: 0;
  padding: 0 5px;
}
.c-entry .c-tabList > .c-tabList__item::before {
  display: none;
}
.c-entry .c-tabList > .c-tabList__item .c-tabList__button {
  appearance: none;
  position: relative;
  display: flex;
  align-items: center;
  border: none;
  width: 100%;
  border-radius: 10px 10px 0 0;
  background: var(--color-white);
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  font-weight: 700;
  transition: background-color .25s,color .25s;
}
/* is-style-default */
.c-entry .is-style-default .c-tabList {
  --color-main: var(--color-sub);
}
.c-entry .is-style-default .c-tabList > .c-tabList__item .c-tabList__button {
  justify-content: center;
  height: 40px;
  padding-right: 10px;
  padding-left: 10px;
}
.c-entry .is-style-default .c-tabList > .c-tabList__item .c-tabList__button[aria-selected=true] {
  background: var(--color-main);
  color: var(--color-white);
}
/* is-style-balloon */
.c-entry .is-style-balloon .c-tabList {
  --color-main: #cca12d;
}
.c-entry .is-style-balloon .c-tabList > .c-tabList__item .c-tabList__button {
  height: 50px;
  padding-right: 10px;
  padding-left: 55px;
  color: var(--color-main);
}
.c-entry .is-style-balloon .c-tabList > .c-tabList__item .c-tabList__button i {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: auto;
  border-radius: 100%;
  background: var(--color-main);
  color: var(--color-white);
  font-size: 1.2rem;
  transition: background-color .25s,color .25s;
}
.c-entry .is-style-balloon .c-tabList > .c-tabList__item .c-tabList__button i span {
  font-family: arial, sans-serif;
  font-size: 2.4rem;
}
.c-entry .is-style-balloon .c-tabList > .c-tabList__item .c-tabList__button[aria-selected=true] {
  background: var(--color-main);
  color: var(--color-white);
}
.c-entry .is-style-balloon .c-tabList > .c-tabList__item .c-tabList__button[aria-selected=true] i {
  background: var(--color-white);
  color: var(--color-main);
}
.c-entry .is-style-balloon.is-noicon .c-tabList > .c-tabList__item .c-tabList__button {
  justify-content: center;
  padding-left: 10px;
  text-align: center;
}
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
  .c-entry .swell-block-tab {
    overflow: hidden;
  }
  .c-entry .c-tabList > .c-tabList__item .c-tabList__button {
    font-size: 1.2rem;
  }
  .c-entry .is-style-default .c-tabList > .c-tabList__item .c-tabList__button {
    height: 30px;
  }
  .c-entry .is-style-balloon .c-tabList > .c-tabList__item .c-tabList__button {
    height: 40px;
    padding-left: 42px;
  }
  .c-entry .is-style-balloon .c-tabList > .c-tabList__item .c-tabList__button i {
    width: 26px;
    height: 26px;
    font-size: 0.9rem;
  }
  .c-entry .is-style-balloon .c-tabList > .c-tabList__item .c-tabList__button i span {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .c-entry .c-tabList > .c-tabList__item .c-tabList__button:hover {
    background: var(--color-main);
    color: var(--color-white);
  }
  .c-entry .c-tabList > .c-tabList__item .c-tabList__button:hover i {
    background: var(--color-white);
    color: var(--color-main);
  }
}
/* is-scroll */
@media screen and (max-width: 767px) {
  .c-entry .c-tabList.is-scroll {
    overflow-x: scroll;
    padding-top: 5px;
    justify-content: start;
  }
  .c-entry .c-tabList.is-scroll::after {
    display: none;
  }
  .c-entry .c-tabList.is-scroll + .c-tabBody {
    border-top: 4px solid #cca12d;
  }
  .c-entry .c-tabList.is-scroll > .c-tabList__item .c-tabList__button {
    white-space: nowrap;
  }
}
/* ------------------------------------------------- *
 *    c-tabBody
 * ------------------------------------------------- */
.c-entry .c-tabBody {
  margin-bottom: 2em;
  padding-top: 4px;
  border-radius: 0 0 10px 10px;
  background: var(--color-white);
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
}
.c-entry .c-tabBody__item {
  padding: 20px;
}
.c-entry .c-tabBody__item[aria-hidden=true] {
    display: none;
}
@media screen and (min-width: 768px) {
}
@media screen and (max-width: 767px) {
  .c-entry .c-tabBody__item {
    padding: 15px;
  }
}
/* ------------------------------------------------- *
 *    c-loanUnit
 * ------------------------------------------------- */
.c-entry .c-loanUnit {
  --color-main: #cca12d;
  --color-bg: #fffbf2;
}
.c-entry .c-loanUnit > p {
  margin-bottom: 2em;
}
.c-entry .c-loanUnit > p:last-child  {
  margin-bottom: 0;
}
.c-entry  .c-tabBody__item > .c-loanUnit:first-child {
  margin-top: -20px;
}
.c-entry  .c-tabBody__item > .c-loanUnit:first-child {
  margin-top: -20px;
}
.c-entry .c-loanUnit__ttl {
  margin: 0 -20px 18px;
  padding: 20px;
  background: var(--color-bg);
  font-size: 2.2rem;
  font-weight: 700;
}
.c-entry .c-loanUnit__clm {
  margin-bottom: 2em;
}
.c-entry .c-loanUnit__clmCol {}
.c-entry .c-loanUnit__clmCol > p {
  margin-bottom: 1em;
}
.c-entry .c-loanUnit__img a {
  display: block;
  text-align: center;
  transition: opacity .25s;
}
.c-entry .c-loanUnit__img img {
  max-width: 100%;
  height: auto;
}
.c-entry .c-loanUnit__summary {
  margin-bottom: 1em;
}
.c-entry .c-loanUnit__summary img {
  width: 100%;
  height: auto;
}
.c-entry .c-loanUnit__notes {
  margin-bottom: 2em;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-gray);
}
.c-entry .c-loanUnit__btn {
  margin: 0 0 2em;
}
.c-entry .c-loanUnit__btn__link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 410px;
  height: 50px;
  margin: 0 auto;
  border-radius: 50px;
  background: var(--color_red);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity .25s;
}
.c-entry .c-loanUnit__btn__link::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  display: inline-block;
  width: 28px;
  height: 28px;
  margin: auto;
  border-radius: 28px;
  background: var(--color-white) url(../images/icn_finger04.png) no-repeat 50% 50%;
  background-size: 19px auto;
}
/* cap_box */
.c-entry .c-loanUnit .cap_box {
  margin-top: 15px;
}
.c-entry .c-loanUnit .cap_box_ttl {
  padding-left: 44px;
  padding-bottom: 13px;
  margin-bottom: 1em;
  border-bottom: 1px solid var(--color-main);
  background: transparent;
  color: var(--color-main);
}
.c-entry .c-loanUnit .cap_box_ttl::before {
  bottom: auto;
  left: 0;
  width: 36px;
  height: 36px;
  border-radius: 100%;
  background: var(--color-main) url(../images/icn_check01w.png) no-repeat 50% 45%;
  background-size: 25px auto;
}
.c-entry .c-loanUnit .cap_box_content {
  padding: 0;
  border: none;
  background: transparent;
}
@media screen and (min-width: 768px) {
  .c-entry .c-loanUnit__clm {
    display: flex;
    justify-content: space-between;
  }
  .c-entry .c-loanUnit__clmCol:nth-child(1) {
    width: 300px;
  }
  .c-entry .c-loanUnit__clmCol:nth-child(2) {
    width: 560px;
  }
  .c-entry .c-loanUnit__clmCol .wp-block-table {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-entry .c-loanUnit__ttl {
    margin: 0 -15px 15px;
    padding: 15px;
    font-size: 1.6rem;
  }
  .c-entry .c-loanUnit__clmCol {
    margin-bottom: 1em;
  }
  .c-entry .c-loanUnit .cap_box_ttl::before {
    width: 30px;
    height: 30px;
    background-size: 21px auto;
  }
  .c-entry .c-loanUnit .cap_box_content {
    font-size: 1.6rem;
  }
  .c-entry .c-loanUnit__notes {
    font-size: 1rem;
  }
  .c-entry .c-loanUnit__btn__link {
    width: 100%;
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1025px) {
  .c-entry .c-loanUnit__img a:hover {
    opacity: 0.5;
  }
  .c-entry .c-loanUnit__btn__link:hover {
    opacity: 0.5;
  }
}
/* ------------------------------------------------- *
 *    c-scrollHint
 * ------------------------------------------------- */
.c-entry .c-scrollHint {
  animation: FloatHorizontal 2s ease-in-out infinite alternate;
  margin-bottom: 2px!important;
  margin-top: 3em;
  text-align: right;
}
.c-entry .c-scrollHint span {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  line-height: 1;
  opacity: .75;
  vertical-align: middle;
  font-weight: 700;
}
.c-entry .c-scrollHint span [class*=" icon-"]:before, [class^=icon-]:before {
  content: "→";
}
@keyframes FloatHorizontal {
  0% {
      transform: translate3d(4px,0,0)
  }
  50% {
      transform: translate3d(-4px,0,0)
  }
  to {
      transform: translate3d(4px,0,0)
  }
}
/* ------------------------------------------------- *
 *    c-scrollHint2
 * ------------------------------------------------- */
 .c-entry .c-scrollHint2 {
  animation: FloatHorizontal 2s ease-in-out infinite alternate;
  margin-bottom: 2px!important;
  text-align: right;
}
.c-entry .c-scrollHint2 span {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  line-height: 1;
  opacity: .75;
  vertical-align: middle;
  font-weight: 700;
}
.c-entry .c-scrollHint2 span [class*=" icon-"]:before, [class^=icon-]:before {
  content: "→";
}
@keyframes FloatHorizontal {
  0% {
      transform: translate3d(4px,0,0)
  }
  50% {
      transform: translate3d(-4px,0,0)
  }
  to {
      transform: translate3d(4px,0,0)
  }
}

/* ------------------------------------------------- *
 *    c-entryframe
 * ------------------------------------------------- */
.c-entry .c-entryframe {
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0,0,0,.3)
}
.c-entry .c-entryframe > * {
  clear: both;
  margin-bottom: var(--block-margin,2em);
}
/* h3 */
.c-entry .c-entryframe h3 {
  margin: 0 -20px 20px;
  padding: 20px;
  border: none;
  background: #fffbf2;
  font-size: 2.2rem;
  font-weight: 700;
}
.c-entry .c-entryframe h3::before {
  display: none;
}
.c-entry .c-entryframe > h3:first-child {
  margin-top: -20px;
  border-radius: 10px 10px 0 0;
}
@media screen and (max-width: 767px) {
  .c-entry .c-entryframe h3 {
    margin-bottom: 15px;
    padding: 15px 15px;
    font-size: 1.8rem;
  }
  .c-entry .c-entryframe h3 {
    margin-right: -15px;
    margin-left: -15px;
  }
  .c-entry .c-entryframe > h3:first-child {
    margin-top: -15px;
  }
}
@media screen and (max-width: 767px) {
  .c-entry .c-entryframe {
    padding: 15px;
  }
}
/* h4 */
.c-entry .c-entryframe h4 {
  position: relative;
  margin: 51px 0 15px;
  padding: 5px 0 5px 16px;
  border-left: solid 4px var(--color-main);
  background: transparent;
  font-size: 2rem;
  font-weight: 700;
}
.c-entry .c-entryframe h4::before {
  content: "";
  position: absolute;
  top: -21px;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: #ccc;
}
@media screen and (max-width: 767px) {
  .c-entry .c-entryframe h4 {
    font-size: 1.6rem;
  }
}
/* ------------------------------------------------- *
 *    c-entrynotes
 * ------------------------------------------------- */
.c-entry .c-entrynotes {
  margin-top: 1em;
  margin-bottom: 2em;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-gray);
}
.c-entry figcaption.c-entrynotes {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-entry .c-entrynotes {
    font-size: 1rem;
  }
}
/* ------------------------------------------------- *
 *    c-shareBtns
 * ------------------------------------------------- */
.c-entry .c-shareBtns {
  margin: 2em 0
}

.c-entry .c-shareBtns__message {
  padding: .25em 0 .75em;
  text-align: center;
  width: 100%;
  font-size: 1.6rem;
  font-weight: 700;
}

.c-entry .c-shareBtns__message .__text {
  display: inline-block;
  line-height: 1.5;
  padding: 0 1.5em;
  position: relative
}

.c-entry .c-shareBtns__message .__text:after,
.c-entry .c-shareBtns__message .__text:before {
  background-color: currentColor;
  bottom: 0;
  content: "";
  display: block;
  height: 1.5em;
  position: absolute;
  width: 1px
}

.c-entry .c-shareBtns__message .__text:before {
  left: 0;
  -webkit-transform: rotate(-40deg);
  transform: rotate(-40deg)
}

.c-entry .c-shareBtns__message .__text:after {
  right: 0;
  -webkit-transform: rotate(40deg);
  transform: rotate(40deg)
}

.c-entry .c-shareBtns__list {
  display: flex;
  justify-content: center
}
.c-entry .c-shareBtns__item:not(:last-child) {
  margin-right: 4px;
}
.c-entry .c-shareBtns__item.-facebook {
  color: #3b5998
}
.c-entry .c-shareBtns__item .icon-facebook:before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url(../images/icn_facebook01.png) no-repeat 0 0;
}
.c-entry .c-shareBtns__item.-twitter {
  color: #1da1f2
}
.c-entry .c-shareBtns__item .icon-twitter:before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url(../images/icn_twitter01.png) no-repeat 0 0;
}
.c-entry .c-shareBtns__item.-hatebu {
  color: #00a4de
}
.c-entry .c-shareBtns__item .icon-hatebu:before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url(../images/icn_hatebu01.png) no-repeat 0 0;
}
.c-entry .c-shareBtns__item.-pocket {
  color: #ef3f56
}
.c-entry .c-shareBtns__item .icon-pocket:before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url(../images/icn_pocket01.png) no-repeat 0 0;
}
.c-entry .c-shareBtns__item.-line {
  color: #00c300
}
.c-entry .c-shareBtns__item .icon-line:before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url(../images/icn_line01.png) no-repeat 0 0;
}
.c-entry .c-shareBtns__item.-copy {
  color: #909494;
  position: relative
}
.c-entry .c-shareBtns__item .icon-clipboard-copy:before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url(../images/icn_copy01.png) no-repeat 0 0;
}
.c-entry .c-shareBtns__item .icon-clipboard-copied:before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 34px;
  background: url(../images/icn_copy02.png) no-repeat 0 0;
}
.c-entry .c-shareBtns:not(.-style-btn-small) .c-shareBtns__item {
  flex: 1
}

.c-entry .c-shareBtns__btn {
  background-color: currentColor;
  border-radius: 2px;
  color: inherit;
  cursor: pointer;
  display: block;
  text-align: center;
  text-decoration: none;
}

.c-entry .c-shareBtns__icon {
  color: #fff;
  display: block;
  line-height: 1;
}
.c-entry .c-shareBtns__icon:before {
  color: inherit;
  display: block
}

.c-entry .-fix.c-shareBtns {
  border: none!important;
  left: 8px;
  margin: 0;
  position: fixed;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 30px;
  z-index: 99
}

.c-entry .-fix.c-shareBtns .c-shareBtns__list {
  border: none;
  flex-direction: column;
  margin: 0;
  padding: 0;
  width: 100%
}

.c-entry .-fix.c-shareBtns .c-shareBtns__item {
  flex-basis: 100%;
  margin: 4px 0;
  max-width: 100%;
  padding: 0;
  width: 100%
}

.c-entry .-fix.c-shareBtns .c-shareBtns__btn {
  padding: 0
}

.c-entry .-fix.c-shareBtns .c-shareBtns__icon:before {
  font-size: 16px;
  height: 30px;
  line-height: 30px
}

.c-entry .c-urlcopy {
  appearance: none;
  display: block;
  position: relative;
  width: 100%;
  border: none;
  padding: 0;
}

.c-entry .c-urlcopy .-copied {
  opacity: 0;
  position: absolute;
  top: 0
}

.c-entry .c-urlcopy .-to-copy {
  opacity: 1;
  top: 0
}

.c-entry .c-urlcopy.-done .-to-copy {
  opacity: 0;
  top: 0;
  transition-duration: 0s
}

.c-entry .c-urlcopy.-done .-copied {
  opacity: 1;
  top: 0;
  transition-duration: .25s
}

.c-entry .c-urlcopy.-done+.c-copyedPoppup {
  opacity: 1;
  visibility: visible
}

.c-entry .c-urlcopy .c-shareBtns__icon {
  transition: opacity .25s,top .25s
}

.c-entry .c-urlcopy__text {
  display: block
}

.c-entry .c-urlcopy__content {
  align-items: center;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%
}

.c-entry .c-copyedPoppup {
  bottom: calc(100% + 2px);
  color: grey;
  font-size: 10px;
  opacity: 0;
  position: absolute;
  right: 0;
  text-align: right;
  transition: opacity .25s,visibility .25s;
  visibility: hidden;
  white-space: nowrap
}

@media screen and (min-width: 768px) {
  .c-entry .c-copyedPoppup {
    font-size: 11px;
    right: 50%;
    transform: translateX(50%);
  }
}
/* ------------------------------------------------- *
 *    c-balloon
 * ------------------------------------------------- */
.c-entry .c-balloon {
  position: relative;
}
.c-entry .c-balloon__icon {
  position: absolute;
  width: 92px;
}
.c-entry .c-balloon.-bln-left .c-balloon__icon {
  left: 0;
}
.c-entry .c-balloon.-bln-roght .c-balloon__icon {
  right: 0;
}
.c-entry .c-balloon__iconImg {
  width: 100%;
  height: auto;
}
.c-entry .c-balloon__iconName {
  display: block;
  text-align: center;
  font-size: 1.2rem;
}
.c-entry .c-balloon__body {
  position: relative;
  padding: 40px;
  border: 1px solid var(--color-main);
  border-radius: 20px;
  background: var(--color-subbg);
}
.c-entry .c-balloon__body::before,
.c-entry .c-balloon__body::after {
  content: "";
  position: absolute;
  top: 30px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 26px 9px 0;
}
.c-entry .c-balloon__body::before {
  border-color: transparent var(--color-main) transparent transparent;
}
.c-entry .c-balloon__body::after {
  border-color: transparent var(--color-subbg) transparent transparent;
}
.c-entry .c-balloon.-bln-left .c-balloon__body {
  margin-left: 137px;
}
.c-entry .c-balloon.-bln-left .c-balloon__body::before {
  left: -1px;
  transform: translateX(-100%);
}
.c-entry .c-balloon.-bln-left .c-balloon__body::after {
  left: 1px;
  transform: translateX(-100%);
}
.c-entry .c-balloon.-bln-right .c-balloon__body {
  margin-right: 137px;
}
.c-entry .c-balloon.-bln-right .c-balloon__body::before {
  right: -1px;
  transform: translateX(100%) rotate(180deg);
}
.c-entry .c-balloon.-bln-right .c-balloon__body::after {
  right: 1px;
  transform: translateX(100%) rotate(180deg);
}
@media screen and (max-width: 767px) {
  .c-entry .c-balloon__icon {
    width: 80px;
  }
  .c-entry .c-balloon__body {
    padding: 15px;
    border-radius: 10px;
  }
  .c-entry .c-balloon__body::before,
  .c-entry .c-balloon__body::after {
    top: 20px;
    border-width: 5px 13px 5px 0;
  }
  .c-entry .c-balloon.-bln-left .c-balloon__body {
    margin-left: 100px;
  }
  .c-entry .c-balloon.-bln-right .c-balloon__body {
    margin-right: 100px;
  }
}

/* ================================================== *
 *
 *    Project
 *
 * ================================================== */
/* ------------------------------------------------- *
 *    p-articleMetas
 * ------------------------------------------------- */
.c-entry .p-articleMetas {
  display: none;
}
/* ------------------------------------------------- *
 *    p-articleThumb
 * ------------------------------------------------- */
.c-entry .p-articleThumb {
  margin: 0 0 2em;
  text-align: center;
  width: 100%
}
.c-entry .p-articleThumb picture,
.c-entry .p-articleThumb img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .c-entry .p-articleThumb {
    margin-right: -15px;
    margin-left: -15px;
  }
  .c-entry .p-articleThumb picture,
  .c-entry .p-articleThumb img {
    width: calc(100% + 30px);
  }
}

/* ------------------------------------------------- *
 *    p-toc
 * ------------------------------------------------- */
.c-entry .p-toc.-capbox {
  border: 1px solid var(--color-main);
  overflow: hidden;
}
.c-entry .p-toc.-capbox .p-toc__ttl {
  position: relative;
  display: block;
  padding: 7px 20px 7px 60px;
  background-color: var(--color-main);
  color: var(--color-white);
  font-size: 1.8rem;
  font-weight: 700;
}
.c-entry .p-toc.-capbox .p-toc__ttl::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  width: 20px;
  height: 24px;
  background: url(../images/icn_toc01.png) no-repeat 0 0;
  background-size: contain;
  margin: auto;
}
.c-entry .p-toc.-capbox .p-toc__ttl.is-toggle {
  cursor: pointer;
  transition: opacity .25s;
}
.c-entry .p-toc.-capbox .p-toc__ttl__icon {
  position: absolute;
  right: 10px;
  top: 0;
  bottom: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: auto;
}
.c-entry .p-toc.-capbox .p-toc__ttl__icon::before,
.c-entry .p-toc.-capbox .p-toc__ttl__icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  margin: auto;
  background: var(--color-white);
}
.c-entry .p-toc.-capbox .p-toc__ttl__icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.c-entry .p-toc.-capbox .p-toc__ttl.is-toggle.is-active .p-toc__ttl__icon::after {
  opacity: 1;
}
.c-entry .p-toc.-capbox .p-toc__list {
  margin-bottom: 0;
  padding: 20px 18px;
  background: #f8fbff;
  font-size: 1.8rem;
  font-weight: 700;
}
.c-entry .p-toc.-capbox .p-toc__list li {
  margin-top: 10px;
  margin-bottom: 10px;
}
.c-entry .p-toc.-capbox .p-toc__list > li:first-child {
  margin-top: 0;
}
.c-entry .p-toc.-capbox .p-toc__list ol,
.c-entry .p-toc.-capbox .p-toc__list ul {
  padding-left: 40px;
  font-size: 1.4rem;
  font-weight: 400;
}
.c-entry ol.is-style-index ul li,
.c-entry ul.is-style-index li li {
  padding-left: 14px!important;
}
.c-entry ol.is-style-index ul li:before,
.c-entry ul.is-style-index li li:before {
  background: none;
  border-bottom: 1px solid;
  border-left: 1px solid;
  border-radius: 0;
  box-shadow: none;
  color: inherit;
  content: ""!important;
  height: calc(1em - 2px);
  left: 0;
  opacity: .75;
  position: absolute;
  top: 0;
  transform: none;
  transform: scale(.75);
  transform-origin: 50% 100%;
  width: 6px;
  display: block!important;
}
@media screen and (max-width: 767px) {
  .c-entry .p-toc.-capbox .p-toc__ttl {
    padding-left: 44px;
    font-size: 1.4rem;
  }
  .c-entry .p-toc.-capbox .p-toc__ttl::before {
    left: 15px;
    width: 16px;
    height: 19px;
  }
  .c-entry .p-toc.-capbox .p-toc__list {
    font-size: 1.6rem;
  }
  .c-entry .p-toc.-capbox .p-toc__list ol,
  .c-entry .p-toc.-capbox .p-toc__list ul {
    padding-left: 20px;
  }
  .c-entry ol.is-style-index ul li:before,
  .c-entry ul.is-style-index li li:before {
  }
}
@media screen and (min-width: 1025px) {
  .c-entry .p-toc.-capbox .p-toc__ttl.is-toggle:hover {
    opacity: 0.5;
  }
}

/* ------------------------------------------------- *
 *    pb-cv-box
 * ------------------------------------------------- */
.c-entry .pb-cv-box {
  --color-main: #cca12d;
  --color-bg: #fffbf2;
}
.c-entry .pb-cv-box {
  display: block;
  box-sizing: border-box;
  width: 100%;
  background: var(--color-bg);
  margin: 2em auto;
  font-size: 1em;
  line-height: 1.8;
}
.c-entry .pb-cv-box__inner {
  display: block;
  max-width: calc(410px + 4em);
  box-sizing: border-box;
  margin-right: auto!important;
  margin-left: auto!important;
  padding: 2em!important;
}
.c-entry .pb-button {}
.c-entry .pb-button__btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  margin: 0 auto;
  border-radius: 50px;
  background: var(--color_red);
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  transition: opacity .25s;
}
.c-entry .pb-button__btn::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 12px;
  display: inline-block;
  width: 28px;
  height: 28px;
  margin: auto;
  border-radius: 28px;
  background: var(--color-white) url(../images/icn_finger04.png) no-repeat 50% 50%;
  background-size: 19px auto;
}
.c-entry .pb-button__btn .pb-button__em {
  display: inline-block;
  margin-right: 0.5em;
  padding: 0 0.5em;
  background: var(--color-white);
  color: var(--color_red);
  font-size: 0.8em;
  line-height: 1.5;
}
.c-entry .pb-cv-box__note {
  text-align: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color_red);
}
/* is-w540 */
.c-entry .pb-cv-box__inner.is-w540 {
  max-width: calc(540px + 4em);
}
@media screen and (max-width: 767px) {
  .c-entry .pb-cv-box {
    width: auto;
    margin-right: -15px;
    margin-left: -15px;
  }
  .c-entry .pb-cv-box__inner.is-w540 {
    width: auto;
  }
  .c-entry .pb-button__btn {
    width: 100%;
    font-size: 1.6rem;
  }
}
/* ------------------------------------------------- *
 *    p-articleFoot
 * ------------------------------------------------- */
.c-entry .p-articleFoot {
}
/* ------------------------------------------------- *
 *    p-articleMetas
 * ------------------------------------------------- */
.c-entry .p-articleMetas__termList {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
  margin: 0 .25em 0 0;
}
.c-entry .c-categoryList__link {
  padding-left: 30px;
  background: url(../images/icn_folder01.png) no-repeat 0 50%;
}

/* ================================================== *
 *
 *    OVERWRITE
 *
 * ================================================== */
@media screen and (max-width: 767px) {
  .c-entry + .c-tab03new2__wrapper {
    margin-top: -2em;
    margin-right: -15px;
    margin-left: -15px;
  }
}

/* ================================================== *
 *
 *    UTILITY
 *
 * ================================================== */
.c-entry .u-mb-0 {
  margin-bottom: 0;
}
.c-entry .u-mb-10 {
  margin-bottom: 10px;
}
.c-entry .u-bg-main {
  background: var(--color-main);
}

/* ================================================== *
 *
 *    JS
 *
 * ================================================== */
/* ------------------------------------------------- *
 *    luminous
 * ------------------------------------------------- */
.c-entry .luminous {
  cursor: -webkit-zoom-in!important;
  cursor: zoom-in!important;
}
.lum-lightbox {
  z-index: 999;
}


.c-table-comparison-narrow,
.c-table-comparison-wide {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.c-table-comparison-narrow th,
.c-table-comparison-narrow td,
.c-table-comparison-wide th,
.c-table-comparison-wide td {
  border: 1px solid #ddd;
  padding: 8px;
  vertical-align: top;
  word-wrap: break-word;
  word-break: break-word;
  overflow-wrap: break-word;
}

.c-table-comparison-narrow.is-centered th,
.c-table-comparison-narrow.is-centered td {
  text-align: center !important;
}

.c-table-comparison-narrow th,
.c-table-comparison-wide th {
  background-color: #f8f8f8;
  font-weight: bold;
  text-align: center;
}

.c-table-comparison-narrow th:first-child,
.c-table-comparison-wide th:first-child {
  text-align: left;
}

.c-table-comparison-narrow td,
.c-table-comparison-wide td {
  font-size: 13px;
  line-height: 1.6;
}

.c-table-comparison-narrow-wrapper {
  margin: 20px 0;
}

.is-simulation-table {
  max-width: 600px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .is-simulation-table {
    max-width: 100%;
  }
}

.c-table-comparison-wide-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 20px 0;
}

.c-table-comparison-wide.is-megabank-comparison th:first-child {
  width: 90px;
}
.c-table-comparison-wide.is-megabank-comparison tbody th {
  text-align: center;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .c-table-comparison-wide.is-megabank-comparison th:first-child {
    width: 70px;
  }
}

.c-table-comparison-wide {
  min-width: 600px;
}

/* PC版 */
@media (min-width: 768px) {
  .c-table-comparison-wide-wrapper {
    overflow-x: visible;
  }
  
  .c-table-comparison-narrow,
  .c-table-comparison-wide {
    table-layout: fixed;
  }
  
  .c-table-comparison-wide {
    min-width: auto;
  }
  
  .c-table-comparison-narrow th,
  .c-table-comparison-narrow td,
  .c-table-comparison-wide th,
  .c-table-comparison-wide td {
    padding: 10px;
  }
  
  .c-table-comparison-narrow td,
  .c-table-comparison-wide td {
    font-size: 14px;
  }
  
  /* メガバンクテーブル（4列）の均等幅設定 */
  .c-table-comparison-wide:not(.is-netbank) thead th:not(:first-child),
  .c-table-comparison-wide:not(.is-netbank) tbody td:not(:first-child) {
    width: 22%;
  }
  
  /* ネット銀行テーブル（6列）の均等幅設定 */
  .c-table-comparison-wide.is-netbank thead th:not(:first-child),
  .c-table-comparison-wide.is-netbank tbody td:not(:first-child) {
    width: 14.6%;
  }
}

/* SP版 */
@media (max-width: 767px) {
  .c-table-comparison-narrow,
  .c-table-comparison-wide {
    font-size: 13px;
    table-layout: fixed;
  }
  
  .c-table-comparison-narrow th,
  .c-table-comparison-wide th {
    font-size: 13px;
    padding: 8px 6px;
  }
  
  .c-table-comparison-narrow th:first-child {
    width: 30%;
  }
  
  .c-table-comparison-wide th:first-child {
    width: 12%;
    font-size: 11px;
  }
  
  .c-table-comparison-narrow td,
  .c-table-comparison-wide td {
    padding: 8px 6px;
    font-size: 12px;
  }
  
  .c-table-comparison-narrow td,
  .c-table-comparison-narrow th {
    text-align: center !important;
  }
  
  .c-table-comparison-narrow th[style*="background-color"],
  .c-table-comparison-wide th[style*="background-color"] {
    text-align: center !important;
  }
  
  /* メガバンクテーブル（4列）の均等幅設定 */
  .c-table-comparison-wide:not(.is-netbank) thead th:not(:first-child),
  .c-table-comparison-wide:not(.is-netbank) tbody td:not(:first-child) {
    width: 22%;
  }
  
  /* ネット銀行テーブル（6列）の均等幅設定 */
  .c-table-comparison-wide.is-netbank thead th:not(:first-child),
  .c-table-comparison-wide.is-netbank tbody td:not(:first-child) {
    width: 14.6%;
  }
}

/* 3列テーブルの均等幅設定 */
.c-table-comparison-narrow.is-centered {
  table-layout: fixed;
}

.c-table-comparison-narrow.is-centered th,
.c-table-comparison-narrow.is-centered td {
  width: 33.33%;
}

/* 2列テーブルの均等幅設定 */
.c-table-comparison-narrow[style*="table-layout: fixed"] th,
.c-table-comparison-narrow[style*="table-layout: fixed"] td {
  width: 50% !important;
}

/* モバイル版での3列テーブル均等幅設定 */
@media (max-width: 767px) {
  .c-table-comparison-narrow.is-centered {
    table-layout: fixed;
  }
  
  .c-table-comparison-narrow.is-centered th,
  .c-table-comparison-narrow.is-centered td {
    width: 33.33%;
  }
}

.l-article ol {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  padding-right: 20px !important;
  box-sizing: border-box !important;
  columns: 1 !important;
  -webkit-columns: 1 !important;
  -moz-columns: 1 !important;
  column-count: 1 !important;
  -webkit-column-count: 1 !important;
  -moz-column-count: 1 !important;
}

.l-article ol li {
  display: list-item !important;
  width: 100% !important;
  max-width: 100% !important;
  break-inside: avoid !important;
  -webkit-column-break-inside: avoid !important;
  page-break-inside: avoid !important;
  margin-bottom: 0.5em !important;
}

/* ================================================== *
 *
 *    Ranking Card Component
 *
 * ================================================== */
.ranking-card {
  border: 1px solid #ccc;
  background: #fff;
  margin-bottom: 20px;
}
.ranking-card__header {
  padding: 10px 15px;
  border-bottom: 1px solid #ccc;
}
.ranking-card__title {
  font-size: 20px;
  font-weight: bold;
  color: #c92027;
  margin: 0;
}
.ranking-card__body {
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
}
.ranking-card__left {
  flex: 0 0 320px;
  margin-right: 20px;
}
.ranking-card__banner {
  border: 1px solid #ddd;
}
.ranking-card__banner img {
  display: block;
  width: 100%;
  height: auto;
}
.ranking-card__right {
  flex: 1;
  min-width: 300px;
}
.loan-card-heading {
  font-size: 18px;
  font-weight: bold;
  color: #c92027;
  margin: 0 0 10px;
  margin-top: 0 !important;
  padding-top: 0;
  line-height: 1.4;
}
.ranking-card__desc {
  font-size: 14px;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.6;
}
.ranking-card__provider {
  font-size: 12px;
  color: #666;
  margin-bottom: 5px;
}
.ranking-card__link {
  font-size: 12px;
  color: #0066cc;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
}
.ranking-card__link:hover {
  text-decoration: underline;
}
.ranking-card__labels {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 15px;
}
.ranking-card__label {
  background: #fff;
  border: 2px solid #f90;
  color: #f60;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: bold;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}
.ranking-card__label sup {
  font-size: 9px;
  vertical-align: super;
}
.ranking-card__content-wrapper {
  display: flex;
  gap: 15px;
}
.ranking-card__table-section {
  flex: 1;
}
.ranking-card__info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  border: 1px solid #ddd;
}
.ranking-card__info-table th {
  background: #f5f5f5;
  text-align: left;
  padding: 8px 10px;
  border: 1px solid #ddd;
  font-weight: normal;
  width: 35%;
}
.ranking-card__info-table td {
  padding: 8px 10px;
  border: 1px solid #ddd;
  font-weight: bold;
}
.ranking-card__info-table.is-4col th {
  width: 25%;
}
.ranking-card__info-table.is-4col td {
  width: 25%;
}
.ranking-card__speed-section {
  flex: 0 0 220px;
  background: #fff8f0;
  border: 1px solid #f90;
  padding: 10px;
  font-size: 14px;
}
.ranking-card__speed-title {
  color: #c92027;
  font-weight: bold;
  margin-bottom: 8px;
}
.ranking-card__speed-text {
  line-height: 1.6;
  color: #333;
}
.ranking-card__speed-highlight {
  font-weight: bold;
  color: #c92027;
}
.ranking-card__footer {
  border-top: 1px solid #ccc;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.ranking-card__rankings {
  display: flex;
  gap: 30px;
  flex: 1;
}
.ranking-card__rank-item {
  text-align: center;
}
.ranking-card__rank-label {
  font-size: 11px;
  color: #666;
  margin-bottom: 5px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 3px;
}
.ranking-card__rank-value {
  font-size: 16px;
  color: #f60;
  font-weight: bold;
}
.ranking-card__rank-value .icon {
  margin-right: 3px;
}
.ranking-card__rank-sub {
  font-size: 10px;
  color: #666;
  margin-top: 3px;
}
.ranking-card__rating-stars {
  color: #f90;
}
.ranking-card__cta {
  flex: 0 0 280px;
}
.ranking-card__cta-btn {
  display: block;
  background: #f60;
  color: #fff;
  text-decoration: none;
  padding: 15px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s;
}
.ranking-card__cta-btn:hover {
  background: #e55;
  color: #fff;
  text-decoration: none;
}
.ranking-card__cta-btn .arrow {
  margin-left: 5px;
}
.ranking-card__ad-text {
  font-size: 11px;
  color: #999;
  text-align: right;
  padding: 5px 15px;
  border-top: 1px solid #eee;
}

@media (max-width: 768px) {
  .ranking-card__body {
    flex-direction: column;
  }
  .ranking-card__left {
    flex: none;
    margin-right: 0;
    margin-bottom: 30px;
  }
  .ranking-card__content-wrapper {
    flex-direction: column;
  }
  .ranking-card__speed-section {
    flex: none;
  }
  .ranking-card__footer {
    flex-direction: column;
    gap: 15px;
  }
  .ranking-card__cta {
    flex: none;
    width: 100%;
  }
  .ranking-card__info-table.is-4col th,
  .ranking-card__info-table.is-4col td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }
  .ranking-card__info-table.is-4col tr {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .ranking-card__info-table.is-4col th {
    width: 100%;
  }
  .ranking-card__info-table.is-4col td {
    width: 100%;
  }
}
