@charset "UTF-8";

/*--------------------------------------------

ユーザーサポート

------------------------------------------------*/
/*---------------------------------
* utility
---------------------------------*/


html {
  font-size: 62.5%;
  /*16px×62.5%=10px*/
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  min-width: 1090px;
  color: #222222;
  background: #fff !important;
}

img {
  max-width: 100%;
  -webkit-backface-visibility: hidden;
}

a {
  color: #222222;
  text-decoration: none;
  transition: all .3s linear;
}

.wrapper {
  max-width: 1090px;
  margin: 0 auto;
  background: transparent !important;
}

.breadcrumb .wrapper {
  text-align: left;
}

.sp-display {
  display: none;
}

.pc-display {
  display: block;
}

.sp-inlineBlock {
  display: none;
}

.box_shadow {
  box-shadow: 8px 8px 15px 4px rgb(0 0 0 / 8%);
}

.text_grn {
  color: #1D8E76;
  font-weight: 700;
}

.text_sm {
  font-size: 14px;
  font-weight: 700;
}

.text_wh {
  color: #fff;
  font-weight: 700;
}

.text_red {
  color: #CC0000;
}

/*---------------------------------
* common
---------------------------------*/

.breadcrumb {
  margin: 13px 0 60px;
}

.breadcrumb span {
  font-size: 12px;
}

.breadcrumb span a:hover {
  text-decoration: underline;
}

.arrow01::after {
  content: "";
  width: 6.77px;
  height: 6.77px;
  border-top: 3px solid #222222;
  border-right: 3px solid #222222;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  display: inline-block;
}

.arrow02::before {
  content: "";
  width: 6.77px;
  height: 6.77px;
  border-top: 3px solid #222222;
  border-right: 3px solid #222222;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  display: inline-block;
  margin-right: 20px;
}

.pagetop_cont {
  padding-top: 89px;
}

.admin-bar .pagetop_cont {
  padding-top: 57px;
}

.gry_bg {
  background-color: #F7F7F7;
}

.text_bold {
  font-weight: 700;
}

/*---------------------------------
* header
---------------------------------*/

#header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;

}

@media screen and (min-width:769px) {
  #header {
    min-width: 1090px;
  }
}

.header_wrap01 {
  height: 52px;
  background-color: #fff;
}

.header_wrap01 ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header_logo img {
  width: 92px;
  margin-left: 8px;
}

.header_nav01 {
  display: flex;
  height: 100%;
}

.header_nav_link01 {
  font-size: 11px;
  margin-right: 25px;
}

.header_nav_link01 a {
  display: flex;
  align-items: center;
}

.header_nav_link01 a::before {
  display: inline-block;
  content: '';
  width: 4px;
  height: 4px;
  background-color: #1D8E76;
  margin-right: 10px;
}

.header_nav_link01 a:hover span {
  text-decoration: underline;
}

.header_nav_link02 {
  margin-right: 20px;
}

.header_nav_link02 a {
  display: inline-block;
  color: #1D8E76;
  font-weight: 500;
  border: 1px solid #1D8E76;
  border-radius: 25px;
  height: 25px;
  line-height: 25px;
  padding: 0 13px;
  font-size: 10px;
  letter-spacing: 0.1em;
}

.header_nav_link02 a:hover {
  background-color: #1D8E76;
  color: #fff;
}

.header_nav_link03 {
  height: 100%;
  width: 154px;
}

