@charset "utf-8";

/* ==========================================================================
common
n========================================================================== */
/* layout block */
.block-fourth,
.block-twothird,
.block-onethird,
.block-third,
.block-half {
	list-style: none;
	margin: 0;
	padding: 0 0 30px;
}
div.block-half>div,
.block-half>li {
	float: left;
}
div.block-half>div:first-child,
.block-half>li:first-child {
	margin-left: 0;
}
div.block-third>div,
.block-third>li {
	float: left;
}
div..block-third>div:first-child,
.block-third>li:first-child {
	margin-left: 0;
}
div.block-onethird>div,
.block-onethird>li {
	float: left;
}
div.block-onethird>div:first-child,
.block-onethird>li:first-child {
	margin-left: 0;
}
div.block-twothird>div,
.block-twothird>li {
	float: left;
}
div.block-twothird>div:first-child,
.block-twothird>li:first-child {
	margin-left: 0;
}
div.block-fourth>div,
.block-fourth>li {
	float: left;
}
div.block-fourth>div:first-child,
.block-fourth>li:first-child {
	margin-left: 0;
}


/* block query pattern */
div.block-half>div,
.block-half>li {
	width: 50%;
}
div.block-third>div,
.block-third>li {
	width: -webkit-calc(100% / 3) ;
	width: calc(100% / 3) ;
}
div.block-onethird>div,
.block-onethird>li {
	width: -webkit-calc(100% * 2 / 3) ;
	width: calc(100% * 2 / 3) ;
}
div.block-onethird>div:first-child,
.block-onethird>li:first-child {
	width: -webkit-calc(100% / 3) ;
	width: calc(100% / 3) ;
}
div.block-twothird>div,
.block-twothird>li {
	width: -webkit-calc(100% / 3) ;
	width: calc(100% / 3) ;
}
div.block-twothird>div:first-child,
.block-twothird>li:first-child {
	width: -webkit-calc(100% * 2 / 3) ;
	width: calc(100% * 2 / 3) ;
}
div.block-fourth>div,
.block-fourth>li {
	width: 25%;
}


/* button */
section .btnblock {
	text-align: center;
	padding-top: 10px;
	padding-bottom: 10px;
}
section a.btn {
	display: inline-block;
	line-height: 1.0;
	color: #fff;
	background-color: rgba(51,51,51,1.0);
	text-decoration: none;
	border-radius: 5px;
	padding: 10px 30px;
}
section a.btn:hover {
	text-decoration: none;
	background-color: #000;
}
section a.btn:after {
	content: " \f105";
	font-family: FontAwesome;
	margin-left: 8px;
}
.min-wd {
	min-width: 260px;
}
section a.btn-short {
	display: inline-block;
	line-height: 1.0;
	color: #fff;
	background-color: #35a583;
	text-decoration: none;
	border-radius: 5px;
	padding: 6px 20px;
}
section a.btn-short:hover {
	text-decoration: none;
	background-color: #333;
}
section a.btn-short:before {
	content: " \f105 ";
	font-family: FontAwesome;
	margin-right: 5px;
}
a.btn-special:link,
a.btn-special:visited {
	display: block;
	background-color: #cb1414;
	color: #fff;
	border-radius: 5px;
	border-bottom: solid 4px #930F0F;
}
a.btn-special:hover {
	background-color: #f00;
	text-decoration: none;
}

.en-btn-first-block {
	position: relative;
}
.en-btn-last-block {
	max-width: 490px;
	margin: 10px auto;
}
.en-btn-first-block>a.btn-special {
	position: absolute;
	right: 0;
	bottom: 0;
	padding: 4px 10px 0;
	text-align: center;
}
.en-btn-last-block>a.btn-special {
	padding: 20px 0;
	text-align: center;
}

.top-demo a.btn-special {
	border-radius: 0;
}

