@charset "UTF-8";
/*
---------------------------------------------
    navigation02 ※TOP、下層共通
*/
.header-area-upper {
  padding: var(--s1);
  text-align: right;
  background: var(--pri);
}
.header-title {
  font-size: 1.2rem;
  display: inline-block;
  position: relative;
  color: white;
}
.header-title::before {
  content: "PR";
  padding: 0 0.4rem;
  color: #333;
  font-weight: bold;
  background-color: white;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: -3.2rem;
}
.header-title a {
  text-decoration: none;
}
.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;
}
.gnavi-btn {
  width: var(--s7);
  height: var(--s6);
  background: #333;
  display: flex;
  position: fixed;
  top: var(--s3);
  right: 0;
  z-index: 600;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
}
.gnavi-btn span {
  width: var(--s4);
  height: 0.2rem;
  display: inline-block;
  transform-origin: 50% 50%;
  background: #fff;
  transition: transform 0.4s, opacity 0.4s;
}
.gnavi-btn.is-active span:nth-of-type(1) {
  transform: translateY(0.9rem) 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.9rem) rotate(45deg);
}
.gnavi-btn-close {
  width: 80%;
  margin: 0 auto;
  padding: var(--s2);
  background: #333;
  display: block;
  text-align: center;
  border-radius: 50vh;
}
.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: var(--bg-sub);
  overflow-x: hidden;
  overflow-y: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 500;
  transform: translateX(100%);
  transition: transform 0.8s ease, opacity 0.8s ease;
  opacity: 0;
}
.gnavi-title {
  min-height: var(--s6);
  margin: 0 var(--s8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
.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.6rem;
  height: 1.6rem;
  background: url("img/arrow-01-black-right.svg") no-repeat center/1rem auto;
  position: absolute;
  top: 50%;
  right: var(--s2);
  transform: translate(0, -50%) rotate(0);
  transition: transform 0.3s;
}
.gnavi-list__link--toggle::after {
  background: url("img/arrow-01-black-down.svg") no-repeat center / 100% auto;
}
.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);
}

.mainvisual {
  position: relative;
  padding: var(--s8) 0;
  height: auto;
  overflow-x: clip;
}
.mainvisual .mv-text {
  position: relative;
  display: block;
  z-index: 5;
  max-width: 100rem;
  margin: 0 auto;
  color: white;
}
.mv-text h2 {
  font-size: 4.8rem;
  line-height: 1.4;
  font-weight: bold;
  margin-bottom: var(--s4);
}
.mv-text .mv-label {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--acc);
  background: var(--pri-dark);
  padding: var(--s1) var(--s2);
  margin-bottom: var(--s2);
}
.mv-desc {
  max-width: 65%;
}
.mv-desc .txt-bold {
  font-weight: bold;
  color: #ffd800;
  font-size: 108%;
}
.mainvisual .mv-bg,
.mainvisual .mv-line {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: auto;
  height: auto;
  min-height: 100%;
  max-width: none;
}
.mainvisual .mv-line {
  z-index: 1;
  top: -1px;
  width: auto;
  min-width: 100%;
  height: calc(100% + 5rem);
}
.mainvisual .btn-anchor {
  margin: var(--s3) auto 0 0;
}
.mainvisual-lower {
  height: 14rem;
  position: relative;
  overflow: clip;
  display: block;
}
.mainvisual-lower .mv-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 32rem;
}
.mainvisual-lower a:hover{
  opacity: 0.6;
}
/* ComponentStart: 2.3.1, section-title01 */
.section-title01-frame {
  padding-top: var(--s14);
  position: relative;
  margin-bottom: var(--s6);
}
.section-title01-frame::before {
  content: "";
  width: 100%;
  height: 70rem;
  background: url(img/bg-tit.png) no-repeat;
  background-size: 100% auto;
  transform: translateX(-50%);
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
}
.section-title01-bg {
  padding: 0;
  background-color: transparent;
  border-radius: var(--s2);
  position: relative;
  z-index: 2;
}
.section-title01 {
  margin-bottom: 5rem;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  position: relative;
}
.section-title01::before {
  content: "さらに詳しく";
  color: var(--pri);
  font-size: 1.8rem;
  transform: translateX(-50%);
  position: absolute;
  top: -3.2rem;
  left: 50%;
  z-index: 3;
  padding: 0 0 0 var(--s3);
  background: url(img/energy.svg) no-repeat left center / auto 100%;
}
.section-title01::after {
  content: "";
  height: 1px;
  transform: translateX(-50%);
  background-color: var(--bg-sec);
  position: absolute;
  top: -2rem;
  left: 50%;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .mv-desc {
  max-width: 100%;
}
  .header-area-upper {
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
}
.header-title::before {
  background-color: white;
  display: inline-block;
  top: auto;
  left: auto;
  position: relative;
  transform: none;
  margin-right: var(--s1);
}
  .section-title01-bg {
    padding: var(--s7) var(--s2) var(--s1) var(--s2);
  }
  .section-title01 {
    margin-bottom: var(--s3);
    font-size: 2.4rem;
  }
  .section-title01::before {
    font-size: 1.4rem;
    top: -3rem;
  }
  .mainvisual {
    position: relative;
    padding: var(--s6) var(--s3);
    height: auto;
    overflow-x: clip;
  }
  .mainvisual .mv-text {
    position: relative;
    display: block;
    z-index: 5;
    max-width: 100rem;
    margin: 0 auto;
    color: white;
  }
  .mv-text h2 {
    font-size: 3.2rem;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: var(--s4);
  }
  .mv-text .mv-label {
    display: inline-block;
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--acc);
    background: var(--pri-dark);
    padding: var(--s1) var(--s2);
    margin-bottom: var(--s2);
  }
  .mv-desc .txt-bold {
    font-weight: bold;
    color: #ffd800;
  }
  .mainvisual .mv-bg,
  .mainvisual .mv-line {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    height: auto;
    min-height: 100%;
    max-width: none;
  }
  .mainvisual .mv-line {
    z-index: 1;
    top: 0;
    width: 150%;
    height: auto;
    min-height: auto;
    opacity: 0.4;
  }
  .mainvisual .btn-anchor {
    margin: var(--s3) auto 0 0;
  }
  .mainvisual-lower {
    height: 10rem;
    text-align: center;
  }

  .mainvisual-lower picture img {
    height: 100%;
    width: auto;
    max-width: none;
  }
}
/* ComponentEnd: 2.3.1 */

