@charset "UTF-8";
/* =============================================
Common
============================================= */
.lfp_container {
  padding-bottom: 80px;
}

.sp_only {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp_only {
    display: block;
  }
}

.flex_start {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex_between {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* =============================================
Text
============================================= */
.remark_top {
  margin: 0 auto 40px;
  padding-left: 1em;
  position: relative;
  font-size: 14px;
  line-height: 1.4em;
}
.remark_top::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "※";
  display: inline-block;
}

.my_notice {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .my_notice {
    font-size: 10px;
  }
}

/* =============================================
Title
============================================= */
#mypage .sec_page_ttl {
  max-width: 100%;
  padding: 30px 0;
  margin-bottom: 50px;
  background: #f3f5f6;
}
#mypage .sec_page_ttl .container {
  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;
}
#mypage .sec_page_ttl .page_ttl {
  width: auto;
  font-size: 24px;
  text-align: left;
  margin-bottom: 0;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  #mypage .sec_page_ttl .page_ttl {
    font-size: 18px;
  }
}
#mypage .sec_page_ttl .page_ttl:after {
  content: none;
}
#mypage .sec_page_ttl .usericon_mypage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#mypage .sec_page_ttl .usericon_mypage i {
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 768px) {
  #mypage .sec_page_ttl .usericon_mypage i {
    width: 30px;
    height: 30px;
  }
}
#mypage .sec_page_ttl .usericon_mypage i .st0 {
  fill: #3f3f3f;
}
#mypage .sec_page_ttl .usericon_mypage span {
  display: inline-block;
  color: #3f3f3f;
  font-weight: bold;
  text-align: right;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  #mypage .sec_page_ttl .usericon_mypage span {
    font-size: 14px;
  }
}

.my_ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-size: 1.2rem;
  font-weight: bold;
  color: #3f3f3f;
  padding: 0.5em 0;
  border-bottom: solid 2px #ddd;
  position: relative;
  margin-bottom: 30px;
}
.my_ttl:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 2px #4c8dcb;
  bottom: -2px;
  width: 20%;
}

.mp-form__subttl {
  font-size: 1rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  background: #f4f4f4;
  padding: 0.5rem;
}

label.ttl {
  font-weight: bold;
}
label.ttl.introduce {
  margin-top: 20px;
  border-bottom: 2px solid #4c8dcb;
}

/* =============================================
Button
============================================= */
.my_btn_main_s {
  display: inline-block;
  background: #4c8dcb;
  color: #fff;
  border-radius: 5px;
  border: none;
  padding: 5px 25px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .my_btn_main_s {
    font-size: 12px;
  }
}
.my_btn_main_s:visited {
  color: #fff;
}
.my_btn_main_s:hover {
  color: #fff;
}
.my_btn_main_s:disabled, .my_btn_main_s.disabled {
  color: #4c8dcb;
  background: #eee;
}

.my_btn_main_m {
  display: inline-block;
  background: #4c8dcb;
  color: #fff;
  border-radius: 5px;
  border: none;
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .my_btn_main_m {
    font-size: 12px;
  }
}
.my_btn_main_m:hover {
  color: #fff;
}

.my_btn_main {
  display: inline-block;
  background: #4c8dcb;
  color: #fff;
  border-radius: 5px;
  border: none;
  padding: 10px 50px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .my_btn_main {
    font-size: 14px;
  }
}
.my_btn_main:hover {
  color: #fff;
}
.my_btn_main:disabled, .my_btn_main.disabled {
  background: #eee;
}

.my_btn_border {
  display: inline-block;
  background: #fff;
  border: 1px solid #4c8dcb;
  color: #4c8dcb !important;
  border-radius: 5px;
  padding: 10px 30px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .my_btn_border {
    font-size: 14px;
  }
}
.my_btn_border:hover {
  color: #4c8dcb;
}
.my_btn_border:visited {
  color: #4c8dcb;
}