.btn-wid {
	width: 100%;
	box-sizing: border-box;
}
.text-right {
	float: right;
	margin-left: 30px;
}
i.fa {
	margin-right: 5px;
}
.imgright {
	float: right;
	margin: 0 0 10px 50px;
}
.imgright span {
	display: block;
	font-size: 1.1rem;
}
.block img {
	max-width: 100%;
	height: auto;
}
img.r-img {
	width: 50%;
}

/* form */
table.formtbl {
	border-collapse: collapse;
	border-top: 3px solid #ccc;
	text-align: left;
	line-height: 1.5;
	width: 100%;
	margin: 2.0rem 0 1.0rem;
}
table.formtbl tbody th {
	width: 33.33%;
	padding: 1.75rem 20px 10px;
	font-weight: normal;
	vertical-align: top;
	border-bottom: 1px solid #ccc;
	background: #f3f6f7;
	box-sizing: border-box;
}
table.formtbl td {
	width: 66.67%;
	padding: 10px;
	border-bottom: 1px solid #ccc;
	box-sizing: border-box;
}
table.formtbl select,
table.formtbl input[type="url"],
table.formtbl input[type="text"],
table.formtbl input[type="email"],
table.formtbl textarea {
	background-color: #fff;
	font-size:1.6rem;
	color: #333;
	width: 100%;
	border: 1px solid #ccc;
	padding: 1.0rem 0.5rem;
	border-radius: 4px;
	box-shadow: 1px 1px 3px rgba(0,0,0,.1) inset;
	box-sizing: border-box;
}
table.formtbl textarea {
	font-family: sans-serif;
	resize: none;
}
table.formtbl input.subject,
table.formtbl textarea {
	width: 100%;
}
.formbtn .g-recaptcha {
	margin: 0 0 20px !important;
}
.formbtn .g-recaptcha>div {
	margin: 0 auto;
}
.formbtn *[type="submit"] {
	background: #cb1414;
	font-size:1.6rem;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	border: 0;
	min-width: 240px;
	padding: 1.6rem 2.0rem;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}
.formbtn *[type="submit"]:hover {
	background-color: #f00;
	box-shadow: 0 0 1px rgba(255,255,255,.8) inset;
}
.formbtn *[type="submit"]:disabled {
	background-color: #E8EAED;
	color: #9096A2;
}
.btn-form+.btn-form {
	margin-left: 20px;
}
span.required {
	color: #f00;
	font-size: 1.4rem;
}
table.formtbl input.zip {
	width: 20%;
	min-width: 5em;
}
table.formtbl input.tel {
	width: 20%;
	min-width: 4em;
}
table.formtbl select {
	width: auto;
	display: inline-block;
}











/* form
.wpcf7 {
	color: #652e12;
}
.asterisk {
	margin: 0 0 0 0.2em;
	color: #c00;
}
.wpcf7 span.wpcf7-not-valid-tip {
}
.wpcf7 select,
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 textarea {
	background-color: #fff;
	color: #333;
	width: 50%;
	border: 1px solid #ddd;
	padding: 1.0rem 0.5rem;
	border-radius: 4px;
	box-shadow: 1px 1px 3px rgba(0,0,0,.1) inset;
	box-sizing: border-box;
}
.wpcf7 input.subject,
.wpcf7 textarea {
	width: 100%;
}
.wpcf7 input[type="submit"] {
	padding: 2.0rem 2.0rem;
	background: #652e12;
	color: #fff;
	border-radius: 5px;
	cursor: pointer;
	border: 0;
	min-width: 280px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}
.wpcf7 input[type="submit"]:hover {
	background-color: #333;
	box-shadow: 0 0 1px rgba(0,0,0,.8) inset;
}
.wpcf7 span.wpcf7-not-valid-tip {
	display: inline-block;
	width: 48%;
}
.wpcf7 .accept-this span.wpcf7-not-valid-tip {
	display: inline-block;
	width: auto;
	margin-left: 0;
}
.wpcf7 label {
	display: block;
	margin-bottom: 10px;
}
.wpcf7 span.label {
	display: inline-block;
	width: 165px;
}
.wpcf7 .chkbox {
	width: 100%;
	clear:both;
}
 */

