﻿@charset "UTF-8";

/* -----------------------------------------------------------
	幅
------------------------------------------------------------ */
.wrapper {
   max-width: 1000px;
   width: 100%;
   margin: 0 auto;
}

@media screen and (max-width:767px) {
   .wrapper {
      width: 90%;
   }
}


/* -----------------------------------------------------------
	カラム
------------------------------------------------------------ */
.sec_clm2 {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
}

.sec_clm2_item {
   width: calc((100% - 30px) / 2);
}

@media screen and (min-width:767px) {
   .sec_clm2_item:nth-child(n + 3) {
      margin-top: 60px;
   }
}

@media screen and (max-width:767px) {
   .sec_clm2_item {
      width: 100%;
   }
   .sec_clm2_item:nth-child(n + 2) {
      margin-top: 60px;
   }
}


/* -----------------------------------------------------------
	タイトル
------------------------------------------------------------ */
.tit_bg {
   width: 750px;
   max-width: 100%;
   margin: 80px auto 40px;
   padding: 5px 20px;
   background-color: #009bdc;
   color: #fff;
   border-radius: 50px;
   text-align: center;
   font-size: 2.4rem;
   font-weight: bold;
}

@media screen and (max-width:767px) {
   .tit_bg {
      width: 100%;
      margin: 40px auto 20px;
      font-size: 1.8rem;
   }
}

/* -----------------------------------------------------------
	MV
------------------------------------------------------------ */
.sec_mv {
   max-width: 1000px;
   width: 100%;
   margin: 0 auto;
   padding-bottom: 60px;
}

.sec_mv_box {
   position: relative;
   background-color: #fff;
}

.sec_mv_box::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 30px;
    right: 30px;
    z-index: -1;
    border-radius: 120px / 60px;
    box-shadow: 0 25px 30px rgba(0, 0, 0, .15);
}

.sec_mv_tit {
   font-size: 4.8rem;
   font-weight: bold;
}

.sec_mv_titEn {
   display: block;
   font-size: 2.4rem;
   margin-bottom: 20px;
}

.sec_mv_lead {
   max-width: 486px;
   padding-top: 30px;
}

.sec_mv_name {
   font-size: 2.4rem;
   font-weight: bold;
   padding-top: 40px;
}

.sec_mv_nameSmall {
   display: block;
   font-size: 1.8rem;
}

@media screen and (min-width:768px) {
   .sec_mv_box {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 60px;
   }
   .sec_mv_img {
      position: absolute;
      padding: 30px 0;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
   }

   /* message */
   .message .sec_mv_img {
      top: auto;
      bottom: 0;
      transform: none;
      padding-bottom: 0;
   }
}

@media screen and (max-width:767px) {
   .sec_mv {
      padding-bottom: 20px;
   }
   
   .sec_mv_box::after {
      left: 0;
      right: 0;
      border-radius: 80px / 30px;
      box-shadow: 0 15px 30px rgba(0, 0, 0, .15);
   }

   .sec_mv_img {
      max-width: 260px;
      margin-left: auto;
   }
   
   .sec_mv_tit {
      width: 100%;
      font-size: 2.8rem;
      padding: 30px 20px;
   }
   
   .sec_mv_titEn {
      font-size: 1.8rem;
      margin-bottom: 10px;
   }

   .sec_mv_lead {
      width: 100%;
      padding: 30px 20px;
   }
   
   .sec_mv_name {
      font-size: 2rem;
      margin-top: 0;
      padding: 20px;
      bottom: 0;
   }
   
   .sec_mv_nameSmall {
      display: block;
      font-size: 1.6rem;
   }

   /* business */
   .business .sec_mv_img {
      margin: 0 auto;
   }

   /* message */
   .message .sec_mv_img {
      margin: 0;
      max-width: none;
   }
   .message .sec_mv_img img {
    width: 100%;
   }
}


/* -----------------------------------------------------------
	img + テキスト
------------------------------------------------------------ */
.sec_clmBox_tit {
   text-align: center;
   font-weight: bold;
   margin-bottom: 40px;
}

.sec_clmBox_titSmall {
   display: block;
   font-size: 2.2rem;
   font-family: 'Montserrat', sans-serif;
}