/* =============================================
Button Wrap
============================================= */
.flex_btn_wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 50px 0;
}
@media screen and (max-width: 768px) {
  .flex_btn_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.flex_btn_wrap .clum_l {
  width: 45%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flex_btn_wrap .clum_l {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
  }
}
.flex_btn_wrap .clum_r {
  width: 45%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flex_btn_wrap .clum_r {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    width: 100%;
    margin-bottom: 20px;
  }
}

.btn_wrap {
  width: 100%;
  text-align: center;
  margin-top: 50px;
}

.my_form_btn_wrap {
  width: 100%;
  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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .my_form_btn_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .my_form_btn_wrap .order_1_sp {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

/* =============================================
SmartPhone Menu
============================================= */
#header .mypage_menu .mypage_menu_ttl {
  background-color: #fff;
  color: #4c8dcb;
  text-align: center;
  font-weight: bold;
}
#header .mypage_menu .mypage_spnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
#header .mypage_menu .mypage_spnav li {
  width: 48%;
  padding: 0;
  border: none;
  margin-right: 4%;
  margin-top: 15px;
}
#header .mypage_menu .mypage_spnav li:nth-of-type(even) {
  margin-right: 0;
}
#header .mypage_menu .mypage_spnav a {
  display: block;
  border-radius: 10px;
  background-color: #fff;
  color: #4c8dcb;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 5px;
}
#header .mypage_menu .mypage_spnav a .st0 {
  fill: #4c8dcb;
}
#header .mypage_menu .mypage_spnav a i {
  width: 70%;
  margin: auto;
  display: block;
  line-height: 1em;
}
#header .mypage_menu .mypage_spnav a span {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  text-align: center;
}

/* =============================================
Layout Adjustment
============================================= */
.edit_wrap {
  margin-bottom: 80px;
}

/* =============================================
Alert
============================================= */
.mypage_alert {
  margin-bottom: 50px;
}
.mypage_alert .alert-info {
  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;
  background: #f3f5f6;
  border: 1px solid #ccc;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .mypage_alert .alert-info {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.mypage_alert .alert-info label {
  font-size: 14px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .mypage_alert .alert-info label {
    font-size: 12px;
    margin-bottom: 15px;
  }
}
.mypage_alert .alert-info .alert_url {
  color: #3f3f3f;
  text-decoration: underline;
}

/* =============================================
Mypage Navigation
============================================= */
.mypage_nav {
  width: 100%;
  margin-bottom: 50px;
}
.mypage_nav .inner {
  padding: 0;
  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;
  border-bottom: 1px solid #ddd;
}
.mypage_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-self: start;
  padding-left: 0;
  margin-bottom: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mypage_nav ul.normal_nav li {
  list-style: none;
  margin-right: 2em;
}
.mypage_nav ul.normal_nav li:last-child {
  margin-right: 0;
}
.mypage_nav ul.normal_nav li.current a {
  font-weight: bold;
}
.mypage_nav ul.normal_nav li.current a:before {
  position: absolute;
  left: 0;
  bottom: -3px;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #4c8dcb;
}
.mypage_nav ul.normal_nav li a {
  position: relative;
  color: inherit;
  display: inline-block;
  height: 3em;
  line-height: 3em;
  padding-bottom: 0.5em;
}
.mypage_nav ul.normal_nav li a:hover {
  text-decoration: none;
}
.mypage_nav ul.normal_nav li a:hover:before {
  position: absolute;
  left: 0;
  bottom: -3px;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #4c8dcb;
}
.mypage_nav ul.normal_nav li a.current {
  font-weight: bold;
}
.mypage_nav ul.action_nav li {
  list-style: none;
}
.mypage_nav ul.action_nav a.btn {
  font-size: 14px;
  font-weight: bold;
  padding: 8px 10px;
  font-size: 14px;
  line-height: 1em;
  width: auto;
}
.mypage_nav ul.action_nav a.btn:hover:before {
  content: inherit;
}

.mypage_nav_sub {
  width: 100%;
}
.mypage_nav_sub > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5rem 0.35rem;
  list-style: none;
  padding: 0;
  margin-bottom: 0.35rem;
}
.mypage_nav_sub > ul .nav_item_sub a {
  display: inline-block;
  padding: 0.25rem 0.94rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0;
  background: #efefef;
  border-radius: 50px;
  text-decoration: none !important;
}
.mypage_nav_sub > ul .nav_item_sub a.current {
  background: #4c8dcb;
  color: #fff;
}

