@charset "utf-8";
.header-area-upper {
  padding-bottom: var(--s1);
  text-align: right;
  background: var(--main);
}
.header-title {
  font-size: 1.2rem;
  display: inline-block;
  position: relative;
}
.header-title::before {
  content: "PR";
  padding: 0.2rem;
  color: var(--main);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  font-weight: 700;
  background: #ffffff;
}
.header-title a {
  text-decoration: none;
  color: #ffffff;
  padding-left: var(--s3);
}
.header-title a:hover {
  text-decoration: underline;
}
.gnavi-btn-close {
  display: none;
}
.toggle-content {
  display: none;
}
.gnavi-ctrl {
  transition:
    opacity 0.6s,
    visibility 0.6s;
  opacity: 0;
  visibility: hidden;
}
.gnavi-ctrl.is-show {
  opacity: 1;
  visibility: visible;
}
#low-page .gnavi-ctrl {
  opacity: 1;
  visibility: visible;
}
.gnavi-btn {
  width: var(--s7);
  height: var(--s6);
  background: var(--sub_03);
  display: block;
  position: fixed;
  top: var(--s3);
  right: 0;
  z-index: 200;
  cursor: pointer;
}
.gnavi-btn span {
  width: var(--s4);
  height: 0.2rem;
  display: inline-block;
  background: #fff;
  position: absolute;
  left: 1.2rem;
  transform: translate(0, -50%);
  transition:
    transform 0.4s,
    opacity 0.4s;
}
.gnavi-btn span:nth-of-type(1) {
  top: 1.7rem;
}
.gnavi-btn span:nth-of-type(2) {
  top: 2.4rem;
}
.gnavi-btn span:nth-of-type(3) {
  top: 3.1rem;
}
.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(0.7rem) rotate(-45deg);
}
.gnavi-btn.is-active span:nth-of-type(2) {
  opacity: 0;
}
.gnavi-btn.is-active span:nth-of-type(3) {
  transform: translateY(-0.7rem) rotate(45deg);
}
.gnavi-btn-close {
  width: 80%;
  margin: 2rem auto 0;
  padding: var(--s2);
  background: var(--sub_03);
  display: block;
  text-align: center;
}
.gnavi-btn-close__inner {
  padding: 0 0 0 var(--s3);
  display: inline-block;
  color: #fff;
  font-weight: 700;
  position: relative;
}
.gnavi-btn-close__inner::before {
  content: "";
  width: 1em;
  height: 0.2rem;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%) rotate(45deg);
}
.gnavi-btn-close__inner::after {
  content: "";
  width: 1em;
  height: 0.2rem;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%) rotate(135deg);
}
.gnavi-area {
  width: 100%;
  max-width: 37.5rem;
  height: 100vh;
  padding: var(--s3) var(--s1) var(--s10);
  display: block;
  background: #f5f5f5;
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
  transform: translateX(100%);
  transition:
    transform 0.8s ease,
    opacity 0.8s ease;
  opacity: 0;
}
.gnavi-title {
  margin: 0 var(--s8) 0 var(--s2); /* 上 右 下 左 */
  width: 50%;
}
.gnavi-pc {
  display: none;
}
.gnavi-list {
  border-bottom: 1px solid #333;
  position: relative;
}
.gnavi-list li {
  padding-left: 0;
}
.gnavi-list__item::before {
  display: none;
}
.gnavi-list__link {
  width: 100%;
  margin: 0 auto;
  padding: var(--s2) var(--s4) var(--s2) var(--s2);
  border-top: 1px solid #333;
  display: block;
  font-weight: 700;
  line-height: 2;
  text-decoration: none;
  position: relative;
}
.gnavi-list__link::after {
  content: "";
  width: 1.2rem;
  height: 2.2rem;
  background: url("img/arrow-01-black-right.svg") no-repeat center/100% auto;
  position: absolute;
  top: 50%;
  right: var(--s2);
  transform: translate(0, -50%) rotate(0);
  transition: transform 0.3s;
}
.gnavi-list__link--toggle::after {
  background-image: url("img/arrow-01-black-down.svg");
  width: 1.6rem;
  right: 15px;
}
.gnavi-list__link--toggle.is-open::after {
  transform: translate(0, -50%) rotate(180deg);
}
.gnavi-list__sub {
  width: 100%;
  background: #fff;
}
.gnavi-list__low .gnavi-list__link {
  padding: var(--s2) var(--s4) var(--s2) var(--s4);
}
.gnavi-list__low .gnavi-list__link::after {
  content: "└";
  background: none;
  transform: translateY(-50%);
  position: absolute;
  top: 40%;
  left: 1rem;
}
.is-gnavi-open .gnavi-area {
  opacity: 1;
  transform: translateX(0);
}

/* ---------------------------------------------
index01(目次)
--------------------------------------------- */
.onb-index01-frame {
  width: 100%;
  margin: var(--s8) auto var(--s4);
}
.onb-index01-wrap {
  margin: 0 auto;
  padding: var(--s1) var(--s3);
  background-color: var(--base);
  position: relative;
  width: 67rem;
}
.onb-index01-title {
  padding: var(--s2) var(--s2) var(--s2) var(--s7);
  color: var(--site-color03);
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
  background-size: 4rem auto;
  position: relative;
  cursor: pointer;
}
.onb-index01-title::before {
  content: "";
  width: 2rem;
  height: 0.3rem;
  background: var(--sub_03);
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(0, -50%);
}
.onb-index01-title::after {
  content: "";
  width: 0.3rem;
  height: 2rem;
  background: var(--sub_03);
  position: absolute;
  top: 50%;
  right: 2.9rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.onb-index01-title.is-open::after {
  transform: translate(0, -50%) rotate(270deg);
}
#toc .onb-index01-chapter {
  padding: var(--s2) var(--s2) var(--s2) var(--s7);
  font-weight: 700;
  counter-reset: number 0;
}
#toc ul li.chapter-h-two::before,
#toc ul li.onb-index01-chapter-h-two::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero);
  color: var(--site-color14);
  position: absolute;
  top: 0;
  left: -1.8em;
}
#toc ul li.onb-index01-chapter-h {
  margin: 0 0 0 var(--s2);
  font-size: 100%;
  line-height: 1.7;
  position: relative;
}
#toc ul li.onb-index01-chapter-h a {
  display: block;
  text-decoration: none;
}
#toc ul li.onb-index01-chapter-h a:hover {
  opacity: 0.6;
}
#toc ul li.onb-index01-chapter-h-two {
  margin-left: var(--s2);
  position: relative;
}
#toc ul li.onb-index01-chapter-h-three {
  margin-left: var(--s4);
  position: relative;
}
#toc ul li.onb-index01-chapter-h-three::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 50%;
  background-color: var(--sub_01);
  position: absolute;
  top: 0.25em;
  left: -1.8em;
}
.more-content {
  display: none;
}
.onb-index01-content {
  margin-top: 1.4rem;
  border-top: 1px solid var(--site-color03);
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  #toc .onb-index01-chapter {
    padding-left: var(--s4);
  }
}
/* ---------------------------------------------
related-article01(関連記事)
--------------------------------------------- */
.related-article01-frame {
  border: 1px solid var(--site-color09);
  margin: var(--s6) auto;
  padding: var(--s1) var(--s3) var(--s4) var(--s3);
  background: var(--base);
  position: relative;
}
.related-article01-title {
  padding: var(--s2) var(--s2) var(--s3) var(--s1);
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  background-size: 5rem auto;
  position: relative;
  border-bottom: 1px solid #d0d3e0;
}
.related-article01-list {
  padding: var(--s2) 0 var(--s2) var(--s2);
  font-weight: 700;
}
.related-article01-list li {
  margin: 0 0 0 var(--s2);
  padding-left: 1.5em;
  font-size: 100%;
  line-height: 1.7;
  position: relative;
}
.related-article01-list li + li {
  margin-top: 10px;
}
.related-article01-list li::before {
  content: "";
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background-color: var(--sub_01);
  position: absolute;
  top: 0.9rem;
  left: 0;
}
.related-article01-list a {
  display: block;
  text-decoration: none;
}
.related-article01-list a:hover {
  opacity: 0.6;
}
.relations-box.relations-box--column {
  display: flex;
  gap: 10px;
}
.relations-box__pic {
  flex: 0 0 150px;
}
.is-hidden {
  display: none;
}

