@charset "utf-8";
:root{
    --bg-color:#fff;
    --contents-color:#333;
    --black-333:#333;
    --black-666:#666;
    --black-999:#999;
    --black-ccc:#ccc;
    --light-blue:#85C2FF;
    --light-green:#85D895;
}
/* common */
body {
	font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
	word-break: normal!important;
	hyphens: auto;
}
div{
	box-sizing:border-box;
}
a:visited,div#main a:visited {
    color: var(--black-999);
}
#contents div#main a.textLink{
    color: var(--black-999);
    border-bottom: dashed 1px var(--black-999);
}
#contents div#main a.textLink:hover{
    border-bottom: none;
}
#contents{
	margin:0 auto;
}
#main{
	margin-right:0;
}
#main ul {
	margin:0;
}
#main ul li.em{
	color:#ffff00;
}
#main > .h2_cont > ul > li:last-child {
  margin-bottom: 0;
}
#main ul li:not(:last-child) ul{
    padding-bottom: 0.75em;
}

#main table th,#main table td{
    font-size:16px;
}
#main table th{
	border:var(--black-333) 1px solid;
	background:var(--black-ccc);
	color:var(--contents-color);
	font-weight:800;
}
#main table tbody th{
	border:var(--black-333) 1px solid;
	background:var(--black-ccc);
	color:var(--contents-color);
	font-weight:500;
}
#main table td{
	border:var(--black-666) 1px solid;
	color:var(--contents-color);
    word-break:break-all;
}
#main table td a{
	text-decoration:underline;
}
#main table td a:link,#main table td a:visited{
	color:var(--contents-color);
}
#main table td a:hover{
	text-decoration:none;
}
@media screen and (max-width:480px) {
	#main table th,#main table td{
		font-size:14px;
	}
}
.table-scroll:before {
    color:yellow;
    margin-bottom: 0.25em;
    font-size: 14px;
}

#document{
	width:100%;
	/*width:1300px;*/
	background:var(--bg-color);
	font-size:18px;
	font-weight:300;
}
#contents{
	width:100%;
	position:relative;
	padding:0 0 100px;
	color:var(--contents-color);
}
.contents_wrapper{
	width:calc( 100% - 100px );
	margin:0 auto;
	display:flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
     -ms-flex-direction: row-reverse;
         flex-direction: row-reverse;
}
.special_pageTop{
	display:block;
	position:fixed;
	width:40px;
	height:40px;
	background-color:var(--black-ccc);
	color: var(--bg-color);
	bottom:30px;
	right:30px;
}
.special_pageTop a{
	display:block;
	width:40px;
	height:40px;
}
.special_pageTop a:hover{
	opacity:0.7;
}
.special_pageTop span{
	display:block;
	width: 10px;
    height: 10px;
    border-top: 2px solid var(--bg-color);
    border-right: 2px solid var(--bg-color);
    background: none;
    transform: rotate(315deg);
    vertical-align: 3px;
    position: absolute;
    top: calc(50% - 6px);
    right: 15px;
    left: auto;
}


/* main visual */
#mainvis{
	width:100%;
	height:auto;
	object-fit:cover;
    position: relative;
}
#mainvis img{
	width:100%;
}
#mainvis .mainvis_head{
position: absolute;
    top: 8vw;
}
#mainvis .mainvis_lead{
position: absolute;
    top: 20vw;
    right: 10vw;
    width: 31vw;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.7;
    text-shadow: 0px 0px 5px rgba(255,255,255,0.8), 0px 0px 5px rgba(255,255,255,0.8), 0px 0px 5px rgba(255,255,255,0.8), 0px 0px 5px rgba(255,255,255,0.8), 0px 0px 5px rgba(255,255,255,0.8), 0px 0px 5px rgba(255,255,255,0.8) ,0px 0px 5px rgba(255,255,255,0.8);
    -moz-font-feature-settings : "palt";
    -webkit-font-feature-settings : "palt";
    font-feature-settings : "palt" 1;
    letter-spacing: 0.05em;
}
#mainvis .mainvis_lead .mainvis_lead_lastParagraph{
    display:inline-block;
    margin-top: 0.5em;
}
@media screen and (max-width: 980px){
#mainvis .mainvis_lead{
    width: 81vw;
    right: 0;
    left: 0;
    margin: auto;
}
}
@media screen and (max-width: 640px){
#mainvis .mainvis_head{
    width: 68%;
    top: 51vw;
    right: 0;
    left: 0;
    margin: auto;
}
#mainvis .mainvis_lead{
    top: 106vw;
}
}
@media screen and (max-width: 480px){
#mainvis .mainvis_lead{
    font-size: 14px;
    line-height: 1.5;
}
}
/* interpage nav */
.horizontal_nav{
	position:absolute;
	top:-50px;
	right:0;
	height:100px;
	background:var(--contents-color);
}
.horizontal_nav > ul{
	padding:0 50px;
	display:flex;
   justify-content: center;
	align-items:center;
	font-size:18px;
	line-height:100px;
}
.horizontal_nav ul > li > a{
	padding:15px;
	margin-right:10px;
}
.horizontal_nav > ul > li > a:after {
    content: "";
    display: inline-block;
    margin-left: 0.5em;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(
135deg);
    vertical-align: 3px;
}
.horizontal_nav ul li a:last-of-type{
	margin-right:0;	
}
.horizontal_nav a:link,
.horizontal_nav a:visited,
.horizontal_nav a:hover{
	color:#fff;
}
.horizontal_nav a:hover{
	opacity:0.8;
}
.horizontal_nav ul li.new:after{
	content:"NEW!";
	font-size:14px;
	color:#1b45c6;
}
.horizontal_nav ul li ul.normal-sub{
    width: 100%;
    display: none;
    position: absolute;
	left:0;
	top:100px;
	z-index:50;
    padding: 20px 65px;
    background: rgba(0, 95, 39, 0.8);
	line-height:1.0;
}
.horizontal_nav ul li ul.normal-sub li{
    width: 100%;
}
.horizontal_nav ul li ul.normal-sub li a{
	display:block;
    padding: 15px 0;
    color: #fff;
}
.horizontal_nav ul li a:link,.horizontal_nav ul li a:visited,.horizontal_nav ul li a:hover{
    color: #fff;
}