/* ComponentStart: 2.3.2, section-title02 */
.section-title02-frame {
  margin: var(--s6) 0 var(--s1);
  text-align: center;
  position: relative;
}
.section-title02-frame p {
  text-align: left;
  margin: var(--s5) auto var(--s3);
  max-width: 100rem;
}
.section-title02 {
  font-size: 4rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
}
.section-title02-sub {
  width: 100%;
  margin-bottom: var(--s1);
  font-size: 2rem;
  font-weight: 700;
  color: var(--pri);
  text-align: center;
}
.section-title02-sub span {
  width: 100%;
  padding: 0 0 0 var(--s3);
  position: relative;
}
.section-title02-sub span::before {
  content: "";
  width: 1.8rem;
  height: 2.4rem;
  background-color: #e1c216;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  clip-path: polygon(20% 0, 60% 0, 50% 35%, 80% 35%, 30% 100%, 40% 60%, 10% 60%);
}
.section-title02-sub span::before {
  left: 0;
}
.section-title02-sub span::after {
  right: -16rem;
}
/* ComponentEnd: 2.3.2 */

/* ComponentStart: 2.3.11, icon-head02 */
.icon-head02 {
  display: flex;
  margin-top: var(--s2);
  margin-bottom: var(--s4);
  padding: var(--s2) var(--s3);
  line-height: 1.5;
  font-size: 2.8rem;
  font-weight: 700;
  background-color: var(--sec);
  color: var(--txt-main);
  border-radius: var(--s2);
  position: relative;
  align-items: center;
}
.iconhead02-image {
  width: 4.8rem;
  height: 4rem;
  margin-right: var(--s2);
}
.icon-head02 + .column-medium {
  background: white;
  margin-top: calc(-1 * var(--s9));
  padding: var(--s4);
  border-radius: 0 0 var(--s2) var(--s2);
}
@media screen and (max-width: 767px) {
  .section-title02-frame p{
    padding-right: var(--s2);
    padding-left: var(--s2);
  }
  .section-title02 {
    font-size: 2.8rem;
  }
  .section-title02-sub {
    font-size: 1.6rem;
  }
  .icon-head02 {
    font-size: 1.8rem;
    padding: var(--s2);
  }
  .iconhead02-image {
    width: 3.2rem;
    height: 2.8rem;
  }
}
/* ComponentEnd: 2.3.11 */