.related-article01-more {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #fff 50%);
  background-color: transparent;
  width: 100%;
  height: 25%;
  position: absolute;
  bottom: -40px;
  left: 0;
  padding: 2rem 0;
}

.related-article01-more.is-closed {
  display: none;
}

.related-article01-btn {
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 100px;
  padding: 1rem 5rem 1rem 2rem;
  position: relative;
}

.related-article01-btn::before {
  content: "";
  width: 1.8rem;
  height: 0.2rem;
  background: #000;
  position: absolute;
  top: 50%;
  right: 1.5rem;
  transform: translate(0, -50%);
}
.related-article01-btn::after {
  content: "";
  width: 0.2rem;
  height: 1.8rem;
  background: #000;
  position: absolute;
  top: 50%;
  right: 2.3rem;
  transform: translate(0, -50%);
  transition: transform 0.3s;
}
.related-article01-btn:hover {
  opacity: 0.6;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  .related-article01-list {
    padding: 0;
  }
  .related-article01-list li {
    margin-left: 0;
  }
  .relations-box__pic {
    flex: 0 0 100px;
  }
  .related-article01-title {
    padding: var(--s2) var(--s2) var(--s2) var(--s1);
    font-size: 1.8rem;
    margin-bottom: var(--s1);
  }
}

/* ---------------------------------------------
  header（TOP用）
--------------------------------------------- */
.header-area--top .header-area-upper {
  padding: 0.5rem;
  background: var(--main);
  text-align: right;
}

.header-area--top .header-title {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 400;
  padding-left: 3rem;
}

.header-area--top .header-title::before {
  background-color: #ffffff;
  left: 0;
}

@media screen and (max-width: 767px) {
  .header-area--top .header-title {
    font-size: 1rem;
    padding-left: 2.6rem;
  }
}

/* ---------------------------------------------
  mainvisual
--------------------------------------------- */
.mainvisual {
  width: 100%;
  background: linear-gradient(180deg, #eaf7f6 0%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}

.mainvisual-bg {
  width: 100%;
  height: 57.2rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.mainvisual-bg__left {
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.mainvisual-bg__right {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}

.mainvisual-bg__wave {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.mainvisual-inner {
  max-width: 100rem;
  padding-top: var(--s8);
  padding-bottom: var(--s8);
  text-align: center;
  position: relative;
  z-index: 2;
}

.mainvisual-logo {
  width: 20rem;
  max-width: 60%;
  position: absolute;
  top: var(--s3);
  left: var(--s3);
  z-index: 3;
}

.mainvisual-catch-wrap {
  font-size: inherit;
  font-weight: inherit;
}

.mainvisual-catch {
  display: block;
  font-size: 5.5rem;
  font-weight: 700;
  line-height: 1.4;
  background: linear-gradient(90deg, var(--sub_01), var(--sub_03));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mainvisual-catch-sub {
  display: block;
  margin-top: var(--s1);
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.4;
}

.mainvisual-txt {
  max-width: 66rem;
  margin: var(--s1) auto 0;
  padding: var(--s3);
  line-height: 1.8;
  text-align: left;
}

.mainvisual-txt__mark {
  font-weight: 700;
  color: var(--site-color19);
}

.mainvisual-btn {
  max-width: 48rem;
  margin: var(--s1) auto 0;
}

.mainvisual-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--s2) var(--s7) var(--s2) var(--s3);
  background: var(--sub_01);
  color: #fff;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
  text-decoration: none;
  border-radius: 1rem;
  position: relative;
  transition: opacity 0.3s;
}

.mainvisual-btn a::after {
  content: "";
  width: 3.4rem;
  height: 3.4rem;
  background: url("./img/arrow-wh-down.svg") no-repeat center/auto 1.8em;
  position: absolute;
  top: 50%;
  right: var(--s3);
  transform: translateY(-50%);
}

.mainvisual-btn a:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .mainvisual-bg__right-sp {
    width: 50%;
    max-width: 20rem;
    position: absolute;
    top: 10rem;
    right: -2rem;
    z-index: 5;
  }

  .mainvisual::after {
    content: "";
    width: 100%;
    height: 12rem;
    background: url("./img/wave_sp.png") no-repeat bottom center/cover;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }

  .mainvisual-inner {
    padding-top: 9rem;
    padding-bottom: var(--s5);
    background: url("./img/sp_mv.png") no-repeat center/cover;
  }

  .mainvisual-logo {
    width: 18rem;
    top: 0;
    left: 24%;
    margin-top: var(--s2);
  }

  .mainvisual-catch {
    font-size: 2.8rem;
    text-align: left;
    line-height: 1.2;
  }

  .mainvisual-catch-sub {
    font-size: 1.8rem;
    text-align: left;
    margin-top: var(--s2);
    position: relative;
  }
  .mainvisual-catch-sub:before {
    content: "";
    width: 100%;
    height: 12rem;
    background: url("./img/wave.svg") no-repeat bottom center/cover;
    position: absolute;
    top: -3rem;
    left: 0;
  }
  .mainvisual-txt {
    padding: var(--s3) var(--s1);
  }
  .mainvisual-btn a::after {
    background: url(./img/arrow-wh-down.svg) no-repeat right / auto 1.5em;
  }
  .mainvisual-btn a {
    font-size: 1.6rem;
  }
}

/* ---------------------------------------------
  mainvisual（下層用）
--------------------------------------------- */
.mainvisual-lower {
  padding: var(--s4) 0;
  background: var(--base);
  text-align: center;
}
.mainvisual-lower a:hover {
  opacity: 0.6;
}

.mainvisual-lower-logo {
  display: inline-block;
  width: 32rem;
  max-width: 80%;
}

@media screen and (max-width: 767px) {
  .mainvisual-lower {
    padding: var(--s2) 0;
  }

  .mainvisual-lower-logo,
  .footer-area-logo {
    width: 20rem;
  }
}

/* ---------------------------------------------
  section共通
--------------------------------------------- */
.top-sec {
  padding-block: var(--s10);
}
#sec07.top-sec {
  padding-block: var(--s2);
}
.c-heading01 {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  color: var(--site-color03);
}
.c-heading01 a {
  background: url(./img/arrow-blue-right.svg) no-repeat center right / auto
    0.7em;
  padding-right: var(--s6);
}

.c-heading01 a,
.twb-img-title a,
.summary-box-r-catch a,
.summary-box-l-catch a {
  text-decoration: none;
}
.c-heading01 a:hover,
.twb-img-title a:hover,
.summary-box-r-catch a:hover,
.summary-box-l-catch a:hover,
.arrow-title a:hover {
  opacity: 0.6;
}
.summary-box-r-catch a,
.summary-box-l-catch a {
  background: url("./img/arrow-blue-right.svg") no-repeat center right/auto
    0.9em;
  display: block;
}

.c-heading01__en {
  display: block;
  margin-bottom: var(--s1);
  font-size: 2.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
  color: var(--sub_01);
}

.c-lead {
  margin: var(--s3) auto 0;
  line-height: 1.8;
  color: var(--site-color08);
}

.c-check-list {
  margin-top: var(--s3);
}

.c-check-list li {
  padding: var(--s1) 0 var(--s1) var(--s5);
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 700;
  color: var(--site-color03);
}

.c-check-list li::before {
  content: "";
  width: 2.4rem;
  height: 2.4rem;
  background: url("./img/icon-check.png") no-repeat center/contain;
  position: absolute;
  top: 0.6rem;
  left: 0;
}

@media screen and (max-width: 767px) {
  .top-sec {
    padding-block: var(--s5);
  }

  .c-heading01 {
    font-size: 2.6rem;
  }

  .c-lead {
    text-align: left;
    margin-top: 0.5rem;
  }
}

/* ---------------------------------------------
  sec01 リパワリングとは
--------------------------------------------- */
#sec01 {
  padding-top: 0;
}
.sec01-box ul li {
  font-weight: 700;
}

.sec01-table-wrap {
  margin: var(--s1) 0 var(--s6);
}

.sec01-table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.sec01-table th,
.sec01-table td {
  padding: var(--s2);
  border: 1px solid var(--site-color16);
  line-height: 1.6;
}

.sec01-table thead th {
  background: var(--site-color03);
  color: #fff;
  font-weight: 700;
}

.sec01-table tbody th {
  width: 16rem;
  background: var(--site-color07);
  color: var(--site-color03);
  font-weight: 700;
  text-align: left;
}

.sec01-table tbody td.is-active {
  background: var(--site-color11);
  font-weight: 700;
}

.sec01-note {
  margin-top: var(--s2);
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--site-color13);
}
span.year {
  font-size: 2.3rem;
}

