@charset "UTF-8";
/* ================================================
  変数をまとめるファイル
  ================================================ */
/* -----------------------------------------------
  @use 'variables' as var;　←ページ上部に追加

  [使用例]
  .button {
    color: var.$txt-dark-color;
  }
------------------------------------------------- */
/*--------------------------------------------------------------
  font-size vw変換
-------------------------------------------------------------- */
/* ================================================
  メディアクエリをまとめるファイル
  ================================================ */
/* -----------------------------------------------
  @use 'mix';　←ページ上部に追加

  [使用例]
  .button {
    padding: 8px;

    @include mix.sp {
      padding: 4px;
    }

    @include mix.pc {
      padding: 12px;
    }

    @include mix.hover {
      opacity: .7;
    }
  }
------------------------------------------------- */
/* new-label */
/* new-label */
/* top common start */
.top-h2 {
  margin-bottom: 40px;
  color: #273C4B;
  font-size: 3.2rem;
  font-weight: bold;
}

* + .top-h2 {
  margin-top: 40px;
}

/* top common end */
/* MV start */
.mv-section {
  padding: 48px 0;
  background: url(/img/top/top_mv_01.jpg) no-repeat center/cover;
}
@media screen and (max-width: 1080px) {
  .mv-section {
    padding: 35px 0;
    background: url(/img/top/top_mv_01_sp.jpg) no-repeat center/cover;
  }
}
.mv-section.ver-guest {
  background: url(/img/top/top_mv_guest.jpg) no-repeat center/cover;
}
.mv-section.ver-guest .banner-area-d {
  background-color: transparent;
  padding: 35px 0 0;
}
@media screen and (max-width: 1080px) {
  .mv-section.ver-guest .bg-vio {
    background-color: rgba(179, 190, 214, 0.5);
    margin-top: 35px;
    padding-bottom: 20px;
  }
}
.mv-section.ver-dr {
  background: url(/img/top/top_mv_guest_dr.jpg) no-repeat center/cover;
}