.header_nav_link03 a {
  color: #fff;
  font-size: 11px;
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.contact_btn a {
  background-color: #1D8E76;
  border: 1px solid #1D8E76;
  box-sizing: border-box;
}

.contact_btn a::before {
  content: '';
  background-image: url(../img/common/mail_icon01.png);
  width: 10.36px;
  height: 8.35px;
  background-size: cover;
  display: inline-block;
  margin-right: 11px;
}

.contact_btn a:hover {
  background-color: #fff;
  color: #1D8E76;
}

.contact_btn a:hover::before {
  background-image: url(../img/common/mail_icon01_gr.png);
  background-size: cover;
}

.header_wrap02 {
  background-color: #F4F4F4;
  height: 37px;
  display: flex;
  align-items: center;
}

.header_wrap02 .wrapper {
  height: 100%;
}

.header_wrap02 ul {
  display: flex;
  align-items: center;
  height: 100%;
}

.header_wrap02 ul li {
  height: 100%;
}

.header_wrap02 ul li a {
  font-size: 13px;
  margin-right: 26px;
  height: 100%;
  display: flex;
  align-items: center;
  position: relative;
  font-weight: 500;
  white-space: nowrap;
}

.header_wrap02 ul li:last-of-type a {
  margin-right: 0;
}

.header_wrap02 ul li a:hover {
  color: #1D8E76 !important;
}

.header_wrap02 ul li a:hover::after {
  content: '';
  display: block;
  height: 3px;
  width: 100%;
  background-color: #1D8E76;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 1080px) {

  body {
    min-width: 1366px;
    margin: 0 auto;
  }

  .header_wrap02 ul li a {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {

  /*---------------------------------
  * utility
  ---------------------------------*/

  body {
    min-width: initial;
    /* 初期値 */
    min-width: 100%;
  }

  .wrapper {
    width: calc(100% - 40px) !important;
    margin: 0 auto;
  }

  .sp-display {
    display: block;
  }

  .pc-display {
    display: none;
  }

  .sp-inlineBlock {
    display: inline-block;
  }

  /*---------------------------------
  * common
  ---------------------------------*/

  .arrow02::before {
    margin-right: 5px;
  }

  .pagetop_cont {
    padding-top: 52.5px;
  }

  .sm_wrapper {
    width: 100%;
    margin-bottom: 50px;
  }

  /*---------------------------------
  * header
  ---------------------------------*/

  .header_sp {
    padding: 8px 15px;
    background-color: #fff;
  }

  .header_sp ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .header_sp_menu img {
    width: 22px;
  }

  .header_sp .header_logo img {
    width: 73px;
    margin-left: 0;
  }
}

/*---------------------------------
* footer
---------------------------------*/

.footer_inner {
  background-color: #F4F4F4;
  padding: 30px 0 48px;
  text-align: left;
}

.footer_nav {
  display: flex;
  justify-content: space-between;
}

.footer_nav_cont01 img {
  width: 92px;
}

.footer_nav_cont02 {
  margin-top: 7.5px;
}

.footer_nav_cont02 ul {
  display: flex;
}

.footer_nav_cont02 ul li {
  margin-right: 45px;
}

.footer_nav_cont02 ul li:last-of-type {
  margin-right: 0;
}

.footer_nav_cont02 ul li a {
  display: block;
}

.footer_nav_cont02Inner {
  margin-bottom: 20px;
}

.footer_nav_link01 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.footer_nav_link01::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #1D8E76;
  margin-right: 10px;
}

.footer_nav_link02 {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.08em;
  padding-left: 40px;
  margin-bottom: 11px;
}

.footer_nav_cont02 ul li>div:last-of-type {
  margin-bottom: 0;
}

.footer_nav_cont02Inner a:last-of-type {
  margin-bottom: 0;
}

.ftnavi-lv2 {
  padding-left: 20px;
}

.ftnavi-lv2 li a::before {
  content: url("../img/common/ft-list-arrow.svg");
  position: relative;
  left: -15px;
  top: 0;
}

.ftnavi-lv2 li {
  padding-left: 10px;
}

.ftnavi-lv2 li a {
  font-size: 12px;
  font-weight: 500;
  display: inline-block;
  margin-bottom: 13px;
  text-indent: -5px;
  line-height: 1.5;
}

.ftnavi-lv3 li {
  padding-left: 0 !important;
}

.ftnavi-lv3 li a::before {
  display: none !important;
}


.ftnavi-lv3 a {
  font-size: 11px !important;
  font-weight: 300 !important;
  text-indent: 0 !important;
}

.ftnavi-lv4 li {
  padding-left: 10px !important;
}

.ftnavi-lv4 li a {
  display: flex;
}

.ftnavi-lv4 li a::before {
  content: "-";
  margin-right: 0.5em;
  display: inline-block !important;
  left: 0 !important;


}

.ftlogo {
  margin-bottom: 36px;
  display: block;
}

.ftlogo img {
  width: 92px;
  margin-bottom: 13px;
  display: block;
}

.ftlogo span {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #1D8E76;
}

.footer_nav_cont {
  display: flex;
  flex-direction: column;
  position: relative;
}

.footer_nav_cont:last-child {
  width: 179px;
}

.footer_nav_cont:last-child ul {
  margin-bottom: 39px;
}

.footer_nav_cont:last-child ul:last-child {
  display: flex;
  flex-direction: column;
}

.footer_nav_cont:last-child ul:last-child li:last-child {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
}

.footer_nav_cont:last-child ul:last-child li:last-child ul {
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 0;
}

.footer_nav_cont:last-child ul:last-child li:last-child ul li {
  position: static;
  width: auto;
}

.footer_nav_cont:last-child ul:last-child li:last-child ul li a:h .footer_nav_cont02Inner a {
  display: flex;
  align-items: center;
}

.footer_nav_link01::before {
  font-size: 0px;
}

.ft-linkbtn a {
  display: flex;
  text-align: center;
  line-height: 1.5;
  width: 100%;
  height: 45px;
  max-width: 179px;
  border: 1px solid #1D8E76;
  background: transparent;
  font-size: 12px;
  font-weight: bold;
  align-items: center;
  justify-content: center;
}

.ft-linkbtn a:hover {
  background: #1D8E76;
  color: #fff;
}

.copyright {
  text-align: center;
  padding: 92px 0 0;
  font-size: 10px;
  font-weight: 300;
}

@media screen and (max-width: 767px) {
  .footer_nav {
    flex-direction: column;
  }

  .footer_nav_cont02 {
    margin-top: 30px;
  }

  .footer_nav_cont02 ul {
    flex-direction: column;
  }

  .footer_nav_cont02 ul li {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .footer_nav_link01 {
    margin-bottom: 20px;
  }

  .footer_nav_link02 {
    margin-bottom: 20px;
  }

  .footer_nav_cont02Inner {
    margin-bottom: 30px;
  }

  .footer_nav_cont02 ul li:first-of-type {
    margin-bottom: 30px;
  }

  .footer_nav_cont:last-child {
    width: 100%;
  }

  .ft-linkbtn {
    text-align: center;
  }

  .ft-linkbtn a {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-right: auto;
    margin-left: auto;

  }

  .footer_nav_cont:last-child ul:last-child li:last-child {
    position: static;
  }

  .footer_nav_cont:last-child ul:last-child li:last-child ul {
    justify-content: center;

  }

  .footer_nav_cont:last-child ul:last-child li:last-child ul li {
    margin: 20px 10px 0;
  }

  .copyright {
    padding: 0;
  }

  .footer_nav_cont:nth-child(n+2) {
    margin-bottom: 30px;
  }

  .ftlogo img {
    margin: 0 auto 13px;
  }

  .ftlogo span {
    text-align: center;
  }

}

/*---------------------------------
* top メインビジュアル
---------------------------------*/

.usersupport .pagetop_cont {
  padding-top: 89px;
}

.usersupport .support_top_mv {
  background: url(../img/support/mv-img.png),
    linear-gradient(to right, #baf7e7, #bedbfd);
  background-size: 50%, 100%;
  background-position: right center, left 0;
  background-repeat: no-repeat;
  padding: 90px 3% 120px 6.5%;
  margin-bottom: 60px;
}

.usersupport .support_top_mv_text01 {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 700;
  margin-top: 35px;
}

.usersupport .support_top_mv h1 {
  font-size: 36px;
  line-height: 1.66;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .usersupport .support_top_mv {
    padding: 30px 50px 200px;
    background-size: 85%, 100%;
    background-position: center bottom 0, left 0;
  }

  .usersupport .support_top_mv_text01 {
    font-size: 14px;
    text-align: center;
  }

  .usersupport .support_top_mv h1 {
    font-size: 28px;
    text-align: center;
    margin-top: 10px;
  }

  .usersupport .pagetop_cont {
    padding-top: 52.5px;
  }
}

/*---------------------------------
* アコーディオンパネル
---------------------------------*/

.support_accordion {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto 30px;
}

.support_accordion_panel {
  width: calc((100% - 40px) / 2);
  height: 180px;
  margin: 20px 0 30px;
  padding: 40px 70px;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 15px;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s linear;
}

.support_accordion_panel:hover {
  transform: scale(1.05);
}

.support_accordion_panel::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 35px;
  height: 1.5px;
  width: 13px;
  background: #222;
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}

.support_accordion_panel::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 35px;
  height: 1.5px;
  width: 13px;
  background: #222;
  transition: all 0.3s ease-in-out;
}

.support_accordion_panel.open:before {
  transform: rotate(180deg);
}

.support_accordion_panel.open:after {
  opacity: 0;
}

.support_accordion_panel_cellTitle01,
.support_accordion_panel_cellTitle02,
.support_accordion_panel_cellTitle03,
.support_accordion_panel_cellTitle04,
.support_accordion_panel_cellTitle05 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #1d8e76;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.65;
  padding-left: 30px;
}

.support_accordion_panel_cellTitle01::before {
  content: "";
  position: absolute;
  left: -5px;
  background-image: url(../img/support/icon_img05.png);
  width: 87px;
  height: 87px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.support_accordion_panel_cellTitle02::before {
  content: "";
  position: absolute;
  left: -5px;
  background-image: url(../img/support/icon_img01.png);
  width: 87px;
  height: 87px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.support_accordion_panel_cellTitle03::before {
  content: "";
  position: absolute;
  left: -5px;
  background-image: url(../img/support/icon_img02.png);
  width: 87px;
  height: 87px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.support_accordion_panel_cellTitle04::before {
  content: "";
  position: absolute;
  left: -5px;
  background-image: url(../img/support/icon_img03.png);
  width: 87px;
  height: 87px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.support_accordion_panel_cellTitle05::before {
  content: "";
  position: absolute;
  left: -5px;
  background-image: url(../img/support/icon_img04.png);
  width: 87px;
  height: 87px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}

.support_accordion_panel_list_wrap {
  display: none;
  width: 100%;
  max-width: 1090px;
  border: 1px solid #ddd;
  background: #fff;
  padding: 40px 60px 25px;
  box-sizing: border-box;
}

.support_accordion_panel_list {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.65;
}

.support_accordion_panel_item_wrap {
  flex: 1;
}

.support_accordion_panel_item_wrap:first-child {
  margin-right: 50px;
}

.support_accordion_panel_item {
  position: relative;
  margin-bottom: 15px;
}

.support_accordion_panel_itemLink {
  font-size: 18px;
  font-weight: 700;
}

.support_accordion_panel_itemLink::before {
  content: "";
  position: absolute;
  top: 11px;
  left: -15px;
  background-color: #1d8e76;
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.support_accordion_panel_itemLink:hover {
  text-decoration: underline;
}

.support_accordion_panel:nth-of-type(1) {
  order: 1;
}

.support_accordion_panel:nth-of-type(3) {
  order: 2;
}

.support_accordion_panel:nth-of-type(5) {
  order: 5;
}

.support_accordion_panel:nth-of-type(7) {
  order: 6;
}

.support_accordion_panel:nth-of-type(9) {
  order: 9;
}

.support_accordion_panel_list_wrap:nth-of-type(2) {
  order: 3;
}

.support_accordion_panel_list_wrap:nth-of-type(4) {
  order: 4;
}

.support_accordion_panel_list_wrap:nth-of-type(6) {
  order: 7;
}

.support_accordion_panel_list_wrap:nth-of-type(8) {
  order: 8;
}

.support_accordion_panel_list_wrap:nth-of-type(10) {
  order: 10;
}

@media screen and (max-width: 768px) {
  .support_accordion {
    flex-direction: column;
  }

  .support_accordion_panel {
    width: 100%;
    height: 150px;
    margin: 15px 0;
    padding: 40px;
  }

  .support_accordion_panel_list_wrap {
    max-width: none;
    padding: 30px 25px 15px 40px;
  }

  .support_accordion_panel_list {
    flex-direction: column;
  }

  .support_accordion_panel_item_wrap:first-child {
    margin-right: 0;
  }

  .support_accordion_panel:nth-of-type(3) {
    order: 3;
  }

  .support_accordion_panel:nth-of-type(7) {
    order: 7;
  }

  .support_accordion_panel_list_wrap:nth-of-type(2) {
    order: 2;
  }

  .support_accordion_panel_list_wrap:nth-of-type(6) {
    order: 6;
  }

  .support_accordion_panel_cellTitle01,
  .support_accordion_panel_cellTitle02,
  .support_accordion_panel_cellTitle03,
  .support_accordion_panel_cellTitle04 {
    font-size: 18px;
  }

  .support_accordion_panel_cellTitle01::before {
    width: 55px;
    height: 55px;
  }

  .support_accordion_panel_cellTitle02::before {
    width: 55px;
    height: 55px;
  }

  .support_accordion_panel_cellTitle03::before {
    width: 55px;
    height: 55px;
  }

  .support_accordion_panel_cellTitle04::before {
    width: 55px;
    height: 55px;
  }

  .support_accordion_panel_cellTitle05::before {
    width: 55px;
    height: 55px;
  }

  .support_accordion_panel_itemLink {
    font-size: 16px;
  }
}

/*---------------------------------
* ページ下部リンク
---------------------------------*/

.footer_link_wrap {
  padding: 70px 0 75px;
}

@media screen and (max-width: 768px) {
  .footer_link_wrap {
    padding: 40px 0 45px;
  }
}

/*---------------------------------
* お問い合わせ
---------------------------------*/

.flow_tittle_wrap {
  text-align: center;
  padding: 50px 0;
}

.flow_tittle {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  color: #1D8E76;
}

.flow_design07 {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.87;
  margin-bottom: 100px;
}

.flow07 {
  padding-left: 0;
  width: 100%;
  max-width: 1090px;
  list-style: none;
  margin: 0;
}

.flow07>li {
  display: flex;
  border: 1px solid #ccc;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.flow07>li:not(:last-child) {
  margin: 0 0 100px;
  position: relative;
}

.flow07>li:not(:last-child)::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #1D8E76;
  z-index: 1;
}

.flow07>li .icon07 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 130px;
  min-width: 130px;
  box-sizing: border-box;
  font-weight: bold;
  color: #FFF;
  background: #1D8E76;
  line-height: 1.5;
  position: relative;
  padding: 10px;
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}

.flow07>li .icon07::after {
  display: none;
}

.flow07>li dl {
  padding: 30px 25px;
  flex-grow: 1;
}

.flow07>li dl dt {
  padding: 0 0 5px;
  margin: 0 0 15px;
  font-size: 1.2em;
  font-weight: bold;
  border-bottom: 4px solid #CCCCCC;
  position: relative;
}

.flow07>li dl dt::after {
  content: '';
  width: 20%;
  height: 4px;
  position: absolute;
  bottom: -4px;
  left: 0;
  background-color: #1D8E76;
}

.flow07>li dl dd {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .flow_tittle_wrap {
    padding: 30px 0;
  }

  .flow_tittle {
    font-size: 24px;
  }

  .flow07>li {
    flex-direction: column;
  }

  .flow07>li .icon07 {
    width: 100%;
    padding: 15px 0;
    border-top-right-radius: 8px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 0px;
  }

  .flow07>li:not(:last-child) {
    margin-bottom: 60px;
  }

  .flow07>li:not(:last-child)::after {
    bottom: -35px;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #1D8E76;
  }
}


/*---------------------------------
* フロー図
---------------------------------*/
.sub-flow__title {
  text-align: center;
  font-size: 1.7em;
  font-weight: bold;
  color: #1D8E76;
  margin-bottom: 40px;
}

.sub-flow__list {
  list-style: none;
  padding: 0;
  position: relative;
  width: 75%;
  margin: 0 auto 100px;
}

.sub-flow__item {
  position: relative;
  margin-bottom: 50px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
  text-align: center;
  line-height: 1.87;
}

.sub-flow__item a {
  color: #16715E;
  text-decoration: underline;
}

.sub-flow__item a:hover {
  text-decoration: none;
}

.sub-flow__icon-box {
  display: inline-block;
  font-weight: bold;
  padding: 5px 40px;
  border-radius: 9999px;
  margin-bottom: 15px;
  color: #fff;
}

.sub-flow__icon-box--gaio {
  background-color: #1D8E76;
}

.sub-flow__icon-box--customer {
  background-color: #FF8C00;
}

.sub-flow__item::after {
  content: '↓';
  position: absolute;
  left: 50%;
  bottom: -50px;
  transform: translateX(-50%);
  font-size: 2.5em;
  color: #1D8E76;
  font-weight: bold;
}

.sub-flow__item:nth-child(even)::after {
  color: #FF8C00;
}

.sub-flow__text {
  font-size: 1em;
  color: #333;
  font-weight: 500;
}

.sub-flow__subtext {
  font-size: 0.8em;
  color: #666;
  margin-top: 5px;
}

@media (max-width: 768px) {
  .sub-flow__container {
    padding: 0 10px;
  }

  .sub-flow__title {
    font-size: 1.5em;
    margin-bottom: 30px;
  }

  .sub-flow__list {
    width: 90%;
  }

  .sub-flow__list::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .sub-flow__item {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
  }
}

/*---------------------------------
* 検索
---------------------------------*/

.faq-search-form {
  display: flex;
  margin-bottom: 50px;
}

.faq-search-form label {
  flex: 1;
}

.faq-search-form .search-field {
  width: 100%;
  padding: 0 20px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
  height: 60px;
  box-sizing: border-box;
}


.faq-search-form .search-submit {
  padding: 8px 16px;
  background-color: #1D8E76;
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
}

.faq-search-form .search-submit img {
  display: block;
  width: 24px;
  height: 24px;
  margin: auto;
}

.faq-search-form .search-submit:hover {
  background-color: #16715E;
}

.search_results_contents {
  margin-bottom: 75px;
}

.search_results_contents .search_results_wrap h2 {
  font-size: 25px;
  font-weight: bold;
  margin-bottom: 10px;
  line-height: 1.65;
}

.search_results_contents .search_results_wrap .search_results_sub {
  font-size: 18px;
  margin-bottom: 30px;
}

/* 各検索結果項目を囲むボックスのスタイル */
.faq-results-container .faq-result-item {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #fff;
}

.faq-result-item h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.65;
}

.faq-result-item h3 a {
  color: #1D8E76;
  text-decoration: none;
}

.faq-result-item h3 a:hover {
  text-decoration: underline;
}

/* 詳細部分のスタイル */
.faq-result-item p {
  font-size: 16px;
  line-height: 1.65;
  color: #333;
  margin: 0;
}

/* ページネーションのスタイル */
.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 120px;
  flex-wrap: wrap;

}

.nav-links a,
.nav-links span {
  display: flex;
  padding: 0 15px;
  height: 45px;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  margin: 5px;
  border: 1px solid #000;

}

.nav-links span.current,
.nav-links a:hover {
  background: #000;
  color: #fff;
}

/*---------------------------------
* csv読み込み
---------------------------------*/
.usersupport .csv_content h2 {
  font-size: 23px;
  font-weight: bold;
  line-height: 1.65;
  padding-left: 18px;
  border-left: 3px solid #1D8E76;
  margin-bottom: 50px;
  text-align: left;
  color: #222;
  padding-bottom: 0;
}

.usersupport .csv_content .csv_day {
  margin: 0 0 15px;
  font-weight: bold;
}

.usersupport .csv_content .csv_title {
  margin: 0 0 15px;
  font-weight: bold;
}

.usersupport .csv_content .csv_table {
  font-size: 14px;
  table-layout: fixed;
  word-wrap: break-word;
  margin: 0 auto 65px;
  width: 1090px;
  border-top: 1px solid #c6c6c6;
  border-left: 1px solid #c6c6c6;
}

.usersupport .csv_content .csv_table th,
.usersupport .csv_content .csv_table td {
  border-right: 1px solid #c6c6c6;
  border-bottom: 1px solid #c6c6c6;
  box-sizing: border-box;
}

.usersupport .csv_content .csv_table th {
  font-weight: bold;
  vertical-align: middle;
  text-align: center;
  padding: 17px 10px;
  line-height: 1.7;
  color: #fff;
  background-color: #1D8E76;
}

.usersupport .csv_content .csv_table td {
  padding: 17px 10px;
  line-height: 1.7;
  vertical-align: middle;
}

.usersupport .csv_content .csv_table td:nth-of-type(-n+7) {
  text-align: center;
}

col:nth-child(7) {
  width: 7%;
}

.usersupport .csv_content .csv_table th {
  position: relative;
}

.usersupport .csv_content .csv_table th button::before,
.usersupport .csv_content .csv_table th button::after {
  content: "";
  height: 8px;
  width: 8px;
  position: absolute;
  border-top: 2px #f2f2f2 solid;
  border-right: 2px #f2f2f2 solid;
  right: 10px;
  top: 50%;
}

.usersupport .csv_content .csv_table th button::before {
  transform: translateY(-9px) rotate(-45deg);
}

.usersupport .csv_content .csv_table th button::after {
  transform: translateY(0px) rotate(135deg);
}

.usersupport .csv_content button {
  font-family: 'Noto Sans JP', sans-serif;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

.usersupport .csv_content .sort-button_top {
  padding-bottom: 45px;
}

.usersupport .csv_content .sort-button {
  margin-bottom: 20px;
}

.usersupport .csv_content .sort-button .sort_title {
  font-size: 16px;
  font-weight: bold;
  margin: 25px 0 10px;
  padding-bottom: 10px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  border-bottom: 1px solid #22304F;
}

.usersupport .csv_content .sort-button button {
  margin-right: 15px;
  font-weight: bold;
}

.usersupport .csv_content .sort-button button:hover {
  text-decoration: underline;
  color: #1D8E76;
}

.usersupport .csv_content pre {
  padding: 0 8px 8px;
  background: #f2f2f2;
  line-height: 1
}

.usersupport .csv_content .indent_txt {
  padding-bottom: 20px;
  text-indent: -1em;
  padding-left: 1em;
  display: inline-block;
}

.usersupport .csv_content .gray1 {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.usersupport .csv_content table td a {
  color: #1D8E76;
  text-decoration: underline;
}

.usersupport .csv_content table td a:hover {
  text-decoration: none;
}