@media screen and (max-width: 767px) {
  .sec01-box {
    padding: var(--s1);
    border-radius: 1rem;
  }

  .sec01-table th,
  .sec01-table td {
    padding: var(--s1);
    font-size: 1.1rem;
  }

  .sec01-table tbody th {
    width: 8rem;
  }
}

/* ---------------------------------------------
  sec-graph 収益性グラフ + POINT
--------------------------------------------- */
.sec-graph {
  background: var(--site-color03);
  color: #fff;
}

.sec-graph .c-heading01,
.sec-graph .c-heading01__en {
  color: #fff;
}

.sec-graph .c-lead {
  color: #fff;
}

.sec-graph .c-lead__mark {
  color: var(--site-color18);
  font-weight: 700;
}

.chart {
  max-width: 75rem;
  margin: 0 auto var(--s10);
  padding: var(--s4);
  background: #fff;
  border-radius: 1.6rem;
}

.chart svg {
  display: block;
  width: 100%;
  height: auto;
}

.point {
  max-width: 84rem;
  margin: var(--s6) auto 0;
  padding: var(--s4) var(--s4) var(--s4) 11rem;
  background: #fff;
  border-radius: 1.6rem;
  position: relative;
}

.point__icon {
  width: 8rem;
  position: absolute;
  top: 50%;
  left: var(--s3);
  transform: translateY(-50%);
}

.point__title {
  font-size: 1.9rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--site-color03);
}

.point__txt {
  margin-top: var(--s1);
  font-size: 1.4rem;
  line-height: 1.8;
  color: var(--site-color08);
}
#page .low-sec {
  padding-top: 0;
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .point {
    padding: 8rem var(--s2) var(--s2);
  }

  .point__icon {
    width: 6rem;
    top: var(--s2);
    left: 50%;
    transform: translate(-50%, 0);
  }

  .point__title {
    font-size: 1.5rem;
    text-align: center;
  }

  .point__txt {
    text-align: center;
  }
}

/* ---------------------------------------------
  sec02 簡易3選
--------------------------------------------- */

.sec02-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
  margin-top: var(--s6);
}

.sec02-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1.2rem;
  overflow: hidden;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.08);
}

.sec02-card__band {
  padding: var(--s2);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
}

.sec02-card--01 .sec02-card__band {
  background: var(--site-color19);
}

.sec02-card--02 .sec02-card__band {
  background: var(--site-color17);
}

.sec02-card--03 .sec02-card__band {
  background: var(--site-color03);
}

.sec02-card__body {
  flex: 1;
  padding: var(--s3);
  display: flex;
  flex-direction: column;
}

.sec02-card__title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: var(--site-color03);
}

.sec02-card__name {
  margin-top: var(--s1);
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

.sec02-card__img {
  margin-top: var(--s2);
  border-radius: 0.8rem;
  overflow: hidden;
}

.sec02-card__list {
  margin-top: var(--s2);
  flex: 1;
}

.sec02-card__list li {
  padding: 0.6rem 0 0.6rem 2.2rem;
  font-size: 1.3rem;
  line-height: 1.6;
}

.sec02-card__list li::before {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: url("./img/icon-check.png") no-repeat center/contain;
  position: absolute;
  top: 0.5rem;
  left: 0;
}

.sec02-card__btn {
  margin-top: var(--s3);
}

.sec02-card__btn a {
  display: block;
  padding: var(--s2);
  background: var(--site-color18);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 5rem;
  transition: opacity 0.3s;
}

.sec02-card__btn a:hover {
  opacity: 0.7;
}
#sec02 table th {
  width: 90px;
}
#sec02 .btn-tel {
  max-width: 46rem;
  width: 100%;
  margin: var(--s2) auto;
}
#sec02 .btn-web {
  margin: var(--s2) auto 0;
}

@media screen and (max-width: 767px) {
  .sec02-cards {
    grid-template-columns: 100%;
    gap: var(--s3);
  }
  #sec02 .l-grid-three {
    grid-gap: var(--s4) !important;
  }
}

/* ---------------------------------------------
  sec03 In details（会社詳細）
--------------------------------------------- */
.bg-02 {
  background: var(--base);
}

#sec03 table th {
  width: 15rem;
}
.sec03-tag {
  display: inline-block;
  margin: var(--s3) auto 0;
  padding: 0.6rem var(--s3);
  background: var(--site-color18);
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 5rem;
}

.sec03-tag-wrap {
  text-align: center;
}
.onb-item-title-frame {
  padding: var(--s2);
  background-color: var(--main);
  position: relative;
}
.onb-item-title-icon {
  width: 8.5rem;
  height: 8.5rem;
  border-radius: 50%;
  overflow: hidden;
  position: absolute;
  top: -4rem;
  left: -2rem;
}
.onb-item-title-icon img {
  width: 100%;
}
.l-onb-item-title {
  color: #fff;
  display: flex;
  align-items: center;
  gap: var(--s2);
}
.l-onb-item-title__side,
.l-onb-item-title__main {
  padding: var(--s2);
  text-align: center;
  line-height: 1.2;
}

