/*--法人：お知らせ個別ページ--*//********************************
 PayBlend法人向けサイト用
*********************************/
/*---*ボタン色設定-----*/
.btn_1{background-color: #D7153C;}
.circle_arrow::before{background-color: #D7153C;}
.btn_2{background-color: #D7153C;}
.btn_3{color: #D7153C; border: 1px solid #D7153C;}

/*アンカーリンクの位置調整*/
html{	scroll-padding-top: 75px; overflow-x: hidden;}

/*---*header-----*/
.header_biz{
  position: fixed;
  width: 100%;
  z-index: 500;
  top: 0;
  background-color: #fff;
	box-shadow: 0px 3px 6px 0px rgba(0,0,0,0.16)
}
.header_title{
  display: flex;
  justify-content: space-between;
  height: 60px;
}
.header_logo img{
  display: inline-block;
  height: 24px;
  margin-top: 20px;
  margin-left: 20px;
}
.header_biz .btn_1{
	margin-right: 25px;
	background-color: #D7153C;
}

/*Menuボタン*/
.menu_trigger,
.menu_trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
  z-index: 501;
}
.menu_trigger {
  position: relative;
  width: 20px;
  height: 16px;
  margin-right: 20px;
}
.menu_trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #203e38;
  border-radius: 4px;
}
.menu_trigger span:nth-of-type(1) {
  top: 0;
}
.menu_trigger span:nth-of-type(2) {
  top: 7px;
}
.menu_trigger span:nth-of-type(3) {
  bottom: 0;
}
.menu_trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-45deg);
  transform: translateY(7px) rotate(-45deg);
}
.menu_trigger.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar02 .8s forwards;
  animation: active-menu-bar02 .8s forwards;
}
@-webkit-keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-menu-bar02 {
  100% {
    height: 0;
  }
}
.menu_trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-7px) rotate(45deg);
  transform: translateY(-7px) rotate(45deg);
}
/*Menuコンテンツ*/
.header_nav{
  font-weight: 700;
  display: none;
  right: 0%;
  width: 100%;
	height: 100vh;
  background-color: #F8F8F8;
  opacity: 0.99;
}
.header_nav_list{
	padding: 30px 0 0px 6%;		
}
.header_nav_list li{
	margin-bottom: 20px;
}
.header_nav_list li a{
  display: block;
  padding-bottom: 3px;  
  margin-bottom: 16px;
  font-size: 1.6rem;
  border-bottom: #D7153C 2px solid;
}
.header_line{
  height: 1px;
  background-color: rgba(51,51,51,0.12);
  margin-right: 4.3%;
  margin-left: 4.3%;  
}

