/* マーカー付きの見出し */

p.sbc-pr-title {
	text-align: center;
	font-weight: bold;
	font-size: 25px;
	margin-bottom: 50px;
	text-decoration: underline;
	text-underline-offset: -0.2em;
	text-decoration-thickness: 0.5em;
	text-decoration-color: rgba(255, 228, 0, 0.4);
	text-decoration-skip-ink: none;
}

h3.sbc-pr-title {
	text-align: center;
	font-weight: bold;
	font-size: 25px;
	line-height: 2.0;
	/* margin-bottom: 50px; */
	padding-top: 40px;
	margin-top: 0;
	text-decoration: underline;
	text-underline-offset: -0.2em;
	text-decoration-thickness: 0.5em;
	text-decoration-color: rgba(255, 228, 0, 0.4);
	border-left: 0px solid rgb(var(--image-color-accent));
	text-decoration-skip-ink: none;
}


.sbc-pr-block {
	margin: 70px 0;
}

.sbc-pr-block-flex {
	display: flex;
	justify-content: space-around;
	margin: 50px 0;
}

.sbc-pr-block-flex>div {
	width: 100%;
}

.sbc-pr-block-flex>div img {
	max-width: 200px;
	width: 100%;
}

.sbc-pr-block-flex>div p {
	width: 90%;
}

.sbc-pr-block-flex>div p.flex-item-title {
	font-size: 18px;
	text-align: center;
	font-weight: bold;
	width: 100%;
}

.sbc-pr-text {
	margin-top: 30px;
}

.sbc-pr-text h3 {
	line-height: 1.7;
	font-size: 20px;
	text-align: left;
}

/* PRエリア　タイトル付きの囲みボックス */
.sbc-pr-titlebox {
	margin: 70px 30px;
	padding: 0.5em 0.5em 40px;
	border-radius: 10px;
	background-color: #ecece7;
}

.sbc-pr-titlebox h3 {
	font-weight: bold;
	padding-bottom: 0.5em;
	text-align: center;
	position: relative;
	font-size: 23px;
	margin-bottom: 40px;
}

.sbc-pr-titlebox h3::after {
	content: '';
	background-color: #ff9751;
	width: 2em;
	height: 5px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}

.sbc-pr-titlebox h4 {
	font-weight: bold;
	margin: 0 20px;
	padding-top: 20px;
}

/* 文字強調用 */
.strong-option {
	font-weight: bold;
	font-size: 150%;
	color: #ff9751;
}

/* PRエリア　タイトル付きの囲みボックスの中のリスト */
.sbc-pr-titlebox ul li {
	border-bottom: dashed 2px #fff;
	padding-left: 20px;
	font-size: 18px;
	line-height: 1.5;
	padding-left: 1.3em;
	text-indent: -1.0em;
	margin-bottom: 10px;
}

.sbc-pr-titlebox ul {
	list-style: none;
	max-width: 700px;
	margin: auto;
	padding: 0;
}

.sbc-pr-titlebox ul li:before {
	content: '';
	display: inline-block;
	width: 0.5em;
	height: 0.5em;
	border-radius: 50%;
	vertical-align: middle;
	margin-right: 0.5em;
	background: #666;
}

/* PRエリア　タイトル付きの囲みボックスの中flex */
.sbc-flex {
	display: flex;
}

.sbc-flex>div {
	flex-basis: 50%;
	align-items: baseline;
}

/* ホバー時の画像拡大エフェクト */
.zoom-in-img {
	max-width: 340px;
	margin: auto;
	padding: 0;
	overflow: hidden;
	cursor: pointer;
	padding-left: 10px;
	margin-top: 20px;
}

.zoom-in-img img {
	width: 100%;
	height: 100%;
}

.zoom-in-img img {
	transition: .3s ease-in-out;
}

.zoom-in-img:hover img {
	transform: scale(1.1);
}

