/********************/
/*** Reset **********/
/********************/

*{
	margin:0;
	padding:0;
	box-sizing:border-box;
}

body{
	font-family:'Noto Sans JP',sans-serif;
	background:#f5f7fb;
	color:#222;
	line-height:1.7;
}

body.no-hover .card:hover {
    transform: none !important;
    box-shadow: none !important;
    background: #fff !important;
}

a{
	text-decoration:none;
	color:inherit;
}

img{
	max-width:100%;
	display:block;
}

/********************/
/*** container ******/
/********************/

.container{
	width:min(1200px,92%);
	margin:0 auto;
}

/********************/
/*** Header *********/
/********************/

header{
	background:#fff;
	position:sticky;
	top:0;
	z-index:100;
	border-bottom:1px solid #dcdcdc;
}

.header-inner{
	display:flex;
	justify-content:space-between;
	align-items:center;
	height:78px;
}

.logo{
	height:48px;
	width:auto;
}

nav{
	display:flex;
	gap:28px;
}

nav a{
	font-size:14px;
	color:#444;
	transition:.15s;
}

nav a:hover{
	color:#005bac;
}

/********************/
/*** Hero ***********/
/********************/

.hero{
	padding:30px 0 10px;
}

.hero-box{
	height:400px;
	background:url("../image/top.png") center/cover no-repeat;
	display:flex;
	align-items:center;
	position:relative;
	overflow:hidden;
}

.hero-box::before{
    background:rgba(0,0,0,.08);
}

.hero1::before{
  content:"";
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.15); /* ←暗さ調整ここ */
  z-index:1;
}

.hero-text{
	position:relative;
    z-index:2;
	color:#fff;
	padding:0 40px;
    width:100%;
    max-width:none;
}

.hero-text h1{
	font-size:42px;
	line-height:1.3;
	margin-bottom:50px;
	text-shadow:0 2px 8px rgba(0,0,0,.35);
}

.hero-text p{
	font-size:20px;
	text-shadow:0 1px 4px rgba(0,0,0,.35);
}

.hero1{
    background-image:url("../image/swiper/top.png");
}

.hero2{
    background-image:url("../image/swiper/itpop2.png");
}

.hero3{
    background-image:url("../image/swiper/popkcbanner.png");
}

.hero4{
    background-image:url("../image/swiper/wvhdtv3title.png");
}

.hero5{
    background-image:url("../image/swiper/it2.png");
}

/********************/
/*** Section ********/
/********************/

.section-image {
    width: 100%;
    max-width: 800px;
    display: block;
    margin: 0 auto;

}

/********************/
/*** feature ********/
/********************/

.feature-box {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
    text-align: left;
}

/********************/
/*** Product Card ***/
/********************/

.product-card{
	display:flex;
	justify-content:space-between;
	align-items:center;
	gap:40px;

	background:#fff;
	padding:28px;
	border:1px solid #e5e5e5;
	transition:.15s;
	margin-bottom:10px;
}

.product-card p{
	font-size:14px;
	color:#555;
}

.product-card h3{
	font-size:24px;
	margin-bottom:14px;
	line-height:1.4;
}

.product-card:hover{
	background:#f3f3f3;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    background: transparent;
}

.product-card2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 12px;
    transition: 0.2s;
    background: #fff;
}

.product-card2:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.product-card2 img {
    width: 180px;
    height: 140px;
    object-fit: contain;
}

.product-card2 span {
    margin-top: 5px;
    font-weight: bold;
}

.product-card2 .main-title{
    display:block;
    font-size:18px;
    font-weight:700;
    line-height:1.4;
}

.product-card2 .sub-title{
    display:block;
    font-size:14px;
    font-weight:normal;
    margin-top:10px;
    line-height:1.4;
}

/********************/
/*** Product image **/
/********************/

.product-image{
	width:250px;
	flex-shrink:0;
}

/********************/
/*** mail-box *******/
/********************/

.mail-box{
    display:inline-block;
    margin-top:10px;
	line-height:0;
}

.mail-box img{
    height:18px;
    width:auto;
    display:block;
}

.mail-box:hover{
    opacity:0.8;
}

.mail-note{
    margin-top:0px;
    font-size:12px;
    color:#666;
    line-height:1.6;
}

/********************/
/*** page ***********/
/********************/

.page{
	padding: 30px 0 0;
}

.page-title{
    font-size:32px;
    font-weight:700;
    color:#ffffff;

    padding:30px 30px;
    margin-bottom:25px;

    border-left:none;

    background:
        url("../image/business.png") center/cover no-repeat;
}

/********************/
/*** card ***********/
/********************/

.card{
	background:#fff;
	border:1px solid #e5e5e5;
	border-radius:10px;
	padding:28px;
	margin-bottom:20px;
	transition:.15s;
	height:100%;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom:20px;
}

.card:hover{
	background:#f9f9f9;
}

.card h2{
	font-size:20px;
	margin-bottom:12px;
	color:#005bac;
}

.card h2.special-title{
  color: #ff0000; 
}

