@charset "utf-8";


/*---------------------------------------------------------------------------------------
	大枠設定
----------------------------------------------------------------------------------------*/

body{
	font-family: noto-sans-cjk-jp, sans-serif;
	color:#111;
	text-align:center;
}
#wrapper{
	padding-top: 50px;
}
.switch{}
a{ color:#111; text-decoration:none; -webkit-transition: all .2s; transition: all .2s;}
a:hover{ opacity: .7; text-decoration:none;}
img.imgalpha, .svg path, .svg polygon{ -webkit-transition: all .2s; transition: all .2s;}
.svg{ vertical-align: middle;}
/* font */
.gothic{ font-family: noto-sans-cjk-jp, sans-serif;}
.mincho{ font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN",HGS明朝E,メイリオ,Meiryo,serif;}
/* bg */
.bg-white{ background: #fff;}

/*------------------------------ responsive ------------------------------*/
@media screen and (max-width:768px){
	a:hover{ opacity: 1;}
}






/*---------------------------------------------------------------------------------------
	header
----------------------------------------------------------------------------------------*/

header{
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	padding: 0 2%;
	font-size: 1.3vw;
	font-weight: bold;
	line-height: 50px;
	background: #fff;
	z-index: 99999;
}
header h1{
	float: left;
	width: 17%;
}
header h1 a{
	display: block;
	color: #000;
	background: #fff;
}
header h1 a:hover,
header h1.active a{
	color: #fff;
	background: none;
	opacity: 1;
}
header #menu{
	display: none;
}
header nav{
	float: right;
	width: 83%;
}
header nav #gnav{
	width: 100%;
	display: table;
}
header nav #gnav li{
	display: table-cell;
}
header nav #gnav li a{
	display: block;
	white-space: nowrap;
}
header nav #gnav li a:hover,
header nav #gnav li.active a{
	color: #fff;
	background: #ff7864;
	opacity: 1;
}
header nav #gnav li a:before{
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	margin-right: .5em;
	margin-bottom: 3px;
	vertical-align: middle;
	background-position: center!important;
	background-size: 100% auto!important;
}
header nav #gnav li:nth-child(1) a:before{ background: url("../images/gnav1.png") no-repeat;}
header nav #gnav li:nth-child(2) a:before{ background: url("../images/gnav2.png") no-repeat;}
header nav #gnav li:nth-child(3) a:before{ background: url("../images/gnav3.png") no-repeat;}
header nav #gnav li:nth-child(4) a:before{ background: url("../images/gnav4.png") no-repeat;}
header nav #gnav li:nth-child(5) a:before{ background: url("../images/gnav5.png") no-repeat;}
header nav #gnav li:nth-child(1) a:hover:before,
header nav #gnav li:nth-child(1).active a:before{ background: url("../images/gnav1-on.png") no-repeat;}
header nav #gnav li:nth-child(2) a:hover:before,
header nav #gnav li:nth-child(2).active a:before{ background: url("../images/gnav2-on.png") no-repeat;}
header nav #gnav li:nth-child(3) a:hover:before,
header nav #gnav li:nth-child(3).active a:before{ background: url("../images/gnav3-on.png") no-repeat;}
header nav #gnav li:nth-child(4) a:hover:before,
header nav #gnav li:nth-child(4).active a:before{ background: url("../images/gnav4-on.png") no-repeat;}
header nav #gnav li:nth-child(5) a:hover:before,
header nav #gnav li:nth-child(5).active a:before{ background: url("../images/gnav5-on.png") no-repeat;}
header nav .snav{
	display: none;
}

/*------------------------------ responsive ------------------------------*/
@media screen and (min-width:1000px){
	header{
		font-size: 14px;
		background: #fff;
	}
	header nav #gnav li a:before{
		width: 24px;
		height: 24px;
	}
}
@media screen and (max-width:768px){
	header{
		padding: 0;
		font-size: 12px;
		line-height: 50px;
		background: #fff;
	}
	header h1{
		float: none;
		width: auto;
		font-size: 16px;
		padding: 0 0 0 3%;
		background: #fff;
		position: relative;
		z-index: 99999;
	}
	header h1 a{
		display: block;
		width: 14em;
		color: #fff;
		background: #ff7864;
	}
	header h1 a:hover{
		color: #fff;
		background: #ff7864;
		opacity: 1;
	}
	header #menu{
		display: block;
		position: absolute;
		top: 0;
		right: 0;
		width: 60px;
		height: 60px;
		cursor: pointer;
		z-index: 99999;
	}
	header #menu span{
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 15px;
		width: 30px;
		height: 2px;
		background: #000;
	}
	header #menu span:nth-of-type(1){ top: 18px;}
	header #menu span:nth-of-type(2){ top: 26px;}
	header #menu span:nth-of-type(3){ top: 34px;}
	header.open #menu span:nth-of-type(1){
		-webkit-transform: translateY(7px) rotate(-45deg);
		transform: translateY(7px) rotate(-45deg);
	}
	header.open #menu span:nth-of-type(2){
		left: 50%;
		opacity: 0;
		-webkit-animation: active-menu-bar02 .8s forwards;
		animation: active-menu-bar02 .8s forwards;
	}
	header.open #menu span:nth-of-type(3){
		-webkit-transform: translateY(-9px) rotate(45deg);
		transform: translateY(-9px) rotate(45deg);
	}
	header nav{
		float: none;
		position: fixed;
		left: 0;
		top: -100%;
		width: 100%;
		height: 100%;
		padding: 50px 0 0;
		text-align: center;
		overflow-y: auto;
		-webkit-transition: .5s ease-in-out;
		transition: .5s ease-in-out;
		background: #eee;
	}
	header.open nav{
		-webkit-transform: translateY(100%);
		transform: translateY(100%);
	}
	header nav #gnav{
		width: 100%;
		display: block;
		padding: 20px 3%;
	}
	header nav #gnav li{
		display: block;
		font-size: 16px;
		text-align: left;
	}
	header nav #gnav li a{
		display: block;
	}
	header nav #gnav li a:hover,
	header nav #gnav li.active a{
		color: #000;
		background: none;
		opacity: 1;
	}
	header nav #gnav li a:before{
		content: "";
		display: inline-block;
		width: 35px;
		height: 35px;
		margin-right: .5em;
		vertical-align: middle;
		background-position: center!important;
		background-size: 100% auto!important;
	}
	header nav #gnav li:nth-child(1) a:hover:before,
	header nav #gnav li:nth-child(1).active a:before{ background: url("../images/gnav1.png") no-repeat;}
	header nav #gnav li:nth-child(2) a:hover:before,
	header nav #gnav li:nth-child(2).active a:before{ background: url("../images/gnav2.png") no-repeat;}
	header nav #gnav li:nth-child(3) a:hover:before,
	header nav #gnav li:nth-child(3).active a:before{ background: url("../images/gnav3.png") no-repeat;}
	header nav #gnav li:nth-child(4) a:hover:before,
	header nav #gnav li:nth-child(4).active a:before{ background: url("../images/gnav4.png") no-repeat;}
	header nav #gnav li:nth-child(5) a:hover:before,
	header nav #gnav li:nth-child(5).active a:before{ background: url("../images/gnav5.png") no-repeat;}
	header nav .snav{
		display: block;
		padding: 10px 3%;
		margin: 0 3% 30px;
		font-weight: normal;
		line-height: 1.4;
		background: #fff;
		border-radius: 10px;
	}
	header nav .snav .box1 .more{
		clear: both;
		position: static;
		text-align: center;
		margin-bottom: 10px;
	}
	header nav .snav .box1 .more a{
		display: block;
		writing-mode: inherit;
		color: #fff;
		width: auto;
		text-align: center;
		padding: 5px 0;
		background: #ff7864;
	}
	header nav .snav .box1 .more a:before{
		content: "▶";
		margin-right: .5em;
	}
}
@-webkit-keyframes active-menu-bar02 { 100% { height: 0;}}
@keyframes active-menu-bar02 { 100% { height: 0;}}