/* ComponentStart: 4.31, l-grid-three */
.column-small {
  padding: var(--s2);
}
.thb-box-full {
  width: calc(100% + var(--s4));
  margin-left: calc(var(--s2) * -1);
}
/* ComponentEnd: 4.31 */

/* ComponentStart: 4.30, l-grid-two */
.column-medium {
  padding: var(--s2);
}
.twb-box-full {
  width: calc(100% + var(--s4));
  margin-left: calc(var(--s2) * -1);
}
@media screen and (max-width: 767px) {
  .section-title02-frame{
    margin-top: var(--s2);
  }
  .column-medium {
    padding: var(--s1);
  }
  .twb-box-full {
    width: 100%;
    margin-left: 0;
  }
}
/* ComponentEnd: 4.30 */

/* ComponentStart: 3.0.8, icon-title-r */
.icon-title-area {
  background-color: var(--pri-dark);
  position: relative;
  color: white;
  border-radius: var(--s2) var(--s2) 0 0;
}
.icon-title-obj-r {
  width: 7.2rem;
  height: 6.4rem;
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
.icon-title-obj-r__inner {
  text-align: center;
  font-weight: 700;
}
.icon-title-r {
  padding: var(--s2);
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.icon-title-small {
  font-size: 1.4rem;
}
/* ComponentEnd: 3.0.8 */

/* ComponentStart: 3.0.7, arrow-title */
.arrow-title {
  display: flex;
  margin-bottom: 0;
  padding: var(--s2);
  font-size: 2rem;
  font-weight: 700;
  background-color: var(--pri);
  text-align: center;
  line-height: 1.5;
  position: relative;
  color: var(--txt-white);
  flex-direction: column;
  align-items: center;
}
.bg-02 .arrow-title,
.bg-02--lower .arrow-title{
  font-size: 2.4rem;
  padding-top: var(--s3);
  border-radius: var(--s2) var(--s2) 0 0;
}
.arrow-title::after {
  content: "";
  width: 0;
  height: 0;
  border-top: 2rem solid transparent;
  border-left: 2rem solid transparent;
  border-right: 2rem solid var(--pri);
  border-bottom: 2rem solid var(--pri);
  transform: translateX(-50%) rotate(45deg);
  position: absolute;
  left: 50%;
  bottom: -1.3rem;
  z-index: 2;
}
.arrow-title-sub {
  padding: var(--s1) var(--s3);
  margin-bottom: 0.8rem;
  background-color: var(--pri-dark);
  color: var(--acc);
  border-radius: var(--s2);
  font-size: 2rem;
  line-height: 1;
  display: inline-block;
}
.arrow-title-small {
  font-size: 1.8rem;
}
/* ComponentEnd: 3.0.7 */

/* ComponentStart: 3.7, listbox */
.bg-colored {
  display: flex;
  flex: 1;
}
.listbox-area {
  margin-top: 0;
  padding: var(--s4) var(--s2);
  background-color: var(--txt-white);
  border-radius: 0 0 var(--s2) var(--s2);
  position: relative;
}
.listbox-title {
  margin-top: 0;
  text-align: center;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
.listbox-title span {
  padding: var(--s1) var(--s2);
  font-size: 1.6rem;
  line-height: 1.2;
  color: var(--acc);
  background-color: var(--pri-dark);
  border-radius: 50vh;
  display: inline-block;
  align-content: center;
  height: 100%;
  flex: 1;
}
.listbox-subtitle {
  font-size: 1.8rem;
  text-align: center;
  font-weight: 700;
  background: var(--acc);
}
.listbox-list {
  width: 100%;
}
.listbox-list li {
  padding-left: var(--s3);
  line-height: 1.5;
  background: url("./img/icon-check.png") no-repeat top 0.6rem left;
  background-size: 1.4rem 1.4rem;
}
.listbox-list li span {
  margin-right: var(--s1);
  display: block;
  text-align: center;
}
/* ComponentEnd: 3.7 */

/* ComponentStart: 3.10, i-img */
.center-img-box {
  display: flow-root;
}
.center-img {
  max-width: 60rem;
  margin: 0 auto;
  padding-bottom: var(--s2);
}
.center-img-catch {
  color: var(--pri-dark);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .icon-title-r {
    font-size: 2rem;
  }
  .arrow-title {
    font-size: 1.8rem;
  }
  .bg-01 .l-grid-three,
  .bg-02 .l-grid-three,
  .bg-02--lower .l-grid-three{
    gap: var(--s8);
  }
  .listbox-title span,
  .listbox-subtitle {
    font-size: 1.6rem;
  }
  .bg-02 .arrow-title,
  .bg-02--lower .arrow-title{
    font-size: 2rem;
  }
  .center-img {
    max-width: 100%;
  }
}
.right-img-box {
  display: flow-root;
}
.right-img {
  width: 40%;
  margin-left: var(--s3);
  padding-bottom: var(--s1);
  float: right;
}
.right-img-catch {
  margin-bottom: 1.6rem;
  color: var(--pri-dark);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .right-img {
    width: 100%;
    margin-left: 0;
    padding-bottom: var(--s2);
    float: inherit;
    text-align: center;
  }
}
.left-img-box {
  display: flow-root;
}
.left-img {
  width: 40%;
  margin-right: var(--s4);
  padding-bottom: var(--s1);
  float: left;
}
.left-img-catch {
  margin-bottom: 1.6rem;
  color: var(--pri-dark);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .left-img {
    width: 100%;
    margin-right: 0;
    padding-bottom: var(--s2);
    float: inherit;
    text-align: center;
  }
}
/* ComponentEnd: 3.10 */

/* ComponentStart: 3.0.6, title-catch */
.title-catch {
  margin-top: var(--s1);
  padding: var(--s1) 0;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  background: var(--pri-dark);
  color: var(--acc);
}
.title-catch span {
  display: block;
  color: white;
  font-size: 90%;
}
/* ComponentEnd: 3.0.6 */

/* ComponentStart: 4.1.2.1, onb-item-title-r */
.onb-item-title-frame {
  padding: var(--s4);
  background-color: var(--pri);
  border-radius: var(--s2) var(--s2) 0 0;
  position: relative;
}
.onb-item-title-icon {
  width: 8.5rem;
  height: 8.5rem;
  overflow: hidden;
  position: absolute;
  top: -2.4rem;
  left: 12.4%;
  z-index: 2;
}
.onb-item-title-icon img {
  width: 100%;
}
.l-onb-item-title {
  display: flex;
  gap: var(--s2);
  align-items: center;
}
.l-onb-item-title__side,
.l-onb-item-title__main {
  padding: 0;
  text-align: center;
  line-height: 1.2;
}
.l-onb-item-title__side span {
  font-size: 80%;
  color: var(--acc);
  margin-bottom: 0.8rem;
}
.l-onb-item-title__side {
  width: calc(30% - (var(--s3) / 2));
  color: var(--acc);
  font-size: 2.4rem;
  font-weight: 700;
  background-color: var(--pri-dark);
  border-radius: var(
  --s2);
  padding: var(
  --s3) 0;
  position: relative;
}
.l-onb-item-title__main {
  color: var(--txt-white);
  width: 40%;
}
.onb-item-title-catch {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 2rem;
  display: block;
  line-height: 1.4;
}
.onb-item-title-catch b {
  border-bottom: 5px solid var(--sec);
}
.onb-item-title-title {
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .title-catch {
    font-size: 1.6rem;
  }
  .onb-item-title-frame {
    padding: var(--s2);
    width: calc(100% + var(--s4));
    margin-left: -1.2rem;
  }
  .onb-item-title-title {
    font-size: 2.4rem;
  }
  .onb-item-title-icon {
    width: 6rem;
    height: 6rem;
    position: absolute;
    top: -2.8rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .l-onb-item-title {
    flex-direction: column;
  }
  .l-onb-item-title__side,
  .l-onb-item-title__main {
    width: 100%;
    font-size: 2rem;
  }
  .l-onb-item-title__side span,
  .l-onb-item-title__main span {
    font-size: 1.4rem;
  }
  .onb-item-title-catch {
    font-size: 1.9rem;
    line-height: 1.4;
  }
  .onb-item-title-catch b {
    border-bottom: 3px solid var(--sec);
  }
}
/* ComponentEnd: 4.1.2.1 */
.m-title01 {
  padding: 0;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  color: var(--pri-dark);
}
/* ComponentStart: 4.1.4, onb-m-title6 */
.onb-m-title6 {
  line-height: 1.5;
  font-size: 3.2rem;
  font-weight: 700;
  position: relative;
  padding-left: var(--s3);
}
.onb-m-title6::before {
  content: "";
  width: 0.5rem;
  height: 100%;
  background-color: var(--acc);
  border-radius: var(--s2);
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
/* ComponentEnd: 4.1.4 */

/* ComponentStart: 2.16, ex-contents */
.ex-contents {
  display: flex;
}
.ex-contents-left {
  padding: 1.6rem 3.2rem;
  background-color: var(--pri);
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--txt-white);
  border-radius: var(--s2) 0 0 var(--s2);
}
.ex-contents-left::after {
  content: "";
  width: 2rem;
  height: calc(6rem / 2);
  background-color: var(--pri);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: -1.5rem;
}
.ex-contents-left span {
  width: 100%;
  font-size: 3.2rem;
  line-height: 1.5;
  text-align: center;
  display: block;
}
.ex-contents-right {
  padding: var(--s6) var(--s4);
  background-color: var(--bg-base);
  border-radius: 0 var(--s2) var(--s2) 0;
}
.ex-contents-catch {
  color: var(--pri-dark);
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .onb-m-title6 {
    font-size: 2rem;
  }
  .ex-contents-left {
    padding: 1.6rem;
  }
  .ex-contents-left {
    font-size: 1rem;
  }
  .ex-contents-left span {
    font-size: 2rem;
  }
  .ex-contents-catch {
    font-size: 1.6rem;
  }
  .ex-contents-right {
    padding: var(--s4) var(--s2);
  }
  .ex-contents-right p {
    font-size: 1.4rem;
  }
}
/* ComponentEnd: 2.16 */

/* ComponentStart: 3.9, iconbox01 */
.iconbox01-bg-colored {
  padding-top: 0;
}
.iconbox01-area {
  padding: var(--s3);
  background-color: var(--bg-base);
  position: relative;
  border-radius: var(--s2);
}
.iconbox01-area .caption {
  text-align: left;
}
.iconbox01-image {
  display: flex;
  gap: var(--s2);
  align-items: center;
}
.iconbox01-image img {
  width: 5.4rem;
}
.iconbox01-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--pri-dark);
}
.iconbox01-title span {
  margin-bottom: var(--s1);
  font-size: 1.4rem;
  line-height: 1.5;
  display: block;
}
/* ComponentEnd: 3.9 */

/* ComponentStart: 2.16.1 ex-contents-spv */
.ex-contents-spv {
  display: flex;
}
.ex-contents-spv-left {
  padding: var(--s2);
  background-color: var(--sec);
  font-weight: 700;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--pri-dark);
  border-radius: var(--s2) 0 0 var(--s2);
}
.ex-contents-spv-left::after {
  content: "";
  width: 2rem;
  height: calc(6rem / 2);
  background-color: var(--sec);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  right: -1.5rem;
}
.ex-contents-spv-left span {
  width: 100%;
  font-size: 3.2rem;
  line-height: 1.5;
  text-align: center;
  display: block;
}
.ex-contents-spv-right {
  padding: var(--s3) var(--s4);
  background-color: var(--bg-base);
  border-radius: 0 var(--s2) var(--s2) 0;
  flex: 1;
}
.ex-contents-spv-catch {
  color: var(--pri-dark);
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .iconbox01-image img {
    width: 4rem;
    height: 4rem;
  }
  .iconbox01-title {
    font-size: 1.6rem;
  }
  .for-pc {
    display: none;
  }
  .ex-contents-spv {
    flex-direction: column;
  }
  .ex-contents-spv-left {
    padding: 0.8rem;
    position: relative;
    display: block;
    text-align: center;
    border-radius: var(--s2) var(--s2) 0 0;
  }
  .ex-contents-spv-left::after {
    width: 4rem;
    height: calc(4rem / 2);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    transform: translateX(-50%);
    top: inherit;
    left: 50%;
    right: inherit;
    bottom: -1.5rem;
  }
  .ex-contents-spv-left {
    font-size: 1.4rem;
  }
  .ex-contents-spv-left span {
    font-size: 2rem;
    display: inline;
  }
  .ex-contents-spv-right {
    padding: 3.2rem 1.6rem 3.2rem 1.6rem;
    border-radius: 0 0 var(--s2) var(--s2);
  }
  .ex-contents-spv-catch {
    font-size: 1.6rem;
  }
  .ex-contents-spv-right p {
    font-size: 1.4rem;
  }
}
/* ComponentEnd: 2.16.1 ex-contents-spv */

/* ComponentStart: セクション背景色設定 */
#contents {
  overflow-x: clip;
}
section {
  padding: 0 0 var(--s14);
  position: relative;
}
.bg-00 {
  background: url(img/bg-00.png) no-repeat top left / 35% auto, white;
}
.bg-00 .center-img{
  margin-bottom: var(--s3);
}
.bg-01 {
  background: url(img/bg-01a.png) no-repeat right bottom / 30% auto, var(--bg-sec);
}