.card h3{
	font-size:16px;
	margin-top:16px;
	margin-bottom:8px;
	color:#444;
}

.card p{
	font-size:14px;
	color:#444;
	margin-bottom:10px;
}

.card .wvhdtv-subtitle {
    font-size: 32px;
   	margin-bottom:0px;
}

.card ul{
	margin-left:20px;
	margin-top:8px;
}

.card li{
	font-size:14px;
	margin-bottom:6px;
}

.card strong{
	font-weight:700;
}

.card:last-child{
    margin-bottom:0;
}

.card form input{
    width:350px;
    height:28px;
    font-size:12px;
    padding:4px 8px;
    box-sizing:border-box;
}

.card form textarea{
    width:500px;
    height:120px;
    font-size:12px;
    padding:8px;
    box-sizing:border-box;
}

.card form p{
    display:flex;
    align-items:center;
    margin:10px 0;
}

.card form label{
    display:inline-block;
    width:180px;
    font-weight:bold;
}

.card form input{
    width:350px;
    height:30px;
    font-size:12px;
    padding:4px 8px;
    box-sizing:border-box;
}

.card form textarea{
    width:500px;
    height:120px;
    font-size:12px;
    padding:8px;
    box-sizing:border-box;
}

#itpop .card:last-child{
    margin-bottom:20px;
}

.company .card strong{
	color:#005bac;
}

/********************/
/*** DEVICE *********/
/********************/

.device-block {
    position: relative;
}

.device-block .device-text{
    margin-bottom:0px;
}

.device-content {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.device-image.mz {
    width: 450px;
    height: auto;
    margin-top: 30px;
	margin-bottom: 30px;
}

.device-image.mysql {
    width: 180px;
    height: auto;
    margin-top: 40px;
	margin-bottom: 20px;
}

.device-images{
    display:flex;
    flex-direction:column;
    gap:20px;
    width:180px;
}

#popkc .device-images{
    display:flex;
    flex-direction:row;
    justify-content:flex-start;
    gap:30px;
    width:100%;
    margin-top:0px;
    margin-bottom:20px;
}

.device-main{ /* 2列 固定 可変 */
    display:grid;
	grid-template-columns:240px 1fr;
    gap:32px;
    align-items:start;
}

.device-main.single-layout{
    grid-template-columns:240px 1fr;
}

#ilug .device-main{
    grid-template-columns:300px 1fr;
}

#led45 .device-main{
    grid-template-columns:300px 1fr;
}

#STR100 .device-main,
#STR200 .device-main{
    margin-top:20px;
}

.device-spec{ /* 2列 可変 可変 */
    display:grid;
    grid-template-columns:1fr 1fr;
    font-size:0.85rem;
    gap:20px;
    width:100%;
}

.device-spec.single{
    grid-template-columns:1fr;
}

.device-title{
    font-size: 1.2rem;
    grid-column:1 / 3;
}

.device-text{
    font-size: 1rem;
    grid-column:1 / 3;
}

.device-text strong{
    font-size:1.2rem;
}

#popkc .device-text{
	margin-top: 10px;
	margin-bottom: 10px;
}

.spec{
    font-size:0.75rem;
    background:#fff;
    line-height:1.7;
}

#popkc .spec{
	margin-top: 10px;
}

.ctg{
    width:230px;	
	margin-top:120px;
    margin-bottom: 110px;
}

.ptg{
    width:230px;	
	margin-top:50px;
    margin-bottom: 50px;
}

.pop{
    width:190px;
	margin-top:45px;
	margin-left:30px;
    margin-bottom: 80px;
}

.dte{
    width:230px;	
	margin-top:50px;
    margin-bottom: 30px;
}

.rug {
  	width: 90%;
  	margin-top: 130px;
	margin-left: 10px;
  	margin-bottom: 200px;
}

.sug{
    width: 160px;
	margin-top:20px;
    margin-left: 35px;
    margin-bottom: 30px;
}

.whc{
  	width: 75%;
  	margin-top: 45px;
	margin-left: 25px;
  	margin-bottom: 30px;
}

.iku{
    width: 180px;
	margin-top:25px;
    margin-left: 20px;
}

.gug{
	margin-top:40px;
	margin-left: 20px;
    width: 200px;
}

.gts {
	width: 55%;
	margin-top:20px;	
  	margin-left: 50px;
  	margin-bottom: 40px;	
  	height: auto;
}

.led2 {
  	width: 80%;
  	margin-top:60px;
  	margin-left: 15px;
  	margin-bottom: 60px;
  	height: auto;
}

.bw {
  	width: 80%;
  	margin-top:30px;
	margin-left: 20px;
  	margin-bottom: 50px;	
  	height: auto;
}

.cool {
  	width: 100%;
  	margin-top:40px;
	margin-left: 5px;
  	margin-bottom: 60px;
	height: auto;
}

.rim {
  	width: 95%;
  	margin-top:100px;
  	margin-left: 10px;
  	height: auto;
}

