@charset "UTF-8";
/* ================================================
  変数をまとめるファイル
  ================================================ */
/* -----------------------------------------------
  @use 'variables' as var;　←ページ上部に追加

  [使用例]
  .button {
    color: var.$main-txt-color;
  }
------------------------------------------------- */
/* ================================================
  メディアクエリをまとめるファイル
  ================================================ */
/* -----------------------------------------------
  @use 'mixin';　←ページ上部に追加

  [使用例]
  .button {
    padding: 8px;

    @include mixin.sp {
      padding: 4px;
    }

    @include mixin.pc {
      padding: 12px;
    }

    @include mixin.hover {
      opacity: .7;
    }
  }
------------------------------------------------- */
/* top */
body.top .header {
  border-bottom: none;
}
body.top .header.fix-header {
  border-bottom: 1px solid #b2b2b2;
}
@media screen and (max-width: 767px) {
  body.top .header.fix-header .header-inr {
    background: url(/assets/images/bg_pagettl_cmn.png) no-repeat right center/auto 100%;
  }
}

.top-h2 {
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top-h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    line-height: 1.25;
  }
}

.sec-txt {
  line-height: 2;
}

.top-section {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-section .btn {
    text-align: center;
    justify-content: center;
  }
}
.top-section .inner-wrap {
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-section .inner-wrap {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.top-section .top-sec-deco {
  line-height: 0;
  position: absolute;
  left: -120px;
  top: -80px;
}
.top-section .top-sec-deco img {
  display: inline-block;
  width: auto;
  height: 155px;
}
@media screen and (max-width: 767px) {
  .top-section .top-sec-deco {
    left: 0;
    top: -20px;
  }
  .top-section .top-sec-deco img {
    height: 63px;
  }
}

.mv-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.mv-section .mv-slider-wrap .item {
  overflow: hidden;
  width: 100%;
  height: 100vh;
}
.mv-section .mv-slider-wrap .item img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv-section .mv-inner-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 1206px;
}
@media screen and (max-width: 767px) {
  .mv-section .mv-inner-wrap {
    top: 67%;
  }
}
.mv-section .mv-txt {
  font-size: 6.4rem;
  font-weight: bold;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
  color: #fff;
}
.mv-section .mv-fix-img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
}
.mv-section .mv-fix-img img {
  width: auto;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .mv-section {
    height: 500px;
  }
  .mv-section .mv-slider-wrap .item {
    height: 500px;
  }
  .mv-section .mv-txt {
    font-size: 4rem;
    padding: 0 30px;
    text-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  }
}

.mv-btn-wrap {
  position: relative;
  z-index: 2;
}
.mv-btn-wrap .mv-btn {
  position: absolute;
  right: 28px;
  bottom: 30px;
  display: inline-flex;
  align-items: center;
  padding: 5px 66px 5px 46px;
  font-size: 2rem;
  font-weight: bold;
  color: #006cb8;
  background: #fff url(/assets/images/icn_blank.png) no-repeat calc(100% - 18px) center/13px auto;
  height: 64px;
  border-radius: 64px;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
}
@media (any-hover: hover) {
  .mv-btn-wrap .mv-btn:hover {
    opacity: 0.7;
  }
}
.mv-btn-wrap .mv-btn .label {
  display: inline-block;
  padding: 6px 16px;
  font-size: 1.4rem;
  border-radius: 64px;
  color: #fff;
  background-color: #4070d1;
  margin-right: 14px;
}
@media screen and (max-width: 767px) {
  .mv-btn-wrap {
    position: static;
    padding: 20px;
    background: url(/assets/images/bg_mv_btn.png) no-repeat center/cover;
  }
  .mv-btn-wrap .mv-btn {
    width: 100%;
    position: unset;
    height: 48px;
    font-size: 1.4rem;
    padding: 8px 34px 8px 8px;
  }
  .mv-btn-wrap .mv-btn .label {
    padding: 6px 13px;
    margin-right: 8px;
    background-color: #006cb8;
  }
}

