@charset "UTF-8";
/** ========================================
 * order 画像パス/content/dam/nttcom/hq/jp/business/sdpf/service/icms/img/
 * ====================================== */
.icms_ttl_h2{
  margin-bottom: 32px;
}
.icms_ttl_h2 span{
  display: block;
  margin-bottom: 18px;
  font-size: 22px;
}
.casestudy{
  margin: 0 0 142px;
}
.casestudy_list{
  display: flex;
  justify-content: space-between;
}
.casestudy_list_item{
  width: calc(50% - 15px);
  border: 1px solid #ccc;
}
.casestudy_list_item a{
  display: flex;
  color: #333;
}
.casestudy_list_item_img{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
}
.casestudy_list_item_img img{
  width: 85%;
}
.casestudy_list_item_detail{
  width: calc(100% - 150px);
  padding: 15px 18px;
  background: #ecf7fd;
  font-weight: bold;
}
.casestudy_list_item_txt{
  font-size: 18px;
  line-height: 1.55;
}
.casestudy_list_item_company{
  margin: 8px 0 0;
  color: #013d89;
  font-size: 15px;
}

@media screen and (max-width: 768px) {
  .casestudy{
    margin-bottom: 88px;
  }
  .casestudy_list{
    display: block;
  }
  .casestudy_list_item{
    width: 100%;
  }
  .casestudy_list_item:nth-child(n + 2){
    margin-top: 20px;
  }
  .casestudy_list_item_img{
    width: 30%;
  }
  .casestudy_list_item_detail{
    width: 70%;
  }
  .casestudy_list_item_txt{
    font-size: 16px;
  }
  .casestudy_list_item_company{
    font-size: 14px;
  }
}

/* -----------------------------------------
	2023/10
----------------------------------------- */
.ind-1 {
	padding-left:1em;
	text-indent:-1em;
}


/*オプション/連携機能 アコーディオン*/
/*ベース*/
.toggle {
	display: none;
}
.Label {		/*タイトル*/
	display: block;
}
.Label::before{		/*タイトル横の矢印*/
	content:"";
	width: 10px;
	height: 10px;
	border-top: 2px solid #0d4483;
	border-right: 2px solid #0d4483;
	-webkit-transform: rotate(45deg);
	position: absolute;
	top:calc( 50% - 5px );
	right: 20px;
	transform: rotate(135deg);
}
.Label,
.content {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}
.content {		/*本文*/
	height: 0;
	margin-bottom:10px;
	padding:0 20px;
	overflow: hidden;
}
.toggle:checked + .Label + .content {	/*開閉時*/
	height: auto;
	padding:20px ;
	transition: all .3s;
}
.toggle:checked + .Label::before {
	transform: rotate(-45deg) !important;
}

/*タイトル3カラムデザイン*/
.option_acc_ttl{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	/*justify-content: space-between;*/
	/*align-items: center;*/
	border:1px solid #0d4483;
}

.option_acc_ttl_arrow{
	width:50px;
	text-align:center;
	background:#0d4483;
	display: flex;
	justify-content: center;
	align-items: center;
}
.option_acc_ttl_arrow img{
	width:100%;
}

.option_acc_ttl_head{
	width:35%;
	min-height:60px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin: 0px;
	padding:0.5em 2em 0.5em 0em;
	box-sizing: border-box;
	text-align: center;
	overflow: hidden;
	color:#FFF;
	font-size:16px;
	font-weight:bold;
	line-height:1.5;
}
.option_acc_ttl_head::before,
.option_acc_ttl_head::after {
	position: absolute;
	content: "";
}
.option_acc_ttl_head::before {
	top: 50%;
	right: -1.5em;
	z-index: -1;
	transform: translateY(-50%) scaleX(0.5) rotate(45deg);
	width: 12em;
	height: 12em;
	/*border: 0.3em solid #000;*/
	border-left: none;
	border-bottom: none;
	background:#0d4483;
}
.option_acc_ttl_head::after {
	width: 90%;
	top: 0px;
	left: 0px;
	bottom: 0px;
	z-index: -1;
	/*border: 0.2em solid #000;*/
	border-right: none;
	background:#0d4483;
}

.option_acc_ttl_lead{
	color:#0d4483;
	width:calc(100% - 50px - 35%);
	font-size:16px;
	line-height:1.5;
	text-align:center;
	padding-right:35px;
	display: flex;
	justify-content: center;
	align-items: center;
}

@media screen and (max-width: 480px) {
	.option_acc_ttl_arrow{
		width:20px;
	}
	.option_acc_ttl_head,
	.option_acc_ttl_lead{
		font-size:14px;
		text-align:left;
	}
	.option_acc_ttl_lead{
		padding-right:10px;
	}
}


/*導入事例*/
.casestudy_list{
	flex-wrap: wrap;
}
.casestudy_list_item{
	margin: 0 0 30px;
}


/*選べる2つの支払方法*/
.select_ttl{
	font-size:20px;
	font-weight:bold;
	line-height:1.5;
	text-align:center;
	margin:0;
}

.select_wrap{
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	/*align-items: center;*/
	padding:10px 20px 20px;
	border-radius:10px;
	background-color:#0d4483;
	margin:30px 0;
}

.select_item{
	width:calc((100% - 20px) / 2);
}
@media screen and (max-width: 480px) {
	.select_item{
		width:100%;
	}
}

.select_item_ttl{
	margin:0 0 10px;
	text-align: center;
}

.select_item_ttl h5{
	position: relative;
	color:#FFF;
	font-size:18px;
	font-weight:bold;
	line-height:1.5;
	text-align:center;
	display:inline-block;
	margin:0;
}

.select_new::before {
    position: absolute;
    content: "NEW";
    background-color: crimson;
    border-radius:5px;
    top: -25px;
    left: -55px;
    padding: 5px 10px;
    font-size: 14px;
}
@media screen and (max-width: 480px) {
	h5.select_new{
		margin-top:35px;
	}
}

.select_box{
	background-color:#FFF;
	padding:15px;
	font-size:16px;
	line-height:1.5;
	text-align:center;
	display: flex;
	justify-content: center;
	align-items: center;
}