@charset "utf-8";
/* CSS Document */

/*-------------------
製品ページ　受発注コラムTOP
/asp/column/index.asp
-------------------*/

/*-----------------
 *共通
-----------------*/
section {
	padding: 3.5em 0 2.5em;
}
.contents {
	width: 90%;
	max-width: 64em;
	margin: auto;
	text-align: center;
}
.lead-tx{
	margin-bottom: 20px;
}
.lead-tx span{
	line-height: 1.5;
}
a:hover {
	opacity: 0.8;
}

img {
    border-radius: 5px;
}

/* タブレット縦サイズ 768px(16×48em)~ smサイズ */
@media screen and (min-width:48em) {
	h2 {
		font-size: 1.5em;
	}
}

/* タブレット横サイズ 1024px(16×64em)~ mdサイズ */
@media screen and (min-width:64em) {
	.lead-tx{
		margin-bottom: 40px;
	}	
}


/*-----------------
 *mainv
-----------------*/
.main-v { 
    padding: 7.1em 0 2.5em 0;
    text-align: center;
    background: linear-gradient(#edf7fc,#d6ecf8);
}
.main-v h1 {
	font-size: 1.375em;
	font-weight: bold;
	line-height: 1.2;
}
.main-v h1 span {
	padding: 0 0 .75em;
	font-size: .725em;
	display: block;
}

/* タブレット横サイズ 1024px(16×64em)~ mdサイズ */
@media screen and (min-width:64em) {
    .main-v {
        padding: 9.5em 0 4em 0;
    }
	.main-v h1 {
		font-size: 2em;
	}
	.main-v h1 span {
		font-size: .625em;
	}
}


/*-----------------
 *sec-list
-----------------*/
#sec-list ul li{
	width: 306px;
    height: 220px;
    margin: 0 auto 20px;
}
#sec-list ul li a{
	display: block;
    height: 220px;
	border-radius: 6px;
}

/* タブレット横サイズ 1024px(16×64em)~ mdサイズ */
@media screen and (min-width:64em) {
	#sec-list ul li a{
		-webkit-transition: all 0.5s ease;
		-moz-transition: all 0.3s ease;
		-o-transition: all 0.3s ease;
		transition: all  0.3s ease;
	}
	#sec-list ul li a:hover{
		box-shadow: 0px 0px 10px rgba(0,0,0,0.7);
		opacity: 1;
	}
}

/*-----------------
 *figure
-----------------*/
figure{
	position: relative;
	border-radius: 6px;
	height: 220px;
}
figcaption{
	position: absolute;
    bottom: 0;
    width: 274px;	
    height: 56px;	
    padding: 16px;
    background-color: rgba(255,255,255,0.8);
	border-radius: 0 0 6px 6px;
    text-align: left;
}
figcaption span.column-title{
	font-size: 14px;
	color: #333;
	font-weight: bold;
	line-height: 1.5;
}
figcaption span.date{
	font-size: 12px;
	color: #666;
	display: block;
    position: absolute;
    bottom: 8px;
    right: 16px;
}

/* タブレット縦サイズ 768px(16×48em)~ smサイズ */
@media screen and (min-width:48em) {
	#sec-list ul{
		text-align: left;
		width: 658px;
		margin: auto;
	}
	#sec-list ul li{
	    display: inline-block;
    	margin-right: 40px;	
		margin-bottom: 40px;
	}
	#sec-list ul li:nth-child(even){
		margin-right: 0;
	}
}


/* タブレット横サイズ 1200px(16×75em)~ mdサイズ */
@media screen and (min-width:75em) {
	#sec-list ul{
		text-align: left;
		width: 1024px;
		margin: auto;
	}
	#sec-list ul li{
	    display: inline-block;
    	margin-right: 46px;	
		margin-bottom: 40px;
	}
	#sec-list ul li:nth-child(even){
		margin-right: 46px;	
	}
	#sec-list ul li:nth-child(3n){
		margin-right: 0!important;
	}
	
}