/* 補足情報ボックス */
.sbc-explanation-block {
	border: double 2px rgb(var(--image-color-accent));
	padding: 20px 30px;
	margin-top: 80px;
}

.sbc-explanation-block h3 {
	text-align: left;
	color: rgb(var(--image-color-accent));
	margin-top: 10px;
}

.sbc-explanation-block p {
	padding: 0;
	margin-bottom: 10px;
}

.sbc-explanation-block .common-parallel-txt {
	flex-basis: 60%;
}

.sbc-explanation-block .common-parallel-img {
	flex-basis: 40%;
}

.sbc-explanation-block .common-parallel-wrap {
	gap: 20px;
}

/* 幅を狭めるオプション */
.sbc-narrow-width {
	max-width: 800px;
	margin: auto;
}

.sbc-narrow-width figure {
	padding: 0;
}

/* 共通部品調整 PR3 */
.sbc-pr3 .common-parallel-wrap .common-parallel-img {
	flex-basis: 40%;
}

.sbc-pr3 .common-parallel-wrap .common-parallel-img figure {
	padding-top: 0;
}

.sbc-pr3 .common-parallel-wrap .common-parallel-txt {
	flex-basis: 60%;
}

.sbc-pr3 h4 {
	font-weight: bold;
	font-size: 18px;
}

.sbc-pr3 .common-block-lightcolor {
	max-width: 70%;
	margin: auto;
}

.sbc-pr3 {
	margin-bottom: 80px;
}

/* 活用例 grid*/
.sbc-pr-gridlist {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	gap: 40px 3%;
	padding-top: 40px;
}

.sbc-pr-gridlist img {
    max-width: 100%;
    padding: 0px;
    margin: auto;
}

.sbc-pr-gridlist-item {
	display: flex;
}

.sbc-pr-gridlist-item-img {
	flex-basis: 40%;
	padding-top: 20px;
}

.sbc-pr-gridlist-item-text {
	flex-basis: 60%;
}

.sbc-pr-gridlist-item-text h4 {
	text-align: left;
	font-weight: bold;
	font-size: 18px;
	padding: 0;
}

.sbc-pr-gridlist-item-text p {

	padding-left: 0;
}

/* CTAボタン */

.cta_btn {
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.1em;
	align-items: center;
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
	position: absolute;
	bottom: 8%;
	right: 0;
	width: 100%;
}
.movie_btn{
	font-weight: bold;
	text-align: center;
	letter-spacing: 0.1em;
	align-items: center;
	display: flex;
	justify-content: end;
	margin-right: 20px;
	flex-wrap: wrap;
	position: absolute;
	bottom: 0;
	right: 0;
	width: 100%;
}

.cta_btn01,
.cta_btn02 {
	font-size: 16px;
	color: #fff;
	position: relative;
	display: inline-block;
	text-decoration: none;
	padding: 1em 1em 1em 60px;
	border-radius: 100vh;
	width: 100%;
	max-width: 300px;
	transition: all .2s;
	box-shadow: 0 3px 5px rgb(0 0 0 / 50%);

}

.cta_btn03 {
	font-size: 16px;
	color: #fff;
	position: relative;
	display: inline-block;
	text-decoration: none;
	padding: .8em;
	border-radius: 100vh;
	width: 100%;
	max-width: 250px;
	transition: all .2s;
	box-shadow: 0 3px 5px rgb(0 0 0 / 50%);

}

/* ボタンの色 */
.cta_btn01 {
	background: rgb(var(--image-color-accent));
}

.cta_btn02 {
	background: rgb(var(--image-color-accent));
}
.cta_btn03 {
	background: rgb(25 48 86);
	color: #fff;
}
.dhc-color {
	background: #e19145;
	color: #fff;
}

.cta_btn01::before,
.cta_btn02::before {
	content: '';
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-repeat: no-repeat;
	background-size: cover;
}