/*---Main Visual-----*/
.biz_main{
	background : linear-gradient(to bottom, #FDF2F4, #F2FCFF);
}
.sec_mainvisual .mainvisual{
	background-image: url("../img/biz/mainvisual_sp.webp");
	height: 116vw;
	background-position:bottom;
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;
}
.sec_mainvisual h1 .title{
	width: 69vw;
	padding-top: 25px;
	padding-bottom: 10px;
	max-width: 388px;
}
.img_cellphone{
	position: absolute;
	height: 60vw;
	top: 103px;
	left:63vw;
	max-height: 265px;
}
.btn_biz_margin{
	margin: auto;
	width: 280px;
}
.title_p1{
	font-size: 1.2rem;
	font-weight: 700;
	padding-bottom: 30px;
	line-height: 1.5;
}
/*共通ボタン*/
.btn_biz{
	display: flex;
	justify-content: center;
	font-size: 1.6rem;
	font-weight: 700;
	border-radius: 32px;
	width: 280px;
	padding: 16px 0px 17px 16px;
	background-color: #FF2E49;
  background-image: -webkit-linear-gradient(left, #FF2E49, #AA030C);
  background-image: linear-gradient(to right, #FF2E49, #AA030C);
	color: #fff;
}
.btn_biz .text{
	padding-right: 22px;
}
.biz_circle_arrow{
	position: relative;
	display: inline-block;
	padding: 0 0 0 40px;
	color: #000;
	vertical-align: middle;
	text-decoration: none;
	font-size: 15px;
}
.biz_circle_arrow::before, .biz_circle_arrow::after {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	content: "";
	vertical-align: middle;
}
.biz_circle_arrow::before{
	width: 35px;
	height: 35px;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	background-color: #fff;	
}
.biz_circle_arrow::after{
	left: 11px;
	width: 8px;
	height: 8px;
	border-top: 2px solid #BB0C19;
	border-right: 2px solid #BB0C19;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);	
}
.main_link{
	margin: 20px auto 0;
	background-color: rgba(255,255,255,0.7);
	padding: 8px 6px;
	border-radius: 4px;
	max-width: 360px;
}
.main_link a{
	font-size: 1.2rem;
	font-weight: 700;	
	padding-right: 4px;
	padding-bottom: 2px;
	color: #D7153C;	
	letter-spacing: 0;
}
.main_link .flex_row{
	border-bottom: 1px #D7153C solid;	
	justify-content: center;
}
.main_link .circle_arrow{
	padding: 0 0 0 20px;
}
.mainvisual_news{
	background-color: #D7153C;
	font-weight: 700;
	padding-top: 10px;
	padding-bottom: 14px;
	border-radius: 4px;
	margin: 20px 5% 0;
}
.mainvisual_news .title{
	font-size: 1.0rem;
	margin-bottom: 15px;	
}
.mainvisual_news time{
	background-color: #fff;
	color: #D7153C;
	font-size: 1.0rem;
	line-height: 1;
  padding: 3px 8px 2px;
	border-radius: 7px;
	margin-right: 8px;
	font-weight: 700;
}
.mainvisual_news p{
	font-size: 1.2rem;
}
.mainvisual_news .line{
	border-bottom: 1px solid #fff;
	margin-top: 5px;
	margin-bottom: 5px;
}
.mainvisual_news .link{
	color: #fff;
	font-size: 1.2rem;
	display: block;
	text-align: right;
	line-height: 1.1;
	text-decoration: underline;
	padding-top: 10px;
}
/*---Top 各Section-----*/
/*PayBlendとは*/
.sec_about{
	margin-top: 50px;
}
.wrap_h2 p{
	font-size: 1.2rem;
	color: #D7153C;
	font-family: Arial, Helvetica, "sans-serif";
	padding-bottom: 10px;
	line-height: 1.0;	
	font-weight: 700;
	letter-spacing: 0;	
}
.wrap_h2 h2{
	font-size: 2.4rem;
	font-weight: 700;
	letter-spacing: 0;		
	display: inline-block;
	padding-bottom: 8px;
	margin-bottom: 20px;
	line-height: 1.46;	
	position: relative;
}
.wrap_h2 h2::after{
  content: "";
  position: absolute;
  bottom: 1px;
  left: 0;
  width: 160px; 
  border-bottom: 4px solid #D7153C;	
}
.text_title_under{
	font-weight: 700;
}
.sec_about_container{
	margin-top: 30px;
}
.sec_about_box{
	border-radius: 8px;
	background-color: #fff;
	text-align: center;
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
	max-width: 380px;
	margin: auto;	
}
.sec_about_box .text_wrap{
	padding: 20px 27px 40px;
}
.sec_about_box:not(:last-of-type){
	margin-bottom: 30px;
}
.sec_about_box h3{
	font-size: 2.0rem;
	font-weight: 700;
	margin-bottom: 20px;
}
.sec_about_box .text_p span{
	font-weight: 700;
}
.sec_about_box .inbox_kome{
	font-size: 1.0rem;
	margin-top: 10px;
}
.red_triangle{
  width: 0;
  height: 0;
  border-style: solid;
	border-right: 55px solid transparent;
	border-left: 55px solid transparent;
	border-top: 40px solid #D7153C;
  border-bottom: 0;
	margin: 20px auto 10px;
}
.sec_about .bg_gray{
	z-index: 5;
	margin-top: 10px;
	width: 85%;
	height: 105%;
	border-radius: 0 60px 0 0;
	background-color: #F8F8F8;
}


/*期待効果*/
.sec_effect{
	margin-bottom: 120px;
}
.sec_effect::after{
  content: "";
  position: absolute;
	z-index: 7;	
  bottom: -75px;
  right: -90px;
  width: 260px; 
	height: 209px;
	background-image: url("../img/biz/effect_card_sp.webp");
	background-repeat: no-repeat;
	background-size: contain;
	overflow: hidden;
}
.sec_effect .effect_theme{
	font-size: 2.4rem;
	font-weight: 700;
  display: inline-block;
  padding: 10px 0 3px;
	margin-top: 30px;	
	margin-bottom: 30px;
	text-align: center;
	width: 90%;
	max-width: 300px;	
}
.sec_effect .effect_theme::before,
.sec_effect .effect_theme::after{
  content: "";
  position: absolute;
  width: 44px;     /* 角の長さ */
  height: 34px;    /* 角の長さ */
  pointer-events: none;	
}
.sec_effect .effect_theme::before{
  top: 0px;      
  left: 0px;     
  border-top: 3px solid #000435;
  border-left: 3px solid #000435;	
}
.sec_effect .effect_theme::after{
  right: 0px;     
  bottom: 0px;  
  border-right: 3px solid #000435;
  border-bottom: 3px solid #000435;	
}
.sec_effect .effect_theme span{
	color: #D7153C;
	border-bottom: 2px #D7153C solid;
}
.sec_effect .effect_wrap{
	margin-top: 30px;;
}
.sec_effect .icon{
	width: 84px;
	padding-right: 14px;
}
.sec_effect .effect_title{
	font-size: 2.0rem;
	margin-bottom: 8px;
	line-height: 1.0;
	font-weight: 700;
}
.sec_effect .line{
	background-color: #707070;
	height: 1px;
	width: 100%;
	margin-top: 20px;
	margin-bottom: 30px;
}
.sec_effect .text_conc{
	margin-top: 30px;
}
.sec_effect .text_conc p{
  display: inline-block;	
	color: #fff;
	font-size: 1.6rem;
	background-color:  #D7153C;
	padding: 8px;
}
.sec_effect .text_conc p:first-of-type{
	margin-bottom: 4px;
}
/*導入形態*/
.sec_models{
	margin-top: 80px;
}
.sec_models ul{
	margin-top: 30px;
	text-align: center;
}
.sec_models li:not(:last-of-type){
	margin-bottom: 30px;
}
.sec_models li .title_wrap{
	background-color: #D7153C;
	border-radius: 8px 8px 0 0;
	padding: 20px 30px;
}
.sec_models h3{
	color: #fff;
	font-size: 2.0rem;
	font-weight: 700;	
}
.sec_models .h3_sub{
	background-color: #fff;
	border-radius: 4px;
	padding: 8px 0px;
	font-size: 1.2rem;
	font-weight: 700;
	width: 275px;
	margin: 12px auto 0px;
}
.sec_models .text_detail{
	background-color: #fff;
	padding: 48px 27px 30px;
}
.sec_models .text_detail::before{
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	border-style: solid;
	border-right: 45vw solid transparent;
	border-left: 45vw solid transparent;
	border-top: 28px solid #D7153C;
	border-bottom: 0;
}
.sec_models .link_issue{
	display: inline-block;
	color: #D7153C;
	font-size: 1.2rem;
	font-weight: 700;
	border-bottom: 1px #D7153C solid;
	margin-top: 30px;
}
.sec_models .link_issue::before{
	content: "";
	display: inline-block;
	background-image: url("../img/biz/models_new.webp");
	background-size: contain;
  background-repeat: no-repeat;	
	width: 12.1px;
	height: 18px;
	margin-right: 2px;
	vertical-align: middle;
	margin-bottom: 3px;
}
.sec_models .link_issue::after{
	content: "";
	display: inline-block;
	background-image: url("../img/biz/arrow_red.png");
	background-size: contain;
  background-repeat: no-repeat;	
	width: 15px;
	height: 15px;
	margin-left: 2px;
	margin-bottom: 2px;
	vertical-align: middle;
}

/*PayBlendが選ばれる理由*/
.sec_reason{
	margin-top: 34px;
}
.sec_reason .bg_gray{
	top: 140px;
	z-index: 5;
	width: 85%;
	height: 82%;
	right: 0;
	border-radius: 60px 0 0 0;
	background-color: #F8F8F8;
}
.sec_reason .contents{
	padding-top: 40px;
	padding-bottom: 130px;
}
.sec_reason ul{
	margin-top: 50px;
}
.sec_reason ul::before{
	content: "";
	position: absolute;
	top: 139px;
	left: -103px;
	width: 205px;
	height: 436px;
	background-image: url("../img/biz/reason_cellphone.webp");
	background-repeat: no-repeat;
	background-size: cover;
	overflow: hidden;		
}
.sec_reason li{
	padding: 40px 10px 40px 20px;
	background-color: #EEF1F4;
	border-radius: 8px;
}
.sec_reason li:not(:last-of-type){
	margin-bottom: 30px;
}
.sec_reason li .number{
	width: 100px;
	right: 0;
	top: -24px;
}
.sec_reason h3{
	padding-left: 15px;
	font-size: 2.2rem;
	font-weight: 700;
	line-height: 1.455
}
.sec_reason .icon{
	width: 70px;
}
.sec_reason .text_1{
	color: #D7153C;
	font-size: 1.6rem;
	font-weight: 700;
	margin-top: 18px;
	margin-bottom: 10px;
}
.sec_reason .text_2{
	font-size: 1.6rem;
}
.sec_reason .kome{
	font-size: 10px;
	margin-top: 10px;
}

/*PayBlendが提供すること*/
.sec_offer{
	margin-top: 80px;
	padding-bottom: 120px;
}
.sec_offer .bg_gray{
	z-index: 5;
	margin-top: 30px;
	width: 85%;
	height: 91.5%;
	border-radius: 0 60px 0 0;
	background-color: #F8F8F8;
}
.sec_offer h3{
	width: 220px;
	margin: 60px auto 0;
	background-image: url("../img/biz/offer_titleback.webp");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	text-align: center;
	font-size: 2.2rem;
	font-weight: 700;
}
.sec_offer li{
	width: 315px;
	height: 287px;
	padding-top: 45px;
	background-image: url("../img/biz/offer_bg.png");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	margin: 20px auto 0;
}
.sec_offer .img_wrap{
	height: 50px;
	width: 50px;
	margin: 5px auto 0;		
}
.sec_offer .icon{
	max-height: 50px;
	max-width: 50px;
	display: block;
	text-align: center;	
	object-fit: contain;
}
.sec_offer h4{
	padding-top: 3px;
	font-size: 2.0rem;
	font-weight: 700;
	text-align: center;
}
.sec_offer li .contents{
	padding: 10px 16px;
	font-weight: 500;
	line-break: strict;
}
.sec_offer li .dev{
	margin: 5px auto 0;
	width: 103px;
	background-color: #fff;
	color: #D7153C;
	border: 2px solid #D7153C;
	font-size: 2.0rem;
	text-align: center;
}

/*導入ステップ*/
.sec_step{
	margin-top: 80px;
}
.three_month {
	width: 800px;
	margin: 0px 0 20px 200px;
	text-align: center;
	color: #D7153C;
	font-weight: 700;
	background:
	radial-gradient(circle 5px, #D7153C 98%, transparent 100%) left 0px center / 10px 10px no-repeat, /* 左丸 */
	radial-gradient(circle 5px, #D7153C 98%, transparent 100%) right 0px center / 10px 10px no-repeat,/* 右丸 */
	linear-gradient(#D7153C, #D7153C) left   center / calc(50% - 25px) 2px no-repeat,  /* 左線 */
	linear-gradient(#D7153C, #D7153C) right  center / calc(50% - 25px) 2px no-repeat;
}

.carousel {
	overflow-x: scroll;
	-webkit-overflow-scrolling: touch;
	width: 100%;
	margin: 42px auto 60px;
}
.carousel-container .step_ul{
	display: flex;
	width: 1000px;
}
.carousel-container li{
	width: 192px;
	position: relative;
	padding: 19px 10px 58px 10px;
	background-color: #fff;
	text-align: center;		
}
.carousel-container li:not(:last-of-type){
	margin-right: 10px;
}
.carousel-container li::before{
  content: "";
  position: absolute;
  top: -11px;
	left: 0;
  width: 192px;
  height: 11px;
  background-color: #D7153C;
  border-radius: 8px 8px 0 0;
}
.carousel-container .step_number{
	font-size: 2.6rem;
	font-weight: 700;
	position: relative;
	display: inline-block;
	color: #D7153C;
}
.carousel-container .step_number::after{
  content: "";	
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #D7153C;
}
.carousel-container .step_title{
	font-size: 1.8rem;
	font-weight: 700;
	margin-top: 36px;
	margin-bottom: 21px;
}
.carousel-container .step_text{
	text-align: left;
	font-size: 1.6rem;
}








/*導入事例*/
.sec_case .bg_gray{
	top: 120px;
	z-index: 5;
	width: 85%;
	height: 88%;
	right: 0;
	border-radius: 60px 0 0 0;
	background-color: #F8F8F8;
}
.sec_case .contents{
	padding-top: 40px;
	padding-bottom: 90px;
	z-index: 10;
}
.sec_case .mt_case{
	margin-top: 60px;
}
.sec_case .wrap_case{
	background-color: #fff;
	padding: 20px 20px 34px;
	margin-bottom: 27px;
	margin-top: 30px;
}
.sec_case .wrap_case .flex_row{
	margin-bottom: 15px;
}
.wrap_case .img{
	width: 100px;
	margin-right: 20px;
}
.wrap_case .sp_container{
	width: 150px;
}
.wrap_case .sp_container .day{
	font-size: 1.4rem;
	text-align: center;
	font-weight: 500;
	padding-bottom: 4px;
}
.wrap_case .sp_container .name{
	font-size: 1.6rem;
	font-weight: 700;
	text-align: center;
}
.wrap_case .text{
	padding: 28px 18px 22px;
	background-color: #F7F8F8;
	font-weight: 500;
	border-radius: 27px;
}
.sec_case .btn_3{
	width: 280px;
	margin: auto;
	font-size: 1.6rem;
	border-radius: 50px;
	justify-content: center;
	border: 2px solid #D7153C;
	text-align: center;
	font-family: "Noto Sans CJK JP", sans-serif;
}
.sec_case .circle_arrow::before{
	width: 24px;
	height: 24px;
}
.sec_case .circle_arrow::after{
	left: 6px;
}

/*オリジナルカード*/
.sec_original .container{
	margin-top: 10px;
}
.sec_original .container::after{
  content: "";
  position: absolute;
  top: -18px;
  left: -12px;
  width: 100px; 
	height: 100px;
	background-image: url("../img/biz/originalcard_icon.webp");
	background-repeat: no-repeat;
	background-size: contain;
	overflow: hidden;
}
.sec_original .text_wrap{
	background-color: #fff;
	padding: 20px 16px 60px;
}
.sec_original .text_wrap .text_1{
	font-size: 2.0rem;
	font-weight: 700;
	margin-bottom: 16px;
	text-align: center;
}
.sec_original .text_wrap .text_2{
	text-align: center;
	color: #fff;
	font-weight: 700;
	background-color: #D7153C;
	width: 277px;
	padding: 6px 0 6px 0;
	border-radius: 4px;
	margin: auto;
	font-size: 1.2rem;
}
.sec_original .text_wrap .text_3 span{
	color: #D7153C;
	text-decoration: underline solid #D7153C 1px;
	font-weight: 700;
}
.sec_original .text_wrap .line{
	display: inline-block;
	width: 100%;
  padding-bottom: 1px; 
  background-image: repeating-linear-gradient(
    to right,
    #9F9F9F 0 5px,   /* 点の色の長さ */
    transparent 5px 10px  /* 空白の長さ */
  );
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: auto 1px;
}


/*よくあるご質問*/
.sec_faq{
	margin-top: 80px;
	margin-bottom: 80px;
}
.sec_faq .question{
	margin-bottom: 20px;
	display: flex;
}
.sec_faq li{
	margin-bottom: 30px;
}
.sec_faq .question .q{
	width: 28px;
	height: 28px;
	margin-right: 13px;
}
.sec_faq .question .text{
	font-size: 1.6rem;
	font-weight: 700;
	flex: 1;
}
.sec_faq .answer{
	background-color: #fff;
	border-radius: 0 20px 20px 20px;
	padding: 20px 20px 28px;
	font-weight: 500;
}
/*今すぐ始めませんか？*/
.sec_inquiry{
	background-color: #D7153C;
	color: #fff;
	border-radius: 60px 0 0 0;
	padding-top: 35px;
	text-align: center;	
}
.sec_inquiry h2{
	font-size: 2.2rem;
	font-weight: 700;
	padding-bottom: 17px;
	letter-spacing: -0.04em;
}
.sec_inquiry .text{
	margin-bottom: 20px;
	font-weight: 500;
}
.sec_inquiry .btn_3{
	margin: 0 auto 10px;
	width: 335px;
}
.sec_inquiry .line{
	height: 1px;
	width: 100%;
	margin-top: 40px;
	background-color: #fff;
}

/*---Footer-----*/
footer{
	background-color: #D7153C;
	color: #fff;
	padding-top: 30px;
	padding-bottom: 40px;
}
footer a{
	color: #fff;
}
footer img{
	width: 106px;
	display: block;
}
footer .btn_1{
	background-color: #fff;
	color: #D7153C;
	display: block;
	margin: 0;
}
footer ul{
	display: flex;
	flex-wrap: wrap;
	margin-top: 16px;	
	font-weight: 700;
}
footer li{
	margin-bottom: 10px;
}
footer .line{
	background-color: #fff;
	height: 24px;
	width: 1px;
	margin: 0px 12px;
}
footer small{
	font-size: 1.0rem;
}

/*---------------------------
*下層ページ
---------------------------*/
/*法人お問い合わせフォーム*/
.sub_inquiry{
	padding-top: 50px;
}
.sub_inquiry .form{
	margin-top: 36px;
	position: relative;
  z-index: 0;	
}
.sub_inquiry .form p{
	margin-top: 20px;
}
.sub_inquiry .form_item{
	font-weight: 700;
	font-size: 1.6rem;
}
.sub_inquiry .required{
	display: inline-block;
	font-size: 1.0rem;
	width: 42px;
	height: 16px;
	line-height: 14px;
	text-align: center;
	color: #D7153C;
	background-color: #fff;
	border: 1px solid #D7153C;
	border-radius: 12px;
	margin-left: 12px;	
}
.sub_inquiry .wpcf7-text,
.sub_inquiry .wpcf7-textarea{
	width: 100%;
	max-width: 600px;
	height: 40px;
	line-height: 38px;
  border: 1px solid #CCCCCC;
	margin-top: 8px;
	font-size: 1.6rem;
	padding: 10px;
}
.sub_inquiry .wpcf7-textarea{
	height: 300px;
	line-height: 1.5;
}
.sub_inquiry .agree p{
	display: inline;
}
.sub_inquiry .agree{
	margin-top: 20px;
}
.sub_inquiry .box_check{
	font-weight: 700;
	margin: -15px 0 0 -1em;
	font-size: 1.6rem;
}
.sub_inquiry .btn_2{
	display: block;
	margin: 20px auto 50px;
	border: none;
  padding-top: 4px;
}
.sub_inquiry .btn_2:hover{
	opacity: 0.5;
	transform: scale(0.95);
	cursor: pointer;
}

 /*お問い合わせ確認画面*/
div#wpcf7cpcnf{
  background: #fff !important;
}
#wpcf7cpcnf table {
  border: none;
  margin: 0 auto 80px;
  text-align: left;
  width: 100%;
  table-layout: fixed;
  word-break: break-all;
}
#wpcf7cpcnf table th {
  border: 1px solid #D0D0D0; 
  padding: 5px;
}
#wpcf7cpcnf table td {
  border: 1px solid #D0D0D0; 
  padding: 5px;  
}
#wpcf7cpcnf table tr:nth-child(even) td,
#wpcf7cpcnf table tr:nth-child(even) th{
  background: #F5F5F5;
}
/* 確認画面内ボタン */
div.wpcf7cp-btns{
  display: flex;
  max-width: 350px;
  margin: 0 auto 100px;
}
#wpcf7cpcnf button {
  display: block;
  font-weight: 700;
  font-size: 1.6rem;
  background-color: #fff;
  color: #333333;
  border-radius: 8px;
  margin: auto;
  line-height: 50px;
  box-shadow: 0 13px 36px rgb(0 0 0 / 16%);
  border: none;
  padding-right: 30px;
  padding-left: 30px;
}
#wpcf7cpcnf button.wpcf7cp-cfm-submit-btn{
	background-color: #D7153C;
	color: #fff;
}
#wpcf7cpcnf button:hover{
	opacity: 0.5;
	transform: scale(0.95);
	cursor: pointer;	
}

