@charset "UTF-8";

/* ---------------------------------------
  基本情報
-----------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Lato:700,900&display=swap');

html,body{	height:100%;}
html{
	font-size:62.5%;
    overflow-y: scroll;
}
body, h1, h2, h3, h4, h5, h6, p, address,
ul, ol, li, dl, dt, dd,
table, th, td, img, form {
	margin: 0;
	padding: 0;
	border: none;
	line-height: 100%;
	list-style-type: none;
	font-style: normal;
	font-weight: normal;
	font-family: "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ",Meiryo,"ＭＳ Ｐゴシック",Arial,Verdana,sans-serif;
	text-align: left;
	color: #1c355a;
	font-size: 1.5rem;
	line-height: 1.4;
}
input, button, textarea, select {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	font-size: 1.5rem;
	line-height: 1.4;
	font-family: "Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","メイリオ",Meiryo,"ＭＳ Ｐゴシック",Arial,Verdana,sans-serif;
	color: #1c355a;
}
textarea{
	resize: vertical;
}
select::-ms-expand {
	display: none;
}
body a {
	cursor: pointer;
	text-decoration: none;
	color: #1c355a;
}
img{
	vertical-align: bottom;
	max-width: 100%;
	height: auto;
}
*,*:after,*:before{
	box-sizing: border-box;
}
p+p{
	margin-top: 30px;
}
@media screen and (min-width: 769px) {
	body{
		min-width: 1000px;
	}
	.sp{
		display: none!important;
	}
}
@media screen and (max-width: 768px) {
	p,li,dt,dd,td,th,
	input, button, textarea, select{
		font-size: 3.7vw;
	}
	body{
		min-width: auto;
		min-width: initial;
	}
	body.fixed{
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
	}
	.pc{
		display: none!important;
	}
	img{
		width: 100%;
	}
	p+p{
		margin-top: 5%;
	}
}

/* マウスオーバー
--------------------------------*/
@media screen and (min-width: 769px) {
	.fade:hover,a:hover img{
		opacity: 0.7;
	}
	.fade,a img{
		transition: opacity 0.3s;
	}
}