.cta_btn03::before {
	content: '';
	position: absolute;
	left: 30px;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	background-repeat: no-repeat;
	background-size: cover;
}

/* カタログアイコン */
.cta_btn01::before {
	width: 40px;
	height: 40px;
	background-image: url(sbc_img/catalog-icon.png);
}

/* ダウンロードアイコン */
.cta_btn02::before {
	width: 40px;
	height: 40px;
	background-image: url(sbc_img/trial-icon.png);
}

.cta_btn img {
	width: 1em;
	margin-right: 0.5em;
}

/* マウスオーバー時 */
.cta_btn01:hover,
.cta_btn02:hover,
.cta_btn03:hover {
	box-shadow: none;
	transform: scale(0.99, 0.99) translateY(2px);
}
/* .sbc-test:hover .cta_btn03 {
	box-shadow: none;
	transform: scale(0.99, 0.99) translateY(2px);
} */

.cta_btn-copy {
	font-size: 90%;
	font-weight: bold;
	color: initial;
	position: absolute;
	top: -2em;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	width: 100%;
	text-shadow:1px 1px 0 #fff,-1px 1px 0 #fff,1px -1px 0 #fff,-1px -1px 0 #fff;
}

.cta_btn-copy:before {
	margin-right: .2rem;
	content: '＼';
}

.cta_btn-copy:after {
	margin-left: .1rem;
	content: '／';
}

.sbc-top-title-area {
	position: relative;
}

/* 20250121追加　osdc_new.html */
.common-mainTxt-area h4.circle-heading {
	position: relative;
	padding: 0 .5em .5em 2em;
	border-bottom: 1px solid #b1771a;
	text-align: left;
	margin: 40px 30px 0 35px;

}

h4.circle-heading::before,
h4.circle-heading::after {
	position: absolute;
	content: '';
	border-radius: 100%
}

h4.circle-heading::before {
	top: .2em;
	left: .2em;
	width: 18px;
	height: 18px;
	background-color: rgba(210, 126, 23, 0.881);
	z-index: 2;
}

h4.circle-heading::after {
	top: .7em;
	left: .7em;
	width: 13px;
	height: 13px;
	background-color: rgba(215, 176, 129, 0.819);
}

h3.number-heading {
	position: relative;
	margin-left: 80px;
	font-size: 20px;
}

.number-heading::before {
	content: attr(data-number);
	position: absolute;
	top: 55%;
	left: -70px;
	transform: translateY(-50%);
	color: rgba(4, 74, 33, 0.621);
	font-size: 40px;
}

.sbc-line-button {
	text-align: right;
}

.sbc-line-button a {
	text-align: right;
	line-height: 2;
	color: #666;
	text-decoration: none;
	font-size: 16px;
	font-weight: bold;
	padding: 0 .5em .2em;
}

.sbc-line-button a {
	background:
		linear-gradient(to right,
			rgb(var(--image-color-accent)),
			rgb(var(--image-color-accent))),
		linear-gradient(to right,
			rgba(200, 200, 200, 1),
			rgb(49, 178, 109));
	background-size: 100% 3px, 0 3px;
	background-position: 100% 100%, 0 100%;
	background-repeat: no-repeat;
	transition: background-size 400ms;
}

.sbc-line-button a:hover {
	color: inherit;
	background-size: 0 3px, 100% 3px;
}

.sbc-pr2 h4 {
	padding-top: 10px;
}

.sbc-cardList {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 10px 6%;
  }

  .sbc-card {
	display: grid;
	/* row-gap: 10px; */
	/* background: #a4b8ab; */
	border-radius: 10px;
	border: 3px #f5c17c solid;
  }
  .sbc-card > p {
	margin-top: 30px;
	padding: 0 20px;
  }
  .sbc-card > span {
	align-self: end;
	justify-self: end;
	padding-right: 20px;
	padding-left: 20px;

  }