.l-onb-item-title__side span {
  /*! font-size: 1.4rem; */
}
.l-onb-item-title__side {
  width: calc((100% - var(--s2)) * 0.3);
  font-size: 2.3rem;
  font-weight: 700;
  background-color: var(--sub_01);
}
.l-onb-item-title__main {
  width: calc((100% - var(--s2)) * 0.7);
}
.onb-item-title-catch {
  margin-bottom: var(--s1);
  font-size: 2rem;
  font-weight: 700;
  display: block;
}
.onb-item-title-catch--underline {
  padding-bottom: var(--s1);
  border-bottom: 5px solid var(--site-color15);
  display: inline-block;
}
.onb-item-title-title {
  font-size: 4rem;
  font-weight: 700;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  .onb-item-title-frame {
    padding: var(--s2);
  }
  .onb-item-title-icon {
    width: 6rem;
    height: 6rem;
    position: absolute;
    top: -2rem;
    left: -1rem;
  }
  .l-onb-item-title {
    flex-direction: column;
  }
  .l-onb-item-title__side,
  .l-onb-item-title__main {
    width: 100%;
    font-size: 2.1rem;
    padding: var(--s1);
  }
  .l-onb-item-title__side span,
  .l-onb-item-title__main span {
    font-size: 1.6rem;
  }
  .sec03-box .sec03-sub-heading {
    font-size: 2rem;
    padding-bottom: 0;
  }
  .sec03-box .sec03-reason {
    padding: var(--s2) var(--s2) var(--s3);
  }
  .sec03-reason .sec03-reason__title {
    font-size: 1.8rem;
    line-height: 1.4;
  }
  #sec03 .recommend-box {
    padding: var(--s2);
  }
}

.sec03-box {
  margin: var(--s8) auto 0;
  padding: 0 var(--s6) var(--s6);
  background: #fff;
}
.sec03-box:first-of-type {
  margin-top: var(--s5);
}

.sec03-company-name {
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  color: var(--site-color03);
}

.sec03-banner__badges {
  display: flex;
  justify-content: center;
  gap: var(--s2);
  position: absolute;
  bottom: var(--s2);
  left: 0;
  width: 100%;
}

.sec03-banner__badges span {
  padding: 0.6rem 1.4rem;
  background: var(--site-color18);
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 5rem;
}

.sec03-sub-heading {
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  color: var(--site-color03);
  position: relative;
  padding-bottom: var(--s2);
}

.sec03-sub-heading::after {
  content: "";
  width: 6rem;
  height: 0.4rem;
  background: var(--site-color17);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.sec03-reason-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
  margin-top: var(--s2);
}

.sec03-reason {
  padding: var(--s3);
  background: #ffffff;
}

.sec03-reason__num {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--site-color17);
}

.sec03-reason__title {
  margin-top: var(--s1);
  padding-bottom: var(--s2);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.6;
  color: var(--sub_03);
  position: relative;
}
.sec03-reason__title::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: var(--base);
}
.sec03-reason__title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 3px;
  background-image: linear-gradient(90deg, var(--sub_03), var(--sub_02));
}

.sec03-reason__txt {
  margin-top: var(--s1);
  line-height: 1.8;
}

.sec03-title {
  padding-bottom: var(--s2);
  padding-left: 2.8rem;
  font-size: 3rem;
  font-weight: 700;
  border-bottom: 3px solid var(--gray);
  position: relative;
}
.sec03-title::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: linear-gradient(
    135deg,
    var(--sub_03) 0%,
    var(--sub_01) 81%
  );
  position: absolute;
  top: 20%;
  left: 0;
}

.sec03-table {
  width: 100%;
  margin-top: var(--s3);
  border-collapse: collapse;
}

.sec03-table th,
.sec03-table td {
  padding: var(--s2);
  border: 1px solid var(--site-color16);
  font-size: 1.4rem;
  line-height: 1.6;
}

.sec03-table th {
  width: 18rem;
  background: var(--site-color07);
  color: var(--site-color03);
  text-align: left;
}

.sec03-voice {
  display: flex;
  align-items: flex-start;
  gap: var(--s3);
  margin-top: var(--s4);
}

.sec03-voice__img {
  width: 10rem;
  flex-shrink: 0;
}

.sec03-voice__body {
  flex: 1;
}

.sec03-voice__bubble {
  padding: var(--s3);
  background: var(--site-color07);
  border-radius: 1.2rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--site-color03);
  position: relative;
}

.sec03-voice__effect {
  display: inline-block;
  margin-top: var(--s2);
  padding: 0.6rem var(--s2);
  background: var(--site-color04);
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 0.6rem;
}

.sec03-voice__txt {
  margin-top: var(--s2);
  font-size: 1.3rem;
  line-height: 1.8;
}

.sec03-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1);
  margin-top: var(--s3);
}

.sec03-area-list li {
  padding: 0.8rem 1.6rem;
  background: var(--site-color07);
  color: var(--site-color03);
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 5rem;
}

.sec03-note-box {
  max-width: 24rem;
  margin-top: var(--s2);
  margin-left: auto;
  padding: var(--s2);
  background: var(--site-color02);
  border: 1px dashed var(--site-color17);
  border-radius: 0.8rem;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--site-color08);
}

@media screen and (max-width: 767px) {
  .sec03-box {
    padding: 0 var(--s2) var(--s2);
    border-radius: 1rem;
  }

  .sec03-company-name {
    font-size: 2rem;
  }

  .sec03-reason-list {
    grid-template-columns: 100%;
  }

  .sec03-table th {
    width: 10rem;
    font-size: 1.2rem;
  }

  .sec03-voice {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sec03-note-box {
    margin-right: auto;
  }
  .sec03-box .sec03-title {
    font-size: 2rem;
  }
  .sec03-title::before {
    width: 15px;
    height: 15px;
    top: 18%;
  }
  .onb-index01-wrap {
    width: 90%;
  }
  .onb-index01-title {
    padding-left: var(--s3);
  }
  .onb-index01-title {
    font-size: 1.8rem;
  }
  #sec03 .l-stack-large {
    gap: var(--s4);
  }
}

.onb-com-box02-r-frame,
.onb-com-box02-l-frame {
  padding: var(--s4);
  background: #f5f7f8;
  position: relative;
}

.onb-com-box02-r-arrow-l {
  position: relative;
}
.onb-com-box02-r-arrow-l::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-right: 16px solid #f5f7f8;
  position: absolute;
  top: 5rem;
  left: -16px;
}
.l-onb-com-box02-r {
  display: flex;
  flex-wrap: wrap;
}
.l-onb-com-box02-r__side {
  width: calc((100% - var(--s5)) * 0.2);
  text-align: center;
  margin-top: 0.5rem;
}
.l-onb-com-box02-r__side img {
  max-width: 100%;
}
.l-onb-com-box02-r__main {
  width: calc((100% - var(--s5)) * 0.8);
}
.onb-com-box02-r-imgcap {
  margin-top: var(--s1);
  text-align: center;
  font-size: 1.2rem;
}
.onb-com-box02-r-catch {
  margin-bottom: var(--s2);
}

.onb-com-box02-r-catch,
.onb-com-box02-l-catch {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 2;
  color: var(--sub_03);
}
.onb-com-box02-r-caption {
  text-align: left;
}