/* 汎用
--------------------------------*/
.wrap{
	max-width: 1175px;
	width: 94%;
	margin: 0 auto;
}
.lato,
.lato *{
	font-family: 'Lato', sans-serif;
}
.arial,
.arial *{
	font-family: arial, sans-serif;
}
.tac{
	text-align: center;
}
.tar{
	text-align: right;
}
.tal{
	text-align: left;
}
.aligncenter{
	display: block;
	margin: 0 auto;
}
.alignright{
	float: right;
}
.alignleft{
	float: left;
}
.flex{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.flex.ac-flex{
	align-items: center;
}
.flex.jc-flex{
	justify-content: center;
}
.flex.je-flex{
	justify-content: flex-end;
}
.flex.reverse-flex{
	flex-direction: row-reverse;
}
.flex.nowrap-flex{
	flex-wrap: nowrap;
}
.gray{
	color: #828282;
}
.redlink{
	color: #f7010f;
	text-decoration: underline;
}
@media screen and (min-width: 769px) {
	.redlink:hover{
		text-decoration: none;
	}
}
@media screen and (max-width: 768px) {
	.wrap{
		width: 92%;
		margin: 0 auto;
	}
}

/* ---------------------------------------------
  header
-----------------------------------------------*/
header{
	position: relative;
	z-index: 99999;
}
.hdtop{
	padding: 45px 0 25px;
	background: #f9f3eb;
}
.gnav{
	background: #d80a16;
	z-index: 9999;
}
.gnav .mainmenu{
	display: flex;
	align-items: center;
	justify-content: space-around;
	position: relative;
}
.gnav .mainmenu > li > a{
	font-size: 2.2rem;
	color: #fff;
	display: block;
	padding: .49em .5em;
	font-weight: 900;
	position: relative;
	font-family: arial, sans-serif;
}
.gnav .mainmenu > li > a::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 8px;
	opacity: 0;
	background: #fff;
	transition: .3s;
}
.gnav .mainmenu > li.open > a::before{
	opacity: 1;
}
.gnav .mainmenu > li > a img{
	vertical-align: middle;
	margin-bottom: .2em;
}
.gnav .megamenu{
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	border: 2px solid #d80a16;
	border-top: 0;
	display: none;
	background: #fff;
	z-index: 999;
}
.gnav .megamenu dl{
	display: flex;
	padding: 20px 0;
}
.gnav .megamenu dl dt{
	font-size: 3rem;
	font-family: arial, sans-serif;
	font-weight: 700;
	color: #d80a16;
	width: 250px;
	border-right: 2px solid #d80a16;
	padding: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.gnav .megamenu dl dd{
	padding: 20px 75px;
	width: calc(100% - 250px);
}
.gnav .megamenu dl dd ul li{
	margin-top: .5em;
	display: block;
}
.gnav .megamenu dl dd ul li a{
	font-weight: bold;
}
.gnav .megamenu .searchform{
	position: relative;
}
.gnav .megamenu .searchform input[type="text"]{
	border: 2px solid #1c355a;
	border-radius: 4px;
	height: 64px;
	width: 100%;
	padding: 5px 61px 5px 20px;
	background: #f3f3f3;
}
.gnav .megamenu .searchform button{
	position: absolute;
	top: 48%;
	right: 20px;
	transform: translateY(-50%);
	cursor: pointer;
}
.overlay{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(128,128,128,.54);
	display: none;
	z-index: -1;
}
@media screen and (min-width: 769px) {
	.gnav .mainmenu > li > a:hover::before{
		opacity: 1;
	}
	.gnav .mainmenu > li > a:hover img{
		opacity: 1;
	}
	.gnav .megamenu dl dd ul li a:hover{
		text-decoration: underline;
	}
}
@media screen and (max-width: 768px) {
	header{
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 9997;
	}
	.hdtop{
		padding: 16px 0 12px;
		border-bottom: 2px solid #d80a16;
	}
	.hdtop .wrap{
		position: relative;
	}
	.hdtop .logo{
		width: 128px;
		margin: 0 auto;
	}
	.menu-trigger{
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
		width: 30px;
		height: 30px;
		margin-top: 0;
	}
	.menu-trigger span {
		display: block;
		position: absolute;
		left: 0;
		width: 100%;
		height: 3px;
		background: #d80a16;
		transition: .3s;
	}
	.menu-trigger span:nth-of-type(1) {
		top: 10%;
	}
	.menu-trigger span:nth-of-type(2) {
		top: 50%;
		transform: translateY(-50%);
	}
	.menu-trigger span:nth-of-type(3) {
		bottom: 10%;
	}
	.gnav{
		position: fixed;
		width: 75%;
		height: 100%;
		right: 0;
		top: 0;
		transition: .3s;
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
		background: #fff;
		padding-bottom: 5%;
		transform: translateX(100%);
		z-index: 9999;
	}
	.gnav.menuopen{
		transform: translateX(0);
	}
	.gnav .wrap{
		width: 100%;
	}
	.gnav .mainmenu{
		display: block;
	}
	.gnav .mainmenu > li{
		border-bottom: 1px solid #fff;
		background: #d80a16;
	}
	.gnav .mainmenu > li > a{
		font-size: 4.5vw;
		padding: .5em .8em;
	}
	.gnav .mainmenu > li > a::before{
		display: none;
	}
	.gnav .mainmenu > li > a img{
		width: 7%;
	}
	.gnav .megamenu{
		position: static;
		display: block!important;
		width: 100%;
		border: 0;
		border-top: 0;
	}
	.gnav .megamenu dl{
		display: block;
		padding: 0;
	}
	.gnav .megamenu dl dt{
		display: none;
	}
	.gnav .megamenu dl dd{
		padding: .5em 0;
		width: 100%;
	}
	.gnav .megamenu dl dd ul li{
		margin-top: 0;
	}
	.gnav .megamenu dl dd ul li a{
		font-size: 3.2vw;
		padding: .5em .8em;
		display: block;
	}
	.gnav .megamenu .searchform{
		padding: .5em .8em;
	}
	.gnav .megamenu .searchform input[type="text"]{
		border-width: 1px;
		border-radius: 2vw;
		height: 12vw;
		padding: 0 calc(6% + 1.5em + .5em) 0 .5em;
	}
	.gnav .megamenu .searchform button{
		top: 50%;
		right: 1.5em;
		width: 8%;
		line-height: 1;
	}
	.gnav .megamenu .searchform button img{
		width: 70%;
	}
	.overlay{
		background: rgba(249,243,235,.8) url(../img/common/menuclose.png) no-repeat;
		background-size: 8%;
		background-position: 3% 10px;
		z-index: 9998;
	}
}

/* ---------------------------------------------
  footer
-----------------------------------------------*/
footer{
	position: relative;
}
.topbtn{
	width: 115px;
	height: 115px;
	position: fixed;
	right: 25px;
	bottom: 25px;
}
.topbtn a{
	width: 100%;
	height: 100%;
	background: #d80a16;
	border: 2px solid #d80a16;
	display: block;
	position: relative;
	border-radius: 50%;
	transition: .3s;
}
.topbtn a::before,
.topbtn a::after{
	content: '';
	position: absolute;
	top: calc(50% - 18px);
	left: calc(50% - 14px);
	background: url(../img/common/topbtn.png) no-repeat center center;
	width: 29px;
	height: 37px;
	transition: .3s;
}
.topbtn a::after{
	opacity: 0;
	background-image: url(../img/common/topbtn_red.png);
}
.fnav{
	padding: 36px 0;
	background: #d80a16;
}
.fnav ul{
	display: flex;
	justify-content: center;
	align-items: center;
}
.fnav ul li{
	position: relative;
	padding: 0 25px;
}
.fnav ul li+li::before{
	content: '|';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	font-size: 2.2rem;
	color: #fff;
}
.fnav ul li a{
	font-size: 2.2rem;
	font-weight: 900;
	color: #fff;
	display: inline-block;
	position: relative;
}
.fnav ul li a::before{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 4px;
	background: #fff;
	opacity: 0;
	transition: .3s;
}
.fcopy{
	font-size: 2rem;
	font-weight: 900;
	text-align: center;
	color: #d80a16;
	padding: 10px 0;
	background: #fff;
}
@media screen and (min-width: 769px) {
	.topbtn a:hover{
		background: #fff;
	}
	.topbtn a:hover::before{
		opacity: 0;
	}
	.topbtn a:hover::after{
		opacity: 1;
	}
	.fnav ul li a:hover::before{
		opacity: 1;
	}
}
@media screen and (max-width: 768px) {
	.topbtn{
		width: 12vw;
		height: 12vw;
		right: 4vw;
		bottom: 4vw;
	}
	.topbtn a::before,
	.topbtn a::after{
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		width: 42%;
		height: 42%;
		background-size: contain;
	}
	.topbtn a::after{
		display: none;
	}
	.fnav{
		padding: 7% 0;
	}
	.fnav ul{
		display: flex;
	}
	.fnav ul li{
		padding: 0 .7em;
	}
	.fnav ul li:first-child{
		padding-left: 0;
	}
	.fnav ul li:last-child{
		padding-right: 0;
	}
	.fnav ul li+li::before,
	.fnav ul li a{
		font-size: 3.2vw;
	}
	.fnav ul li a::before{
		display: none;
	}
	.fcopy{
		font-size: 4vw;
		padding: 3% 0;
	}
}

/* ---------------------------------------------
  main
-----------------------------------------------*/

main{
	display: block;
}
@media screen and (max-width: 768px) {
	main{
		padding-top: 60px;
	}
}

/* 背景 bg
--------------------------------*/
.bgwrap{
	background: #fdfaf5;
}
/*.bgwrap.gradbg,
.bgwrap.gradbgwide{
	background-color: #fdfaf5;
	background-image: linear-gradient(-12deg, #fdfaf5 40.7%, #fef5f6 40.7%, #fef5f6 61%, #ffffff 61%, #ffffff 76%, #fdfaf5 76%, #fdfaf5);
	background-size: 4000px 2650px;
	background-position: center top;
	background-repeat: no-repeat;
}
.bgwrap.gradbgwide{
	background-image: linear-gradient(-12deg, #fdfaf5 40.7%, #fef5f6 40.7%, #fef5f6 56%, #ffffff 56%, #ffffff 72%, #fdfaf5 72%, #fdfaf5);
}*/
@media screen and (max-width: 768px) {
	.bgwrap.gradbg,
	.bgwrap.gradbgwide{
		background-size: 100vw 300vw;
	}
}

/* ttl
--------------------------------*/
.secttl{
	text-align: center;
	font-weight: 900;
	margin-bottom: 40px;
}
.secttl .en{
	font-size: 3.5rem;
	line-height: 1.2;
	color: #f7010f;
	display: block;
	margin-bottom: .2em;
}
@media screen and (max-width: 768px) {
	.secttl{
		font-size: 3.2vw;
		margin-bottom: 5%;
	}
	.secttl .en{
		font-size: 6vw;
		margin-bottom: .1em;
	}
}

/* btn
--------------------------------*/
.redbtn{
	font-size: 2rem;
	line-height: 1.4;
	color: #fff;
	text-align: center;
	padding: 1px 30px 5px;
	font-weight: 700;
	display: inline-block;
	background: #d80a16;
	border: 2px solid #d80a16;
	transition: .3s;
}
@media screen and (min-width: 769px) {
	.redbtn:hover{
		color: #d80a16;
		background: #fff;
	}
}
@media screen and (max-width: 768px) {
	.redbtn{
		font-size: 4vw;
		padding: .2em 2.5em .3em;
	}
}

/* grid
--------------------------------*/
.grid2,
.grid3{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}
.grid2 > *{
	/* width: calc((100% - 2.22%) / 2); */
	width: 48.89%;
	margin-right: 2.22%;
}
.grid2 > *:nth-child(2n){
	margin-right: 0;
}
.grid3 > *{
	/* width: calc((100% - (1.4% * 2)) / 3); */
	width: 32.4%;
	margin-right: 1.4%;
}
.grid3 > *:nth-child(3n){
	margin-right: 0;
}
.grid1 > *:nth-child(n+2),
.grid2 > *:nth-child(n+3),
.grid3 > *:nth-child(n+4){
	margin-top: 40px;
}
.imggrid{
	display: flex;
	justify-content: space-between;
}
.imggrid > .img{
	width: 46%;
}
.imggrid > *:not(.img){
	width: 49%;
}
@media screen and (max-width: 768px) {
	.grid3 > *,
	.grid3 > *:nth-child(3n){
		width: calc((100% - 2.22%) / 2);
		margin-right: 2.22%;
	}
	.grid3 > *:nth-child(2n){
		margin-right: 0;
	}
	.grid1 > *:nth-child(n+2),
	.grid2 > *:nth-child(n+3),
	.grid3 > *:nth-child(n+3){
		margin-top: 3%;
	}
	.imggrid{
		display: block;
	}
	.imggrid > .img{
		width: 80%;
		margin: 0 auto;
	}
	.imggrid > *:not(.img){
		width: 100%;
		margin-top: 5%;
	}
}

/* 余白
--------------------------------*/
.mt5{
	margin-top: 5px!important;
}
.mt10{
	margin-top: 10px!important;
}
.mt15{
	margin-top: 15px!important;
}
.mt20{
	margin-top: 20px!important;
}
.mt25{
	margin-top: 25px!important;
}
.mt30{
	margin-top: 30px!important;
}
.mt35{
	margin-top: 35px!important;
}
.mt40{
	margin-top: 40px!important;
}
.mt85{
	margin-top: 85px!important;
}
.mt90{
	margin-top: 90px!important;
}
.pl2em{
	padding-left: 2em;
}
@media screen and (max-width: 768px) {
	.mt5{
		margin-top: 1%!important;
	}
	.mt10{
		margin-top: 2%!important;
	}
	.mt15{
		margin-top: 3%!important;
	}
	.mt20{
		margin-top: 3%!important;
	}
	.mt25{
		margin-top: 4%!important;
	}
	.mt30{
		margin-top: 5%!important;
	}
	.mt35{
		margin-top: 5%!important;
	}
	.mt40{
		margin-top: 6%!important;
	}
	.mt85{
		margin-top: 12%!important;
	}
	.mt90{
		margin-top: 12%!important;
	}
	.pl2em{
		padding-left: 1em;
	}
}

/* breadcrumb
--------------------------------*/
#breadcrumb{
	background: #fff;
}
#breadcrumb .wrap{
	max-width: 1214px;
}
#breadcrumb ul{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 10px 0;
}
#breadcrumb ul li{
	position: relative;
	font-size: 1.3rem;
}
#breadcrumb ul li+li::before{
	content: '|';
	font-size: 1.3rem;
	display: inline-block;
	margin: 0 1em;
}
#breadcrumb ul li a{
	font-size: 1.3rem;
}
@media screen and (min-width: 769px) {
	#breadcrumb ul li a:hover{
		text-decoration: underline;
	}
}
@media screen and (max-width: 768px) {
	#breadcrumb ul{
		padding: 3% 0;
	}
	#breadcrumb ul li,
	#breadcrumb ul li+li::before,
	#breadcrumb ul li a{
		font-size: 3.2vw;
	}
}