.mv-panel-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1080px) {
  .mv-panel-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.mv-panel-wrap .product-panel {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1080px) {
  .mv-panel-wrap .product-panel {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
}
.mv-panel-wrap .product-panel .ttl-bar {
  padding: 4px;
  color: #fff;
  border-radius: 7px;
  background-color: rgba(13, 58, 157, 0.88);
  text-align: center;
  font-size: 2.1rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.mv-panel-wrap .product-panel .col2-panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (max-width: 1080px) {
  .mv-panel-wrap .product-panel .col2-panel {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: unset;
        -ms-flex-positive: unset;
            flex-grow: unset;
  }
}
.mv-panel-wrap .product-panel .col2-panel > .col {
  border-radius: 10px;
}
.mv-panel-wrap .product-panel .col2-panel > .col.left-col {
  width: 298px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1080px) {
  .mv-panel-wrap .product-panel .col2-panel > .col.left-col {
    width: 100%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
.mv-panel-wrap .product-panel .col2-panel > .col.right-col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 1080px) {
  .mv-panel-wrap .product-panel .col2-panel > .col.right-col {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.mv-panel-wrap .product-panel .col2-panel > .col.tab-col {
  -webkit-filter: drop-shadow(5px 4px 10px rgba(0, 0, 0, 0.06));
          filter: drop-shadow(5px 4px 10px rgba(0, 0, 0, 0.06));
  height: calc(100% - 34px);
  background-color: #fff;
  margin-top: 34px;
  border-radius: 0 0 10px 10px;
}
.mv-panel-wrap .product-panel .col2-panel > .col.btn-col {
  background-color: #fff;
  padding: 20px;
  -webkit-box-shadow: 1px 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 1px 0 10px rgba(0, 0, 0, 0.2);
}
.mv-panel-wrap .btm-btn-wrap {
  padding: 20px 20px;
}
.mv-panel-wrap .product-list-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 28px;
  width: 100%;
  border: 1px solid #0D3A9D;
  color: #0D3A9D;
  position: relative;
}
.mv-panel-wrap .product-list-btn::after {
  background: url(/common/img/icn_arrow_blue.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 5px;
  height: 10px;
  margin-left: 4px;
  margin-top: -0.15em;
  position: absolute;
  right: 8px;
  top: calc(50% - 3px);
}
@media (any-hover: hover) {
  .mv-panel-wrap .product-list-btn:hover {
    opacity: 0.7;
  }
}
.mv-panel-wrap .product-logo-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.mv-panel-wrap .product-logo-list > li {
  width: calc(50% - 4px);
}
.mv-panel-wrap .product-logo-list > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (any-hover: hover) {
  .mv-panel-wrap .product-logo-list > li a:hover {
    opacity: 0.7;
  }
}
.mv-panel-wrap .product-logo-list > li a img {
  width: 100%;
}
.mv-panel-wrap .select-category-wrap {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
  color: #273C4B;
}
@media screen and (max-width: 1080px) {
  .mv-panel-wrap .select-category-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3px;
  }
}
.mv-panel-wrap .select-category-wrap .ttl {
  width: 40px;
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 1.3;
  border: 1px solid #E6E6E6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 1080px) {
  .mv-panel-wrap .select-category-wrap .ttl {
    width: 100%;
    border: none;
  }
}
.mv-panel-wrap .select-category-wrap .select-category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  gap: 2px;
}
.mv-panel-wrap .select-category-wrap .select-category-list > li {
  width: calc((100% - 6px) / 4);
}
@media screen and (max-width: 1080px) {
  .mv-panel-wrap .select-category-wrap .select-category-list > li {
    width: auto;
  }
}
.mv-panel-wrap .select-category-wrap .select-category-list > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  line-height: 1.13;
  font-size: 1.3rem;
  background-color: #F4F4F4;
  height: 33px;
}
.mv-panel-wrap .select-category-wrap .select-category-list > li a.cur {
  font-weight: bold;
  color: #0D3A9D;
  background-color: rgba(13, 58, 157, 0.15);
}
@media (any-hover: hover) {
  .mv-panel-wrap .select-category-wrap .select-category-list > li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1080px) {
  .mv-panel-wrap .select-category-wrap .select-category-list > li a {
    padding: 0 30px;
  }
}
.mv-panel-wrap .select-category-wrap.ver-guest {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 4px;
}
.mv-panel-wrap .select-category-wrap.ver-guest .ttl {
  width: 100%;
  border: none;
  text-align: center;
}
.mv-panel-wrap .select-category-wrap.ver-guest .ttl br {
  display: none;
}
.mv-panel-wrap .select-category-wrap.ver-guest .select-category-list > li a {
  color: #273C4B;
}
.mv-panel-wrap .select-category-wrap.ver-guest .select-category-list > li a.fz-sm {
  font-size: 1.1rem;
}
@media screen and (max-width: 1080px) {
  .mv-panel-wrap .select-category-wrap.ver-guest .select-category-list {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (1fr)[3];
    grid-template-columns: repeat(3, 1fr);
  }
  .mv-panel-wrap .select-category-wrap.ver-guest .select-category-list > li a {
    color: #273C4B;
    padding: 5.5px;
  }
}
.mv-panel-wrap .contact-panel {
  width: 240px;
  border-radius: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #283C7A;
  overflow: clip;
}
@media screen and (max-width: 1080px) {
  .mv-panel-wrap .contact-panel {
    width: 100%;
  }
}
.mv-panel-wrap .contact-panel .upper-box > .box-ttl {
  font-size: 1.7rem;
  font-weight: bold;
  padding: 13px;
  text-align: center;
  color: #fff;
}
.mv-panel-wrap .contact-panel .upper-box .counter-box {
  background-color: #fff;
  padding: 12px 20px;
}
.mv-panel-wrap .contact-panel .upper-box .counter-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 9px;
}
.mv-panel-wrap .contact-panel .upper-box .counter-info .img {
  width: 70px;
}
.mv-panel-wrap .contact-panel .upper-box .counter-info .info {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.3rem;
  color: #273C4B;
}
.mv-panel-wrap .contact-panel .upper-box .counter-info .info .info-ttl {
  color: #0F0F0F;
  margin-bottom: 7px;
}
.mv-panel-wrap .contact-panel .upper-box .counter-info .info .name {
  font-size: 1.5rem;
  font-weight: bold;
}
.mv-panel-wrap .contact-panel .upper-box .counter-btn {
  margin-top: 11px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 26px;
  border-radius: 26px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  background-color: #E60012;
}
@media (any-hover: hover) {
  .mv-panel-wrap .contact-panel .upper-box .counter-btn:hover {
    opacity: 0.7;
  }
}
.mv-panel-wrap .contact-panel .lower-box {
  background-color: #283C7A;
  padding: 18px 20px;
}
.mv-panel-wrap .contact-panel .lower-box .btns-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
.mv-panel-wrap .contact-panel .lower-box .btns-list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 2px 12px 2px 35px;
  border-radius: 7px;
  background: #fff url(/img/top/icn_top_mv_arrow.svg) no-repeat 12px center/10px auto;
  font-size: 1.3rem;
  line-height: 1.3846153846;
  font-weight: bold;
  color: #0D3A9D;
  min-height: 43px;
}
@media (any-hover: hover) {
  .mv-panel-wrap .contact-panel .lower-box .btns-list a:hover {
    opacity: 0.7;
  }
}

.search-bar {
  max-width: 560px;
  margin: 35px auto 0;
}
@media screen and (max-width: 1080px) {
  .search-bar {
    display: none;
  }
}

/* MV end */
/* important notice start */
.important-notice-section {
  background-color: #FFFCF3;
  padding: 18px 0;
}
@media screen and (max-width: 1080px) {
  .important-notice-section {
    padding: 10px 0;
  }
}
.important-notice-section_site {
  background-color: rgba(154, 173, 186, 0.2509803922);
  padding: 8px 0;
}
@media screen and (max-width: 1080px) {
  .important-notice-section_site {
    padding-bottom: 17px;
  }
}
.important-notice-section_site .important-notice-wrap .wrap-ttl {
  padding: 8px 0;
  color: #0D3A9D;
}
@media screen and (max-width: 1080px) {
  .important-notice-section_site .important-notice-wrap .wrap-ttl {
    text-align: center;
  }
}

.important-notice-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
@media screen and (max-width: 1080px) {
  .important-notice-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 8px;
  }
}
.important-notice-wrap .wrap-ttl {
  font-size: 1.6rem;
  font-weight: bold;
  color: #E60012;
  text-align: center;
  padding: 0 20px;
  width: 200px;
}
@media screen and (max-width: 1080px) {
  .important-notice-wrap .wrap-ttl {
    width: 100%;
  }
}
.important-notice-wrap .news-list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media screen and (max-width: 1080px) {
  .important-notice-wrap .news-list {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
  }
}