.onb-com-box02-l-arrow-r {
  position: relative;
}
.onb-com-box02-l-arrow-r::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 16px solid #f5f7f8;
  position: absolute;
  top: 5rem;
  right: -16px;
}
.l-onb-com-box02-l {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
.l-onb-com-box02-l__side {
  width: calc((100% - var(--s5)) * 0.2);
  text-align: center;
  margin-top: 0.5rem;
}
.l-onb-com-box02-l__side img {
  max-width: 100%;
}
.l-onb-com-box02-l__main {
  width: calc((100% - var(--s5)) * 0.8);
}
.onb-com-box02-l-imgcap {
  margin-top: var(--s1);
  text-align: center;
  font-size: 1.2rem;
}
.onb-com-box02-l-catch {
  margin-bottom: var(--s2);
}

.onb-com-box02-l-caption {
  text-align: left;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  .l-onb-com-box02-l {
    padding: var(--s2) var(--s2) var(--s3);
    display: block;
    background: #f5f7f8;
  }
  .onb-com-box02-l-frame {
    padding: 0;
    background-color: transparent;
    border: none;
  }
  .onb-com-box02-l-arrow-r::before {
    display: none;
  }
  .l-onb-com-box02-l__side {
    width: 120px;
    margin: 0 auto var(--s2);
    float: none;
  }
  .l-onb-com-box02-l__main {
    width: 100%;
  }
  .onb-com-box02-l-catch {
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: center;
  }
  .onb-com-box02-l-imgcap {
    margin-top: 1.4rem;
  }
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  .l-onb-com-box02-r {
    padding: var(--s2);
    display: block;
    background: #f5f7f8;
  }
  .onb-com-box02-r-frame {
    padding: 0;
    background: none;
    border: none;
  }
  .onb-com-box02-r-arrow-l::before {
    display: none;
  }
  .l-onb-com-box02-r__side {
    width: 120px;
    margin: 0 auto var(--s2);
    float: none;
  }
  .l-onb-com-box02-r__main {
    width: 100%;
  }
  .onb-com-box02-r-catch {
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: center;
  }
  .onb-com-box02-r-imgcap {
    margin-top: 1.4rem;
  }
}

.onb-center-img {
  max-width: 64%;
  margin: 0 auto;
}

#sec03 .onb-center-img {
  margin: var(--s2) auto 0;
}

/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  .onb-center-img {
    max-width: 100%;
  }
}

.tag-list-6c {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s2);
}
.tag-list-6c li {
  padding: 0.8rem 1.3rem 0.8rem 0.8rem;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
  position: relative;
  display: flex;
}
.tag-list-6c li::before {
  display: none;
}
.triangle-right-bottom::after {
  content: "";
  width: 0.1rem;
  height: 0.1rem;
  border-top: 0.5rem solid transparent;
  border-left: 0.5rem solid transparent;
  position: absolute;
  right: 0.5rem;
  bottom: 0.5rem;
}
.onb-tag-colored {
  background-color: rgba(50, 163, 154, 0.3);
  font-weight: bold;
}
.onb-tag-colored::after {
  border-right: 0.5rem solid var(--sub_01);
  border-bottom: 0.5rem solid var(--sub_01);
}
.onb-tag-colored .tag-name {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.7rem;
  line-height: 1.4;
}
.onb-help-content {
  width: 30rem;
  padding: 2rem;
  background: #fff;
  white-space: normal;
  transform: translate(-50%, -100%);
  transition: opacity 0.6s;
  visibility: hidden;
  border: 3px solid var(--sub_03);
  position: absolute;
  top: -1.2rem;
  left: 50%;
  z-index: 5;
}

.onb-help-content p {
  font-weight: normal;
  text-align: left;
  line-height: 1.4;
}

.onb-help-content-area div:not(.dialog-btn-close) {
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  font-size: 1.8rem;
  color: var(--sub_03);
  border-bottom: 1px solid var(--sub_03);
}
/* 吹き出し用 */
.dialog--pos-left {
  left: 2rem;
  transform: translate(0, -100%);
}
.dialog--pos-left::after {
  left: 2.8rem;
  transform: translate(0, 100%);
}
.dialog--pos-right {
  right: 2rem;
  left: auto;
  transform: translate(0, -100%);
}
.dialog--pos-right::after {
  left: auto;
  right: 2.8rem;
  transform: translate(0, 100%);
}
.dialog {
  opacity: 0;
}
.dialog.is-show {
  visibility: visible;
  opacity: 1;
}
/* SP用のボタン非表示 */
.dialog-btn-close {
  display: none;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  .onb-taglist-bg {
    padding: var(--s2) var(--s1);
  }
  .tag-list-6c {
    gap: var(--s1);
  }
  .tag-list-6c li {
    width: calc((100% - var(--s1)) / 2);
    white-space: normal;
  }
  .onb-help-content {
    width: 100%;
    height: 100vh;
    padding: 0;
    background-color: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 300;
  }
  .onb-help-content-area {
    width: 80%;
    max-height: 80vh;
    padding: var(--s3);
    background-color: #fff;
    border: 2px solid var(--sub_03);
    overflow-y: auto;
    position: relative;
  }
  /* 吹き出し用 */
  .dialog--pos-left {
    left: 0;
    transform: inherit;
  }
  .dialog::after {
    left: 2.8rem;
    transform: inherit;
  }
  .dialog--pos-right {
    right: 0;
    left: auto;
    transform: inherit;
  }
  .dialog::after {
    left: auto;
    right: 2.8rem;
    transform: translate(0, 100%);
  }
  /* SP用ボタンの設定 */
  .dialog-btn-close {
    display: block;
    padding: var(--s2);
    font-weight: 700;
    color: var(--sub_03);
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    z-index: 1;
  }
}

.section-title05 {
  width: 100%;
  margin-top: 5rem;
  padding: var(--s4);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--txt);
  line-height: 1.5;
  text-align: center;
  background-color: var(--base);
  position: relative;
}
.section-title05::before,
.section-title05::after {
  content: "";
  width: 4rem;
  height: 4rem;
  background-color: var(--main);
  position: absolute;
  z-index: -1;
}
.section-title05::before {
  bottom: -0.5rem;
  left: -0.5rem;
}
.section-title05::after {
  top: -0.5rem;
  right: -0.5rem;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  .section-title05 {
    padding: var(--s2);
    font-size: 2.6rem;
  }
}
.section-title08 {
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding: var(--s3);
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  background-color: var(--main);
  text-align: center;
  line-height: 1.5;
  position: relative;
}
.section-title08::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 2rem solid transparent;
  border-left: 2rem solid transparent;
  border-right: 2rem solid var(--main);
  border-bottom: 2rem solid var(--main);
  transform: translateX(-50%) rotate(45deg);
  position: absolute;
  left: 50%;
  bottom: -2rem;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  .section-title08 {
    padding: var(--s2);
    font-size: 2.6rem;
  }
  .section-title08::after {
    bottom: -1.5rem;
  }
}
.conclusion-box-frame {
  margin-top: 5rem;
  padding: var(--s2) var(--s4) var(--s4) var(--s4);
  background: var(--base);
}
.conclusion-box-ttl {
  position: relative;
}
.conclusion-box-ttl__icon-frame {
  position: absolute;
  left: -4.8rem;
  bottom: 7rem;
  z-index: 10;
}
.conclusion-box-ttl__icon {
  width: 10rem;
  height: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--sub_02);
  color: var(--txt);
}