/* =============================================
SUM Panel
============================================= */
.sum_panel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 50px;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .sum_panel {
    margin-bottom: 20px;
  }
}
.sum_panel .panel {
  position: relative;
  width: 23.5%;
  background: #f5f5f5;
  padding: 14px 20px 20px 20px;
  border-radius: 5px;
  margin-right: 2%;
}
.sum_panel .panel:nth-child(4n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .sum_panel .panel {
    width: 49%;
    padding: 5px 10px;
    margin-bottom: 10px;
    margin-right: 2%;
  }
  .sum_panel .panel:nth-child(2n) {
    margin-right: 0;
  }
}
.sum_panel .panel .ttl {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .sum_panel .panel .ttl {
    margin-bottom: 5px;
    font-size: 0.6rem;
  }
}
.sum_panel .panel .amount {
  text-align: right;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .sum_panel .panel .amount {
    font-size: 1rem;
    margin-bottom: 0;
  }
}
.sum_panel .panel .amount .profit {
  color: #0062ff;
}
.sum_panel .panel .amount .loss {
  color: #ff0000;
}
.sum_panel .panel .breakdown {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 10px;
}
.sum_panel .panel .breakdown span {
  display: block;
  text-align: right;
}
.sum_panel .panel .breakdown span:nth-child(2) {
  width: 48%;
}
.sum_panel .panel a {
  position: absolute;
  top: 12px;
  right: 12px;
  border-radius: 5px;
  background: #4c8dcb;
}
@media screen and (max-width: 768px) {
  .sum_panel .panel a {
    display: none;
  }
}

/* =============================================
Fund List(under investment)
============================================= */
.my_fundlist.presence {
  margin-top: 50px;
}
.my_fundlist .presence {
  padding: 20px;
  margin: 20px 0;
  background: #e5f0fc;
  font-weight: bold;
  border-radius: 5px;
}
.my_fundlist .list_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.my_fundlist .list_box .fund {
  width: 48%;
  padding: 10px 10px;
  margin-bottom: 2%;
  border: 1px solid #ddd;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .my_fundlist .list_box .fund {
    width: 100%;
  }
}
.my_fundlist .list_box .fund h3 {
  font-weight: bold;
  font-size: inherit;
  margin-bottom: 20px;
  line-height: 2;
}
.my_fundlist .list_box .fund h3 .icon {
  font-size: 0.625rem;
  padding: 2px 8px;
  line-height: 1;
  border-radius: 5px;
  margin-right: 1em;
}
.my_fundlist .list_box .fund h3 .icon.danger {
  background-color: #dc3545;
  color: #fff;
}
.my_fundlist .list_box .fund h3 .icon.success {
  background-color: #28a745;
  color: #fff;
}
.my_fundlist .list_box .fund h3 .icon.before {
  background: #afe3ff;
}
.my_fundlist .list_box .fund h3 .icon.in {
  background: #fff3af;
}
.my_fundlist .list_box .fund .my_status {
  width: 100%;
  position: relative;
  display: table;
}
@media screen and (max-width: 768px) {
  .my_fundlist .list_box .fund .my_status {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .my_fundlist .list_box .fund .my_status tbody {
    display: block;
    border-bottom: 1px solid #f3f5f6;
  }
}
@media screen and (max-width: 768px) {
  .my_fundlist .list_box .fund .my_status tr {
    display: block;
    width: 100%;
    border-top: 1px solid #f3f5f6;
  }
}
.my_fundlist .list_box .fund .my_status tr th {
  font-weight: normal;
  padding: 5px 0;
}
@media screen and (max-width: 768px) {
  .my_fundlist .list_box .fund .my_status tr th {
    display: block;
    width: 100%;
    padding: 5px 0 5px;
    font-size: 12px;
    font-weight: bold;
  }
}
.my_fundlist .list_box .fund .my_status tr td {
  text-align: right;
  padding: 5px 0;
}
@media screen and (max-width: 768px) {
  .my_fundlist .list_box .fund .my_status tr td {
    display: block;
    width: 100%;
    padding: 0px 0 5px;
  }
}
.my_fundlist .list_box .detail_btn {
  margin-top: 10px;
  text-align: center;
}
.my_fundlist .list_box .detail_btn .my_btn_main_s:nth-child(2n) {
  margin-left: 10px;
}
.my_fundlist .list_box .law_field_cover {
  background-color: #f3f5f6;
  padding: 10px;
  border-radius: 5px;
  margin-top: 10px;
}
.my_fundlist .list_box .law_field_cover .note {
  text-align: center;
  color: #ed5d5d;
}
.my_fundlist .list_box .law_field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .my_fundlist .list_box .law_field {
    -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: 0.5rem;
  }
}
.my_fundlist .list_box .law_field .documents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: left;
}
.my_fundlist .list_box .law_field .documents i {
  width: 1.25rem;
  height: 1.25rem;
  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;
}
.my_fundlist .list_box .law_field .documents i img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.my_fundlist .list_box .law_field .documents a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #3f3f3f;
}
.my_fundlist .list_box .law_field .documents a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}