/*法人お問い合わせThanks画面*/
.sub_inquiry_thanks h2{
	padding-top: 50px;
	margin-bottom: 30px;
	font-size: 1.8rem;
	font-weight: 700;
}
.sub_inquiry_thanks .btn_2{
	display: block;
	margin: 60px auto 80px;
}


/*--共通--*/
.breadcrums{
	display: flex;
	font-size: 1.2rem;
	font-weight: 600;
	padding-bottom: 30px;
}
.breadcrums a{
	text-decoration: underline;
	color: #D7153C;
}
.breadcrums .arrow{
	padding: 0 5px;
}
.breadcrums.sp_bottom{
	margin-top: 100px;
}
/*--法人：お知らせ一覧--*/
.sub_news_archive{
	padding-top: 50px;
}
.sub_news_archive li{
	border-bottom: 1px solid #707070;
	padding-bottom: 15px;
	margin-bottom: 20px;
}
.sub_news_archive time{
	font-weight: 600;
}
.sub_news_archive .title{
	display: block;
	font-size: 1.6rem;
	font-weight: 600;
	padding: 3px 0 6px;
}
.sub_news_archive .wp-pagenavi{
	display: flex;
	justify-content: center;
	margin-top: 53px;
}
.wp-pagenavi a, .wp-pagenavi span {
	display: block;
	color: #FFF;
	background-color: #707070;
	text-align: center;	
	border-radius: 14px;
	margin-right: 12px;
	width: 28px;
	height: 28px;
	line-height: 28px;
	padding-left: 1px;
}
.wp-pagenavi a:hover{
  opacity: 0.5;
  transform: scale(0.95);
}
.wp-pagenavi span.current{
	background-color: #D7153C;
  }