/* 日本語英語ライン
--------------------------------*/
.partsline{
	position: relative;
	margin-top: 85px;
	padding-top: 85px;
}
.partsline::before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
	background: #1c355a;
	max-width: 840px;
	width: 90%;
	height: 1px;
}
@media screen and (max-width: 768px) {
	.partsline{
		margin-top: 10%;
		padding-top: 10%;
	}
}

/* セレクト
--------------------------------*/
.selectbtn{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
}
.selectbtn li{
	width: 40%;
	max-width: 160px;
	margin-right: 35px;
}
.selectbtn li:nth-child(4n){
	margin-right: 0;
}
.selectbtn li a{
	width: 100%;
	text-align: center;
	cursor: pointer;
	color: #d80a16;
	background: #fff;
	padding: 2px 0 0;
	border: 2px solid #d80a16;
	transition: .3s;
	display: block;
}
.selectbtn li span{
	display: inline-block;
	padding-right: 1.3em;
	position: relative;
}
.selectbtn li span::before{
	content: '';
	position: absolute;
	top: calc(50% - .27em);
	right: -.2em;
	transform: translateX(-50%);
	border: .35em solid transparent;
	border-top: .6em solid #d80a16;
	transition: .3s;
}
.selectbtn li.current a{
	color: #fff;
	background: #d80a16;
}
.selectbtn li.current span::before{
	border-top-color: #ffffff;
}
@media screen and (min-width: 767px) {
	.selectbtn li a:hover{
		color: #fff;
		background: #d80a16;
	}
	.selectbtn li a:hover span::before{
		border-top-color: #ffffff;
	}
}
@media screen and (max-width: 768px) {
	.selectbtn li{
		width: 45%;
		max-width: 100%;
		margin-right: 2%;
	}
	.selectbtn li:nth-child(2n){
		margin-right: 0;
	}
	.selectbtn li:nth-child(n+3){
		margin-top: 2%;
	}
}

