@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
/* ================================================
  変数をまとめるファイル
  ================================================ */
/* -----------------------------------------------
  @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;
    }
  }
------------------------------------------------- */
/*---------------------------------------------
 Splide
---------------------------------------------*/
.splide__container {
  box-sizing: border-box;
  position: relative;
}

.splide__list {
  backface-visibility: hidden;
  display: flex;
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.splide.is-initialized:not(.is-active) .splide__list {
  display: block;
}

.splide__pagination {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
  pointer-events: none;
}

.splide__pagination li {
  display: inline-block;
  line-height: 1;
  list-style-type: none;
  margin: 0;
  pointer-events: auto;
}

.splide:not(.is-overflow) .splide__pagination {
  display: none;
}

.splide__progress__bar {
  width: 0;
}

.splide {
  position: relative;
  visibility: hidden;
}

.splide.is-initialized, .splide.is-rendered {
  visibility: visible;
}

.splide__slide {
  backface-visibility: hidden;
  box-sizing: border-box;
  flex-shrink: 0;
  list-style-type: none !important;
  margin: 0;
  position: relative;
}

.splide__slide img {
  vertical-align: bottom;
}

.splide__spinner {
  animation: splide-loading 1s linear infinite;
  border: 2px solid #999;
  border-left-color: transparent;
  border-radius: 50%;
  bottom: 0;
  contain: strict;
  display: inline-block;
  height: 20px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
}

.splide__sr {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.splide__toggle.is-active .splide__toggle__play, .splide__toggle__pause {
  display: none;
}

.splide__toggle.is-active .splide__toggle__pause {
  display: inline;
}

.splide__track {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

@keyframes splide-loading {
  0% {
    transform: rotate(0);
  }
  to {
    transform: rotate(1turn);
  }
}
.splide__track--draggable {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
       user-select: none;
}

.splide__track--fade > .splide__list > .splide__slide {
  margin: 0 !important;
  opacity: 0;
  z-index: 0;
}

.splide__track--fade > .splide__list > .splide__slide.is-active {
  opacity: 1;
  z-index: 1;
}

.splide--rtl {
  direction: rtl;
}

.splide__track--ttb > .splide__list {
  display: block;
}

.splide__arrow {
  align-items: center;
  background: #ccc;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  height: 2em;
  justify-content: center;
  opacity: 0.7;
  padding: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2em;
  z-index: 1;
}

.splide__arrow svg {
  fill: #000;
  height: 1.2em;
  width: 1.2em;
}

.splide__arrow:hover:not(:disabled) {
  opacity: 0.9;
}

.splide__arrow:disabled {
  opacity: 0.3;
}

.splide__arrow:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__arrow--prev {
  left: 1em;
}

.splide__arrow--prev svg {
  transform: scaleX(-1);
}

.splide__arrow--next {
  right: 1em;
}

.splide.is-focus-in .splide__arrow:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__pagination {
  bottom: -1.15em;
  left: 0;
  padding: 0 1em;
  position: absolute;
  right: 0;
  z-index: 1;
}

.splide__pagination__page {
  background: #ccc;
  border: 0;
  border-radius: 50%;
  display: inline-block;
  height: 8px;
  margin: 3px;
  opacity: 0.7;
  padding: 0;
  position: relative;
  transition: transform 0.2s linear;
  width: 8px;
}

.splide__pagination__page.is-active {
  background: #fff;
  transform: scale(1.4);
  z-index: 1;
}

.splide__pagination__page:hover {
  cursor: pointer;
  opacity: 0.9;
}

.splide__pagination__page:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__pagination__page:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__progress__bar {
  background: #ccc;
  height: 3px;
}

.splide__slide {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.splide__slide:focus {
  outline: 0;
}

@supports (outline-offset: -3px) {
  .splide__slide:focus-visible {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide__slide:focus-visible {
    border: 3px solid #0bf;
  }
}
@supports (outline-offset: -3px) {
  .splide.is-focus-in .splide__slide:focus {
    outline: 3px solid #0bf;
    outline-offset: -3px;
  }
}
@media screen and (-ms-high-contrast: none) {
  .splide.is-focus-in .splide__slide:focus {
    border: 3px solid #0bf;
  }
  .splide.is-focus-in .splide__track > .splide__list > .splide__slide:focus {
    border-color: #0bf;
  }
}
.splide__toggle {
  cursor: pointer;
}

.splide__toggle:focus-visible {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide.is-focus-in .splide__toggle:focus {
  outline: 3px solid #0bf;
  outline-offset: 3px;
}

.splide__track--nav > .splide__list > .splide__slide {
  border: 3px solid transparent;
  cursor: pointer;
}

.splide__track--nav > .splide__list > .splide__slide.is-active {
  border: 3px solid #000;
}

.splide__arrows--rtl .splide__arrow--prev {
  left: auto;
  right: 1em;
}

.splide__arrows--rtl .splide__arrow--prev svg {
  transform: scaleX(1);
}

.splide__arrows--rtl .splide__arrow--next {
  left: 1em;
  right: auto;
}

.splide__arrows--rtl .splide__arrow--next svg {
  transform: scaleX(-1);
}

.splide__arrows--ttb .splide__arrow {
  left: 50%;
  transform: translate(-50%);
}

.splide__arrows--ttb .splide__arrow--prev {
  top: 1em;
}

.splide__arrows--ttb .splide__arrow--prev svg {
  transform: rotate(-90deg);
}

.splide__arrows--ttb .splide__arrow--next {
  bottom: 1em;
  top: auto;
}

.splide__arrows--ttb .splide__arrow--next svg {
  transform: rotate(90deg);
}

.splide__pagination--ttb {
  bottom: 0;
  display: flex;
  flex-direction: column;
  left: auto;
  padding: 1em 0;
  right: 0.5em;
  top: 0;
}

/*---------------------------------------------
 generic  class
---------------------------------------------*/
.txt-b {
  font-weight: bold !important;
}

.txt-n {
  font-weight: normal !important;
}

.layout-c {
  text-align: center !important;
}

.layout-l {
  text-align: left !important;
}

.layout-r {
  text-align: right !important;
}

.ov {
  overflow: hidden !important;
}

.fl {
  float: left !important;
}

.fr {
  float: right !important;
}

/*---------------------------------------------
 base margin
---------------------------------------------*/
.mt0 {
  margin-top: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt8 {
  margin-top: 8px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt16 {
  margin-top: 16px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt24 {
  margin-top: 24px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt32 {
  margin-top: 32px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt48 {
  margin-top: 48px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt56 {
  margin-top: 56px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt64 {
  margin-top: 64px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mt200 {
  margin-top: 200px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml8 {
  margin-left: 8px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml16 {
  margin-left: 16px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml24 {
  margin-left: 24px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml32 {
  margin-left: 32px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.ml48 {
  margin-left: 48px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.ml56 {
  margin-left: 56px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.ml64 {
  margin-left: 64px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.ml100 {
  margin-left: 100px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr8 {
  margin-right: 8px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mr16 {
  margin-right: 16px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr24 {
  margin-right: 24px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mr32 {
  margin-right: 32px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.mr48 {
  margin-right: 48px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.mr56 {
  margin-right: 56px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.mr64 {
  margin-right: 64px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb8 {
  margin-bottom: 8px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb16 {
  margin-bottom: 16px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb24 {
  margin-bottom: 24px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb32 {
  margin-bottom: 32px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb48 {
  margin-bottom: 48px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb56 {
  margin-bottom: 56px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb64 {
  margin-bottom: 64px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt8 {
  padding-top: 8px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt16 {
  padding-top: 16px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt24 {
  padding-top: 24px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt32 {
  padding-top: 32px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt48 {
  padding-top: 48px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt56 {
  padding-top: 56px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt64 {
  padding-top: 64px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pl8 {
  padding-left: 8px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl16 {
  padding-left: 16px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl24 {
  padding-left: 24px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl32 {
  padding-left: 32px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl48 {
  padding-left: 48px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl56 {
  padding-left: 56px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pl64 {
  padding-left: 64px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr8 {
  padding-right: 8px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr16 {
  padding-right: 16px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr24 {
  padding-right: 24px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr32 {
  padding-right: 32px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr48 {
  padding-right: 48px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr56 {
  padding-right: 56px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pr64 {
  padding-right: 64px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb8 {
  padding-bottom: 8px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb16 {
  padding-bottom: 16px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb24 {
  padding-bottom: 24px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb32 {
  padding-bottom: 32px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb48 {
  padding-bottom: 48px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb56 {
  padding-bottom: 56px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb64 {
  padding-bottom: 64px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.w5p {
  width: 5% !important;
}

.w8p {
  width: 8% !important;
}

.w10p {
  width: 10% !important;
}

.w11p {
  width: 11% !important;
}

.w12p {
  width: 12% !important;
}

.w15p {
  width: 15% !important;
}

.w16p {
  width: 16% !important;
}

.w20p {
  width: 20% !important;
}

.w24p {
  width: 24% !important;
}

.w25p {
  width: 25% !important;
}

.w30p {
  width: 30% !important;
}

.w32p {
  width: 32% !important;
}

.w35p {
  width: 35% !important;
}

.w40p {
  width: 40% !important;
}

.w45p {
  width: 45% !important;
}

.w48p {
  width: 48% !important;
}

.w50p {
  width: 50% !important;
}

.w55p {
  width: 55% !important;
}

.w56p {
  width: 56% !important;
}

.w60p {
  width: 60% !important;
}

.w64p {
  width: 64% !important;
}

.w65p {
  width: 65% !important;
}

.w70p {
  width: 70% !important;
}

.w75p {
  width: 75% !important;
}

.w80p {
  width: 80% !important;
}

.w85p {
  width: 85% !important;
}

.w90p {
  width: 90% !important;
}

.w95p {
  width: 95% !important;
}

.w100p {
  width: 100% !important;
}

.wmax {
  width: 100% !important;
  height: auto !important;
}

.fz10 {
  font-size: 1rem;
}

.fz11 {
  font-size: 1.1rem;
}

.fz12 {
  font-size: 1.2rem;
}

.fz14 {
  font-size: 1.4rem;
}

.fz16 {
  font-size: 1.6rem;
}

.fz18 {
  font-size: 1.8rem;
}

.fz20 {
  font-size: 2rem;
}

.fz22 {
  font-size: 2.2rem;
}

.fz24 {
  font-size: 2.4rem;
}

.fz26 {
  font-size: 2.6rem;
}

.fz28 {
  font-size: 2.8rem;
}

.fz30 {
  font-size: 3rem;
}

.fz32 {
  font-size: 3.2rem;
}

.fz34 {
  font-size: 3.4rem;
}

.fz36 {
  font-size: 3.6rem;
}

.fz38 {
  font-size: 3.8rem;
}

.fz40 {
  font-size: 4rem;
}

.fz42 {
  font-size: 4.2rem;
}

.fz44 {
  font-size: 4.4rem;
}

.fz46 {
  font-size: 4.6rem;
}

.fz48 {
  font-size: 4.8rem;
}

.max1280 {
  max-width: 1280px !important;
  margin: 0 auto !important;
}

.max1024 {
  max-width: 1024px !important;
  margin: 0 auto !important;
}

.max960 {
  max-width: 960px !important;
  margin: 0 auto !important;
}

.max820 {
  max-width: 820px !important;
  margin: 0 auto !important;
}

.max720 {
  max-width: 720px !important;
  margin: 0 auto !important;
}

.max700 {
  max-width: 700px !important;
  margin: 0 auto !important;
}

.max640 {
  max-width: 640px !important;
  margin: 0 auto !important;
}

.max600 {
  max-width: 600px !important;
  margin: 0 auto !important;
}

.max500 {
  max-width: 500px !important;
  margin: 0 auto !important;
}

.max400 {
  max-width: 400px !important;
  margin: 0 auto !important;
}

.max300 {
  max-width: 300px !important;
  margin: 0 auto !important;
}

.max200 {
  max-width: 200px !important;
  margin: 0 auto !important;
}

.mg-a {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* header */
.header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 7;
  transition: top 0.3s ease;
  min-height: 84px;
}
@media screen and (max-width: 767px) {
  .header {
    z-index: 13;
    min-height: auto;
  }
}
.header.fix-header {
  position: fixed;
  top: -144px;
  background-color: #fff;
  z-index: 8;
}
@media screen and (max-width: 767px) {
  .header.fix-header {
    z-index: 14;
  }
}
.header.fix-header.bd-bottom {
  border-bottom: 1px solid #b2b2b2;
}
.header.fix-header .header-inr {
  background-color: #fff;
  padding: 10px 40px;
}
@media screen and (max-width: 767px) {
  .header.fix-header .header-inr {
    padding: 10px;
  }
}
.header.fix-header .header-inr .header-logo .before {
  display: none;
}
.header.fix-header .header-inr .header-logo .after {
  display: block;
}
.header.fix-header .header-inr .gnav-list li a {
  color: #0d1214;
}
@media (any-hover: hover) {
  .header.fix-header .header-inr .gnav-list li a:hover {
    color: #006cb8;
  }
}
.header .header-inr {
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 11;
  transition: all 0.3s ease;
}
.header .header-inr .header-main {
  flex: 1;
  justify-content: end;
}
.header.top-change {
  top: 0;
}
.header .header-logo .after {
  display: none;
}
@media screen and (min-width: 768px) {
  .header {
    min-width: 1290px;
  }
}
@media screen and (max-width: 767px) {
  .header .header-inr {
    padding: 10px;
  }
}

body:not(.top) .header .header-inr {
  padding: 18px 40px;
}
@media screen and (max-width: 767px) {
  body:not(.top) .header .header-inr {
    background: url(/assets/images/bg_pagettl_cmn.png) no-repeat right center/auto 100%;
  }
}
body:not(.top) .header .header-inr .header-logo .before {
  display: none;
}
body:not(.top) .header .header-inr .header-logo .after {
  display: block;
}
body:not(.top) .header.change .header-inr {
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  body:not(.top) .header .header-inr {
    padding: 10px;
  }
}
body:not(.top) .header .gnav-wrap .gnav-list li a {
  color: #0d1214;
}
@media (any-hover: hover) {
  body:not(.top) .header .gnav-wrap .gnav-list li a:hover {
    color: #006cb8;
  }
}
.header-logo {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 12;
}
.header-logo a {
  display: block;
  width: 355px;
}
@media (any-hover: hover) {
  .header-logo a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .header-logo a {
    width: 270px;
  }
}

.header-main {
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 12;
}

.gnav-wrap {
  display: flex;
  align-items: center;
}
.gnav-wrap .gnav-list {
  display: flex;
  justify-content: flex-end;
  gap: 32px;
}
.gnav-wrap .gnav-list li a {
  font-weight: bold;
  color: #fff;
}
@media (any-hover: hover) {
  .gnav-wrap .gnav-list li a:hover {
    color: #006cb8;
  }
}
@media screen and (max-width: 767px) {
  .gnav-wrap .gnav-list {
    display: none;
  }
}

.header-btn-wrap {
  background-color: #fff;
  border-radius: 56px;
  border: 1px solid rgba(0, 108, 184, 0.3);
  width: 154px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header-btn-wrap {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    border: none;
    width: auto;
  }
}

.search-wrap {
  width: 48px;
  height: 48px;
  border-radius: 48px;
  background-color: #fff;
  position: relative;
}
.search-wrap::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 40px;
  background-color: #006cb8;
  opacity: 0.2;
  left: auto;
  right: -4px;
  top: 50%;
  transform: translateY(-50%);
}
.search-wrap .search-btn {
  display: block;
  width: 100%;
  height: 100%;
  background: url(/assets/images/icn_search.png) no-repeat center/17px auto;
  padding: 4px 6px;
}
@media (any-hover: hover) {
  .search-wrap .search-btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .search-wrap {
    display: none;
  }
}

.menu-btn-wrap {
  height: 48px;
  overflow: hidden;
  flex: 1;
}
.menu-btn-wrap .menu-btn {
  height: 100%;
  color: #006cb8;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 6px 4px 12px;
  width: 100%;
}
@media (any-hover: hover) {
  .menu-btn-wrap .menu-btn:hover {
    opacity: 0.7;
  }
}
.menu-btn-wrap .menu-btn .icn span:after,
.menu-btn-wrap .menu-btn .icn span:before,
.menu-btn-wrap .menu-btn .icn span,
.menu-btn-wrap .menu-btn .icn::after,
.menu-btn-wrap .menu-btn .icn::before {
  background-color: #006cb8;
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  position: absolute;
  left: auto;
  right: auto;
  top: auto;
  bottom: auto;
  transition: all 0.3s ease;
}
.menu-btn-wrap .menu-btn .icn span::before {
  transform: translate(0, -6px);
}
.menu-btn-wrap .menu-btn .icn span:after {
  transform: translate(0, 6px);
}
.menu-btn-wrap .menu-btn.active .icn::before {
  background-color: #fff;
  transform: rotate(-45deg);
}
.menu-btn-wrap .menu-btn.active .icn::after {
  background-color: #fff;
  transform: rotate(45deg);
}
.menu-btn-wrap .menu-btn.active .icn span {
  opacity: 0;
}
.menu-btn-wrap .menu-btn.active .txt {
  color: #fff;
}
.menu-btn-wrap .menu-btn .txt {
  font-size: 1.4rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .menu-btn-wrap {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    background-color: #fff;
    border: 1px solid rgba(0, 108, 184, 0.3);
    margin: 0;
    display: flex;
    justify-content: center;
  }
  .menu-btn-wrap:has(> .active) {
    background-color: #006cb8;
  }
  .menu-btn-wrap .menu-btn {
    flex-direction: column-reverse;
    gap: 9px;
    padding-top: 10px;
    padding-left: 6px;
    justify-content: center;
  }
  .menu-btn-wrap .menu-btn .icn {
    padding-right: 16px;
  }
  .menu-btn-wrap .menu-btn .icn span::before {
    transform: translate(0, -5px);
  }
  .menu-btn-wrap .menu-btn .icn span:after {
    transform: translate(0, 5px);
  }
  .menu-btn-wrap .menu-btn .txt {
    font-size: 1rem;
    align-items: center;
  }
}

.header-menu-wrap {
  transform: translateX(100%);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
  pointer-events: none;
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .header-menu-wrap {
    width: 620px;
  }
  .header-menu-wrap .header-link-list,
  .header-menu-wrap .acc-trigger,
  .header-menu-wrap .search {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .header-menu-wrap {
    padding-top: 68px;
    overflow-y: scroll;
  }
}
.header-menu-wrap.show {
  pointer-events: all;
  visibility: visible;
  transform: translateX(0);
}
.header-menu-wrap .header-menu-wrap-inr {
  max-width: 100%;
  height: 100%;
  background: url(/assets/images/bg_gnav_menu.jpg) no-repeat center/cover;
  padding: 22px 55px 48px 38px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .header-menu-wrap .header-menu-wrap-inr {
    padding: 0;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: auto;
  }
}
.header-menu-wrap .search {
  padding: 20px;
  display: block;
  position: relative;
}
.header-menu-wrap .search .search-input {
  display: block;
  position: relative;
  width: 100%;
  border: 1px solid #b2d3ea;
  border-radius: 48px;
  padding: 12px 40px 12px 24px;
  color: #006cb8;
  font-size: 1.4rem;
  cursor: pointer;
}
.header-menu-wrap .search .search-input::-moz-placeholder {
  color: #006cb8;
  font-weight: 700;
}
.header-menu-wrap .search .search-input::placeholder {
  color: #006cb8;
  font-weight: 700;
}
.header-menu-wrap .search .search-submit {
  display: block;
  position: absolute;
  width: 18px;
  height: 18px;
  right: 40px;
  top: calc(50% - 9px);
  border: none;
  background: url(/assets/images/icn_search.png) no-repeat right center/17px auto;
  cursor: pointer;
}
.header-menu-wrap .header-top-area {
  display: flex;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .header-menu-wrap .header-top-area {
    display: none;
  }
}
.header-menu-wrap .header-top-area .logo-wrap {
  flex: 1;
}
.header-menu-wrap .header-top-area .logo-wrap .logo {
  display: block;
  width: 355px;
}
@media (any-hover: hover) {
  .header-menu-wrap .header-top-area .logo-wrap .logo:hover {
    opacity: 0.7;
  }
}
.header-menu-wrap .header-top-area .nav-close {
  display: block;
}
@media (any-hover: hover) {
  .header-menu-wrap .header-top-area .nav-close:hover {
    opacity: 0.7;
  }
}
.header-menu-wrap .header-menu-nav {
  padding-left: 28px;
  display: flex;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .header-menu-wrap .header-menu-nav {
    display: block;
    order: 3;
    background-color: #006cb8;
    padding-left: 0;
  }
}
.header-menu-wrap .header-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .header-menu-wrap .header-list {
    gap: 0;
  }
  .header-menu-wrap .header-list .acc-contents-wrap .acc-trigger {
    display: block;
    position: relative;
    padding: 12px 40px 12px 20px;
    width: 100%;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.5;
    border-top: 1px solid #fff;
  }
  .header-menu-wrap .header-list .acc-contents-wrap .acc-trigger::after, .header-menu-wrap .header-list .acc-contents-wrap .acc-trigger::before {
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 5px);
    right: 32px;
    width: 2px;
    height: 15px;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  .header-menu-wrap .header-list .acc-contents-wrap .acc-trigger::after {
    transform: rotate(90deg);
  }
  .header-menu-wrap .header-list .acc-contents-wrap .acc-trigger.cur::before {
    opacity: 0;
  }
  .header-menu-wrap .header-list .acc-contents-wrap .acc-contents {
    display: none;
    background-color: #fff;
  }
  .header-menu-wrap .header-list .acc-contents-wrap .acc-contents.is-show {
    display: block;
  }
}
.header-menu-wrap .header-inner-list {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .header-menu-wrap .header-inner-list {
    margin-top: 0;
    gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .header-menu-wrap .header-inner-list li {
    border-top: 1px solid #b2b2b2;
  }
}
.header-menu-wrap .header-inner-list li a {
  color: #fff;
  display: inline-block;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.4;
  opacity: 0.6;
}
.header-menu-wrap .header-inner-list li a.opacity-100 {
  opacity: 1;
}
@media (any-hover: hover) {
  .header-menu-wrap .header-inner-list li a:hover {
    text-decoration: underline;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .header-menu-wrap .header-inner-list li a {
    display: block;
    opacity: 1;
    width: 100%;
    padding: 12px 40px 12px 36px;
    color: #0d1214;
    font-size: 1.6rem;
    line-height: 1.5;
    background: url(/assets/images/icn_btn_arrow.svg) no-repeat right 24px center/16px auto, #f3f5f7;
  }
}
.header-menu-wrap .header-inner-list li > ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: 16px;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .header-menu-wrap .header-inner-list li > ul {
    margin-top: 0;
    gap: 0;
    padding-left: 0;
  }
}
.header-menu-wrap .header-inner-list li > ul li a {
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .header-menu-wrap .header-inner-list li > ul li a {
    font-weight: 700;
    padding: 12px 40px 12px 52px;
  }
}
.header-menu-wrap .header-link-wrap .header-link {
  color: #fff;
  font-weight: 700;
  line-height: 1.08;
}
@media (any-hover: hover) {
  .header-menu-wrap .header-link-wrap .header-link:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 767px) {
  .header-menu-wrap .header-link-wrap .header-link {
    display: block;
    width: 100%;
    color: #0d1214;
    font-size: 1.6rem;
    line-height: 1.5;
    padding: 12px 40px 12px 20px;
    border-top: 1px solid #b2b2b2;
    background: url(/assets/images/icn_btn_arrow.svg) no-repeat right 24px center/16px auto, #f3f5f7;
  }
}
@media screen and (max-width: 767px) {
  .header-menu-wrap .header-link-wrap:not(:has(+ .header-inner-list)) .header-link {
    color: #fff;
    border-top: 1px solid #fff;
    background: url(/assets/images/icn_btn_arrow_white.svg) no-repeat right 24px center/16px auto;
  }
}
.header-menu-wrap .header-menu-btn-wrap {
  display: flex;
  gap: 12px;
  padding: 0 10px;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .header-menu-wrap .header-menu-btn-wrap {
    display: block;
    padding: 18px;
    margin-top: 0;
    order: 2;
    background-color: #d1e5f4;
  }
}
.header-menu-wrap .header-menu-btn-wrap .header-btn {
  display: block;
  position: relative;
  min-height: 60px;
  padding: 14px 56px 12px 42px;
  color: #006cb8;
  font-weight: 700;
  font-size: 1.4rem;
  line-height: 1.2;
  text-align: center;
  background-color: #fff;
  border: 2px solid #fff;
  border-radius: 16px;
}
@media (any-hover: hover) {
  .header-menu-wrap .header-menu-btn-wrap .header-btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .header-menu-wrap .header-menu-btn-wrap .header-btn {
    text-align: left;
    width: 100%;
    padding: 18px 40px 16px;
    border: 2px solid #006cb8;
    min-height: auto;
  }
}
.header-menu-wrap .header-menu-btn-wrap .header-btn::after {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  top: calc(50% - 6px);
  right: 30px;
  background: url(/assets/images/icn_btn_arrow.svg) no-repeat center center/contain;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .header-menu-wrap .header-menu-btn-wrap .header-btn::after {
    width: 16px;
    height: 16px;
    top: calc(50% - 8px);
    right: 20px;
  }
}
.header-menu-wrap .header-menu-btn-wrap .header-btn.reverse {
  color: #fff;
  background-color: #006cb8;
  padding-right: 52px;
}
.header-menu-wrap .header-menu-btn-wrap .header-btn.reverse::after {
  background: url(/assets/images/icn_btn_arrow_white.svg) no-repeat center center/contain;
}
.header-menu-wrap .header-menu-btn-wrap .header-btn.reverse[target=_blank]::after {
  background: url(/assets/images/icn_external_white.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 15px;
  height: 14px;
  vertical-align: middle;
}
.header-menu-wrap .header-menu-btn-wrap li:last-of-type {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .header-menu-wrap .header-menu-btn-wrap li:last-of-type {
    display: none;
  }
}
.header-menu-wrap .header-link-list {
  display: flex;
  justify-content: center;
  gap: 32px;
  order: 4;
  background-color: #fff;
  padding: 14px;
}
.header-menu-wrap .header-link-list .txt-link {
  color: #006cb8;
  font-weight: bold;
}

.header-overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  background: #021b2e;
  opacity: 0.5;
}
@media screen and (max-width: 767px) {
  .header-overlay {
    background: #636363;
    opacity: 0.7;
  }
}
.header-overlay.show {
  display: block;
}

.cmn-search {
  position: fixed;
  width: 600px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .cmn-search {
    display: none;
  }
}
.cmn-search.show {
  pointer-events: all;
  opacity: 1;
}
.cmn-search .search-close {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
  gap: 8px;
  margin-bottom: 16px;
  position: relative;
  color: #fff;
  font-weight: 700;
}
.cmn-search .search-close::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  position: relative;
  top: 1px;
  background: url(/assets/images/icn_search_close.svg) no-repeat center/20px auto;
}
.cmn-search .mt-site-search-form {
  position: relative;
}
.cmn-search .mt-site-search-container,
.cmn-search .search-box {
  display: flex;
  position: relative;
  width: 100%;
}
.cmn-search .mt-site-search-container .mt-site-search,
.cmn-search .mt-site-search-container .search,
.cmn-search .search-box .mt-site-search,
.cmn-search .search-box .search {
  border: none;
  width: 100%;
}
.cmn-search .mt-site-search-container .mt-site-search .mt-site-search-form__query,
.cmn-search .mt-site-search-container .mt-site-search .search-input,
.cmn-search .mt-site-search-container .search .mt-site-search-form__query,
.cmn-search .mt-site-search-container .search .search-input,
.cmn-search .search-box .mt-site-search .mt-site-search-form__query,
.cmn-search .search-box .mt-site-search .search-input,
.cmn-search .search-box .search .mt-site-search-form__query,
.cmn-search .search-box .search .search-input {
  padding: 24px 72px 24px 24px;
  border: none;
  width: 100%;
  background-color: #fff;
  border-radius: 8px;
}
.cmn-search .mt-site-search-container .mt-site-search .mt-site-search-form__query::-moz-placeholder, .cmn-search .mt-site-search-container .mt-site-search .search-input::-moz-placeholder, .cmn-search .mt-site-search-container .search .mt-site-search-form__query::-moz-placeholder, .cmn-search .mt-site-search-container .search .search-input::-moz-placeholder, .cmn-search .search-box .mt-site-search .mt-site-search-form__query::-moz-placeholder, .cmn-search .search-box .mt-site-search .search-input::-moz-placeholder, .cmn-search .search-box .search .mt-site-search-form__query::-moz-placeholder, .cmn-search .search-box .search .search-input::-moz-placeholder {
  font-weight: 700;
  color: #006cb8;
}
.cmn-search .mt-site-search-container .mt-site-search .mt-site-search-form__query::placeholder,
.cmn-search .mt-site-search-container .mt-site-search .search-input::placeholder,
.cmn-search .mt-site-search-container .search .mt-site-search-form__query::placeholder,
.cmn-search .mt-site-search-container .search .search-input::placeholder,
.cmn-search .search-box .mt-site-search .mt-site-search-form__query::placeholder,
.cmn-search .search-box .mt-site-search .search-input::placeholder,
.cmn-search .search-box .search .mt-site-search-form__query::placeholder,
.cmn-search .search-box .search .search-input::placeholder {
  font-weight: 700;
  color: #006cb8;
}
.cmn-search .mt-site-search-container .mt-site-search-form__button,
.cmn-search .mt-site-search-container .search-submit,
.cmn-search .search-box .mt-site-search-form__button,
.cmn-search .search-box .search-submit {
  position: absolute;
  top: calc(50% - 16px);
  right: 24px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  text-indent: -9999px;
  cursor: pointer;
  margin-left: 0;
  border: none;
  background: url(/assets/images/icn_search.png) no-repeat center/18px auto;
}
.cmn-search .err-txt,
.cmn-search .mt-site-search-result {
  margin-top: 10px;
  color: #fff;
}

/* /header */
/* footer */
.footer {
  position: relative;
  padding-top: 75px;
  background: linear-gradient(to right, #00406d, #19a0ff, #00c0ff);
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 0;
  }
}
.footer a {
  color: #fff;
}
.footer .footer-link-list {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 25px;
       column-gap: 25px;
  row-gap: 18px;
}
@media screen and (min-width: 768px) {
  .footer .footer-link-list {
    justify-content: center;
  }
}
.footer .footer-link-list li a {
  display: block;
  font-size: 1.4rem;
}
@media (any-hover: hover) {
  .footer .footer-link-list li a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-link-list li a {
    font-size: 0.9rem;
  }
}
.footer .copyright {
  background-color: #fff;
  color: #0d1214;
  padding: 15px;
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    font-size: 1rem;
  }
}
.footer .inner-wrap {
  padding-inline: 36px;
}
@media screen and (max-width: 767px) {
  .footer .inner-wrap {
    padding-inline: 0;
  }
}
.footer .footer-head .link-category {
  margin-bottom: 29px;
}
.footer .footer-head .link-category a {
  font-size: 1.8rem;
}
.footer .footer-head .link-category.recruit {
  margin-top: 32px;
  margin-bottom: 0;
}
.footer .footer-head .link-category.news {
  margin-top: 30px;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .footer .footer-head .link-category {
    margin-bottom: 0;
  }
  .footer .footer-head .link-category a {
    display: block;
    padding: 12px 18px;
    font-size: 1.6rem;
  }
  .footer .footer-head .link-category.recruit {
    margin-top: 0;
    border-top: 2px solid #0c7dce;
  }
  .footer .footer-head .link-category.news {
    margin-top: 0;
    border-top: 2px solid #0c7dce;
  }
}
.footer .footer-head .footer-link-list {
  border-top: none;
  display: flex;
  justify-content: space-between;
}
.footer .footer-head .footer-link-list li a {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .footer .footer-head .footer-link-list {
    flex-direction: column;
    justify-content: start;
    row-gap: 0;
    background-color: #0462a5;
  }
  .footer .footer-head .footer-link-list .sustainability,
  .footer .footer-head .footer-link-list .wealth,
  .footer .footer-head .footer-link-list .other {
    margin-left: 0;
  }
  .footer .footer-head .footer-link-list li + li {
    border-top: 2px solid #0c7dce;
  }
}
.footer .footer-head .footer-link-detail-list li > ul {
  margin-top: 8px;
}
.footer .footer-head .footer-link-detail-list li > ul li a {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.4;
}
.footer .footer-head .footer-link-detail-list li .opacty-60 {
  opacity: 0.6;
}
.footer .footer-head .footer-link-detail-list li + li {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .footer .footer-head .footer-link-detail-list {
    display: none;
  }
}
.footer .footer-bottom {
  margin-top: 80px;
  padding-top: 74px;
  padding-bottom: 80px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.footer .footer-bottom .footer-main-link-list {
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 25px;
  margin-inline: auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .footer .footer-bottom .footer-main-link-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 20px;
    font-size: 1rem;
  }
}
@media (any-hover: hover) {
  .footer .footer-bottom .footer-main-link-list a:hover {
    text-decoration: underline;
  }
}
.footer .footer-bottom .footer-main-link-list a::after {
  display: none;
}
.footer .footer-bottom .footer-link-list {
  margin-top: 31px;
  row-gap: 20px;
}
.footer .footer-bottom .footer-link-list li a {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .footer .footer-bottom .footer-link-list {
    margin-top: 24px;
    gap: 8px 2px;
  }
  .footer .footer-bottom .footer-link-list li {
    padding-inline: 3px;
    border-right: 1px solid rgba(255, 254, 201, 0.2);
  }
  .footer .footer-bottom .footer-link-list li:first-child {
    border-left: 1px solid rgba(255, 254, 201, 0.2);
  }
}
@media screen and (max-width: 767px) {
  .footer .footer-bottom {
    margin-top: 0;
    padding-top: 17px;
    padding-bottom: 32px;
    padding-inline: 8px;
    border-top: 2px solid #0c7dce;
  }
}

body .bg-gradation {
  background: linear-gradient(to bottom, #fff 0%, #CCEAFF 100%);
}

.page-top-wrap {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  width: 64px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.page-top-wrap.fixed {
  position: absolute;
}
.page-top-wrap.show {
  opacity: 1;
  pointer-events: auto;
}
.page-top-wrap .page-top-btn {
  display: block;
}
@media (any-hover: hover) {
  .page-top-wrap .page-top-btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .page-top-wrap {
    width: 40px;
    right: 15px;
    bottom: 15px;
  }
}

.rouin-nationwide {
  background-color: #294989;
  padding: 40px 0;
}
@media screen and (min-width: 768px) {
  .rouin-nationwide .inner-wrap {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .rouin-nationwide {
    padding: 24px 0;
    border-bottom: 2px solid #0c7dce;
  }
}
.rouin-nationwide .rokin-list-ttl {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .rouin-nationwide .rokin-list-ttl {
    display: flex;
    align-items: center;
    padding-right: 80px;
    margin-right: 48px;
    border-right: 1px solid #fff;
  }
}
@media screen and (max-width: 767px) {
  .rouin-nationwide .rokin-list-ttl {
    text-align: center;
    margin-bottom: 20px;
  }
}
.rouin-nationwide .rokin-list-sub-ttl {
  font-size: 1.8rem;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .rouin-nationwide .rokin-list-sub-ttl {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}
.rouin-nationwide .rokin-list-sub-ttl a {
  color: #fff;
}
.rouin-nationwide .rokin-list-sub-ttl a:hover {
  text-decoration: underline;
}
.rouin-nationwide .rokin-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 48px;
  grid-row-gap: 16px;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .rouin-nationwide .rokin-list {
    display: flex;
    flex-wrap: wrap;
    gap: 5px 0;
    font-size: 1.4rem;
  }
}
.rouin-nationwide .rokin-list li {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .rouin-nationwide .rokin-list li {
    line-height: 1.4;
  }
}
.rouin-nationwide .rokin-list li a {
  color: #fff;
  display: inline-block;
}
@media (any-hover: hover) {
  .rouin-nationwide .rokin-list li a:hover {
    text-decoration: underline;
  }
}
@media screen and (max-width: 767px) {
  .rouin-nationwide .rokin-list li a {
    padding: 0 12px;
    font-size: 1.3rem;
    border-right: 1px solid rgba(230, 238, 255, 0.2);
  }
}

/* /footer */
/* common module */
.skip-link {
  position: absolute;
  top: -200px; /* 画面外に隠す */
  left: 0;
  opacity: 0;
  z-index: 120;
  text-decoration: none;
}

body {
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
}
body.fixed {
  position: fixed;
}
body.fixed #wrap {
  position: fixed;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  body.fixed .header .header-inr {
    z-index: 13;
    background-color: #fff;
  }
  body.fixed .header .header-inr .header-logo .before {
    display: none;
  }
  body.fixed .header .header-inr .header-logo .after {
    display: block;
  }
}
body.fixed .fix-header {
  border-bottom: none;
}
body.fixed .fix-header .header-logo .before {
  display: none;
}
body.fixed .fix-header .header-logo .after {
  display: block;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

body,
#wrap {
  width: 100%;
  position: relative;
}
@media screen and (min-width: 768px) {
  body,
  #wrap {
    min-width: 1290px;
  }
}

#wrap {
  overflow: hidden;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: inherit;
  text-align: left;
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

a {
  transition: all 0.3s ease;
  text-decoration: none;
  color: #0d1214;
}

img {
  max-width: 100%;
}

.inner-wrap {
  width: 100%;
  margin: 0 auto;
  max-width: 1168px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 767px) {
  .inner-wrap {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.mt-sec {
  margin-top: 100px !important;
}
@media screen and (max-width: 767px) {
  .mt-sec {
    margin-top: 60px !important;
  }
}

.mt-lg {
  margin-top: 56px !important;
}
@media screen and (max-width: 767px) {
  .mt-lg {
    margin-top: 28px !important;
  }
}

.mt-md {
  margin-top: 32px !important;
}
@media screen and (max-width: 767px) {
  .mt-md {
    margin-top: 16px !important;
  }
}

.mt-sm {
  margin-top: 16px !important;
}
@media screen and (max-width: 767px) {
  .mt-sm {
    margin-top: 8px !important;
  }
}

.mt-sec {
  margin-top: 100px !important;
}
@media screen and (max-width: 767px) {
  .mt-sec {
    margin-top: 60px !important;
  }
}

.mt-lg {
  margin-top: 56px !important;
}
@media screen and (max-width: 767px) {
  .mt-lg {
    margin-top: 28px !important;
  }
}

.mt-md {
  margin-top: 32px !important;
}
@media screen and (max-width: 767px) {
  .mt-md {
    margin-top: 16px !important;
  }
}

.mt-sm {
  margin-top: 16px !important;
}
@media screen and (max-width: 767px) {
  .mt-sm {
    margin-top: 8px !important;
  }
}

.cmn-section {
  padding-top: 80px;
}
.cmn-section.logo-section {
  position: relative;
}
.cmn-section.logo-section .inner-wrap .item-logo {
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .cmn-section.logo-section .inner-wrap .item-logo {
    zoom: 0.5;
    left: 20px;
  }
}
.cmn-section:first-child {
  padding-top: 64px;
}
.cmn-section:last-child {
  padding-bottom: 120px;
}
.cmn-section:has(+ .color-section) {
  padding-bottom: 100px;
}
.cmn-section .Pay-easy-logo-wrap .img {
  width: 32%;
}
@media screen and (max-width: 767px) {
  .cmn-section .Pay-easy-logo-wrap .img {
    width: 100%;
  }
}
.cmn-section .Pay-easy-logo-wrap .img img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .cmn-section {
    padding-top: 48px;
  }
  .cmn-section:first-child {
    padding-top: 48px;
  }
  .cmn-section:last-child {
    padding-bottom: 100px;
  }
  .cmn-section:has(+ .color-section) {
    padding-bottom: 60px;
  }
}

/* /common module */
/* pagettl */
.pagettl-section .pagettl-wrap {
  min-height: 298px;
  background: url(/assets/images/bg_pagettl_cmn.png) no-repeat right center/auto 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 120px;
  padding-bottom: 10px;
  border-bottom: 1px solid #CFDEE6;
}
@media screen and (max-width: 767px) {
  .pagettl-section .pagettl-wrap {
    padding-top: 78px;
    background: #fff;
    padding-bottom: 0;
    min-height: auto;
  }
  .pagettl-section .pagettl-wrap .inner-wrap {
    padding: 0;
  }
}
.pagettl-section .pagettl-sub {
  position: relative;
}
@media screen and (max-width: 767px) {
  .pagettl-section .pagettl-sub {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.pagettl-section .pagettl {
  font-size: 3.6rem;
  font-weight: bold;
  margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
  .pagettl-section .pagettl {
    font-size: 2.8rem;
    line-height: 1.4;
    padding-right: 16px;
    padding-left: 16px;
    margin-bottom: 24px;
  }
}
.pagettl-section .pagettl-anchor-wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .pagettl-section .pagettl-anchor-wrap {
    padding: 16px;
    flex-direction: column;
    background-color: #EEF7FD;
  }
}
.pagettl-section .pagettl-anchor-wrap .ttl-wrap {
  display: flex;
  align-items: center;
  font-size: 1.2rem;
  color: #006cb8;
  padding: 15px 20px 15px 0;
  border-right: 1px solid #CFDEE6;
  margin-right: 24px;
}
@media screen and (max-width: 767px) {
  .pagettl-section .pagettl-anchor-wrap .ttl-wrap {
    padding: 0 0 12px;
    margin-bottom: 12px;
    border-right: none;
    border-bottom: 1px solid #CFDEE6;
  }
}
.pagettl-section .pagettl-mv {
  position: relative;
  overflow: hidden;
  margin-top: -1px;
}
.pagettl-section .pagettl-mv::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #006cb8;
  opacity: 0.2;
  z-index: 1;
}
.pagettl-section .pagettl-mv .img {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  min-width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: auto;
  max-width: unset;
}
.pagettl-section .pagettl-mv .pagettl-mv-inr {
  position: relative;
  z-index: 2;
}
.pagettl-section .pagettl-mv .txt-box {
  padding: 80px 0;
  display: flex;
  min-height: 540px;
  font-weight: bold;
  color: #fff;
}
.pagettl-section .pagettl-mv .txt-box .lead {
  font-size: 5.6rem;
  flex: 1;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
}
.pagettl-section .pagettl-mv .txt-box .txt {
  margin-top: auto;
  line-height: 2;
  flex: 1;
  text-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
}
.pagettl-section .pagettl-mv .txt-box.column {
  min-height: auto;
  flex-direction: column;
}
.pagettl-section .pagettl-mv .txt-box.column .lead {
  flex: 0 1 auto;
}
.pagettl-section .pagettl-mv .txt-box.column .txt {
  margin-top: 20px;
  flex: 0 1 auto;
}
@media screen and (max-width: 767px) {
  .pagettl-section .pagettl-mv .txt-box.column .txt {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .pagettl-section .pagettl-mv .txt-box.column .btn-wrap {
    margin-top: 40px;
  }
}
@media screen and (max-width: 767px) {
  .pagettl-section .pagettl-mv .txt-box {
    flex-direction: column;
    gap: 20px;
    padding: 30px 0;
    min-height: 300px;
  }
  .pagettl-section .pagettl-mv .txt-box .lead {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 768px) {
  .pagettl-section .pagettl-mv.disclosure .txt-box {
    padding: 48px 0 54px;
  }
  .pagettl-section .pagettl-mv.disclosure .btn-wrap .cmn-btn {
    min-width: 432px;
  }
}
@media screen and (min-width: 768px) {
  .pagettl-section .pagettl-mv.wealth {
    min-height: 496px;
  }
  .pagettl-section .pagettl-mv.wealth .txt-box {
    padding: 48px 0 54px;
  }
  .pagettl-section .pagettl-mv.wealth .btn-wrap .cmn-btn {
    min-width: 262px;
  }
}
@media screen and (min-width: 768px) {
  .pagettl-section .pagettl-mv.recruit {
    min-height: 496px;
  }
  .pagettl-section .pagettl-mv.recruit .txt-box {
    padding: 48px 0 54px;
  }
  .pagettl-section .pagettl-mv.recruit .txt-box .lead {
    font-size: 4rem;
  }
  .pagettl-section .pagettl-mv.recruit .btn-wrap .cmn-btn {
    min-width: 362px;
  }
}
@media screen and (max-width: 767px) {
  .pagettl-section .pagettl-mv.recruit .txt-box .lead {
    font-size: 2.4rem;
  }
}
.pagettl-section .topic-path {
  margin-top: 8px;
  margin-bottom: 0;
}
.pagettl-section .topic-path .inner-wrap {
  display: flex;
  justify-content: end;
}
.pagettl-section .topic-path ul {
  width: auto;
  padding: 10px 16px 10px 6px;
}
.pagettl-section .topic-path ul li {
  color: #fff;
}
.pagettl-section .topic-path ul li + li::before {
  background-image: url(/assets/images/icn_topic_path_white.svg);
}
.pagettl-section .topic-path ul li a {
  color: #fff;
}

.pagettl-anchor-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 16px;
}
@media screen and (max-width: 767px) {
  .pagettl-anchor-list {
    letter-spacing: -0.05em;
    align-items: start;
    flex-direction: column;
    gap: 12px 0;
  }
}
.pagettl-anchor-list li a {
  padding-right: 26px;
  background: url(/assets/images/icn_anchor_arrow.svg) no-repeat right center/16px auto;
}
@media (any-hover: hover) {
  .pagettl-anchor-list li a:hover {
    color: #006cb8;
  }
}
@media screen and (max-width: 767px) {
  .pagettl-anchor-list li a {
    padding-right: 22px;
  }
}

/* /pagettl */
/* topic path */
.topic-path {
  margin-top: 16px;
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}
.topic-path ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}
@media screen and (max-width: 767px) {
  .topic-path ul {
    justify-content: start;
    overflow-x: scroll;
    flex-wrap: nowrap;
  }
}
.topic-path ul > li {
  font-size: 1.4rem;
}
.topic-path ul > li:not(:first-of-type) {
  margin-left: 10px;
}
.topic-path ul > li + li {
  display: flex;
  align-items: center;
  position: relative;
}
.topic-path ul > li + li::before {
  background: url(/assets/images/icn_topic_path.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 5px;
  height: 8px;
  vertical-align: middle;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .topic-path ul > li {
    font-size: 1.2rem;
    white-space: nowrap;
    margin-bottom: 4px;
  }
}
.topic-path ul > li a {
  color: #006cb8;
}
@media screen and (max-width: 767px) {
  .topic-path ul > li a {
    font-size: 1.2rem;
    white-space: nowrap;
  }
}
/* /topic path */
/* title */
.cmn-h2-ttl {
  border-bottom: 1px solid #CFDEE6;
  margin-bottom: 48px;
  padding-bottom: 28px;
  position: relative;
}
.cmn-h2-ttl::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(to left, #3d3daa, #2BA9FF);
  top: auto;
  bottom: -2px;
}
.cmn-h2-ttl:not(:first-child) {
  margin-top: 100px;
}
.cmn-h2-ttl .ttl {
  color: #0d1214;
  font-size: 3.2rem;
  font-weight: bold;
  line-height: 1.4375;
}
@media screen and (max-width: 767px) {
  .cmn-h2-ttl {
    margin-bottom: 24px;
    padding-bottom: 14px;
  }
  .cmn-h2-ttl:not(:first-child) {
    margin-top: 60px;
  }
  .cmn-h2-ttl .ttl {
    font-size: 2.2rem;
  }
}
.cmn-h2-ttl:has(.icn-list) {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .cmn-h2-ttl:has(.icn-list) {
    flex-direction: column;
  }
  .cmn-h2-ttl:has(.icn-list) .ttl {
    order: 2;
  }
}

.cmn-h3-ttl {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.45;
  margin-bottom: 32px;
  padding-left: 16px;
  position: relative;
}
.cmn-h3-ttl:not(:first-child) {
  margin-top: 56px;
}
.cmn-h3-ttl::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  background: linear-gradient(#3d3daa, #2BA9FF);
}
@media screen and (max-width: 767px) {
  .cmn-h3-ttl {
    font-size: 1.8rem;
    margin-bottom: 16px;
    padding-left: 12px;
  }
  .cmn-h3-ttl:not(:first-child) {
    margin-top: 24px;
  }
}
.cmn-h3-ttl.no_1 {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .cmn-h3-ttl.no_1 {
    display: block;
  }
}
.cmn-h3-ttl.no_1 .txt-num {
  font-size: 4rem;
  line-height: 1;
  margin-top: -10px;
}
@media screen and (max-width: 767px) {
  .cmn-h3-ttl.no_1 .txt-num {
    margin-top: 0;
    padding-left: 10px;
    font-size: 2.6rem;
  }
}

.cmn-h4-ttl {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 12px;
}
.cmn-h4-ttl:not(:first-child) {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .cmn-h4-ttl {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .cmn-h4-ttl:not(:first-child) {
    margin-top: 24px;
  }
}

.cmn-h5-ttl {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.cmn-h5-ttl:not(:first-child) {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .cmn-h5-ttl {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
}

.attention-ttl-wrap {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 36px;
}
@media screen and (max-width: 767px) {
  .attention-ttl-wrap {
    margin-bottom: 20px;
  }
  .attention-ttl-wrap .icn {
    width: 24px;
  }
}
.attention-ttl-wrap .ttl {
  font-size: 2.4rem;
  font-weight: 700;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .attention-ttl-wrap .ttl {
    font-size: 1.8rem;
  }
}

.img-ttl {
  margin: 56px 0 32px;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .img-ttl {
    margin: 24px 0 16px;
    font-size: 1.6rem;
  }
}
.img-ttl span {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .img-ttl span {
    font-size: 1.4rem;
  }
}

/* /title */
/* entry body */
.entry-body a:not([class]) {
  text-decoration: underline;
  -webkit-text-underline-offset: 0.1em;
  text-underline-offset: 0.1em;
  word-break: break-all;
  color: #006cb8;
}
.entry-body a:not([class])::after {
  margin-left: 8px;
}
.entry-body a:not([class])[target=_blank]::after {
  background: url(/assets/images/icn_external.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 15px;
  height: 14px;
  vertical-align: middle;
}
.entry-body a:not([class])[href*=".pdf"]::after {
  background: url(/assets/images/icn_pdf.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 27px;
  height: 15px;
  vertical-align: middle;
}
.entry-body a:not([class])[href*=".xlsx"]::after, .entry-body a:not([class])[href*=".xls"]::after {
  background: url(/assets/images/icn_xls.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 26px;
  height: 15px;
  vertical-align: middle;
}
.entry-body a:not([class])[href*=".docx"]::after, .entry-body a:not([class])[href*=".doc"]::after {
  background: url(/assets/images/icn_doc.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 27px;
  height: 15px;
  vertical-align: middle;
}
.entry-body a:not([class])[href*=".pptx"]::after, .entry-body a:not([class])[href*=".ppt"]::after {
  background: url(/assets/images/icn_ppt.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 25px;
  height: 15px;
  vertical-align: middle;
}
@media (any-hover: hover) {
  .entry-body a:not([class]):hover {
    text-decoration: none;
  }
}
.entry-body .top-banner-section a:not([class])[target=_blank]::after {
  display: none;
}
.entry-body .link-list a:not([class])::after {
  background: url(/assets/images/icn_btn_arrow.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
}
.entry-body .link-list a:not([class])[target=_blank]::after {
  background: url(/assets/images/icn_external.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 15px;
  height: 14px;
  vertical-align: middle;
}
.entry-body .link-list a:not([class])[href*=".pdf"]::after {
  background: url(/assets/images/icn_pdf.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 27px;
  height: 15px;
  vertical-align: middle;
}
.entry-body .link-list a:not([class])[href*=".xlsx"]::after, .entry-body .link-list a:not([class])[href*=".xls"]::after {
  background: url(/assets/images/icn_xls.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 26px;
  height: 15px;
  vertical-align: middle;
}
.entry-body .link-list a:not([class])[href*=".docx"]::after, .entry-body .link-list a:not([class])[href*=".doc"]::after {
  background: url(/assets/images/icn_doc.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 27px;
  height: 15px;
  vertical-align: middle;
}
.entry-body .link-list a:not([class])[href*=".pptx"]::after, .entry-body .link-list a:not([class])[href*=".ppt"]::after {
  background: url(/assets/images/icn_ppt.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 25px;
  height: 15px;
  vertical-align: middle;
}
.entry-body strong {
  font-weight: bold;
}
.entry-body p {
  line-height: 2;
}
.entry-body p.catch-copy {
  line-height: 1.8;
}
.entry-body .note-txt {
  line-height: 1.5;
}
.entry-body div:not([class]):not(:last-child),
.entry-body ol:not([class]):not(:last-child),
.entry-body ul:not([class]):not(:last-child),
.entry-body p:not([class]):not(:last-child) {
  margin-bottom: 1.5em;
}
.entry-body.news-detail div:not([class]):not(:last-child),
.entry-body.news-detail ol:not([class]):not(:last-child),
.entry-body.news-detail ul:not([class]):not(:last-child),
.entry-body.news-detail p:not([class]):not(:last-child) {
  margin-bottom: 0.5em;
}
.entry-body.news-detail h2 {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.45;
  margin-bottom: 32px;
  padding-left: 16px;
  position: relative;
}
.entry-body.news-detail h2:not(:first-child) {
  margin-top: 56px;
}
.entry-body.news-detail h2::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  background: linear-gradient(#3d3daa, #2BA9FF);
}
@media screen and (max-width: 767px) {
  .entry-body.news-detail h2 {
    font-size: 1.8rem;
    margin-bottom: 16px;
    padding-left: 12px;
  }
  .entry-body.news-detail h2:not(:first-child) {
    margin-top: 24px;
  }
}
.entry-body.news-detail h3 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 12px;
}
.entry-body.news-detail h3:not(:first-child) {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .entry-body.news-detail h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  .entry-body.news-detail h3:not(:first-child) {
    margin-top: 24px;
  }
}
.entry-body.news-detail h4 {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 12px;
}
.entry-body.news-detail h4:not(:first-child) {
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  .entry-body.news-detail h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
  }
}
.entry-body.news-detail blockquote {
  margin-top: 32px;
  padding-left: 16px;
  border-left: 2px solid #006cb8;
  font-weight: 500;
  line-height: 1.875;
}
.entry-body.news-detail hr {
  border-color: #006cb8;
  margin: 32px 0;
}
.entry-body.news-detail hr + figure {
  margin-top: 0;
}
.entry-body.news-detail figure {
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .entry-body.news-detail figure {
    margin-top: 24px;
  }
}
.entry-body.news-detail figure figcaption {
  margin-top: 10px;
}
.entry-body.news-detail figure.mt-figure-center figcaption {
  text-align: center;
}
.entry-body ol:not([class]),
.entry-body ul:not([class]),
.entry-body .alphabetic-list,
.entry-body .notes-list {
  line-height: 1.75;
}
.entry-body ol:not([class]) > li + li,
.entry-body ul:not([class]) > li + li,
.entry-body .alphabetic-list > li + li,
.entry-body .notes-list > li + li {
  margin-top: 10px;
}
.entry-body ul:not([class]) > li {
  padding-left: 14px;
  position: relative;
}
.entry-body ul:not([class]) > li::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #99AFC4;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  top: 0.65em;
}
.entry-body ol:not([class]) {
  padding-left: 1.5em;
}
.entry-body ol:not([class]) > li {
  list-style-type: decimal;
}
.entry-body ol:not([class]) > li::marker {
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .entry-body ol:not([class]) > li::marker {
    font-size: 1.6rem;
  }
}
.entry-body ol:not([class]) > li > ol > li {
  list-style-type: lower-alpha;
}
.entry-body ol:not([class]) > li > ol > li.list-style-number {
  list-style-type: decimal;
}
.entry-body ol:not([class]) > li > ol > li.list-style-katakana {
  list-style-type: katakana;
}
.entry-body ol:not([class]) > li.list-style-none {
  list-style-type: none;
}
.entry-body .alphabetic-list {
  padding-left: 1.5em;
}
.entry-body .alphabetic-list > li {
  list-style-type: lower-alpha;
}
.entry-body .dots-list > li {
  padding-left: 14px;
  position: relative;
}
.entry-body .dots-list > li::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #006cb8;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  top: 0.65em;
}
.entry-body .notes-list > li {
  display: flex;
}
.entry-body .notes-list > li .item {
  display: block;
  margin-right: 4px;
}
.entry-body .notes-list > li .list-inner {
  flex: 1;
}
.entry-body .number-list > li {
  position: relative;
  padding-left: 50px;
  list-style-type: none;
}
.entry-body .number-list > li::marker {
  content: none;
}
.entry-body .number-list > li::before {
  content: "（" counter(list-item) "）";
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 0;
  width: 50px;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.entry-body .number-list > li + li {
  margin-top: 10px;
}
.entry-body .number-list.half-marker {
  padding-left: 2.5rem;
}
.entry-body .number-list.half-marker > li {
  padding-left: 0;
}
.entry-body .number-list.half-marker > li::before {
  content: none;
}
.entry-body .number-list.half-marker > li::marker {
  content: counter(list-item) "）";
}
.entry-body .circle-number-list > li {
  list-style-type: none;
  counter-increment: list-item;
  position: relative;
  padding-left: 2rem;
}
.entry-body .circle-number-list > li::marker {
  content: none;
}
.entry-body .circle-number-list > li::before {
  content: counter(list-item);
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0.65em;
  left: 0;
  aspect-ratio: 1/1;
  width: 1.6rem;
  height: 1.6rem;
  border: 1px solid;
  border-radius: 50%;
  font-size: 70%;
}
.entry-body .circle-number-list > li + li {
  margin-top: 10px;
}
.entry-body ol li ol,
.entry-body ol li ul,
.entry-body ul li ol,
.entry-body ul li ul {
  margin-top: 1rem;
}
.entry-body .link-list.inline-list > li + li {
  margin-top: 0;
}
.entry-body .link-list > li + li {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .entry-body .link-list > li + li {
    margin-top: 10px;
  }
}
.entry-body .btn-list > li {
  padding-left: 0;
  text-indent: 0;
}
.entry-body .btn-list > li::before {
  display: none;
}
.entry-body .btn-list > li + li {
  margin-top: 0;
}
.entry-body .tel-num {
  text-decoration: none;
}
.entry-body .tel-num::after {
  display: none;
}
.entry-body .dots-ttl {
  position: relative;
  margin-top: 32px;
  font-size: 1.8rem;
  font-weight: 700;
  padding-left: 14px;
  margin-bottom: 12px;
}
@media screen and (max-width: 767px) {
  .entry-body .dots-ttl {
    margin-top: 20px;
    font-size: 1.6rem;
  }
}
.entry-body .dots-ttl::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 14px;
  top: 0.75em;
  width: 6px;
  height: 6px;
  background: #99AFC4;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .entry-body .dots-ttl::before {
    top: 0.85em;
  }
}
.entry-body .news-date {
  text-align: right;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .entry-body .news-date {
    margin-bottom: 24px;
  }
}
.entry-body .mt-be-columns {
  margin-top: 64px;
  justify-content: center;
  gap: 32px;
}
@media screen and (max-width: 767px) {
  .entry-body .mt-be-columns {
    gap: 16px;
    flex-direction: column;
  }
}
.entry-body .mt-be-columns .mt-be-column {
  flex: 1;
}
.entry-body .mt-be-columns img {
  width: 100%;
  height: auto;
}

/* /entry body */
/* text & link */
.v-top {
  vertical-align: top;
}

.text-blue {
  color: #006cb8;
}

.txt-line {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.note-txt {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .note-txt {
    font-size: 1.2rem;
  }
}

.indent-note {
  padding-left: 1.25em;
  text-indent: -1.25em;
}
.indent-note > * {
  text-indent: 0;
}

.indent-note-num {
  display: flex;
}
.indent-note-num .item {
  margin-right: 5px;
}
.indent-note-num .txt {
  flex: 1;
}

.indent-note-aster {
  padding-left: 1em;
  text-indent: -1em;
}
.indent-note-aster > * {
  text-indent: 0;
}

.txt-link::after {
  background: url(/assets/images/icn_btn_arrow.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-left: 8px;
}
.txt-link[target=_blank]::after {
  background: url(/assets/images/icn_external.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 15px;
  height: 14px;
  vertical-align: middle;
}
.txt-link[href*=".pdf"]::after {
  background: url(/assets/images/icn_pdf.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 27px;
  height: 15px;
  vertical-align: middle;
}
.txt-link[href*=".xlsx"]::after, .txt-link[href*=".xls"]::after {
  background: url(/assets/images/icn_xls.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 26px;
  height: 15px;
  vertical-align: middle;
}
.txt-link[href*=".docx"]::after, .txt-link[href*=".doc"]::after {
  background: url(/assets/images/icn_doc.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 27px;
  height: 15px;
  vertical-align: middle;
}
.txt-link[href*=".pptx"]::after, .txt-link[href*=".ppt"]::after {
  background: url(/assets/images/icn_ppt.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 25px;
  height: 15px;
  vertical-align: middle;
}
@media (any-hover: hover) {
  .txt-link:hover {
    text-decoration: underline;
  }
}

p .txt-link {
  display: inline-flex;
  align-items: center;
  color: #006cb8;
  text-decoration: underline;
}
p .txt-link::after {
  margin-inline: 4px;
}

.arrow-color-link,
.arrow-black-link {
  word-break: break-all;
}
.arrow-color-link::after,
.arrow-black-link::after {
  background: url(/assets/images/icn_btn_arrow.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 8px;
  margin-left: 6px;
  transform: translateY(-2px);
}
.arrow-color-link[target=_blank]::after,
.arrow-black-link[target=_blank]::after {
  background: url(/assets/images/icn_external.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 15px;
  height: 14px;
  vertical-align: middle;
}
.arrow-color-link[href*=".pdf"]::after,
.arrow-black-link[href*=".pdf"]::after {
  background: url(/assets/images/icn_pdf.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 27px;
  height: 15px;
  vertical-align: middle;
}
.arrow-color-link[href*=".xlsx"]::after, .arrow-color-link[href*=".xls"]::after,
.arrow-black-link[href*=".xlsx"]::after,
.arrow-black-link[href*=".xls"]::after {
  background: url(/assets/images/icn_xls.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 26px;
  height: 15px;
  vertical-align: middle;
}
.arrow-color-link[href*=".docx"]::after, .arrow-color-link[href*=".doc"]::after,
.arrow-black-link[href*=".docx"]::after,
.arrow-black-link[href*=".doc"]::after {
  background: url(/assets/images/icn_doc.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 27px;
  height: 15px;
  vertical-align: middle;
}
.arrow-color-link[href*=".pptx"]::after, .arrow-color-link[href*=".ppt"]::after,
.arrow-black-link[href*=".pptx"]::after,
.arrow-black-link[href*=".ppt"]::after {
  background: url(/assets/images/icn_ppt.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 25px;
  height: 15px;
  vertical-align: middle;
}
.arrow-color-link.anchor-link::after,
.arrow-black-link.anchor-link::after {
  background: url(/assets/images/icn_anchor_arrow.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  position: relative;
  transform: translateY(-2px);
}
@media (any-hover: hover) {
  .arrow-color-link:hover,
  .arrow-black-link:hover {
    text-decoration: underline;
  }
}

.arrow-color-link {
  text-decoration: underline;
  -webkit-text-underline-offset: 0.1em;
  text-underline-offset: 0.1em;
  color: #006cb8;
}
@media (any-hover: hover) {
  .arrow-color-link:hover {
    text-decoration: none;
  }
}

.link-list .txt-link[target=_blank]::after {
  background-position: 0 center !important;
  background-size: auto 15px !important;
}
.link-list .txt-link[href*=".pdf"]::after,
.link-list .txt-link[href*=".xlsx"]::after,
.link-list .txt-link[href*=".xls"]::after,
.link-list .txt-link[href*=".docx"]::after,
.link-list .txt-link[href*=".doc"]::after,
.link-list .txt-link[href*=".pptx"]::after,
.link-list .txt-link[href*=".ppt"]::after {
  content: "" attr(data-icon-text) !important;
  width: auto !important;
  height: auto !important;
  padding-left: 26px !important;
  margin-left: 5px !important;
}
.link-list.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .link-list.inline-list {
    -moz-column-gap: 15px;
         column-gap: 15px;
    row-gap: 10px;
  }
}
.link-list .anchor-link {
  color: #006cb8;
  text-decoration: underline;
  -webkit-text-underline-offset: 0.1em;
  text-underline-offset: 0.1em;
}
.link-list .anchor-link::after {
  background: url(/assets/images/icn_anchor_arrow.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-left: 8px;
}
@media (any-hover: hover) {
  .link-list .anchor-link:hover {
    text-decoration: none;
  }
}
.link-list .anchor-link.txt-link {
  color: #0d1214;
  text-decoration: none;
}
@media (any-hover: hover) {
  .link-list .anchor-link.txt-link:hover {
    text-decoration: underline;
  }
}

.anchor-link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}
.anchor-link-list.link-2 > li {
  width: calc((100% - 16px) / 2);
}
.anchor-link-list.link-3 > li {
  width: calc((100% - 32px) / 3);
}
.anchor-link-list.link-4 > li {
  width: calc((100% - 48px) / 4);
}
.anchor-link-list.link-5 > li {
  width: calc((100% - 64px) / 5);
}
.anchor-link-list li {
  border-bottom: 1px solid #006cb8;
}
.anchor-link-list .anchor-link {
  display: block;
  padding: 14px 30px 14px 14px;
  background: url(/assets/images/icn_anchor_arrow.svg) no-repeat calc(100% - 14px) center/16px auto;
}
@media (any-hover: hover) {
  .anchor-link-list .anchor-link:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .anchor-link-list {
    gap: 10px;
  }
  .anchor-link-list.link-3 > li, .anchor-link-list.link-4 > li, .anchor-link-list.link-5 > li {
    width: calc((100% - 10px) / 2);
  }
  .anchor-link-list .anchor-link {
    padding: 10px 30px 10px 10px;
    background-position: calc(100% - 10px) center;
  }
  .anchor-link-list.sp-col1 > li {
    width: 100%;
  }
}

.catch-copy {
  color: #00528C;
  font-size: 2rem;
  letter-spacing: 0.15em;
  line-height: 2.4;
  text-align: center;
  font-weight: bold;
}
.catch-copy + .catch-copy {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .catch-copy {
    font-size: 1.6rem;
  }
  .catch-copy + .catch-copy {
    margin-top: 64px;
  }
}

/* /text & link */
/* btn */
.btn-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 26px;
}
.btn-list.btn-left {
  justify-content: flex-start;
}
.btn-list.btn-right {
  justify-content: flex-end;
}
.btn-list.btn-auto > li {
  width: auto;
}
.btn-list.btn-2 > li {
  width: calc((100% - 20px) / 2);
}
.btn-list.btn-1 > li, .btn-list.btn-3 > li {
  width: calc((100% - 40px) / 3);
}
.btn-list.btn-4 > li {
  width: calc((100% - 60px) / 4);
}
.btn-list .cmn-btn {
  display: flex;
}
@media screen and (max-width: 767px) {
  .btn-list {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
  .btn-list.btn-1 > li, .btn-list.btn-2 > li, .btn-list.btn-3 > li, .btn-list.btn-4 > li {
    width: 100%;
  }
}

.cmn-btn,
.btn {
  display: inline-flex;
  align-items: center;
  position: relative;
  z-index: 1;
  color: #006cb8;
  background: linear-gradient(to right, #2ca9ff, #3f76d6, #3d3daa);
  min-height: 64px;
  padding: 5px 88px 5px 32px;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 64px;
  box-shadow: 0 0 20px rgba(0, 108, 184, 0.1);
}
.cmn-btn::before, .cmn-btn::after,
.btn::before,
.btn::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.cmn-btn::before,
.btn::before {
  background: url(/assets/images/icn_btn_arrow.svg) no-repeat calc(100% - 32px) center/16px auto;
  z-index: 2;
}
.cmn-btn::after,
.btn::after {
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: #fff;
  z-index: -1;
  left: 2px;
  top: 2px;
  border-radius: 64px;
}
@media (any-hover: hover) {
  .cmn-btn:hover,
  .btn:hover {
    color: #fff;
  }
  .cmn-btn:hover::before,
  .btn:hover::before {
    background-image: url(/assets/images/icn_btn_arrow_white.png);
  }
  .cmn-btn:hover::after,
  .btn:hover::after {
    background-color: #006cb8;
  }
}
.cmn-btn.white,
.btn.white {
  background-image: none;
  border: 1px solid #fff;
  color: #fff;
  box-shadow: none;
}
.cmn-btn.white::before,
.btn.white::before {
  background-image: url(/assets/images/icn_btn_arrow_white.png);
}
.cmn-btn.white::after,
.btn.white::after {
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: transparent;
}
@media (any-hover: hover) {
  .cmn-btn.white:hover,
  .btn.white:hover {
    border-color: #006cb8;
  }
  .cmn-btn.white:hover::after,
  .btn.white:hover::after {
    background-color: #006cb8;
  }
}
.cmn-btn.blue,
.btn.blue {
  color: #fff;
}
.cmn-btn.blue::before,
.btn.blue::before {
  background-image: url(/assets/images/icn_btn_arrow_white.png);
}
.cmn-btn.blue::after,
.btn.blue::after {
  background-color: #006cb8;
}
@media (any-hover: hover) {
  .cmn-btn.blue:hover,
  .btn.blue:hover {
    color: #006cb8;
  }
  .cmn-btn.blue:hover::before,
  .btn.blue:hover::before {
    background-image: url(/assets/images/icn_btn_arrow.svg);
    z-index: 2;
  }
  .cmn-btn.blue:hover::after,
  .btn.blue:hover::after {
    background-color: #fff;
  }
}
.cmn-btn.w-lg,
.btn.w-lg {
  min-width: 553px;
}
@media screen and (min-width: 768px) {
  .cmn-btn.w-lg,
  .btn.w-lg {
    padding-left: 50px;
  }
}
@media screen and (max-width: 767px) {
  .cmn-btn.w-lg,
  .btn.w-lg {
    min-width: 100%;
  }
}
.cmn-btn.w-md,
.btn.w-md {
  min-width: 360px;
}
@media screen and (max-width: 767px) {
  .cmn-btn.w-md,
  .btn.w-md {
    min-width: auto;
  }
}
@media screen and (max-width: 767px) {
  .cmn-btn,
  .btn {
    width: 100%;
    min-height: 48px;
    padding: 5px 32px;
  }
  .cmn-btn::before,
  .btn::before {
    background-position: calc(100% - 16px) center;
    background-size: 16px auto;
  }
}

.btn[target=_blank]::before {
  background-image: url(/assets/images/icn_external.svg);
  background-size: 15px auto;
}
@media (any-hover: hover) {
  .btn:hover[target=_blank]::before {
    background-image: url(/assets/images/icn_external_white.svg);
  }
}

.cmn-btn {
  min-height: 56px;
  padding: 5px 60px 5px 26px;
  font-size: 1.6rem;
  box-shadow: none;
}
.cmn-btn::before {
  background-position: calc(100% - 24px) center;
}
.cmn-btn[target=_blank]::before {
  background-image: url(/assets/images/icn_external.svg);
  background-size: 15px auto;
}
.cmn-btn[href*=".pdf"]::before {
  background-image: url(/assets/images/icn_pdf.svg);
  background-size: 27px auto;
}
.cmn-btn[href*=".xlsx"]::before, .cmn-btn[href*=".xls"]::before {
  background-image: url(/assets/images/icn_xls.svg);
  background-size: 26px auto;
}
.cmn-btn[href*=".docx"]::before, .cmn-btn[href*=".doc"]::before {
  background-image: url(/assets/images/icn_doc.svg);
  background-size: 27px auto;
}
.cmn-btn[href*=".pptx"]::before, .cmn-btn[href*=".ppt"]::before {
  background-image: url(/assets/images/icn_ppt.svg);
  background-size: 26px auto;
}
.cmn-btn::after {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  left: 1px;
  top: 1px;
}
.cmn-btn.blue[target=_blank]::before {
  background-image: url(/assets/images/icn_external_white.svg);
}
.cmn-btn.blue[href*=".pdf"]::before {
  background-image: url(/assets/images/icn_pdf_white.svg);
}
.cmn-btn.blue[href*=".xlsx"]::before, .cmn-btn.blue[href*=".xls"]::before {
  background-image: url(/assets/images/icn_xls_white.svg);
}
.cmn-btn.blue[href*=".docx"]::before, .cmn-btn.blue[href*=".doc"]::before {
  background-image: url(/assets/images/icn_doc_white.svg);
}
.cmn-btn.blue[href*=".pptx"]::before, .cmn-btn.blue[href*=".ppt"]::before {
  background-image: url(/assets/images/icn_ppt_white.svg);
}
@media (any-hover: hover) {
  .cmn-btn:hover[target=_blank]::before {
    background-image: url(/assets/images/icn_external_white.svg);
  }
  .cmn-btn:hover[href*=".pdf"]::before {
    background-image: url(/assets/images/icn_pdf_white.svg);
  }
}

/* /btn */
/* image */
.img-txt-wrap {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(13, 18, 20, 0.1);
  padding: 54px;
  display: flex;
  gap: 52px;
}
.img-txt-wrap + .img-txt-wrap {
  margin-top: 40px;
}
.img-txt-wrap > .img-wrap {
  width: 412px;
}
.img-txt-wrap > .txt-wrap {
  flex: 1;
}
.img-txt-wrap > .txt-wrap .cmn-btn {
  width: 362px;
}
@media screen and (max-width: 767px) {
  .img-txt-wrap {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
  }
  .img-txt-wrap + .img-txt-wrap {
    margin-top: 30px;
  }
  .img-txt-wrap > .img-wrap {
    width: 100%;
  }
  .img-txt-wrap > .txt-wrap .cmn-btn {
    width: 100%;
  }
}

.map-wrap iframe {
  width: 100%;
  height: 374px;
}
@media screen and (max-width: 767px) {
  .map-wrap iframe {
    height: 220px;
  }
}

/* /image */
/* section */
.color-section {
  background-color: #F3F5F7;
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  .color-section {
    padding: 60px 0;
  }
}

/* /section */
/* box */
.white-box,
.color-box {
  background-color: #F3F5F7;
  padding: 40px;
}
@media screen and (min-width: 768px) {
  .white-box.pd-l,
  .color-box.pd-l {
    padding: 80px;
  }
}
.white-box.ver-lblue,
.color-box.ver-lblue {
  background-color: #E5F5FD;
}
@media screen and (max-width: 767px) {
  .white-box,
  .color-box {
    padding: 20px;
  }
}

.white-box {
  background-color: #fff;
}

.band-ttl-box .ttl-box {
  background-color: #006cb8;
  padding: 18px 22px;
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .band-ttl-box .ttl-box {
    font-size: 1.8rem;
    padding: 12px 20px;
  }
}
.band-ttl-box .txt-box {
  padding: 40px;
  background-color: #fff;
  border: 1px solid #006cb8;
}
@media screen and (max-width: 767px) {
  .band-ttl-box .txt-box {
    padding: 20px;
  }
  .band-ttl-box .txt-box .ttl {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}

.bd-box {
  border: 10px solid #CFDEE6;
  padding: 55px 45px;
}
@media screen and (max-width: 767px) {
  .bd-box {
    padding: 20px 15px;
  }
}

.linkpanel-list {
  display: flex;
  gap: 40px;
}
.linkpanel-list > .item {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .linkpanel-list {
    gap: 25px;
    flex-direction: column;
  }
}
.linkpanel-list .linkpanel {
  display: block;
  background-color: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(13, 18, 20, 0.1);
}
.linkpanel-list .linkpanel .img {
  margin-bottom: 20px;
}
.linkpanel-list .linkpanel .img img {
  width: 100%;
}
.linkpanel-list .linkpanel .txt {
  padding-right: 30px;
  padding-left: 10px;
  font-size: 1.8rem;
  font-weight: bold;
  background: url(/assets/images/icn_btn_arrow.svg) no-repeat right center/24px auto;
}
@media (any-hover: hover) {
  .linkpanel-list .linkpanel:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .linkpanel-list .linkpanel {
    padding: 20px;
  }
  .linkpanel-list .linkpanel .img {
    margin-bottom: 15px;
  }
  .linkpanel-list .linkpanel .txt {
    font-size: 1.6rem;
    background-size: 18px auto;
  }
}

.long-linkpanel-wrap .linkpanel {
  display: flex;
  padding: 32px;
  gap: 40px;
  border-radius: 16px;
  box-shadow: 0 0 24px rgba(13, 18, 20, 0.1);
  background: url(/assets/images/icn_btn_arrow.svg) no-repeat right 20px bottom 20px/24px auto;
  background-color: #fff;
}
.long-linkpanel-wrap .linkpanel[target=_blank] {
  background-image: url(/assets/images/icn_external.svg);
}
@media (any-hover: hover) {
  .long-linkpanel-wrap .linkpanel:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .long-linkpanel-wrap .linkpanel {
    flex-direction: column;
    padding: 16px;
    gap: 24px;
    border-radius: 10px;
  }
}
.long-linkpanel-wrap .linkpanel .img {
  max-width: 524px;
}
@media screen and (min-width: 768px) {
  .long-linkpanel-wrap .linkpanel .txt-wrap {
    flex: 1;
    padding-top: 16px;
  }
}
.long-linkpanel-wrap .linkpanel .txt-wrap .ttl {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .long-linkpanel-wrap .linkpanel .txt-wrap .ttl {
    font-size: 1.6rem;
  }
}
.long-linkpanel-wrap .linkpanel .txt-wrap .txt {
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  .long-linkpanel-wrap .linkpanel .txt-wrap .txt {
    margin-top: 16px;
  }
}

.color-ttl-box-wrap {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  background-color: #B1D1E8;
  border: 2px solid #B1D1E8;
}
.color-ttl-box-wrap .box {
  display: flex;
  width: calc(50% - 1px);
  padding: 40px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .color-ttl-box-wrap .box {
    width: 100%;
    padding: 16px;
  }
}
.color-ttl-box-wrap .box .box-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 32px;
  border-left: 4px solid #000;
}
@media screen and (max-width: 767px) {
  .color-ttl-box-wrap .box .box-inner {
    gap: 8px;
    padding-left: 16px;
    border-left-width: 2px;
  }
}
.color-ttl-box-wrap .box .ttl {
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 2.2rem;
  flex-grow: 1;
}
@media screen and (max-width: 767px) {
  .color-ttl-box-wrap .box .ttl {
    font-size: 1.6rem;
  }
}
.color-ttl-box-wrap .box .txt {
  line-height: 2;
}
.color-ttl-box-wrap .box.orange .box-inner {
  border-color: #EB833C;
}
.color-ttl-box-wrap .box.orange .ttl {
  color: #EB833C;
}
.color-ttl-box-wrap .box.green .box-inner {
  border-color: #2F986B;
}
.color-ttl-box-wrap .box.green .ttl {
  color: #2F986B;
}
.color-ttl-box-wrap .box.red .box-inner {
  border-color: #D9545E;
}
.color-ttl-box-wrap .box.red .ttl {
  color: #D9545E;
}
.color-ttl-box-wrap .box.blue .box-inner {
  border-color: #006cb8;
}
.color-ttl-box-wrap .box.blue .ttl {
  color: #006cb8;
}

/* /box */
/* table */
table {
  width: 100%;
}
table:not(:last-child) {
  margin-bottom: 40px;
}
table td,
table th {
  background: #fff;
  border: 1px solid #CFDEE6;
  padding: 12px 16px;
  line-height: 2;
}
table th {
  background: #F3F5F7;
  font-weight: bold;
}
table thead th {
  text-align: center;
}
table .bg-lblue {
  background: #E5F5FD !important;
}
@media screen and (max-width: 767px) {
  table td,
  table th {
    padding: 10px;
  }
}

@media screen and (min-width: 768px) {
  .sp-scroll-wrap .sp-scroll {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp-scroll-wrap {
    display: block;
    width: 100%;
    position: relative;
    overflow-x: auto;
  }
  .sp-scroll-wrap:not(:last-child) {
    margin-bottom: 24px;
  }
  .sp-scroll-wrap .sp-scroll-inner {
    width: 640px;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
  }
  .sp-scroll-wrap .sp-scroll-inner.sp-w720 {
    width: 720px;
  }
  .sp-scroll-wrap .sp-scroll {
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
  }
  .sp-scroll-wrap .sp-scroll img {
    width: 114px;
    height: 114px;
  }
}

/* /table */
/* accordion */
.qa-acc-list > li + li {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .qa-acc-list > li + li {
    margin-top: 20px;
  }
}
.qa-acc-list .qa-acc-wrap {
  position: relative;
  border: 1px solid #CFDEE6;
  border-radius: 8px;
  overflow: clip;
}
.qa-acc-list .qa-acc-wrap .acc-ttl {
  background: #ECF5FA;
  padding: 10px 70px 10px 40px;
  min-height: 96px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  cursor: pointer;
}
.qa-acc-list .qa-acc-wrap .acc-ttl::-webkit-details-marker, .qa-acc-list .qa-acc-wrap .acc-ttl::marker {
  display: none !important;
}
.qa-acc-list .qa-acc-wrap .acc-ttl::after, .qa-acc-list .qa-acc-wrap .acc-ttl::before {
  background: url(/assets/images/icn_acc_open.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  width: 30px;
  height: 30px;
  vertical-align: middle;
  position: absolute;
  right: 40px;
  top: calc(50% - 15px);
  transition: opacity 0.3s ease;
}
.qa-acc-list .qa-acc-wrap .acc-ttl.cur::after {
  background-image: url(/assets/images/icn_acc_close.svg);
}
.qa-acc-list .qa-acc-wrap .acc-ttl .txt {
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .qa-acc-list .qa-acc-wrap .acc-ttl {
    padding: 15px 40px 15px 15px;
    min-height: 70px;
  }
  .qa-acc-list .qa-acc-wrap .acc-ttl::after, .qa-acc-list .qa-acc-wrap .acc-ttl::before {
    right: 10px;
  }
  .qa-acc-list .qa-acc-wrap .acc-ttl .txt {
    font-size: 1.6rem;
  }
}
.qa-acc-list .qa-acc-wrap .acc-contents .acc-contents-inner {
  background: #fff;
  padding: 32px 40px;
}
@media screen and (max-width: 767px) {
  .qa-acc-list .qa-acc-wrap .acc-contents .acc-contents-inner {
    padding: 20px 16px;
  }
}

/* /accordion */
/* flex */
.flx-box {
  display: flex;
}
.flx-box.gap-l {
  gap: 56px;
}
.flx-box.gap-m {
  gap: 32px;
}
.flx-box.gap-s {
  gap: 20px;
}
.flx-box.gap-ss {
  gap: 16px;
}
.flx-box .flx1 {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .flx-box.sp-column {
    flex-direction: column;
  }
  .flx-box.gap-l {
    gap: 28px;
  }
  .flx-box.gap-m {
    gap: 16px;
  }
  .flx-box.gap-s {
    gap: 10px;
  }
  .flx-box.sp-gap-l {
    gap: 28px;
  }
  .flx-box.sp-gap-m {
    gap: 16px;
  }
  .flx-box.sp-gap-s {
    gap: 10px;
  }
}

.jc-s {
  justify-content: flex-start;
}

.jc-c {
  justify-content: center;
}

.jc-e {
  justify-content: flex-end;
}

.ai-s {
  align-items: flex-start;
}

.ai-c {
  align-items: center;
}

.ai-e {
  align-items: flex-end;
}

@media screen and (max-width: 767px) {
  .sp-ai-c {
    justify-content: center;
  }
  .sp-jc-c {
    justify-content: center;
  }
}
/* /flex */
/* others */
.dl-list {
  background: #fff;
}
.dl-list > li:nth-of-type(even) {
  background-color: #f2f5f7;
}
.dl-list .dl-wrap {
  padding: 16px 32px;
  display: flex;
}
.dl-list .dl-wrap .dt {
  width: 20%;
  font-weight: bold;
  padding-right: 10px;
}
.dl-list .dl-wrap .dd {
  flex: 1;
}
@media screen and (min-width: 768px) {
  .dl-list .dl-wrap.pl-lg {
    padding-left: 212px;
  }
  .dl-list .dl-wrap.pl-lg .dt {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .dl-list .dl-wrap {
    padding: 15px;
  }
  .dl-list .dl-wrap .dt {
    width: 30%;
  }
}

.number-txt-list {
  margin-top: 32px;
}
.number-txt-list > li {
  border-top: 1px solid #CFDEE6;
  padding: 30px 0;
  display: flex;
  align-content: center;
  gap: 30px;
}
.number-txt-list > li:last-of-type {
  border-bottom: 1px solid #CFDEE6;
}
.number-txt-list > li .number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f2f5f7;
  font-size: 2.4rem;
  font-weight: bold;
  color: #006cb8;
}
.number-txt-list > li .txt {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .number-txt-list > li {
    padding: 20px 0;
    gap: 15px;
  }
  .number-txt-list > li .number {
    width: 50px;
    height: 50px;
    font-size: 2rem;
  }
}

.band-box-list > li + li {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .band-box-list > li + li {
    margin-top: 40px;
  }
}
.band-box-list .band-box .band-ttl {
  background-color: #f2f5f7;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 40px;
  font-weight: bold;
  margin-bottom: 32px;
}
.band-box-list .band-box .band-ttl .number {
  font-size: 3.2rem;
  color: #006cb8;
}
.band-box-list .band-box .band-ttl .ttl {
  font-size: 2.2rem;
}
.band-box-list .band-box .band-ttl .ttl .anchor-only {
  display: none;
}
@media screen and (max-width: 767px) {
  .band-box-list .band-box .band-ttl {
    padding: 10px 15px;
    gap: 15px;
    margin-bottom: 20px;
  }
  .band-box-list .band-box .band-ttl .number {
    font-size: 2.6rem;
  }
  .band-box-list .band-box .band-ttl .ttl {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.band-box-list .band-box p.txt + p.txt {
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  .band-box-list .band-box p.txt + p.txt {
    margin-top: 10px;
  }
}

.greeting-box {
  height: 394px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.greeting-box::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(35, 147, 229, 0.05));
  z-index: 4;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .greeting-box {
    height: 186px;
  }
  .greeting-box::before {
    background-image: url(/assets/images/img_deco_greeting_sp.png);
    aspect-ratio: 565/374;
    left: auto;
    right: 0;
    transform: none;
  }
}
.greeting-box .img-box {
  height: 100%;
  flex: 1;
  margin-right: -124px;
}
.greeting-box .img-box img {
  height: 100%;
  width: auto;
  max-width: unset;
}
@media screen and (max-width: 767px) {
  .greeting-box .img-box {
    margin-right: 0;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
    flex: none;
  }
}
.greeting-box .txt-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px;
  width: 508px;
  position: relative;
  z-index: 3;
}
.greeting-box .txt-box .main-txt {
  padding-bottom: 40px;
  border-bottom: 1px solid #CFDEE6;
  display: flex;
  justify-content: center;
}
.greeting-box .txt-box .ttl {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.greeting-box .txt-box .name {
  width: 236px;
}
@media screen and (max-width: 767px) {
  .greeting-box .txt-box {
    padding: 10px;
    width: 200px;
    margin-left: auto;
  }
  .greeting-box .txt-box .main-txt {
    padding-bottom: 24px;
  }
  .greeting-box .txt-box .ttl {
    font-size: 1.2rem;
    margin-bottom: 0;
  }
  .greeting-box .txt-box .name {
    width: 122px;
  }
}
.greeting-box .link-icn {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 3;
  font-size: 1.8rem;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .greeting-box .link-icn {
    right: 10px;
    bottom: 10px;
    font-size: 1.4rem;
  }
}
@media (any-hover: hover) {
  .greeting-box:not(.no-link):hover {
    opacity: 0.7;
  }
}
.greeting-box:not(.no-link) .link-icn {
  padding-right: 32px;
  background: url(/assets/images/icn_btn_arrow.svg) no-repeat right center/24px auto;
}
@media screen and (max-width: 767px) {
  .greeting-box:not(.no-link) .link-icn {
    background-size: 20px auto;
    padding-right: 28px;
  }
}

.grada-col2-box {
  position: relative;
  padding: 40px;
  display: flex;
  gap: 80px;
}
.grada-col2-box::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(35, 147, 229, 0.08));
  z-index: -1;
  pointer-events: none;
}
.grada-col2-box .img-box {
  width: 508px;
}
.grada-col2-box .txt-box {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .grada-col2-box {
    padding: 20px 20px 30px;
    gap: 30px;
    flex-direction: column;
  }
  .grada-col2-box .img-box {
    width: 100%;
  }
}

.arrow-link-list > li {
  border-top: 1px solid #CFDEE6;
}
.arrow-link-list > li:last-of-type {
  border-bottom: 1px solid #CFDEE6;
}
.arrow-link-list > li a {
  position: relative;
  padding: 30px 64px 30px 0;
  display: block;
  background: url(/assets/images/icn_btn_arrow.svg) no-repeat calc(100% - 40px) center/20px auto;
  font-size: 1.8rem;
  font-weight: bold;
  color: #0d1214 !important;
  text-decoration: none !important;
}
@media (any-hover: hover) {
  .arrow-link-list > li a:hover {
    text-decoration: underline !important;
  }
}
@media screen and (max-width: 767px) {
  .arrow-link-list > li a {
    font-size: 1.4rem;
    padding: 15px 40px 15px 0;
    background-position: calc(100% - 15px) center;
  }
}

.number-panel-list {
  display: flex;
  gap: 40px;
  margin-top: 40px;
}
.number-panel-list.panel-2 > li {
  width: calc(50% - 20px);
}
.number-panel-list.panel-3 > li {
  width: calc((100% - 40px) / 3);
}
.number-panel-list .number-panel {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .number-panel-list {
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
  }
  .number-panel-list.panel-2 > li, .number-panel-list.panel-3 > li {
    width: 100%;
  }
}

.number-panel {
  position: relative;
  border: 1px solid #006cb8;
  padding: 56px 40px 32px;
}
.number-panel .label {
  background: #006cb8;
  font-size: 2.4rem;
  font-weight: bold;
  border-radius: 0 0 24px 0;
  color: #fff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 63px;
  height: 63px;
  position: absolute;
  left: 0;
  top: 0;
}
.number-panel .panel-ttl {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4583333333;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .number-panel {
    padding: 50px 20px 20px;
  }
  .number-panel .label {
    font-size: 2rem;
    width: 50px;
    height: 50px;
  }
  .number-panel .panel-ttl {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
.number-panel.has-modal {
  background: url(/assets/images/bg_panel_01.jpg) no-repeat center bottom/100% auto;
  padding-bottom: 92px;
}
.number-panel.has-modal .panel-link {
  position: absolute;
  right: 24px;
  bottom: 24px;
  font-weight: bold;
  padding-right: 23px;
  background: url(/assets/images/icn_modal_open.svg) no-repeat right center/15px auto;
}
@media screen and (max-width: 767px) {
  .number-panel.has-modal {
    padding-bottom: 70px;
  }
  .number-panel.has-modal .panel-link {
    right: 15px;
    bottom: 15px;
  }
}

.icn-list {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .icn-list {
    margin-bottom: 10px;
  }
}

.graph-list {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .graph-list {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 32px;
    margin-top: 48px;
  }
}
.graph-list li {
  display: flex;
  flex-direction: column;
  gap: 32px;
  border-bottom: 2px dotted #006cb8;
  border-spacing: 4px;
  padding-bottom: 8px;
}
.graph-list li .graph-ttl {
  text-align: center;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5555555556;
}

/* /others */
/* modal */
.modal-contents {
  position: fixed;
  padding: 80px 50px 40px;
  width: 1126px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 112;
  display: none;
  pointer-events: all;
}
.modal-contents .img {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal-contents .img img {
  display: block;
}
@media screen and (min-width: 768px) {
  .modal-contents .img img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .modal-contents {
    padding: 56px 16px 16px;
    width: calc(100% - 32px);
  }
}

.modal-close {
  display: none;
  position: fixed;
  overflow: hidden;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  text-indent: -9999px;
  background: url(/assets/images/icn_close_modal.svg) no-repeat center/cover;
  z-index: 113;
  border: none;
  cursor: pointer;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .modal-close {
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
  }
}

.modal-bg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(21, 21, 21, 0.5);
  z-index: 111;
}

/* /modal */
/* local-anchor-box */
.local-anchor-box {
  margin-bottom: 124px;
}
@media screen and (max-width: 767px) {
  .local-anchor-box {
    margin-bottom: 40px;
  }
}
.local-anchor-box .local-link-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  align-items: center;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .local-anchor-box .local-link-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
  }
}
.local-anchor-box .local-link-list li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 80px;
  height: 100%;
  color: #0d1214;
  background-color: #F2F5F7;
  border-radius: 10px 10px 0 0;
  text-decoration: none;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .local-anchor-box .local-link-list li a {
    min-height: 50px;
    border-radius: 10px;
  }
}
.local-anchor-box .local-link-list li a.cur {
  pointer-events: none;
  color: #fff;
  font-weight: bold;
  background: linear-gradient(to right, #1482CE 20%, #527BD3 100%);
}
.local-anchor-box .anchor-link-list-wrap {
  padding: 25px 53px 33px;
  border-left: 1px solid #CFDEE6;
  border-right: 1px solid #CFDEE6;
  border-bottom: 1px solid #CFDEE6;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 767px) {
  .local-anchor-box .anchor-link-list-wrap {
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    border-top: 1px solid #CFDEE6;
  }
}
.local-anchor-box .anchor-link-list-wrap .anchor-link-list {
  gap: 8px 16px;
  margin-top: 0;
}
.local-anchor-box .anchor-link-list-wrap .anchor-link-list li {
  align-content: center;
}
.local-anchor-box .anchor-link-list-wrap .anchor-link-list li .title-only-txt {
  display: none;
}
.local-anchor-box .anchor-link-list-wrap .anchor-link-list .anchor-link {
  display: flex;
  align-items: center;
}
.local-anchor-box .anchor-link-list-wrap .anchor-link-list .anchor-link .num {
  font-size: 2rem;
  padding-right: 10px;
}
@media screen and (max-width: 767px) {
  .local-anchor-box .anchor-link-list-wrap .anchor-link-list .anchor-link .num {
    font-size: 1.6rem;
  }
}

/* local-anchor-box */
/* bd-line */
.bd-line {
  margin: 40px 0;
  height: 1px;
  background-color: #CFDEE6;
  border: none;
}
@media screen and (max-width: 767px) {
  .bd-line {
    margin: 20px 0;
  }
}

/* bd-line */
/*==========================================================================================================
hover
==========================================================================================================*/
/*==========================================================================================================
PC Only
==========================================================================================================*/
@media screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
  /* common module */
  /* /common module */
}
/*==========================================================================================================
SP Only
==========================================================================================================*/
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  /*---------------------------------------------
    generic  class
  ---------------------------------------------*/
  .sp-txt-b {
    font-weight: bold !important;
  }
  .sp-txt-n {
    font-weight: normal !important;
  }
  .sp-layout-c {
    text-align: center !important;
  }
  .sp-layout-l {
    text-align: left !important;
  }
  .sp-layout-r {
    text-align: right !important;
  }
  .sp-fl {
    float: left !important;
  }
  .sp-fr {
    float: right !important;
  }
  .sp-fz10 {
    font-size: 1rem !important;
  }
  .sp-fz11 {
    font-size: 1.1rem !important;
  }
  .sp-fz12 {
    font-size: 1.2rem !important;
  }
  .sp-fz14 {
    font-size: 1.4rem !important;
  }
  .sp-fz16 {
    font-size: 1.6rem !important;
  }
  .sp-fz18 {
    font-size: 1.8rem !important;
  }
  .sp-fz20 {
    font-size: 2rem !important;
  }
  .sp-fz22 {
    font-size: 2.2rem !important;
  }
  .sp-fz24 {
    font-size: 2.4rem !important;
  }
  .sp-fz26 {
    font-size: 2.6rem !important;
  }
  .sp-fz28 {
    font-size: 2.8rem !important;
  }
  .sp-fz30 {
    font-size: 3rem !important;
  }
  .sp-fz32 {
    font-size: 3.2rem !important;
  }
  .sp-fz34 {
    font-size: 3.4rem !important;
  }
  .sp-fz36 {
    font-size: 3.6rem !important;
  }
  .sp-fz38 {
    font-size: 3.8rem !important;
  }
  .sp-fz40 {
    font-size: 4rem !important;
  }
  .sp-fz42 {
    font-size: 4.2rem !important;
  }
  .sp-fz44 {
    font-size: 4.4rem !important;
  }
  .sp-fz46 {
    font-size: 4.6rem !important;
  }
  .sp-fz48 {
    font-size: 4.8rem !important;
  }
  /*---------------------------------------------
  base margin
  ---------------------------------------------*/
  .sp-mt0 {
    margin-top: 0px !important;
  }
  .sp-mt5 {
    margin-top: 5px !important;
  }
  .sp-mt8 {
    margin-top: 8px !important;
  }
  .sp-mt10 {
    margin-top: 10px !important;
  }
  .sp-mt15 {
    margin-top: 15px !important;
  }
  .sp-mt16 {
    margin-top: 16px !important;
  }
  .sp-mt20 {
    margin-top: 20px !important;
  }
  .sp-mt24 {
    margin-top: 24px !important;
  }
  .sp-mt25 {
    margin-top: 25px !important;
  }
  .sp-mt30 {
    margin-top: 30px !important;
  }
  .sp-mt32 {
    margin-top: 32px !important;
  }
  .sp-mt35 {
    margin-top: 35px !important;
  }
  .sp-mt40 {
    margin-top: 40px !important;
  }
  .sp-mt48 {
    margin-top: 48px !important;
  }
  .sp-mt50 {
    margin-top: 50px !important;
  }
  .sp-mt56 {
    margin-top: 56px !important;
  }
  .sp-mt60 {
    margin-top: 60px !important;
  }
  .sp-mt64 {
    margin-top: 64px !important;
  }
  .sp-mt70 {
    margin-top: 70px !important;
  }
  .sp-mt80 {
    margin-top: 80px !important;
  }
  .sp-mt90 {
    margin-top: 90px !important;
  }
  .sp-mt100 {
    margin-top: 100px !important;
  }
  .sp-ml0 {
    margin-left: 0px !important;
  }
  .sp-ml5 {
    margin-left: 5px !important;
  }
  .sp-ml8 {
    margin-left: 8px !important;
  }
  .sp-ml10 {
    margin-left: 10px !important;
  }
  .sp-ml15 {
    margin-left: 15px !important;
  }
  .sp-ml16 {
    margin-left: 16px !important;
  }
  .sp-ml20 {
    margin-left: 20px !important;
  }
  .sp-ml24 {
    margin-left: 24px !important;
  }
  .sp-ml25 {
    margin-left: 25px !important;
  }
  .sp-ml30 {
    margin-left: 30px !important;
  }
  .sp-ml32 {
    margin-left: 32px !important;
  }
  .sp-ml35 {
    margin-left: 35px !important;
  }
  .sp-ml40 {
    margin-left: 40px !important;
  }
  .sp-ml48 {
    margin-left: 48px !important;
  }
  .sp-ml50 {
    margin-left: 50px !important;
  }
  .sp-ml56 {
    margin-left: 56px !important;
  }
  .sp-ml60 {
    margin-left: 60px !important;
  }
  .sp-ml64 {
    margin-left: 64px !important;
  }
  .sp-ml70 {
    margin-left: 70px !important;
  }
  .sp-ml80 {
    margin-left: 80px !important;
  }
  .sp-ml90 {
    margin-left: 90px !important;
  }
  .sp-ml100 {
    margin-left: 100px !important;
  }
  .sp-mr0 {
    margin-right: 0px !important;
  }
  .sp-mr5 {
    margin-right: 5px !important;
  }
  .sp-mr8 {
    margin-right: 8px !important;
  }
  .sp-mr10 {
    margin-right: 10px !important;
  }
  .sp-mr15 {
    margin-right: 15px !important;
  }
  .sp-mr16 {
    margin-right: 16px !important;
  }
  .sp-mr20 {
    margin-right: 20px !important;
  }
  .sp-mr24 {
    margin-right: 24px !important;
  }
  .sp-mr25 {
    margin-right: 25px !important;
  }
  .sp-mr30 {
    margin-right: 30px !important;
  }
  .sp-mr32 {
    margin-right: 32px !important;
  }
  .sp-mr35 {
    margin-right: 35px !important;
  }
  .sp-mr40 {
    margin-right: 40px !important;
  }
  .sp-mr48 {
    margin-right: 48px !important;
  }
  .sp-mr50 {
    margin-right: 50px !important;
  }
  .sp-mr56 {
    margin-right: 56px !important;
  }
  .sp-mr60 {
    margin-right: 60px !important;
  }
  .sp-mr64 {
    margin-right: 64px !important;
  }
  .sp-mr70 {
    margin-right: 70px !important;
  }
  .sp-mr80 {
    margin-right: 80px !important;
  }
  .sp-mr90 {
    margin-right: 90px !important;
  }
  .sp-mr100 {
    margin-right: 100px !important;
  }
  .sp-mb0 {
    margin-bottom: 0px !important;
  }
  .sp-mb5 {
    margin-bottom: 5px !important;
  }
  .sp-mb8 {
    margin-bottom: 8px !important;
  }
  .sp-mb10 {
    margin-bottom: 10px !important;
  }
  .sp-mb15 {
    margin-bottom: 15px !important;
  }
  .sp-mb16 {
    margin-bottom: 16px !important;
  }
  .sp-mb20 {
    margin-bottom: 20px !important;
  }
  .sp-mb24 {
    margin-bottom: 24px !important;
  }
  .sp-mb25 {
    margin-bottom: 25px !important;
  }
  .sp-mb30 {
    margin-bottom: 30px !important;
  }
  .sp-mb32 {
    margin-bottom: 32px !important;
  }
  .sp-mb35 {
    margin-bottom: 35px !important;
  }
  .sp-mb40 {
    margin-bottom: 40px !important;
  }
  .sp-mb48 {
    margin-bottom: 48px !important;
  }
  .sp-mb50 {
    margin-bottom: 50px !important;
  }
  .sp-mb56 {
    margin-bottom: 56px !important;
  }
  .sp-mb60 {
    margin-bottom: 60px !important;
  }
  .sp-mb64 {
    margin-bottom: 64px !important;
  }
  .sp-mb70 {
    margin-bottom: 70px !important;
  }
  .sp-mb80 {
    margin-bottom: 80px !important;
  }
  .sp-mb90 {
    margin-bottom: 90px !important;
  }
  .sp-mb100 {
    margin-bottom: 100px !important;
  }
  .sp-pt0 {
    padding-top: 0px !important;
  }
  .sp-pt5 {
    padding-top: 5px !important;
  }
  .sp-pt8 {
    padding-top: 8px !important;
  }
  .sp-pt10 {
    padding-top: 10px !important;
  }
  .sp-pt15 {
    padding-top: 15px !important;
  }
  .sp-pt16 {
    padding-top: 16px !important;
  }
  .sp-pt20 {
    padding-top: 20px !important;
  }
  .sp-pt24 {
    padding-top: 24px !important;
  }
  .sp-pt25 {
    padding-top: 25px !important;
  }
  .sp-pt30 {
    padding-top: 30px !important;
  }
  .sp-pt32 {
    padding-top: 32px !important;
  }
  .sp-pt35 {
    padding-top: 35px !important;
  }
  .sp-pt40 {
    padding-top: 40px !important;
  }
  .sp-pt48 {
    padding-top: 48px !important;
  }
  .sp-pt50 {
    padding-top: 50px !important;
  }
  .sp-pt56 {
    padding-top: 56px !important;
  }
  .sp-pt60 {
    padding-top: 60px !important;
  }
  .sp-pt64 {
    padding-top: 64px !important;
  }
  .sp-pt70 {
    padding-top: 70px !important;
  }
  .sp-pt80 {
    padding-top: 80px !important;
  }
  .sp-pt90 {
    padding-top: 90px !important;
  }
  .sp-pt100 {
    padding-top: 100px !important;
  }
  .sp-pl0 {
    padding-left: 0px !important;
  }
  .sp-pl5 {
    padding-left: 5px !important;
  }
  .sp-pl8 {
    padding-left: 8px !important;
  }
  .sp-pl10 {
    padding-left: 10px !important;
  }
  .sp-pl15 {
    padding-left: 15px !important;
  }
  .sp-pl16 {
    padding-left: 16px !important;
  }
  .sp-pl20 {
    padding-left: 20px !important;
  }
  .sp-pl24 {
    padding-left: 24px !important;
  }
  .sp-pl25 {
    padding-left: 25px !important;
  }
  .sp-pl30 {
    padding-left: 30px !important;
  }
  .sp-pl32 {
    padding-left: 32px !important;
  }
  .sp-pl35 {
    padding-left: 35px !important;
  }
  .sp-pl40 {
    padding-left: 40px !important;
  }
  .sp-pl48 {
    padding-left: 48px !important;
  }
  .sp-pl50 {
    padding-left: 50px !important;
  }
  .sp-pl56 {
    padding-left: 56px !important;
  }
  .sp-pl60 {
    padding-left: 60px !important;
  }
  .sp-pl64 {
    padding-left: 64px !important;
  }
  .sp-pl70 {
    padding-left: 70px !important;
  }
  .sp-pl80 {
    padding-left: 80px !important;
  }
  .sp-pl90 {
    padding-left: 90px !important;
  }
  .sp-pl100 {
    padding-left: 100px !important;
  }
  .sp-pr0 {
    padding-right: 0px !important;
  }
  .sp-pr5 {
    padding-right: 5px !important;
  }
  .sp-pr8 {
    padding-right: 8px !important;
  }
  .sp-pr10 {
    padding-right: 10px !important;
  }
  .sp-pr15 {
    padding-right: 15px !important;
  }
  .sp-pr16 {
    padding-right: 16px !important;
  }
  .sp-pr20 {
    padding-right: 20px !important;
  }
  .sp-pr24 {
    padding-right: 24px !important;
  }
  .sp-pr25 {
    padding-right: 25px !important;
  }
  .sp-pr30 {
    padding-right: 30px !important;
  }
  .sp-pr32 {
    padding-right: 32px !important;
  }
  .sp-pr35 {
    padding-right: 35px !important;
  }
  .sp-pr40 {
    padding-right: 40px !important;
  }
  .sp-pr48 {
    padding-right: 48px !important;
  }
  .sp-pr50 {
    padding-right: 50px !important;
  }
  .sp-pr56 {
    padding-right: 56px !important;
  }
  .sp-pr60 {
    padding-right: 60px !important;
  }
  .sp-pr64 {
    padding-right: 64px !important;
  }
  .sp-pr70 {
    padding-right: 70px !important;
  }
  .sp-pr80 {
    padding-right: 80px !important;
  }
  .sp-pr90 {
    padding-right: 90px !important;
  }
  .sp-pr100 {
    padding-right: 100px !important;
  }
  .sp-pb0 {
    padding-bottom: 0px !important;
  }
  .sp-pb5 {
    padding-bottom: 5px !important;
  }
  .sp-pb8 {
    padding-bottom: 8px !important;
  }
  .sp-pb10 {
    padding-bottom: 10px !important;
  }
  .sp-pb15 {
    padding-bottom: 15px !important;
  }
  .sp-pb16 {
    padding-bottom: 16px !important;
  }
  .sp-pb20 {
    padding-bottom: 20px !important;
  }
  .sp-pb24 {
    padding-bottom: 24px !important;
  }
  .sp-pb25 {
    padding-bottom: 25px !important;
  }
  .sp-pb30 {
    padding-bottom: 30px !important;
  }
  .sp-pb32 {
    padding-bottom: 32px !important;
  }
  .sp-pb35 {
    padding-bottom: 35px !important;
  }
  .sp-pb40 {
    padding-bottom: 40px !important;
  }
  .sp-pb48 {
    padding-bottom: 48px !important;
  }
  .sp-pb50 {
    padding-bottom: 50px !important;
  }
  .sp-pb56 {
    padding-bottom: 56px !important;
  }
  .sp-pb60 {
    padding-bottom: 60px !important;
  }
  .sp-pb64 {
    padding-bottom: 64px !important;
  }
  .sp-pb70 {
    padding-bottom: 70px !important;
  }
  .sp-pb80 {
    padding-bottom: 80px !important;
  }
  .sp-pb90 {
    padding-bottom: 90px !important;
  }
  .sp-pb100 {
    padding-bottom: 100px !important;
  }
  .sp-w5p {
    width: 5% !important;
  }
  .sp-w8p {
    width: 8% !important;
  }
  .sp-w10p {
    width: 10% !important;
  }
  .sp-w11p {
    width: 11% !important;
  }
  .sp-w12p {
    width: 12% !important;
  }
  .sp-w15p {
    width: 15% !important;
  }
  .sp-w16p {
    width: 16% !important;
  }
  .sp-w20p {
    width: 20% !important;
  }
  .sp-w24p {
    width: 24% !important;
  }
  .sp-w25p {
    width: 25% !important;
  }
  .sp-w30p {
    width: 30% !important;
  }
  .sp-w32p {
    width: 32% !important;
  }
  .sp-w35p {
    width: 35% !important;
  }
  .sp-w40p {
    width: 40% !important;
  }
  .sp-w45p {
    width: 45% !important;
  }
  .sp-w48p {
    width: 48% !important;
  }
  .sp-w50p {
    width: 50% !important;
  }
  .sp-w55p {
    width: 55% !important;
  }
  .sp-w56p {
    width: 56% !important;
  }
  .sp-w60p {
    width: 60% !important;
  }
  .sp-w64p {
    width: 64% !important;
  }
  .sp-w65p {
    width: 65% !important;
  }
  .sp-w70p {
    width: 70% !important;
  }
  .sp-w75p {
    width: 75% !important;
  }
  .sp-w80p {
    width: 80% !important;
  }
  .sp-w85p {
    width: 85% !important;
  }
  .sp-w90p {
    width: 90% !important;
  }
  .sp-w95p {
    width: 95% !important;
  }
  .sp-w100p {
    width: 100% !important;
  }
  .sp-wmax {
    width: 100% !important;
    height: auto !important;
  }
  /* sp flex */
  .sp-jc-s {
    justify-content: flex-start;
  }
  .sp-jc-c {
    justify-content: center;
  }
  .sp-jc-e {
    justify-content: flex-end;
  }
  .sp-ai-s {
    align-items: flex-start;
  }
  .sp-ai-c {
    align-items: center;
  }
  .sp-ai-e {
    align-items: flex-end;
  }
  /* /sp flex */
  /* sp-image */
  .sp-pinchout {
    position: relative;
  }
  .sp-pinchout::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: url(/assets/images/icn_pinchout.svg) no-repeat right 10px top 10px/82px auto;
    transition: all 0.3s ease;
  }
  .sp-pinchout.touched::after {
    opacity: 0;
    pointer-events: none;
  }
  /* /sp-image */
}