/*---------------------------------------------------------------------------------------
	contents
----------------------------------------------------------------------------------------*/

#contents{}
.wrap{
	clear: both;
	box-sizing: content-box;
	max-width: 1000px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 3%;
	padding-right: 3%;
}
.colwrap{
}
.colwrap .leftcol{
	float: left;
	width: 75%;
	width: calc(100% - 273px);
}
.colwrap .rightcol{
	float: right;
	width: 270px;
	padding: 40px 0 40px 25px;
	/*background: #fff;*/
}
.colwrap .rightcol .snav{
	padding: 10px;
	border-radius: 10px 0 0 10px;
	box-shadow: 0px 0px 7px 0px #999;
	background: #fff;
}
.snav{
	text-align: left;
}
.snav .name{
	font-size: 14px;
	text-align: center;
	padding: 0 30px 10px;
	border-bottom: 1px solid #ff7864;
}
.snav .box1{
	clear: both;
	padding: 10px 0 5px;
	border-bottom: 1px solid #ff7864;
	position: relative;
}
.snav .box1 .snav-title{
	color: #ff7864;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
}
.snav .box1 .snav-title2{
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 10px;
}
.snav .box1 div.drawer-icon{
	float: left;
	width: 46%;
	max-width: 180px;
	margin: 0 4% 10px 0;
	line-height: 1.4;
}
.snav .box1 div:nth-of-type(2n){ /*margin-right: 0%;*/}
.snav .box1 div figure{
	margin-bottom: 5px;
}
.snav .box1 .more{
	position: absolute;
	left: -30px;
	top: 10px;
	text-align: center;
	cursor:pointer;
}
.snav .box1 .more span{
	display: block;
	-webkit-writing-mode: vertical-rl;
	-ms-writing-mode: tb-rl;
	max-height: 100px;
	writing-mode: vertical-rl;
	color: #fff;
	width: 20px;
	text-align: center;
	padding: 5px 0;
	background: #ff7864;
}
.snav .box1 .more span:before{
	content: "◀";
}
.snav .box1 ul{
	margin-bottom: 10px;
}
.snav .box2{
	clear: both;
	padding: 20px 0 10px;
}
.snav .box2 p.inputwrap{
	display: table;
	width: 100%;
	margin-bottom: 10px;
}
.snav .box2 p.inputwrap span{
	display: table-cell;
	width: 6em;
	padding: 0 .5em;
	color: #fff;
	font-weight: normal;
	background: #ff7864;
}
.snav .box2 p.inputwrap input{
	font-family: noto-sans-cjk-jp, sans-serif;
	font-size: 14px;
	line-height: 24px;
	height: 24px;
	border: none;
	background: #f8f8f8;
}
.snav .box2 p.btn{
	text-align: center;
	padding: 5px 0;
}
.snav .box2 p.btn button{
	display: inline-block;
	font-family: noto-sans-cjk-jp, sans-serif;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	line-height: 30px;
	letter-spacing: .3em;
	padding: 0 1em 0 1.5em;
	background: #ff7864;
	border-radius: 100px;
	white-space: nowrap;
}
.snav .box2 p.btn button:hover{ opacity: .5;}
.snav .box2 p.kome{
	font-size: 10px;
	text-align: center;
	/*padding: 5px 0 10px;*/
}
.snav .box2 p.link{
	color: #0064b4;
}
.snav .box2 p.link a{
	color: #0064b4;
	text-decoration: underline;
}
/* title */
.title1{
	color: #fff;
	font-size: 24px;
	font-weight: normal;
	text-align: center;
	letter-spacing: .1em;
	margin-bottom: 15px;
	background: #465064;
}
.title2{
	color: #465064;
	font-size: 28px;
	font-weight: normal;
	line-height: 1.3;
	text-align: center;
	margin-bottom: 15px;
	position: relative;
}
.title2:before{
	display: block;
	content: "";
	position: absolute;
	left: 0;
	top: .7em;
	width: 100%;
	height: 1px;
	background: #465064;
}
.title2 span{
	display: inline-block;
	padding: 0 .5em;
	background: #fff;
	position: relative;
}

/* btn */
.btn1_2{
	display: inline-block;
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: .1em;
	padding: .2em 1em .4em 1.2em;
	background: #ff7864;
	border: 1px solid #fff;
	border-radius: 100px;
}

.btn1{
display: inline-block;
color: #fff;
font-size: 18px;
font-weight: bold;
line-height: 1.4;
letter-spacing: .1em;
padding: .1em 1em .2em 1.1em;
background: #ff7864;
border: 1px solid #fff;
border-radius: 100px;
cursor:pointer;
}

.btn2{
	display: inline-block;
	color: #fff;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: .1em;
	padding: .2em 1em .3em 1.1em;
	margin: 0 20px 10px;
	background: #ff7864;
	border-radius: 100px;
}
.btn2.iconright:after{
	content: "▶";
	margin-left: .5em;
}
.btn2.dl:before{
	display: inline-block;
	content: "";
	width: 26px;
	height: 24px;
	margin-right: .5em;
	margin-bottom: .1em;
	background: url(../images/icon-dl.png) no-repeat;
	background-size: 100% auto;
	vertical-align: middle;
}
.btn3{
	display: inline-block;
	color: #fff;
	font-size: 28px;
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: .25em;
	padding: .2em 1em .3em 1.25em;
	margin: 0 auto 10px;
	background: #ff7864;
	border-radius: 100px;
}
.btn4{
	display: inline-block;
	color: #fff;
	/*font-size: 1.5vw;*/
	font-weight: bold;
	line-height: 1.4;
	letter-spacing: .1em;
	padding: .3em 1em .4em 1.1em;
	background: #231815;
	border-radius: 100px;

	width: 100%;
	min-height: 50px;
}