.bg-02 {
  background: url(img/bg-02.jpg) no-repeat top center / cover;
  padding-top: var(--s10);
}
.bg-02--lower {
  background: url(img/bg-02--lower.jpg) no-repeat top center / cover;
  padding: var(--s6) 0 var(--s14);
  margin-top: var(--s6);
}
.bg-02 .m-title01,
.bg-02--lower .m-title01{
  align-content: center;
}
.l-center .bg-02--lower {
  position: relative;
  background: transparent;
}
.l-center .bg-02--lower::before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 100%;
  background: url(img/bg-02--lower.jpg) no-repeat top center / cover;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: -1;
}
.bg-02 ul,
.bg-02--lower ul{
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.bg-01 .l-grid-three > .box-full {
  display: flex;
  flex-direction: column;
}
.listbox-area.l-stack-small,
.bg-02 .column-small.l-stack-small,
.bg-02--lower .column-small.l-stack-small{
  flex: 1;
}
.bg-03 {
  padding-top: 0;
  background: url(img/bg-03a.png) no-repeat fixed left center/ 30% auto, var(--bg-base);
}
.bg-03 .l-stack-large {
  background: var(--bg-pri);
  border-radius: var(--s2);
  padding-bottom: var(--s6);
}
.bg-03 .l-stack-large .l-stack {
  padding: 0 var(--s4);
}
.bg-03 .l-stack .l-grid-two .column-medium {
  padding-top: 0;
}
/* 背景画像用のプレースホルダー（後で背景画像を配置する際に使用） */
.bg-01::before,
.bg-02::before,
.bg-03::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1; /* 背景画像の透明度調整 */
  z-index: 1;
}
.bg-01::before {
  background: radial-gradient(circle at -20% 50%, var(--bg-sec), transparent 60%), url(img/bg-01.png) no-repeat center bottom / 100% auto;
  height: calc(100% + 1px);
}
.bg-02::before {
  background: url(img/bg-02.png);
  background-size: 100% 100%;
  height: calc(100% + 1px);
}
.bg-03::before {
  background: url(img/bg-03.png) no-repeat center;
  height: calc(100% + 1px);
}
.bg-04 {
  background: url(img/bg-04.png) no-repeat right top / 100% auto;
}
.bg-05 {
  padding-top: var(--s14);
  background: url(img/bg-05.png) no-repeat left center / auto 100%;
}
/* セクション内のコンテンツを背景画像の上に表示 */
.bg-01 > *,
.bg-02 > *,
.bg-03 > * {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  section {
    padding: var(--s8) 0;
  }
  .bg-03 {
    background: url(img/bg-03a.png) no-repeat right top 2.4rem/ 45% auto, var(--bg-base);
  }
  .bg-03 .l-stack-large .l-stack {
    padding: 0;
  }
  .bg-05 {
    padding-top: var(--s4);
    background: url(img/bg-05.png) no-repeat left top 10rem / 100% auto;
  }
  .bg-02--lower .section-title02-frame p{
    width: 95%;
  }
}
/* ComponentEnd: セクション背景色設定 */