/* table
--------------------------------*/
.table1{
	border-collapse: collapse;
	width: 100%;
}
.table1 th,
.table1 td{
	padding: 25px 15px;
	vertical-align: top;
	border-top: 1px solid #1c355a;
}
.table1 tr:last-child th,
.table1 tr:last-child td{
	border-bottom: 1px solid #1c355a;
}
.table1 th{
	width: 155px;
}
.table1 td{
	width: calc(100% - 155px);
}
.table1 dd{
	margin-top: 10px;
}
.table1 dt:not(:first-child){
	margin-top: 30px;
}
.table2{
	border-collapse: collapse;
	width: 100%;
	border-top: 1px solid #1c355a;
	border-bottom: 1px solid #1c355a;
}
.table2 th,
.table2 td{
	padding: 4px 15px;
	vertical-align: top;
}
.table2 tr:first-child th,
.table2 tr:first-child td{
	padding-top: 20px;
}
.table2 tr:last-child th,
.table2 tr:last-child td{
	padding-bottom: 20px;
}
.table2 th{
	width: 155px;
}
.table2 td{
	width: calc(100% - 155px);
}
@media screen and (max-width: 768px) {
	.table1 th,
	.table1 td{
		display: block;
		width: 100%;
	}
	.table1 th{
		padding: 3% 3% 1%;
	}
	.table1 td{
		padding: 0 3% 3%;
		border-top: 0;
	}
	.table1 tr:last-child th{
		border-bottom: 0;
	}
	.table1 dd{
		margin-top: 3%;
	}
	.table1 dt:not(:first-child){
		margin-top: 6%;
	}
	.table2{
		border-bottom: 0;
	}
	.table2 th,
	.table2 td{
		display: block;
		width: 100%;
		padding: 2% 3%;
	}
	.table2 th,
	.table2 tr:first-child th,
	.table2 tr:last-child th{
		padding: 3% 3% 1%;
	}
	.table2 td,
	.table2 tr:first-child td,
	.table2 tr:last-child td{
		padding: 0 3% 3%;
	}
	.table2 td{
		border-bottom: 1px solid #1c355a;
	}
}