.standard-cont2wrap .btn4{
	display: inline-block;
	color: #fff;
	font-size: 1.5vw;
	font-weight: bold;
	line-height: 3vw;
	letter-spacing: .1em;
	padding: .3em 1em .4em 1.1em;
	background: #231815;
	border-radius: 100px;

	width: 100%;
	min-height: 50px;
}

input[type="button"].btn-favorite,
input[type="button"].btn-favorite2{
	display: inline-block;
	width: auto;
	height: 36px;
	line-height: 36px;
	color: #231815;
	font-family: noto-sans-cjk-jp, sans-serif;
	font-size: 20px;
	font-weight: bold;
	padding-left: 40px;
	background: url(../images/icon-favorite.png) no-repeat left center;
	background-size: 36px;
	border: none;
	outline: 0!important;
	cursor: pointer;
}
input[type="button"].btn-favorite2{
	height: 20px;
	line-height: 20px;
	font-size: 12px;
	font-weight: normal;
	padding-left: 25px;
	background-size: 20px!important;
}
/* ad */
.ad-half{
	clear: both;
	text-align: center;
	padding-top: 10px;
	padding-bottom: 30px;
	overflow: hidden;
}
.ad-half p{
	float: left;
	width: 49.3%;
	margin-right: 1.4%;
}
.ad-half p:nth-child(2n){ margin-right: 0;}

/*------------------------------ responsive ------------------------------*/
@media screen and (max-width:1100px){
	.colwrap .leftcol{
		width: 70%;
		width: calc(100% - 270px);
	}
}
@media screen and (max-width:1000px){
	.colwrap .leftcol{
		width: 65%;
		width: calc(100% - 270px);
	}
}
@media screen and (max-width:768px){
	.colwrap{
	}
	.colwrap .leftcol{
		float: none;
		width: auto;
	}
	.colwrap .rightcol{
		float: none;
		width: auto;
		padding: 40px 3%;
	}
	.colwrap .rightcol .snav{
		padding: 10px 3%;
		border-radius: 10px;
	}
	.colwrap .rightcol .snav .box1 .more{
		clear: both;
		position: static;
		text-align: center;
		margin-bottom: 10px;
	}
	.colwrap .rightcol .snav .box1 .more a{
		display: block;
		writing-mode: inherit;
		color: #fff;
		width: auto;
		text-align: center;
		padding: 5px 0;
		background: #ff7864;
	}
	.colwrap .rightcol .snav .box1 .more a:before{
		content: "▶";
		margin-right: .5em;
	}
	/* title */
	.title1{
		font-size: 20px;
	}
	.title2{
		font-size: 20px;
	}
	/* btn */
	.btn2{
		font-size: 18px;
		padding: .2em .7em .3em .8em;
		margin: 0 10px 10px;
	}
	.btn2.dl:before{
		width: 20px;
		height: 18px;
	}
	.btn3{
		font-size: 22px;
	}
	/* ad */
	.ad-half p{
		float: none;
		width: auto;
		margin-right: 0;
		margin-bottom: 3%;
	}
}






/*---------------------------------------------------------------------------------------
	footer
----------------------------------------------------------------------------------------*/

footer{
	clear: both;
}
footer #fnav{
	background: #dcdcdc;
}
footer #fnav ul{
	padding: 20px 0 0 2%;
	overflow: hidden;
}
footer #fnav ul li{
	float: left;
	font-size: 2vw;
	margin-right: 2%;
	margin-bottom: 2%;
}
footer #fnav ul li:nth-child(1){ width: 36.6%;}
footer #fnav ul li:nth-child(2){ width: 27.7%;}
footer #fnav ul li:nth-child(3){ width: 27.7%;}
footer #fnav ul li:nth-child(4){ width: 36.6%;}
footer #fnav ul li:nth-child(5){ width: 23.2%;}
footer #fnav ul li:nth-child(6){ width: 32.2%;}
footer #fnav ul li a{
	display: block;
	color: #465064;
	font-weight: bold;
	line-height: 72px;
	background: #fff;
	box-shadow: 0px 2px 5px -3px #666;
	border-radius: 5px;
}
footer #fnav ul li:nth-child(6) a{  color: #fff; background: #ff7864;}
footer #fnav ul li a:before{
	content: "";
	display: inline-block;
	width: 50px;
	height: 50px;
	margin-right: .5em;
	vertical-align: middle;
	background-position: center!important;
	background-size: 100% auto!important;
}
footer #fnav ul li:nth-child(1) a:before{ background: url("../images/fnav1.png") no-repeat;}
footer #fnav ul li:nth-child(2) a:before{ background: url("../images/fnav2.png") no-repeat;}
footer #fnav ul li:nth-child(3) a:before{ background: url("../images/fnav3.png") no-repeat;}
footer #fnav ul li:nth-child(4) a:before{ background: url("../images/fnav4.png") no-repeat;}
footer #fnav ul li:nth-child(5) a:before{ background: url("../images/fnav5.png") no-repeat;}
footer #fnav ul li:nth-child(6) a:before{ content: none;}
footer #copy{
	clear: both;
	color: #231815;
	font-size: 16px;
	line-height: 50px;
}

/*------------------------------ responsive ------------------------------*/
@media screen and (min-width:1100px){
	footer #fnav ul li{
		font-size: 24px;
	}
	footer #fnav ul li a:before{
		content: "";
		display: inline-block;
		width: 54px;
		height: 54px;
		margin-right: .5em;
		vertical-align: middle;
		background-position: center!important;
		background-size: 100% auto!important;
	}
}
@media screen and (max-width:768px){
	footer #fnav ul{
		padding: 3% 0 0 5%;
	}
	footer #fnav ul li{
		float: none;
		width: auto!important;
		font-size: 16px;
		margin-right: 5%;
		margin-bottom: 3%;
	}
	footer #fnav ul li a{
		line-height: 50px;
	}
	footer #fnav ul li a:before{
		width: 30px;
		height: 30px;
	}
	footer #copy{
		font-size: 14px;
		line-height: 50px;
	}
}



























































/*------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
	Lower page settings
-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------*/
/*---------------------------------------------------------------------------------------
	/
----------------------------------------------------------------------------------------*/