/* onb-iconbox02 カスタマイズ - imgタグでアイコン表示対応 */

.onb-iconbox02-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.onb-iconbox02-frame {
  position: relative;
  padding: var(--s2);
  background-color: #f5f5f5;
  border-radius: var(--s2);
}
.onb-iconbox02-catch {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.4;
}
/* アイコンと見出しを横並びで中央揃え */
.onb-iconbox02-header {
  display: flex;
  align-items: center;
  gap: var(--s2);
}

.onb-iconbox02-icon {
  width: 5.4rem;
  flex-shrink: 0;
}

.onb-iconbox02-catch {
  margin: 0;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .onb-iconbox02-icon {
    width: 4rem;
  }
  .onb-iconbox02-catch {
    font-size: 1.8rem;
  }
}

/* bg-04 section specific styles */
.bg-04 {
  background-color: var(--bg-pri);
  padding: var(--s6) 0;
}

/* bg-04 enterprise cards */
.bg-04 .column-small {
  background: white;
  border-radius: var(--s2);
  padding: var(--s3);
}

.bg-04 .column-small .m-title01 {
  color: var(--pri);
  font-size: 2.2rem;
  margin-bottom: var(--s2);
  align-content: center;
}
.bg-04 .column-small .btn-link{
  display: flex;
  flex: 1;
  align-items: flex-end;
}