.notice-fix-wrap {
  background-color: #f1f4f6;
  padding: 14px 0;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .notice-fix-wrap {
    padding: 8px 0;
  }
}
.notice-fix-wrap .inner-wrap {
  max-width: 1326px;
}
.notice-fix-wrap .notice-slider-wrap {
  padding-right: 30px;
}
.notice-fix-wrap .notice-slider-wrap .item {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.notice-fix-wrap .notice-slider-wrap .txt {
  font-size: 1.4rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (any-hover: hover) {
  .notice-fix-wrap .notice-slider-wrap .txt a:hover {
    text-decoration: underline;
  }
}
.notice-fix-wrap .notice-slider-wrap .txt a[target=_blank]::after {
  margin-left: 8px;
  margin-top: -2px;
  background: url(/assets/images/icn_external.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 15px;
  height: 14px;
  vertical-align: middle;
}
.notice-fix-wrap .notice-slider-wrap .txt a[href*=".pdf"]::after {
  margin-left: 8px;
  margin-top: -2px;
  background: url(/assets/images/icn_pdf.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 27px;
  height: 15px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .notice-fix-wrap .notice-slider-wrap .txt {
    line-height: 2;
    white-space: unset;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
}
.notice-fix-wrap .notice-slider-wrap .splide__arrows--ttb .splide__arrow {
  left: auto;
  right: 0;
  width: 20px;
  height: 16px;
  border-radius: 0;
  background: url(/assets/images/icn_news_ticker.png) no-repeat center/12px auto !important;
}
.notice-fix-wrap .notice-slider-wrap .splide__arrows--ttb .splide__arrow:disabled {
  pointer-events: none;
}
.notice-fix-wrap .notice-slider-wrap .splide__arrows--ttb .splide__arrow svg {
  display: none;
}
.notice-fix-wrap .notice-slider-wrap .splide__arrows--ttb .splide__arrow--prev {
  top: 0;
  transform: translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .notice-fix-wrap .notice-slider-wrap .splide__arrows--ttb .splide__arrow--prev {
    transform: none;
  }
}
.notice-fix-wrap .notice-slider-wrap .splide__arrows--ttb .splide__arrow--next {
  bottom: 0;
  transform: scaleY(-1) translate(0, -50%);
}
@media screen and (max-width: 767px) {
  .notice-fix-wrap .notice-slider-wrap .splide__arrows--ttb .splide__arrow--next {
    transform: scaleY(-1);
  }
}
.notice-fix-wrap:has(.splide__list > .splide__slide:only-child) .splide__arrows--ttb {
  display: none;
}

.top-news-section {
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .top-news-section {
    padding: 40px 16px;
  }
}
.top-news-section .top-news-col2 {
  display: flex;
  gap: 84px;
}
@media screen and (max-width: 767px) {
  .top-news-section .top-news-col2 {
    flex-direction: column;
    gap: 0;
  }
}
.top-news-section .top-news-col2 .col {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .top-news-section .top-news-col2 .col + .col {
    margin-top: 30px;
    padding-top: 40px;
    position: relative;
  }
  .top-news-section .top-news-col2 .col + .col::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 2px;
    background-color: #f1f4f6;
    left: 50%;
    transform: translateX(-50%);
  }
}
.top-news-section .top-news-col2 .ttl-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top-news-section .top-news-col2 .ttl-wrap {
    margin-bottom: 10px;
  }
}
.top-news-section .top-news-col2 .top-news-ttl {
  font-size: 2.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.top-news-section .top-news-col2 .top-news-ttl .icn {
  width: auto;
  height: 28px;
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .top-news-section .top-news-col2 .top-news-ttl {
    font-size: 1.8rem;
  }
  .top-news-section .top-news-col2 .top-news-ttl .icn {
    height: 20px;
    margin-right: 5px;
  }
}
.top-news-section .top-news-col2 .more-link {
  font-size: 1.4rem;
  padding-right: 30px;
  background: url(/assets/images/icn_link_arrow_01.png) no-repeat right center/16px auto;
}
.top-news-section .top-news-col2 .more-link.ver2 {
  background-image: url(/assets/images/icn_link_arrow_02.png);
}
@media (any-hover: hover) {
  .top-news-section .top-news-col2 .more-link:hover {
    opacity: 0.7;
  }
}
@media (any-hover: hover) {
  .top-news-section .top-news-col2 .more-link:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 767px) {
  .top-news-section .top-news-col2 .more-link {
    padding-right: 24px;
  }
}

.about-section {
  background-color: #e4eaed;
  padding: 42px 0 84px;
}
@media screen and (max-width: 767px) {
  .about-section {
    padding-bottom: 48px;
  }
}
.about-section .top-sec-deco {
  left: auto;
  right: -120px;
  top: -45px;
  opacity: 0.6;
}
.about-section .top-sec-deco img {
  height: 171px;
}
@media screen and (max-width: 767px) {
  .about-section .top-sec-deco {
    left: 0;
    right: auto;
    top: -42px;
  }
  .about-section .top-sec-deco img {
    height: 97px;
  }
}
.about-section .about-sec-col2 {
  display: flex;
  gap: 50px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .about-section .about-sec-col2 {
    flex-direction: column-reverse;
  }
}
.about-section .about-sec-col2 .left-col {
  width: 516px;
}
.about-section .about-sec-col2 .left-col img {
  margin-left: -40px;
  max-width: calc(100% + 40px);
}
@media screen and (max-width: 767px) {
  .about-section .about-sec-col2 .left-col {
    width: 100%;
  }
  .about-section .about-sec-col2 .left-col img {
    margin-left: -16px;
    max-width: 100%;
  }
}
.about-section .about-sec-col2 .right-col {
  flex: 1;
  padding-top: 18px;
}
@media screen and (max-width: 767px) {
  .about-section .about-sec-col2 .right-col {
    padding-top: 0;
  }
}
.about-section .about-sec-col2 .top-about-h2 {
  color: #3d3daa;
  font-weight: bold;
  font-size: 5.6rem;
  margin-bottom: 26px;
}
.about-section .about-sec-col2 .top-about-h2 .sub {
  font-size: 2rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .about-section .about-sec-col2 .top-about-h2 {
    font-size: 2.8rem;
    margin-bottom: 18px;
  }
  .about-section .about-sec-col2 .top-about-h2 .sub {
    font-size: 1.2rem;
  }
}
.about-section .about-sec-col2 .sec-txt {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .about-section .about-sec-col2 .sec-txt {
    font-size: 1.4rem;
  }
}
.about-section .about-sec-col2 .btn-wrap {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .about-section .about-sec-col2 .btn-wrap {
    margin-top: 25px;
  }
}

.top-topics-wrap {
  background-color: #fff;
  margin: -46px -40px 0;
  padding: 28px 48px 28px 80px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top-topics-wrap {
    flex-direction: column;
    margin: -12px 0 0;
    padding: 30px 20px 32px;
  }
  .top-topics-wrap .btn-wrap {
    margin-top: 20px;
    text-align: center;
  }
  .top-topics-wrap .btn {
    text-align: center;
    max-width: 255px;
  }
}
.top-topics-wrap .left-wrap {
  width: 274px;
  padding: 30px 0;
}
@media screen and (max-width: 767px) {
  .top-topics-wrap .left-wrap {
    width: 100%;
    padding: 0;
  }
}
.top-topics-wrap .right-wrap {
  flex: 1;
}
.top-topics-wrap .topics-ttl {
  font-size: 4rem;
  font-weight: bold;
  margin-bottom: 22px;
  line-height: 1.3;
}
.top-topics-wrap .topics-ttl .sub {
  font-size: 2.4rem;
  color: #006cb8;
  display: block;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .top-topics-wrap .topics-ttl {
    font-size: 2.4rem;
    margin-bottom: 14px;
  }
  .top-topics-wrap .topics-ttl .sub {
    font-size: 1.2rem;
  }
}

.news-list li {
  padding: 20px 0;
  display: flex;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .news-list li {
    padding: 10px 0;
    flex-direction: column;
    gap: 3px;
    line-height: 2;
  }
  .news-list li:nth-of-type(n + 4) {
    display: none;
  }
}
.news-list li + li {
  border-top: 1px solid #f1f4f6;
}
.news-list li .date {
  width: 128px;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .news-list li .date {
    width: 100%;
  }
}
.news-list li .txt {
  flex: 1;
}
@media (any-hover: hover) {
  .news-list li a:hover {
    text-decoration: underline;
  }
}
.news-list li a[target=_blank]::after {
  margin-left: 8px;
  margin-top: -2px;
  background: url(/assets/images/icn_external.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 15px;
  height: 14px;
  vertical-align: middle;
}
.news-list li a[href*=".pdf"]::after {
  margin-left: 8px;
  margin-top: -2px;
  background: url(/assets/images/icn_pdf.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 27px;
  height: 15px;
  vertical-align: middle;
}

.sustain-section {
  padding: 110px 0 116px;
  background: url(/assets/images/bg_top_sustain.jpg) no-repeat center/cover;
  color: #fff;
}
.sustain-section .top-h2 {
  color: #fff;
}
.sustain-section .sec-txt {
  max-width: 45.7%;
}
.sustain-section .btn-wrap {
  margin-top: 40px;
}
.sustain-section .btn {
  font-weight: bold;
}
.sustain-section .btn::after {
  background: rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .sustain-section {
    padding: 40px 0 48px;
    background-image: url(/assets/images/bg_top_sustain_sp.jpg);
  }
  .sustain-section .top-sec-deco {
    top: -12px;
  }
  .sustain-section .top-sec-deco img {
    height: auto;
    width: 100%;
  }
  .sustain-section .top-h2 {
    text-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  }
  .sustain-section .sec-txt {
    max-width: 100%;
    text-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
  }
}

.services-section {
  padding: 117px 0 120px;
  background: url(/assets/images/bg_top_service.jpg) no-repeat center bottom/cover;
}
@media screen and (max-width: 767px) {
  .services-section {
    padding: 48px 0 120px;
  }
}
.services-section .services-sec-col2 {
  display: flex;
  gap: 48px;
  position: relative;
}
.services-section .services-sec-col2 .left-col {
  flex: 1;
}
.services-section .services-sec-col2 .right-col {
  width: 480px;
}
@media screen and (max-width: 767px) {
  .services-section .services-sec-col2 {
    display: grid;
    gap: 0;
    grid-template-areas: "top-h2" "sec-txt" "right-col" "btn-wrap";
  }
  .services-section .services-sec-col2 .left-col {
    flex: none;
    display: contents;
  }
  .services-section .services-sec-col2 .top-h2 {
    grid-area: top-h2;
    order: 1;
  }
  .services-section .services-sec-col2 .sec-txt {
    grid-area: sec-txt;
    order: 2;
  }
  .services-section .services-sec-col2 .btn-wrap {
    grid-area: btn-wrap;
    order: 4;
  }
  .services-section .services-sec-col2 .right-col {
    width: 100%;
    grid-area: right-col;
    order: 3;
    margin-top: 27px;
  }
}
.services-section .services-link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .services-section .services-link-list {
    gap: 9px;
  }
}
.services-section .services-link-list li {
  width: calc((100% - 32px) / 3);
}
@media screen and (max-width: 767px) {
  .services-section .services-link-list li {
    width: calc((100% - 18px) / 3);
  }
}
.services-section .services-link-list li .link-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 26px;
  height: 160px;
  background-color: #fff;
  box-shadow: 0 0 20px rgba(0, 108, 184, 0.1);
}
.services-section .services-link-list li .link-wrap .icn {
  display: inline-block;
  width: auto;
  height: 48px;
}
.services-section .services-link-list li .link-wrap .txt {
  color: #006cb8;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .services-section .services-link-list li .link-wrap {
    padding: 20px 5px 17px;
    height: 100%;
    gap: 10px;
  }
  .services-section .services-link-list li .link-wrap .icn {
    height: 32px;
  }
  .services-section .services-link-list li .link-wrap .txt {
    line-height: 1.25;
  }
}
.services-section .btn-wrap {
  margin-top: 28px;
}

.top .following-banner-wrap.fixed {
  position: absolute;
}
.top .following-banner-wrap.show {
  opacity: 1;
  pointer-events: auto;
}

.following-banner-wrap {
  position: fixed;
  right: 110px;
  bottom: 25px;
  z-index: 5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 767px) {
  .following-banner-wrap {
    right: 70px;
    bottom: 15px;
    width: calc(100% - 85px);
  }
}
.following-banner-wrap .banner-wrap {
  position: relative;
}
.following-banner-wrap .banner-wrap a {
  display: block;
  width: 437px;
}
@media (any-hover: hover) {
  .following-banner-wrap .banner-wrap a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .following-banner-wrap .banner-wrap a {
    width: 100%;
  }
}
.following-banner-wrap .banner-wrap .close-btn {
  position: absolute;
  right: -8px;
  top: -8px;
  width: 16px;
  line-height: 0;
}

.top-banner-section {
  padding: 24px 0;
  background-color: #f2f5f7;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-banner-section .inner-wrap {
    padding-left: 52px;
    padding-right: 52px;
  }
}
.top-banner-section .banner-slider-wrap .splide__track {
  overflow: visible;
}
@media (any-hover: hover) {
  .top-banner-section .banner-slider-wrap a:hover {
    opacity: 0.7;
  }
}
.top-banner-section .banner-slider-wrap .splide__arrow {
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background: rgba(67, 89, 104, 0.4) url(/assets/images/icn_slider_arrow.png) no-repeat center/14px auto;
}
.top-banner-section .banner-slider-wrap .splide__arrow--prev {
  left: -35px;
}
.top-banner-section .banner-slider-wrap .splide__arrow--next {
  transform: translateY(-50%) rotate(180deg);
  right: -35px;
}
.top-banner-section .banner-slider-wrap .splide__arrow svg {
  display: none;
}
@media screen and (max-width: 767px) {
  .top-banner-section .banner-slider-wrap .splide__arrow {
    width: 40px;
    height: 40px;
  }
  .top-banner-section .banner-slider-wrap .splide__arrow--prev {
    left: -32px;
  }
  .top-banner-section .banner-slider-wrap .splide__arrow--next {
    right: -32px;
  }
}

/* /top */
/* disclosure */
.line-bottom {
  border-bottom: 1px solid #CFDEE6;
}

.disclosure-box {
  border: 1px solid #CFDEE6;
  padding: 30px;
}

.disclosure-vision-img {
  max-width: 1366px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .disclosure-mv-btn {
    font-size: 1.4rem;
  }
}

.disclosure-btn-list {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .disclosure-btn-list li {
    width: 100%;
  }
}
.disclosure-btn-list .cmn-btn {
  min-width: 264px;
}
@media screen and (max-width: 767px) {
  .disclosure-btn-list .cmn-btn {
    min-width: auto;
    width: 100%;
  }
}

.color-dl-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.color-dl-wrap .color-dl {
  display: flex;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid #6EB8FD;
}
@media screen and (max-width: 767px) {
  .color-dl-wrap .color-dl {
    flex-direction: column;
  }
}
.color-dl-wrap .color-dl dt {
  display: block;
  position: relative;
  width: 262px;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  padding: 10px 36px 10px 46px;
  background: #6EB8FD;
}
@media screen and (max-width: 767px) {
  .color-dl-wrap .color-dl dt {
    width: 100%;
  }
}
.color-dl-wrap .color-dl dt::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 100%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 0 24px 12px;
  border-color: transparent transparent transparent #6EB8FD;
}
@media screen and (max-width: 767px) {
  .color-dl-wrap .color-dl dt::after {
    top: 100%;
    left: calc(50% - 48px);
    border-width: 16px 48px 0 48px;
    border-color: #6EB8FD transparent transparent transparent;
  }
}
.color-dl-wrap .color-dl dd {
  padding: 10px 40px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .color-dl-wrap .color-dl dd {
    padding: 32px 16px 20px;
  }
}
.color-dl-wrap .color-dl.yellow {
  border-color: #EFE36E;
}
.color-dl-wrap .color-dl.yellow dt {
  background: #EFE36E;
}
.color-dl-wrap .color-dl.yellow dt::after {
  border-color: transparent transparent transparent #EFE36E;
}
@media screen and (max-width: 767px) {
  .color-dl-wrap .color-dl.yellow dt::after {
    border-color: #EFE36E transparent transparent transparent;
  }
}

.disclosure-posture-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.disclosure-posture-list li {
  position: relative;
  border-radius: 10px;
  padding-top: 16px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .disclosure-posture-list li {
    padding-top: 0;
  }
}
.disclosure-posture-list li .posturez-contents {
  display: flex;
  position: relative;
  align-items: center;
  height: 200px;
}
@media screen and (max-width: 767px) {
  .disclosure-posture-list li .posturez-contents {
    flex-direction: column;
    height: auto;
    padding: 20px 16px 16px;
  }
}
.disclosure-posture-list li .posturez-contents::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  right: 32px;
  width: 100%;
  height: 200px;
  border-radius: 10px;
  background: linear-gradient(135deg, #e8f9ff 0%, #93deff 100%);
  opacity: 0.4;
  pointer-events: none;
  transform: skewX(-20deg);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .disclosure-posture-list li .posturez-contents::before {
    transform: skewX(0);
    height: 100%;
    right: 5px;
    background: linear-gradient(to bottom, #e8f9ff 0%, #93deff 100%);
  }
}
.disclosure-posture-list li .posturez-contents .ttl-wrap {
  color: #002365;
  font-weight: 700;
  padding-left: 30px;
  padding-right: 80px;
}
@media screen and (max-width: 767px) {
  .disclosure-posture-list li .posturez-contents .ttl-wrap {
    padding: 0;
  }
}
.disclosure-posture-list li .posturez-contents .ttl-wrap .ttl {
  display: flex;
  align-items: center;
  font-size: 2.3rem;
  position: relative;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .disclosure-posture-list li .posturez-contents .ttl-wrap .ttl {
    font-size: 2rem;
    gap: 8px;
    justify-content: center;
  }
}
.disclosure-posture-list li .posturez-contents .ttl-wrap .ttl::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url(/assets/images/icn_check_blue.svg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .disclosure-posture-list li .posturez-contents .ttl-wrap .ttl::before {
    width: 24px;
    height: 24px;
  }
}
.disclosure-posture-list li .posturez-contents .ttl-wrap .lead {
  margin-top: 8px;
  font-size: 1.8rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .disclosure-posture-list li .posturez-contents .ttl-wrap .lead {
    text-align: center;
    font-size: 1.6rem;
  }
}
.disclosure-posture-list li .posturez-contents .txt-wrap {
  position: relative;
  padding: 30px 60px 30px 30px;
  margin-left: 100px;
  flex: 1;
  transform: translateX(-12px) translateY(-16px);
}
@media screen and (max-width: 767px) {
  .disclosure-posture-list li .posturez-contents .txt-wrap {
    padding: 20px 16px 16px;
    margin: 16px 0 0;
    transform: none;
    flex: 0 1 auto;
  }
}
.disclosure-posture-list li .posturez-contents .txt-wrap p {
  font-size: 1.8rem;
  line-height: 1.555;
  font-weight: 500;
  color: #0d1214;
}
@media screen and (max-width: 767px) {
  .disclosure-posture-list li .posturez-contents .txt-wrap p {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.disclosure-posture-list li .posturez-contents .txt-wrap::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 32px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background: linear-gradient(135deg, #009CE5 0%, #93DEFF 100%);
  opacity: 0.34;
  transform: skewX(-20deg);
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .disclosure-posture-list li .posturez-contents .txt-wrap::before {
    transform: skewX(0);
    right: 0;
    background: linear-gradient(to bottom, #009CE5 0%, #93DEFF 100%);
  }
}
.disclosure-posture-list li:nth-of-type(2) .posturez-contents::before {
  background: linear-gradient(135deg, #DBFCF6 0%, #93FFEE 100%);
}
.disclosure-posture-list li:nth-of-type(2) .posturez-contents .ttl-wrap .ttl::before {
  background-image: url(/assets/images/icn_check_cyan.svg);
}
.disclosure-posture-list li:nth-of-type(2) .posturez-contents .txt-wrap::before {
  background: linear-gradient(135deg, #00BAD3 0%, #00E898 100%);
}
@media screen and (max-width: 767px) {
  .disclosure-posture-list li:nth-of-type(2) .posturez-contents .txt-wrap::before {
    background: linear-gradient(to bottom, #00BAD3 0%, #00E898 100%);
  }
}
.disclosure-posture-list li:nth-of-type(3) .posturez-contents::before {
  background: linear-gradient(135deg, #E2FFDE 0%, #C0FCB5 100%);
}
.disclosure-posture-list li:nth-of-type(3) .posturez-contents .ttl-wrap .ttl::before {
  background-image: url(/assets/images/icn_check_green.svg);
}
.disclosure-posture-list li:nth-of-type(3) .posturez-contents .txt-wrap::before {
  background: linear-gradient(135deg, #05C985 0%, #C6E231 100%);
}
@media screen and (max-width: 767px) {
  .disclosure-posture-list li:nth-of-type(3) .posturez-contents .txt-wrap::before {
    background: linear-gradient(to bottom, #05C985 0%, #C6E231 100%);
  }
}

/* /disclosure */
/* /disclosure/disclosure-documents.html */
.disclosure-list li + li {
  margin-top: 10px;
}

/* /disclosure/disclosure-documents.html */
/* /sustainability */
.sustainability-lead-section {
  padding-bottom: 120px;
  background: url(/assets/images/bg_sustainability_top.png) no-repeat center bottom/100% 1180px;
}
@media screen and (max-width: 767px) {
  .sustainability-lead-section {
    background-size: auto 100%;
    padding-bottom: 64px;
  }
}
.sustainability-lead-section .message-box {
  margin-top: -116px;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767px) {
  .sustainability-lead-section .message-box {
    margin-top: -58px;
  }
}

.sustainability-section {
  background: url(/assets/images/bg_sustainability_school.png) no-repeat center bottom/100% auto, linear-gradient(to bottom, #fff 0%, #CCEAFF 100%);
}
@media screen and (min-width: 768px) {
  .sustainability-section {
    padding-bottom: 192px !important;
  }
}
@media screen and (max-width: 767px) {
  .sustainability-section {
    padding-bottom: 64px;
  }
}

.message-box {
  padding: 56px;
  display: flex;
  gap: 56px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .message-box {
    flex-direction: column;
    gap: 32px;
    padding: 24px;
    align-items: center;
  }
}
.message-box .img {
  width: 262px;
}
@media screen and (max-width: 767px) {
  .message-box .img {
    width: 100%;
    text-align: center;
  }
}
.message-box .txt-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.message-box .txt-wrap .ttl {
  margin-bottom: 25px;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .message-box .txt-wrap .ttl {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
}
.message-box .txt-wrap .txt {
  line-height: 1.75;
  margin-bottom: 24px;
}
.message-box .txt-wrap .name {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .message-box .txt-wrap .name {
    margin-top: 24px;
    flex-direction: column;
    gap: 8px;
    align-items: start;
  }
}
.message-box .txt-wrap .name::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  background-color: #84B7DB;
}
.message-box .txt-wrap .name .position {
  font-size: 1.2rem;
}
.message-box .txt-wrap .name .sign {
  width: 150px;
}

.bg-school {
  background: url(/assets/images/bg_sustainability_school.png) no-repeat center bottom/contain;
}
@media screen and (min-width: 768px) {
  .bg-school {
    padding-bottom: 250px !important;
  }
}

.sustainability-map-box {
  display: flex;
  margin-top: 80px;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .sustainability-map-box {
    flex-direction: column;
    gap: 20px;
  }
}
.sustainability-map-box .txt-wrap {
  flex: 1;
}
.sustainability-map-box .txt-wrap .logo {
  width: 184px;
  margin-top: 64px;
  margin-bottom: 28px;
}
@media screen and (max-width: 767px) {
  .sustainability-map-box .txt-wrap .logo {
    margin: 0 auto 10px;
  }
}
.sustainability-map-box .txt-wrap .btn-wrap {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .sustainability-map-box .txt-wrap .btn-wrap {
    margin: 24px 0 0;
  }
}
@media screen and (min-width: 768px) {
  .sustainability-map-box .txt-wrap .btn-wrap .cmn-btn {
    min-width: 264px;
  }
}

.map-link-box {
  margin-top: 80px;
  position: relative;
  height: 540px;
  background: url(/assets/images/bg_japan.png) no-repeat center top/auto 500px;
}
@media screen and (max-width: 767px) {
  .map-link-box {
    background: none;
    margin-top: 48px;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
}
.map-link-box .map-btn {
  display: flex;
  flex-direction: column;
  position: absolute;
  box-shadow: 0 0 24px rgba(13, 18, 20, 0.1);
  border-radius: 6px;
  background-color: #fff;
  padding: 20px 72px 20px 24px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .map-link-box .map-btn {
    position: relative;
    padding: 16px 40px 16px 16px;
  }
}
@media (any-hover: hover) {
  .map-link-box .map-btn:hover {
    opacity: 0.7;
  }
}
.map-link-box .map-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 12px);
  right: 24px;
  width: 24px;
  height: 24px;
  background: url(/assets/images/icn_btn_arrow.svg) no-repeat center/24px auto;
}
@media screen and (max-width: 767px) {
  .map-link-box .map-btn::after {
    right: 16px;
    width: 16px;
    height: 16px;
    top: calc(50% - 8px);
    background-size: 16px auto;
  }
}
.map-link-box .map-btn[target=_blank]::after {
  background-image: url(/assets/images/icn_external.svg);
}
@media screen and (min-width: 768px) {
  .map-link-box .map-btn.region-01 {
    top: 108px;
    left: 135px;
  }
  .map-link-box .map-btn.region-02 {
    top: 160px;
    right: 32px;
  }
  .map-link-box .map-btn.region-03 {
    top: 304px;
    right: 96px;
  }
  .map-link-box .map-btn.region-04 {
    bottom: 0;
    right: 150px;
  }
  .map-link-box .map-btn.region-05 {
    top: 248px;
    left: 80px;
  }
}
.map-link-box .region {
  color: #3C7F62;
  font-size: 1.4rem;
}
.map-link-box .group {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .map-link-box .group {
    font-size: 1.6rem;
  }
}

.grade-point-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 2px;
  grid-row-gap: 2px;
}
@media screen and (max-width: 767px) {
  .grade-point-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grade-point-list li {
  text-align: center;
  padding: 24px 24px 36px;
}
@media screen and (max-width: 767px) {
  .grade-point-list li {
    padding: 20px 20px 24px;
  }
}
.grade-point-list li:nth-of-type(1) {
  background: linear-gradient(to bottom, #9CE081 0%, #CCE082 100%);
}
.grade-point-list li:nth-of-type(1) .img::after {
  background: url(/assets/images/txt_01.svg) no-repeat center/auto 34px;
}
.grade-point-list li:nth-of-type(2) {
  background: linear-gradient(to bottom, #87E08B 0%, #AFE087 100%);
}
.grade-point-list li:nth-of-type(2) .img::after {
  background: url(/assets/images/txt_02.svg) no-repeat center/auto 34px;
}
.grade-point-list li:nth-of-type(3) {
  background: linear-gradient(to bottom, #85DEC6 0%, #87E09C 100%);
}
.grade-point-list li:nth-of-type(3) .img::after {
  background: url(/assets/images/txt_03.svg) no-repeat center/auto 34px;
}
.grade-point-list li .img {
  position: relative;
}
.grade-point-list li .img::after {
  content: "";
  display: block;
  position: absolute;
  width: 48px;
  height: 36px;
  left: 16px;
  bottom: -18px;
}
.grade-point-list li .ttl {
  margin-top: 24px;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .grade-point-list li .ttl {
    font-size: 1.8rem;
    margin-top: 20px;
  }
}
.grade-point-list li .txt {
  margin-top: 20px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .grade-point-list li .txt {
    margin-top: 12px;
  }
}

.arr-point-box {
  display: flex;
  position: relative;
  margin-top: 40px;
  padding: 40px 50px;
  gap: 40px;
  border: 1px solid #003E6B;
  border-radius: 10px;
  background: url(/assets/images/item_bubble_top.png) no-repeat right top/auto 52px, url(/assets/images/item_bubble_bottom.png) no-repeat left bottom/auto 70px, #EBF2F5;
}
@media screen and (max-width: 767px) {
  .arr-point-box {
    margin-top: 24px;
    flex-wrap: wrap;
    padding: 20px;
    gap: 20px;
  }
}
.arr-point-box::before {
  content: "";
  display: block;
  position: absolute;
  width: 20px;
  height: 16px;
  bottom: 100%;
  left: calc(50% - 10px);
  background: url(/assets/images/item_arr_point_box.svg) no-repeat center/20px auto;
}
.arr-point-box .box {
  width: calc(50% - 20px);
  border-radius: 5px;
  overflow: hidden;
  height: auto;
}
@media screen and (max-width: 767px) {
  .arr-point-box .box {
    width: 100%;
  }
}
.arr-point-box .box .ttl {
  padding: 8px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  background-color: #3C7F62;
}
.arr-point-box .box .txt-wrap {
  padding: 32px 40px;
  background-color: #fff;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .arr-point-box .box .txt-wrap {
    padding: 20px;
  }
}
.arr-point-box .box .txt-wrap ul {
  font-weight: bold;
}
.arr-point-box .box .txt-wrap ul li::before {
  background-color: #499775;
}

.school-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 100px;
  padding: 40px;
  border-radius: 100px;
  background-color: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 767px) {
  .school-btn-wrap {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    border-radius: 50px;
    margin-top: 48px;
  }
}
.school-btn-wrap .logo {
  width: 150px;
}
@media screen and (min-width: 768px) {
  .school-btn-wrap .btn-wrap .cmn-btn {
    min-width: 325px;
  }
}

.cmn-bnr-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}
.cmn-bnr-list.left {
  justify-content: start;
}
@media screen and (max-width: 767px) {
  .cmn-bnr-list {
    gap: 16px;
    margin-top: 24px;
  }
}
.cmn-bnr-list li {
  max-width: 325px;
}
@media screen and (max-width: 767px) {
  .cmn-bnr-list li {
    width: 100%;
  }
}
.cmn-bnr-list li a {
  display: block;
}
@media (any-hover: hover) {
  .cmn-bnr-list li a:hover {
    opacity: 0.7;
  }
}
.cmn-bnr-list.gap-l {
  gap: 60px;
}
@media screen and (max-width: 767px) {
  .cmn-bnr-list.gap-l {
    gap: 16px;
  }
}

/* /sustainability */
/* /others */
.management-safety-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  padding: 25px;
  text-align: center;
  background-color: #E5F5FD;
}
@media screen and (max-width: 767px) {
  .management-safety-wrap {
    padding: 12px;
    gap: 12px;
  }
}
.management-safety-wrap .management-safety {
  width: calc((100% - 25px) / 2);
  padding: 40px;
  background-color: #fff;
  border-radius: 5px;
  position: relative;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .management-safety-wrap .management-safety {
    width: 100%;
    padding: 24px 16px;
  }
}
.management-safety-wrap .management-safety::before {
  content: "";
  display: block;
  position: absolute;
  width: 80px;
  height: 3px;
  top: 0;
  left: calc(50% - 40px);
  background-image: url(/assets/images/icn_manegement.png);
}
.management-safety-wrap .management-safety._high {
  height: 210px;
}
@media screen and (max-width: 767px) {
  .management-safety-wrap .management-safety._high {
    height: auto;
  }
}
.management-safety-wrap .management-safety ._low {
  height: 247px;
}
@media screen and (max-width: 767px) {
  .management-safety-wrap .management-safety ._low {
    height: auto;
  }
}
.management-safety-wrap .management-safety .management-data {
  color: #006cb8;
  font-size: 7.8rem;
  line-height: 1;
  font-weight: bold;
  font-family: "din", "din-2014", "Oswald", sans-serif;
}
@media screen and (max-width: 767px) {
  .management-safety-wrap .management-safety .management-data {
    font-size: 4rem;
  }
}
.management-safety-wrap .management-safety .management-data .mini-txt {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .management-safety-wrap .management-safety .management-data .mini-txt {
    font-size: 1.2rem;
  }
}
.management-safety-wrap .management-safety .management-data.container {
  margin-top: 24px;
  line-height: 0.5897435897;
}

.management-graph-list {
  display: flex;
  flex-wrap: wrap;
  padding: 0 44px;
  gap: 48px 80px;
}
@media screen and (max-width: 767px) {
  .management-graph-list {
    padding: 0;
    gap: 24px;
  }
}
.management-graph-list li {
  width: calc((100% - 80px) / 2);
}
@media screen and (max-width: 767px) {
  .management-graph-list li {
    width: 100%;
  }
}
.management-graph-list .management-graph-title {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 30px;
  padding-bottom: 4px;
  border-bottom: 1px solid #CFDEE6;
}
@media screen and (max-width: 767px) {
  .management-graph-list .management-graph-title {
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 20px;
  }
}

.management-table-coution {
  display: flex;
}
.management-table-coution .icn {
  display: block;
  margin-right: 5px;
}
.management-table-coution .txt {
  display: block;
  flex: 1;
}

/* /others */
/* news */
/* /news */
/* recruit */
.contact-area {
  display: flex;
  margin-top: 72px;
}
@media screen and (max-width: 767px) {
  .contact-area {
    flex-direction: column;
    align-items: center;
    margin-top: 16px;
  }
}
.contact-area .contact-wrap {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .contact-area .contact-wrap {
    width: 100%;
  }
}
.contact-area .contact-wrap:first-of-type {
  position: relative;
  border-right: 1px solid #CFDEE6;
}
@media screen and (max-width: 767px) {
  .contact-area .contact-wrap:first-of-type {
    border-right: none;
    border-bottom: 1px solid #CFDEE6;
    margin-bottom: 16px;
    padding-bottom: 16px;
  }
}
.contact-area .contact-wrap .contact-ttl {
  margin-bottom: 10px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact-area .contact-wrap .contact-ttl {
    margin-bottom: 4px;
  }
}
.contact-area .contact-wrap .tel,
.contact-area .contact-wrap .tel-link,
.contact-area .contact-wrap .mail,
.contact-area .contact-wrap .mail-link {
  color: #0D1214;
  font-weight: 700;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.333;
}
@media screen and (max-width: 767px) {
  .contact-area .contact-wrap .tel,
  .contact-area .contact-wrap .tel-link,
  .contact-area .contact-wrap .mail,
  .contact-area .contact-wrap .mail-link {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-area .contact-wrap .tel-link {
    pointer-events: none;
  }
}

.contact-label {
  max-width: 920px;
  margin: 40px auto 0;
  padding: 24px;
  text-align: center;
  background-color: #E0E0E0;
}
@media screen and (max-width: 767px) {
  .contact-label {
    margin-top: 24px;
    padding: 16px;
  }
}

/* /recruit */
/* wealth */
.wealth-anchor-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 40px;
  margin-bottom: 76px;
}
@media screen and (max-width: 767px) {
  .wealth-anchor-list {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 24px;
  }
}
.wealth-anchor-list li a {
  display: flex;
  align-items: baseline;
  position: relative;
  gap: 30px;
  padding: 24px 32px;
  border-radius: 30px;
  background: linear-gradient(to right, rgb(3, 108, 184) 0%, rgba(3, 108, 184, 0.8) 100%);
}
@media (any-hover: hover) {
  .wealth-anchor-list li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .wealth-anchor-list li a {
    gap: 8px 16px;
    padding: 20px 16px;
    border-radius: 16px;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
  }
}
.wealth-anchor-list li a::after {
  content: "";
  display: block;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .wealth-anchor-list li a::after {
    position: static;
  }
}
.wealth-anchor-list li a .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 30px;
}
@media screen and (max-width: 767px) {
  .wealth-anchor-list li a .num {
    height: 18px;
  }
}
.wealth-anchor-list li a .num img {
  max-width: none;
  width: auto;
  height: 100%;
}
.wealth-anchor-list li a .txt {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .wealth-anchor-list li a .txt {
    font-size: 1.8rem;
  }
}
.wealth-anchor-list li:nth-of-type(1) a::after {
  width: 144px;
  height: 80px;
  right: -4px;
  bottom: -16px;
  background: url(/assets/images/item_wealth_anchor_01.png) no-repeat center/auto 78px;
}
@media screen and (max-width: 767px) {
  .wealth-anchor-list li:nth-of-type(1) a::after {
    width: 100%;
  }
}
.wealth-anchor-list li:nth-of-type(2) a {
  background: linear-gradient(to right, rgb(24, 183, 147) 0%, rgba(24, 183, 147, 0.8) 100%);
}
.wealth-anchor-list li:nth-of-type(2) a::after {
  width: 130px;
  height: 64px;
  right: -24px;
  bottom: -12px;
  background: url(/assets/images/item_wealth_anchor_02.png) no-repeat center/auto 62px;
}
@media screen and (max-width: 767px) {
  .wealth-anchor-list li:nth-of-type(2) a::after {
    width: 100%;
  }
}
.wealth-anchor-list li:nth-of-type(3) a {
  background: #CBA64C;
}
.wealth-anchor-list li:nth-of-type(3) a::after {
  width: 104px;
  height: 86px;
  right: 10px;
  bottom: -12px;
  background: url(/assets/images/item_wealth_anchor_03.png) no-repeat center/auto 86px;
}
@media screen and (max-width: 767px) {
  .wealth-anchor-list li:nth-of-type(3) a::after {
    width: 100%;
  }
}

.wealth-point-box {
  padding: 10px;
  position: relative;
  background: linear-gradient(to right, rgb(3, 108, 184) 0%, rgba(3, 108, 184, 0.8) 100%);
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .wealth-point-box {
    padding: 8px;
    border-radius: 24px;
  }
}
.wealth-point-box.green {
  background: linear-gradient(to right, rgb(24, 183, 147) 0%, rgba(24, 183, 147, 0.8) 100%);
}
.wealth-point-box.green .wealth-link-panel-wrap .wealth-link-panel::after {
  background-image: url(/assets/images/icn_btn_arrow_green.svg);
}
.wealth-point-box.green .wealth-link-panel-wrap .wealth-link-panel .ttl {
  color: #18B793;
}
.wealth-point-box.ocher {
  background: linear-gradient(to right, rgb(203, 166, 76) 0%, rgba(203, 166, 76, 0.8) 100%);
}
.wealth-point-box.ocher .wealth-link-panel-wrap .wealth-link-panel::after {
  background-image: url(/assets/images/icn_btn_arrow_ocher.svg);
}
.wealth-point-box.ocher .wealth-link-panel-wrap .wealth-link-panel .ttl {
  color: #CBA64C;
}
.wealth-point-box + .wealth-point-box {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .wealth-point-box + .wealth-point-box {
    margin-top: 32px;
  }
}
.wealth-point-box .box-inner {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 40px;
  position: relative;
  padding: 48px 32px;
}
@media screen and (max-width: 767px) {
  .wealth-point-box .box-inner {
    border-radius: 16px;
    padding: 24px 16px;
  }
}
.wealth-point-box .box-inner::after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  right: 10px;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
}
@media screen and (max-width: 767px) {
  .wealth-point-box .box-inner::after {
    top: 8px;
    right: 8px;
    width: calc(100% - 16px);
    height: calc(100% - 16px);
    border-radius: 8px;
  }
}
.wealth-point-box .wealth-point-ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 2;
}
.wealth-point-box .wealth-point-ttl .num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: 30px;
}
@media screen and (max-width: 767px) {
  .wealth-point-box .wealth-point-ttl .num {
    height: 18px;
  }
}
.wealth-point-box .wealth-point-ttl .num img {
  max-width: none;
  width: auto;
  height: 100%;
}
.wealth-point-box .wealth-point-ttl .ttl {
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .wealth-point-box .wealth-point-ttl .ttl {
    font-size: 2rem;
  }
}
.wealth-point-box .wealth-lead {
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 2;
  font-size: 1.8rem;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .wealth-point-box .wealth-lead {
    margin-top: 4px;
    font-size: 1.6rem;
  }
}
.wealth-point-box .wealth-link-panel-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  margin-top: 40px;
  gap: 40px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .wealth-point-box .wealth-link-panel-wrap {
    margin-top: 16px;
    flex-direction: column;
    gap: 16px;
  }
}
@media screen and (min-width: 768px) {
  .wealth-point-box .wealth-link-panel-wrap.col2 .wealth-link-panel {
    width: calc((100% - 40px) / 2);
  }
  .wealth-point-box .wealth-link-panel-wrap.col3 .wealth-link-panel {
    width: calc((100% - 80px) / 3);
  }
}
.wealth-point-box .wealth-link-panel-wrap .wealth-link-panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 32px 40px 48px;
  background-color: #fff;
  border-radius: 5px;
}
@media (any-hover: hover) {
  .wealth-point-box .wealth-link-panel-wrap .wealth-link-panel:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .wealth-point-box .wealth-link-panel-wrap .wealth-link-panel {
    padding: 24px 16px 24px;
  }
}
.wealth-point-box .wealth-link-panel-wrap .wealth-link-panel::after {
  content: "";
  display: block;
  position: absolute;
  width: 24px;
  height: 24px;
  bottom: 20px;
  right: 20px;
  background: url(/assets/images/icn_btn_arrow.svg) no-repeat center/cover;
}
@media screen and (max-width: 767px) {
  .wealth-point-box .wealth-link-panel-wrap .wealth-link-panel::after {
    width: 16px;
    height: 16px;
    bottom: 8px;
    right: 8px;
  }
}
.wealth-point-box .wealth-link-panel-wrap .wealth-link-panel .ttl {
  color: #036CB8;
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .wealth-point-box .wealth-link-panel-wrap .wealth-link-panel .ttl {
    font-size: 1.8rem;
  }
}
.wealth-point-box .wealth-link-panel-wrap .wealth-link-panel .icn {
  width: 96px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .wealth-point-box .wealth-link-panel-wrap .wealth-link-panel .icn {
    width: 64px;
    margin-top: 12px;
  }
}
.wealth-point-box .wealth-link-panel-wrap .wealth-link-panel .txt {
  margin-top: 24px;
  text-align: center;
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .wealth-point-box .wealth-link-panel-wrap .wealth-link-panel .txt {
    margin-top: 12px;
  }
}
.wealth-point-box .wealth-link-panel-wrap .wealth-link-panel .notes {
  margin-top: 10px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.85;
}
@media screen and (max-width: 767px) {
  .wealth-point-box .wealth-link-panel-wrap .wealth-link-panel .notes {
    margin-top: 8px;
    font-size: 1.2rem;
  }
}

.wealth-dl-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.wealth-dl-wrap .wealth-dl {
  display: flex;
  border: 1px solid #CFDEE6;
}
@media screen and (max-width: 767px) {
  .wealth-dl-wrap .wealth-dl {
    flex-direction: column;
  }
}
.wealth-dl-wrap .wealth-dl dt {
  display: flex;
  align-items: center;
  width: 314px;
  gap: 28px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  padding: 28px 25px;
  background-color: #E5F6FD;
}
@media screen and (max-width: 767px) {
  .wealth-dl-wrap .wealth-dl dt {
    width: 100%;
    gap: 12px;
    font-size: 1.8rem;
    padding: 16px;
  }
}
.wealth-dl-wrap .wealth-dl dt .num {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .wealth-dl-wrap .wealth-dl dt .num {
    height: 18px;
  }
}
.wealth-dl-wrap .wealth-dl dt .num img {
  max-width: none;
  width: auto;
  height: 100%;
}
.wealth-dl-wrap .wealth-dl dd {
  padding: 32px 40px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .wealth-dl-wrap .wealth-dl dd {
    padding: 16px;
    flex: 0 1 auto;
  }
}

.wealth-link-box-wrap {
  display: flex;
  gap: 18px;
  padding: 20px;
  border-radius: 40px;
  background: linear-gradient(to right, rgba(99, 178, 235, 0.5) 0%, rgba(69, 209, 176, 0.5) 50%, rgba(227, 230, 149, 0.5) 80%, rgba(203, 166, 76, 0.5) 100%);
}
@media screen and (max-width: 767px) {
  .wealth-link-box-wrap {
    gap: 10px;
    border-radius: 24px;
    padding: 10px;
    flex-direction: column;
  }
}
.wealth-link-box-wrap .wealth-link-box {
  display: flex;
  flex-wrap: wrap;
  gap: 0 18px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .wealth-link-box-wrap .wealth-link-box {
    width: 100%;
    border-radius: 20px;
    gap: 16px;
  }
}
@media screen and (min-width: 768px) {
  .wealth-link-box-wrap .wealth-link-box:first-of-type {
    flex: 1;
  }
  .wealth-link-box-wrap .wealth-link-box:first-of-type::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 120px);
    background-color: #fff;
  }
  .wealth-link-box-wrap .wealth-link-box:first-of-type::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 64px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 120px - 64px);
    background: url(/assets/images/item_dashed_line.svg) repeat-y left top/1px auto;
  }
  .wealth-link-box-wrap .wealth-link-box:first-of-type .box {
    width: calc(50% - 9px);
  }
  .wealth-link-box-wrap .wealth-link-box:first-of-type .box .txt {
    display: none;
  }
  .wealth-link-box-wrap .wealth-link-box:last-of-type .box {
    width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .wealth-link-box-wrap .wealth-link-box:first-of-type > .txt {
    display: none;
  }
}
.wealth-link-box-wrap .wealth-link-box .box {
  display: flex;
  flex-direction: column;
  border-radius: 30px 30px 0 0;
  background-color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .wealth-link-box-wrap .wealth-link-box .box {
    width: 100%;
    border-radius: 16px;
  }
}
.wealth-link-box-wrap .wealth-link-box .box .box-ttl {
  display: flex;
  align-items: baseline;
  position: relative;
  gap: 30px;
  padding: 24px 32px;
  background: linear-gradient(to right, rgb(3, 108, 184) 0%, rgba(3, 108, 184, 0.8) 100%);
}
@media screen and (max-width: 767px) {
  .wealth-link-box-wrap .wealth-link-box .box .box-ttl {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    padding: 20px 16px;
  }
}
.wealth-link-box-wrap .wealth-link-box .box .box-ttl::after {
  content: "";
  display: block;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .wealth-link-box-wrap .wealth-link-box .box .box-ttl::after {
    position: static;
  }
}
.wealth-link-box-wrap .wealth-link-box .box .box-ttl .num {
  display: flex;
  align-items: center;
  height: 24px;
}
@media screen and (max-width: 767px) {
  .wealth-link-box-wrap .wealth-link-box .box .box-ttl .num {
    height: 18px;
  }
}
.wealth-link-box-wrap .wealth-link-box .box .box-ttl .num img {
  max-width: none;
  width: auto;
  height: 100%;
}
.wealth-link-box-wrap .wealth-link-box .box .box-ttl .ttl {
  display: block;
  flex: 1;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .wealth-link-box-wrap .wealth-link-box .box .box-ttl .ttl {
    font-size: 1.8rem;
    flex: 0 1 auto;
  }
}
.wealth-link-box-wrap .wealth-link-box .box .txt {
  margin-top: auto;
}
.wealth-link-box-wrap .wealth-link-box .box .btn-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 42px;
}
@media screen and (max-width: 767px) {
  .wealth-link-box-wrap .wealth-link-box .box .btn-wrap {
    padding: 20px 16px;
  }
}
.wealth-link-box-wrap .wealth-link-box .txt {
  position: relative;
  padding: 14px;
  width: 100%;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .wealth-link-box-wrap .wealth-link-box .txt {
    font-size: 1.4rem;
  }
}
.wealth-link-box-wrap .wealth-link-box .txt::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  top: 0;
  left: 0;
  opacity: 0.2;
  background-color: #848484;
}
.wealth-link-box-wrap .box.box-01 .box-ttl::after {
  width: 144px;
  height: 80px;
  right: -4px;
  bottom: -16px;
  background: url(/assets/images/item_wealth_anchor_01.png) no-repeat center/auto 78px;
}
@media screen and (max-width: 767px) {
  .wealth-link-box-wrap .box.box-01 .box-ttl::after {
    width: 100%;
  }
}
.wealth-link-box-wrap .box.box-02 .box-ttl {
  background: linear-gradient(to right, rgb(24, 183, 147) 0%, rgba(24, 183, 147, 0.8) 100%);
}
.wealth-link-box-wrap .box.box-02 .box-ttl::after {
  width: 130px;
  height: 64px;
  right: -14px;
  bottom: -12px;
  background: url(/assets/images/item_wealth_anchor_02.png) no-repeat center/auto 62px;
}
@media screen and (max-width: 767px) {
  .wealth-link-box-wrap .box.box-02 .box-ttl::after {
    width: 100%;
  }
}
.wealth-link-box-wrap .box.box-03 .box-ttl {
  background: #CBA64C;
}
.wealth-link-box-wrap .box.box-03 .box-ttl::after {
  width: 104px;
  height: 86px;
  right: 10px;
  bottom: -12px;
  background: url(/assets/images/item_wealth_anchor_03.png) no-repeat center/auto 86px;
}
@media screen and (max-width: 767px) {
  .wealth-link-box-wrap .box.box-03 .box-ttl::after {
    width: 100%;
  }
}