/* =============================================
Fund Detail
============================================= */
.fund_detail .back_link {
  margin-bottom: 50px;
}
.fund_detail .field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.fund_detail .field .total_panel {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .fund_detail .field .total_panel {
    width: 100%;
    margin-bottom: 40px;
  }
}
.fund_detail .field .total_panel .my_fund h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  font-size: 1rem;
  font-weight: bold;
}
.fund_detail .field .total_panel .my_fund h3 div {
  display: inline-block;
}
.fund_detail .field .total_panel .my_fund h3 div:nth-child(2) {
  max-width: 80%;
}
.fund_detail .field .total_panel .my_fund h3 .icon {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px 3px;
  line-height: 15px;
  border-radius: 5px;
  margin-right: 1em;
}
.fund_detail .field .total_panel .my_fund h3 .icon.before {
  background: #afe3ff;
}
.fund_detail .field .total_panel .my_fund h3 .icon.in {
  background: #fff3af;
}
.fund_detail .field .total_panel .my_fund h3 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  padding-left: 0;
  margin-top: 5px;
}
.fund_detail .field .total_panel .my_fund h3 ul li {
  list-style: none;
  margin-right: 1em;
  font-weight: normal;
  font-size: 0.7rem;
}
.fund_detail .field .total_panel .my_fund a {
  text-decoration: underline;
  color: #4c8dcb;
}
.fund_detail .field .total_panel .my_fund table {
  width: 100%;
  border-collapse: collapse;
}
.fund_detail .field .total_panel .my_fund table tr {
  border-bottom: 1px solid #ddd;
}
.fund_detail .field .total_panel .my_fund table tr th {
  padding: 10px 0;
  vertical-align: top;
  text-align: left;
}
.fund_detail .field .total_panel .my_fund table tr td {
  padding: 10px 0;
  text-align: right;
}
.fund_detail .field .total_panel .my_fund .remark {
  margin-top: 10px;
  font-size: 0.6rem;
}
.fund_detail .field .month_panel {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .fund_detail .field .month_panel {
    width: 100%;
  }
}
.fund_detail .early_redemption {
  font-size: 12px;
  line-height: 1.5em;
  font-weight: bold;
  display: block;
  margin: 10px auto 5px;
  background-color: #f3f5f6;
  padding: 10px;
  border-radius: 5px;
}
.fund_detail .early_redemption h4 {
  font-size: 14px;
  color: #4c8dcb;
}