/* main */
#main{
	position:relative;
	display:block;
	width:calc(100% - 410px);
	background:transparent;
	/*padding-left:100px;*/
    padding-left:80px;
}
.toppage #main h2{
    margin: 130px 0 40px;
    padding: 0;
    background: none;
    border: none;
    text-align: center;
    font-size: 30px;
    font-weight: 300;
    box-sizing: border-box;
    height: 84px;
}
#main > div:first-of-type h2 {
    margin-top: 20px;
    padding-top: 0;
}


div#main a{
	border:none;
	color:#333;
}

#main h3{
	width:100%;
	margin:80px 0 15px;
	padding:5px 0;
	background:none;
    color: #fff;
	text-align:center;
	font-size:30px;
	font-weight:300;
	border:#666 1px solid;
}
#main h4{
	width:100%;
	margin:25px 0 0.5em;
	padding:5px 0;
	color: var(--black-999);
	text-align:left;
	font-size:18px;
	font-weight:800;
	letter-spacing:0.1em;
	border-bottom: 1px solid var(--black-666);
}
#main h5{
	width:100%;
	margin:30px 0 10px;
	padding:5px 0;
	color: var(--black-999);
	text-align:center;
	font-size:18px;
	font-weight:600;
}
/*#main h5{
	display:inline-block;
	width:auto;
	margin:30px 0 10px;
	padding:3px 10px 2px;
	background-color:var(--contents-color);
	color:#fff;
	line-height:1.3;
	text-align:center;
	font-size:16px;
	font-weight:600;
}*/
#main .h2_cont {

}
#main .h2_cont p.img{
	width:100%;
	text-align:center;
}
#main .h2_cont p.caption{
	width:100%;
	max-width:710px;
	margin:30px auto 5px;
	line-height:1.3;
	font-size:16px;
}
#main .h2_cont p.img img{
	max-width:100%;
}
#main p.page_top_100g{
	text-align:right;
}
#main p.page_top_100g a:link,
#main p.page_top_100g a:visited,
#main p.page_top_100g a:hover{
	color:#fff;
	border-bottom:#fff 1px dashed;
}
#main p.page_top_100g a:hover{
	opacity:0.7;
}
#main p.page_top_100g a:after {
    content: "▲";
    display: inline-block;
    font-size: 11px;
    padding-left: .5em;
}
#main p.btn{
	width:100%;
}
#main p.btn a{
	display:block;
	width:360px;
	max-width: calc(100% - 30px);
	margin:70px  auto;
	padding:15px;
	background-color:rgba(255,255,255,0.95);
	border:none;
	border-radius:5px;
	color:#347eee;
	font-size:20px;
	font-weight:bold;
}
#main p.btn a:hover{
	opacity:0.8;
}
#main p.btn.green a{
	background:var(--black-666);
    width: 80%;
    margin: 2.5em auto;
    color:#fff;
}
#main p.lead{
	font-size:22px;
}
#main p.link{
	margin-top:10px;
	display:inline-block;
	font-size:16px;
}
#main p.link:hover{
	opacity:0.7;
}