/* リスト
--------------------------------*/
.circlelist li{
	padding-left: 1em;
	text-indent: -1em;
}
.circlelist li+li{
	margin-top: .5em;
}
.circlelist li:before{
	content: '〇';
}

/* ページャー
--------------------------------*/
.pager{
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 60px;
}
.pager li+li{
	margin-left: 5px;
}
.pager li a{
	font-size: 1.3rem;
	text-align: center;
	display: block;
	line-height: 35px;
	background: #fff;
	border: 1px solid #000000;
	height: 35px;
	transition: .3s;
}
.pager li.current a{
	color: #fff;
	background: #000;
}
.pager li:not(.prev):not(.next):not(.back) a{
	width: 35px;
}
.pager li.prev a,
.pager li.back a,
.pager li.next a{
	color: #fff;
	width: 80px;
	background: #000;
}
@media screen and (min-width: 769px) {
	.pager li a:hover{
		color: #fff;
		background: #000;
	}
	.pager li.prev a:hover,
	.pager li.next a:hover,
	.pager li.back a:hover{
		color: #000;
		background: #fff;
	}
}
@media screen and (max-width: 768px) {
	.pager{
		margin-top: 10%;
	}
	.pager li+li{
		margin-left: 1%;
	}
	.pager li a{
		font-size: 2.8vw;
		line-height: 7.5vw;
		height: 7.5vw;
		width: 7.5vw!important;
	}
	.pager li.back a{
		width: 17vw!important;
	}
}