.mypage_fund_user_memo {
  margin-top: 1rem;
  padding: 1rem 0.75rem;
  background: #f3f5f6;
}
.mypage_fund_user_memo .mypage_memo_main_ttl {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* =============================================
Step Bar
============================================= */
.stepbar {
  margin: 50px 0;
  padding: 0 0 50px 0;
  counter-reset: step;
  z-index: 0;
  position: relative;
}
.stepbar li {
  list-style-type: none;
  width: 33.33333%;
  float: left;
  font-size: 12px;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  color: #aaa;
}
.stepbar li:before {
  width: 30px;
  height: 30px;
  content: counter(step);
  counter-increment: step;
  line-height: 30px;
  display: block;
  text-align: center;
  margin: 0 auto 10px auto;
  border-radius: 50%;
  background-color: #ddd;
}
.stepbar li:after {
  width: 100%;
  height: 2px;
  content: "";
  position: absolute;
  background-color: #ddd;
  top: 15px;
  left: -50%;
  z-index: -1;
}
.stepbar li:first-child:after {
  content: none;
}
.stepbar li.active {
  color: #4c8dcb;
}
.stepbar li.active:before {
  background-color: #4c8dcb;
  color: #fff;
}
.stepbar li.active + li:after {
  background-color: #4c8dcb;
}

/* =============================================
Page Nation
============================================= */
.page_nation {
  margin-top: 30px;
  text-align: center;
}
.page_nation .pages {
  margin-bottom: 10px;
}
.page_nation ul {
  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;
  padding-left: 0;
}
.page_nation ul li {
  list-style: none;
  margin: 2px;
}
.page_nation ul li a {
  display: block;
  min-width: 38px;
  height: 38px;
  text-align: center;
  line-height: 36px;
  font-size: 14px;
  padding: 0px 4px;
  border: 1px solid #4c8dcb;
  border-radius: 5px;
}
.page_nation ul li a.current {
  background: #4c8dcb;
  color: #fff;
  border-color: #4c8dcb;
}
.page_nation ul li a:hover {
  background: #4c8dcb;
  color: #fff;
  border-color: #4c8dcb;
}

/* =============================================
Table
============================================= */
.table_scroll {
  display: block;
  overflow-x: scroll;
  white-space: nowrap;
}

table.stripe {
  width: 100%;
  border-collapse: collapse;
}
table.stripe tr {
  border-bottom: 1px solid #ddd;
}
table.stripe tr:nth-child(even) {
  background: #fafafa;
}
table.stripe th,
table.stripe td {
  text-align: center;
  padding: 10px;
}
table.basic {
  width: 100%;
  border-collapse: collapse;
}
table.basic th {
  width: 200px;
  padding: 10px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  table.basic th {
    padding-right: 0;
    width: auto;
    font-size: 12px;
  }
}
table.basic th.fund_name {
  font-size: 1.6rem;
  text-align: center;
}
table.basic td {
  width: calc(100% - 200px);
  padding: 10px;
}
@media screen and (max-width: 768px) {
  table.basic td {
    width: auto;
  }
}
table.basic td.multipul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
table.basic td .comment {
  color: #666;
  margin-bottom: 0;
}
table.basic .file_wrap {
  border: 1px solid #4c8dcb;
  padding: 10px;
}
table.basic .file_wrap .file_type {
  margin-bottom: 1em;
}
table.basic .file_wrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 10px 0 0 0;
  padding: 0;
}
table.basic .file_wrap ul li {
  width: 48%;
  list-style: none;
  margin: 0;
  padding: 0;
}
table.basic .file_wrap ul li label {
  font-weight: bold;
}
table.basic .unregistered {
  margin-right: 10px;
}
table.normal tr {
  border-bottom: 1px solid #d0c7c2;
}
table.normal th {
  padding: 15px 10px 15px 0;
}
table.normal td {
  padding: 15px 10px 15px 0;
}
table caption {
  caption-side: top;
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
  padding: 0.5em 0;
  margin-bottom: 2em;
  border-bottom: solid 2px #ddd;
  position: relative;
}
table caption:after {
  position: absolute;
  content: " ";
  display: block;
  border-bottom: solid 2px #4c8dcb;
  bottom: -2px;
  width: 20%;
}

.history table.stripe th,
.history table.stripe td {
  text-align: left;
}

/* =============================================
Consent pop-up
============================================= */
#privacy_frame,
#antisocial_frame,
#electronic_doc_frame {
  width: 100%;
  height: 100%;
}