/* topics */
#main #topics,
#main #topics a{
	color:var(--contents-color);
}
#main #topics a:hover{
    opacity: .7;
}
/*#main #topics dl{
	display:flex;
	width:100%;
	margin-bottom:30px;
	font-size:18px;
}
#main #topics dl dt{
	width:6em;
}
#main #topics dl dd{
	width:calc(100% - 6em);
	display:flex;
	flex-direction:column;
}
#main #topics dl dd span.em{
	width:auto;
	display:inline-block;
	border:var(--contents-color) 1px solid;
	border-radius:3px;
	padding:3px 10px;
	margin-right:5px;
	margin-bottom:7px;
	color:var(--contents-color);
	line-height:1.0;
}*/
/* --- topics 2023 10 --- */
.topicsArticle{
    border-bottom: 1px solid var(--black-333);
}
#main .topicsArticle:first-of-type .topicsArticle_link{
   padding: 0 0 1.25em 0;    
}
#main .topicsArticle_link{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 1.25em 0;
    gap: 1em;
}
#main .topicsArticle_link p{
    margin:0;
}
#main .topicsArticle_link .topicsArticle_date,
#main .topicsArticle_link .topicsArticle_tag,
#main .topicsArticle_link .new{
    line-height:1.2;
}
#main .topicsArticle_link .topicsArticle_date{
    padding: 0.4em 0 0.2em 0;
        color:var(--black-999);
}
#main .topicsArticle_link .topicsArticle_title{
    width:100%;
    line-height: 1.5;
    margin-top: -0.25em;
}
#main .topicsArticle_link .tag{
    display: inline-block;
    padding: 0.4em 0.75em 0.25em;
    background-color: var(--black-333);
    border-width: 1px;
    border-style: solid;
    border-color: inherit;
    border-radius: 4px;
    font-size: 0.75em;
}
#main .topicsArticle_link .tag.system{
    color:var(--light-blue);
}
#main .topicsArticle_link .tag.device{
    color:var(--light-green);
}
#main .topicsArticle_link .new{
    margin:0.2em 0 0 0;
    color:red;
    font-size: 0.75em;
}
/* toppage application */
#main #application ul{
	width:100%;
	display:flex;
	flex-wrap:wrap;
}
#main #application ul li{
	display:block;
	box-sizing: border-box;
	width:calc(50% - 12px);
	padding:0;
	margin-bottom:50px;
	margin-left:0;
	position:relative;
}
#main #application ul li:nth-of-type(2n+1){
	margin-right:24px;
}
#main #application ul li::after{
	display:none;
}
#main #application ul li img{
	width:100%;
	margin-bottom:10px;
}
#main #application ul li span{
	display:block;
	width:100%;
}
/*#main #application ul li::after{
    display: inline-block;
    margin-left: 0.5em;
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--contents-color);
    border-right: 1px solid var(--contents-color);
	background:none;
    transform: rotate(45deg);
    vertical-align: 3px;
	position:absolute;
	top:calc(50% - 6px);
	right:15px;
	left:auto;
}*/
#main #application ul li a{
	display:inline-block;
	box-sizing: border-box;
	width:100%;
	color:var(--contents-color);
	font-size:24px;
	font-weight:500;
	letter-spacing:0;
	line-height:1.3;
}
#main #application ul li:hover{
	opacity:0.7;
}
@media screen and (max-width:1100px) {
	#main #topics,
	#main #application{
		padding:0 15px;
	}
}
@media screen and (max-width:480px) {
	#main #application ul li{
		width:calc(50% - 5px);
		margin-bottom:30px;
	}
	#main #application ul li:nth-of-type(2n+1){
		margin-right:10px;
	}
	#main #application ul li a{
		font-size:20px;
	}
}

/* side */
#side{
	width:310px;
	background:transparent;
	float:none;
}

