@charset "utf-8";
/* CSS Document */

/*----------------------------------------
    共通
----------------------------------------*/

body{
	color: #191919;
	font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
	font-size: 13px;
	line-height: 1.8em;
	font-weight: 500;
}

*{ box-sizing: border-box;}

img { margin: 0; display: inline-block;}

a{ color: inherit; text-decoration: none; transition: all 0.3s ease-out;}
a img{ transition: all 0.3s ease-out;}
a:hover{ color: inherit; text-decoration: none; transition: all 0.3s ease-out;}

.center { text-align: center;}
.right  { text-align: right;}
.left   { text-align: left;}

.red  { color: #ff1f39;}
.bold { font-weight: bold;}
.tLine{	background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 60%, #ffea3d 60%, #ffea3d 100%);}


/*----clearfix----*/
.clearfix:after {  
  content: ".";   
  display: block;   
  height: 0;   
  clear: both;
  visibility: hidden;  
}  
  
.clearfix { display: inline-table; }  
  
/* Hides from IE-mac \*/  
* html .clearfix { height: 1%; }  
.clearfix { display: block; }  
/* End hide from IE-mac */ 


/*--フォント指定--*/
/*明朝*/
.font_min		{ font-family: "Times New Roman" , "游明朝" , "Yu Mincho" , "游明朝体" , "YuMincho" , "ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;}
/*ヒラギノ角*/
.font_hirago	{ font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;}

@media screen and ( max-width: 768px ){
	img {
		width: 100%;
		height: auto;
	}
	.textBox{
        width: 95%;
		margin: 0 auto 20px;
	}
}
@media screen and ( max-width: 768px ){
	/*ボタン開閉*/
	.acButton{
		cursor: pointer;
		padding-right: 30px;
		position: relative;
	}
	.acButton:before{
		content: "";
		display: block;
		background: #5d2159;
		height: 18px;
		width: 2px;
		position: absolute;
		right: 13px;
		top: 0;
		bottom: 0;
		margin: auto;
		transition: all 0.2s ease-out;
		z-index: 50;
	}
	.acButton:after{
		content: "";
		display: block;
		background: #5d2159;
		width: 18px;
		height: 2px;
		position: absolute;
		right: 5px;
		top: 0;
		bottom: 0;
		margin: auto;
		transition: all 0.2s ease-out;
		z-index: 50;
	}
	.acButton.selected:before{
		transform: rotate(90deg);
		-webkit-transform: rotate(90deg);
	}
	.acButton.selected:after{
		opacity: 0;
	}
}
@media screen and (min-width: 768px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}


/*----------------------------------------
    ヘッダー
----------------------------------------*/
header {
    margin-bottom: 10px;
}
header .headBox{
    width: 100%;
	margin: auto;
}

header .headBox > div.inner{
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	width: 1200px;
	height: 90px;
	margin: auto;
	padding: 10px 0;
}
header .headBox > div.inner > p{
	color: #333;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.03em;
}

@media screen and (max-width: 768px) {
	header {
		width: 100%;
		z-index: 999;
		position:fixed;
		background: none;
		height: auto;
	}
	header .headBox{
		background-color: rgba(255,255,255,1);
		width: 100%;
		padding-bottom: 0;
		border-bottom: 1px solid #272727;
		position: relative;
		z-index: 550;
	}
	header .headBox > div.inner{
		align-items: center;
		width: 100%;
		height: 60px;
		padding: 2px 5px;
	}
	header .headBox > div.inner > h1{
		width: 150px;
	}
	header .headBox > div.inner > p{
		display: none;
	}
}

/*----------------------------------------
    g-navi
----------------------------------------*/

header nav{
	background-color: #272727;
}
header nav > ul{
	display: flex;
	justify-content: space-between;
	max-width: 1100px;
	margin: auto;
	position: relative;
}
header nav > ul > li{
	width: calc(100% / 4);
	height: 35px;
	color: #fff;
	text-align: center;
	transition: all 0.3s ease-out;
}
header nav > ul > li > a{
	display: block;
	padding: 6px 10px;
	font-weight: bold;
	letter-spacing: 0.05em;
}
header nav > ul > li > a span{
	display: inline-block;
	padding-left: 25px;
	position: relative;
}
header nav > ul > li > a span:after{
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
	transform: rotate(45deg);
	position: absolute;
	left: 5px;
	top: 0;
	bottom: 0;
	margin: auto;
}
header nav > ul > li:hover{
	background-color: #fff;
	color: #272727;
}
header nav > ul > li:hover span:after{
	border-top: 2px solid #272727;
	border-right: 2px solid #272727;
}

header nav > ul > li.catalog,
header nav > ul > li.spBnr{
	display: none;
}


/**/
.Nav .navbtn {
  display: none;
}

.Nav ul.close {
  display: none;
}

@media screen and (max-width: 768px) {
	header nav {
		height: 100%;
		position: relative;
	}
	
	/*メニュー開閉ボタン*/
	.Nav .navbtn {
		display: block;
		background: #fff;
        width: 50px;
		height: 50px;
		position: absolute;
		top: -57px;
		right: 0;
		z-index: 560;
	}
	
	.Nav .navbtn a,
	.Nav .navbtn a.close {
		display: block;
		position: relative;
		width: 50px;
		height: 50px;
	}
	.Nav .navbtn a::before,
	.Nav .navbtn a.close::before {
		position: absolute;
		top: 14px;
		left: 10px;
		content:"";
		width: 30px;
		height: 3px;
		background-color: #272727;
		transition: .2s;
	}
	.Nav .navbtn a.open::before {
		top: 24px;
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}
	.Nav .navbtn a::after,
	.Nav .navbtn a.close::after {
		position: absolute;
		bottom: 12px;
		left: 10px;
		content:"";
		width: 30px;
		height: 3px;
		background-color: #272727;
		transition: .2s;
	}
	.Nav .navbtn a.open::after {
		bottom: 23px;
		transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
	}
    
	.Nav .navbtn a span {
		display: block;
		overflow: hidden;
		width: 1px;
		height: 1px;
	}
	.Nav .navbtn a span::after,
	.Nav .navbtn a.close span::after {
		position: absolute;
		top: 25px;
		left: 10px;
		content:"";
		width: 30px;
		height: 3px;
		background-color: #272727;
	}
	.Nav .navbtn a.open span::after {
		display: none;
	}
	
	/*--メニューメイン--*/
	header nav > ul {
		display: none;
		background: rgba(255,255,255,0.95);
		width: 100%;
		height: 100%;
		padding: 60px 0 30px;
		position: fixed;
		top: 0;
		z-index: 500;
		overflow-y: scroll;
	}
	
	header nav > ul > li {
		width: 100%;
		height: auto;
		text-align: left;
		font-size: 15px;
		border-bottom: solid 1px #272727;
	}
	header nav > ul > li > a {
		display: block;
        width: 100%;
        height: auto;
		color: #333;
		padding: 10px 15px;
		padding-right: 30px;
		font-size: 15px;
		position: relative;
	}
	header nav > ul > li a:after {
		content: "";
		display: block;
		width: 8px;
		height: 8px;
		border-top: 2px solid #272727;
		border-right: 2px solid #272727;
		transform: rotate(45deg);
		position: absolute;
		top: 0;
		bottom: 0;
		right: 10px;
		margin: auto;
	}
	header nav > ul > li a span{
		padding: 0;
	}
	header nav > ul > li a span:after{
		display: none;
	}

	/*開閉リンク*/
	header nav > ul > li.parent > a:before,
	header nav > ul > li.parent > a:after{
		content: "";
		display: block;
		background-color: #272727;
		width: 16px;
		height: 2px;
		position: absolute;
		left: auto;
		right: 5px;
		top: 50%;
		bottom: auto;
		border: none;
        z-index: 10;
		transition: all 0.3s ease-out;
	}
	header nav > ul > li.parent > a:before{
		transform: rotate(0deg);
	}
	header nav > ul > li.parent > a:after{
		transform: rotate(90deg);
	}
	header nav > ul > li.parent.open > a:before{
		opacity: 0;
	}
	header nav > ul > li.parent.open > a:after{
		transform: rotate(0deg);
	}

	/**/
	header nav > ul > li.catalog{
		display: block;
	}

	/**/
	header nav > ul > li.spBnr{
		display: block;
		color: #666;
		padding: 6px 0;
		font-size: 13px;
		font-weight: 700;
		letter-spacing: 0.03em;
		text-align: center;
	}
	header nav > ul > li.spBnr a{
		display: block;
	}
	header nav > ul > li.spBnr img{
		width: auto;
	}
}

/* メニュー2階層 */
header nav > ul > li .submenu{
	width: 1100px;
	height: 0;
	overflow: hidden;
	opacity: 0;
	transition: all 0.2s ease-out;
	position: absolute;
	top: 35px;
	right: 0;
	z-index: 500;
}
header nav > ul > li.navSearch .submenu{
	left: 0;
}
header nav > ul > li.navSearch:hover .submenu{
	height: 350px;
	opacity: 1;
}

header nav > ul > li .submenu > div{
	width: 100%;
	background: rgba(255,255,255,1);
	padding: 10px 0;
	box-shadow: 0 2px 2px rgba(0,0,0,0.2);
}

header nav > ul > li .submenu ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	margin: 0;
	padding: 20px auto;
}

header nav > ul > li .submenu ul li{
	color: #333;
	width: calc(100% / 4);
	margin: 0 0 5px;
	padding: 0 5px;
	font-size: 14px;
	font-weight: 600;
	text-align: left;
	line-height: 1.3em;
}
header nav > ul > li .submenu ul li a{
	display: block;
	padding: 10px 10px;
	border-bottom: 1px solid #ccc;
}

header nav > ul > li .submenu ul li a:hover{
	background-color: #ddd;
    opacity: 1;
}


@media screen and (max-width: 768px) {
	header nav > ul > li.parent .submenu{
		display: none;
		width: auto;
		height: auto;
		max-height: 1500px;
		opacity: 1;
		position: static;
		top: auto;
		left: auto;
		right: auto;
	}
	header nav > ul > li.parent:hover .submenu{
		height: auto;
	}
	
	header nav > ul > li.parent .submenu > div{
		width: 100%;
		background: #f4f4f4;
        margin: 0;
		padding: 0;
        border-top: 1px solid #272727;
	}
	header nav > ul > li.parent .submenu ul{
		width: 100%;
		margin: auto;
	}
	header nav > ul > li.parent .submenu ul li{
		width: 50%;
		margin: 0;
		padding: 0;
		font-size: 13px;
	}
	header nav > ul > li.parent .submenu ul li a{
		display: block;
		height: 100%;
		padding: 12px 10px;
		padding-right: 20px;
		position: relative;
	}
	header nav > ul > li.parent .submenu ul li a:after {
		width: 6px;
		height: 6px;
		border-top: 2px solid #ccc;
		border-right: 2px solid #ccc;
	}

}
@media screen and (max-width: 480px) {
	header nav > ul > li.parent .submenu ul li{
		width: 100%;
	}
}

/*----------------------------------------
    フッター
----------------------------------------*/

footer{
	background-color: #272727;
}
footer > .inner{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 1000px;
	margin: auto;
	padding: 40px 0;
}

/*---サイト情報---*/
footer div.footInfo{
	width: 360px;
	padding: 20px;
	border-right: 1px solid #fff;
}
footer div.footInfo .logo{
	margin-bottom: 20px;
}

footer div.footInfo dl{
	color: #fff;
	font-size: 15px;
}
footer div.footInfo dl dt{
	font-size: 20px;
	font-weight: bold;
}
footer div.footInfo dl dt b{
	font-size: 25px;
}

footer div.footInfo dl dd p{
	margin: 10px 0;
}
footer div.footInfo dl dd .p_mark img{
	max-width: 250px;
	margin-bottom: 15px;
}

/*---サイトリンク---*/
footer div.footLink{
    display: flex;
    flex-wrap: wrap;
	justify-content: space-between;
	width: 600px;
	color: #fff;
	padding: 20px 0;
}
footer div.footLink > *{
	width: 49%;
}
footer div.footLink > dl dt{
	margin-bottom: 10px;
	font-size: 15px;
	font-weight: 600;
}

footer div.footLink ul li a{
	display: block;
	padding: 0 5px;
	border-left: 1px solid transparent;
}
footer div.footLink ul li a:hover{
	color: #fff;
	background-color: rgba(255,255,255,0.3);
	border-left: 1px solid #ccc;
}


/*---コピーライト---*/
footer .copyright{
	background-color: #fff;
    padding: 10px 0;
	text-align: center;
}
footer .copyright small{
	color: #333;
	margin: 15px 0 0;
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3em;
}
footer .copyright small br{
	display: none;
}

/*トップへ戻るボタン*/
div#page-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
	z-index: 400;
}
div#page-top a{
	display: block;
	width: 60px;
	height: 60px;
	background: #444;
	color: #fff;
	padding: 30px 5px 5px;
	border-radius: 5px;
	font-size: 10px;
	line-height: 1.2em;
	text-align: center;
	opacity: 0.9;
	position: relative;
}
div#page-top a:hover{
	opacity: 0.7;
}
div#page-top a:after{
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	position: absolute;
	left: 0;
	right: 0;
	top: 15px;
	margin: auto;
	border-top: 2px solid #fff;
	border-left: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}