/* ==========================================================================
top
========================================================================== */
.mainimgwrap {
	position: relative;
	background: transparent url(../img/slide_bg.jpg) no-repeat 0 0;
	background-size: cover;
	min-width: 100%;
	overflow: hidden;
}
.slide div.mainimg {
	text-align: center;
	width: 100%;
	height: 485px;
	padding: 46px 0 0 30px;
	box-sizing: border-box;
}
.slide .slick-prev {
	left: 10px;
	z-index:100;
}
.slide .slick-next {
	right: 10px;
	z-index:100;
}
.slide .slick-prev:before,
.slide .slick-next:before {
	color: #fff;
}
.slide div.mainimg img {
	max-width: 100%;
	height: auto;
	margin: auto;
}
.fixed.top-slider {
	text-align: center;
	padding: 0;
}
.top-slider .block-half {
	background-color: #f0f0f0;
	padding: 0;
}
.top-slider .text {
	height: 382px;
	box-sizing: border-box;
}
.top-slider .text+.btn-block {
	font-size: 1.8rem;
	padding: 0 40px;
	box-sizing: border-box;
}
.top-slider .text+.btn-block a {
	padding: 30px 0;
}
.slick-dots li button {
	width: 40px;
	height: 40px;
}
.slick-dots li button::before {
	font-size: 18px;
	width: 40px;
	height: 40px;
	color: #fff;
}
.slick-dots li.slick-active button:before {
	opacity: .75;
	color: #fff;
}
.catchcopy {
	width: 420px;
	text-align: left;
	padding-top: 70px;
	margin: 0 auto;
}
.catchcopy p {
	margin: 0;
}
.catchcopy .logo {
	margin-bottom: 14px;
}
.catchcopy .logo img {
	width: 160px;
	height: auto;
}
.catchcopy .toptitle img.r-img {
	width: 376px;
}
.catchcopy .copy {
	margin: 26px 0;
}
.catchcopy .copytext {
	color: #cb1414;
	line-height: 1.5;
}
.catchcopy p.license {
	font-size: 1.1rem;
	margin:10px 0;
}
#avatar {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 30%;
}
#avatar img {
	max-width: 100%;
	height: auto;
}
#balloon {
	position: absolute;
	bottom: 72%;
	left: 5px;
	width: 18%;
}
#balloon span {
	cursor: pointer;
}
#balloon img {
	display: none;
}
#btn-avatar {
	display: block;
	position: absolute;
	right: 5px;
	bottom: 5px;
	font-size: 1.4rem;
	line-height: 1.0;
	cursor: pointer;
	padding: 6px 10px;
	color: #fff;
	text-decoration: none;
	background-color: #cb1414;
	border-radius: 3px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
}
#btn-avatar:hover {
	background-color: #f00;
}
.top-feature .text {
	padding: 0 34px 30px;
}
.top-feature .block-fourth li {
	background-color: #ededed;
	text-align: center;
	padding: 24px 0;
}
.top-feature .block-fourth li .img {
	padding: 0 10px;
}
.top-feature .block-fourth li:nth-child(even) {
	background-color: #e3e3e3;
}
.top-feature .block-fourth li h4 {
	color: #cb1414;
	font-size: 1.8rem;
	line-height: 1.2;
	font-weight: bold;
	height: 4.2rem;
	margin: 0 0 20px;
}
.fluid.top-demo {
	background: #333 url(../img/top_exbg.jpg) no-repeat 0 0;
	background-size: cover;
}
.pagetitle+.fluid.top-demo {
	margin-top: 2.0rem;
}
.fluid.top-demo.trial>div {
	padding: 2px 24px;
}
.fluid.top-demo h2,
.fluid.top-demo h2+p {
	color: #fff;
}
.fluid.top-demo .block-half {
	border: 5px solid #f0f0f0;
	margin-top: 20px;
	margin-bottom: 10px;
	padding: 0;
}
.fluid.top-demo .box {
	text-align: center;
	background-color: #f0f0f0;
	padding: 20px;
}
.fluid.top-demo .box>p {
	margin: 0;
}
.fluid.top-demo .btn-block a {
	text-align: center;
	padding: 20px;
	border: none;
}
section.fluid.top-scene {
	background: #f2efea url(../img/top_scenebg.png) repeat-y 0 0;
}
.top-scene .box {
	text-align: center;
}
.top-scene .box p {
	margin: 0;
}
.top-scene .box a:visited,
.top-scene .box a:link {
	color: #fff;
}
.top-scene .box a:hover {
	color: #fff;
}
.top-scene .box .icon>a {
	display: inline-block;
	width: 140px;
	height: 140px;
	font-size: 1.4rem;
	padding-top: 10%;
	text-align: center;
	border-radius: 50%;
	overflow: hidden;
	text-decoration: none;
	box-sizing: border-box;
	position: relative;
}
.top-scene .box .icon>a>span {
	display: block;
	width: 100%;
	text-align: center;
	position: absolute;
	left: 0;
	bottom: 25px;
}
.top-scene .box .desc {
	display: block;
	font-size: 1.4rem;
	padding: 0 20px;
}
.top-scene .box .iconlearn>a {
	background: url(../img/icon_learn.png) #CB1414 center top 33px no-repeat;
	background-size: 80px 55px;
}