#side .banners a{
	box-sizing:border-box;
	display:flex;
	align-items: center;
	width:300px;
	height:70px;
	margin-bottom:18px;
	background:var(--black-ccc) url(../img/icon_arrow_black.png) no-repeat right 10px center;
	border:var(--black-ccc) 1px solid;
	line-height:1.2;
	font-size:16px;
    font-weight: 700;
}
#side .banners .localNav--contact{
    font-size:13px;
}
#side .banners a.comingsoon{
	pointer-events: none;
	position:relative;
}
#side .banners a.comingsoon:after{
	content:"coming soon";
	display:block;
	height:18px;
	position:absolute;
	left:193px;
	top:28px;
	padding:3px 5px;
	background:rgba(4,156,100,0.8);
	color: var(--black-333);
	line-height:1.0;
	font-size:15px;
	transform: rotate(-5deg);
}
#side .banners a > div{
	display:flex;
	align-items: center;
	height:70px;
	padding-left:65px;
	padding-right:20px;
}
#side a:link,
#side a:visited,
#side a:hover{
/*
	color:var(--bg-color)!important;
*/
	color: var(--black-333)!important;
}
#side a:hover{
	opacity:0.8;
}
#side .banners a .promotion_movie{
	background:url(../img/icon_promotion_movie_black.png) no-repeat 14px center;
}
#side .banners a .topics{
	background:url(../img/icon_topics_black.png) no-repeat 14px center;
}
#side .banners a .application{
	background:url(../img/icon_application_black.png) no-repeat 14px center;
}
#side .banners a .online_exhibition{
	background:url(../img/icon_online_exhibition_black_black.png) no-repeat 14px center;
}
#side .banners a .users_voice{
	background:url(../img/icon_application.png) no-repeat 14px center;
}
#side .banners a .sales_partner{
	background:url(../img/icon_promotion_movie_black.png) no-repeat 14px center;
}
#side .banners a .advertising{
	background:url("../img/icon_advertising_black.png") no-repeat 14px center;
}
#side .banners a .user_support{
	background:url(../img/icon_user_support_black.png) no-repeat 20px center;
}
#side .banners a .special_top{
	background:url(../img/icon_top_black.png) no-repeat 12px center;
}

#side .links a{
	display:block;
	box-sizing:border-box;
	width:300px;
	background:url(../img/icon_arrow_white.png) no-repeat right 10px center;
	margin-bottom:18px;
	line-height:70px;
	font-size:16px;
}
/* 202309 */
div#side .banners{
    margin-bottom: 2em;
}
div#side .banners:last-child{
    margin-bottom:3.5em;
}
div#side .banners h2 {
    width: 300px;
    margin: 0;
    padding: 0 0 1em;
    border-bottom: none;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    color: var(--black-333);
    letter-spacing: 0;
}
div#side .banners h2:before, div#side .banners h2:after {
    content: '';
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    height: 1px;
    background: var(--black-999);
    min-width: 20px;
    display: inline-block;
    vertical-align: middle;
}
div#side .banners h2:before {
    margin-right: 0.5em;
}
div#side .banners h2:after {
    margin-left: 0.5em;
}
@media screen and (max-width: 1100px){
    div#side .banners h2{
        width:100%;
    }
}
/* overwrite */
.flexBox_photo-txt .flexBox_photo-txt_txt-200, .flexBox_txt-photo .flexBox_txt-photo_txt-200 {
    width: calc(100% - 200px);
}

