@charset "utf-8";
/* ================================================
  ベース
================================================ */
.Sunryse_wrp a:hover{
  text-decoration: none;
}
.Sunryse_wrp em{
  font-style: normal;
}
/* ================================================
  既存CSS流用
================================================ */
.Sunryse_wrp .topimg + .topimg{
  padding-top: 10px;
}

.nav-top{
  display: flex;
  -ms-flex-wrap: wrap;
	flex-wrap: wrap;
  margin: 16px 0 24px;
}
.nav-top_item + .nav-top_item{
  border-left: solid 1px #333;
}
.nav-top_item{
  text-align: center;
  width: 25%;
}
.nav-top_item_link{
  color: #333;
  font-weight: 700;
  font-size: 12px;
  display: block;
  padding: 8px 8px 8px 24px;
  position: relative;
  transition: .3s;
}
.nav-top_item_link:hover{
  color: #f33842;
}
.nav-top_item_link::before{
  position: absolute;
  content: "";
  border-right: 1px solid #20302c;
  border-bottom: 1px solid #20302c;
  width: 6px;
  height: 6px;
  top: 8px;
  left: 8px;
  transform: rotate(45deg);
}
@media (max-width: 768px){
}
@media (max-width: 599px){
  .nav-top{
    margin: 16px 0 0;
  }
  .nav-top + .nav-top{
    margin: 0 0 30px;
  }
  .nav-top_item{
    width: 50%;
    margin-top: 10px;
  }
  .nav-top_item_link{
    text-align: left;
    padding: 10px 10px 10px 33px;
    margin-top: 0;
  }
  .nav-top_item_link::before{
    top: 12px;
  }
  .nav-top_item{
    position: relative;
  }
  .nav-top_item + .nav-top_item{
    border: none;
  }
  .nav-top_item:nth-of-type(2n){
    border-left: 1px solid #333;
  }
}


.btn-accountMake{
  text-align: right;
}
.sunryse_wrapper .btn-accountMake_link{
  background-color: #dc143c;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  padding: 8px;
  border-radius: 4px;
}
.sunryse_wrapper .btn-accountMake_link:hover{
  opacity: .7;
}

/* ================================================
  パーツ
================================================ */
.u_ic{
  position: relative;
}
.u_ic::before,
.u_ic::after{
  content: "";
  margin: auto;
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  position: absolute;
}
.u_img img{
  line-height: 0;
  display: block;
}
.u_alignC{
  text-align: center;
}
.u_alignR{
  text-align: right;
}

.u_tbl{
  display: none;
}
.u_sp{
  display: none;
}
.u_pc{
  display: block;
}
@media (max-width: 768px){
  .u_pc{
    display: none;
  }
  .u_sp{
    display: none;
  }
  .u_tbl{
    display: block;
  }
  .u_tbl.u_pc{
    display: block;
  }
  .u_sp.u_tbl{
    display: block;
  }
}
@media (max-width: 599px){
  .u_pc{
    display: none;
  }
  .u_tbl{
    display: none;
  }
  .u_sp{
    display: block;
  }
  .u_tbl.u_pc{
    display: none;
  }
  .u_sp.u_tbl{
    display: block;
  }
}