.form_notice {
  border: 1px solid #4c8dcb;
  margin: 0;
  padding: 20px 10px;
}
@media screen and (max-width: 768px) {
  .form_notice {
    padding: 10px;
  }
}
.form_notice .form-group {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .form_notice .form-group {
    padding: 5px;
  }
}
.form_notice .form-group .form-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
}
@media screen and (max-width: 768px) {
  .form_notice .form-group .form-check .form-check-label {
    margin-left: 10px;
    font-size: 14px;
    margin-left: 10px;
  }
}
.form_notice .modal-dialog .modal-footer {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form_notice ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.form_notice ul li {
  width: 48%;
  list-style: none;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .form_notice ul li {
    width: 100%;
    margin-bottom: 10px;
  }
}
.form_notice ul li img {
  width: 100%;
  height: auto;
}

/* =============================================
KYC
============================================= */
.sec_ekyc .ekyc_inner {
  background: #f3f5f6;
  padding: 20px;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  .sec_ekyc .ekyc_inner {
    padding: 10px;
  }
}
.sec_ekyc .ekyc_inner .your_id_list {
  margin-bottom: 30px;
  padding-left: 17px;
}
.sec_ekyc .ekyc_inner .your_id_list li {
  margin-bottom: 10px;
}
.sec_ekyc .ekyc_inner .action_wrap {
  text-align: center;
  background: #fff;
  padding: 20px;
}
.sec_ekyc .ekyc_inner .action_wrap p {
  margin-bottom: 0;
}
.sec_ekyc .ekyc_inner .action_wrap .my_btn_main,
.sec_ekyc .ekyc_inner .action_wrap svg {
  margin: 30px 0;
}
.sec_ekyc .ekyc_inner .text_danger {
  text-align: center;
  margin: 20px 0;
}
.sec_ekyc .ekyc_inner .note {
  text-align: center;
}
.sec_ekyc .ekyc_inner a {
  color: #3f3f3f;
  text-decoration: underline;
}

/* =============================================
Slide
============================================= */
.slick-dotted.slick-slider.slider,
.slider {
  padding: 0 60px;
  margin: auto;
  max-width: 720px;
}
@media screen and (max-width: 768px) {
  .slick-dotted.slick-slider.slider,
  .slider {
    padding: 0;
  }
}
.slick-dotted.slick-slider.slider img,
.slider img {
  max-width: 100%;
}
.slick-dotted.slick-slider.slider .slick-arrow,
.slider .slick-arrow {
  width: 36px;
  height: 36px;
  background-color: #fff;
  border: 2px solid #4c8dcb;
  border-radius: 50%;
  overflow: hidden;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .slick-dotted.slick-slider.slider .slick-arrow,
  .slider .slick-arrow {
    width: 20px;
    height: 20px;
  }
}
.slick-dotted.slick-slider.slider .slick-arrow::before,
.slider .slick-arrow::before {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #4c8dcb;
  border-right: 2px solid #4c8dcb;
  top: 10px;
}
@media screen and (max-width: 768px) {
  .slick-dotted.slick-slider.slider .slick-arrow::before,
  .slider .slick-arrow::before {
    width: 8px;
    height: 8px;
    top: 4px;
  }
}
.slick-dotted.slick-slider.slider .slick-arrow.slick-prev,
.slider .slick-arrow.slick-prev {
  left: 0px;
}
@media screen and (max-width: 768px) {
  .slick-dotted.slick-slider.slider .slick-arrow.slick-prev,
  .slider .slick-arrow.slick-prev {
    left: -8px;
  }
}
.slick-dotted.slick-slider.slider .slick-arrow.slick-prev::before,
.slider .slick-arrow.slick-prev::before {
  content: "";
  right: 8px;
  -webkit-transform: rotate(-135deg);
      -ms-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
@media screen and (max-width: 768px) {
  .slick-dotted.slick-slider.slider .slick-arrow.slick-prev::before,
  .slider .slick-arrow.slick-prev::before {
    right: 3px;
  }
}
.slick-dotted.slick-slider.slider .slick-arrow.slick-next,
.slider .slick-arrow.slick-next {
  right: 0px;
}
@media screen and (max-width: 768px) {
  .slick-dotted.slick-slider.slider .slick-arrow.slick-next,
  .slider .slick-arrow.slick-next {
    right: -8px;
  }
}
.slick-dotted.slick-slider.slider .slick-arrow.slick-next::before,
.slider .slick-arrow.slick-next::before {
  content: "";
  left: 8px;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .slick-dotted.slick-slider.slider .slick-arrow.slick-next::before,
  .slider .slick-arrow.slick-next::before {
    left: 3px;
  }
}
.slick-dotted.slick-slider.slider .slick-dots,
.slider .slick-dots {
  position: static;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.slick-dotted.slick-slider.slider .slick-dots li,
.slider .slick-dots li {
  margin: 10px;
  background: #f3f5f6;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .slick-dotted.slick-slider.slider .slick-dots li,
  .slider .slick-dots li {
    width: 10px;
    height: 10px;
    margin: 10px 5px;
  }
}
.slick-dotted.slick-slider.slider .slick-dots li button,
.slider .slick-dots li button {
  background-color: transparent;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-indent: -10000px;
  margin: 0;
  padding: 0;
}
.slick-dotted.slick-slider.slider .slick-dots li.slick-active,
.slider .slick-dots li.slick-active {
  background-color: #4c8dcb;
}

/* =============================================
Code Entry
============================================= */
#input_code_view {
  width: 360px;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #input_code_view {
    width: 100%;
    max-width: 360px;
  }
}
#input_code_view li {
  border: 2px solid #e1e1e1;
  background: #fff;
  font-size: 40px;
  height: 70px;
  line-height: 63px;
  width: 100%;
  font-weight: bold;
  margin: 20px 5px;
  text-align: center;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  #input_code_view li {
    height: 70px;
    line-height: 36px;
    font-size: 20px;
  }
}
@media screen and (max-width: 350px) {
  #input_code_view li {
    height: 62px;
    line-height: 60px;
  }
}
#input_code_view li.focus {
  border-color: #4c8dcb;
}