/* pages common */
.pages #pageheader{
	position:relative;
}
.pages #pageheader img{
	width:100%;
	object-fit:cover;
}
.pages #pageheader h1{
	position:absolute;
	right:46px;
	bottom:54px;
    color: #000;
	font-size:40px;
	font-weight:600;
	line-height:1.0;
	text-align:right;
	letter-spacing:2px;
    text-shadow: 0px 0px 5px rgba(255,255,255,0.8), 0px 0px 5px rgba(255,255,255,0.8), 0px 0px 5px rgba(255,255,255,0.8), 0px 0px 5px rgba(255,255,255,0.8), 0px 0px 5px rgba(255,255,255,0.8), 0px 0px 5px rgba(255,255,255,0.8) ,0px 0px 5px rgba(255,255,255,0.8);

}
.pages #pageheader p{
	position:absolute;
	left:34px;
	bottom:58px;
	font-size:18px;
	font-weight:800;
	letter-spacing:1px;
}
.pages #contents{
	padding-top:24px;
}
#main,
#side{
	/*margin-top:160px;*/
    margin-top:36px;
}
.pages #contents #main h2{
	box-sizing:border-box;
	display:flex;
	align-items: center;
	justify-content: center;
	width:100%;
	min-height:100px;
	border-top:var(--black-999) 1px solid;
	border-bottom:var(--black-999) 1px solid;
	margin-top:130px;
	margin-bottom:40px;
	padding:36px 10px;
	color:var(--contents-color);
	font-size:43px;
	font-weight:300;
	text-align:center;
	background:none!important;
	line-height:1.231;
	
	flex-wrap: wrap;
}
.pages #contents #main h2:first-child{
	margin-top:0;
}
.pages #contents #main h3{
	box-sizing:border-box;
    margin-bottom: 1.5em;
	padding:6px 12px;
    background-color: var(--black-333);
	border:var(--black-999) 1px solid;
	font-size:20px;
	font-weight:600;
	line-height:1.0;
	text-align:left;
	letter-spacing:0.2em;
}
.pages .bread_crumb{
	position:absolute;
	right:46px;
	bottom:20px;
	font-size:14px;
}
.pages .bread_crumb ul li{
	display:inline;
	position:relative;
	margin-right:30px;
    text-shadow: 0px 0px 7px rgba(255,255,255,0.8), 0px 0px 7px rgba(255,255,255,0.8), 0px 0px 7px rgba(255,255,255,0.8), 0px 0px 7px rgba(255,255,255,0.8), 0px 0px 7px rgba(255,255,255,0.8), 0px 0px 7px rgba(255,255,255,0.8) ,0px 0px 7px rgba(255,255,255,0.8);
}
.pages .bread_crumb ul li:last-of-type{
	margin-right:0;
}
.pages .bread_crumb ul li:before{
	content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(45deg);
    vertical-align: 3px;
    position: absolute;
    top: 5px;
    left: -25px;
    z-index:50;
}
.pages .bread_crumb ul li:after{
    content:"";
    display:block;
    width:15px;
    height:15px;
    background-color:rgba(255,255,255,0.5);
    position:absolute;
    top:0;
    left:-30px;
    z-index:0;
    box-shadow: 0px 0px 7px rgba(255,255,255,0.8);
}
.pages .bread_crumb ul li:first-of-type:after{
    display:none;
}
.pages .bread_crumb ul li:first-of-type:before{
	display:none;
}
.pages .bread_crumb a:link,
.pages .bread_crumb a:visited,
.pages .bread_crumb a:hover{
	color:#000;
}
.recommended_browser{
	position:absolute;
	bottom:-35px;
	left: calc(50% - 600px);
	width:calc(100% - 300px);
    color:var(--black-333);
	font-size:13px;
}
.recommended_browser h5{
	display:inline;
	margin-right:10px;
}
.recommended_browser p{
	display:inline;
}
@media screen and (max-width:1270px) {
	.recommended_browser{
	left: 50px;
	}
}
@media screen and (max-width: 1130px) {
    #contents div#side{
        width: 310px;
    }
}
@media (max-width: 1100px){
	#contents #main,
	#contents div#side {
		width:100%;
		margin:0;
	}
    .toppage #contents,
	.pages #contents{
		padding:50px 0 150px;
	}
}
@media (max-width: 768px){
	.toppage .contents_wrapper div#side{
		margin-top:134px;
	}
	.toppage #contents {
    	padding-top: 0;
	}
	.recommended_browser{
		left:0;
		right:0;
		margin:0 auto;
		bottom:30px;
		width:calc(100% - 30px);
		text-align:center;
	}
}
@media (max-width: 480px){
.pages #contents #main h2{
	font-size:40px;
	}
}


.pages #main ul{
	margin:0;
}
.pages #main img{
	width:100%;
	max-width:100%;
	height:auto;
}
.pages #main ul.square_list li{
	margin-left:0;
}
.pages #main ul.square_list li:after{
	display:none;
}
.pages ul.square_list span.number{
	display:inline-block;
	width:23px;
	height:23px;
	line-height:23px;
	background:var(--contents-color);
	margin: 0 5px 0 0; 
	color:#fff;
	text-align:center;
}
.pages #main p.product_img{
	width:100%;
	margin:60px auto;
	text-align:center;
}
.pages #main h4 + p.product_img{
	margin:20px 0 20px;
}
.pages #main p.product_img img{
	max-width:100%;
	width:auto;
}
.pages #main p.product_illustration{
	width:100%;
	margin:30px 0;
	text-align:center;
}
.pages #main p.product_img--mainImg img{
	max-width:500px;
	width:auto;
}
@media screen and (max-width: 768px){
#contents #main p.product_img--mainImg img{
	max-width:500px;
}   
}
@media screen and (max-width: 640px){
#contents #main p.product_img--mainImg img{
	max-width:100%;
}   
}
.pages #main h5 + p.product_illustration{
	margin-top:0;
}
.pages #main p.product_illustration img{
	box-sizing:border-box;
	width:100%;
	border:#6fc5a4 1px solid;
	padding:40px;
}
.pages #main p.product_illustration.noborder img{
	border:none;
	padding:0;
}
.pages #main div.two_img{
	display:flex;
	justify-content:center;
	align-items:center;
}
.pages #main div.two_img p:first-of-type img{
	margin-right:60px;
	width:auto;
	max-width:160px;
}
.pages #main div.two_img p .caption{
	width:100%;
	display:block;
	margin-top:10px;
	text-align:center;
	padding-right: 60px;
    box-sizing: border-box;
}
.pages #main div.text-photo_box{
	display:flex;
	justify-content: space-between;
	align-items:center;
}
.pages #main div.text-photo_box .text{
	width:calc(100% - 270px);
}
.pages #main div.text-photo_box .photo{
	width:250px;
}
span.caption{
	font-size:80%;
}
#main ul.productList li a:hover img,
#main ul.productList li a:hover span{
	opacity:0.7;
}