/* /wealth */
/* potal */
.service-portal-mv {
  margin-top: 100px;
  background: linear-gradient(rgba(255, 255, 255, 0), #e4eaed);
  min-height: 666px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service-portal-mv {
    margin-top: 68px;
    min-height: unset;
    background: none;
  }
}
.service-portal-mv .pagettl-wrap {
  background-image: none;
  border-bottom: none;
  display: block;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .service-portal-mv .pagettl-wrap {
    min-height: unset;
  }
}
.service-portal-mv .inner-wrap {
  position: relative;
  padding: 76px 20px 40px;
  max-width: 1246px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .service-portal-mv .inner-wrap {
    padding: 0 16px !important;
  }
}
.service-portal-mv .deco-txt {
  position: absolute;
  left: -60px;
  top: 20px;
  z-index: -1;
}
.service-portal-mv .deco-txt img {
  height: 116px;
}
@media screen and (max-width: 767px) {
  .service-portal-mv .deco-txt {
    left: 0;
    top: 12px;
    z-index: 1;
  }
  .service-portal-mv .deco-txt img {
    height: 138px;
    width: auto;
  }
}
.service-portal-mv .btn-wrap {
  position: absolute;
  right: -20px;
  top: 20px;
  width: 300px;
}
@media screen and (max-width: 767px) {
  .service-portal-mv .btn-wrap {
    width: 100%;
    position: unset;
  }
}
.service-portal-mv .cmn-btn {
  width: 100%;
  min-height: 64px;
}
.service-portal-mv .cmn-btn.sub-color {
  color: #fff;
}
.service-portal-mv .cmn-btn.sub-color::before {
  background-image: url(/assets/images/icn_btn_arrow_white.svg);
}
.service-portal-mv .cmn-btn.sub-color::after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: #0f98ef;
  border: 1px solid #0f98ef;
}
@media (any-hover: hover) {
  .service-portal-mv .cmn-btn.sub-color:hover {
    color: #0f98ef;
  }
  .service-portal-mv .cmn-btn.sub-color:hover::before {
    background-image: url(/assets/images/icn_btn_arrow.svg);
  }
  .service-portal-mv .cmn-btn.sub-color:hover::after {
    background-color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .service-portal-mv .cmn-btn {
    min-height: 50px;
    font-size: 1.4rem;
  }
}
.service-portal-mv .mv {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 683px;
}
@media screen and (max-width: 767px) {
  .service-portal-mv .mv {
    position: unset;
    width: 100%;
    margin: 35px 0 0;
  }
}
.service-portal-mv .pagettl {
  font-size: 5.6rem;
  color: #006cb8;
  margin-bottom: 24px;
  line-height: 1.214;
}
@media screen and (max-width: 767px) {
  .service-portal-mv .pagettl {
    font-size: 2.8rem;
    margin-bottom: 12px;
    padding-left: 28px;
  }
}
.service-portal-mv .lead {
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .service-portal-mv .lead {
    font-size: 1.2rem;
    font-weight: bold;
    padding-left: 28px;
    padding-right: 16px;
  }
}
@media screen and (max-width: 767px) {
  .service-portal-mv .mv-top-wrap {
    background: linear-gradient(#fff, #d9e6ed);
    margin: 0 -16px;
    padding-top: 38px;
  }
}
@media screen and (max-width: 767px) {
  .service-portal-mv .mv-btm-wrap {
    background-color: #f0f3f5;
    padding: 20px;
    margin: 0 -20px;
  }
}

.pagettl-anchor-v2 {
  max-width: 640px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.1);
  border-radius: 32px;
  background-color: #fff;
  overflow: clip;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .pagettl-anchor-v2 {
    margin-top: 20px;
    border-radius: 16px;
  }
}
.pagettl-anchor-v2 .pagettl-anchor-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
@media screen and (max-width: 767px) {
  .pagettl-anchor-v2 .pagettl-anchor-list {
    flex-direction: column;
  }
}
.pagettl-anchor-v2 .pagettl-anchor-list > li {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .pagettl-anchor-v2 .pagettl-anchor-list > li {
    width: 100%;
  }
}
.pagettl-anchor-v2 .pagettl-anchor-list > li:nth-of-type(odd) {
  border-right: 1px solid #e4eaed;
}
@media screen and (max-width: 767px) {
  .pagettl-anchor-v2 .pagettl-anchor-list > li:nth-of-type(odd) {
    border-right: none;
  }
}
.pagettl-anchor-v2 .pagettl-anchor-list > li:not(:nth-of-type(-n + 2)) {
  border-top: 1px solid #e4eaed;
}
@media screen and (max-width: 767px) {
  .pagettl-anchor-v2 .pagettl-anchor-list > li:nth-of-type(2) {
    border-top: 1px solid #e4eaed;
  }
}
.pagettl-anchor-v2 .pagettl-anchor-list > li a {
  min-height: 80px;
  display: flex;
  align-items: center;
  font-size: 1.8rem;
  font-weight: bold;
  padding-left: 28px;
  background-image: none;
}
.pagettl-anchor-v2 .pagettl-anchor-list > li a .num {
  margin-right: 20px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .pagettl-anchor-v2 .pagettl-anchor-list > li a {
    min-height: 48px;
    font-size: 1.4rem;
    padding-left: 15px;
    background: url(/assets/images/icn_arrow_anchor_blue.png) no-repeat calc(100% - 20px) center/12px auto;
  }
  .pagettl-anchor-v2 .pagettl-anchor-list > li a .num {
    font-size: 2rem;
  }
}

.topic-path.left ul {
  justify-content: flex-start;
}

.portal-cmn-section .sec-txt {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .portal-cmn-section .sec-txt {
    font-size: 1.2rem;
  }
}
.portal-cmn-section .btn-wrap {
  margin-top: 34px;
}
@media screen and (max-width: 767px) {
  .portal-cmn-section .btn-wrap {
    margin-top: 26px;
  }
}
.portal-cmn-section .cmn-btn {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .portal-cmn-section .cmn-btn {
    font-size: 1.2rem;
    min-height: 48px;
  }
}

.knowledge-section {
  background-color: #e4eaed;
  padding: 90px 0 110px;
}
@media screen and (max-width: 767px) {
  .knowledge-section {
    padding: 76px 0 0;
  }
  .knowledge-section .inner-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.knowledge-section .sec-ttl-wrap {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .knowledge-section .sec-ttl-wrap {
    display: block;
    position: relative;
  }
}
.knowledge-section .sec-ttl-wrap .txt-wrap {
  flex: 1;
  padding-top: 34px;
}
@media screen and (max-width: 767px) {
  .knowledge-section .sec-ttl-wrap .txt-wrap {
    flex: none;
    padding-top: 0;
  }
}
.knowledge-section .sec-ttl-wrap .deco-txt {
  z-index: unset;
}
.knowledge-section .sec-ttl-wrap .img-wrap {
  width: 350px;
}
@media screen and (max-width: 767px) {
  .knowledge-section .sec-ttl-wrap .img-wrap {
    width: 115px;
    position: absolute;
    right: 0;
    top: -50px;
  }
}
.knowledge-section .sec-txt {
  max-width: 540px;
}

.number-h2-ttl {
  position: relative;
}
.number-h2-ttl .deco-txt {
  position: absolute;
  left: -120px;
  top: -4px;
  z-index: -1;
  pointer-events: none;
}
.number-h2-ttl .deco-txt img {
  height: 145px;
  width: auto;
}
@media screen and (max-width: 767px) {
  .number-h2-ttl .deco-txt {
    left: -20px;
    top: -36px;
  }
  .number-h2-ttl .deco-txt img {
    height: 60px;
  }
}
.number-h2-ttl .ttl {
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 34px;
}
.number-h2-ttl .ttl .num {
  display: block;
  margin-bottom: 36px;
  width: auto;
  height: 46px;
}
@media screen and (max-width: 767px) {
  .number-h2-ttl .ttl {
    font-size: 2.8rem;
    margin-bottom: 16px;
  }
  .number-h2-ttl .ttl .num {
    margin-bottom: 26px;
    height: 36px;
  }
}

.knowledge-col2 {
  display: flex;
  gap: 24px;
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .knowledge-col2 {
    flex-direction: column;
    margin-top: 30px;
  }
}
.knowledge-col2 .knowledge-col {
  width: calc(50% - 12px);
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  padding: 28px 84px 32px;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  .knowledge-col2 .knowledge-col {
    width: 100%;
    padding: 20px 44px 24px;
  }
}
.knowledge-col2 .knowledge-col .col-ttl {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
}
.knowledge-col2 .knowledge-col .col-ttl .focus {
  font-size: 2.4rem;
  position: relative;
}
.knowledge-col2 .knowledge-col .col-ttl .focus::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 6px;
  background-color: #006cb8;
  opacity: 0.2;
  bottom: 2px;
  top: auto;
}
.knowledge-col2 .knowledge-col .col-ttl.person {
  color: #006cb8;
}
.knowledge-col2 .knowledge-col .col-ttl.company {
  color: #18b793;
}
.knowledge-col2 .knowledge-col .knowledge-slider-wrap .splide__track {
  overflow: visible;
}
.knowledge-col2 .knowledge-col .knowledge-slider-wrap .splide__track .splide__slide {
  opacity: 0.2;
  transition: all 0.3s ease;
  margin-right: 40px;
}
@media screen and (max-width: 767px) {
  .knowledge-col2 .knowledge-col .knowledge-slider-wrap .splide__track .splide__slide {
    margin-right: 22px;
  }
}
.knowledge-col2 .knowledge-col .knowledge-slider-wrap .splide__track .splide__slide.is-active {
  opacity: 1;
}
.knowledge-col2 .knowledge-col .knowledge-slider-wrap .splide__arrow {
  width: 48px;
  height: 48px;
  background: url(/assets/images/icn_service_portal_slider_arrow.png) no-repeat center/contain;
}
.knowledge-col2 .knowledge-col .knowledge-slider-wrap .splide__arrow svg {
  display: none;
}
@media screen and (max-width: 767px) {
  .knowledge-col2 .knowledge-col .knowledge-slider-wrap .splide__arrow {
    width: 33px;
    height: 33px;
  }
}
.knowledge-col2 .knowledge-col .knowledge-slider-wrap .splide__arrow--prev {
  left: -65px;
  transform: scaleX(-1) translateY(-50%);
}
@media screen and (max-width: 767px) {
  .knowledge-col2 .knowledge-col .knowledge-slider-wrap .splide__arrow--prev {
    left: -40px;
  }
}
.knowledge-col2 .knowledge-col .knowledge-slider-wrap .splide__arrow--next {
  right: -65px;
}
@media screen and (max-width: 767px) {
  .knowledge-col2 .knowledge-col .knowledge-slider-wrap .splide__arrow--next {
    right: -40px;
  }
}
.knowledge-col2 .knowledge-col .slider-btn-wrap {
  margin-bottom: 32px;
  width: calc(100% + 108px);
  margin-left: -54px;
}
@media screen and (max-width: 767px) {
  .knowledge-col2 .knowledge-col .slider-btn-wrap {
    margin-bottom: 22px;
    width: calc(100% + 64px);
    margin-left: -32px;
  }
}
.knowledge-col2 .knowledge-col .slider-btn-wrap .btn-list {
  display: flex;
  gap: 8px;
  margin-top: 0;
}
.knowledge-col2 .knowledge-col .slider-btn-wrap .btn-list .item {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .knowledge-col2 .knowledge-col .slider-btn-wrap .btn-list {
    flex-direction: row;
    gap: 4px;
  }
}
.knowledge-col2 .knowledge-col .slider-btn-wrap .slider-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #006cb8;
  height: 100%;
  padding: 8px;
  border-radius: 40px;
  color: #006cb8;
  width: 100%;
  text-align: center;
}
.knowledge-col2 .knowledge-col .slider-btn-wrap .slider-btn.is-active {
  background-color: #006cb8;
  color: #fff;
  font-weight: bold;
}
@media (any-hover: hover) {
  .knowledge-col2 .knowledge-col .slider-btn-wrap .slider-btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .knowledge-col2 .knowledge-col .slider-btn-wrap .slider-btn {
    font-size: 1.2rem;
    min-height: 28px;
    padding: 2px;
  }
}
@media screen and (max-width: 767px) {
  .knowledge-col2 .knowledge-col .slider-btn-wrap.company {
    margin-left: -32px;
  }
}
.knowledge-col2 .knowledge-col .slider-btn-wrap.company .slider-btn {
  border-color: #18b793;
  color: #18b793;
}
.knowledge-col2 .knowledge-col .slider-btn-wrap.company .slider-btn.is-active {
  background-color: #18b793;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .knowledge-col2 .knowledge-col .slider-btn-wrap.company .slider-btn {
    min-height: 44px;
    font-size: 1.2rem;
  }
}
.knowledge-col2 .knowledge-col .knowledge-system-box {
  border-radius: 24px;
  padding: 40px;
  background: #006cb8;
  color: #fff;
  position: relative;
  height: 100%;
}
.knowledge-col2 .knowledge-col .knowledge-system-box.company {
  background-color: #18b793;
}
.knowledge-col2 .knowledge-col .knowledge-system-box.company .cmn-btn {
  background-color: transparent;
  background-image: none;
  color: #18b793;
  border: 1px solid #18b793;
}
.knowledge-col2 .knowledge-col .knowledge-system-box.company .cmn-btn::before {
  background-image: url(/assets/images/icn_btn_arrow_green.svg);
}
@media (any-hover: hover) {
  .knowledge-col2 .knowledge-col .knowledge-system-box.company .cmn-btn:hover {
    color: #fff;
    border-color: #fff;
  }
  .knowledge-col2 .knowledge-col .knowledge-system-box.company .cmn-btn:hover::before {
    background-image: url(/assets/images/icn_btn_arrow_green_hover.png);
  }
  .knowledge-col2 .knowledge-col .knowledge-system-box.company .cmn-btn:hover::after {
    background-color: #18b793;
  }
}
@media screen and (max-width: 767px) {
  .knowledge-col2 .knowledge-col .knowledge-system-box.company .cmn-btn {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .knowledge-col2 .knowledge-col .knowledge-system-box {
    padding: 25px 28px;
  }
}
.knowledge-col2 .knowledge-col .knowledge-system-box::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3));
  z-index: 1;
}
.knowledge-col2 .knowledge-col .knowledge-system-box > * {
  position: relative;
  z-index: 2;
}
.knowledge-col2 .knowledge-col .knowledge-system-box .box-icn {
  text-align: center;
}
.knowledge-col2 .knowledge-col .knowledge-system-box .box-icn img {
  width: 96px;
}
@media screen and (max-width: 767px) {
  .knowledge-col2 .knowledge-col .knowledge-system-box .box-icn img {
    width: 67px;
  }
}
.knowledge-col2 .knowledge-col .knowledge-system-box .box-ttl {
  text-align: center;
  font-size: 3.6rem;
  font-weight: bold;
  line-height: 1.3;
  margin-top: 14px;
}
.knowledge-col2 .knowledge-col .knowledge-system-box .box-ttl .sub {
  font-size: 1.8rem;
  display: block;
}
@media screen and (max-width: 767px) {
  .knowledge-col2 .knowledge-col .knowledge-system-box .box-ttl {
    font-size: 2.5rem;
  }
  .knowledge-col2 .knowledge-col .knowledge-system-box .box-ttl .sub {
    font-size: 1.3rem;
  }
}
.knowledge-col2 .knowledge-col .knowledge-system-box .box-txt {
  margin-top: 26px;
  padding: 23px 38px;
  background: rgba(255, 255, 255, 0.2);
  margin-left: -40px;
  margin-right: -40px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .knowledge-col2 .knowledge-col .knowledge-system-box .box-txt {
    font-size: 1.2rem;
    margin-left: -28px;
    margin-right: -28px;
    margin-top: 30px;
  }
}
.knowledge-col2 .knowledge-col .knowledge-system-box .box-bottom {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .knowledge-col2 .knowledge-col .knowledge-system-box .box-bottom {
    margin-top: 20px;
  }
}