@media screen and (max-width: 768px) {
	footer > .inner{
		width: 95%;
		padding: 20px 0;
	}
	
	/*---サイト情報---*/
	footer div.footInfo{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		align-items: center;
		width: 100%;
		padding: 0;
		border-right: none;
		border-bottom: 1px solid #fff;
	}
	footer div.footInfo .logo{
		width: 48%;
		margin: auto;
	}
	
	footer div.footInfo dl{
		width: 48%;
		margin: auto;
		font-size: 14px;
	}
	footer div.footInfo dl dt{
		font-size: 16px;
	}
	footer div.footInfo dl dt b{
		font-size: 20px;
	}
	footer div.footInfo dl dd .p_mark{
		text-align: center;
	}
	
	/*---サイトリンク---*/
	footer div.footLink{
		width: 100%;
	}
	footer div.footLink > *{
		width: 100%;
		margin-bottom: 10px;
		padding-bottom: 10px;
		border-bottom: 1px solid #fff;
	}
	footer div.footLink > *:last-child{
		border-bottom: none;
	}
	footer div.footLink > dl dt{
		margin-bottom: 10px;
		font-size: 15px;
		font-weight: 600;
	}
	footer div.footLink ul{
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
	}
	footer div.footLink ul li{
		width: calc(100% / 2);
		padding: 2px;
	}
	footer div.footLink ul li a{
		padding: 3px;
	}

    /*トップへ戻るボタン*/
    div#page-top {
        position: fixed;
        bottom: -10px;
        right: -10px;
        z-index: 400;
    }
    div#page-top a{
		padding: 25px 12px 5px 2px;
    }
	div#page-top a:after{
		width: 7px;
		height: 7px;
		top: 12px;
		right: 5px;
	}
}