.popkctitle{
    width:auto;
  	margin-top: 10px;
 	margin-bottom: 30px;
}

.popkc{
  	width: 95%;
  	margin-top:100px;
  	margin-left: 10px;
  	height: auto;
}

.jog{
    width:120px;
  	margin-top: 10px;
 	margin-bottom: 30px;
}

.scan{
    width:120px;
 	margin-bottom: 30px;
}

.ilug {
  	width: 80%;
  	margin-top: 30px;
	margin-left: 20px;
  	margin-bottom: 30px;
	height: auto;
}

.led45 {
  	width: 80%;
  	margin-top: 30px;
	margin-left: 20px;
  	margin-bottom: 30px;
	height: auto;
}

.str100,.str200{
    margin-top:10px;
}

.wvhdtv-subtitle {
    font-size: 32px;
}

#it-pop{
	scroll-margin-top: 80px;
}

#ctg,#pop,#dte,#ptg,#sug,#kue,#gug{
	scroll-margin-top:80px;
}

#rug,#whc {
  scroll-margin-top: 90px;
}

#led45{
	scroll-margin-top: 80px;
}

#STR200{
	scroll-margin-top: 160px;
}

#popkc-layout{
    grid-template-columns:120px 1fr;
}

.popkcdata-layout{
    grid-template-columns:180px 1fr;
    margin-bottom:15px;
}

#popkc .data-layout p{
    margin:0;
	margin-top:0;
    margin-bottom:0;
}

#popkc .popkcdata-layout p{
    margin:0;
}

#popkc h2{
    margin-bottom:0
}

#popkc h3{
    margin-top:5px;
    margin-bottom:0;
}

#popkc p {
    margin-top: 30px;
	margin-bottom: 30px;
}

#popkc .popkc-data p{
    margin:10px;
}

.wvhdtv3title{
    width:auto;
 	margin-bottom: 30px;
}

.db-title {
    margin-top: 25px;
}

.catch-copy{
    font-size:1.4rem;
    font-weight:700;
    color:#ff2600;
}

.trademark{
    font-size:0.85rem;
    font-weight:normal;
    color:#444;
    margin-left:15px;
}

.solution-image {
    width: 120px;
    height: auto;
    flex-shrink: 0;
}

a {
    color: #0070c9;
    text-decoration: none;
}

.main-copy{
	font-size:18px;
	font-weight:700;
	color:#005bac;
	margin-bottom:10px;
}

/********************/
/*** Thanks Page ****/
/********************/

.thanks-box{
    width:100%;
    background:#fff;
    border:1px solid #e5e5e5;
    border-radius:10px;
    padding:40px;
    text-align:center;
}

.thanks-title{
    font-size:24px;
    font-weight:700;
    color:#005bac;
    margin-bottom:20px;
}

.thanks-text{
    font-size:15px;
    line-height:1.8;
    margin-bottom:30px;
}

.back-btn{
    display:inline-block;
    padding:10px 24px;
    background:#005bac;
    color:#fff;
    border-radius:6px;
    transition:.2s;
}

.back-btn:hover{
    opacity:.85;
}

/********************/
/*** Footer *********/
/********************/

.footer-company{
	background:#f5f7fb;
	padding:30px 0;
}

.footer-company-inner{
	background:#fff;
	max-width:1200px;
	margin:0 auto;
	padding:40px;
}
.footer-company-inner{
	display:flex;
	justify-content:space-between;
	gap:60px;
}

.footer-company-info{
	flex:1;
	font-size:14px;
	line-height:1.8;
}

.footer-company-name{
	font-weight:bold;
	font-size:16px;
	margin-bottom:4px;
}

.footer-company-address{
	color:#555;
	margin-bottom:6px;
}

.footer-company-contact{
	color:#333;
}

.footer-menu{
	flex:2;
}

.footer-menu-grid{
	display:grid;
	grid-template-columns:repeat(3, 1fr);
	gap:40px;
}

.footer-menu-title{
	font-weight:bold;
	margin-bottom:8px;
}

.footer-menu-col a{
	display:block;
	font-size:13px;
	color:#333;
	text-decoration:none;
	margin-bottom:4px;
}

.footer-menu-col a:hover{
	text-decoration:underline;
}

.footer-itpop{
    padding-top:20px;
}

.footer-policy {
    display:inline-block;
	margin-top:10px;
    font-size: 0.85em;
    color: #000000;
}

/* レスポンシブ */
@media (max-width:768px){

	.hero-box{
        height:260px;
    }

    .hero-text{
        padding:0 20px;
    }

	.footer-company-inner{
		flex-direction:column;
	}

	.footer-menu-grid{
		grid-template-columns:1fr;
	}

    .footer-company-inner{
        flex-direction:column;
    }

    .footer-menu-grid{
        grid-template-columns:1fr;
    }

    .device-main{
        grid-template-columns:1fr;
        gap:20px;
    }

    .device-spec{
        width:auto;
    }

    .device-image{
        margin:0 auto;   /* 画像を中央寄せしたい場合 */
    }
}