/* =============================================
Restructure Fund
============================================= */
#restructure_info .restructure_ba {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #restructure_info .restructure_ba {
    display: block;
  }
}
#restructure_info .restructure_ba div {
  display: inline-block;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  #restructure_info .restructure_ba div {
    display: block;
    width: 100%;
  }
}
#restructure_info .restructure_ba div.arrow_wrap {
  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;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  #restructure_info .restructure_ba div.arrow_wrap {
    width: 100%;
    padding: 0;
  }
}
#restructure_info .restructure_ba div.arrow_wrap p {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #restructure_info .restructure_ba div.arrow_wrap p {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
#restructure_info .restructure_ba table {
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  #restructure_info .restructure_ba table {
    font-size: 14px;
  }
  #restructure_info .restructure_ba table tr {
    display: block;
  }
  #restructure_info .restructure_ba table td {
    padding-top: 0;
  }
  #restructure_info .restructure_ba table th,
  #restructure_info .restructure_ba table td {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
#restructure_info .restructure_remarks {
  background: #fff;
  padding: 0.75rem;
  border: 1px solid #ddd;
  text-align: left;
  margin-bottom: 1rem;
}
#restructure_info .restructure_remarks .restructure_remarks_ttl {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #4c8dcb;
}
#restructure_info .restructure_remarks a {
  text-decoration: underline;
  color: #4c8dcb;
}

/* =============================================
Outstanding Balance
============================================= */
.outstanding_balance {
  margin-bottom: 20px;
}
.outstanding_balance .card-body {
  padding-top: 0;
  padding-bottom: 0;
}
.outstanding_balance table.basic th {
  padding-right: 0;
}
.outstanding_balance table.basic .number {
  width: 14%;
}
@media (max-width: 768px) {
  .outstanding_balance table.basic .number {
    width: 100%;
  }
}
.outstanding_balance table.basic .amount {
  width: 20%;
}
@media (max-width: 768px) {
  .outstanding_balance table.basic .amount {
    width: 100%;
  }
}
.outstanding_balance table.basic .date {
  width: 26%;
}
@media (max-width: 768px) {
  .outstanding_balance table.basic .date {
    width: 100%;
  }
}
.outstanding_balance table.basic .null {
  padding: 0;
}
.outstanding_balance table.basic .deposit {
  font-weight: bold;
}
.outstanding_balance table.basic tfoot {
  font-weight: bold;
  color: #ed5d5d;
}
.outstanding_balance table.basic tfoot tr {
  border-bottom: none;
}

/* =============================================
Document
============================================= */
.document {
  margin-bottom: 50px;
}
.document .annual_report_note {
  margin-top: 0.5rem;
  font-size: 14px;
}
.document .wd_day {
  width: 200px;
}
.document .wd_icon {
  width: 70px;
}
.document table th {
  text-align: left !important;
}
.document table td {
  text-align: left !important;
}
.document table td i {
  margin-left: 1em;
  font-size: 0.8em;
  color: #4c8dcb;
}
.document a:link,
.document a:visited {
  text-decoration: underline !important;
  color: #4c8dcb;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.document a:link.button,
.document a:visited.button {
  text-decoration: none !important;
}
.document a:link:hover,
.document a:visited:hover {
  opacity: 0.6;
}
.document .button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  font-size: 0.8rem;
  padding: 2px 8px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  text-decoration: none !important;
  border-radius: 5px;
}
.document .button.already {
  background: #f2f2f2;
}
.document .button.unread {
  background: #ed5d5d;
  color: #fff;
}

/* =============================================
Deposit Payout
============================================= */
.deposit .stripe th,
.payout th,
.payout td,
.deposit .stripe td {
  text-align: left !important;
}

.payout .form-control.wd90,
.deposit .form-control.wd90 {
  display: inline-block;
  width: 90%;
  margin-left: 1%;
}