#low-page .conclusion-box-frame .btn-internal a {
  background: var(--sub_01) url("./img/arrow-wh-down.svg") no-repeat center
    right 2rem / auto 2em;
}
#low-page .conclusion-box-ttl__icon {
  top: 4rem;
  position: relative;
}
.conclusion-box-ttl__icon::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--main);
  position: absolute;
  right: -1rem;
  bottom: -1rem;
  z-index: -1;
}
.conclusion-box-ttl__icon span {
  color: var(--txt);
  font-size: 2rem;
  font-weight: 700;
}
.conclusion-box-ttl__text {
  position: relative;
  padding-top: var(--s2);
  padding-bottom: var(--s2);
  margin-left: 10rem;
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--sub_03);
}
.conclusion-box-ttl__text::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: var(--gray);
}
.conclusion-box-ttl__text::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 3px;
  background-image: linear-gradient(90deg, var(--sub_03), var(--sub_02));
}
.conclusion-box-content {
  margin-left: 10rem;
  z-index: 5;
}
.recommend-box {
  background: linear-gradient(180deg, var(--light_blue) 0%, var(--base) 100%);
  padding: var(--s5) var(--s4) var(--s5);
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  .conclusion-box-ttl__icon-frame {
    top: -5.2rem;
    left: -2.6rem;
    bottom: inherit;
  }
  .conclusion-box-frame {
    padding-left: var(--s2);
    padding-right: var(--s2);
  }
  .conclusion-box-ttl__icon {
    width: 6rem;
    height: 6rem;
  }
  .conclusion-box-ttl__icon::after {
    right: -0.5rem;
    bottom: -0.5rem;
  }
  .conclusion-box-ttl__icon span {
    font-size: 1.6rem;
  }
  .conclusion-box-ttl__text {
    margin-left: 0;
    padding-left: 5rem;
    padding-top: var(--s1);
    padding-bottom: calc(var(--s4) / 2);
    font-size: 2.3rem;
    line-height: 1.4;
  }
  .conclusion-box-content {
    margin-left: 0;
  }
  .l-onb-conclusion-img {
    width: 36%;
  }
  .c-heading01__en {
    font-size: 1.8rem;
  }
  #sec02 .sub-catch {
    font-size: 2.3rem;
  }
  .onb-item-title-title {
    font-size: 2.3rem;
    line-height: 1.4;
  }
  #sec03 .sec03-box .thb-box-full {
    margin-right: calc(var(--s2) * -1);
    margin-left: calc(var(--s2) * -1);
  }
}
/*------------------------------------------
    3box column settings
*/
.column-small {
  padding: var(--s2);
  border: 1px solid #ccc;
}
#page .low-sec .column-small {
  padding-top: 0;
}
#low-page .low-sec .column-small ul:not([class]) {
  margin-block: 1rem;
}
.low-sec .column-small .btn-web {
  margin: var(--s1) auto;
}

#sec02 .column-small {
  padding-top: 0;
  background-color: #ffffff;
  justify-content: flex-start;
}

.thb-box-full {
  margin-right: calc(var(--s2) * -1);
  margin-left: calc(var(--s2) * -1);
}
#sec03 .thb-box-full {
  margin-right: calc(var(--s6) * -1);
  margin-left: calc(var(--s6) * -1);
}

.arrow-title {
  margin-bottom: 2.3rem;
  padding: var(--s2) 0;
  font-size: 1.8rem;
  font-weight: 700;
  background-color: var(--main);
  text-align: center;
  line-height: 1.5;
  position: relative;
  color: #ffffff;
}
#sec02 .sub-catch {
  font-size: 2.5rem;
  color: var(--sub_03);
  margin-bottom: var(--s3);
  display: inline-block;
}
#sec02 .small {
  font-size: 3rem;
}
#page .low-sec .c-heading01 .small {
  font-size: 2.5rem;
}
#sec04 .column-small .arrow-title {
  margin-bottom: 0;
  min-height: 95px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#sec04 .column-small .arrow-title a {
  color: #ffffff;
  width: 100%; /* または flex: 1; */
}
#sec04 table th {
  width: 12rem;
}

.arrow-title::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 1.5rem solid transparent;
  border-left: 1.5rem solid transparent;
  border-right: 1.5rem solid var(--main);
  border-bottom: 1.5rem solid var(--main);
  transform: translateX(-50%) rotate(45deg);
  position: absolute;
  left: 50%;
  bottom: -1.3rem;
}
#sec04 .arrow-title::after {
  content: none;
}
#sec04 .arrow-title a {
  text-decoration: none;
  font-size: 2.3rem;
  display: block;
  padding-right: var(--s6);
  line-height: 1.4;
  text-align: center;
  position: relative;
}
#sec04 .arrow-title a:after {
  background: url(img/bnn_arr.svg) no-repeat right / 1em;
  content: "";
  width: 3rem;
  aspect-ratio: 1;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
#sec04 .arrow-title .small {
  font-size: 1.8rem;
}
#sec04 .column-small {
  padding-top: 0;
  background-color: #f5f7f8;
  border: none;
  justify-content: flex-start;
}

.title-catch {
  padding: 0rem 0.8rem 1.6rem 0.8rem;
  font-size: 2.1rem;
  font-weight: 700;
  color: var(--site-color03);
  text-align: center;
  line-height: 1.5;
  border-bottom: 5px solid rgba(var(--site-color05-rgb), 0.5);
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  .arrow-title {
    font-size: 2.3rem;
  }
  #sec04 .arrow-title a {
    font-size: 2.3rem;
  }
  .title-catch {
    font-size: 2.3rem;
  }
  #page .low-sec .c-heading01 .small {
    font-size: 1.8rem;
    line-height: 1.4;
    display: inline-block;
    margin-bottom: var(--s1);
  }
  #sec04 .l-stack-large {
    gap: var(--s4);
  }
  #sec04 .acc-more-btn span {
    margin: var(--s2) auto;
  }
}
.title-catch span {
  font-size: 1.6rem;
}
.capture img {
  width: 100%;
  aspect-ratio: 650 / 308;
  object-fit: cover;
}
.scroll-caption {
  display: block;
  max-width: 100%;
  padding: 0 0 0.3rem 0;
  text-align: left;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: thin;
}

/* ---------------------------------------------
  sec05
--------------------------------------------- */
.text-area {
  line-height: 2;
}
.summary-box-l {
  padding: var(--s4);
  border: 3px solid var(--site-color05);
  display: grid;
  grid-auto-rows: minmax(10px, auto) 1fr;
  grid-template-areas: "catch img" "content img";
}
.summary-box-l-catch {
  padding: var(--s2) var(--s1) var(--s2) 0;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.5;
  background-size: 6rem 6rem;
  grid-area: catch;
  position: relative;
  margin-bottom: var(--s2);
}
.summary-box-l-img {
  padding-left: var(--s4);
  grid-area: img;
}
.summary-box-l-content {
  grid-area: content;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  .text-area {
    font-size: 1.4rem;
  }
  .summary-box-l {
    padding: var(--s2);
    display: block;
  }
  .summary-box-l-catch {
    margin-bottom: var(--s2);
    font-size: 2.3rem;
  }
  .summary-box-l-img {
    padding-left: 0;
    margin-bottom: var(--s2);
  }
  #sec02 .small {
    font-size: 2rem;
  }
}
.text-area {
  line-height: 1.8;
}
.summary-box-r {
  padding: var(--s4);
  border: 3px solid var(--site-color05);
  display: grid;
  grid-auto-rows: minmax(10px, auto) 1fr;
  grid-template-areas: "img catch" "img content";
}
.summary-box-r-catch {
  padding: var(--s2) var(--s1) var(--s2) 0;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1.5;
  background-size: 6rem 6rem;
  grid-area: catch;
  position: relative;
  margin-bottom: var(--s2);
}
.summary-box-r-catch:before,
.summary-box-l-catch:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background-color: #ffffff;
}