.sec_clmBox_titBig {
   display: block;
   font-size: 3.6rem;
   color: #5B98D2;
}

.sec_clmBox_cont {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
}

.sec_clmBox:nth-child(even) .sec_clmBox_cont {
   flex-direction: row-reverse;
}

.sec_clmBox_img {
   width: 50%;
}

.sec_clmBox_body {
   width: calc(50% - 60px);
}

.sec_clmBox_bodyTit {
   font-size: 2.6rem;
   font-weight: bold;
   line-height: 1.6;
   margin: 0 0 20px 0;
}

@media screen and (min-width:768px) {
   .sec_clmBox:nth-child(n + 2) {
      margin-top: 120px;
   }
}

@media screen and (max-width:767px) {
   .sec_clmBox {
      margin-top: 40px;
   }
   
   .sec_clmBox_tit {
      margin-bottom: 20px;
   }
   
   .sec_clmBox_titSmall {
      font-size: 1.6rem;
   }
   
   .sec_clmBox_titBig {
      font-size: 2.6rem;
   }

   .sec_clmBox_bodyTit {
      font-size: 1.8rem;
      margin: 25px 0 15px;
   }

   .sec_clmBox_img,
   .sec_clmBox_body {
      width: 100%;
   }
}

/* -----------------------------------------------------------
	ハイチャート
------------------------------------------------------------ */
.sec_chart {
   margin-top: 120px;
}

.sec_chart_tit {
   font-weight: bold;
   text-align: center;
   margin-bottom: 40px;
}

.sec_chart_cnt {
  height: 200px;
}

@media screen and (max-width:767px) {
   .sec_chart {
      margin-top: 60px;
   }

   .sec_chart_tit {
      margin-bottom: 20px;
   }

  .sec_chart_cnt {
    height: 150px;
  }
}

/* highlight */
.top_common_tit {
   position: relative;
   margin-top: 80px;
   margin-bottom: 40px;
}
.top_common_tit-ja {
   width: 100%;
   display: flex;
   align-items: center;
   color: #597ABB;
   font-size: 3.8rem;
   line-height: 1.4;
   font-weight: 700;
}