.sbc-card .sbc-card-btn a{
	font-size: 15px;
	line-height: 1.6em;
	margin: 20px 10px;
	text-align: center;
	display: block;
	color: #fff;
	margin: 0 0 20px;
	padding: 7px 12px 5px;
	border: 1px solid #ff9751;
	text-align: center;
	border-radius: 6px;
	display: inline-block;
	background-color: #ff9751;
	text-decoration: none;
	/* font-weight: bold; */
		align-self: end;
	justify-self: end;
	transition: 0.3s ease-in-out;
}

.sbc-card .sbc-card-btn a:hover {
	background-color: #fafafa;
	color: rgb(var(--image-color));
	transition: 0.3s ease-in-out;
}

.sbc-movie{
	position: relative;
}

.sp {
	display: none !important;
 }

 .pc {
	display: block !important;
 }

 /* Docx to HTML 用追加 */

/* HTML on Word ボタン */
a.dhc_btn {
	background: #f6f6f6b9 url(sbc_img/dhc-icon.png) no-repeat 50px center / 50px auto;
}
/* Docx to HTML ボタン */
a.xhw_btn {
	background: #f6f6f6b9 url(sbc_img/xhw-icon.png) no-repeat 50px center / 50px auto;
}

a.dhc_btn, a.xhw_btn {
	width: auto;
	font-size: 16px;
	line-height: 1.6em;
	margin: 6px 10px;
	padding: 8px 20px 6px 60px;
	border: 1px solid #666;
	border-radius: 4px;
	background-position: 5px center;
	text-decoration: none;
	display: inline-block;
	color: #333;
	transition: .3s ease-in-out;
}
a.dhc_btn:hover, a.xhw_btn:hover {
	background-color: #cecece;
	color: #333;
	transition: .3s ease-in-out;
}
.dashed_box {
    padding: 0.5em 1.0em;
    margin: 2em auto;
    background: #d6dff0;
    border: dashed 2px #23277d;
}

 /* 特長 */
 .dhc-feature-wrap figure img {
	margin-top: 30px;
	max-width: 250px;
	border: initial;
}
.dhc-feature-wrap figure {
	margin: 20px 0 0;
}
.dhc-feature-wrap {
	margin-bottom: 60px;
}

.dhc-feature {
	position: relative;
	margin: 40px 10px 15px;
	padding: 25px 10px 10px;
	/* background: linear-gradient(to left, #faa4c5, #f779ae); */
	/* color: #fff; */
	color: #555;
	text-align: left;
	border-bottom: 2px solid #31478c;
	border-image: linear-gradient(to right, #31478c, #7482ad, #FFF) 1;

}

/* 番号付き見出し */
h3.number-heading {
	padding: 0.25em 1.0em 0.25em 0.5em !important;
	line-height: 1.6em;
	position: relative;
	margin: 0;
	margin-left: 70px;
	font-size: 20px;
	border-left: initial;
}

.number-heading::before {
	content: attr(data-number);
	position: absolute;
	top: 55%;
	left: -70px;
	transform: translateY(-50%);
	color: #31478c;
	font-size: 40px;
}

	 /* 機能ページリスト　grid */
	 .dhc-grid {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(130px, 150px));
		margin: 20px 30px 30px;
		gap: 3px ;
		justify-content: space-evenly;
		cursor: pointer;
		border: 2px solid rgb(var(--image-color-light));
		border-radius: 10px;
		transition: .3s ease-in-out;
	 }
	 .dhc-grid-item {
		padding-top: 20px;
	 }

	 .dhc-grid-item img {
		max-width: 130px;
	 }

	 .dhc-grid-item p {
		padding: 0 10px;
		font-size: 14px;
		font-weight: bold;
		line-height: 1.5em;
		color: rgb(var(--image-color));
		text-decoration: none;
		text-align: center;
	}

	 .dhc-grid:hover{
		/* opacity: 0.7; */
		border: 2px solid rgb(var(--image-color-accent));
		box-shadow: 2px 2px 12px rgba(131, 135, 133, 0.6);
		transition: .3s ease-in-out;
	 }

	 .dhc-grid-interface {
		display: grid;
		grid-template-columns: repeat(auto-fit, minmax(130px, 150px));
		margin: 20px 30px 30px;
		gap: 3px ;
		justify-content: space-evenly;
		cursor: pointer;
	 }

	 .dhc-grid-interface .dhc-grid-item {
		border: 2px solid rgb(var(--image-color-light));
		border-radius: 10px;
		transition: .3s ease-in-out;
		padding-right: 10px;
		padding-left: 10px;
	 }

	 .dhc-grid-interface .dhc-grid-item:hover {
		border: 2px solid rgb(var(--image-color-accent));
		box-shadow: 2px 2px 12px rgba(131, 135, 133, 0.6);
		transition: .3s ease-in-out;
	 }

	 /* 小さいバナー用 HTML on Word ページより */