.top-scene .box .iconbusiness>a {
	background: url(../img/icon_business.png) #CB1414 center top 30px no-repeat;
	background-size: 71px 58px;
}
.top-scene .box .iconmanual>a {
	background: url(../img/icon_manual.png) #CB1414 center top 35px no-repeat;
	background-size: 62px 46px;
}
.top-scene .box .iconsignage>a {
	background: url(../img/icon_signage.png) #CB1414 center top 33px no-repeat;
	background-size: 63px 54px;
}
.top-scene .box .icon>a:hover {
	background-color: #f00;
}
.top-case .block {
	padding: 10px 0 0;
}
.top-case .nextslide {
	margin: 0 0 20px;
	padding: 0;
}
.top-case .nextslide li>span {
	font-size: 1.5rem;
	padding: 0 5px;
}
.top-case .slick-slide {
	text-align: center;
	margin:0 10px;
}
.nextslide .slick-prev {
	top: 40%;
	left: 5px;
	z-index:100;
}
.nextslide .slick-next {
	top: 40%;
	right: 5px;
	z-index:100;
}
.slick-prev:before,
.slick-next:before {
	color: #333;
}
.top-bnr {
	background-color: #f5f5f5;
}
.top-bnr .bnr {
	background-color: #fff;
	margin: 20px 0;
	padding: 20px;
}
.top-bnr h2 {
	line-height: 1.2;
	margin-bottom:0;
}
.top-bnr ul{
	margin: 0;
	padding: 0;
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	justify-content: space-around;
	-webkit-justify-content: space-around;
}
.top-bnr ul li {
	float: left;
	margin: 1% 0;
	padding: 0;
}
.top-bnr ul li>img {
	max-width: 196px;
}
.top-price .block-third li h3 {
	text-align: center;
	font-size: 1.8rem;
	font-weight: bold;
}
.top-price .block-third>li:nth-child(1),
.top-price .block-third>li:nth-child(3){
	background-color: #f3f3f3;
}
.top-price .block-third li h3 {
	margin: 0;
	padding: 13px 0;
}
.top-price .block-third>li:nth-child(1) h3 {
	background-color: #a5d4cf;
}
.top-price .block-third>li:nth-child(2) h3 {
	background-color: #79cac1;
}
.top-price .block-third>li:nth-child(3) h3 {
	background-color: #3fb9ab;
}
.top-price .text {
	padding: 10px 20px;
}
.top-price .text>p {
	font-size: 1.8rem;
	line-height: 1.5;
}
.planicon {
	margin: 0;
	padding: 0;
}
.planicon>li {
	float: left;
	padding-left: 14px;
	padding-bottom: 14px;
}
.planicon>li:nth-child(3n+1){
	padding-left: 0;
}
.planicon>li>img.r-img {
	width: 90px;
}