.top_highlight_point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 767px) {
  .top_highlight_point {
    display: block;
  }
}
.top_highlight_point_left {
  min-width: 140px;
  background-color: #EEECE0;
  margin-right: 40px;
  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;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_highlight_point_left {
    margin: 0;
    width: 100%;
    padding: 15px;
  }
}
.top_highlight_point_left::after {
  content: "";
  width: 28px;
  height: 16px;
  background: #EEECE0;
  position: absolute;
  right: -20px;
  bottom: 0;
  top: 0;
  margin: auto;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
@media screen and (max-width: 767px) {
  .top_highlight_point_left::after {
    display: none;
  }
}
.top_highlight_point_left_txt {
  font-size: 2rem;
  font-weight: 700;
  color: #EE7432;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .top_highlight_point_left_txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 360px) {
  .top_highlight_point_left_txt {
    font-size: 0.9090909091rem;
  }
}
.top_highlight_point_right_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 12px 0;
}
.top_highlight_point_right_item:nth-child(n+2) {
  border-top: #EEECE0 solid 1px;
}
.top_highlight_point_right_num {
  font-size: 2.2rem;
  color: #EE7432;
  font-weight: 700;
  min-width: 30px;
}
@media screen and (max-width: 767px) {
  .top_highlight_point_right_num {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 360px) {
  .top_highlight_point_right_num {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .top_highlight_point_right_num {
    font-size: 1.375rem;
    min-width: 25px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .top_highlight_point_right_num {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
  .top_highlight_point_right_num {
    font-size: 1rem;
  }
}
.top_highlight_point_right_txt {
  margin-top: 2px;
  line-height: 1.6;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .top_highlight_point_right_txt {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 360px) {
  .top_highlight_point_right_txt {
    font-size: 0.8181818182rem;
  }
}
@media screen and (max-width: 767px) {
  .top_highlight_point_right_txt {
    margin-top: 0;
    font-size: 14px;
  }
}
@media screen and (min-width: 768px), print {
  .top_highlight_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    row-gap: 20px;
    margin-top: 40px;
  }
}
@media screen and (min-width: 768px), print {
  .top_highlight_item {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .top_highlight_item + .top_highlight_item {
    margin-top: 30px;
  }
}
.top_highlight_item-head {
  background: #dfeaf5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
  padding: 8px 40px 10px;
  margin-bottom: 40px;

  &.wide {
    min-height: 62px;

    @media screen and (max-width: 767px) {
      min-height: auto;
    }

  }
}
@media screen and (max-width: 767px) {
  .top_highlight_item-head {
    margin-bottom: 25px;
  }
}
.top_highlight_item-head--blue {
  background: #FFF0F0;
}
.top_highlight_item-tit {
  line-height: 1;
  font-size: 2.2rem;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .top_highlight_item-tit {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 360px) {
  .top_highlight_item-tit {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .top_highlight_item-tit {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .top_highlight_item-tit {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
  .top_highlight_item-tit {
    font-size: 0.8181818182rem;
  }
}
.top_highlight_item-caption {
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .top_highlight_item-caption {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 360px) {
  .top_highlight_item-caption {
    font-size: 0.6363636364rem;
  }
}
.top_highlight_item-column {
  height: 330px;
}
@media screen and (max-width: 767px) {
  .top_highlight_item-column {
    height: 250px;
  }
}
.top_highlight_segment {
  background: #FFF;
  margin: 85px auto 0;
  position: relative;
  padding: 30px 0 0;
}
@media screen and (max-width: 767px) {
  .top_highlight_segment {
    margin-top: 50px;
    padding: 15px 0 25px;
  }
}
.top_highlight_segment::before {
  content: "";
  width: 46px;
  height: 27px;
  position: absolute;
  left: 0;
  right: 0;
  top: -26px;
  margin: auto;
  background: #FFF;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
}
@media screen and (max-width: 767px) {
  .top_highlight_segment::before {
    width: 25px;
    height: 10px;
    top: -9px;
  }
}
.top_highlight_segment-wrap {
  width: calc(100% - 30px);
  margin: 0 auto;
}
@media screen and (min-width: 768px), print {
  .top_highlight_segment-wrap {
    width: calc(100% - 80px);
  }
}
.top_highlight_segment-tit {
  font-size: 1.375rem;
  line-height: 1.2;
  font-weight: 700;
  border-bottom: #333 solid 1px;
  padding-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .top_highlight_segment-tit {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 360px) {
  .top_highlight_segment-tit {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .top_highlight_segment-tit {
    font-size: 1.0625rem;
    padding-bottom: 10px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .top_highlight_segment-tit {
    font-size: 0.85rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
  .top_highlight_segment-tit {
    font-size: 0.7727272727rem;
  }
}
.top_highlight_segment-main {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .top_highlight_segment-main {
    padding: 30px 0 0;
    position: relative;
    z-index: 2;
  }
}
.top_highlight_segment-block {
  background: #FFF0F0;
  clip-path: polygon(0 0, 100% 0, 92% 100%, 0% 100%);
  width: calc(100% - 15px);
  padding: 15px 23px;
}
@media screen and (min-width: 768px), print {
  .top_highlight_segment-block {
    width: 956px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 32px 0 32px 40px;
  }
}
.top_highlight_segment-txt {
  font-weight: 700;
  line-height: 1.2;
}
.top_highlight_segment-txt01 {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top_highlight_segment-txt01 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 360px) {
  .top_highlight_segment-txt01 {
    font-size: 1.0909090909rem;
  }
}
@media screen and (max-width: 767px) {
  .top_highlight_segment-txt01 {
    font-size: 1.0625rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .top_highlight_segment-txt01 {
    font-size: 0.85rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
  .top_highlight_segment-txt01 {
    font-size: 0.7727272727rem;
  }
}
.top_highlight_segment-txt01--01 {
  font-size: 2.125rem;
}
@media screen and (max-width: 767px) {
  .top_highlight_segment-txt01--01 {
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 360px) {
  .top_highlight_segment-txt01--01 {
    font-size: 1.5454545455rem;
  }
}
@media screen and (max-width: 767px) {
  .top_highlight_segment-txt01--01 {
    font-size: 1.625rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .top_highlight_segment-txt01--01 {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
  .top_highlight_segment-txt01--01 {
    font-size: 1.1818181818rem;
  }
}
.top_highlight_segment-txt02 {
  font-size: 1rem;
  margin: 0 10px 0 50px;
}
@media screen and (max-width: 767px) {
  .top_highlight_segment-txt02 {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 360px) {
  .top_highlight_segment-txt02 {
    font-size: 0.7272727273rem;
  }
}
@media screen and (max-width: 767px) {
  .top_highlight_segment-txt02 {
    margin: 12px 0 0;
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .top_highlight_segment-txt02 {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
  .top_highlight_segment-txt02 {
    font-size: 0.6818181818rem;
  }
}
.top_highlight_segment-txt03 {
  font-size: 1.125rem;
  margin-left: 40px;
}
@media screen and (max-width: 767px) {
  .top_highlight_segment-txt03 {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 360px) {
  .top_highlight_segment-txt03 {
    font-size: 0.8181818182rem;
  }
}
@media screen and (max-width: 767px) {
  .top_highlight_segment-txt03 {
    margin: 12px 10px 0 0;
    font-size: 1rem;
    display: inline-block;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .top_highlight_segment-txt03 {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
  .top_highlight_segment-txt03 {
    font-size: 0.7272727273rem;
  }
}
.top_highlight_segment-txt03--01 {
  font-size: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .top_highlight_segment-txt03--01 {
    font-size: 1.45rem;
  }
}
@media screen and (max-width: 360px) {
  .top_highlight_segment-txt03--01 {
    font-size: 1.3181818182rem;
  }
}
@media screen and (max-width: 767px) {
  .top_highlight_segment-txt03--01 {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .top_highlight_segment-txt03--01 {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
  .top_highlight_segment-txt03--01 {
    font-size: 1.0909090909rem;
  }
}
.top_highlight_segment-inner {
  width: calc(100% - 140px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top_highlight_segment-inner {
    width: calc(100% - 42px);
  }
}
.top_highlight_segment-pie {
  height: 500px;
}
@media screen and (max-width: 767px) {
  .top_highlight_segment-pie {
    height: 300px;
  }
}
.top_highlight_numList {
  background: #FFF0F0;
  padding: 23px 10px 23px 34px;
  margin-top: 18px;
}
@media screen and (min-width: 768px), print {
  .top_highlight_numList {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 30px 34px;
    margin-top: 30px;
  }
}
.top_highlight_numList-item {
  font-size: 0.75rem;
  font-weight: 700;
  counter-increment: listNum;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .top_highlight_numList-item {
    font-size: 0.6rem;
  }
}
@media screen and (max-width: 360px) {
  .top_highlight_numList-item {
    font-size: 0.5454545455rem;
  }
}
@media screen and (max-width: 767px) {
  .top_highlight_numList-item {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .top_highlight_numList-item {
    font-size: 0.7rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
  .top_highlight_numList-item {
    font-size: 0.6363636364rem;
  }
}
@media screen and (max-width: 767px) {
  .top_highlight_numList-item + .top_highlight_numList-item {
    margin-top: 10px;
  }
}
.top_highlight_numList-item::before {
  content: "0" counter(listNum);
  display: inline-block;
  vertical-align: -2px;
  color: #EEECE0;
  font-size: 1.1875rem;
  margin-right: 3px;
}
@media screen and (max-width: 767px) {
  .top_highlight_numList-item::before {
    font-size: 0.95rem;
  }
}
@media screen and (max-width: 360px) {
  .top_highlight_numList-item::before {
    font-size: 0.8636363636rem;
  }
}
@media screen and (max-width: 767px) {
  .top_highlight_numList-item::before {
    font-size: 1.3125rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .top_highlight_numList-item::before {
    font-size: 1.05rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
  .top_highlight_numList-item::before {
    font-size: 0.9545454545rem;
  }
}
.top_highlight_block {
  background-color: #C4D2EF;
  padding: 30px;
  max-width: 600px;
  margin-top: 80px;
}
.top_highlight_block .top_highlight_item-head {
  background-color: #fff;
}
.top_highlight_block .top_highlight_item-main {
  background-color: #fff;
  padding: 15px;
}
.top_highlight_block .top_highlight_item {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .top_highlight_block {
    padding: 15px;
    margin-top: 40px;
  }
}
.top_highlight_block-list01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 15px;
  margin-bottom: 30px;
  gap: 12px;
  counter-reset: count 0;
  list-style: none;
  line-height: 1.4;
}
.top_highlight_block-list01 > li {
  padding-left: 20px;
  position: relative;
  text-align: left;
}
.top_highlight_block-list01 > li::before {
  content: counter(count) ".";
  counter-increment: count 1;
  position: absolute;
  left: 0;
  top: 0;
  color: #597ABB;
}
@media screen and (max-width: 767px) {
  .top_highlight_block-list01 {
    padding: 10px;
    margin-bottom: 15px;
    font-size: 11px;
  }
}
.top_highlight_block-list02 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 9.8039215686% 1fr 1fr 1fr;
  grid-template-columns: 9.8039215686% 1fr 1fr 1fr;
  border: 1px solid;
  margin-top: 30px;
  line-height: 1.4;
}
.top_highlight_block-list02 > li {
  text-align: center;
  border-right: 1px solid;
  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;
  padding: 10px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.top_highlight_block-list02 > li:last-child {
  border-right: none;
}
@media screen and (max-width: 767px) {
  .top_highlight_block-list02 {
    margin-top: 15px;
    font-size: 11px;
  }
  .top_highlight_block-list02 > li {
    padding: 6px;
  }
}
.top_highlight_block-ttl {
  font-size: 1.8rem;
  font-weight: 700;
  text-align: left;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .top_highlight_block-ttl {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 360px) {
  .top_highlight_block-ttl {
    font-size: 0.8181818182rem;
  }
}
.top_highlight_txt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 15px;
  margin-bottom: 10px;
  padding-left: 40px;
  line-height: 1;

  @media screen and (max-width: 767px) {
    padding-left: 0;
    margin-left: 20px;
  }
}
.top_highlight_txt span {
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.top_highlight_txt span:nth-child(1) {
  padding-left: 20px;
}
.top_highlight_txt span:nth-child(1)::before {
  content: "";
  width: 17px;
  height: 17px;
  background-color: #92C6EC;
  position: absolute;
  left: 0;
  top: 0;
}
.top_highlight_txt span:nth-child(2) {
  padding-left: 35px;
}
.top_highlight_txt span:nth-child(2)::before {
  content: "";
  width: 17px;
  height: 17px;
  background-color: #0058A8;
  position: absolute;
  left: 0;
  top: 0;
}
.top_highlight_txt span:nth-child(2)::after {
  content: "";
  width: 15px;
  height: 15px;
  border: 1px #92C6EC dashed;
  background-color: #fff;
  position: absolute;
  left: 15px;
  top: 0;
}
.top_highlight_txt02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  gap: 15px;
  margin-bottom: 30px;
  line-height: 1;
}
.top_highlight_txt02 span {
  display: inline-block;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.top_highlight_txt02 span:nth-child(1) {
  padding-left: 20px;
}
.top_highlight_txt02 span:nth-child(1)::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #92C6EC;
  position: absolute;
  left: 0;
  top: 0;
}
.top_highlight_txt02 span:nth-child(2) {
  padding-left: 35px;
}
.top_highlight_txt02 span:nth-child(2)::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #0058A8;
  position: absolute;
  left: 0;
  top: 0;
}
.top_highlight_txt02 span:nth-child(2)::after {
  content: "";
  width: 15px;
  height: 15px;
  border: 1px #0058A8 dashed;
  background-color: #fff;
  position: absolute;
  left: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 0;
}
@media screen and (max-width: 767px) {
  .top_highlight_txt02 {
    font-size: 14px;
  }
}
/* /highlight */

/* business */
.top_back_contents {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 80px;
}
@media screen and (max-width: 767px) {
  .top_back_contents {
    gap: 40px;
  }
}
.top_back_item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  line-height: 1.6;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .top_back_item {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 360px) {
  .top_back_item {
    font-size: 0.8181818182rem;
  }
}
@media screen and (max-width: 767px) {
  .top_back_item {
    gap: 10px;
    font-size: 14px;
  }
}
.top_back_item-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.top_back_item-tag {
  display: inline-block;
  padding: 5px 10px;
  line-height: 1;
  font-weight: 500;
}
.top_back_item-tag.tag01 {
  background-color: #FDEADB;
}
.top_back_item-tag.tag02 {
  background-color: #EE7432;
  color: #fff;
}
.top_back_item-tag.tag03 {
  background-color: #833C0D;
}
.top_back_item-tag.tag04 {
  color: #fff;
  background-color: #A5A4A4;
}
@media screen and (max-width: 767px) {
  .top_back_item-tag {
    padding: 5px;
    font-size: 11px;
  }
}
.top_back_item-ttl {
  font-weight: 700;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .top_back_item-ttl {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 360px) {
  .top_back_item-ttl {
    font-size: 1.0909090909rem;
  }
}
.top_back_item-ttl::before {
  content: "●";
  color: #EE7432;
  display: inline-block;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .top_back_item-ttl {
    font-size: 16px;
  }
}
.top_back_item-subttl {
  font-weight: 700;
  font-size: 1.25rem;
}
@media screen and (max-width: 767px) {
  .top_back_item-subttl {
    font-size: 1rem;
  }
}
@media screen and (max-width: 360px) {
  .top_back_item-subttl {
    font-size: 0.9090909091rem;
  }
}
@media screen and (max-width: 767px) {
  .top_back_item-subttl {
    font-size: 14px;
  }
}
.top_back_item-img img {
  height: auto;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .top_back_item-img {
    max-width: 100%;
  }
}
.top_back_item a {
  color: #fff;
  text-decoration: none;
}

.top_common_btn {
  max-width: 680px;
  margin-inline: auto;
}
.top_common_btn--large {
  max-width: 800px;
}
@media screen and (max-width: 767px) {
  .top_common_btn {
    max-width: 86%;
  }
}
@media screen and (max-width: 767px) {
  .top_common_btn--mini {
    max-width: 170px;
  }
}
.top_common_btn > a {
  align-items: center;
  background: #0058A8;
  color: #fff;
  display: flex;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  justify-content: center;
  text-align: center;
  padding: 30px 40px;
  clip-path: polygon(6% 0%, 100% 0%, 94% 100%, 0% 100%);
  transition: all 0.2s ease-out;
  border: #0058A8 solid 4px;
}
@media screen and (max-width: 767px) {
  .top_common_btn > a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 360px) {
  .top_common_btn > a {
    font-size: 0.9090909091rem;
  }
}
@media screen and (max-width: 767px) {
  .top_common_btn > a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    font-size: 0.75rem;
    padding: 10px 20px;
    row-gap: 8px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .top_common_btn > a {
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
  .top_common_btn > a {
    font-size: 0.5454545455rem;
  }
}
.top_common_btn > a:hover {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  background: #fff;
  color: #0058A8;
}
.top_common_btn > a:hover .top_common_btn-inner::after {
  background-color: #0058A8;
}
.top_common_btn-inner {
  display: block;
  padding-right: 38px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_common_btn-inner {
    padding-right: 19px;
  }
}
.top_common_btn-inner::after {
  content: "";
  width: 10px;
  height: 18px;
  background: #FFF;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .top_common_btn-inner::after {
    width: 6px;
    height: 10px;
  }
}
.top_common_btn-caption {
  display: block;
  font-size: 1.25rem;
  font-weight: 400;
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .top_common_btn-caption {
    font-size: 1rem;
  }
}
@media screen and (max-width: 360px) {
  .top_common_btn-caption {
    font-size: 0.9090909091rem;
  }
}
@media screen and (max-width: 767px) {
  .top_common_btn-caption {
    font-size: 0.625rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .top_common_btn-caption {
    font-size: 0.5rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 360px) {
  .top_common_btn-caption {
    font-size: 0.4545454545rem;
  }
}
.top_back_item-subttl {
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .top_back_item-subttl {
    font-size: 1rem;
  }
}
@media screen and (max-width: 360px) {
  .top_back_item-subttl {
    font-size: 0.9090909091rem;
  }
}
@media screen and (max-width: 767px) {
  .top_back_item-subttl {
    font-size: 14px;
  }
}
.top_back_table {
  border-collapse: collapse;
}
.top_back_table th,
.top_back_table td {
  border: 1px solid #fff;
  padding: 12px 24px;
}
.top_back_table tr:nth-of-type(2n+1) th,
.top_back_table tr:nth-of-type(2n+1) td {
  background-color: #C4d2ef;
}
.top_back_table tr:nth-of-type(2n) th,
.top_back_table tr:nth-of-type(2n) td {
  background-color: #f2f2f2;
}
/* /business */

/* topics */
.top_topics, .top_topics2 {
  padding: 90px 0;
}
.top_topics {
  position: relative;
  background: url(/9640/202512/a/assets/img/topics/bg_01.png) repeat-y top /cover;
  overflow: hidden;
  z-index: 0;
}
.top_topics::before {
  content: "";
  position: absolute;
  top: 4%;
  right: 0;
  width: 461px;
  height: 2244px;
  background: url(/9640/202512/a/assets/img/topics/bg_02.png) repeat-y top /cover;
  z-index: -1;
}
.top_topics::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 461px;
  height: 2244px;
  background: url(/9640/202512/a/assets/img/topics/bg_03.png) repeat-y top /cover;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .top_topics, .top_topics2 {
    padding: 40px 0;
  }
}
.top_topics_wrap, .top_topics2_wrap {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .top_topics_wrap, .top_topics2_wrap {
    width: calc(100% - 35px);
  }
}
.top_topics_item, .top_topics2_item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
  line-height: 1.6;
  font-size: 1.8rem;
}
@media screen and (max-width: 767px) {
  .top_topics_item, .top_topics2_item {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 360px) {
  .top_topics_item, .top_topics2_item {
    font-size: 0.8181818182rem;
  }
}
@media screen and (max-width: 767px) {
  .top_topics_item, .top_topics2_item {
    font-size: 14px;
    gap: 10px;
  }
}
.top_topics_item-tags, .top_topics2_item-tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.top_topics_item-tag, .top_topics2_item-tag {
  display: inline-block;
  padding: 5px 10px;
  line-height: 1;
  font-weight: 500;
}
.top_topics_item-tag.tag01, .top_topics2_item-tag.tag01 {
  background-color: #FDEADB;
}
.top_topics_item-tag.tag02, .top_topics2_item-tag.tag02 {
  background-color: #EE7432;
  color: #fff;
}
.top_topics_item-tag.tag03, .top_topics2_item-tag.tag03 {
  background-color: #833C0D;
  color: #fff;
}
.top_topics_item-tag.tag04, .top_topics2_item-tag.tag04 {
  background-color: #A5A4A4;
  color: #fff;
}
.top_topics_item-tag.tag05, .top_topics2_item-tag.tag05 {
  background-color: #597ABB;
  color: #fff;
}
.top_topics_item-tag.tag06, .top_topics2_item-tag.tag06 {
  background-color: #77933C;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top_topics_item-tag, .top_topics2_item-tag {
    padding: 5px;
  }
}
.top_topics_item-ttl, .top_topics2_item-ttl {
  font-weight: 700;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  .top_topics_item-ttl, .top_topics2_item-ttl {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 360px) {
  .top_topics_item-ttl, .top_topics2_item-ttl {
    font-size: 1.0909090909rem;
  }
}
.top_topics_item-ttl sup, .top_topics2_item-ttl sup {
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  .top_topics_item-ttl sup, .top_topics2_item-ttl sup {
    font-size: 0.9rem;
  }
}
@media screen and (max-width: 360px) {
  .top_topics_item-ttl sup, .top_topics2_item-ttl sup {
    font-size: 0.8181818182rem;
  }
}
@media screen and (max-width: 767px) {
  .top_topics_item-ttl, .top_topics2_item-ttl {
    font-size: 16px;
  }
  .top_topics_item-ttl sup, .top_topics2_item-ttl sup {
    font-size: 11px;
  }
}
.top_topics_item-img, .top_topics2_item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  max-width: 600px;
  margin-inline: auto;
}
.top_topics_item-img.w-full {
  max-width: none;
}
.top_topics_item-img a, .top_topics2_item-img a {
  display: block;
}
.top_topics_item-img img, .top_topics2_item-img img {
  max-width: 100%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .top_topics_item-img, .top_topics2_item-img {
    max-width: 100%;
  }
}
.top_topics_item-flex, .top_topics2_item-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px), print {
  .top_topics_item-flex, .top_topics2_item-flex {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  .top_topics_item-flex, .top_topics2_item-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 10px;
  }
}
.top_topics_item-flex-text, .top_topics2_item-flex-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px), print {
  .top_topics_item-flex-text, .top_topics2_item-flex-text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    row-gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top_topics_item-flex-text, .top_topics2_item-flex-text {
    row-gap: 10px;
  }
}
@media screen and (min-width: 768px), print {
  .top_topics_item-flex-image, .top_topics2_item-flex-image {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 400px;
  }
}
.top_topics_item-flex-image a, .top_topics2_item-flex-image a {
  display: block;
}
@media screen and (min-width: 768px), print {
  .top_topics_item-flex-image a, .top_topics2_item-flex-image a {
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
  }
  .top_topics_item-flex-image a:hover, .top_topics2_item-flex-image a:hover {
    opacity: 0.7;
  }
}
.top_topics_item-links, .top_topics2_item-links {
  padding: 30px;
  border-radius: 16px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .top_topics_item-links, .top_topics2_item-links {
    padding: 15px;
  }
}
.top_topics_item-links > div, .top_topics2_item-links > div {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 20px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .top_topics_item-links > div, .top_topics2_item-links > div {
    gap: 10px;
  }
}
.top_topics_item-links > div a, .top_topics2_item-links > div a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #597ABB;
  -webkit-column-gap: 6px;
     -moz-column-gap: 6px;
          column-gap: 6px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.top_topics_item-links > div a:before, .top_topics2_item-links > div a:before {
  background: #597ABB;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  content: "";
  display: block;
  height: 12px;
  width: 12px;
}
@media screen and (min-width: 768px), print {
  .top_topics_item-links > div a:hover, .top_topics2_item-links > div a:hover {
    text-decoration: underline;
  }
}
.top_topics_item > p > a, .top_topics2_item > p > a {
  color: #0058A8;
  text-decoration: underline;
}
@media screen and (min-width: 768px), print {
  .top_topics_item > p > a:hover, .top_topics2_item > p > a:hover {
    text-decoration: none;
  }
}
.qa_box {
  overflow: hidden;
  margin-top: 12px;
  padding: 25px 32px 50px;
  background-color: #fff;
}
.qa_box .qa_ttl {
  margin-bottom: 15px;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  color: #002d65;
}
@media screen and (max-width: 767px) {
  .qa_box .qa_ttl {
    font-size: 1rem;
  }
}
.qa_box .qa_table_wrap {
  overflow-x: scroll;
}
.qa_box .qa_table {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .qa_box .qa_table {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .qa_box .qa_table {
    width: 800px;
  }
}
.qa_box .qa_table thead th {
  padding: 9px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  line-height: 1;
}
.qa_box .qa_table colgroup col:nth-child(1) {
  width: 339px;
}
.qa_box .qa_table thead th:nth-child(1) {
  background-color: #0058a8;
}
.qa_box .qa_table thead th:nth-child(2) {
  color: #002d65;
  background-color: #cceafb;
}
.qa_box .qa_table tbody th,
.qa_box .qa_table tbody td {
  padding: 19px 12px;
}
.qa_box .qa_table tbody th {
  position: relative;
}
.qa_box .qa_table tbody th::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -4px;
  width: 10px;
  height: 14px;
  background-color: #ee7432;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
}

.qa_box .qa_table tbody tr + tr {
  border-top: 1px solid #eeece0;
}
.qa_box .qa_table tbody tr:last-child {
  border-bottom: 1px solid #eeece0;
}
/* /topics */

.business_img_list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: center;
}
@media screen and (max-width:767px) {
  .business_img_list {
    grid-template-columns: 1fr;
  }
}
.normal_img_link {
  transition: opacity .6s ease;
}
@media screen and (min-width:768px) {
  .normal_img_link:hover {
    opacity: .6;
  }
}
.normal_link {
  color: #0058A8;
  text-decoration: underline;
}
@media screen and (min-width:768px) {
  .normal_link:hover {
    text-decoration: none;
  }
}