.knowledge-btm-wrap {
  background-color: #006cb8;
  border-radius: 8px;
  padding: 38px 40px;
  margin: 108px -40px 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .knowledge-btm-wrap {
    padding: 10px;
    margin: 26px -8px 0;
  }
}
.knowledge-btm-wrap .white-inr-wrap {
  padding: 72px 80px;
  background-color: #fff;
  border-radius: 48px;
}
@media screen and (max-width: 767px) {
  .knowledge-btm-wrap .white-inr-wrap {
    padding: 274px 20px 28px;
    border-radius: 24px;
  }
}
.knowledge-btm-wrap .wrap-ttl {
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: #006cb8;
  letter-spacing: -0.1;
}
@media screen and (max-width: 767px) {
  .knowledge-btm-wrap .wrap-ttl {
    font-size: 2.4rem;
    margin-top: 15px;
    margin-bottom: 20px;
  }
}
.knowledge-btm-wrap .wrap-txt {
  max-width: 612px;
}
@media screen and (max-width: 767px) {
  .knowledge-btm-wrap .wrap-txt {
    min-width: 100%;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .knowledge-btm-wrap .btn-wrap {
    text-align: center;
  }
}
.knowledge-btm-wrap .cmn-btn {
  width: 245px;
  min-height: 64px;
}
@media screen and (max-width: 767px) {
  .knowledge-btm-wrap .cmn-btn {
    width: auto;
    min-height: 48px;
  }
}
.knowledge-btm-wrap .wrap-img {
  width: 552px;
  position: absolute;
  right: -30px;
  bottom: -74px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .knowledge-btm-wrap .wrap-img {
    width: 100%;
    height: 236px;
    left: 50%;
    top: 38px;
    bottom: auto;
    transform: translateX(-50%);
    text-align: center;
  }
  .knowledge-btm-wrap .wrap-img img {
    height: 100%;
    width: auto;
  }
}

.life-stage-section {
  background-color: #e4eaed;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .life-stage-section {
    padding-top: 64px;
    padding-bottom: 50px;
  }
  .life-stage-section .inner-wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.life-stage-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .life-stage-list {
    flex-direction: column;
  }
}
.life-stage-list > li {
  width: calc((100% - 32px) / 3);
}
.life-stage-list > li:not(.ttl-item) {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .life-stage-list > li {
    width: 100%;
  }
}
.life-stage-list .number-h2-ttl .deco-txt {
  z-index: 1;
}
.life-stage-list .number-h2-ttl .deco-txt img {
  max-width: unset;
}
@media screen and (max-width: 767px) {
  .life-stage-list .number-h2-ttl .deco-txt {
    left: -20px;
    opacity: 0.6;
  }
}
.life-stage-list .number-h2-ttl .ttl {
  position: relative;
  z-index: 2;
}
.life-stage-list .life-stage-box {
  display: flex;
  flex-direction: column;
  height: 280px;
  padding: 30px 32px 32px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: cover;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .life-stage-list .life-stage-box {
    padding: 24px;
    height: 186px;
    border-radius: 4px;
  }
}
.life-stage-list .life-stage-box.box-01 {
  background-image: url(/assets/images/img_service_portal_life_stage_01.png);
}
.life-stage-list .life-stage-box.box-02 {
  background-image: url(/assets/images/img_service_portal_life_stage_02.png);
}
.life-stage-list .life-stage-box.box-02 .cmn-btn {
  color: #d45597;
}
.life-stage-list .life-stage-box.box-02 .cmn-btn::before {
  background-image: url(/assets/images/icn_btn_arrow_pink.png);
}
@media (any-hover: hover) {
  .life-stage-list .life-stage-box.box-02 .cmn-btn:hover::before {
    background-image: url(/assets/images/icn_btn_arrow_pink_hover.png);
  }
  .life-stage-list .life-stage-box.box-02 .cmn-btn:hover::after {
    background-color: #d45597;
  }
}
.life-stage-list .life-stage-box.box-03 {
  background-image: url(/assets/images/img_service_portal_life_stage_03.png);
}
.life-stage-list .life-stage-box.box-03 .cmn-btn {
  color: #cba64c;
}
.life-stage-list .life-stage-box.box-03 .cmn-btn::before {
  background-image: url(/assets/images/icn_btn_arrow_yellow.png);
}
@media (any-hover: hover) {
  .life-stage-list .life-stage-box.box-03 .cmn-btn:hover::before {
    background-image: url(/assets/images/icn_btn_arrow_yellow_hover.png);
  }
  .life-stage-list .life-stage-box.box-03 .cmn-btn:hover::after {
    background-color: #cba64c;
  }
}
.life-stage-list .life-stage-box.box-04 {
  background-image: url(/assets/images/img_service_portal_life_stage_04.png);
}
.life-stage-list .life-stage-box.box-04 .cmn-btn {
  color: #69a792;
}
.life-stage-list .life-stage-box.box-04 .cmn-btn::before {
  background-image: url(/assets/images/icn_btn_arrow_green.png);
}
@media (any-hover: hover) {
  .life-stage-list .life-stage-box.box-04 .cmn-btn:hover::before {
    background-image: url(/assets/images/icn_btn_arrow_green_hover.png);
  }
  .life-stage-list .life-stage-box.box-04 .cmn-btn:hover::after {
    background-color: #69a792;
  }
}
.life-stage-list .life-stage-box.box-05 {
  background-image: url(/assets/images/img_service_portal_life_stage_05.png);
}
.life-stage-list .life-stage-box.box-05 .cmn-btn {
  color: #9593c9;
}
.life-stage-list .life-stage-box.box-05 .cmn-btn::before {
  background-image: url(/assets/images/icn_btn_arrow_purple.png);
}
@media (any-hover: hover) {
  .life-stage-list .life-stage-box.box-05 .cmn-btn:hover::before {
    background-image: url(/assets/images/icn_btn_arrow_purple_hover.png);
  }
  .life-stage-list .life-stage-box.box-05 .cmn-btn:hover::after {
    background-color: #9593c9;
  }
}
.life-stage-list .life-stage-box .box-ttl {
  font-size: 2.4rem;
  font-weight: bold;
  color: #fff;
}
.life-stage-list .life-stage-box .btn-wrap {
  margin-top: auto;
}
.life-stage-list .life-stage-box .cmn-btn {
  min-height: 48px;
  background-image: none;
}
.life-stage-list .life-stage-box .cmn-btn::after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
@media (any-hover: hover) {
  .life-stage-list .life-stage-box .cmn-btn:hover {
    color: #fff;
  }
}
@media screen and (max-width: 767px) {
  .life-stage-list .life-stage-box .cmn-btn {
    min-height: 36px;
    width: auto;
    padding-right: 40px;
    padding-left: 18px;
  }
  .life-stage-list .life-stage-box .cmn-btn::before {
    background-position: calc(100% - 16px) center;
  }
}