dl.customplan,
dl.customplan dt,
dl.customplan dd {
	box-sizing: border-box;
}
dl.customplan dt,
dl.customplan dd {
	margin: 0;
	padding: 15px;
}
dl.customplan {
	clear: both;
	display: flex;
	flex-wrap: wrap;
}
dl.customplan dt {
	font-size: 1.8rem;
	font-weight: bold;
	text-align: center;
	width: 25%;
	background-color: #E3E3E3;
}
dl.customplan dd {
	width: 75%;
	background-color: #F8F8F8;
}
.fluid.top-news {
	background-color: #f2efea;
}
.top-news .block-half>li {
	padding-left: 10px;
	box-sizing: border-box;
}
.top-news .block-half>li:first-child{
	padding-left: 0;
	padding-right: 10px;
}
.top-news h3.mds {
	font-size: 1.4rem;
	font-weight: bold;
	color: #fff;
	background-color: #bf988f;
	margin: 0;
	padding: 5px 20px;
}
dl.newslist {
	overflow: hidden;
	zoom: 1;
	line-height: 1.4;
	margin: 15px 0 0;
	padding: 0 5px;
}
dl.newslist dt {
	width: 7em;
	float: left;
	clear: both;
	padding-top: 2px;
}
dl.newslist dd {
	margin-left: 0;
	padding: 2px 0 15px 7em;
}
dl.newslist a {
	text-decoration: none;
	font-size: 1.5rem;
}
.top-news h3 {
	position: relative;
}
.top-news h3 a {
	position: absolute;
	right: 10px;
	top: 4px;
	font-size: 1.4rem;
	font-weight: normal;
	text-decoration: none;
	color: #fff;
}
.top-news h3 a:after {
	content: "\f105";
	font-family: FontAwesome;
	margin-left: 5px;
}
.top-support .block-half>li {
	padding-left: 10px;
	box-sizing: border-box;
}
.top-support .block-half>li:first-child{
	padding-left: 0;
	padding-right: 10px;
}
.top-support h3 {
	font-weight: bold;
	margin: 0;
}
.top-support p{
	margin: 10px 0 0;
}
.top-support .box {
	padding-bottom: 20px;
}
.top-support .box .respimg {
	width: 244px;
}
.top-blog .blog-box {
	padding: 5px;
}
.top-blog .blog-box>div>a {
	display: block;
}
.top-blog .blog-box .date {
	font-size: 1.4rem;
	line-height: 1.2;
}
.top-blog .blog-box h3 {
	font-size: 1.6rem;
	line-height: 1.4;
	margin: 0.3rem 0;
}

.fluid.contactarea {
	background-color: #CB1414;
	position: relative;
}
.fluid.contactarea>div {
	font-size: 34px;
	text-align: center;
	color: #fff;
	padding: 80px 0;
}
.fluid.contactarea>ul {
	margin: 0;
	padding: 0 0 140px;
}
.fluid.contactarea>ul>li {
	display: inline-block;
	font-size: 28px;
	height: 70px;
	line-height: 70px;
	width: 350px;
	max-width: 350px;
	border-radius: 35px;
	-webkit-border-radius: 35px;
	border-sizing: border-box;
	border: solid 1px #FFF;
}
.fluid.contactarea>ul>li>a {
	display: block;
	height: 100%;
}
.fluid.contactarea>ul>li:nth-child(1) {
	background-color: #FFF;
}
.fluid.contactarea>ul>li:nth-child(1)>a {
	color: #CB1414;
}
.fluid.contactarea>ul>li:nth-child(2) {
	margin-left: 4%;
}
.fluid.contactarea>ul>li:nth-child(2)>a {
	color: #fff;
}
@media screen and (max-width:1036px){
	.fluid.contactarea>div {
		font-size: 20px;
		padding: 30px 0;
	}
	.fluid.contactarea>ul {
		padding-bottom: 50px;
	}
	.fluid.contactarea>ul>li {
		font-size: 16px;
		height: 50px;
		line-height: 50px;
		width: 40%;
		border-radius: 25px;
		-webkit-border-radius: 25px;
	}
}
@media screen and (max-width:637px){
	.fluid.contactarea>ul {
		padding-bottom: 30px;
	}
	.fluid.contactarea>ul>li {
		width: 90%;
	}
	.fluid.contactarea>ul>li:nth-child(2) {
		margin-top: 18px;
		margin-left: 0;
	}
}