@media screen and (max-width:480px) {
	.pages #main div.text-photo_box{
		display:block;
	}
	.pages #main div.text-photo_box .text,
	.pages #main div.text-photo_box .photo{
		width:100%;
	}
	.pages #main p.product_illustration img{
		padding:20px;
	}
	.pages #contents #main div.two_img{
		margin-top:20px;
	}
	.pages #contents #main div.two_img p:first-of-type img{
		max-width:150px;
		margin-right:20px;
	}
	.pages #main div.two_img p .caption{
		padding-right:20px;
	}
}


/* sections */
	.pages .bread_crumb{
		margin-left:15px;
	}
	/*.pages .contents_wrapper div#side {
		margin-top:100px;
	}*/
	#side .banners{
		margin-top:0;
	}


@media screen and (max-width:1190px) {
	.ppln #pageheader h1{
		font-size:30px;
		bottom:94px;
		line-height:1.1;
	}
	/*.ppln #pageheader .bread_crumb{
		bottom:66px;
	}*/
}

@media screen and (max-width:1100px) {
	.contents_wrapper{
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
     -ms-flex-direction: column-reverse;
         flex-direction: column-reverse;
		width:100%;
	}
	#main{
		width:100%;
		padding:0;
		margin-top:0;
		line-height:1.231;
	}
	#main .h2_cont{
		width:calc(100% - 30px);
		margin:0 auto;
	}
	#main p.page_top_100g{
		margin-right:15px;
	}
	#side{
		width:100%;
		margin:60px auto;
	}
	.contents_wrapper div#side {
		margin-top:95px;
	}
/*
    #side .banners{
		margin-top:0;
	}
*/
	#side .banners{
		width:928px;
		/*margin:120px auto;*/
        margin: 0 auto;
		display:flex;
  		flex-wrap: wrap;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		/*justify-content: space-between;*/
        justify-content: space-evenly;
	}
	#side .links{
		width:300px;
		margin:60px auto;
	}

}

@media screen and (max-width:970px) {
    .toppage #contents,
	.pages #contents {
    /*padding-top: 0;*/
    padding-top: 50px;
}
	.pages #pageheader h1{
		right:26px;
		bottom:50px;
        font-size: 30px;
	}
	.pages .bread_crumb{
		right:26px;
		bottom:26px;
	}
	#side .banners{
		width:614px;
  		flex-wrap: wrap;
        justify-content: space-between;
	}
	.horizontal_nav{
		width:100%;
		height:auto;
		position:static;
	}
	.horizontal_nav ul{
		flex-wrap:wrap;
  -webkit-box-pack: start;
     -ms-flex-pack: start;
   justify-content: flex-start;
		padding:20px 15px;
		line-height:2.0;
		height:auto;
		min-height:70px;
	}
	.horizontal_nav > ul > li{
		line-height:1.2;
		/*margin-bottom:15px;*/
		padding-left:20px;
		position:relative;
	}
	.horizontal_nav > ul > li:before{
		content: "";
		display: inline-block;
		width: 6px;
		height: 6px;
		border-top: 2px solid #fff;
		border-right: 2px solid #fff;
		transform: rotate(45deg);
		vertical-align: 3px;
		position:absolute;
		top:calc(50% - 4px);
		left:0;
	}
	.horizontal_nav > ul > li:last-of-type{
		margin-bottom:0;
	}
	.horizontal_nav ul > li > a {
		display:inline-block;
		width:100%;
		padding: 8px 30px 8px 0;
}	
	.horizontal_nav > ul > li > a:after{
		display:none;
	}
	.horizontal_nav ul li ul.normal-sub{
		top:112px;
	}
}

@media screen and (max-width: 840px){
	#main .flex_box{
		display:block;
	}
	#main #concept .flex_box{
		margin-top:60px;
	}
	#main .flex_box .left_box,
	#main .flex_box .right_box{
		width:calc( 100% - 30px )!important;
		margin:0 auto;
	}
	#main .flex_box .left_box.img,
	#main .flex_box .right_box.img{
		display:block;
		text-align:center;
	}
	/*.pages #pageheader h1{
		bottom:60px!important;
	}*/
	.ppln #pageheader h1{
		font-size:26px;
		/*bottom:84px;*/
		line-height:1.1;
	}
	.ppln #pageheader .breadcrumb{
		bottom:56px;
	}
}