@media screen and (max-width: 767px) {
  .bg-04 .column-small {
    padding: var(--s3) var(--s2);
  }

  .bg-04 .column-small .m-title01 {
    font-size: 2rem;
  }
  .bg-04 .column-small .btn-link{
    display: block;
  }
}

/* 1.1.4 acc-more-btn */
.acc-more-btn {
  max-width: 46rem;
  width: 100%;
  margin: var(--s5) auto;
  position: relative;
}
.acc-more-btn span {
  position: relative;
  width: 100%;
  margin: 0;
  padding: var(--s2) var(--s6) var(--s2) var(--s5);
  border: 1px solid var(--sec-dark);
  border-radius: 50vh;
  background: url("./img/accordion-plus.svg") no-repeat 95% center / 1.7rem, white;
  display: block;
  text-align: center;
  font-weight: 700;
  transform: translate(0, 0);
  transition: 0.3s;
  cursor: pointer;
  z-index: 1;
}
.acc-more-btn:hover span {
  transform: translateY(-0.3rem);
  box-shadow: 0 0.6rem 1.6rem rgba(0, 0, 0, 0.12);
}
.acc-more-btn.is-open span {
  background: url(./img/accordion-minus.svg) no-repeat 95% center / 1.7rem, white;
}
.more-content {
  display: none;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  .acc-more-btn span {
    transition: inherit;
    transform: none;
  }
  .acc-more-btn:hover span {
    transform: none;
  }
  .acc-more-btn {
    max-width: 95%;
  }
}
/* 1.9.1 index02-frame */
.index02-frame {
  width: 100%;
}
.index02-title {
  padding: var(--s2) var(--s2) var(--s2) var(--s7);
  color: var(--pri-dark);
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
  background: url("./img/icon-gear.svg") no-repeat left center;
  background-size: 4rem auto;
  position: relative;
}
.index02-chapter {
  padding: var(--s2) var(--s2) var(--s2) var(--s4);
  font-weight: 700;
}
.index02-chapter-h {
  margin: 0 0 0 var(--s1);
  font-size: 100%;
  line-height: 1.7;
  position: relative;
}
.index02-chapter-h a {
  display: block;
  text-decoration: none;
}
.index02-chapter-h a:hover {
  opacity: 0.6;
}
.index02-chapter-h-two {
  margin-left: var(--s2);
  position: relative;
}
.index02-chapter-h-three {
  margin-left: var(--s4);
  position: relative;
}
.index02-chapter-h-two::before,
.index02-chapter-h-three::before {
    position: absolute;
    top: 0;
    left: -1.5em;
}
/* 目次の番号表示 */
.index02-chapter-h-two::before {
  content: attr(data-num);
  position: absolute;
  left: -4rem;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  color: var(--pri);
  font-weight: bold;
  font-size: 2rem;
}
.index02-chapter-h-three::before {
  content: "└";
}
.index02-chapter-num {
  position: absolute;
  left: -4rem;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
  color: var(--pri);
  font-weight: bold;
  width: 2em;
  height: 2em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
/*----------------------------------------------
	more content settings
*/
#toc.index02-gradation {
  margin-top: 1.4rem;
  height: auto;
  max-height: 12rem;
  overflow: hidden;
  transition: max-height 1s;
  position: relative;
}
#toc.index02-gradation::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  transition: 0.3s;
  background: linear-gradient(to bottom, transparent 0%, var(--bg-pri) 100%);
}
#toc.index02-gradation.is-open::after {
  display: none;
}
.index02-btn {
  max-width: 32rem;
  margin: 2rem auto 0 auto;
  position: relative;
  z-index: 5;
}
.index02-btn span {
  width: 100%;
  margin: 0 auto;
  padding: var(--s2);
  border: 0.2rem solid var(--line);
  border-radius: 50vh;
  background: url("./img/accordion-plus.svg") no-repeat 93% center / 1.6rem, #fff;
  display: block;
  text-align: center;
  transform: translate(0, 0);
  transition: transform 0.3s;
  cursor: pointer;
  z-index: 1;
}
.index02-btn:hover span {
  transform: translate(0, 0.8rem);
}
.index02-btn.is-open span {
  background: url("./img/accordion-minus.svg") no-repeat 93% center / 1.6rem, #fff;
}
/*------------------------------------------------------------
    SP settings
*/
@media screen and (max-width: 767px) {
  #toc .onb-index02-chapter {
    padding-left: var(--s4);
  }
  .onb-index02-btn:hover span {
    transform: none;
  }
  .index02-chapter-h-two::before{
    font-size: 1.8rem;
    left: -3.2rem;
    transform: none;
    top: 0.1em;
  }
  .index02-chapter-h-three {
  margin-left: var(--s2);
}
}

