@charset "utf-8";
/* CSS Document */
/* 20200526 作成　ver.1.0.0 */

/*-------------------
製品ページ　規格書セミナー一覧ページ用CSS
/kikaku/seminar/index.asp
-------------------*/
#seikyu {
	font-size: 16px;
}
.contents {
	width: 90%;
	max-width: 64em;
	margin: auto;
}
.btn a:hover{
	opacity: .85;
	cursor : pointer;
}
#btn_Pagetop {
    z-index: 3;
}

/*-----------------
 *mainv
-----------------*/
.main-v { 
    padding: 8em 0 5em;
	text-align: center;
    background: linear-gradient(#fcf8e3, #fcf2c0);
}

.main-v h1 {
    font-size: 1em;
	line-height: 1.4;
	padding-top: 50px;
}

.main-v h1 span {
    padding-bottom: 0.1em;
    font-size: 2.375em;
    font-weight: bold;
    display: block;
}

/* タブレット横サイズ 1024px(16×64em)~ mdサイズ */
@media screen and (min-width:64em) {
    main-v { 
        padding: 11em 0 5em;
    }
}

/*-----------------
 *sec-list
-----------------*/
#sec-list {
	padding: 60px 0 45px;
}
#sec-list .list li {
    margin: 0 0 16px;
    width: 100%;
    list-style: none;
    position: relative;
}
#sec-list .afte_end, #sec-list .list li a {
    width: 100%;
    height: 198px;
}
#sec-list .list li a {
    display: block;
    position: relative;
    z-index: 2;
    -webkit-transition: box-shadow .2s ease-in-out; 
    transition: box-shadow .2s ease-in-out; 
    border-radius: 6px; 
}
#sec-list .list li a:hover { 
    box-shadow: 0 3px 13.5px 1.5px rgba(224,144,63,.5); 
}
#sec-list .seminar_content {
    width: 100%;
    height: 198px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
#sec-list .list li figure.img {
    width: 100%;
    height: auto;
    min-height: 198px;    
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 6px;
}
#sec-list .list li figure.img::before {
    background-color: rgba(255,255,255,.7);
    display: block;
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    z-index: 0;
}
#sec-list .list li .tx {
    padding: 30px 25px 25px;
    height: 100%;
    box-sizing: border-box;    
    position: absolute;
    top: 0;
    left: 0;
}
#sec-list .list li .tx .flag {
    margin-bottom: 16px;
    padding: 6px 12px;
    font-size: 14px;
    color: #fff;
    line-height: 1;
    display: inline-block;
}
#sec-list .list li .tx span.seminar_open {
    background-color: #e0903f;
}
#sec-list .list li .tx span.seminar_close {
    background-color: #4d494c;
}
#sec-list .list li .tx span.seminar_reminder {
    background-color: #F64545;
}
#sec-list .list li .tx .ttl {
    margin-bottom: 16px;
    font-weight: bold;
    line-height: 1.4;
    text-shadow: 0 0 12px rgba(255,255,255,.5);
}
#sec-list .list li .tx .place_date {
    font-size: 14px;
    text-shadow: 0 0 12px rgba(255,255,255,.5);
    position: absolute;
    bottom: 20px;
}

/* タブレット縦サイズ 768px(16×48em)~ smサイズ */
@media screen and (min-width:48em) {
    #sec-list .list li {
        margin: 0 1% 16px;
        width: 47.5%;
        display: inline-block;
    }
}
/* タブレット横サイズ 1024px(16×64em)~ mdサイズ */
@media screen and (min-width:64em) {
    #sec-list .list li {
        margin: 0 1% 16px;
        width: 30.5%;
    }
}

/*-----------------
 *メインビジュアルバナー　20210323追加
-----------------*/
.top_banner{
	display: none;
}

/* タブレット横サイズ 1024px(16×64em)~ mdサイズ */
@media screen and (min-width:64em){
	.top_banner{
		display: block;
		height: 70px;
		position: absolute;
		top: 7em;
		right: 2%;
		box-shadow: 4px 6px 10px rgba(0,0,0,0.6);
		background-color: #fff;
		transition : all 300ms;
		/*animation:move 600ms both;*/
		animation-delay:2s;
	}
	.top_banner a{
		display: block;
	}
	.top_banner:hover{
		box-shadow: 4px 6px 20px rgba(0,0,0,0.6);
		transition : all 300ms;
	}
	.top_banner:hover img{
		opacity: 0.85;
	}
}



/* ノートPC以上のサイズ 1200px(16×75em)~ lgサイズ */
@media screen and (min-width:75em) {
	.top_banner{
		right: 6%;
	}
	#sec-news li {
		margin-bottom: .75em;
	}
}

@keyframes move {
	0% {
		top: 29em;
	}
	50% {
		top: 28.5em;
	}
	100% {
		top: 29em;
	}
}