@media screen and (max-width: 480px) {

	/*---サイト情報---*/
	footer div.footInfo .logo{
		width: 100%;
		margin: auto;
		text-align: center;
	}
	footer div.footInfo .logo img{
		max-width: 280px;
	}
	
	footer div.footInfo dl{
		width: 100%;
		font-size: 14px;
	}
	footer div.footInfo dl dt{
		font-size: 15px;
	}
	footer div.footInfo dl dt b{
		font-size: 16px;
	}
	
	/*---サイトリンク---*/
	footer div.footLink ul li{
		width: calc(100% / 1);
	}
    
    /*コピーライト*/
    footer .copyright small{
        margin: 15px 2% 0;
        font-size: 12px;
    }

}


/*----------------------------------------
    メイン
----------------------------------------*/

/*パンくずリスト*/
main .breadBox{
	margin: 0 0 10px;
}
main .breadBox ol{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	max-width: 1000px;
	margin: auto;
	line-height: 1.2em;
}
main .breadBox ol li{
	padding-right: 10px;
	font-size: 11px;
	position: relative;
}
main .breadBox ol li a{
	color: #4048a3;
}
main .breadBox ol li:not(:last-child):after{
	content: "";
	display: block;
	width: 5px;
	height: 5px;
	border-top: 1px solid #666;
	border-right: 1px solid #666;
	transform: rotate(45deg);
	margin: auto;
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
}