.simulation-section {
  background-color: #e4eaed;
}
.simulation-section .simulation-inner-wrap {
  padding-top: 96px;
  padding-bottom: 96px;
  position: relative;
  background: url(/assets/images/img_service_portal_simulation_01.png) no-repeat 10px calc(100% + 95px)/548px;
}
@media screen and (max-width: 767px) {
  .simulation-section .simulation-inner-wrap {
    padding-top: 60px;
    padding-bottom: 50px;
    background-size: 150px auto;
    background-position: calc(100% - 10px) 10px;
  }
}
.simulation-section .number-h2-ttl .deco-txt {
  z-index: 1;
  top: 20px;
}
.simulation-section .number-h2-ttl .deco-txt img {
  height: 116px;
  max-width: unset;
}
@media screen and (max-width: 767px) {
  .simulation-section .number-h2-ttl .deco-txt {
    top: -40px;
  }
  .simulation-section .number-h2-ttl .deco-txt img {
    height: 50px;
  }
}
.simulation-section .simulation-col2 {
  display: flex;
  gap: 56px;
}
@media screen and (max-width: 767px) {
  .simulation-section .simulation-col2 {
    flex-direction: column;
    gap: 28px;
  }
}
.simulation-section .simulation-col2 .left-col {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .simulation-section .simulation-col2 .left-col {
    flex: none;
  }
}
.simulation-section .simulation-col2 .right-col {
  width: 602px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .simulation-section .simulation-col2 .right-col {
    width: 100%;
  }
}
.simulation-section .simulation-col2 .cmn-btn {
  min-width: 246px;
}
.simulation-section .simulation-col2 .about-simulation-box {
  background-color: #fff;
  border-radius: 24px;
  padding: 52px;
  box-shadow: 0 0 24px rgba(13, 18, 20, 0.1);
}
@media screen and (max-width: 767px) {
  .simulation-section .simulation-col2 .about-simulation-box {
    padding: 20px;
  }
}
.simulation-section .simulation-col2 .about-simulation-box .box-ttl {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.2857142857;
  text-align: center;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .simulation-section .simulation-col2 .about-simulation-box .box-ttl {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
.simulation-section .simulation-col2 .about-simulation-box .about-simulation {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .simulation-section .simulation-col2 .about-simulation-box .about-simulation {
    gap: 5px;
  }
}
.simulation-section .simulation-col2 .about-simulation-box .about-simulation > li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - 12px);
  border-radius: 24px;
  background: #dff2ff url(/assets/images/icn_service_portal_check.png) no-repeat 16px 16px/24px auto;
  padding: 37px 20px;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .simulation-section .simulation-col2 .about-simulation-box .about-simulation > li {
    width: calc((100% - 5px) / 2);
    font-size: 1.2rem;
    line-height: 1.5;
    background-size: 18px auto;
    background-position: 7px 7px;
    border-radius: 17px;
    padding: 28px 4px;
  }
}