/*--法人：お知らせ個別ページ--*/
.sub_news_single .wrap_inner{
	padding-right: 10px;
	padding-left: 10px;
	margin-bottom: 43px;
}
.sub_news_single h1{
	padding-top: 45px;
	margin-bottom: 34px;
	font-size: 2.4rem;
	font-weight: 700;
}
.sub_news_single time{
	color: #868686;
	font-weight: 700;
	margin-bottom: 10px;
}
.sub_news_single .contents{
	font-weight: 600;
}
.sub_news_single .contents a{
	color: #D7153C;
	text-decoration-line: underline;
	word-break: break-all;
}
.sub_news_single .contents a:hover{
	opacity:0.6;	
}


/*404*/
.sec_404{
	padding-top: 47px;
	padding-bottom: 81px;
	letter-spacing: 0;
}
.sec_404 h1{
	font-size: 1.8rem;
	font-weight: 700;
	margin-bottom: 27px;
}
.sec_404 .text{
	margin-bottom: 40px;
}
.sec_404 .btn_3{
	width: 305px;
	margin: auto;
	font-size: 1.6rem;
}
.sec_404 li:first-child{
	margin-bottom: 18px;
}


/*---------------------------
*レスポンシブ
---------------------------*/
@media screen and (min-width:768px){
	
	/*アンカーリンクの位置調整*/
	html{	scroll-padding-top: 70px;}
  
	/*---Header-----*/
	.wrap_header_pc{
    height: 70px;
    background-color: #fff;
		display: flex;
		justify-content: space-between;
		align-items: center;
	} 
  .header_logo img{
    height: 24px;
		margin-top: 8px;
		margin-left: 0;
  }
	.header_biz .btn_1{
		margin: 0;		
	}
  .header_nav_list{
    display: flex;
    position: static;
    margin-bottom: 0;
		padding: 0;
  }
	.header_nav_list li{
		margin-bottom: 0;
	}
  .header_nav_list li a{
    font-size: 1.3rem;
    font-weight: 700;
		padding: 4px 0;
		border-bottom: none;
		margin-bottom: 0;
  }
  .header_nav_list li:not(:last-of-type){
    margin-right: 18px;
  }  
  .header_nav_list li a:hover{
    position: relative;
    display: inline-block;
  }
  .header_nav_list li a:hover:before{
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0px;/*線の上下位置*/
    width: 100%;
    height: 2px;
    transform: translateX(-50%);	
		background-color: #D7153C;
    border-radius: 2px;
  }
  .header_nav_list li a.current{
    color: #D7153C;
  }
  
 /*---Home 各Section-----*/ 
	/*MainVisual*/
	.sec_mainvisual .mainvisual{
		background-image: url("../img/biz/mainvisual_pc.webp");
		height: 650px;
		background-position: top;
	}
	.sec_mainvisual h1 .title{
		width: 50vw;
		padding-top: 39px;
		margin: auto;
		max-width: 642px;	
	}
	.sec_mainvisual .title_p1{
		text-align: center;
		font-size: 2.0rem;
		line-height: 1.8;
		padding-bottom: 42px;
	}
	.img_cellphone{
		height: 40vw;
		max-height: 520px;
		top: 145px;
		left: 68vw;
	}
	.btn_biz_margin{
		width: auto;
	}
	.btn_biz{
		font-size: 2.2rem;
		padding: 27px 0 29px 34px;
		width: 390px;
		border-radius: 48px;
		margin: auto;
	}
	.btn_biz .text{
		padding-right: 37px;
	}
	.main_link{
    margin: 20px auto 0;
    max-width: 377px;		
		background-color: transparent;
	}
	.main_link a{
		font-size: 1.4rem;		
	}
	.mainvisual_news{
		border-radius: 8px;
		padding: 30px 0 26px 0px;
		margin: 0 7.5% 0;
	}
	.mainvisual .btn_3{
		width: 211px;
		font-size: 2.0rem;
		border-radius: 30px;
	}
	.mainvisual_news .title{
		margin-right: 56px;
	}	
	.mainvisual_news .title .up{
		font-size: 1.4rem;
	}
	.mainvisual_news .title .down{
		font-size: 2.4rem;
    line-height: 1.1;
	}
	.mainvisual_news ul{
		max-width: 640px;
	}
	.mainvisual_news time{
		font-size: 1.6rem;
		line-height: 16px;
		padding: 4px 16px;
		border-radius: 13px;
		margin-right: 12px;
	}
	.mainvisual_news p{
		font-size: 1.8rem;
	}	
	.mainvisual_news .line{
		width: 640px;
		margin-top: 8px;
		margin-bottom: 8px;
	}
	.mainvisual_news .end{
		justify-content: space-between;
	}
	.mainvisual_news .link{
		font-size: 1.8rem;
		margin-bottom: 8px;
		align-self: flex-end;
	}
	
	/*PayBlendとは*/
	.sec_about{
		margin-top: 80px;
	}
	.wrap_h2{
		text-align: center;
	}
	.wrap_h2 p{
		font-size: 1.4rem;
	}
	.wrap_h2 h2{
		font-size: 3.6rem;
		padding-bottom: 12px;
		padding-right: 0;
		margin-bottom: 30px;
	}	
	.wrap_h2 h2::after{
		width: 160px;
		left: 50%;
		transform: translateX(-50%); 
		border-bottom: 6px solid #D7153C;		
	}
	.text_title_under{
		text-align: center;
		font-size: 2.4rem;
		font-weight: 700;
	}	
	.sec_about_container{
		margin-top: 40px;
	}
	.sec_about_box{
		margin: 0;
	}
	.sec_about_box:not(:last-of-type){
		margin-right: 20px;
		margin-bottom: 0;
	}	
	.sec_about_box h3{
		font-size: 2.2rem;
	}
	.sec_about_box .text_detail{
		font-size: 1.6rem;
		font-weight: 500;
	}

	.red_triangle{
		margin-top: 32px;
	}		
	.sec_about .bg_gray{
		height: 109%;
		margin-top: 28px;
		width: 78%;
	}
	
	/*期待効果*/
	.sec_effect{
		margin-bottom: 220px;
	}
	.sec_effect::after{
		width: 54vw;
		background-image: url(../img/biz/effect_card_pc.webp);
		bottom:145px;
		right: -17vw;
		max-width: 682px;
		height: 548px;	
	}
	.sec_effect .effect_theme{
		font-size: 3.2rem;
		max-width: 545px;
		margin-top: 70px;
	}
	.sec_effect .text_cause{
		font-size: 2.4rem;
		line-height: 1.54;
		font-weight: 500;
	}
	.sec_effect .effect_wrap{
		max-width: 680px;
    margin-top: 60px;	
	}
	.sec_effect .icon{
		width: 190px;
		padding-right: 33px;
		padding-left: 17px;
	}
	.sec_effect .effect_title{
		font-size: 2.8rem;
		margin-top: 15px;
		margin-bottom: 15px;
	}
	.sec_effect .effect_detail span{
		font-weight: 700;
	}
	.sec_effect .line{
		margin-top: 30px;
	}
	.sec_effect .text_conc{
		text-align: center;
		font-size: 2.4rem;
		margin-top: 60px;
	} 
	.sec_effect .text_conc p{
		padding: 0 5px 0 9px;
		font-size: 2.4rem;
	}
	
	/*導入形態*/
	.sec_models{
		margin-top: 120px;
	}
	.sec_models{
		margin-top: 60px;
	}
	.sec_models ul{
		justify-content: center;
		gap: 20px;
		margin-top: 60px;
	}
	.sec_models li{
		width: 320px;
	}
	.sec_models li:not(:last-of-type){
		margin-bottom: 0px;
/*		margin-right: 20px;*/
	}
	.sec_models h3{
		font-size: 2.4rem;
	}
	.sec_models .h3_sub{

	}
	.sec_models .text_detail{
		background-color: #fff;
		padding: 48px 27px 30px;
		text-align: left;
	}
	.sec_models .text_detail::before{
		border-right: 160px solid transparent;
		border-left: 160px solid transparent;	
	}
	.sec_models .link_issue{
		margin-top: 37px;
		font-size: 1.4rem;
	}
	.sec_models .link_issue::before{
    width: 20px;
    height: 30px;		
	}	
	
	/*選ばれる理由*/
	.sec_reason .bg_gray{
		width: 83%;
		height: 70%;
		top: 220px;
	}
	.sec_reason .contents{
		padding-top: 80px;
		padding-bottom: 215px;
	}
	.sec_reason .text_700{
		margin: auto;
	}
	.sec_reason .img_service{
		margin: 50px auto 0;
	}

	.sec_reason .number{
		width: 100px;
		margin-bottom: -8px;	
	}
	.sec_reason h3{
		font-size: 2.4rem;
		padding-top: 12px;
		padding-bottom: 14px;
		border-radius: 20px 20px 0 0;
	}
	.sec_reason .text{
		text-align: center;
		padding: 17px 18px 22px;
	}
	.sec_reason ul{
		padding: 0 70px;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 30px;
		position: relative;
		margin-top: 80px;
		margin-right: 40px;
	}
	.sec_reason ul::before{
		top: -28px;
		left: -287px;
		width: 334px;
		height: 717px;
	}	
	.sec_reason li:not(:last-of-type){
		margin-bottom: 0;
	}
	.sec_reason li{
		margin-bottom: 12px;
		max-width: 420px;
		width: 50vw;	
	}
	
	/*PayBlendが提供すること*/
	.sec_offer{
		margin-top: 120px;
		padding-bottom: 200px;	
		}
	.sec_offer .bg_gray{
		width: 88%;
		height: 81%;
		margin-top: 55px;
	}	
	.sec_offer h3{
		width: 417px;
		font-size: 3.2rem;
    margin-top: 120px;		
	}
	.sec_offer .pc_flex{
		flex-wrap: wrap;
	}
	.sec_offer .kessai_wrap{
		flex-wrap: nowrap;
	}
	.sec_offer .kessai_ul{
		width: 64vw;
		max-width: 680px;
		gap: 26px;		
	}
	.sec_offer .kessai_wrap::before{
		content: "";
		position: absolute;
		top: 20px;
		right: 0;
		width: 33vw;
		max-width: 427px;
		height: 48vw;
		max-height: 600px;
		background-image: url(../img/biz/offer_cellphone.webp);
		background-position: top;
		background-repeat: no-repeat;
		background-size: cover;
		overflow: hidden;		
	}
	.sec_offer .non_box{
		width: 315px;
/*		height: 500px;*/
	}
	.sec_offer .support_ul{
		gap: 26px;
	}
	
	/*導入ステップ*/
	.sec_step{
		margin-top: 120px;
	}
	.carousel{
		overflow-x: auto;
		padding-bottom: 14px;
	}
	.carousel-item{
		margin-left: 0;
		max-width: 320px;
	}
	.carousel-item:not(:last-of-type){
		margin-right: 8px;
	}		
	
	/*導入事例*/
	.sec_case .bg_gray{
		width: 73%;
		background-color: #fff;
		top: 185px;
    height: 77%;
	}
	.sec_case .contents{
		padding-top: 50px;
		padding-bottom: 185px;
	}
	.sec_case .wrap_h2{
		margin-bottom: 50px;
	}
	.sec_case .wrap_case{
		padding: 30px 0px 20px 36px;
		margin: 0px auto 20px;
		max-width: 900px;
		background-color: #EEF1F4;
	}
	.sec_case .wrap_case .flex_row{
		margin-bottom: 0px;
	}
	.sec_case .img{
		width: 216px;
		height: auto;
	}
	.sec_case .text{
		max-width: 596px;
		padding: 14px 20px 30px;
		background-color: #fff;
	}
	.sec_case .pc_container{
		display: flex;
		margin-top: 6px;
		align-items: center;		
	}	
	.sec_case /*.pc_container*/ .logo{
		height: 24px;
	}	
	.sec_case /*.pc_container */.line{
		height: 24px;
		width: 2px;
		background-color: #707070;
		margin-right: 26px;
		margin-left: 28px;
	}		
	.sec_case /*.pc_container */.name{
		font-size: 2.0rem;
		font-weight: 700;
	}	
	.sec_case /*.pc_container */.day{
		font-size: 1.8rem;
		font-weight: 500;
	}
	.sec_case .pc_pt2{
		margin-left: 24px;
    margin-top: 6px;
	}
	.sec_case .btn_3{
		width: 503px;
		font-size: 2.0rem;
		border-radius: 26px;
		padding: 6px 0;
    margin-right: 50px;
	}
	/*オリジナルカード発行*/
	.sec_original .container{
		margin-top: 30px;
	}
	.sec_original .container::after{
		top: -53px;
		left: -30px;
		width: 140px;
		height: 140px;
	}
	.sec_original .img_wrap{
		padding: 20px 0 20px 20px;
		background-color: #fff;
		flex: 1;
	}

	.sec_original .text_wrap .text_1{
		text-align: left;
		font-size: 2.4rem;
	}
	.sec_original .text_wrap .text_2{
		font-size: 1.2rem;
		max-width: 274px;
		flex:1;
		margin-left: 0;
	}
	
	/*よくあるご質問*/
	.sec_faq{
		margin-top: 120px;
		margin-bottom: 160px;
	}
	.sec_faq ul{
		margin-top: 24px;
	}
	.sec_faq .question .q{
		width: 40px;
		height: 40px;
		margin-right: 14px;
	}
	.sec_faq .question .text{
		font-size: 2.4rem;
	}	
	.sec_faq .answer{
		font-size: 1.8rem;
		padding: 20px 54px 23px 54px;
	}
	/*今すぐ始めませんか？*/
	.sec_inquiry{
		padding-top: 64px;
	}
	.sec_inquiry h2{
		font-size: 3.2rem;
		text-align: center;
	}
	.sec_inquiry .text{
		text-align: left;
		font-size: 2.2rem;
		margin-bottom: 30px;
	}
	.sec_inquiry .pc_flex{
		justify-content: center;
		gap: 17px;
	}
	.sec_inquiry .btn_3{
		font-size: 2.0rem;
		width: 50vw;
		max-width: 423px;
		margin: 65px 0 60px;
		border-radius: 30px;
	}
	/*footer*/
	footer{
		padding-top: 42px;
		padding-bottom: 62px;
	}
	footer img{
		width: 168px;
	}
	footer .pc_flex{
		justify-content: space-between;
		margin-right: 60px;
	}
	footer .line{
		margin: 0 28px;
	}
	footer .btn_1{
		font-size: 1.6rem;
		width: 187px;
	}
	footer small{
		display: inline-block;
		font-size: 1.2rem;
		margin-top: 34px;
	}

	
  /*---------------------------
  *下層ページ
  ---------------------------*/
	
	/*共通*/	
	.breadcrums{
		padding-top: 40px;
		padding-bottom: 80px;
	}
	
	/*法人お問い合わせフォーム*/
	.sub_inquiry{
		padding-top: 0px;
	} 
	.sub_inquiry .breadcrums{
		padding-top: 40px;
		padding-bottom: 80px;
	}
	.sub_inquiry .form p{
		margin-top: 30px;
	}
	.sub_inquiry .form_item{
		font-size: 2.2rem;	
	}	
	.sub_inquiry .required{
		font-size: 1.4rem;
		width: 54px;
		height: 24px;
		line-height: 20px;	
		border: 2px solid #D7153C;
	}
	.sub_inquiry .wpcf7-text,
	.sub_inquiry .wpcf7-textarea{
		max-width: 1000px;
		height: 50px;
		margin-top: 10px;
		padding-left: 10px;
  	font-size: 18px;
	}
	.sub_inquiry .wpcf7-textarea{
		height: 280px;
	}	
	.sub_inquiry .box_check{
		margin: 20px 0 80px;
		font-size: 2.2rem;
	}
	.sub_inquiry .btn_2{
		width: 100%;
		max-width: 1000px;
		font-size: 2.8rem;
		height: 100px;
		line-height: 100px;
		margin-bottom: 160px;
		padding-top: 0;
	}
	
	/*法人お問い合わせThanks画面*/
	.sub_inquiry_thanks h2{
		padding-top: 77px;
		font-size: 2.8rem;
	}
	.sub_inquiry_thanks .contents{
		line-height: 2.0;
		font-size: 1.8rem;
	}	
	.sub_inquiry_thanks .btn_2{
		margin: 70px auto 160px;
		width: 100%;
		font-size: 2.8rem;
		line-height: 100px;
		height: 100px;
		padding-top: 0;
	}
		
	/*--法人：お知らせ一覧--*/
	.sub_news_archive{
		padding-top: 0px;
		padding-bottom: 118px;
	}
	.sub_news_archive time{
		font-size: 1.8rem;
	}
	.sub_news_archive a{
		font-size: 1.8rem;
	}	
	.sub_news_archive .page_next{
		margin-top: 64px;
	}	
	.sub_news_archive .page_next p{
		font-size: 1.9rem;
		width: 36px;
		height: 36px;
		line-height: 38px;
		text-align: center;
		border-radius: 18px;
		margin-right: 20px;
	}	

		/*--法人：お知らせ個別ページ--*/	
	.sub_news_single .wrap_inner{
		padding-right: 20px;
		padding-left: 20px;
		margin-bottom: 120px;
	}
	.sub_news_single h1{
		padding-top: 68px;
		margin-bottom: 45px;
		font-size: 3.6rem;
	}
	.sub_news_single time{
		font-size: 1.4rem;
	}
	.sub_news_single .contents{
		font-size: 1.8rem;
	}

	/*404*/
	.sec_404{
		padding-top: 80px;
		padding-bottom: 140px;
	}
	.sec_404 li:first-child{
		margin-bottom: 0px;
		margin-right: 20px;
	}
  
}

@media screen and (min-width:768px) and ( max-width:1024px) {
	.tablet{
		display: block;
	}
	.header_nav_list{
		padding-right: 10px;
		padding-left: 10px;
	}
  .header_nav_list li:not(:last-of-type){
    margin-right: 12px;
  }  	
  .header_nav_list li a{
    font-size: 1.3vw;
  }	
	.header_logo img{
		height: 20px;
		margin-left: 0;
	}
  .header_nav_list li:not(:last-of-type){
    margin-right: 12px;
  }  
	.header_biz .btn_1{
		font-size: 1.2rem;
    line-height: 1.3;
    width: 100px;
    padding-top: 8px;
	}
	.sec_mainvisual .mainvisual{
		padding-bottom: 124px;
	}
	.sec_mainvisual h1 .title{
		width: 455px;
		padding-top: 100px;
	}
	.img_cellphone{
		height: 340px;
    top: 165px;
	}
	.mainvisual_news .title {
		margin-right: 36px;
	}	
	.mainvisual_news ul{
		max-width: 64vw;
	}
	.mainvisual_news .line{
		width: 64vw;
	}
  
  
}