/*------ contentArea ------*/
main .container .containerInner{
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
	width: 1000px;
	margin: 0 auto 40px;
}


/*タグ*/
ul.tagList{
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	margin: 5px 0;
}
ul.tagList li{
	display: inline-block;
	font-size: 11px;
	font-weight: 600;
	line-height: 1.8em;
}
ul.tagList li a{
	display: block;
	background-color: #fff;
	padding: 0 5px;
	border-radius: 5px;
}
ul.tagList li a:hover{
	color: #fff;
	opacity: 1;
}

ul.tagList li.type a,
ul.tagList li.type1 a{
	color: #0bc4e6;
	border: 1px solid #0bc4e6;
}
ul.tagList li.type a:hover,
ul.tagList li.type1 a:hover{
	background-color: #0bc4e6;
	color: #fff;
}
ul.tagList li.use a,
ul.tagList li.type2 a{
	color: #1dbe47;
	border: 1px solid #1dbe47;
}
ul.tagList li.use a:hover,
ul.tagList li.type2 a:hover{
	background-color: #1dbe47;
	color: #fff;
}
ul.tagList li.industry a,
ul.tagList li.type3 a{
	color: #3f35c5;
	border: 1px solid #3f35c5;
}
ul.tagList li.industry a:hover,
ul.tagList li.type3 a:hover{
	background-color: #3f35c5;
	color: #fff;
}