.summary-box-r-catch:after,
.summary-box-l-catch:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 3px;
  background-image: linear-gradient(90deg, var(--sub_03), var(--sub_02));
}
.summary-box-r-img {
  padding-right: var(--s4);
  grid-area: img;
}
.summary-box-r-content {
  grid-area: content;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  .text-area {
    font-size: 1.4rem;
  }
  .summary-box-r {
    padding: var(--s2);
    display: block;
  }
  .summary-box-r-catch {
    margin-bottom: var(--s2);
    font-size: 2.3rem;
    line-height: 1.4;
  }
  .summary-box-r-img {
    padding-right: 0;
    margin-bottom: var(--s2);
  }
}
/*------------------------------------------
    2box column settings
*/
.column-medium {
  padding: var(--s4);
  border: 1px solid #ccc;
}
.twb-box-full {
  width: calc(100% + var(--s8));
  margin-left: calc(var(--s4) * -1);
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  .column-medium {
    padding: var(--s2);
  }
  .twb-box-full {
    width: calc(100% + var(--s4));
    margin-left: calc(var(--s2) * -1);
  }
  #sec02 table th {
    width: 9rem;
  }
  #low-page .low-sec .c-heading01 .small {
    font-size: 2rem;
  }
}

/* ---------------------------------------------
  sec06
--------------------------------------------- */
.twb-img-title-area {
  display: flex;
  background-color: var(--main);
  align-items: end;
  color: #ffffff;
}
.twb-img-title-image {
  width: 25%;
  padding-left: var(--s1);
}
.twb-img-title-image img {
  margin-top: -4rem;
  width: 100%;
}
.twb-img-title {
  width: 100%;
  padding: var(--s2) var(--s2) var(--s2) var(--s3);
  line-height: 1.5;
  font-size: 2.1rem;
  font-weight: 700;
}

.twb-img-title a {
  color: #ffffff;
}
.twb-img-title-sub {
  margin-bottom: 0.8rem;
  padding: var(--s1);
  background-color: #fff;
  color: var(--site-color03);
  font-size: 1.4rem;
  line-height: 1;
  display: inline-block;
}
.twb-img-title-small {
  font-size: 1.4rem;
}

.twb-img-title a {
  background: url(img/bnn_arr.svg) no-repeat right/1em;
  display: block;
  padding-right: var(--s3);
}

#sec06 .column-medium {
  background: #f5f7f8;
  border: none;
  padding-top: 0;
}
#sec06 .twb-img-title {
  font-size: 2.3rem;
  min-height: 100px;
  display: flex;
  align-items: center;
}
#sec06 .twb-img-title a {
  width: 100%; /* または flex: 1; */
}
/* ---------------------------------------------
下層
--------------------------------------------- */
.icon-head02 {
  margin-top: var(--s4);
  margin-bottom: var(--s4);
  margin-left: var(--s4);
  padding: var(--s4) var(--s2) var(--s4) var(--s12);
  line-height: 1.5;
  font-size: 2.8rem;
  font-weight: 700;
  background-color: var(--base);
  position: relative;
}
.icon-head02::before {
  content: "";
  width: 10.5rem;
  height: 10.5rem;
  background: url("./img/icon-head-point.svg") no-repeat center center;
  background-size: cover;
  position: absolute;
  left: -4rem;
  top: -1.6rem;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  .icon-head02 {
    margin-left: var(--s2);
    padding: var(--s2) var(--s2) var(--s2) var(--s7);
    font-size: 1.8rem;
  }
  .icon-head02::before {
    content: "";
    width: 6rem;
    height: 6rem;
    left: -1.6rem;
  }
}
.bg-01 {
  background: url("./img/bg-1.png") repeat top center;
  background-size: cover;
}
.selections {
  max-width: 48rem;
  margin: var(--s4) auto var(--s3);
}
.section-title01-frame {
  padding-top: 21rem;
  position: relative;
}
.section-title01-frame::before {
  content: "";
  width: 100%;
  min-height: 30rem;
  background: url("./img/section-title01-frame_bg.jpg") no-repeat center center;
  background-size: cover;
  transform: translateX(-50%);
  position: absolute;
  top: 16%;
  left: 50%;
  z-index: -1;
}