.payout .my_btn,
.deposit .my_btn {
  width: 200px !important;
  margin: 0 auto;
}

.payout .remark,
.deposit .remark {
  margin: 30px 0;
}

.input_ttl {
  margin-bottom: 0.5em;
  font-weight: bold;
}
.input_ttl.birthday {
  height: 20px;
}
@media screen and (max-width: 768px) {
  .input_ttl.birthday {
    height: inherit;
  }
}

/* =============================================
Upload
============================================= */
.custom-file-label::after {
  content: "選択";
}

/* =============================================
Bank Suggest Table
============================================= */
#bank_suggest_table .bank_input_wrap {
  position: relative;
}
#bank_suggest_table .clear_btn {
  position: absolute;
  right: 5px;
  font-size: 12px;
  line-height: 12px;
  top: 50%;
  margin-top: -9px;
  cursor: pointer;
}
#bank_suggest_table .suggest_wrap {
  position: relative;
}
#bank_suggest_table .suggest_wrap .spinner_area {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 2px 0;
  border-radius: 6px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
  background-color: #fff;
}
#bank_suggest_table .suggest_list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  list-style: none;
  padding-left: 0;
  margin: 0;
  border-radius: 6px;
  -webkit-box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 5;
  max-height: 30vh;
  overflow-y: scroll;
}
#bank_suggest_table .suggest_list li {
  padding: 10px 30px 10px 10px;
  background: #fff;
  border-bottom: 1px solid #e1e1e1;
  cursor: pointer;
  position: relative;
}
#bank_suggest_table .suggest_list li:hover {
  background: #f5f5f5;
}
#bank_suggest_table .suggest_list li::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0px;
  border-right: 2px solid #bbb;
  border-top: 2px solid #bbb;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 50%;
  margin-top: -4px;
  right: 1.2em;
}
#bank_suggest_table .suggest_list li:last-child {
  border-bottom: none;
}

a:hover {
  text-decoration: none !important;
}

.my_btn_main_s {
  border-radius: 3.125rem;
}

.my_btn_main {
  color: #fff !important;
  border-radius: 3.125rem;
}

.my_btn_border {
  border-radius: 3.125rem;
}

@media screen and (max-width: 768px) {
  .flex_btn_wrap {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
  .flex_btn_wrap .my_btn_main,
  .flex_btn_wrap .my_btn_border {
    width: 100%;
  }
}

.btn {
  border-radius: 3.125rem;
  max-width: 17.8125rem !important;
  padding: 1rem 0.94rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff !important;
  text-align: center;
  border: 1px solid #5bafff;
  background: #5bafff;
  margin: 0 auto;
}
.btn.btn-primary {
  background: #5bafff;
}

.form-check {
  gap: 0.25rem;
}

.form-check-label a {
  text-decoration: underline !important;
}

.sec_ekyc .ekyc_inner {
  background: #fff;
}
.sec_ekyc .ekyc_inner .your_id_list {
  margin: 0.5rem 0;
}
.sec_ekyc .ekyc_inner .your_id_list li {
  list-style: disc;
}
.sec_ekyc .ekyc_inner .action_wrap {
  background: #f3f5f6;
  margin: 0.5rem 0;
}
.sec_ekyc .ekyc_inner .action_wrap svg {
  margin: 2rem auto;
}

#input_code_view li {
  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;
}
@media screen and (max-width: 768px) {
  #input_code_view li {
    font-size: 32px;
  }
}

#mypage .sec_page_ttl {
  background: #edf4fa;
  padding: 5.75rem 0 5.6875rem 0;
}
@media screen and (max-width: 768px) {
  #mypage .sec_page_ttl {
    padding: 4.5rem 0 3.12rem;
  }
}
#mypage .sec_page_ttl .page_ttl {
  font-weight: 700;
}

.sec_mypage {
  margin-bottom: 5rem;
}

.my_fundlist .list_box .law_field {
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .my_fundlist .list_box .law_field {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.my_fundlist .list_box .law_field .documents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .my_fundlist .list_box .law_field .documents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
.my_fundlist .list_box .law_field .documents a {
  text-decoration: underline;
}
.my_fundlist .list_box .law_field .documents a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.restructure_apply .btn {
  width: 100%;
  max-width: 380px;
  margin-right: auto;
  margin-left: auto;
}/*# sourceMappingURL=mypage_style.css.map */