/* list
--------------------------------*/
#list.result{
	padding: 50px 0 240px;
}
#list.result .list{
	display: flex;
	flex-wrap: wrap;
}
#list.result .list li{
	width: 31%;
	/* margin-right: 3.5%; */
}
#list.result .list li:nth-child(3n){
	/* margin-right: 0; */
}
#list.result .list li:nth-child(n+4){
	/* margin-top: 30px; */
}
#list.result .list .thumb{
	border: 1px solid #d1d1d1;
}
#list.result .list .thumb img{
	vertical-align: middle;
}
#list.result .list .txtwrap{
	margin-top: 10px;
}
#list.result .list .txtwrap .newtag span{
	font-size: 1.4rem;
	line-height: 1.4;
	font-weight: 700;
	color: #fff;
	display: inline-block;
	background: #333333;
	padding: .1em 1em 0;
}
#list.result .list .txtwrap .txt{
	margin-top: 5px;
}
@media screen and (min-width: 769px) {
	#list.result .list li .txtwrap .more a:hover{
		text-decoration: underline;
	}
	#list.result .col2sec{
		display: block;
		width: 100%;
	}
	#list.result .col2sec .maincnt{
		width: 100%;
	}
	#list.result .list li{
		width: 24%;
		margin-right: 1.3%;
	}
	#list.result .list li:nth-child(4n){
		margin-right: 0;
	}
	#list.result .list li:nth-child(-n+4){
		margin-top: 0;
	}
	#list.result .list li:nth-child(n+5){
		margin-top: 30px;
	}
}
@media screen and (max-width: 768px) {
	#list.result{
		padding: 10% 0;
	}
	#list.result .list li,
	#list.result .list li:nth-child(3n){
		width: 48%;
		margin-right: 4%;
	}
	#list.result .list li:nth-child(2n){
		margin-right: 0;
	}
	#list.result .list li:nth-child(n+3){
		margin-top: 4%;
	}
	#list.result .list .txtwrap{
		margin-top: .5em;
	}
	#list.result .list .txtwrap .newtag span{
		font-size: 2.7vw;
		padding: .3em 1em .2em;
	}
	#list.result .list .txtwrap .txt{
		margin-top: .3em;
	}
}

/* ------------------------------
    clearfix
------------------------------ */

.cf:after{
  content: ".";
  display: block;
  height: 0;
  font-size:0;
  clear: both;
  visibility:hidden;
}

.cf {display: inline-block;}

/* Hides from IE Mac */
* html .cf {height: 1%;}
.cf {display:block;}
/* End Hack */