@media screen and (max-width: 768px){
	.pages #pageheader h1{
		bottom:50%;
        transform: translateY(50%);
		right:15px;
	}
	.pages .bread_crumb{
		bottom:20px;
		right:15px;
	}
	.pages #contents {
		padding-top:50px;
	}
	#main #concept h3{
		font-size:30px;
		line-height:1.5;
	}
	#main span.number{
		margin-right:10px;
	}
	/*#contents div#side{
		margin-top:140px;
	}
	#side .banners {
		margin: 60px auto 0;
	}*/
	#side .links {
		margin: 0 auto;
	}
	.horizontal_nav{
		top:0;
	}
	.ppln #pageheader h1{
		font-size:30px;
		bottom:40px;
	}
	.ppln #pageheader .bread_crumb{
		bottom:5px;
	}
}
@media screen and (max-width:642px) {
	.pages #pageheader{
		/*max-height:240px;*/
        max-height: inherit;
	}
    .toppage #contents,
    .pages #contents {
        padding-top: 1em;
    }
	#main h2{
		line-height:1.1;
	}
	#side .banners{
		width:calc(100% - 30px);
  		flex-wrap: wrap;
		-webkit-box-pack: center;
    	-ms-flex-pack: center;
		justify-content: center;
		/*margin:18px auto 100px;*/
        margin: 0 auto 100px;
	}
	#side .banners a{
		width:100%;
	}
    #side .banners{
       margin: 0 auto 100px; 
    }
    #side .banners div:not(:last-child) {
        margin-bottom: 1em;
    }
    div#side .banners h2 {
        padding: 0.75em 0;
        margin: 0 0 0.25em 0;
        border-left: none;
        text-align: center;
    }
    
	br.pc{
		display:none;
	}
}
@media screen and (max-width:480px) {
	#contents{
		font-size:16px;
	}
	#main #concept h2{
		margin-top:60px;
	}
	.horizontal_nav ul li ul.normal-sub {
    	display:none;
	}
}

@media screen and (max-width:412px) {
	.pages .contents_wrapper div#side{
		margin-top:131px;
	}
}

@media screen and (max-width:640px) {
	/*.pages #contents{
		padding-top:0;
	}*/
	.pages #pageheader img{
	}
	.pages #pageheader h1{
		right:15px;
        padding-left: 0.5em;
		font-size:26px;
        letter-spacing: 0;

	}
	.pages #pageheader p{
		position:static;
		display:none;
	}
	.pages .bread_crumb{
		bottom:20px;
		right:15px;
	}
	.pages .bread_crumb a:link,
	.pages .bread_crumb a:visited,
	.pages .bread_crumb a:hover{
		color:#000;
	}
    #side .banners .localNav--contact{
    font-size:16px;
    }
}
@media screen and (min-width:560px) and (max-width:640px){
    #side .banners .localNav--contact .sp{
        display:none;
    }
}
/* pages  Promotion Movie */
#main ul.video_list{
	display:flex;
	justify-content: space-between;
	flex-wrap:wrap;
}
#main ul.video_list li{
	width:calc(50% - 10px);
	min-width:330px;
	margin-bottom:40px;
	margin-left:0;
	padding:0;
}
#main ul.video_list li:hover{
	opacity:0.7;
}
#main ul.video_list li button{
	border:none;
	background:none;
	padding:0;
	margin:0 auto;
	display:flex;
	flex-direction:column;
	justify-content:center;
    color: #fff;
    cursor: pointer;
}
#main ul.video_list li button .item-text {
	margin:10px 0 0;
	text-align:left;
}
#main ul.video_list li button .item-text .new {
	    width: auto;
    display: inline-block;
    border: var(--contents-color) 1px solid;
    border-radius: 3px;
    padding: 3px 10px 2px;
    margin-left: 5px;
    margin-bottom: 3px;
    color: var(--contents-color);
    line-height: 1.0;
	vertical-align:middle;
	font-size:15px;
}
#main ul.video_list li:after{
	display:none;
}
.youtubeplayer{
	position:absolute;
	left:0;
	right:0;
	top:0;
	bottom:0;
	margin:auto;
	width:100%;
	max-width:1035px;
	height:582px;
}
.black_layer{
	position: fixed;
	right: 0;
	bottom: 0;
	min-width: 100%;
	min-height: 100%;
	width: auto;
	height: auto;
  background-color:rgba(0,0,0,0.5);
  z-index:-50;
}
.black_layer.toplayer{
	/*position:relative;*/
	display:none;
  background-color:rgba(0,0,0,0.8);
    min-height: 100%;
    width: auto;
    height: auto;
	/*padding:50px 96px;*/
	z-index:100;
	color:#fff;
}
.black_layer.toplayer.show{
	display:block;
	/*overflow-y:scroll;*/
}
.show{
	display:block !important;
}
button.toclose{
  position: fixed;
	/*position:absolute;*/
	width:30px;
	height:30px;
	right:15px;
	top:15px;
	border:none;
	background:none;
	z-index:200;
}
button.toclose:before{
	content:"";
	display:block;
	width:39px;
	height:1px;
	background:#fff;
    transform: rotate(45deg);
    transform-origin:0% 50%;
    position: absolute;
    top: calc(14% - 5px);
    left:1px;
}
button.toclose:after{
	content:"";
	position:absolute;
	display:block;
	width:39px;
	height:1px;
	background:#fff;
    transform: rotate(-45deg);
    transform-origin:100% 50%;
    top: calc(14% - 5px);
    right:1px;
}
@media (max-width: 1300px){
	#main ul.video_list{
		justify-content: center;
	}
}
@media (max-width: 1100px){
	#main ul.video_list{
		justify-content: space-between;
	}
}
@media (max-width: 720px){
	#main ul.video_list{
		justify-content: center;
	}
}