.top-cont1{
	position: relative;
}
.top-cont1wrap .news {
	position: absolute;
	left: 1.3%;
	bottom: 0.6%;
	/*width: 28%;*/
	width: 340px;
	max-width: 340px;
	font-size: 12px;
	text-align: left;
}
.top-cont1wrap .news h2{
	display: inline-block;
	margin-left: 1em;
	color: #fff;
	font-weight: normal;
	padding: 0 .5em;
	background: #ff7864;
}
.top-cont1wrap .news .newsinner{
	padding: 10px;
	border-left: 2px solid #ff7864;
	background: rgba(255,255,255,.8);
	box-shadow: 0px 2px 5px -3px #666;
}
.top-cont1wrap .news .newsinner dl{
	overflow: hidden;
	margin-bottom: 2px;
}
.top-cont1wrap .news .newsinner dl dt{
	float: left;
	width: 5em;
}
.top-cont1wrap .news .newsinner dl dd{
	overflow: hidden;
}
.top-cont1 .sub{
	position: absolute;
	right: 4%;
	bottom: -25px;
	width: 22%;
	max-width: 350px;
}
.top-colwrap .leftcol{
	padding-top: 20px;
	background: #f8f8f8;
}
.top-colwrap .rightcol{
	/*padding-top: 100px;*/
}
.top-colwrap .search{
	height: 80px;
	text-align: left;
}
.top-colwrap .search input{

	height: 47px;
	padding: 0 62px 0 15px;
	font-family: noto-sans-cjk-jp, sans-serif;
	background: none;
	border: 1px solid #465064;
	vertical-align: middle;
}

.search_btn_wrap{
	width:30%;
}
.top-colwrap .search button.search_btn{
	margin:0;
	width: 7.5em;
	height: 47px;
	line-height: 45px;
	font-family: noto-sans-cjk-jp, sans-serif;
	color: #fff;
	font-size: 20px;
	font-weight: bold;
	padding: 0!important;
	background: #ff7864;
	border: 1px solid #465064;
	border-radius: 5px;
	vertical-align: middle;
}
.top-colwrap .search button:hover{ opacity: .7;}
.top-cont2{
	/*float: left;
	margin-bottom: 20px;*/
	width: 47.5%;
	margin-right: 5%;
	
}
.top-cont2 ul{
	overflow: hidden;
}

.top-cont2 ul li.map0{
	margin-left: 9.5%;
	margin-bottom: 0.5%;
	width: 81%;
	background: url("../map/top-cont2-map0-on.png") no-repeat;
	background-size: 100% auto!important;
}