.modal {
	cursor: pointer;
	position: fixed;
	right: -180px;
	bottom: 100px;
	background-color: #cb1414;
	padding: 5px;
	box-shadow:0px 0px 5px rgba(0,0,0,0.3);
	border-radius: 3px 0px 0px 3px;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
	z-index: 1;
}
h2.mds {
	margin: 20px 0 20px;
}
h3.mds {
	margin: 20px 0;
}
h3.mds+p,
h2.mds+p {
	margin-top: -10px;
}


/* ==========================================================================
page common
========================================================================== */
.contents h2.lead {
	font-size: 2.4rem;
	border-bottom: none;
}
.contents p.lead {

}
.contents h2 {
	border-bottom: 1px solid #ccc;
}
.contents h3 {
	background: transparent url(../img/h3icon.png) no-repeat 0 48%;
	background-size: 14px 14px;
	font-size: 1.8rem;
	color: #cb1414;
	padding-left: 2.0rem;
}
.contents h4 {
	font-size: 1.6rem;
	font-weight: bold;
}
.contents h5 {
	font-size: 1.4rem;
	font-weight: bold;
}
.contents h6 {
	font-size: 1.4rem;
	font-weight: bold;
}
.contents img {
	max-width: 100%;
	height: auto;
}
.contents div.smbox {
	font-size: 1.4rem;
}
div.block-fourth>div,
.block-fourth>li,
div.block-twothird>div,
.block-twothird>li,
div.block-onethird>div,
.block-onethird>li,
div.block-third>div,
.block-third>li,
div.block-half>div,
.block-half>li{
	box-sizing: border-box;
}
.contents div.block-half.layout>div,
.contents .block-half.layout>li {
	padding-left: 20px;
}
.contents div.block-half.layout>div:first-child,
.contents .block-half.layout>li:first-child {
	padding-left: 0;
	padding-right: 20px;
}
.contents .block-third.layout>li {
	width: 32%;
}
.contents .block-third.layout>li:nth-child(3n-1) {
	margin: 0 2%;
}
.contents .block-fourth.layout>li {
	width: 25%;
}
.contents div.block-half.layout.repeat>div:nth-child(2n+1),
.contents .block-half.layout.repeat>li:nth-child(2n+1) {
	padding-left: 0;
	padding-right: 20px;
}


.contents .pageanchor {
	background-color: #f5f5f5;
	text-align: center;
	font-size: 1.4rem;
	margin-bottom: 4.0rem;
	padding: 1.0rem 2.0rem;
}
.tab-block {
	margin-bottom: 40px;
}
.tab-mds {
	font-size: 1.6rem;
	line-height: 1.0;
}
.tab-mds>span {
	background-color: #da4b36;
	display: inline-block;
	color: #fff;
	padding: 9px 20px;
	border-radius: 4px 4px 0 0;
}
.achievementbox {
	border-bottom: 1px dotted #ccc;
	margin: 20px 0;
}
.achievementbox h3 {
	margin-top: 0;
}
.achievementbox h3.nodecoration {
		background: none;
		background-size: auto auto;
		padding-left: 0;
}
.mt5 {
	margin-top: 5px;
}
.box.voice {
	background-color: #f5f5f5;
	font-size: 1.4rem;
	padding: 5px;
}
.box.voice>h4 {
	font-size: 1.4rem;
	background-color: #ddd;
	padding: 5px 10px;
	margin: 0;
}
.box.voice>h4:before {
	content: " \f130";
	font-family: FontAwesome;
	margin-right: 5px;
}
.box.voice>p {
	margin: 1.0rem 1.5rem;
}