/* important notice end */
/* web lecture start */
.web-lecture-section {
  padding-top: 67px;
  padding-bottom: 60px;
}
@media screen and (max-width: 1080px) {
  .web-lecture-section {
    padding-top: 30px;
    padding-bottom: 0;
  }
  .web-lecture-section.sub-color-section {
    padding-bottom: 40px;
  }
}

/* web lecture end */
/* related contents start */
.related-contents-section {
  padding-top: 67px;
}

.sort-labels-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.sort-labels-btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-width: 90px;
  padding: 5px;
  background-color: #BDBDBD;
  color: #fff;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 20px;
  border: 1px solid #E8EEF3;
  -webkit-box-shadow: 1px 2px 3px 0px rgba(90, 90, 90, 0.25);
          box-shadow: 1px 2px 3px 0px rgba(90, 90, 90, 0.25);
}
@media screen and (max-width: 1080px) {
  .sort-labels-btn {
    font-size: 1.6rem;
    padding: 9px 24px;
    border-radius: 40px;
  }
}
@media (any-hover: hover) {
  .sort-labels-btn:hover {
    color: #fff;
    background-color: #0D3A9D;
    -webkit-box-decoration-break: #0D3A9D;
            box-decoration-break: #0D3A9D;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
.sort-labels-btn.active {
  color: #fff;
  background-color: #0D3A9D;
  -webkit-box-decoration-break: #0D3A9D;
          box-decoration-break: #0D3A9D;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.sort-labels-btn.disabled {
  background-color: #BDBDBD;
  color: #fff;
  pointer-events: none;
}

.related-panel-list .item {
  width: 380px;
  display: inline-block;
}
@media screen and (max-width: 1080px) {
  .related-panel-list {
    gap: 0;
  }
  .related-panel-list .item {
    width: 100%;
  }
  .related-panel-list.splide {
    padding-bottom: 0;
  }
  .related-panel-list .splide__arrow {
    bottom: -10px;
  }
}

.related-panel {
  display: block;
  border-radius: 20px;
  overflow: clip;
  border: 1px solid rgba(168, 168, 168, 0.5);
  -webkit-box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 5px 8px 0px rgba(0, 0, 0, 0.2);
  color: #273C4B;
  position: relative;
}
@media (any-hover: hover) {
  .related-panel:hover {
    opacity: 0.7;
  }
}
.related-panel.locked {
  pointer-events: none !important;
}
.related-panel.locked::after {
  background: url(/common/img/icn_lock.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 34px;
  height: 34px;
  margin-left: 4px;
  margin-top: -0.15em;
  position: absolute;
  border-radius: 34px;
  right: 15px;
  top: 12px;
  margin: 0;
  -webkit-box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.13);
          box-shadow: 2px 2px 6px 0px rgba(0, 0, 0, 0.13);
  z-index: 2;
}
.related-panel .panel-img img {
  width: 100%;
}
.related-panel .panel-txt-wrap {
  padding: 15px 15px 30px;
  background-color: #F0F0F0;
}
.related-panel .panel-ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 15px;
}
@media screen and (max-width: 1080px) {
  .related-panel .panel-ttl {
    font-size: 2rem;
  }
}
.related-panel .panel-txt {
  font-size: 1.6rem;
  line-height: 1.1875;
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 2.4em;
}

.related-tag-list {
  margin: 12px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.related-tag-list > li {
  padding: 3px 7px;
  border-radius: 3px;
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.2307692308;
  color: #0F0F0F;
  border: 1px solid #0F0F0F;
}

/* related contents end */
/* news start */
.news-section {
  padding-top: 90px;
  padding-bottom: 50px;
}
.news-section .top-h2 {
  margin-bottom: 40px;
}
.news-section .arrow-link-wrap {
  margin-top: 25px;
}

/* news end */
/* banner erea D start */
.banner-area-d {
  padding: 50px 0;
}
@media screen and (max-width: 1080px) {
  .banner-area-d {
    padding: 20px 0;
  }
}
.banner-area-d .order-btn-wrap {
  margin-top: 14px;
}
.banner-area-d .order-btn-wrap .order-btn {
  display: block;
  width: 278px;
  margin: 0 auto;
}
@media (any-hover: hover) {
  .banner-area-d .order-btn-wrap .order-btn:hover {
    opacity: 0.7;
  }
}

.info-banner-type-d {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 14px;
}
@media screen and (max-width: 1080px) {
  .info-banner-type-d {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.info-banner-type-d > .item {
  width: calc((100% - 28px) / 3);
}
@media screen and (max-width: 1080px) {
  .info-banner-type-d > .item {
    width: 100%;
  }
}
.info-banner-type-d > .item a {
  color: #273C4B;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.01em;
  line-height: 1.2;
  padding: 29px 38px 29px 27px;
  background-color: #F9F9F9;
  border: 1px solid #D0D0D0;
  min-height: 82px;
  border-radius: 2px;
  -webkit-box-shadow: 0px 2px 2px 0 rgba(89, 99, 107, 0.11);
          box-shadow: 0px 2px 2px 0 rgba(89, 99, 107, 0.11);
  position: relative;
}
@media (any-hover: hover) {
  .info-banner-type-d > .item a:hover {
    background-color: rgba(154, 173, 186, 0.5);
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .info-banner-type-d > .item a:hover::after {
    background: url(/common/img/icn_arrow_white.svg);
    -webkit-transform: translate(2px, -50%);
            transform: translate(2px, -50%);
  }
}
.info-banner-type-d > .item a::after {
  background: url(/common/img/icn_arrow.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 14px;
  margin-left: 4px;
  margin-top: -0.15em;
  margin: 0 !important;
  position: absolute;
  right: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.info-banner-type-d > .item a[target=_blank]::after {
  background: url(/common/img/icn_external.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  margin-left: 4px;
  margin-top: -0.15em;
  margin: 0;
}
.info-banner-type-d > .item a[href*=".pdf"]::after {
  background: url(/common/img/icn_pdf.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 28px;
  height: 14px;
  margin-left: 4px;
  margin-top: -0.15em;
  margin: 0;
}
.info-banner-type-d > .item a.no-arr::after {
  display: none !important;
}

/* banner erea D end */
/* banner erea A start */
.banner-area-a {
  padding: 50px 0;
  background-color: #FAFAFB;
}
@media screen and (max-width: 1080px) {
  .banner-area-a {
    padding: 20px 0;
  }
}
.banner-area-a .long-btn-wrap {
  width: 670px;
  max-width: 100%;
  margin: 26px auto;
}
.banner-area-a .long-btn-wrap:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1080px) {
  .banner-area-a .long-btn-wrap {
    margin: 14px 0 0;
    width: 100%;
  }
}
.banner-area-a .long-btn-wrap .long-btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  border-radius: 7px;
  padding: 0 20px;
  background: #1D4396;
  min-height: 70px;
  position: relative;
}
.banner-area-a .long-btn-wrap .long-btn::after {
  background: url(/common/img/icn_arrow.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 14px;
  margin-left: 4px;
  margin-top: -0.15em;
  margin: 0 !important;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (any-hover: hover) {
  .banner-area-a .long-btn-wrap .long-btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1080px) {
  .banner-area-a .long-btn-wrap .long-btn {
    min-height: 100px;
  }
}

.info-banner-type-a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  gap: 17px;
}
@media screen and (max-width: 1080px) {
  .info-banner-type-a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.info-banner-type-a > .item {
  width: calc((100% - 34px) / 3);
}
@media screen and (max-width: 1080px) {
  .info-banner-type-a > .item {
    width: 100%;
  }
}
.info-banner-type-a > .item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.3;
  color: #0D3A9D;
  padding: 12px 48px 12px 16px;
  background-color: rgba(13, 58, 157, 0.08);
  border: 1px solid #C6D0E7;
  min-height: 64px;
  border-radius: 5px;
  position: relative;
}
@media (any-hover: hover) {
  .info-banner-type-a > .item a:hover {
    opacity: 0.7;
  }
}
.info-banner-type-a > .item a::after {
  background: url(/common/img/icn_arrow_dark.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 6px;
  height: 13px;
  margin-left: 4px;
  margin-top: -0.15em;
  margin: 0 !important;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.info-banner-type-a > .item a[target=_blank]::after {
  background: url(/common/img/icn_external.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 14px;
  height: 14px;
  margin-left: 4px;
  margin-top: -0.15em;
}
.info-banner-type-a > .item a[href*=".pdf"]::after {
  background: url(/common/img/icn_pdf.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 28px;
  height: 14px;
  margin-left: 4px;
  margin-top: -0.15em;
}
.info-banner-type-a > .item a.icn-lg[href*=".pdf"]::after {
  background: url(/common/img/icn_pdf_lg.svg) no-repeat center center/contain;
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 44px;
  height: 18px;
  margin-left: 4px;
  margin-top: -0.15em;
}

/* banner erea A end */
/* banner erea B start */
.info-banner-type-b {
  padding: 56px 0;
}

.info-banner-type-b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 55px;
}
@media screen and (max-width: 1080px) {
  .info-banner-type-b {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}
.info-banner-type-b > .item {
  width: 224px;
}
.info-banner-type-b > .item a {
  display: block;
}
@media (any-hover: hover) {
  .info-banner-type-b > .item a:hover {
    opacity: 0.7;
  }
}

/* banner erea B end */
/* banner erea C start */
.banner-area-c {
  padding: 25px 0 30px;
}
@media screen and (max-width: 1080px) {
  .banner-area-c .inner-wrap {
    padding: 0;
  }
}

.top-banner-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 930px;
  margin: 0 auto;
  max-width: 100%;
}
@media screen and (max-width: 1080px) {
  .top-banner-slider {
    width: calc(100% - 66px);
  }
}
.top-banner-slider .item {
  width: auto;
}
.top-banner-slider .item a {
  display: block;
  height: 55px;
}
.top-banner-slider .item a img {
  height: 100%;
  width: auto;
  display: block;
}
.top-banner-slider .splide__arrow {
  width: 18px;
  height: 44px;
  background: rgba(179, 181, 183, 0.13);
  border-radius: 0;
}
.top-banner-slider .splide__arrow svg {
  fill: #C4C4C4;
  width: 12px;
}
.top-banner-slider .splide__arrow--prev {
  left: -58px;
}
@media screen and (max-width: 1080px) {
  .top-banner-slider .splide__arrow--prev {
    left: -18px;
  }
}
.top-banner-slider .splide__arrow--next {
  right: -58px;
}
@media screen and (max-width: 1080px) {
  .top-banner-slider .splide__arrow--next {
    right: -18px;
  }
}

/* banner erea C end */
/* promote section start */
.promote-section {
  background-color: #E60012;
  color: #fff;
}
.promote-section .promote-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (max-width: 1080px) {
  .promote-section .promote-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.promote-section .promote-wrap .promote-img {
  width: 300px;
}
@media screen and (max-width: 1080px) {
  .promote-section .promote-wrap .promote-img {
    width: calc(100% + 20px);
    margin: 0 -10px;
  }
}
.promote-section .promote-wrap .promote-img img {
  width: 100%;
}
.promote-section .promote-wrap .promote-txt-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 18px 0;
}
.promote-section .promote-wrap .promote-txt-box .txt-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-left: 4px solid #fff;
  padding-left: 22px;
}
.promote-section .promote-wrap .promote-txt-box .txt-box .ttl {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.promote-section .promote-wrap .promote-txt-box .txt-box .txt {
  font-size: 1.5rem;
  font-weight: 500;
}
.promote-section .promote-wrap .promote-txt-box .btn-box {
  width: 210px;
  margin-left: 40px;
}
@media screen and (max-width: 1080px) {
  .promote-section .promote-wrap .promote-txt-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 30px 40px;
  }
  .promote-section .promote-wrap .promote-txt-box .txt-box {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    border-left: none;
    padding-left: 0;
  }
  .promote-section .promote-wrap .promote-txt-box .btn-box {
    margin: 30px 0 0;
    width: 100%;
  }
}
.promote-section .promote-wrap .promote-btn {
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  border: 2px solid #fff;
  border-radius: 14px;
}
@media screen and (max-width: 1080px) {
  .promote-section .promote-wrap .promote-btn {
    width: 270px;
    min-height: 65px;
    border-radius: 65px;
    margin: 0 auto;
  }
}
@media (any-hover: hover) {
  .promote-section .promote-wrap .promote-btn:hover {
    background-color: #fff;
    color: #E60012;
  }
}

/* promote section end */
/*==========================================================================================================
hover
==========================================================================================================*/
/*==========================================================================================================
PC Only
==========================================================================================================*/
/*==========================================================================================================
SP Only
==========================================================================================================*/