ul.tagList li.record a{
	background-color: #2630a0;
	color: #fff;
	border: 1px solid #2630a0;
}
ul.tagList li.record a:hover{
	background-color: #fff;
	color: #2630a0;
}
ul.tagList li.column a{
	background-color: #03992a;
	color: #fff;
	border: 1px solid #03992a;
}
ul.tagList li.column a:hover{
	background-color: #fff;
	color: #03992a;
}
ul.tagList li.diary a{
	background-color: #cd0c82;
	color: #fff;
	border: 1px solid #cd0c82;
}
ul.tagList li.diary a:hover{
	background-color: #fff;
	color: #cd0c82;
}
ul.tagList li.news a{
	background-color: #d89800;
	color: #fff;
	border: 1px solid #d89800;
}
ul.tagList li.news a:hover{
	background-color: #fff;
	color: #d89800;
}

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

	/*パンくずリスト*/
	main .breadBox{
		padding: 5px;
	}
	main .breadBox ol{
		overflow-x: auto;
		flex-wrap: nowrap;
		white-space: nowrap;
	}
	
	/*------ contentArea ------*/
	main .container .containerInner{
		flex-wrap: wrap;
		width: 100%;
		margin: 0 auto 40px;
	}
}

/*----------------------------------------
    サイドナビゲーション
----------------------------------------*/

.containerInner > aside{
	width: 240px;
}
.containerInner > aside .sideBox{
    margin-bottom: 30px;
}

/*販促モールリンク*/
.sideBox .mallLink{
	margin-bottom: 20px;
}
.sideBox .mallLink dt{
	background-color: #fff;
	color: #0310a6;
	margin-bottom: 10px;
	padding: 7px 10px;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	border: 1px solid #5a5a5a;
	box-shadow: 2px 2px 0 #d5d5d5;
	position: relative;
}
.sideBox .mallLink dt b{
	display: inline-block;
	font-size: 20px;
}
.sideBox .mallLink dt:before{
	content: "";
	border: 6px solid transparent;
	border-top: 6px solid #5a5a5a;
	border-left: 6px solid #5a5a5a;
	position: absolute;
	left: 0;
	top: 0;
}

/*カタログリンク*/
.sideBox .bnrLink{
	margin-bottom: 20px;
}

/**/
.sideBox .mallLink img,
.sideBox .bnrLink img{
	width: 100%;
	height: auto;
}
.sideBox .mallLink a:hover img,
.sideBox .bnrLink a:hover img{
	opacity: 0.6;
}