/* 1.10.x 関連記事 */
/* 1.10 related-article01-frame */
.index02-wrap,
.related-article01-frame {
  margin: var(--s6) auto;
  padding: var(--s2) var(--s3) var(--s5);
  background-color: var(--bg-pri);
  position: relative;
  border-radius: var(--s2);
}
.index02-title,
.related-article01-title {
  padding: var(--s2) var(--s2) var(--s2) var(--s7);
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1;
  background: url("./img/icon-info.svg") no-repeat left center;
  background-size: 4rem auto;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.related-article01-list {
  padding: var(--s2);
  font-weight: 700;
}
.related-article01-list li {
  padding-left: 1.2em;
  font-size: 100%;
  line-height: 1.7;
  position: relative;
  margin-top: var(--s1);
}
.related-article01-list a {
  display: block;
}
.related-article01-list a:hover {
  opacity: 0.6;
}
.relations-box.relations-box--column {
  display: flex;
  gap: 10px;
}
.relations-box__pic {
  flex: 0 0 150px;
}

/*------------------------------------------------------------
    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;
  }
}
.pc-fix-banner02 {
  width: 20rem;
  position: fixed;
  right: 0;
  bottom: 1rem;
  z-index: 150;
}
.pc-fix-banner02 a {
  color: #fff;
  text-decoration: none;
  display: block;
}
.pc-fix-banner02 a:hover {
  opacity: 0.7;
}
/*------------------------------------------------------------
  SP settings
*/
@media screen and (max-width: 767px) {
  .pc-fix-banner02 {
    display: none;
  }
}
/* 2.10.1 conclusion-box-frame */
.conclusion-box-frame {
  background: url(img/bg-03a.png) no-repeat left -8rem bottom -10rem / 60% auto, #fff;
  border: 4px solid #e5eaf4;
  border-radius: var(--s2);
  padding: var(--s2) var(--s4) var(--s4);
  margin: var(--s8) auto;
  position: relative;
}
.conclusion-box-ttl {
  position: relative;
  border-bottom: dotted 1px var(--txt-sub);
}
.conclusion-box-ttl__icon {
  width: 6.4rem;
  height: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pri-dark);
  font-size: 1.6rem;
  font-weight: bold;
  background-color: var(--acc);
  border-radius: 50%;
  border: none;
  position: absolute;
}
.conclusion-box-ttl__text {
  padding: var(--s2) 0;
  margin-left: var(--s10);
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #234b7c;
}
.conclusion-box-frame .btn-internal {
  margin: var(--s3) auto var(--s1);
}
@media screen and (max-width: 767px) {
  .conclusion-box-frame {
    padding: var(--s2);
  }
  .conclusion-box-ttl__icon {
    width: 4rem;
    height: 4rem;
    font-size: 1.2rem;
    transform: translateY(-50%);
    top: 0rem;
    left: -2rem;
    bottom: inherit;
  }
  .conclusion-box-ttl__text {
    margin-left: 0;
    padding-left: var(--s3);
    padding-top: var(--s2);
    padding-bottom: 0;
    font-size: 1.6rem;
  }
}

/* h2, h3 aタグ アロー設定 */
.section-title02 a,
.m-title01 a,
.onb-iconbox02-catch a {
  display: inline-block;
  padding-right: var(--s6);
  text-decoration: none;
  background: url("./img/arrow-01-black-right.svg") no-repeat center right / auto 0.8em;
}

.m-title01 a,
.onb-iconbox02-catch a {
  background-size: auto 0.6em;
  padding-right: var(--s3);
}

.section-title02 a:hover,
.m-title01 a:hover,
.onb-iconbox02-catch a:hover {
  opacity: 0.7;
}