.contents .relation h3 {
	background: none;
	background-color: #fff;
	display: inline-block;
	font-size: 2.4rem;
	color: #333;
	margin: 0;
	padding: 0 1.0em 0 0;
}
.contents .relation .block-third {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	margin-top: -20px;
	padding-bottom: 0;
}
.contents .relation .block-third>li {
	padding: 20px 10px;
}
.contents .relation a:link,
.contents .relation a:visited {
	display: block;
	background-color: #f5f5f5;
	color: #333;
	text-decoration: none;
	padding: 20px;
}
.contents .relation a:hover {
	background-color: #ddd;
}
.contents .relation a>.text,
.contents .relation a>.title{
	display: block;
}
.contents .relation a>.title {
	font-size: 1.8rem;
}
.contents .relation a>.text {
	font-size: 1.4rem;
}
.contents .relation a>.title:before {
	content: " \f138";
	font-family: FontAwesome;
	margin-right: 5px;
}


/* ==========================================================================
page
========================================================================== */
.contents h1.pagetitle {
	font-size: 2.8rem;
	font-weight: bold;
	color: #cb1414;
	margin: 0;
	line-height: 1.3;
}
.breadcrumbs {
	margin-top: 10px;
	font-size: 1.2rem;
	line-height: 1.8;
	color: #666;
}
.breadcrumbs>.fixed {
	padding-top: 0;
	padding-bottom: 0;
}


/* ==========================================================================
single
========================================================================== */
.single .contents {
	float: left;
	width: 725px;
	margin-right: 40px;
}
#rightside {
	float: left;
	width: 255px;
	margin: 20px 0 60px;
}
.sideblock,
.sideblock>li {
	list-style: none;
	margin: 0;
	padding: 0;
}
#rightside>.sideblock>ul{
	margin: 0;
	padding: 0;
}
#rightside>.sideblock>ul>li{
	border-bottom: 1px solid #ccc;
	margin: 0;
	padding: 0.5rem 1.0rem;
}
.sideblocktitle {
	background-color: #da4b36;
	color: #fff;
	padding: 0.5rem 1.0rem;
}
.single .date,
.archive .date {
	font-size: 1.4rem;
}
.post {
	margin-top: 10px;
}

/* ==========================================================================
archive
========================================================================== */
.contents.archivepage .top-blog .blog-box {
		padding: 0 5px 5px;
}
.contents.archivepage .top-blog .blog-box>li {
	border-bottom: 1px dotted #ccc;
	padding: 10px 0;
}
h2.archivetitle {
	font-size: 2.4rem;
	border-bottom: none;
	margin: 0;
}
.blog-box .date {
		font-size: 1.4rem;
		line-height: 1.2;
}
.imgright.thumbnailimg {
	width: 25%;
}
.blogthumbnailimg {
	max-width: 100%;
	height: auto;
}

/* page 送り */
.post-nav {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	font-size: 1.4rem;
	text-align: center;
	margin-top: 50px;
	padding: 10px 0;
}
.post-nav div {
	display: inline-block;
}
.post-nav .totop_post:after,
.post-nav .totop_post:before {
	content:"｜";
}