.l_flex{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}
.l_flexNoWrap{
  -ms-flex-wrap: nowrap ;
	flex-wrap: nowrap ;
}
.l_directionColumn{
  -webkit-box-orient: vertical ;
  -webkit-box-direction: normal ;
  -ms-flex-direction: column ;
  flex-direction: column ;
}
.l_alignItemsCenter{
  -ms-flex-align: center;
  align-items: center;
}
.l_alignItemsStart{
  -ms-flex-align: start;
  align-items: flex-start;
}
.l_alignItemsEnd{
  -ms-flex-align: end;
  align-items: flex-end;
}
.l_alignContentCenter{
  -ms-flex-line-pack: center;
  align-content: center;
}
.l_alignContentStart{
  -ms-flex-line-pack: start;
  align-content: flex-start ;
}
.l_alignContentEnd{
  -ms-flex-line-pack: end;
  align-content: flex-end;
}
.l_alignSelfCenter{
  -ms-flex-item-align: center;
	align-self: center;
}
.l_alignSelfStart{
  -ms-flex-item-align: start;
	align-self: flex-start;
}
.l_alignSelfEnd{
  -ms-flex-item-align: end;
	align-self: flex-end;
}
.l_justifyContentCenter{
  -ms-flex-pack: center;
	justify-content: center;
}
.l_justifyContentStart{
  -ms-flex-pack: start;
	justify-content: flex-start;
}
.l_justifyContentEnd{
  -ms-flex-pack: end;
	justify-content: flex-end;
}
.l_justifyContentAround{
  -ms-flex-pack: distribute;
  justify-content: space-around;
}
.l_justifyContentBetween{
  -ms-flex-pack: justify;
  justify-content: space-between;
}