.laser-commuTech #main h1,
.laser-commuTech #main .h1-box {
	background-image: url(../img/back_h1.jpg);
    border-bottom: #b4d9a8 solid 1px;
}
.laser-commuTech .headBand2020 .imgArea .categoryName{
	color: #000;
	text-shadow: 1px 1px 4px #fff, -1px -1px 4px #fff;
}
div#main .arrow_normal{
	padding-right: calc(0.5em + 35px);
	position: relative;
}
div#main .arrow_normal:after{
  content: "";
  display: block;
  position: absolute;
  top: -7px;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 35px;
  height: 10px;
  border-bottom: 1px solid #164999;
}
div#main .arrow_normal:before{
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  right: 0;
  margin: auto;
  width: 15px;
  height: 10px;
  border-top: 1px solid #164999;
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg);
}
/* pages app */
#main ul.productList {
	display:flex;
	align-items:flex-end;
	flex-wrap:wrap;
}
#main ul.productList li:after{
	display:none;
}
#main ul.productList li{
	width:250px;
	margin:0 20px 40px 0;
}
#main ul.productList .img-wrap{
	width:250px;
	height:216px;
	display:flex;
	justify-content:center;
	align-items:center;
}
#main ul.productList .img-wrap img{
	width:100%;
	max-width:210px;
	height:auto;
}
#main ul.productList .item-text{
	display:inline-block;
	width:100%;
	text-align:center;
}
#main p.app_illustration a span.enlarge{
	display:inline-block;
	width:100%;
	margin:3px 0 0 0;
	color:#333;
	text-align:right;
}
#main p.app_illustration a:hover{
	opacity:0.7;
}


@media (max-width: 610px){
	#main ul.productList {
	justify-content:center;
}
}

/* 230927 */
.disp-sp {
  display: none !important;
}
@media screen and (max-width: 640px) {
  .disp-sp {
    display: block !important;
  }
}
@media screen and (max-width: 1024px) {
  .disp-pc {
    display: none !important;
  }
}
#main ul li{
	list-style-type:none;
	margin: 0 0 0.25em 20px;
	padding:0 5px;
	font-size:18px;
	word-break: normal;
	position: relative;
}

#main ul li::after {
  content: "";
  display: block;
  position: absolute;
  width: 8px;
  height: 8px;
  top: 0.55em;
  left: -14px;
  background-color: var(--contents-color);
}

#main ul ul li {
  list-style-type: circle;
}

#main ul ul li::after {
  content: none;
  display: none;
}

#main ul.text_s li {
    font-size: .8em;
    font-weight: 400;
}
.pages #main h5 + p.product_img,.pages #main p + p.product_img{
	margin:0 auto 20px;
}
.pages #main p.whiteframe{
	box-sizing: border-box;
/*	background: #ff0000;
*/	padding: 1em;
}
.pages #main p.whiteframe .caption{
    display:inline-block;
    margin-top: 1.75em;
    color: var(--bg-color);
}
.pages #contents #main h2 span{
	width: 100%;
	display: block;
	font-size: 50%;
}
.nowrap{
	white-space:nowrap;
}
hr {
    height: 1px;
    border-top: 1px solid var(--black-666);
    margin: 2em 0;
}

.product_img.mt20 {
  margin-top: 20px;
}
.product_img.mt-20b {
  margin-bottom: -10px !important;
}

#main ul.nobullet {
  display: flex;
  gap: 20px;
  align-items: stretch;
}

#main ul.nobullet li {
  flex: 1;
  display: flex;
  margin-left: 0;
  padding-left: 0;
}

#main ul.nobullet li::after {
  content: none !important;
  display: none !important;
}

#main ul.nobullet li .product_img {
  width: 100%;
  height: 320px;          /* ← ここで高さを固定 */
  margin: 0;              /* product_img の既存margin対策 */
  display: flex;
  align-items: center;
  justify-content: center;
}

#main ul.nobullet li .product_img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}