/*Pagenation*/
.pagenation {
	text-align: center;
	margin: 0;
}
.pagenation:after, .pagenation ul:after {
	clear: both;
	content: ".";
	display: block;
	height: 0;
	visibility: hidden;
}
.pagenation ul {
	display: inline-block;
	margin: 0;
	padding: 0;
}
.pagenation li {
	display: inline-block;
	list-style: none outside none;
	margin-left: 3px;
}
.pagenation li:first-child {
	margin-left: 0;
}
.pagenation li.active {
	background-color: #eee;
	color: #333;
	padding: 0.3rem 1.0rem;
}
.pagenation li a {
	background-color: #cb1414;
	color: #fff;
	display: inline-block;
	padding: 0.3rem 1.0rem;
	text-decoration: none;
}
.pagenation li a:hover {
	background-color: #333;
	color: #fff;
	opacity: 0.8;
	transition-duration: 500ms;
	transition-property: all;
	transition-timing-function: ease;
}

/* interview
-------------------- */
.corp {
	padding-left: 20px;
}
.interviewtitle {
	border-bottom: 1px dotted #ccc;
	padding: 30px 0 10px;
}
h3.q {
	background: none;
	color: #cb1414;
	font-size: 1.6rem;
	margin-top: 40px;
	padding-left: 0;
}
.interview .imgright {
	width: calc(100% / 3);
}


/* faq
-------------------- */
.ewd-ufaq-post-margin-symbol {
	width: 18px;
	height: 18px;
	margin: 5px;
	border: 2px solid #000;
	color: #000;
}
.ewd-ufaq-post-margin-symbol span {
	font-size: 16px;
}
.ufaq-faq-title {
	background-color: #f5f5f5;
}
a.ewd-ufaq-post-margin:link,
a.ewd-ufaq-post-margin:visited {
	color: #000;
}
.ufaq-faq-body {
	padding: 10px;
}
.ufaq-faq-body strong {
	background: linear-gradient(transparent 50%, #ffff66 0%);
}

/* pricetable
-------------------- */
table.pricetbl2,
table.pricetbl {
	border-collapse: collapse;
	text-align: left;
	line-height: 1.5;
	width: 100%;
	margin: 2.0rem 0 1.0rem;
	box-sizing: border-box;
}
table.pricetbl2 thead th,
table.pricetbl thead th {
	text-align: center;
	padding: 1.5rem 0;
	border: 1px solid #FFF;
	box-sizing: border-box;
}
table.pricetbl thead th:nth-child(2) {
	background-color: #a5d4cf;
}
table.pricetbl thead th:nth-child(3) {
	background-color: #79cac1;
}
table.pricetbl thead th:nth-child(4) {
	background-color: #3fb9ab;
}
table.pricetbl tbody th {
	width: 25%;
	padding: 1.0rem 0;
	font-weight: normal;
	vertical-align: middle;
	text-align: center;
	border: 1px solid #FFF;
	background-color: #EFEFEF;
	box-sizing: border-box;
}
table.pricetbl tbody td {
	width: 25%;
	padding: 1.0rem 0;
	font-weight: normal;
	vertical-align: middle;
	text-align: center;
	border: 1px solid #EFEFEF;
	box-sizing: border-box;
}
table.pricetbl tbody tr.price td {
	background-color: #F8F8F8;
	font-weight: bold;
}
table.pricetbl tbody td.price {
	background-color: #F8F8F8;
}
table.pricetbl tbody th.option {
	background-color: #E3E3E3;
	font-weight: bold;
	border-right-color: #E3E3E3;
}

table .caption {
	font-size: 1.4rem;
}


/* clearfix
-------------------- */
.footerlink>ul:after,
.pagenaviwrap>ul:after,
#footer .wrap:after,
.planicon:after,
.blog-box:after,
.box:after,
section:after,
.section:after,
#footer:after,
#menu:after,
.section:after,
.contents.archivepage .top-blog .blog-box>li:after,
.top-bnr ul:after,
.blocks:after,
.block-fourth:after,
.block-twothird:after,
.block-onethird:after,
.block-third:after,
.block-half:after,
.clearfix:after {
		content:" ";
		display:block;
		clear:both;
}