a.common-small-banner-anker {
	text-decoration: none;
	display: flex;
	border:3px solid #ccc;
	border-radius: 12px;
  }
  a.common-small-banner-anker:hover {
	opacity: 0.8;
	box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.6);
	border-color: rgb(var(--image-color));
	  transition: 0.3s ease-in-out;
  
  }
  .common-small-banner-wrap {
	max-width: 700px;
	margin: 30px auto;
  }
  
  .common-small-banner-image {
	width:200px;
	background-image: url(./sbc_img/xhw-icon.png);
	background-repeat: no-repeat;
	background-size:contain;
	border-radius: 9px 0 0 9px;
	background-position: center;
	background-color: rgb(225, 237, 249);
  }
  
  .common-small-banner-text p {
	text-align: left;
	margin: 10px 0;
	padding: 0 1.0em;
	text-decoration: none;
	color:#333;
  }
  p.common-small-banner-name {
	font-weight: 700;
	color: #06c;
	font-size: 15px;
  }
  
	 /* 製品バナー用リボン HTML on Word ページより */

  .common-top-title-ribbon-wrap { 
	position: absolute;
	  top: 0;
	  right: 0;
	  width: 300px;
	  height: 120px;
	  overflow: hidden;
  }
  .common-top-title-ribbon { 
	  display: inline-block;
	  position: absolute;
	  padding: 4px 0 2px;
	  left: 70px;
	  top: 26px;
	  width: 340px;
	  text-align: center;
	  font-size: 32px;
	  line-height: 1.4em;
	  background: rgba(255,0,0,0.8);
	  color: #fff;
	  letter-spacing: 0.05em;
	  -webkit-transform: rotate(30deg);
	  transform: rotate(30deg);
	  font-weight: 700;
  }

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


	/* CTAボタン */
	.cta_btn {
		bottom: 7%;
	}

	.cta_btn01,
	.cta_btn02,
	.cta_btn03{
		font-size: 14px;
		padding: .5em .7em;
		max-width: 200px;
		font-weight: normal;
	}

	.cta_btn01::before,
	.cta_btn02::before {
		display: none;
	}

	.cta_btn-copy {
		font-size: 85%;
	}

}



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

	/* マーカー付きの見出し */
	p.sbc-pr-title {
		font-size: 20px;
		padding: 0 10px;
		line-height: 2.0;
	}

	h3.sbc-pr-title {
		font-size: 20px;
		padding: 0 10px;
		line-height: 2.0;
	}


	.sbc-pr-text {
		margin-top: 0;
	}

	.sbc-pr-block-flex {
		display: block;
	}

	.sbc-pr-block-flex>div {
		display: flex;
		justify-content: space-around;
		margin: 30px 0 30px 10px;
	}

	.sbc-pr-block-flex>div div {
		width: 100%;
	}

	.sbc-pr-block-flex>div div.img-box {
		width: 70%;
		padding-top: 30px;
	}

	.sbc-pr-block-flex>div img {
		max-width: 150px;
		height: auto;
	}

	.sbc-pr-block-flex>div p {
		padding: 0 15px;
	}

	.sbc-flex {
		display: block;
	}

	/* PRエリア　タイトル付きの囲みボックス */
	.sbc-pr-titlebox {
		margin: 80px 10px;
	}

	.sbc-pr-titlebox ul li {
		font-size: 15px;
	}

	.sbc-pr-titlebox ul {
		margin: auto 20px;
	}

	.sbc-pr-titlebox h3 {
		font-size: 18px;
		margin: 30px 10px;
	}

	.sbc-pr-titlebox h3::after {
		content: '';
		background-color: #ff9751;
		width: 2em;
		height: 3px;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
	}

	.sbc-pr2 .common-parallel-wrap .common-parallel-img img {
		width: 80%;
	}

	.sbc-pr2 .common-parallel-wrap .common-parallel-img figure {
		padding: 0;
	}

	.common-parallel-wrap .common-parallel-txt h3 {
		padding-left: 1.4em;
		padding-right: 1.4em;
	}

	/* 共通部品調整 PR3 */
	.sbc-pr3 .common-parallel-wrap .common-parallel-img img {
		width: 70%;
	}

	.sbc-pr3 .common-block-lightcolor {
		max-width: 90%;
		margin: auto;
	}

	.sbc-pr3 h4 {
		padding-left: 1.4em;
		padding-right: 1.4em;
	}

	.sbc-pr3 h3.sbc-pr-title {
		margin-bottom: 20px;
	}

	/* 補足情報ボックス */
	.sbc-explanation-block {
		border: double 2px rgb(var(--image-color-accent));
		padding: 20px;
		margin: 80px 10px 0;
	}

	.sbc-explanation-block figure {
		padding: 0;
		margin: 0;
	}

	.sbc-explanation-block h3 {
		font-size: 16px;
	}

	.sbc-explanation-block .common-parallel-txt {
		flex-basis: 50%;
	}
	
	.sbc-explanation-block .common-parallel-img {
		flex-basis: 50%;
	}
	
	.sbc-explanation-block .common-parallel-wrap {
		gap: 10px;
	}

	/* 活用例 grid*/
	.sbc-pr-gridlist {
		gap: 30px;
		padding-top: 0;
	}

	.common-mainTxt-area h4.circle-heading {
		padding: 0 .5em .5em 2em;
		margin: 40px 10px 0 10px;

	}

	.sp {
		display: block !important;
	 }

	 .pc {
		display: none !important;
	 }

	 .dhc-feature-wrap figure img {
		margin-top: 0;
	}
	
	h3.number-heading {
		font-size: 18px;
	}
	
	.number-heading::before {
		left: -70px;
		font-size: 35px;
	}
	
	 
	 .common-small-banner-wrap {
		margin: 30px 10px;
	  }

	  .common-top-title-ribbon-wrap { 
		position: absolute;
		  top: 0;
		  right: 0;
		  width: 200px;
		  height: 90px;
		  overflow: hidden;
	  }
	  .common-top-title-ribbon { 
		display: inline-block;
		  position: absolute;
		  padding: 4px 0 2px;
		  left: 70px;
		  top: 10px;
		  width: 200px;
		  text-align: center;
		  font-size: 18px;
		  line-height: 1.2em;
		  background: rgba(255,0,0,0.8);
		  color: #fff;
		  letter-spacing: 0.05em;
		  -webkit-transform: rotate(30deg);
		  transform: rotate(30deg);
		  font-weight: 700;
	  }
}



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


	/* CTAボタン */
	.cta_btn {
		bottom: 7%;
		gap: 5px;
	}

	.cta_btn01,
	.cta_btn02,
	.cta_btn03 {
		font-size: 10px;
		padding: .3em .5em;
		max-width: 140px;
	}

	.cta_btn-copy {
		display: none;
	}
}