.section-title01-bg {
  padding: 4rem 7.2rem 5rem 7.2rem;
  background-color: rgba(226, 240, 244, 0.85);
  position: relative;
  z-index: 2;
}
.low-sec .section-title01-frame .section-title01-bg {
  margin-bottom: var(--s3);
}
#three-selections .section-title01-frame .section-title01-bg {
  margin: 0 auto;
  width: 85%;
}
.section-title01 {
  margin-bottom: 5rem;
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  text-align: center;
  position: relative;
}
.section-title01::before {
  content: "INDEX";
  padding: 0 var(--s2);
  font-size: 2.6rem;
  transform: translateX(-50%);
  color: var(--site-color01);
  position: absolute;
  top: -4.8rem;
  left: 50%;
  z-index: 3;
}
.section-title01::after {
  content: "";
  height: 1px;
  transform: translateX(-50%);
  background-color: #ccc;
  position: absolute;
  top: -2rem;
  left: 50%;
  z-index: 2;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  .section-title01-bg {
    padding: var(--s3) var(--s2) var(--s3) var(--s2);
  }
  .section-title01 {
    margin-bottom: var(--s3);
    font-size: 2.4rem;
  }
  .section-title01::before {
    font-size: 1.8rem;
    top: -3.2rem;
  }
}
.low-sec .c-heading01 {
  font-size: 4.2rem;
}
.low-sec .c-heading01__en {
  font-size: 2rem;
}
#low-page .low-sec .c-heading01 .small {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .low-sec .c-heading01 {
    font-size: 2.6rem;
    margin-bottom: var(--s3);
  }
}
.pc-fix-banner01 {
  width: 21rem;
  position: fixed;
  right: 0;
  bottom: 30rem;
  z-index: 50;
}
.pc-fix-banner01-repair {
  bottom: 9.5rem;
}
.pc-fix-banner01 a {
  /* color: #fff; */
  text-decoration: none;
  display: block;
}
.pc-fix-banner01 a:hover {
  opacity: 0.7;
}
.pc-fix-banner01-img {
  aspect-ratio: 1532 / 1150;
  position: relative;
  overflow: hidden;
  background-image: url(img/bnn.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.pc-fix-banner01-img img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.pc-fix-banner01-text {
  padding: var(--s4) var(--s2);
  color: #fff;
  position: absolute;
  inset: 0;
  z-index: 5;
}
.pc-fix-banner01-text::after {
  content: "";
  width: 2rem;
  height: 2rem;
  background-size: 2rem;
  background-image: url(img/bnn_arr.svg);
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 50%;
  position: absolute;
  right: 1.4rem;
  bottom: 2.3rem;
}
.pc-fix-banner01-text p {
  margin: 0;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.pc-fix-banner01-text p.text-small {
  display: inline-block;
  background-color: var(--sub_01);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 0.3rem var(--s1);
  position: absolute;
  top: -1rem;
  left: 0;
}
.pc-fix-banner01-text p .small {
  font-size: 1.8rem;
}
.pc-fix-banner01-text p .big_num {
  font-size: 4.4rem;
  display: inline-block;
  margin: 0 0.4rem;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  .pc-fix-banner01 {
    display: none;
  }
}
.sp-fix-banner01 {
  display: none;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  .sp-fix-banner01 {
    display: block;
    width: 77%;
    background-color: #000;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 50;
    background: url(img/bnn.png) no-repeat;
    background-size: cover;
    background-position: bottom;
  }
  .sp-fix-banner01-text {
    padding: var(--s3) var(--s2) var(--s2);
    color: #fff;
    position: relative;
  }
  .sp-fix-banner01-text::before {
    content: "FIT残存期間別";
    width: 12rem;
    height: 3rem;
    background: var(--sub_01);
    position: absolute;
    top: -1.5rem;
    left: 0.5rem;
    z-index: 5;
    text-align: center;
    padding-top: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
  }
  .sp-fix-banner01-text p {
    margin: 0;
    line-height: 1.4;
  }
  .sp-fix-banner01-text a {
    padding-right: 2rem;
    color: #fff;
    text-decoration: none;
    background: url("./img/bnn_arr.svg") no-repeat right center / 2rem auto;
    display: block;
    line-height: 1.4;
    font-weight: 700;
  }
  .sp-fix-banner01-text a:hover {
    opacity: 0.7;
  }
}
.acc-more-btn {
  max-width: 46rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.acc-more-btn span {
  width: 100%;
  margin: var(--s5) auto;
  padding: 2rem 6rem 2rem 3rem;
  /* border: 0.2rem solid var(--sub_03); */
  border-radius: 10px;
  background: url("./img/acc-off.svg") no-repeat 95% center var(--base);
  display: block;
  text-align: center;
  transform: translate(0, 0);
  transition: transform 0.3s;
  cursor: pointer;
  z-index: 1;
  background-size: 1.8em;
}
.acc-more-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--site-color03);
  border-width: 0 1px 1px 0;
  transform: translate(0.8rem, 0.8rem);
  border-radius: 4rem;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.acc-more-btn:hover span {
  transform: translate(0.8rem, 0.8rem);
}
.acc-more-btn.is-open span {
  background: url("./img/acc-on.svg") no-repeat 95% center var(--base);
  background-size: 1.8em;
}
.more-content {
  display: none;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  .acc-more-btn {
    margin-right: var(--s1);
  }
  .acc-more-btn span {
    transition: inherit;
    transform: none;
  }
  .acc-more-btn:hover span {
    transform: none;
  }
  .chart {
    padding: 0;
  }
  .low-sec .section-title01-frame {
    padding-top: 5rem;
  }
  .low-sec .section-title01-frame::before {
    top: 0;
  }
  #three-selections .section-title01-frame {
    margin-top: var(--s4);
  }
  #three-selections .section-title01-frame .section-title01-bg {
    width: 100%;
  }
  #three-selections .c-heading01 .small {
    font-size: 1.8rem !important;
  }
  #three-selections .l-stack-large {
    gap: var(--s4);
  }
}
.sec03 .btn-web {
  margin: 0 auto var(--s3);
}

/* ===============================
   【CSS】ここから追尾バナー本体
   =============================== */

/* --- PC: 右下固定のカード型バナー --- */
.wp-banner {
  position: fixed;
  right: 0;
  bottom: 11rem;
  z-index: 10;
  width: 210px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 0;
  overflow: hidden;
  transform: translateY(16px);
}

.wp-banner__header {
  background: #309b93;
  color: #fff;
  padding: 8px 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.wp-banner__body {
  padding: 14px 16px 16px;
}

.wp-banner__thumb {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  background: #e9f1ee; /* 画像未設定時のプレースホルダ */
  margin-bottom: 10px;
}

.wp-banner__title {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 4px;
}
.wp-banner__text {
  font-size: 12px;
  color: #666;
  margin: 0 0 12px;
}

.wp-banner__cta {
  display: block;
  text-align: left;
  background: var(--acc) url(./img/arrow-wh-right.svg) no-repeat center right
    1rem / auto 1.5em;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 6px;
  padding: 12px;
  transition: opacity 0.2s;
}
.wp-banner__cta:hover {
  opacity: 0.6;
}
.wp-banner__cta:focus-visible {
  outline: 2px solid #1a6b54;
  outline-offset: 2px;
}

/* --- SP: 画面下部の固定バーに切り替え --- */
@media (max-width: 767px) {
  .wp-banner {
    display: none !important;
  }
}

/*------------------------------------------------------------
   QC後追加
   PC setting
*/

.sec02-caption {
  margin-top: 0.8em;
  color: #111;
  font-size: 1.3rem;
  line-height: 1.6;
  text-align: center;
  word-break: break-all;
}

#sec02 .l-grid-three {
  margin-top: 4rem;
}

#sec04 .btn-link {
  margin-top: -3rem;
}

#sec04 table {
  margin-top: -2rem;
}

#low-page h1 + p {
  margin-top: var(--s5);
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  #sec04 .btn-link {
    margin-top: 0;
  }

  #sec04 table {
    margin-top: 0;
  }
  .mainvisual-catch-wrap {
    text-align: left;
  }
  .annotation {
    text-align: left !important;
  }
}
#low-page .li-02 ul {
  margin: 1.5rem 0 0;
}
#low-page .li-02 ul li {
  margin-bottom: 0;
  font-weight: bold;
}
.annotation {
  text-align: right;
}

/* ---------------------------------------------
  table-cost-breakdown（規模別費用相場・項目別費用内訳）
--------------------------------------------- */
.table-cost-breakdown {
  table-layout: fixed;
}
.table-cost-breakdown th:first-child,
.table-cost-breakdown td:first-child {
  width: 20%;
}
.table-cost-breakdown th:nth-child(2),
.table-cost-breakdown td:nth-child(2) {
  width: 40%;
}
.table-cost-breakdown th:nth-child(3),
.table-cost-breakdown td:nth-child(3) {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .table-cost-breakdown th:first-child,
  .table-cost-breakdown td:first-child,
  .table-cost-breakdown th:nth-child(2),
  .table-cost-breakdown td:nth-child(2),
  .table-cost-breakdown th:nth-child(3),
  .table-cost-breakdown td:nth-child(3) {
    width: auto;
  }
}
.simplified-chart-cpt {
  display: none;
}
.simplified-chart {
  border-collapse: collapse;
}
.simplified-chart th {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .simplified-chart-cpt {
    margin-bottom: 1rem;
    display: block;
    padding: var(--s1);
    text-align: center;
    font-size: 1.2rem;
    border-radius: 2rem;
    background: #ecf0f7;
    margin-top: var(--s3);
  }
  .l-scroll-x-sp .simplified-chart {
    width: inherit;
    table-layout: auto;
  }
  .l-scroll-x-sp .simplified-chart th,
  .l-scroll-x-sp .simplified-chart td {
    min-width: 20rem;
  }
  #low-page .l-scroll-x-sp table {
    margin-top: 0;
  }
}