.top-cont2 ul li.map1{
	float: left;
	margin-left: 5%;
	margin-bottom: 0.5%;
	width: 45%;
	background: url("../map/top-cont2-map1-on.png") no-repeat;
	background-size: 100% auto!important;
}
.top-cont2 ul li.map2{
	float: left;
	margin-bottom: 0.5%;
	width: 45%;
	background: url("../map/top-cont2-map2-on.png") no-repeat;
	background-size: 100% auto!important;
}
.top-cont2 ul li.map3{
	float: left;
	width: 50%;
	background: url("../map/top-cont2-map3-on.png") no-repeat;
	background-size: 100% auto!important;
}
.top-cont2 ul li.map4{
	float: left;
	width: 50%;
	margin-top: 0%;
	background: url("../map/top-cont2-map4-on.png") no-repeat;
	background-size: 100% auto!important;
}
.top-cont2 ul li a:hover{ opacity: 1;}
.top-cont2 ul li a img{ -webkit-transition: all .2s; transition: all .2s;}
.top-cont2 ul li a:hover img{ opacity: 0;}
.top-cont3{
	/*float: left;
	margin-bottom: 20px;*/
	width: 47.5%;
	text-align: left;

}
.top-cont3 figure{
	position: relative;
	text-align: center;
}
.top-cont3 figure span{
	position: absolute;
	left: -7%;
	top: -2%;
	width: 93px;
}
.top-cont3 p.btn{
	margin-top: -1em;
	text-align: center;
	position: relative;
}
.top-cont3 p.title{
	clear: both;
	color: #465064;
	font-size: 16px;
	line-height: 1.2;
	text-align: left;
	padding-left: 5px;
	margin-bottom: 5px;
	border-left: 2px solid #465064;
	font-weight: bold;
}
.top-cont3 p.note1{
	color: #465064;
	font-size: 16px;
	text-align: left;
	padding-left: 7px;
	margin-bottom: 10px;
	font-weight: bold;
}
.top-cont3 p.note2{
	color: #465064;
	text-align: left;
	padding-left: 7px;
	margin-bottom: 10px;
}
.top-cont4{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
.top-cont4 div{
	float: left;
	width: 22.9%;
	padding: 10px;
	margin-right: 2.666666%;
	margin-bottom: 20px;
	text-align: left;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0px 2px 5px -1px #666;
}
.top-cont4 div:nth-child(4n){ margin-right: 0;}
.top-cont4 div figure{
	text-align: center;
	margin-bottom: 5px;
}
.top-cont5{
}
.top-cont5 div{
	float: left;
	width: 16.666666%;
	text-align: center;
	position: relative;
}
.top-cont5 div img.icon{
	position: absolute;
	right: 0;
	bottom: 0;
	width: 33%;
}
.top-cont5 div p{
	display: table;
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	font-size: 1.4vw;
	font-weight: bold;
	line-height: 1.2;
}
.top-cont5 div p span{
	display: table-cell;
	vertical-align: middle;
}
.top-cont5 div p span strong{
	display: block;
	font-size: 2.5vw;
	margin-bottom: .2em;
}
.top-cont6{
	margin-bottom: 20px;
}
.top-cont6 div{
	float: left;
	width: 16.666666%;
	text-align: center;
	position: relative;
}
.top-cont7{
	clear: both;
	padding: 10px 3%;
	background: #dce6f3;
}
.top-cont7 h2{
	font-size: 24px;
	font-weight: normal;
	margin-bottom: 5px;
}
.top-cont7 ul.slider,.top-cont7 ul.slider2{
	padding: 0 2%;
}
.top-cont7 ul.slider .slick-slide li,.top-cont7 ul.slider2 .slick-slide li{
	padding: 0 2.5%;
	text-align: left;
	line-height: 1.4;
	font-weight: bold;
	font-size: 14px;
}
.top-cont7 ul.slider .slick-slide li img,.top-cont7 ul.slider2 .slick-slide li img{
	margin: 0 auto 10px;
}
.top-cont7 ul.slider .slick-prev{
	position: absolute;
	left: -1%;
	top: 35%;
	width: 16px;
	height: 27px;
	background: url(../images/prev_.png) no-repeat;
	background-size: 16px auto;
	cursor: pointer;
}
.top-cont7 ul.slider .slick-next{
	position: absolute;
	right: -1%;
	top: 35%;
	width: 16px;
	height: 27px;
	background: url(../images/next_.png) no-repeat;
	background-size: 16px auto;
	cursor: pointer;
}
.top-cont7 ul.slider .slick-dots,.top-cont7 ul.slider2 .slick-dots{
    top: 100%;
	width: 90%;
	padding-top: 10px;
}
.top-cont7 ul.slider .slick-dots li,.top-cont7 ul.slider2 .slick-dots li{
    width: 14px;
    height: 14px;
    margin: 0 4px;
}
.top-cont7 ul.slider .slick-dots li button,.top-cont7 ul.slider2 .slick-dots li button{
    width: 14px;
    height: 14px;
    padding: 5px;
}
.top-cont7 ul.slider .slick-dots li button:before,.top-cont7 ul.slider2 .slick-dots li button:before{
    background: #d2d7dd;
	border: 1px solid #d2d7dd;
}
.top-cont7 ul.slider .slick-dots li.slick-active button:before,.top-cont7 ul.slider2 .slick-dots li.slick-active button:before{
    background: #fff;
	border: 1px solid #ccc;
}
.top-cont8{
	display: flex;
	flex-wrap: wrap;
}
.top-cont8 div{
	float: left;
	width: 22.9%;
	margin-right: 2.666666%;
	margin-bottom: 20px;
	background: #fff;
	box-shadow: 0px 2px 5px -1px #666;
}
.top-cont8 div:nth-child(4n){ margin-right: 0;}
.top-cont8 div h3{
	color: #fff;
	font-size: 1.3vw;
	font-weight: bold;
	line-height: 1.2;
	padding: 10px 5px 15px;
	margin-bottom: 10px;
	background: url("../images/top-cont8-bg.png") no-repeat center bottom;
}


.top-cont8 div figure{
	padding: 0 15% 5px;
}
.top-cont8 div .note{
	/*font-size: 12px;
	text-align: left;*/
	line-height: 1.2;
	padding: 0 5% 10px;
	font-weight: bold;
}
.top-cont8 div .btn{
	padding: 0 5px;
	margin-bottom: 15px;
}
.top-cont9{
	padding: 20px 3%;
}
.top-cont9 h3{
	clear: both;
	color: #aa961e;
	font-size: 24px;
	font-weight: normal;
	letter-spacing: .1em;
	margin-bottom: 5px;
}
.top-cont9 .silver h3{ color: #738c9b;}
.top-cont9 .bronze h3{ color: #c87350;}
.top-cont9 .exhibiting h3{ color: #a0a0a0;}
.top-cont9 ul{
	display: flex;
	justify-content: center;
}
.top-cont9 ul li{
	float: left;
	width: 25%;
	padding: 0 10px 10px;
}
.top-cont9 .silver ul li{ width: 20%;}
.top-cont9 .bronze ul li{ width: 16.666666%;}
.top-cont9 .exhibiting ul li{ width: 14.285714%;}

/*------------------------------ responsive ------------------------------*/
@media screen and (min-width:1200px){
	.top-cont5 div p{
		font-size: 18px;
	}
	.top-cont5 div p span strong{
		font-size: 30px;
	}
}
@media screen and (max-width:768px){
	.top-cont1wrap{
		position: relative;
	}
	.top-cont1 .sub{
		position: static;
		width: 100%;
		max-width: 500px;
		padding: 10px 3%;
		margin: 0 auto;
	}
	.top-colwrap .rightcol{
		padding-top: 20px;
	}
	.top-colwrap .search{
		height: auto;
		text-align: center;
		margin-bottom: 20px;
	}
	
	.top-colwrap .search input{
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;
		text-align: left;
	}
	.top-colwrap .search button{
		/*width: 9em;*/
	}
	.top-cont2{
		float: none;
		width: auto;
		margin-right: 0;
	}
	.top-cont2 ul{
		max-width: 500px;
		margin: 0 auto;
	}
	.top-cont3{
		float: none;
		width: auto;
		margin-bottom: 20px;
	}
	.top-cont3 figure{
		position: relative;
	}
	.top-cont3 figure span{
		position: absolute;
		left: -3%;
		top: -2%;
	}
	.top-cont4 div{
		width: 48.3%;
		margin-right: 3%;
	}
	.top-cont4 div:nth-child(2n){ margin-right: 0;}
	.top-cont5 div{
		width: 33.333333%;
	}
	.top-cont5 div p{
		font-size: 3.5vw;
	}
	.top-cont5 div p span strong{
		font-size: 5vw;
	}
	.top-cont6 div{
		width: 33.333333%;
	}
	.top-cont7{
		padding: 10px 3%;
		margin-bottom: 5px;
	}
	.top-cont7 h2{
		font-size: 20px;
	}
	.top-cont7 ul.slider{
		padding: 0 5%;
	}
	.top-cont7 ul.slider .slick-slide li{
		padding: 0 10px;
	}
	.top-cont8 div{
		float: left;
		width: 48.3%;
		margin-right: 3%;
		margin-bottom: 20px;
		background: #fff;
		box-shadow: 0px 2px 5px -1px #666;
	}
	.top-cont8 div:nth-child(2n){ margin-right: 0;}
	.top-cont9 h3{
		font-size: 20px;
	}
	.top-cont9 ul{
		max-width: 500px;
		margin: 0 auto;
	}
	.top-cont9 ul li{
		width: 50%;
		padding: 0 5px 10px;
	}
	.top-cont9 .silver ul li{ width: 33.333333%;}
	.top-cont9 .bronze ul li{ width: 25%;}
	.top-cont9 .exhibiting ul li{ width: 20%;}
}






/*---------------------------------------------------------------------------------------
	conference
----------------------------------------------------------------------------------------*/

.conference-cont1{
	position: relative;
	overflow: hidden;
}
.conference-cont1 span{
	position: absolute;
	left: 0;
	top: 50%;
	padding-left: .7em;
	text-align: center;
	transform: translateY(-50%);
	color: #fff;
	font-size: 3vw;
	line-height: 1;
	vertical-align: middle;
}
.conference-cont1 span strong{
	display: inline-block;
	font-size: 5vw;
	vertical-align: middle;
	margin-bottom: .2em;
}
.conference-cont2{
	position: relative;
}
.conference-cont2 h2{
	position: absolute;
	left: 12%;
	top: 2%;
	width: 75%;
	color: #fff;
	font-size: 2.2vw;
	font-weight: normal;
	line-height: 1;
	text-align: center;
}
.conference-cont2 p{
	position: absolute;
	left: 10%;
	top: 57%;
	width: 80%;
	color: #fff;
	font-size: 2.2vw;
	font-weight: normal;
	line-height: 1.2;
	text-align: center;
}
.conference-cont2 p small{
	font-size: 1.6vw;
}
.conference-cont2 ul{
	position: absolute;
	left: 3%;
	top: 4%;
	width: 15.7%;
	text-align: center;
}
.conference-cont2 ul.right-ad{
	left: inherit;
	right: 3%;
}
.conference-cont2 ul li{
	margin-bottom: 8%;
}
.conference-cont3{
	clear: both;
	display: table;
	widows: 100%;
	padding-top: 20px;
	padding-bottom: 20px;
}
.conference-cont3 div{
	display: table-cell;
	width: 40%;
	padding-right: 10px;
	text-align: left;
	vertical-align: middle;
	border-right: 2px solid #d2d7dd;
}
.conference-cont3 div dl{
	display: table;
	width: 100%;
}
.conference-cont3 div dl dt{
	display: table-cell;
	width: 100px;
	vertical-align: middle;
}
.conference-cont3 div dl dd{
	display: table-cell;
	font-size: 16px;
	line-height: 1.4;
	padding-left: 3%;
	vertical-align: middle;
}
.conference-cont3 p{
	display: table-cell;
	text-align: left;
	padding-left: 20px;
	vertical-align: middle;
}
.conference-cont4{
	clear: both;
	padding-bottom: 20px;
}
.conference-cont5{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 10px;
}
.conference-cont5 .hall{
	float: left;
	width: 49%;
	padding: .5% 0 8%;
	margin: 0 2% 2% 0;
	color: #fff;
	background: url(../images/conference-cont5-bg1.jpg) no-repeat center;
	background-size: cover;
}
.conference-cont5 .hall:nth-child(4n+2),
.conference-cont5 .hall:nth-child(4n+3){ background: url(../images/conference-cont5-bg2.jpg) no-repeat center; background-size: cover;}
.conference-cont5 > div:nth-of-type(2n){ margin-right: 0;}
.conference-cont5 .hall h2{
	font-size: 28px;
	font-weight: normal;
}
.conference-cont5 .hall ul.hall-slider{
	padding: 0 30px;
}
.conference-cont5 .hall ul.hall-slider li{
	padding: 0 5px;
	font-size: 16px;
	text-align: left;
	line-height: 1.4;
}
.conference-cont5 .hall ul.hall-slider li img{
	margin: 0 auto 10px;
}
.conference-cont5 .hall ul.hall-slider .slick-prev{
	position: absolute;
	left: 1.5%;
	top: 25%;
	width: 14px;
	height: 28px;
	background: url(../images/prev2.png) no-repeat;
	background-size: 14px auto;
	cursor: pointer;
}
.conference-cont5 .hall ul.hall-slider .slick-next{
	position: absolute;
	right: 1.5%;
	top: 25%;
	width: 14px;
	height: 28px;
	background: url(../images/next2.png) no-repeat;
	background-size: 14px auto;
	cursor: pointer;
}
.conference-cont6{
	clear: both;
	overflow: hidden;
	margin-bottom: 15px;
}
.conference-cont6 ul{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 15px;
}
.conference-cont6 ul li{
	float: left;
	width: 16.2%;
	margin-right: .56%;
	margin-bottom: .56%;
}
.conference-cont6 ul li:nth-child(6n){ margin-right: 0;}

/*------------------------------ responsive ------------------------------*/
@media screen and (max-width:768px){
	.conference-cont1 span strong{
		font-size: 5.4vw;
	}
	.conference-cont1 img{
		width: 160%;
		max-width: inherit;
		margin-left: -30%;
	}
	.conference-cont2 h2{
		font-size: 12px;
		top: 5px;
		width: 90%;
		left: 5%;
	}
	.conference-cont2 p{
		left: 5%;
		top: 60%;
		width: 90%;
		font-size: 4vw;
	}
	.conference-cont2 p small{
		font-size: 3.5vw;
	}
	.conference-cont3{
		display: block;
	}
	.conference-cont3 div{
		display: block;
		width: auto;
		padding-right: 0;
		padding-bottom: 10px;
		margin-bottom: 10px;
		border-right: none;
		border-bottom: 2px solid #d2d7dd;
	}
	.conference-cont3 div dl{
		display: table;
		width: 100%;
	}
	.conference-cont3 div dl dt{
		width: 25%;
		max-width: 100px;
	}
	.conference-cont3 p{
		display: block;
		padding-left: 0;
	}
	.conference-cont5{
		display: block;
		margin-bottom: 10px;
	}
	.conference-cont5 .hall{
		float: none;
		width: auto;
		padding: .5% 0 8%;
		margin: 0 0 10px;
		color: #fff;
	}
	.conference-cont5 .hall:nth-child(4n+2),
	.conference-cont5 .hall:nth-child(4n+3){ background: url(../images/conference-cont5-bg1.jpg) no-repeat center; background-size: cover;}
	.conference-cont5 .hall:nth-child(2n){ background: url(../images/conference-cont5-bg2.jpg) no-repeat center; background-size: cover;}
	.conference-cont5 .hall h2{
		font-size: 20px;
	}
	.conference-cont5 .hall ul.hall-slider{
		padding: 0 30px;
	}
	.conference-cont5 .hall ul.hall-slider li{
		padding: 0 5px;
		font-size: 16px;
		text-align: left;
		line-height: 1.4;
	}
	.conference-cont5 .hall ul.hall-slider li img{
		margin: 0 auto 10px;
	}
	.conference-cont5 .hall ul.hall-slider .slick-prev{
		position: absolute;
		left: 1.5%;
		top: 25%;
		width: 14px;
		height: 28px;
		background: url(../images/prev2.png) no-repeat;
		background-size: 14px auto;
		cursor: pointer;
	}
	.conference-cont5 .hall ul.hall-slider .slick-next{
		position: absolute;
		right: 1.5%;
		top: 25%;
		width: 14px;
		height: 28px;
		background: url(../images/next2.png) no-repeat;
		background-size: 14px auto;
		cursor: pointer;
	}
	.conference-cont6 ul{
		display: flex;
		flex-wrap: wrap;
		margin-bottom: 15px;
	}
	.conference-cont6 ul li{
		float: left;
		width: 32%;
		margin-right: 2%;
		margin-bottom: 2%;
	}
	.conference-cont6 ul li:nth-child(3n){ margin-right: 0;}
}






/*---------------------------------------------------------------------------------------
	standard
----------------------------------------------------------------------------------------*/

.standard-cont1{
	padding: 20px 3%;
}
.standard-cont1 h2{
	display: table;
	width: 100%;
	text-align: left;
	line-height: 1.3;
}
.standard-cont1 h2 em{
	display: table-cell;
	width: 170px;
	vertical-align: middle;
	max-width:170px;
}
.standard-cont1 h2 strong{
	display: table-cell;
	padding: 0 3%;
	font-size: 3vw;
	vertical-align: middle;
}
.standard-cont1 h2 span{
	display: table-cell;
	vertical-align: middle;
}
.standard-cont2{
	padding-top: 20px;
	padding-bottom: .333333%;
	background: #F8F8F8;
}
.standard-cont2 ul.tag{
	display: flex;
	flex-wrap: wrap;
	overflow: hidden;
	margin-bottom: 20px;
}
.standard-cont2 ul.tag li{
	display: flex;
	float: left;
	width: 22.9%;
	min-height: 70px;
	margin-right: 2.666666%;
	margin-bottom: 2.666666%;
	padding: 10px;
	font-size: 19px;
	line-height: 1.3;
	background: #fff;
	border: 2px solid #000;
	border-radius: 5px;
	vertical-align: middle;
}
.standard-cont2 ul.tag li:nth-child(4n){ margin-right: 0;}
.standard-cont2 ul.tag li span{
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
}
.standard-cont2 .read{
	color: #000;
	font-size: 19px;
	text-align: left;
	margin-bottom: 30px;
}
.standard-cont2 h3{
	clear: both;
	color: #fff;
	font-size: 28px;
	font-weight: bold;
	margin-bottom: 20px;
}
.standard-cont2wrap{
	display: flex;
	flex-wrap: wrap;
}
.standard-cont2wrap .products{
	float: left;
	width: 22.9%;
	margin-right: 2.666666%;
	margin-bottom: 2.666666%;
	padding: 15px;
	background: #fff;
	border-radius: 5px;
	box-shadow: 0px 2px 5px -1px #666;
	position:relative;
}

.standard-cont2wrap .products .bottom{
	/*position: absolute;*/
	bottom: 30px;
}
.standard-cont2wrap .products:nth-child(4n){ margin-right: 0;}
.standard-cont2wrap .products h4{
	font-size: 16px;
	font-weight: bold;
	text-align: left;
	margin-bottom: 10px;
}
.standard-cont2wrap .products figure{
	margin-bottom: 10px;
}
.standard-cont2wrap .products .note{
	font-size: 12px;
	line-height: 1.3;
	text-align: left;
	margin-bottom: 10px;
}
.standard-cont2wrap .products .btn{
	margin-bottom: 10px;
}
.standard-cont2wrap .products .favorite{
	text-align: left;
}
.standard-cont3{
	padding: 20px 1.666666%;
}
.standard-cont3 ul{
}
.standard-cont3 ul li{
	display: inline-block;
	/*width: 28%;*/
	white-space:nowrap;
	min-width: 190px;
	margin: 0 1.666666% 15px;
}
.standard-cont3 ul li a{
	display: block;
	color: #fff;
	font-size: 20px;
	letter-spacing: .1em;
	line-height: 60px;
	padding: 0 40px;
	background-size: 32px!important;
	box-shadow: 0px 2px 5px -1px #666;
}
.standard-cont3 ul li:nth-child(1) a{ background: url("../images/standard-cont3-icon1.png") no-repeat left 10px center #ff7864;padding-right: 20px;padding-left: 50px;}
.standard-cont3 ul li:nth-child(2) a{ background: url("../images/standard-cont3-icon2.png") no-repeat left 10px center #ff7864;padding-right: 20px;padding-left: 50px;}
.standard-cont3 ul li:nth-child(3) a{ background: url("../images/standard-cont3-icon3.png") no-repeat left 10px center #ff7864;padding-right: 20px;padding-left: 50px;}


.standard-cont3 ul li:nth-child(1) button,.standard-cont6 .btn button.standard-cont6-btn1{
	background: url("../images/standard-cont3-icon1.png") no-repeat left 10px center #ff7864;
	padding-right: 20px;
	padding-left: 50px;
}

.standard-cont3 ul li:nth-child(2) button,.standard-cont6 .btn button.standard-cont6-btn2{
	background: url("../images/standard-cont3-icon2.png") no-repeat left 10px center #ff7864;
	padding-right: 20px;
	padding-left: 50px;
}

.standard-cont3 ul li:nth-child(3) button,.standard-cont6 .btn button.standard-cont6-btn3{
	background: url("../images/standard-cont3-icon3.png") no-repeat left 10px center #ff7864;
	padding-right: 20px;
	padding-left: 50px;
}

.standard-cont4{
	padding-top: 30px;
}
.standard-cont4 div{
	clear: both;
	padding: 20px;
	margin-bottom: 20px;
	background: #f8f8f8;
	box-shadow: 0px 2px 5px -1px #666;
	overflow: hidden;
}
.standard-cont4 div h3{
	font-size: 24px;
	line-height: 1.3;
	margin-bottom: 15px;
}
.standard-cont4 div figure{
	float: left;
	width: 23.5%;
	margin-right: 20px;
}
.standard-cont4 div p{
	font-size: 16px;
	text-align: left;
	overflow: hidden;
}
.standard-cont5{
	clear: both;
	color: #000;
	padding-top: 20px;
	padding-bottom: 10px;
	background: #f8f8f8
}
.standard-cont5 h3{
	font-size: 24px;
	line-height: 1.3;
	margin-bottom: 15px;
}
.standard-cont5 .wrap div{
	overflow: hidden;
	margin-bottom: 20px;
}
.standard-cont5 .wrap div figure{
	float: left;
	width: 40%;
	margin-right: 20px;
}
.standard-cont5 .wrap div p{
	font-size: 16px;
	text-align: left;
	overflow: hidden;
}
.standard-cont6{
	padding-top: 20px;
	padding-bottom: 10px;
	text-align: left;
}
.standard-cont6 .list-checkbox,
.standard-cont6 .list-checkbox2{
	margin-bottom: 10px;
}
.standard-cont6 .list-checkbox li,
.standard-cont6 .list-checkbox2 dd{
	display: inline-block;
	margin-right: 1em;
	margin-bottom: 10px;
	font-size: 19px;
	font-weight: bold;
	line-height: 1.3;
}
.standard-cont6 .list-checkbox2 dt{
	font-size: 19px;
	font-weight: bold;
	line-height: 1.3;
	margin-bottom: 10px;
}
.standard-cont6 .list-checkbox2 dd{
	font-weight: normal;
}
.standard-cont6 .list-inputtext{
	clear: both;
	margin-bottom: 10px;
}
.standard-cont6 .list-inputtext li{
	display: inline-block;
	height: 32px;
	margin-bottom: 10px;
	padding: 0 5px;
	font-size: 12px;
	border: 1px solid #231815;
	position: relative;
}
.standard-cont6 .list-inputtext li.company,
.standard-cont6 .list-inputtext li.name{
	width: 30%;
	margin-right: 2.5%;
}
.standard-cont6 .list-inputtext li.mail{
	width: 35%;
}
.standard-cont6 .list-inputtext li span{
	position: absolute;
	left: 5px;
	top: 0;
	line-height: 30px;
}
.standard-cont6 .list-inputtext li input{
	width: 100%;
	height: 30px;
	border: none;
	font-family: noto-sans-cjk-jp, sans-serif;
}
.standard-cont6 .list-inputtext li.company input,
.standard-cont6 .list-inputtext li.name input{
	padding-left: 3em!important;
}
.standard-cont6 .list-inputtext li.mail input{
	padding-left: 6em!important;
}
.standard-cont6 .btn{
	text-align: center;
	margin-bottom: 30px;
}
.standard-cont6 .btn a{
	display: inline-block;
	width: 100%;
	max-width: 264px;
	color: #fff;
	font-size: 24px;
	letter-spacing: .1em;
	line-height: 60px;
	padding: 0 40px;
	background-size: 32px!important;
	box-shadow: 0px 2px 5px -1px #666;
}
.standard-cont6 .btn a.standard-cont6-btn1{ background: url("../images/standard-cont3-icon1.png") no-repeat left 10px center #ff7864;}
.standard-cont6 .btn a.standard-cont6-btn2{ background: url("../images/standard-cont3-icon2.png") no-repeat left 10px center #ff7864;}
.standard-cont6 .btn a.standard-cont6-btn3{ background: url("../images/standard-cont3-icon3.png") no-repeat left 10px center #ff7864;}
.standard-cont6 .freespace{
	margin-bottom: 10px;
}
.standard-cont6 .freespace textarea{
	height: 100px;
	background: #f8f8f8;
	border: none;
	font-family: noto-sans-cjk-jp, sans-serif;
	font-size: 19px;
}
.standard-cont6 .freespace textarea::placeholder{
	color: #000;
}
.standard-cont6 .leftbox{
	float: left;
	width: 50%;
	margin-bottom: 20px;
}
.standard-cont6 .rightbox{
	float: right;
	width: 45%;
	margin-bottom: 20px;
}
.standard-cont7{
	clear: both;
	display: inline-block;
	margin-bottom: 30px;
	/*verflow: hidden;*/
	width:100%;
}
.standard-cont7 .leftbox{
	display: inline-block;
	font-size: 19px;
	font-weight: bold;
	text-align: left;
	vertical-align: bottom;
	float:left;
}
.standard-cont7 .leftbox dt{
	font-size: 24px;
	font-weight: bold;
}
.standard-cont7 .leftbox dt{
	font-size: 24px;
	font-weight: bold;
}
.standard-cont7 .rightbox{
	display: inline-block;
	width: 170px;
	text-align: right;
	vertical-align: bottom;
	float:right;
}
.standard-cont7 .rightbox .chat{
	margin-bottom: 0px;
}
.standard-cont7 .rightbox .chat img{
	width: 160px;
	max-width: inherit;
}
.standard-cont7 .rightbox .favorite{
}

/*------------------------------ responsive ------------------------------*/
@media screen and (max-width:768px){
	.standard-cont1 h2{
		display: block;
		text-align: center;
	}
	.standard-cont1 h2 em{
		display: inline-block;
		width: 150px;
		margin-bottom: 20px;
		max-width:unset;
	}
	.standard-cont1 h2 strong{
		display: block;
		font-size: 20px;
		margin-bottom: 20px;
	}
	.standard-cont1 h2 span{
		display: block;
	}
	.standard-cont2{
		padding-bottom: 10px;
	}
	.standard-cont2 ul.tag{
		margin-bottom: 10px;
	}
	.standard-cont2 ul.tag li{
		width: 48.3%;
		margin-right: 3%;
		margin-bottom: 3%;
		min-height: 50px;
		font-size: 16px;
	}
	.standard-cont2 ul.tag li:nth-child(2n){ margin-right: 0;}
	.standard-cont2 .read{
		font-size: 16px;
	}
	.standard-cont2 h3{
		font-size: 24px;
	}
	.standard-cont2wrap div{
		width: 48.3%;
		margin-right: 3%;
		margin-bottom: 3%;
	}
	.standard-cont2wrap div:nth-child(2n){ margin-right: 0;}
	.standard-cont3{
		padding: 20px 1.666666% 0;
	}
	.standard-cont3 ul li a{
		font-size: 20px;
		line-height: 50px;
	}
	.standard-cont4{
		padding-top: 30px;
	}
	.standard-cont4 div h3{
		font-size: 20px;
		margin-bottom: 10px;
	}
	.standard-cont4 div figure{
		float: none;
		width: auto;
		margin-right: 0;
		margin-bottom: 15px;
	}
	.standard-cont5 h3{
		font-size: 20px;
		margin-bottom: 10px;
	}
	.standard-cont5 .wrap div figure{
		float: none;
		width: auto;
		margin-right: 0;
		margin-bottom: 15px;
	}
	.standard-cont6 .list-checkbox li,
	.standard-cont6 .list-checkbox2 dd{
		font-size: 17px;
	}
	.standard-cont6 .list-inputtext li{
		display: block;
		width: auto!important;
		margin-right: 0!important;
	}
	.standard-cont6 .btn a{
		font-size: 20px;
		line-height: 50px;
	}
	.standard-cont6 .freespace textarea{
		font-size: 16px;
	}
	.standard-cont6 .leftbox{
		float: none;
		width: auto;
		margin-bottom: 10px;
	}
	.standard-cont6 .rightbox{
		float: none;
		width: auto;
		margin-bottom: 20px;
	}
	.standard-cont7{
		margin-bottom: 0;
	}
	.standard-cont7 .leftbox{
		display: block;
		font-size: 17px;
		margin-bottom: 20px;
	}
	.standard-cont7 .leftbox dt{
		font-size: 20px;
	}
	.standard-cont7 .leftbox dt{
		font-size: 24px;
		font-weight: bold;
	}
	.standard-cont7 .rightbox{
		display: block;
		width: auto;
		text-align: center;
	}
	.standard-cont7 .rightbox .chat{
		margin-bottom: 0px;
	}
}






