/*実績*/
.sideBox .sideCont > dt{
	margin-bottom: 15px;
}
.sideBox dl.sideCont > dt a{
    display: block;
    background-color: #2a315b;
	background-image: linear-gradient(to right, #0d6ba8 0%, #272da0 100%);
    color: #fff;
    padding: 20px 30px 20px 15px;
    font-size: 18px;
	font-weight: 600;
    text-align: center;
	letter-spacing: 0.1em;
    position: relative;
}
.sideBox dl.sideCont > dt a:before{
	content: "";
	display: block;
	background-image: linear-gradient(to right, #272da0 0%, #4aa0d8 100%);
	width: 100%;
	height: 5px;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
}
.sideBox dl.sideCont > dt a:after{
    content: "";
    display: block;
    width: 0;
    height: 0;
    border: 7px solid transparent;
    border-left: 10px solid #fff;
    position: absolute;
    right: 5px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.sideBox dl.sideCont > dt a:hover{
    color: #fff;
    opacity: 0.5;
}

.sideBox dl.sideCont > dd{
    color: #2a315b;
    padding: 0;
    border-bottom: 2px solid #fff;
}
.sideBox dl.sideCont > dd dl dt{
	color: #5a5a5a;
	padding: 5px 10px;
    font-size: 18px;
	font-weight: 600;
	border-bottom: 1px solid #c0c0c0;
}
.sideBox dl.sideCont > dd dl dd{
	padding: 10px;
}

.sideBox ul.tagList li a{
	padding: 5px;
    font-size: 14px;
	line-height: 1.3em;
	letter-spacing: -0.03em;
}

/*新着*/
.sideBox dl.sideNews > dt{
    color: #485ee3;
    padding: 15px;
	font-size: 18px;
	font-weight: 600;
    text-align: center;
	letter-spacing: 0.1em;
	border-top: 1px solid #485ee3;
	border-bottom: 1px solid #485ee3;
}
.sideBox dl.sideNews > dd{
    color: #2a315b;
    padding: 0;
}
.sideBox dl.sideNews ul.newsBox > li{
    margin: 15px 0;
}
.sideBox dl.sideNews ul.newsBox > li a{
    display: flex;
}
.sideBox dl.sideNews ul.newsBox > li a:hover{
    background-color: #eef0fc;
    opacity: 0.6;
}

.sideBox dl.sideNews ul.newsBox > li div{
    width: 80px;
	margin-right: 10px;
	flex-shrink: 0;
}
.sideBox dl.sideNews ul.newsBox > li img{
    width: 100%;
	height: auto;
}
.sideBox dl.sideNews ul.newsBox > li ul li{
    color: #040404;
    font-size: 12px;
    font-weight: 600;
	line-height: 1.6em;
}
.sideBox dl.sideNews ul.newsBox > li ul li.day{
    color: #a2a2a2;
    font-size: 14px;
}

@media screen and (max-width: 768px) {
	.containerInner > aside{
		width: 100%;
	}

	/*販促モールリンク*/
	.sideBox .mallLink{
		width: 95%;
		margin: 0 auto 15px;
	}
	.sideBox .mallLink > dt b{
		margin-left: 10px;
	}
	.sideBox .mallLink > dd{
		text-align: center;
	}
	
	/*カタログリンク*/
	.sideBox .bnrLink{
		margin: 0 auto 15px;
	}
	
	/**/
	.sideBox .mallLink img,
	.sideBox .bnrLink img{
		width: 90%;
		max-width: 280px;
	}
	
	/*実績*/
	.sideBox dl.sideCont > dt a{
		padding: 15px 20px 15px 10px;
		font-size: 18px;
	}
	
	.sideBox dl.sideCont > dd dl dt{
		font-size: 17px;
	}
	.sideBox dl.sideCont > dd dl dd{
		padding: 5px 10px;
	}

	.sideBox ul.tagList li a{
		padding: 3px 5px;
		font-size: 13px;
	}
	
	/*新着*/
	.sideBox dl.sideNews > dt{
		font-size: 18px;
	}
	.sideBox dl.sideNews ul.newsBox{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 95%;
		margin: auto;
	}
	.sideBox dl.sideNews ul.newsBox > li{
		width: 48%;
		margin: 10px 0;
	}
	
	.sideBox dl.sideNews ul.newsBox > li div{
		width: 40%;
	}
}
@media screen and (max-width: 480px) {
	
	/*販促モールリンク*/
	.sideBox .mallLink > dt b{
		margin-left: 0;
	}

	.sideBox dl.sideNews ul.newsBox > li{
		width: 100%;
	}
	.sideBox dl.sideNews ul.newsBox > li div{
		width: 120px;
	}
}

/*----------------------------------------
    左側メインコンテンツ
----------------------------------------*/

.mainContents{
	width: 730px;
	padding: 0;
}

@media screen and (max-width: 768px) {
	.mainContents{
		width: 100%;
		box-sizing: border-box;
	}
}

/*-----各種Hタグ-----*/

/*下層コンテンツh2*/
.h2Box{
	background: linear-gradient(to right, #92658c 0%,#fff 100%);
	margin-bottom: 20px;
	padding-bottom: 2px;
	position: relative;
}
.h2Box:before{
	content: "";
	display: block;
	background: linear-gradient(to right, #92658c 0%,#fff 100%);
	width: 100%;
	height: 4px;
	position: absolute;
	bottom: -6px;
}
.h2Box h2{
	background-color: #fff;
	padding: 8px 5px 8px 40px;
	font-size: 24px;
	font-weight: bold;
    position: relative;
}
.h2Box h2:before{
    content: "";
    display: block;
    width: 29px;
    height: 29px;
	background-image: url(../../_images/common/bullet_diamond2_purple.gif);
    background-repeat: no-repeat;
    position: absolute;
    left: 5px;
    top: 0;
    bottom: 0;
    margin: auto;
}

/*下層コンテンツh3*/
.hUnderLine{
	margin-bottom: 20px;
    position: relative;
}
.hUnderLine:after{
    content: "";
    display: block;
    width: 100%;
    height: 3px;
	background: linear-gradient(to right, #9a6096 40%,#fff 100%);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.hUnderLine h3{
	padding: 5px 5px 5px 35px;
	font-size: 20px;
	font-weight: bold;
}
.hUnderLine h3:before {
    content: "";
    display: block;
	background: url(../../_images/common/bullet_square_purple.gif) no-repeat 0 50%;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

/**/
.hDoubleLine{
	background: #ccc;
    padding: 2px 0;
	margin-bottom: 20px;
    position: relative;
}
.hDoubleLine h3{
	background: linear-gradient(to right, #fff 80%,#ccc 100%);
	padding: 5px 5px 5px 35px;
	font-size: 20px;
	font-weight: bold;
}
.hDoubleLine h3:before {
    content: "";
    display: block;
	background: url(../../_images/common/bullet_square_purple.gif) no-repeat 0 50%;
    width: 24px;
    height: 24px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}



/*リンクボタン*/
.linkBtn{
	display: block;
	margin: 30px auto;
	text-align: center;
}
.linkBtn a{
	display: block;
	background-color: #272727;
    color: #fff;
	width: 440px;
    margin: auto;
	padding: 15px;
	padding-right: 30px;
	font-size: 18px;
	font-weight: 600;
	overflow: hidden;
	position: relative;
}
.linkBtn a:before{
	content: "";
	width: 200%;
	height: 1000%;
	background: #fff100;
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	-webkit-transform: translateX(-89%) translateY(-50%) rotate(135deg);
	transform: translateX(-89%) translateY(-50%) rotate(135deg);
	position: absolute;
	top: 0;
	left: 0;
}
.linkBtn a:hover:before {
	-webkit-transform: translateX(-3%) translateY(-50%) rotate(135deg);
	transform: translateX(-3%) translateY(-50%) rotate(135deg);
}

.linkBtn a span{
	position: relative;
	z-index: 10;
}
.linkBtn a:after{
	content: "";
	display: block;
	width: 0;
	height: 0;
    border: 7px solid transparent;
    border-left: 10px solid #fff;
	position: absolute;
	right: 5px;
	top: 0;
	bottom: 0;
	margin: auto;
}

.linkBtn a:hover{
    color: #272727;
}
.linkBtn a:hover:after{
    border-left: 10px solid #272727;
}

/**/
.contentsLink a:hover{
	opacity: 0.5;
}


/*赤色
.btnRed{
	background: linear-gradient(to bottom, #f9c59a 0%,#e8839c 100%);
}
.btnRed a{
	background: linear-gradient(to bottom, #f48f3d 0%,#d82641 100%);
}*/

/*青色
.btnBlue{
	background: linear-gradient(to right, #5a74ef 0%,#66c1fd 100%);
}
.btnBlue a{
	background: linear-gradient(to right, #052ee7 0%,#16a0fc 100%);
}*/


@media screen and (max-width: 768px) {
	.linkBtn a{
		width: 80%;
		margin: auto;
	}
	.linkBtn a:before{
		content: "";
		display:block;
		width: 40px;
		height: 40px;
		transform: rotate(45deg);
		position: absolute;
		top: -20px;
		left: -20px;
	}
	.linkBtn a:hover:before {
		background-color: #272727;
		transform: rotate(45deg);
	}
	.linkBtn a:hover{
		background-color: #fff100;
		color: #272727;
	}
}

@media screen and (max-width: 480px) {
	.linkBtn a{
		width: 90%;
		font-size: 16px;
	}
}



/*------お問い合わせバナー------*/
/*メインコンテンツのお問い合せ*/
.mainContents .contactBanner{
	background: url(../../_images/common/contact_bg.jpg) repeat-x bottom;
	margin-bottom: 40px;
}
.mainContents .contactBanner div{
	background-image: url(../../_images/common/contact_staff.png);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: 230px auto;
	min-height: 260px;
	margin: 0 20px;
	padding: 10px 0;
	box-sizing: border-box;
}
.mainContents .contactBanner ul.infoBox{
	width: 590px;
}
.mainContents .contactBanner ul.infoBox li{
	margin: 5px;
	text-align: center;
}
/*ボタン2つ*/
.mainContents .contactBanner ul.linkBtn{
	display: flex;
	width: 645px;
}
.mainContents .contactBanner ul.linkBtn li{
	width: 320px;
	margin: 0 5px;
	text-align: center;
}
/*ボタン1つ*/
.mainContents .contactBanner ul.linkBtnMail{
	display: block;
	width: 645px;
}
.mainContents .contactBanner ul.linkBtnMail li{
	width: auto;
	margin: 0 5px;
	text-align: center;
}


.mainContents .contactBanner ul.linkBtn li img,
.mainContents .contactBanner ul.linkBtnMail li img{
	width: auto;
	vertical-align: middle;
}
.mainContents .contactBanner ul.linkBtn li a,
.mainContents .contactBanner ul.linkBtnMail li a{
	display: block;
	padding: 5px;
	box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.mainContents .contactBanner ul.linkBtn li a span,
.mainContents .contactBanner ul.linkBtnMail li a span{
	display: block;
	padding: 5px 0;
}



@media screen and (max-width: 768px) {
	.mainContents .contactBanner div{
		background-size: 30% auto;
		min-height: auto;
		margin: 0 2%;
	}
	.mainContents .contactBanner ul.infoBox{
		width: 80%;
	}
	.mainContents .contactBanner ul.linkBtn,
	.mainContents .contactBanner ul.linkBtnMail{
		width: 90%;
	}
	.mainContents .contactBanner ul.linkBtn li{
		width: 46%;
		margin: 0 2%;
	}
	.mainContents .contactBanner ul.linkBtnMail li{
		width: auto;
		margin: 0 2%;
	}
	.mainContents .contactBanner ul.linkBtn li img,
	.mainContents .contactBanner ul.linkBtnMail li img{
		width: 80%;
		max-width: 205px;
	}
}

/*---続きを読む---*/
.grad-trigger {
	display: none;
}
.grad-item::before {
  display: none;
}

@media screen and (max-width: 736px) {
	.grad-wrap {
	  position: relative;
	  padding-bottom: 40px;
	}
	.grad-wrap + .grad-wrap {
	  margin-top: 40px;
	}
	.grad-trigger {
		display: block;
		background: #00a6d9;
		color: #fff;
		width: 150px;
		position: absolute;
		bottom: 10px;
		left: 0;
		right: 0;
		margin: auto;
		text-align: center;
		border-radius: 10px;
		z-index: 10;
	}
	.grad-trigger::after {
	  content: "続きを読む" /*クリック前のボタンのラベル*/
	}
	.grad-trigger .fa {
	  margin-right: .5em;
	}
	.grad-item {
	  position: relative;
	  overflow: hidden;
	}
	.grad-item.is-hide {
	  height: 50px; /*隠した後の高さ*/
	}
	.grad-item::before {
	  display: block;
	  position: absolute;
	  bottom: 0;
	  left: 0;
	  content: "";
	  width: 100%;
	  height: 20px; /*グラデーションで隠す高さ*/
	  background: -webkit-linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
	  background: linear-gradient(top, rgba(255,255,255,0) 0%, rgba(255,255,255,0.9) 50%, rgba(255,255,255,0.9) 50%, #fff 100%);
	}
	.grad-trigger.is-show::after {
	  content: "閉じる" /*クリック後にボタンのラベルを変える*/
	}
	.grad-trigger.is-show + .grad-item::before {
	  display: none;
	}
}