.phone-section {
  padding-top: 120px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .phone-section {
    padding-top: 76px;
  }
}
.phone-section .section-inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .phone-section .section-inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.phone-section .phone-txt-wrap {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .phone-section .phone-txt-wrap {
    width: 68%;
  }
}
.phone-section .phone-txt-wrap .ttl {
  margin-bottom: 49px;
}
@media screen and (max-width: 767px) {
  .phone-section .phone-txt-wrap .ttl {
    margin-bottom: 16px;
  }
}
@media screen and (min-width: 768px) {
  .phone-section .phone-txt-wrap .btn-wrap {
    margin-bottom: 64px;
  }
}
@media screen and (max-width: 767px) {
  .phone-section .phone-txt-wrap .btn-wrap {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 768px) {
  .phone-section .phone-txt-wrap .btn-wrap .cmn-btn {
    width: 45%;
  }
}
@media screen and (min-width: 768px) {
  .phone-section .phone-txt-wrap .direct-sec-txt {
    margin-bottom: 60px;
    letter-spacing: 2.2px;
  }
}
@media screen and (max-width: 767px) {
  .phone-section .phone-txt-wrap .direct-sec-txt {
    margin-bottom: 16px;
  }
}
.phone-section .phone-img-wrap {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .phone-section .phone-img-wrap {
    position: absolute;
    width: 28%;
    right: 0;
    bottom: 0;
  }
}
.phone-section .phone-img-wrap .app-logo {
  position: absolute;
  left: 27%;
  bottom: -34%;
  width: 63%;
}
@media screen and (max-width: 767px) {
  .phone-section .phone-img-wrap .app-logo {
    position: unset;
    width: 100%;
  }
}
.phone-section .phone-img-wrap .direct-logo {
  position: absolute;
  left: 5%;
  bottom: -71%;
  width: 63%;
}
@media screen and (max-width: 767px) {
  .phone-section .phone-img-wrap .direct-logo {
    position: unset;
    width: 100%;
  }
}
.phone-section .number-h2-ttl {
  display: flex;
  position: relative;
}
@media screen and (max-width: 767px) {
  .phone-section .number-h2-ttl {
    flex-direction: column;
    margin-top: 0 !important;
  }
}
.phone-section .number-h2-ttl .app-pic {
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .phone-section .number-h2-ttl .app-pic {
    top: 3%;
    left: -120px;
    width: 70%;
  }
}
@media screen and (max-width: 767px) {
  .phone-section .number-h2-ttl .app-pic {
    left: -20px;
    top: -50px;
    width: auto;
    height: 50px;
  }
}
.phone-section .number-h2-ttl .direct-pic {
  position: absolute;
  top: 11%;
  right: -117px;
  width: 76%;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .phone-section .number-h2-ttl .direct-pic {
    width: auto;
    left: -20px;
    top: -50px;
  }
  .phone-section .number-h2-ttl .direct-pic img {
    width: auto;
    height: 160px;
  }
}
.phone-section .number-h2-ttl .logo {
  width: 409px;
}
@media screen and (max-width: 767px) {
  .phone-section .number-h2-ttl .logo {
    width: 280px;
  }
}
.phone-section .direct-panel-list, .phone-section .app-panel-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .phone-section .direct-panel-list, .phone-section .app-panel-list {
    flex-direction: column;
    gap: 14px;
  }
}
.phone-section .direct-panel-list > .item, .phone-section .app-panel-list > .item {
  width: calc((100% - 32px) / 2);
}
@media screen and (max-width: 767px) {
  .phone-section .direct-panel-list > .item, .phone-section .app-panel-list > .item {
    width: 100%;
  }
}
.phone-section .direct-panel-list .direct-panel, .phone-section .app-panel-list .direct-panel {
  background-color: #fff;
  border-radius: 32px;
  box-shadow: 0 0 20px rgba(0, 108, 184, 0.1);
  padding: 40px 35px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .phone-section .direct-panel-list .direct-panel, .phone-section .app-panel-list .direct-panel {
    padding: 22px;
    height: auto;
    border-radius: 16px;
  }
  .phone-section .direct-panel-list .direct-panel .upper-wrap, .phone-section .app-panel-list .direct-panel .upper-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
.phone-section .direct-panel-list .direct-panel .panel-ttl, .phone-section .app-panel-list .direct-panel .panel-ttl {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.3;
  margin-bottom: 28px;
}
.phone-section .direct-panel-list .direct-panel .panel-ttl .md, .phone-section .app-panel-list .direct-panel .panel-ttl .md {
  font-size: 2.8rem;
}
.phone-section .direct-panel-list .direct-panel .panel-ttl .lg, .phone-section .app-panel-list .direct-panel .panel-ttl .lg {
  font-size: 3.6rem;
}
.phone-section .direct-panel-list .direct-panel .panel-ttl .color, .phone-section .app-panel-list .direct-panel .panel-ttl .color {
  color: #006cb8;
}
@media screen and (max-width: 767px) {
  .phone-section .direct-panel-list .direct-panel .panel-ttl, .phone-section .app-panel-list .direct-panel .panel-ttl {
    text-align: left;
    font-size: 1.6rem;
    margin-bottom: 0;
    flex: 1;
  }
  .phone-section .direct-panel-list .direct-panel .panel-ttl .md, .phone-section .app-panel-list .direct-panel .panel-ttl .md {
    font-size: 2.1rem;
  }
  .phone-section .direct-panel-list .direct-panel .panel-ttl .lg, .phone-section .app-panel-list .direct-panel .panel-ttl .lg {
    font-size: 2.7rem;
  }
}
@media screen and (max-width: 767px) {
  .phone-section .direct-panel-list .direct-panel .panel-txt, .phone-section .app-panel-list .direct-panel .panel-txt {
    font-size: 1.2rem;
    margin-top: 12px;
  }
}
.phone-section .direct-panel-list .direct-panel .space-txt, .phone-section .app-panel-list .direct-panel .space-txt {
  letter-spacing: 0px;
}
.phone-section .direct-panel-list .app-panel, .phone-section .app-panel-list .app-panel {
  background-color: #fff;
  border-radius: 32px;
  box-shadow: 0 0 20px rgba(0, 108, 184, 0.1);
  padding: 28px 32px 40px;
}
@media screen and (max-width: 767px) {
  .phone-section .direct-panel-list .app-panel, .phone-section .app-panel-list .app-panel {
    padding: 18px 20px 24px;
    border-radius: 16px;
    height: auto;
  }
  .phone-section .direct-panel-list .app-panel .upper-wrap, .phone-section .app-panel-list .app-panel .upper-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
  }
}
.phone-section .direct-panel-list .app-panel .app-panel-lead, .phone-section .app-panel-list .app-panel .app-panel-lead {
  font-size: 2.8rem;
  font-weight: bold;
  color: #006cb8;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .phone-section .direct-panel-list .app-panel .app-panel-lead, .phone-section .app-panel-list .app-panel .app-panel-lead {
    font-size: 1.8rem;
  }
}
.phone-section .direct-panel-list .app-panel .app-panel-ttl, .phone-section .app-panel-list .app-panel .app-panel-ttl {
  text-align: left;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.3;
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
}
.phone-section .direct-panel-list .app-panel .app-panel-ttl span, .phone-section .app-panel-list .app-panel .app-panel-ttl span {
  flex: 1;
  display: inline-block;
}
.phone-section .direct-panel-list .app-panel .app-panel-ttl .md, .phone-section .app-panel-list .app-panel .app-panel-ttl .md {
  font-size: 2.8rem;
}
.phone-section .direct-panel-list .app-panel .app-panel-ttl .lg, .phone-section .app-panel-list .app-panel .app-panel-ttl .lg {
  font-size: 3.6rem;
}
.phone-section .direct-panel-list .app-panel .app-panel-ttl .color, .phone-section .app-panel-list .app-panel .app-panel-ttl .color {
  color: #006cb8;
}
.phone-section .direct-panel-list .app-panel .app-panel-ttl::before, .phone-section .app-panel-list .app-panel .app-panel-ttl::before {
  content: "";
  display: block;
  width: 48px;
  height: 48px;
  background-image: url(/assets/images/icn_service_portal_check.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .phone-section .direct-panel-list .app-panel .app-panel-ttl::before, .phone-section .app-panel-list .app-panel .app-panel-ttl::before {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 767px) {
  .phone-section .direct-panel-list .app-panel .app-panel-ttl, .phone-section .app-panel-list .app-panel .app-panel-ttl {
    text-align: left;
    font-size: 1.6rem;
    gap: 12px;
  }
  .phone-section .direct-panel-list .app-panel .app-panel-ttl .md, .phone-section .app-panel-list .app-panel .app-panel-ttl .md {
    font-size: 2.1rem;
  }
  .phone-section .direct-panel-list .app-panel .app-panel-ttl .lg, .phone-section .app-panel-list .app-panel .app-panel-ttl .lg {
    font-size: 2.7rem;
  }
}
.phone-section .grada-bg-box {
  margin: 62px -40px 0;
  width: calc(100% + 80px);
  padding: 64px 90px;
}
@media screen and (max-width: 767px) {
  .phone-section .grada-bg-box {
    margin: 40px 0 0;
    padding: 32px 10px;
    width: 100%;
  }
}
.phone-section .grada-bg-box .box-ttl {
  margin-bottom: 15px;
}
.phone-section .direct-box-col2 {
  border-radius: 8px;
  overflow: clip;
  display: flex;
  gap: 1px;
}
@media screen and (max-width: 767px) {
  .phone-section .direct-box-col2 {
    margin-top: 32px;
    flex-direction: column;
  }
}
.phone-section .direct-box-col2 > .col {
  background-color: #fff;
  width: calc((100% - 1px) / 2);
  padding: 42px 58px;
}
@media screen and (max-width: 767px) {
  .phone-section .direct-box-col2 > .col {
    width: 100%;
    padding: 24px 16px;
  }
}
.phone-section .direct-box-col2 > .col.left .ttl {
  color: #19a0ff;
}
.phone-section .direct-box-col2 > .col.right .ttl {
  color: #0268b3;
}
.phone-section .direct-box-col2 .ttl {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .phone-section .direct-box-col2 .ttl {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
}
.phone-section .direct-box-col2 .btn-wrap {
  margin-top: 0;
}
.phone-section .direct-box-col2 .direct-btn {
  display: flex;
  align-items: center;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  background-color: #19a0ff;
  background-repeat: no-repeat;
  background-position: calc(100% - 40px) center;
  color: #fff;
  min-height: 80px;
  padding: 10px 60px 10px 40px;
  border-radius: 80px;
}
.phone-section .direct-box-col2 .direct-btn.ver-01 {
  background-image: url(/assets/images/icn_btn_derect_01.png);
  background-size: 16px auto;
}
.phone-section .direct-box-col2 .direct-btn.ver-01[target=_blank] {
  background-image: url(/assets/images/icn_external_white.svg);
}
.phone-section .direct-box-col2 .direct-btn.ver-02 {
  background-image: url(/assets/images/icn_btn_derect_02.png);
  background-size: 14px auto;
  background-color: #0268b3;
}
.phone-section .direct-box-col2 .direct-btn.ver-02 .label {
  margin-right: 16px;
  background-color: rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
  .phone-section .direct-box-col2 .direct-btn {
    font-size: 1.5rem;
    padding: 10px 40px 10px 20px;
    min-height: 60px;
    background-position: calc(100% - 28px) center;
  }
}
@media (any-hover: hover) {
  .phone-section .direct-box-col2 .direct-btn:hover {
    opacity: 0.7;
  }
}
.phone-section .direct-box-col2 .direct-btn .label {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.4rem;
  padding: 4px 14px;
  background-color: #2387cd;
  border-radius: 28px;
  margin-right: 9px;
}
@media screen and (max-width: 767px) {
  .phone-section .direct-box-col2 .direct-btn .label {
    font-size: 1.2rem;
    padding: 4px 10px;
  }
}
.phone-section .notice-acc-wrap {
  margin-top: 40px;
  border-radius: 8px;
  overflow: clip;
  border: 1px solid #0268b3;
}
@media screen and (max-width: 767px) {
  .phone-section .notice-acc-wrap {
    margin-top: 25px;
    position: relative;
  }
  .phone-section .notice-acc-wrap::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: calc(100% - 2px);
    height: calc(100% - 2px);
    left: 1px;
    top: 1px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    pointer-events: none;
    border-radius: 8px;
  }
}
.phone-section .notice-acc-wrap .acc-ttl {
  background: rgba(255, 255, 255, 0.3);
  padding: 10px 50px 10px 30px;
  min-height: 72px;
  border-radius: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.phone-section .notice-acc-wrap .acc-ttl::-webkit-details-marker, .phone-section .notice-acc-wrap .acc-ttl::marker {
  display: none !important;
}
.phone-section .notice-acc-wrap .acc-ttl::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url(/assets/images/icn_acc_open_02.png) no-repeat center/contain;
  position: absolute;
  right: 30px;
  top: calc(50% - 8px);
  transition: all 0.3s ease;
}
.phone-section .notice-acc-wrap .acc-ttl.cur::after {
  background-image: url(/assets/images/icn_acc_close_02.png);
}
.phone-section .notice-acc-wrap .acc-ttl .txt {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .phone-section .notice-acc-wrap .acc-ttl {
    padding: 6px 40px 6px 20px;
    min-height: 62px;
  }
  .phone-section .notice-acc-wrap .acc-ttl::after, .phone-section .notice-acc-wrap .acc-ttl::before {
    right: 15px;
    width: 12px;
    height: 12px;
    top: calc(50% - 6px);
  }
  .phone-section .notice-acc-wrap .acc-ttl .txt {
    font-size: 1.2rem;
  }
}
.phone-section .notice-acc-wrap .acc-contents .acc-contents-inner {
  background: #fff;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .phone-section .notice-acc-wrap .acc-contents .acc-contents-inner {
    padding: 20px;
  }
}

.payment-section {
  padding-top: 96px;
  padding-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .payment-section {
    background: url(/assets/images/img_service_portal_payment_02_sp.png) no-repeat right 80px/132px auto;
    padding-top: 110px;
    padding-bottom: 0;
  }
}
.payment-section .payment-col2 {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .payment-section .payment-col2 {
    flex-direction: column;
    gap: 20px;
  }
}
.payment-section .payment-col2 .left-col {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .payment-section .payment-col2 .left-col {
    flex: none;
  }
}
.payment-section .payment-col2 .right-col {
  width: 660px;
  margin: -20px -40px 0 -20px;
}
@media screen and (max-width: 767px) {
  .payment-section .payment-col2 .right-col {
    width: 100%;
    margin: 0 -20px;
  }
  .payment-section .payment-col2 .right-col img {
    max-width: calc(100% + 40px);
  }
}
.payment-section .payment-col2 .number-h2-ttl .deco-txt {
  top: 30px;
}
@media screen and (max-width: 767px) {
  .payment-section .payment-col2 .number-h2-ttl .deco-txt {
    top: -32px;
  }
}
.payment-section .payment-col2 .btn-wrap {
  margin-top: 34px;
}
@media screen and (max-width: 767px) {
  .payment-section .payment-col2 .btn-wrap {
    margin-top: 20px;
  }
}
.payment-section .payment-col2 .cmn-btn {
  min-width: 246px;
  min-height: 64px;
}
@media screen and (max-width: 767px) {
  .payment-section .payment-col2 .cmn-btn {
    min-height: 48px;
  }
}

.remittance-section {
  position: relative;
  padding-bottom: 96px;
}
@media screen and (max-width: 767px) {
  .remittance-section {
    padding-top: 100px;
    padding-bottom: 80px;
  }
}
@media screen and (min-width: 768px) {
  .remittance-section .remittance-wrap {
    padding-right: 488px;
  }
}
.remittance-section .sec-img-wrap {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: -1;
}
.remittance-section .sec-img-wrap img {
  width: 530px;
}
@media screen and (max-width: 767px) {
  .remittance-section .sec-img-wrap {
    top: 50px;
  }
  .remittance-section .sec-img-wrap img {
    width: 136px;
  }
}
.remittance-section .number-h2-ttl .logo {
  width: 523px;
}
@media screen and (max-width: 767px) {
  .remittance-section .number-h2-ttl .logo {
    width: 262px;
  }
}
.remittance-section .number-h2-ttl .deco-txt {
  top: 26px;
}
.remittance-section .number-h2-ttl .deco-txt img {
  height: 110px;
}
@media screen and (max-width: 767px) {
  .remittance-section .number-h2-ttl .deco-txt {
    top: -40px;
    z-index: -2;
  }
  .remittance-section .number-h2-ttl .deco-txt img {
    height: 50px;
  }
}
.remittance-section .btn-wrap {
  margin-top: 34px;
}
@media screen and (max-width: 767px) {
  .remittance-section .btn-wrap {
    margin-top: 20px;
  }
}
.remittance-section .cmn-btn {
  min-width: 260px;
  min-height: 64px;
}
@media screen and (max-width: 767px) {
  .remittance-section .cmn-btn {
    min-height: 48px;
  }
}
.remittance-section .grada-bg-box {
  margin-left: -40px;
  margin-right: -40px;
}
@media screen and (max-width: 767px) {
  .remittance-section .grada-bg-box {
    margin-left: -8px;
    margin-right: -8px;
    padding: 24px 10px 10px;
  }
}
@media screen and (max-width: 767px) {
  .remittance-section .note-txt {
    font-size: 1.2rem;
    text-align: left !important;
  }
}

.grada-bg-box {
  border-radius: 32px;
  margin-top: 48px;
  padding: 48px 90px;
  background-color: rgb(0, 108, 184);
  position: relative;
}
.grada-bg-box::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.3));
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .grada-bg-box {
    border-radius: 16px;
    margin-top: 32px;
    padding: 32px 10px;
  }
}
.grada-bg-box > * {
  position: relative;
  z-index: 2;
}
.grada-bg-box .box-ttl {
  color: #fff;
  text-align: center;
  font-weight: bold;
  font-size: 3.6rem;
  line-height: 1.4;
  margin-bottom: 32px;
}
.grada-bg-box .box-ttl .sub {
  font-size: 2.2rem;
  display: block;
}
.grada-bg-box .box-ttl .lg {
  font-size: 4.8rem;
}
@media screen and (max-width: 767px) {
  .grada-bg-box .box-ttl {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
  .grada-bg-box .box-ttl .sub {
    font-size: 1.6rem;
  }
  .grada-bg-box .box-ttl .lg {
    font-size: 2.8rem;
  }
}
.grada-bg-box .box-lead {
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .grada-bg-box .box-lead {
    font-size: 1.2rem;
  }
}
.grada-bg-box.merit-box .merit-col3-list {
  display: flex;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .grada-bg-box.merit-box .merit-col3-list {
    gap: 8px;
    flex-direction: column;
  }
}
.grada-bg-box.merit-box .merit-col3-list > li {
  width: calc((100% - 64px) / 3);
}
@media screen and (max-width: 767px) {
  .grada-bg-box.merit-box .merit-col3-list > li {
    width: 100%;
  }
}
.grada-bg-box.merit-box .merit-col3-list .merit-panel {
  background-color: #fff;
  padding: 24px 10px 20px;
  border-radius: 24px;
  text-align: center;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .grada-bg-box.merit-box .merit-col3-list .merit-panel {
    padding: 20px 15px 20px 20px;
    position: relative;
    border-radius: 8px;
  }
}
@media screen and (max-width: 767px) {
  .grada-bg-box.merit-box .merit-col3-list .merit-panel .ttl-wrap {
    min-height: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.grada-bg-box.merit-box .merit-col3-list .merit-panel .sub-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  color: #006cb8;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grada-bg-box.merit-box .merit-col3-list .merit-panel .sub-ttl img {
  margin-left: 8px;
  width: 32px;
}
@media screen and (max-width: 767px) {
  .grada-bg-box.merit-box .merit-col3-list .merit-panel .sub-ttl {
    font-size: 1.4rem;
    text-align: left;
    justify-content: flex-start;
    padding-left: 94px;
  }
  .grada-bg-box.merit-box .merit-col3-list .merit-panel .sub-ttl img {
    width: 16px;
  }
}
.grada-bg-box.merit-box .merit-col3-list .merit-panel .ttl {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 1.5;
}
.grada-bg-box.merit-box .merit-col3-list .merit-panel .ttl .strong {
  font-size: 3.2rem;
  color: #006cb8;
}
@media screen and (max-width: 767px) {
  .grada-bg-box.merit-box .merit-col3-list .merit-panel .ttl {
    font-size: 1.6rem;
    text-align: left;
    padding-left: 94px;
    line-height: 1.3;
    margin-bottom: 0;
  }
  .grada-bg-box.merit-box .merit-col3-list .merit-panel .ttl .strong {
    font-size: 2.7rem;
  }
}
.grada-bg-box.merit-box .merit-col3-list .merit-panel .img img {
  width: 105px;
}
@media screen and (max-width: 767px) {
  .grada-bg-box.merit-box .merit-col3-list .merit-panel .img {
    position: absolute;
    left: 20px;
    top: 20px;
  }
  .grada-bg-box.merit-box .merit-col3-list .merit-panel .img img {
    width: 80px;
  }
}
.grada-bg-box.merit-box .merit-col3-list .merit-panel .txt {
  font-size: 1.8rem;
  line-height: 1.6666666667;
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .grada-bg-box.merit-box .merit-col3-list .merit-panel .txt {
    margin-top: 16px;
    font-size: 1.2rem;
    line-height: 2;
    text-align: left;
  }
}

/* /potal */
/* news */
.news-section {
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .news-section {
    padding-bottom: 100px;
  }
}

.news-area .news-category .category-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 5px;
  grid-row-gap: 12px;
}
@media screen and (max-width: 767px) {
  .news-area .news-category .category-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.news-area .news-category .category-list .category-link {
  display: block;
  position: relative;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.5;
  padding-bottom: 24px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news-area .news-category .category-list .category-link {
    font-size: 1.6rem;
    padding-bottom: 16px;
  }
}
.news-area .news-category .category-list .category-link::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  background: #E3E3E3;
  transition: all 0.3s ease;
}
.news-area .news-category .category-list .category-link::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  opacity: 0;
  background: linear-gradient(to right, #2ba9ff 0%, #3d3daa 100%);
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .news-area .news-category .category-list .category-link:hover::after {
    opacity: 1;
  }
}
.news-area .news-category .category-list .category-link.cur::after {
  opacity: 1;
}
.news-area .news-select {
  margin-top: 48px;
  position: relative;
  width: 140px;
  border: 1px solid #D0D0D0;
}
@media screen and (max-width: 767px) {
  .news-area .news-select {
    width: 100%;
    margin-top: 40px;
  }
}
.news-area .news-select::after {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 10px;
  top: calc(50% - 5px);
  right: 16px;
  background: url(/assets/images/icn_select_arr.svg) no-repeat center/12px auto;
  pointer-events: none;
}
.news-area .news-select select {
  display: flex;
  width: 100%;
  padding: 12px 24px;
  border: none;
}
.news-area .news-detail-list {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .news-area .news-detail-list {
    margin-top: 40px;
  }
}
.news-area .news-detail-list li + li .news-link {
  padding-top: 32px;
}
@media screen and (max-width: 767px) {
  .news-area .news-detail-list li + li .news-link {
    padding-top: 20px;
  }
}
.news-area .news-detail-list li .news-link {
  display: block;
  padding-bottom: 32px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news-area .news-detail-list li .news-link {
    padding-bottom: 20px;
  }
}
.news-area .news-detail-list li .news-link::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1.5px;
  left: 0;
  bottom: 0;
  background-color: #CFDEE6;
}
.news-area .news-detail-list li .news-link::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 1.5px;
  right: 100%;
  bottom: 0;
  background-color: #006cb8;
  transition: all 0.3s ease;
  transition-duration: 0.6s;
}
@media (any-hover: hover) {
  .news-area .news-detail-list li .news-link:hover::after {
    right: 0;
  }
  .news-area .news-detail-list li .news-link:hover .txt {
    color: #006cb8;
  }
}
.news-area .news-detail-list li .news-link .news-data {
  display: flex;
  align-items: center;
  gap: 16px;
}
.news-area .news-detail-list li .news-link .news-data .date {
  line-height: 1.5;
}
.news-area .news-detail-list li .news-link .news-data .category {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  border-radius: 8px;
  padding: 2px 16px;
}
.news-area .news-detail-list li .news-link .news-data .category.cat-01 {
  background-color: #B80010;
}
.news-area .news-detail-list li .news-link .news-data .category.cat-02 {
  background-color: #156DBE;
}
.news-area .news-detail-list li .news-link .news-data .category.cat-03 {
  background-color: #24A264;
}
.news-area .news-detail-list li .news-link .txt {
  padding-top: 16px;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .news-area .news-detail-list li .news-link .txt {
    padding-top: 16px;
  }
}
.news-area .news-detail-list li .news-link[target=_blank] .txt::after {
  margin-left: 4px;
  background: url(/assets/images/icn_external.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 15px;
  height: 14px;
  vertical-align: middle;
}
.news-area .news-detail-list li .news-link[href*=".pdf"] .txt::after {
  margin-left: 4px;
  background: url(/assets/images/icn_pdf.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 27px;
  height: 15px;
  vertical-align: middle;
}

/* pager */
.pager {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .pager {
    margin-top: 24px;
  }
}
.pager .page-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pager .page-list a:not(.arr) {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 36px;
  height: 36px;
  color: #006cb8;
  font-weight: 700;
  line-height: 36px;
  text-decoration: none;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #006cb8;
  background-color: #fff;
}
.pager .page-list a:not(.arr).cur {
  color: #fff;
  background-color: #006cb8;
}
@media (any-hover: hover) {
  .pager .page-list a:not(.arr):hover {
    color: #fff;
    background-color: #006cb8;
  }
}
.pager .page-list .arr {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-indent: -9999px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: url(/assets/images/icn_pager_arr.svg) no-repeat left 10px center/12px auto;
}
@media (any-hover: hover) {
  .pager .page-list .arr:hover {
    opacity: 0.7;
  }
}
.pager .page-list .arr.next {
  transform: scale(-1, 1);
}
.pager .page-list .dots {
  color: #006cb8;
  font-weight: 700;
}
.pager:has(li:only-child) {
  display: none;
}

/* /news */
/* sitemap */
.category-ttl {
  margin-bottom: 10px;
}
.category-ttl .txt-link {
  color: #0d1214;
  font-size: 2.2rem;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .category-ttl .txt-link {
    font-size: 1.6rem;
  }
}
@media (any-hover: hover) {
  .category-ttl .txt-link:hover {
    text-decoration: underline;
  }
}

.sitemap-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .sitemap-wrap {
    grid-template-columns: 1fr;
  }
}
.sitemap-wrap > li {
  height: 100%;
}
.sitemap-wrap > li .color-box {
  height: 100%;
}
.sitemap-wrap .link-list li + li {
  margin-top: 10px;
}
.sitemap-wrap .link-list .link-list {
  margin-top: 10px;
}
.sitemap-wrap .link-list + .category-ttl {
  margin-top: 20px;
}

/* sitemap */
/* intended-use */
.number-list .list-style-none {
  margin-left: -42px;
}
.number-list .list-style-none .note-wrap {
  display: flex;
}
.number-list .list-style-none .note-wrap ol {
  margin-top: 10px;
  margin-left: 0;
}

/* intended-use */
/* search */
.search-section {
  padding-bottom: 120px;
}
.search-section .searchdetail {
  width: 100%;
  margin: 0 auto;
  max-width: 1168px;
  padding-left: 20px;
  padding-right: 20px;
}
.search-section .mt-site-search-result__message {
  position: relative;
  margin-bottom: 40px;
}
.search-section .mt-site-search-result__list {
  border-top: 1px solid #CFDEE6;
}
.search-section .mt-site-search-result__list .mt-site-search-result-item {
  margin: 0;
  border-bottom: 1px solid #CFDEE6;
  padding: 24px 0 32px;
  position: relative;
}
.search-section .mt-site-search-result__list .mt-site-search-result-item .mt-site-search-result-item__link {
  display: block;
  overflow: hidden;
}
.search-section .mt-site-search-result__list .mt-site-search-result-item .mt-site-search-result-item__link::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  pointer-events: none;
  height: 1px;
  bottom: 0;
  left: 0;
  transition: all 0.3s ease;
  background-color: #006cb8;
}
@media (any-hover: hover) {
  .search-section .mt-site-search-result__list .mt-site-search-result-item:hover .mt-site-search-result-item__link::after {
    width: 100%;
  }
}
.search-section .mt-site-search-result-item__label {
  font-size: 1.8rem;
  color: #006cb8;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.search-section .mt-site-search-result-item__url {
  font-size: 1.4rem;
  color: #27A165;
  margin-top: 8px;
}
.search-section .mt-site-search-result-item__excerpt {
  line-height: 2;
  margin-top: 16px;
  font-size: 1.6rem;
}
.search-section .mt-site-search__pagination {
  margin-top: 72px;
  display: flex;
  justify-content: center;
}
.search-section .mt-site-search__pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.search-section .mt-site-search-pagination-item a {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 36px;
  height: 36px;
  color: #006cb8;
  font-weight: 700;
  line-height: 36px;
  text-decoration: none;
  text-align: center;
  border-radius: 50%;
  border: 1px solid #006cb8;
  background-color: #fff;
}
@media (any-hover: hover) {
  .search-section .mt-site-search-pagination-item a:hover {
    color: #fff;
    background-color: #036CB8;
  }
}
.search-section .mt-site-search-pagination-item.mt-site-search-pagination-item--current a {
  color: #fff;
  background-color: #036CB8;
}
.search-section .mt-site-search-pagination-item.mt-site-search-pagination-item--previous a {
  border: none;
}
@media (any-hover: hover) {
  .search-section .mt-site-search-pagination-item.mt-site-search-pagination-item--previous a:hover {
    color: unset;
    background-color: unset;
    opacity: 0.7;
  }
}
.search-section .mt-site-search-pagination-item.mt-site-search-pagination-item--previous span {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-indent: -9999px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: url(/assets/images/icn_pager_arr.svg) no-repeat left 10px center/12px auto;
}
.search-section .mt-site-search-pagination-item.mt-site-search-pagination-item--next a {
  border: none;
}
@media (any-hover: hover) {
  .search-section .mt-site-search-pagination-item.mt-site-search-pagination-item--next a:hover {
    color: unset;
    background-color: unset;
    opacity: 0.7;
  }
}
.search-section .mt-site-search-pagination-item.mt-site-search-pagination-item--next span {
  transform: scale(-1, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-indent: -9999px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: url(/assets/images/icn_pager_arr.svg) no-repeat left 10px center/12px auto;
}

/* search */
/*==========================================================================================================
hover
==========================================================================================================*/
/*==========================================================================================================
PC Only
==========================================================================================================*/
@media screen and (min-width: 768px) {
  /* officer */
  .dl-list.officer .dl-wrap dt:nth-child(3) {
    margin-left: -420px;
  }
  /* /officer */
  /* strategy */
  .txt.nowrap {
    white-space: nowrap;
  }
  /* /sustainability */
  .sustainability-section .img.map {
    margin-bottom: 20px;
    margin-right: -20px;
  }
  /* sustainability */
}
/*==========================================================================================================
SP Only
==========================================================================================================*/
@media screen and (max-width: 767px) {
  /* top */
  /* /top */
  /* officer */
  .dl-list.officer .dl-wrap .dd {
    flex: unset;
  }
  .dl-list.officer .dl-wrap dt:nth-child(1) {
    width: 32%;
  }
  .dl-list.officer .dl-wrap dt:nth-child(2) {
    width: 28%;
  }
  .dl-list.officer .dl-wrap dt:nth-child(3) {
    width: 40%;
  }
  /* /officer */
}
/* intend-use */
.number-list-02 > li {
  display: flex;
  list-style-type: none;
}
.number-list-02 > li::marker {
  display: none;
  content: none;
}
.number-list-02 > li::before {
  display: block;
  min-width: 4.5rem;
  content: "（" attr(data-value) "）";
}
.number-list-02 > li.list-style-none {
  list-style-type: none;
}
.number-list-02 > li.list-style-none::before {
  content: "";
}
.number-list-02 > li + li {
  margin-top: 10px;
}

/* intend-use */