@media (max-width: 768px){
  .l_flex_md{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l_flexNoWrap_md{
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .l_directionColumn_md{
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .l_alignItemsCenter_md{
    -ms-flex-align: center;
    align-items: center;
  }
  .l_alignItemsStart_md{
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .l_alignItemsEnd_md{
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .l_alignContentCenter_md{
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .l_alignContentStart_md{
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .l_alignContentEnd_md{
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .l_alignSelfCenter_md{
    -ms-flex-item-align: center;
    align-self: center;
  }
  .l_alignSelfStart_md{
    -ms-flex-item-align: start;
    align-self: flex-start;
  }
  .l_alignSelfEnd_md{
    -ms-flex-item-align: end;
    align-self: flex-end;
  }
  .l_justifyContentCenter_md{
    -ms-flex-pack: center;
    justify-content: center;
  }
  .l_justifyContentStart_md{
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .l_justifyContentEnd_md{
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .l_justifyContentAround_md{
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .l_justifyContentBetween_md{
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}



.l_grid_12{}

.l_clm2_md_1{
	width: 48.5%;
	margin: 25px 3% 0 0;
}
.l_clm2_md_1:nth-of-type(2n){
	margin-right: 0;
}
.l_clm2_md_1:nth-of-type(1),
.l_clm2_md_1:nth-of-type(2){
	margin-top: 0;
}
@media (max-width: 768px){
	.l_clm2_md_1,
	.l_clm2_md_1:nth-of-type(2){
		width: 100%;
		margin: 25px 0 0;
	}
}

.mt_15{
  margin-top: 15px;
}
.mt_25{
  margin-top: 25px;
}

.g_sec{
  margin-top: 35px;
}
.g_sec__last{
  margin-bottom: 35px;
}
.g_ttl_bg{
  font-size: 20px;
  line-height: 1.5;
  background-color: #20302c;
  padding: 8px;
  margin-bottom: 20px;
  border-bottom: solid 2px #20302c;
  color: #fff;
}
.g_ttl_bg__mb0{
  margin-bottom: 0;
}
.g_ttl_bg span{
  font-size: 13.5px;
}

.g_h2{
	font-size: 30px;
	font-weight: bold;
  line-height: 1.3;
}
.g_h3{
	font-size: 28px;
	font-weight: bold;
  line-height: 1.4;
}
.g_h4{
	font-size: 22px;
	font-weight: bold;
  line-height: 1.5;
}
.g_h5{
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}
.g_h6{
	font-size: 18px;
	font-weight: bold;
}
@media (max-width: 599px){
	.g_h2{
		font-size: 26px;
		font-weight: bold;
	}
	.g_h3{
		font-size: 24px;
		font-weight: bold;
	}
	.g_h4{
	}
  .g_h5{
	}
	.g_h6{
	}

}

.g_txt{
  font-size: 14px;
}
@media (max-width: 599px){
  .g_txt__md{
    font-size: 14px;
  }
}
.g_cap{
  font-size: 10px;
}
.g_clr_red{
  color: #F33842;
}

.g_bold{
  font-weight: bold;
}
.g_nor{
  font-weight: normal;
}

.g_box_grn{
  padding: 18px 40px;
  background-color: #E6EFEC;
}
.g_box_wh{
  padding: 20px 30px;
  background-color: #fff;
}
.g_box_wh::before{
  width: 25px;
  height: 25px;
  background-image: url("../../common/img/business_partner/sunryse/bg_img_redpoint.png");
  right: 0;
  bottom: 0;
}
@media (max-width: 599px){
  .g_box_grn{
    padding: 15px;
  }
  .g_box_wh{
    padding: 15px;
  }
}

.g_box_bd{
  border-bottom: 1px solid #20302C;
  padding-bottom: 15px;
  margin-bottom: 15px;
}


/* ================================================
  ユニーク
================================================ */
.Sunryse_wrp{
  font-size: 16px;
  font-weight: normal;
  line-height: 1.7;
}

/* イノベーション */
.Sunryse_innv{
  padding: 0 40px;
}
.Sunryse_innv_itm{
  width: 47.5%;
  margin: 0 5% 0 0;
  padding: 12px 20px 12px;
  border: 1px solid #4D4D4D;
}
.Sunryse_innv_itm:nth-of-type(2n){
  margin-right: 0;
}
.Sunryse_innv_itm .g_h3{
  letter-spacing: 5px;
}
@media (max-width: 768px){
  .Sunryse_innv{
    padding: 0;
  }
}
@media (max-width: 599px){
  .Sunryse_innv_itm{
    width: 100%;
    margin-right: 0;
    display: block;
    padding: 12px 6.6vw 12px;
  }
  .Sunryse_innv_itm + .Sunryse_innv_itm{
    margin-top: 25px;
  }
}

/* 活用方法 */
.Sunryse_sec{}
.Sunryse_box{
  padding: 30px;
}
.Sunryse_bg{
  position: relative;
  z-index: 1;
}
.Sunryse_bg .g_box_wh + .g_box_wh{
  margin-top: 25px;
}
.Sunryse_box__ex{
  background-color: #D6E5E0;
}
.Sunryse_bg__ex{
  padding-bottom: 70px;
}
.Sunryse_bg__ex_itm01{
  position: absolute;
  top: 0;
  right: -30px;
}
.Sunryse_bg__ex_itm02{
  position: absolute;
  right: -35px;
  bottom: 0;
}
.Sunryse_box__ex .Sunryse_box_itm{
  padding-top: 70px;
}
@media (max-width: 768px){
  .Sunryse_sec{
    overflow: hidden;
  }
  .Sunryse_bg__ex{
    padding-bottom: 40px;
  }
  .Sunryse_box__ex .Sunryse_box_itm{
    padding-top: 0;
  }
  .Sunryse_bg__ex_itm01{
    position: static;
    margin: 0 auto 0 -15px;
  }
  .Sunryse_bg__ex_itm02{
    position: static;
    margin: 5px -17px 0 auto;
  }
}
@media (max-width: 599px){
  .Sunryse_box{
    padding: 20px 15px;
  }
  .Sunryse_bg__ex_itm01{
    width: 80%;
  }
  .Sunryse_bg__ex_itm02{
    width: 80%;
  }
}



/* 利用者の声 */
.Sunryse_box__vo{
  background-color: #20302C;
}
.Sunryse_bg__vo_itm{
  position: absolute;
  top: -80px;
  right: -30px;
  z-index: -1;
}
.Sunryse_bg__vo .Sunryse_box_itm{
  padding-top: 130px;
}
@media (max-width: 768px){
  .Sunryse_bg__vo{
    padding-top: 60px;
  }
  .Sunryse_bg__vo .Sunryse_box_itm{
    padding-top: 0;
  }
  .Sunryse_bg__vo_itm{
    top: -120px;
  }
}
@media (max-width: 599px){
  .Sunryse_bg__vo{
    padding-top: 55px;
  }
  .Sunryse_bg__vo_itm{
    width: 80%;
    top: -24vw;
    right: -15px;
  }
}


/* 実現できること  */
.Sunryse_rzat{
  padding: 45px 0 25px;
}
.Sunryse_rzat_ttl{
  text-align: center;
}
.Sunryse_rzat_ttl span{
  display: block;
}
.Sunryse_rzat_lst{
  padding-top: 30px;
}
.Sunryse_rzat_lst_itm + .Sunryse_rzat_lst_itm{
  margin-top: 15px;
}
.Sunryse_rzat_f{
  line-height: 1.5;
  width: 80%;
  margin: 0 auto 15px 0;
  padding: 20px 100px 20px 65px;
  background-color: #C0CEC6;
  border-radius: 1000px;
}
.Sunryse_rzat_f::before{
  width: 27px;
  height: 33px;
  background-image: url("../../common/img/business_partner/sunryse/text_q.png");
  top: 28px;
  left: 25px;
}
.Sunryse_rzat_f::after{
  width: 23px;
  height: 23px;
  display: block;
  border-top: 8px solid #fff;
  border-right: 8px solid #fff;
  transform: rotate(135deg);
  transform-origin: center;
  top: 0;
  bottom: 10px;
  right: 40px;
  margin: auto;
  position: absolute;
}
.Sunryse_rzat_a{
  color: #F33842;
  font-weight: bold;
  line-height: 1.5;
  width: 60%;
  padding: 20px 30px;
  margin: 0 0 0 auto;
  background-color: #fff;
  border-radius: 1000px;
  border: 1px solid #F33842;;
}
@media (max-width: 768px){
  .Sunryse_rzat_f,
  .Sunryse_rzat_a{
    width: 80%;
  }
}
@media (max-width: 599px){
  .Sunryse_rzat_lst{
    padding-top: 20px;
  }
  .Sunryse_rzat_f,
  .Sunryse_rzat_a{
    width: 100%;
    font-size: 14px;
    border-radius: 30px;
  }
  .Sunryse_rzat_f{
    padding: 20px 20px 40px 50px;
  }
  .Sunryse_rzat_f::before{
    top: 20px;
    left: 15px;
  }
  .Sunryse_rzat_f::after{
    width: 13px;
    height: 13px;
    border-width: 5px;
    top: auto;
    bottom: 15px;
    right: 0;
    left: 0;
  }
  .Sunryse_rzat_a{
    padding: 20px;
  }
}


/* 特徴について */
.Sunryse_feat_sec{
  margin-top: 35px;
}
.Sunryse_feat_sec + .Sunryse_feat_sec{
  margin-top: 55px;
  padding-top: 75px;
  border-top: 0.75px solid #20302C;
}
.Sunryse_feat_ttl{
  margin-bottom: 25px;
}
.Sunryse_feat_ttl_num{
  width: 60px;
  margin-right: 35px;
}
.Sunryse_feat_ttl_txt{
  width: calc(100% - 95px);
}
.Sunryse_feat_img{
  margin-top: 20px;
}
@media (max-width: 768px){}
@media (max-width: 599px){
  .Sunryse_feat_head{
    width: 80%;
    margin: 0 0 0 auto;
  }
  .Sunryse_feat_sec{
    margin-top: 20px;
  }
  .Sunryse_feat_sec + .Sunryse_feat_sec{
    margin-top: 40px;
    padding-top: 35px;
  }
  .Sunryse_feat_ttl{
    margin-bottom: 15px;
  }
  .Sunryse_feat_ttl_num{
    width: 40px;
    margin: 0 0 10px 0;
  }
  .Sunryse_feat_ttl_txt{
    width: 100%;
  }
  .Sunryse_feat_img{
    margin-top: 20px;
  }
}