@charset "utf-8";
/***************************************
common.css
***************************************/

/***************************************
reset
***************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
	vertical-align: baseline;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
	display: block;
}
div, article, section {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
html {
	overflow-y: scroll;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
	content: '';
	content: none;
}
input, textarea {
	margin: 0;
	padding: 0;
}
ol, ul {
	list-style: none;
}
ol.default {
	list-style-type: decimal;
}
ol.default > li {
	margin-left: 2em;
}
table {
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
	font-size: 0;
}
caption, th {
	text-align: left;
}
a {
	-webkit-tap-highlight-color: rgba(0,0,0,0);
	text-decoration: none;
	color: #fff;
}
a:focus {
	outline: none;
}
a:hover {
	color: #fff;
	text-decoration: none;
}
a:visited {
}
.clearfix {
	width: 0;
}
.clearfix:after {
	content: "";
	display: block;
	clear: both;
	width: 0;
	height: 0;
}
* html .clearfix {
	height: 1px;/*¥*//*/
	height: auto;
	overflow: hidden;
	/**/
}
html {
	color: #000;
	font-size: 10px;
	font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
body {
	-webkit-text-size-adjust: 100%;
	font-size: 1.6rem;
	background: #fff;
}
#globalWrapper {
	min-width: 1150px;
}
.roboto {
	font-family: 'Roboto', sans-serif;
}
.noto {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 100%;
}
.skew {
	-webkit-transform: skew(-15deg);
	-moz-transform: skew(-15deg);
	-ms-transform: skew(-15deg);
	-o-transform: skew(-15deg);
	transform: skew(-15deg);
}
.de_skew {
	-webkit-transform: skew(15deg);
	-moz-transform: skew(15deg);
	-ms-transform: skew(15deg);
	-o-transform: skew(15deg);
	transform: skew(15deg);
}
.pc-view {
	display: block;
}
.sp-view {
	display: none;
}
.center {
	text-align: center;
}
.scale {
	width: 350px;
	height: 200px;
	overflow: hidden;
}
.scale img {
	-moz-transition: -moz-transform 0.3s linear;
	-webkit-transition: -webkit-transform 0.3s linear;
	-o-transition: -o-transform 0.3s linear;
	-ms-transition: -ms-transform 0.3s linear;
	transition: transform 0.3s linear;
}
.scale img:hover {
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-o-transform: scale(1.1);
	-ms-transform: scale(1.1);
	transform: scale(1.1);
}
 @media screen and (max-width: 767px) {
.pc-view {
	display: none;
}
.sp-view {
	display: block;
}
.center {
	text-align: left;
}
#globalWrapper {
	width: 100% !important;
	min-width: inherit;
}
.scale {
	width: 350px;
	height: 200px;
	overflow: hidden;
}
.scale img {
	-moz-transition: none;
	-webkit-transition: none;
	-o-transition: none;
	-ms-transition: none;
	transition: none;
}
.scale img:hover {
	-webkit-transform: none;
	-moz-transform: none;
	-o-transform: none;
	-ms-transform: none;
	transform: none;
}
}
/***************************************
header
***************************************/
header {
	position: relative;
	z-index: 20;
	width: 100%;
	height: 70px;
	top: 0;
	left: 0;
	background: #fff;
}
header #logo {
	position: absolute;
	padding: 15px 20px;
}
header #logo img {
	width: 160px;
}
header nav {
	position: absolute;
	top: 7px;
	right: 10px;
}
header nav ul {
	font-size: 0;
}
header nav ul li {
	position: relative;
	display: inline-block;
	padding: 10px 5px;
	vertical-align: middle;
}
header nav ul li.text {
	padding: 0 13px 0 0;
}
header nav ul li.text:before {
	content: "|";
	display: inline-block;
	padding: 0 13px 0 0;
	color: #ccc;
	font-size: 15px;
	-webkit-transform: skew(-15deg);
	-moz-transform: skew(-15deg);
	-ms-transform: skew(-15deg);
	-o-transform: skew(-15deg);
	transform: skew(-15deg);
}
header nav ul li.text:first-child:before {
	display: none;
}
header nav ul li a {
	color: #000;
	font-size: 15px;
	font-weight: 500;
}
header nav ul li a:hover {
	opacity: 0.7;
	color: #000;
}
header nav ul li a img {
	max-width: 100px;
	vertical-align: middle;
}
header .leftTop {
	position: absolute;
	top: 70px;
	left: -10px;
	padding: 8px 30px 10px;
	background: #c41622;
	height: 50px;
}
header .leftTop h1 {
	color: #fff;
	font-size: 20px;
	font-weight: 700;
}
header .leftTop h1 strong {
	font-size: 20px;
	font-weight: 700;
}

@media screen and (min-width: 768px) and (max-width: 1300px) {
header nav ul li a {
	font-size: 12px;
}
header nav ul li.text {
    padding: 0 8px 0 0;
}
header nav ul li.text:before {
    padding: 0 8px 0 0;
}
}

@media screen and (max-width: 767px) {
header .leftTop h1 {
	font-size: 15px;
}
header .leftTop h1 strong {
	display: block;
	font-size: 15px;
}
header .leftTop {
	top: 60px;
	left: -10px;
	padding: 6px 20px 10px;
	background: #c41622;
	height: 60px;
}
header {
	height: 60px;
}
header #logo {
	position: absolute;
	padding: 12px 15px;
}
header #logo img {
	width: 150px;
}
#spNavi {
	margin: 10px 10px 0 0;
}
}
/***************************************
main
***************************************/
main {
	position: relative;
	width: 100%;
	min-width: 980px;
}
@media screen and (max-width: 767px) {
main {
	width: 100%;
	min-width: auto;
}
}
/***************************************
mainVisual
***************************************/
#mainVisual {
	position: relative;
	width: 100%;
	height: 700px;
}
#mainVisual_sp {
	display: none;
}
#mainVisual .scrollBtn {
	position: absolute;
	display: none;
	left: 0;
	right: 0;
	bottom: 25px;
	margin: auto;
	text-align: center;
}
#mainVisual .scrollBtn a {
	position: relative;
	z-index: 100;
	display: block;
	width: 40px;
	height: 22px;
	margin: auto;
	background: url(../img/icon_arr.png) no-repeat center center;
}
/* slideWrapper */
/*#slideWrapper{
	width:100%;
}
#slideWrapper .sp-slides{
	width:100%;
}
#slideWrapper .sp-slide,
#slideWrapper .sp-image-container{
	width:100% !important;
}
#slideWrapper .sp-slide > img,
#slideWrapper .sp-slide > div > img{
	position: absolute;
	top: 50%;
	left: 50%;
	min-width: 1280px !important;
	min-height: 100%;
	max-width: none;
	margin-top: 0 !important;
	margin-left: 0 !important;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}
*/
#slideWrapper, #slideWrapper .sp-mask, #slideWrapper .sp-slides-container, #slideWrapper .sp-slides, #slideWrapper .sp-slide, #slideWrapper .sp-image-container {
	width: 100% !important;
	max-width: 100% !important;
	height: 100% !important;
}
#slideWrapper .sp-slide > img, #slideWrapper .sp-slide > div > img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}
#slideWrapper .custom-object-fit {
	height: 700px;
	position: relative;
	background-size: cover;
	background-position: center center;
}
#slideWrapper .custom-object-fit .sp-image {
	opacity: 0;
}
#slideWrapper .sp-slide.mv01 section {
	position: absolute;
	top: 50%;
	left: 0;
	right: 0;
	margin: auto;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
#slideWrapper .sp-slide.mv01 section img {
	max-width: 100%;
	height: auto;
}
#slideWrapper .sp-slide.mv02 section {
	position: absolute;
	display: inline-block;
	right: 50px;
	top: 100px;
	margin: auto;
	text-align: right;
}
#slideWrapper .sp-slide.mv02 section img {
	width: 100%;
	height: auto;
}
#slideWrapper .sp-slide.mv03 section {
	position: absolute;
	display: inline-block;
	right: 30px;
	bottom: 30px;
	margin: auto;
	text-align: right;
}
#slideWrapper .sp-slide.mv03 section img {
	width: 100%;
	height: auto;
}

#slideWrapper .sp-slide.mv04 section {
	position: absolute;
	display: inline-block;
	right: 0px;
	bottom: 70px;
	margin: auto;
	text-align: right;
}
#slideWrapper .sp-slide.mv04 section img {
	width: 100%;
	height: auto;
}

/* update slider */
.sp-buttons {
	position: absolute;
	z-index: 100;
	left: 0;
	right: 0;
	bottom: 8px;
	text-align: center;
}
.sp-button {
	border: none;
	background: #eee;
}
.sp-selected-button {
	background: #c41622;
}
 @media screen and (max-width: 767px) {
#mainVisual {
	display: none;
}
#mainVisual_sp {
	position: relative;
	width: 100%;
	height: 500px;
	display: block;
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
#slideWrapper_sp, #slideWrapper_sp .sp-mask, #slideWrapper_sp .sp-slides-container, #slideWrapper_sp .sp-slides, #slideWrapper_sp .sp-slide, #slideWrapper_sp .sp-image-container {
	width: 100% !important;
	max-width: 100% !important;
	height: 100% !important;
}
#slideWrapper_sp .sp-slide > img, #slideWrapper_sp .sp-slide > div > img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
}
#slideWrapper_sp .sp-slide.mv01 section {
	position: absolute;
	top: 44%;
	margin: auto;
	text-align: center;
}
#slideWrapper_sp .sp-slide.mv01 section img {
	width: 95%;
	text-align: center;
	height: auto;
}
#slideWrapper_sp .sp-slide.mv02 section {
	position: absolute;
	top: 31%;
	margin: auto;
	text-align: center;
}
#slideWrapper_sp .sp-slide.mv02 section img {
	width: 90%;
	height: auto;
}
#slideWrapper_sp .sp-slide.mv03 section {
	position: absolute;
	top: 33%;
	margin: auto;
	text-align: center;
}
#slideWrapper_sp .sp-slide.mv03 section img {
	width: 92%;
	height: auto;
}
	 #slideWrapper_sp .sp-slide.mv04 section {
	position: absolute;
		 right: 0;
		 bottom: 0;

	text-align: right;
}
#slideWrapper_sp .sp-slide.mv04 section img {
	width: 74%;
	height: auto;
}
}
/***************************************
btn
***************************************/
a[class^="btn-"] {
	display: block;
	width: 250px;
	line-height: 48px;
	margin: 35px auto 0;
	text-align: center;
	font-size: 20px;
	font-weight: 400;
	padding-bottom: 2px;
	font-family: 'Roboto', sans-serif;
}
a[class^="btn-"]:hover {
	opacity: .7;
}
a[class^="btn-"].large {
	width: 400px;
	line-height: 62px;
}
a[class^="btn-"].large2 {
	width: auto;
	height: 80px;
}
a[class^="btn-"].xlarge {
	width: 500px;
	line-height: 75px;
}
a[class^="btn-"].mini {
	width: 120px;
	line-height: 30px;
	margin: 0 auto 0;
	font-size: 14px;
	font-weight: 700;
}
a[class^="btn-"] span {
	display: block;
}
a[class^="btn-"] span.head_btn {
	display: block;
	font-weight: 700;
}
a.btn-1 {
	color: #000;
	background: #fff;
}
a.btn-1:hover {
	color: #000;
}
a.btn-2 {
	color: #fff;
	background: #000;
	font-weight: 700;
}
a.btn-2:hover {
	color: #fff;
}
a.btn-3 {
	color: #fff;
	background: #c41622;
}
a.btn-3:hover {
	color: #fff;
}
@media screen and (max-width: 767px) {
a[class^="btn-"] {
	width: 90%;
	margin: 20px auto 0;
	font-size: 16px;
}
a[class^="btn-"].large, a[class^="btn-"].xlarge {
	width: 95%;
	line-height: 50px;
}
a[class^="btn-"].mini {
	width: 120px;
	line-height: 30px;
	margin: 0 auto 0;
	font-size: 14px;
	font-weight: 700;
}
a[class^="btn-"].large2 {
	width: auto;
	height:70px;
}
}
/***************************************
contents
***************************************/
#contents {
	position: relative;
	z-index: 5;
	/*margin-top: 630px;*/
}
.contentsWrapper {
	position: relative;
	overflow: hidden;
	width: 100%;
}
.contentsWrapper .skewWrapper {
	position: relative;
	display: block;
	width: 120%;
	height: 100%;
	left: -10%;
	font-size: 0;
}
.contentsWrapper .skewWrapper .bgWrapper {
	position: relative;
	overflow: hidden;
	display: inline-block;
	width: 50%;
	height: 100%;
	vertical-align: top;
	font-size: 20px;
}
.contentsWrapper .skewWrapper .bgWrapper .innerWrapper {
	position: relative;
	width: 140%;
	height: 100%;
	left: -20%;
}
.contentsWrapper .skewWrapper .bgWrapper .innerWrapper section {
	position: relative;
	text-align: center;
}
.contentsWrapper .skewWrapper .bgWrapper.leftBg .innerWrapper section {
	margin-left: 18%;
	padding-right: 55px;
}
.contentsWrapper .skewWrapper .bgWrapper.rightBg .innerWrapper section {
	padding-left: 0px;
	margin-right: 10%;
}
/* contents-01 */
#contents-01 {
	height: 360px;
	color: #fff;
}
#contents-01 .bgWrapper section {
	top: 48%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
#contents-01 .bgWrapper section img {
	width: 245px;
}
#contents-01 .bgWrapper.leftBg {
	width: 45%;
	background: #000;
}
#contents-01 .bgWrapper.leftBg section p {
	padding-top: 10px;
	font-size: 80px;
	font-weight: 700;
}
#contents-01 .bgWrapper.rightBg {
	width: 55%;
	background: #c41622;
}
#contents-01 .bgWrapper.rightBg section h2 {
	line-height: 2;
	font-size: 20px;
	font-weight: 500;
}
#contents-01 .bgWrapper.rightBg section a.btn-1 {
	color: #c41622;
}
/* contents-02 */
#contents-02 {
	height: 650px;
}
#contents-02 .bgWrapper.leftBg {
	width: 45%;
}
#contents-02 .bgWrapper.leftBg .sec-01 {
	height: 300px;
	background: url(../img/img_small_01.jpg) no-repeat center center;
	background-size: cover;
}
#contents-02 .bgWrapper.leftBg .sec-02 {
	height: 350px;
	background: #fff;
}
#contents-02 .bgWrapper.rightBg {
	width: 55%;
}
#contents-02 .bgWrapper.rightBg section {
	height: 100%;
	background: url(../img/img_big_01.jpg) no-repeat center center;
	background-size: cover;
}
#contents-02 #cnt02InfoArea {
	position: absolute;
	width: 45%;
	height: 350px;
	top: 300px;
	left: 0;
}
#contents-02 #cnt02InfoArea section {
	position: relative;
	top: 37%;
	padding-right: 55px;
	text-align: left;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
#contents-02 #cnt02InfoArea section h2 {
	font-size: 18px;
	font-weight: 700;
	text-align: left;
	padding-left: 90px;
	line-height: 240%;
}
#contents-02 #cnt02InfoArea section h2 em {
	display: block;
	font-size: 48px;
	font-weight: 700;
	text-align: left;
	
	margin-left: -4px;
}
#contents-02 #cnt02InfoArea section h3 {
	padding-top: 28px;
	font-size: 17px;
	font-weight: 400;
	text-align: left;
	padding-left: 90px;
}
#contents-02 #cnt02InfoArea section p {
	float: left;
	margin-left: 90px;
}
#contents-02 #cnt02InfoArea section p:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}
/* contents-03 */
#contents-03 {
	height: 650px;
}
#contents-03 .bgWrapper.leftBg {
	width: 55%;
}
#contents-03 .bgWrapper.leftBg section {
	height: 100%;
	background: url(../img/img_big_02.jpg) no-repeat center center;
	background-size: cover;
}
#contents-03 .bgWrapper.rightBg {
	width: 45%;
}
#contents-03 .bgWrapper.rightBg .sec-01 {
	height: 280px;
	background: url(../img/img_small_02.jpg) no-repeat center center;
	background-size: cover;
}
#contents-03 .bgWrapper.rightBg .sec-02 {
	height: 370px;
	background: url(../img/bg_01.png);
}
#contents-03 #cnt03InfoArea {
	position: absolute;
	width: 45%;
	height: 370px;
	top: 280px;
	right: 0;
	color: #fff;
}
#contents-03 #cnt03InfoArea section {
	position: relative;
	top: 37%;
	padding-left: 65px;
	text-align: center;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}
#contents-03 #cnt03InfoArea section h2 {
	font-size: 18px;
	font-weight: 700;
	text-align: left;
	line-height: 240%;
}
#contents-03 #cnt03InfoArea section h2 em {
	display: block;
	font-size: 48px;
	font-weight: 700;
	
	text-align: left;
	margin-left: -4px;
}
#contents-03 #cnt03InfoArea section h3 {
	padding-top: 28px;
	font-size: 17px;
	font-weight: 400;
	text-align: left;
}
#contents-03 #cnt03InfoArea section p {
	float: left;
}
#contents-03 #cnt03InfoArea section p:after {
	content: "";
	clear: both;
	height: 0;
	display: block;
	visibility: hidden;
}
/* portfolio */
#portfolio {
	max-width: 980px;
	width: 100%;
	padding: 50px 0px;
	background: #fff;
	margin: 0 auto;
}
#portfolio .cHeader {
	text-align: center;
}
#portfolio .cHeader h2 {
	font-size: 20px;
	font-weight: 700;
	line-height: 240%;
}
#portfolio .cHeader h2 em {
	display: block;
	font-size: 48px;
	font-weight: 700;
	
}
#portfolio .cHeader p {
	padding-top: 20px;
	font-size: 17px;
	font-weight: 400;
}
#portfolio .cList {
	background: #fff;
}
#portfolio .cList ul {
	font-size: 0;
	margin-top: 10px;
}
#portfolio .cList ul li:nth-child(1), #portfolio .cList ul li:nth-child(4) {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	width: 33.33333%;
	padding: 35px 30px 0 0;
	vertical-align: top;
}
#portfolio .cList ul li:nth-child(3), #portfolio .cList ul li:nth-child(6) {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	width: 33.33333%;
	padding: 35px 0px 0 30px;
	vertical-align: top;
}
#portfolio .cList ul li:nth-child(2), #portfolio .cList ul li:nth-child(5) {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	width: 33.33333%;
	padding: 35px 15px 0 15px;
	vertical-align: top;
}
#portfolio .cList ul li a .imgBox {
	position: relative;
	padding: 15px 0 0 15px;
}
#portfolio .cList ul li a:hover .imgBox {
	opacity: .7;
}
#portfolio .cList ul li .imgBox p {
	position: absolute;
	z-index: 1;
	width: 130px;
	line-height: 29px;
	height: 32px;
	top: 0;
	left: 0;
	text-align: center;
	color: #fff;
	font-size: 17px;
	font-weight: 500;
	background: #000;
}
#portfolio .cList ul li .imgBox p span {
	display: block;
}
#portfolio .cList ul li:nth-child(odd) .imgBox p {
	background: #c41622;
}
#portfolio .cList ul li a .infoBox h3 {
	margin-top: 16px;
	margin-bottom: 7px;
	font-size: 20px;
	font-weight: 700;
	color: #000;
}
#portfolio .cList ul li a .infoBox p {
	font-size: 16px;
	color: #000;
}
#portfolio .cList > p {
	padding-top: 20px;
	margin-bottom: 20px;
}
#portfolio .cList > p a {
}
/* bannerLinks */
#bannerLinks {
	width: 100%;
	padding: 60px 100px;
	background: #ddd;
}
#bannerLinks ul {
	font-size: 0;
}
#bannerLinks ul li {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: inline-block;
	width: 33.333%;
	padding: 0 10px 0;
	vertical-align: top;
	text-align: center;
}
#bannerLinks ul li a {
	position: relative;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	display: block;
	height: 120px;
	padding-top: 32px;
	color: #c41622;
	font-size: 15px;
	background: #fff;

}
#bannerLinks ul li a:before {
	content: "\f105";
	position: absolute;
	height: 1em;
	top: 0;
	left: 20px;
	bottom: 0;
	margin: auto;
	font-family: FontAwesome;
	font-size: 30px;
}
#bannerLinks ul li a:hover {
	opacity: .7;
}
#bannerLinks ul li a em {
	display: block;
	font-size: 24px;
	font-weight: 700;
	line-height: 28px;
}

/* contact */
#contact {
	position: relative;
	z-index: 5;
	width: 100%;
	padding: 50px 100px;
	text-align: center;
	color: #fff;
	background: #c41622;
}
#contact h2 {
	font-size: 20px;
	font-weight: 700;
}
#contact h2 em {
	display: block;
	font-size: 40px;
	font-weight: 700;
}
#contact p {
	padding-top: 9px;
	font-size: 18px;
	font-weight: 400;
}
#contact a.mail {
	line-height: 80px;
	margin-top: 36px;
	color: #c41622;
	box-sizing: border-box;
	padding-left:18px;
}
#contact a.mail span {
	position: relative;
	font-size: 28px;
	font-weight: 700;
}
#contact a.mail span:before {
	content: "";
	display:inline-block;
	width: 32px;
	height: 22px;
	margin-right: 14px;
	vertical-align: baseline;
	background: url(../img/icon_mail.png) no-repeat center center;
	background-size: 32px auto;
	vertical-align:-1px;

}
#contact a.tel {
	margin-top: 36px;
	color: #c41622;
	padding-top: 1px;
	position: relative;
	padding-left: 40px;
	line-height: 30px;
	padding-top: 2px;
	text-align: center;
	box-sizing: border-box;
}
#contact a.tel em {
	text-align: center;
	color: #c41622;
	font-size: 18px;
	font-weight: 500;
	padding-bottom: 4px;
	margin-left:-15px;

	
}
#contact a.tel span {
	position: relative;
	font-size: 36px;
	font-weight: 700;
	text-align:center;
	
}
#contact a.tel span:before {
	content: "";
	display:inline-block;
margin-right: 14px;
	width: 23px;
	height: 34px;
	vertical-align: middle;
	background: url(../img/icon_tel.png) no-repeat center bottom;
	background-size: 23px auto;
	position:relative;
	top:19px;
	left:-10px;
	


}
#contact ul.contact_area {
	width: 100%;
	font-size: 0;
	margin: 0 auto;
}
#contact ul.contact_area li:first-child {
	width: 50%;
	display: inline-block;
	box-sizing: border-box;
	vertical-align: top;
	padding: 0 10px;
	font-family:'Roboto','Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, 'ＭＳ Ｐゴシック', sans-serif;
}
#contact ul.contact_area li {
	width: 50%;
	display: inline-block;
	box-sizing: border-box;
	vertical-align: top;
	padding: 0 10px;
}
 @media screen and (max-width: 767px) {
#contents {
	position: relative;
	z-index: 5;
	min-width: auto;
	margin-top: 0px;
}
.contentsWrapper .skewWrapper {
	width: 100%;
	left: 0;
	height: auto;
}
.contentsWrapper .skewWrapper .bgWrapper.skew {
	transform: none;
}
.contentsWrapper .skewWrapper .bgWrapper .innerWrapper {
	position: relative;
	width: 100%;
	height: 100%;
	left: 0;
}
.contentsWrapper .skewWrapper .bgWrapper .innerWrapper.de_skew {
	transform: none;
}

.contentsWrapper .skewWrapper .bgWrapper .innerWrapper section {
	position: relative;
	text-align: center;
}
.contentsWrapper .skewWrapper .bgWrapper.leftBg .innerWrapper section {
	margin-left: 0;
	padding-right: 0;
}
.contentsWrapper .skewWrapper .bgWrapper.rightBg .innerWrapper section {
	padding-left: 0;
	margin-right: 0;
}
/* contents-01 */
#contents-01 {
	height: auto;
}
#contents-01 .bgWrapper {
	display: block;
	width: auto;
}
#contents-01 .bgWrapper.skew {
	transform: none;
}
#contents-01 .bgWrapper section {
	top: 0;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}
#contents-01 .bgWrapper.leftBg {
	width: auto;
	padding: 40px 0 40px;
	height: auto;
}
#contents-01 .bgWrapper section img {
	width: 220px;
}
#contents-01 .bgWrapper.leftBg section p {
	padding-top: 0px;
	font-size: 70px;
	font-weight: 700;
}
#contents-01 .bgWrapper.rightBg {
	width: auto;
	padding: 30px 20px 34px;
	height: auto;
}
#contents-01 .bgWrapper.rightBg section h2 {
	line-height: 1.8;
	font-size: 18px;
}
/* contents-02 */
#contents-02 {
	height: auto;
}
#contents-02 .skewWrapper {
	height: 280px;
}
#contents-02 .skewWrapper .bgWrapper .innerWrapper.de_skew {
	transform: none;
}
#contents-02 .bgWrapper.leftBg {
	width: 50%;
	display: none;
}
#contents-02 .bgWrapper.leftBg .sec-01 {
	height: 100%;
}
#contents-02 .bgWrapper.leftBg .sec-02 {
	display: none;
}
#contents-02 .bgWrapper.rightBg {
	width: 100%;
	transform: none;
}
#contents-02 .bgWrapper.rightBg section {
	height: 100%;
	background: url(../img/img_big_01.jpg) no-repeat center center;
	background-size: cover;
	width: 100%;
	display: block;
}
#contents-02 #cnt02InfoArea {
	position: relative;
	width: auto;
	height: auto;
	top: 0;
	background: #fff;
}
#contents-02 #cnt02InfoArea section {
	position: relative;
	top: 0;
	padding-left: 0;
	padding: 20px 20px 35px;
	text-align: left;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}
#contents-02 #cnt02InfoArea section h2 {
	font-size: 17px;
	text-align: left;
	padding-left: 0px;
	line-height: 240%;
}
#contents-02 #cnt02InfoArea section h2 em {
	font-size: 36px;
	padding-left: 0;
}
#contents-02 #cnt02InfoArea section h3 {
	padding-top: 16px;
	font-size: 15px;
	padding-left: 0px;
}
#contents-02 #cnt02InfoArea section p {
	float: none;
	margin-left: 0;
}
/* contents-03 */
#contents-03 {
	height: auto;
}
#contents-03 .skewWrapper {
	height: 280px;
}
#contents-03 .skewWrapper .bgWrapper .innerWrapper {
	transform: none;
}
#contents-03 .bgWrapper.leftBg {
	width: 100%;
	display: block;
}
#contents-03 .bgWrapper.rightBg {
	display: none;
}
#contents-03 .bgWrapper.rightBg .sec-01 {
	height: 100%;
}
#contents-03 .bgWrapper.rightBg .sec-02 {
	display: none;
}
#contents-03 #cnt03InfoArea {
	position: relative;
	width: auto;
	height: auto;
	top: 0;
	background: url(../img/bg_01.png);
}
#contents-03 #cnt03InfoArea section {
	position: relative;
	top: 0;
	padding: 20px 20px 35px;
	text-align: left;
	-webkit-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
}
#contents-03 #cnt03InfoArea section h2 {
	font-size: 17px;
}
#contents-03 #cnt03InfoArea section h2 em {
	font-size: 36px;
	margin-left: 0px;
}
#contents-03 #cnt03InfoArea section h3 {
	padding-top: 16px;
	font-size: 15px;
	padding-left: 0px;
}
#contents-03 #cnt03InfoArea section p {
	float: none;
	margin-left: 0;
}
/* portfolio */
#portfolio {
	padding: 30px 20px 25px;
	max-width: 100%;
}
#portfolio .cList {
	background: #fff;
}
#portfolio .cHeader h2 {
	font-size: 17px;
	line-height: 240%;
}
#portfolio .cHeader h2 em {
	font-size: 36px;
}
#portfolio .cHeader p {
	padding-top: 16px;
	font-size: 15px;
}
#portfolio .cList ul {
}
#portfolio .cList ul li {
	display: table;
	table-layout: fixed;
	width: 100%;
	padding: 18px 0;
	border-bottom: #CCC 1px dotted;
}
#portfolio .cList ul li:nth-child(1), #portfolio .cList ul li:nth-child(4) {
	display: table;
	table-layout: fixed;
	width: 100%;
	padding: 18px 0;
	border-bottom: #CCC 1px dotted;
}
#portfolio .cList ul li:nth-child(3), #portfolio .cList ul li:nth-child(6) {
	display: table;
	table-layout: fixed;
	width: 100%;
	padding: 18px 0;
	border-bottom: #CCC 1px dotted;
}
#portfolio .cList ul li:nth-child(2), #portfolio .cList ul li:nth-child(5) {
	display: table;
	table-layout: fixed;
	width: 100%;
	padding: 18px 0;
	border-bottom: #CCC 1px dotted;
}
#portfolio .cList ul li:last-child {
	display: table;
	table-layout: fixed;
	width: 100%;
	padding: 18px 0 0;
	border-bottom: none;
}
#portfolio .cList ul li a .imgBox {
	display: table-cell;
	width: 120px;
	height: auto;
	padding: 10px 0 0 0px;
}
#portfolio .cList ul li .imgBox p {
	width: 70px;
	line-height: 23px;
	height: 24px;
	color: #fff;
	font-size: 11px;
	margin-left: -5px;
}
#portfolio .cList ul li:nth-child(odd) .imgBox p {
	background: #c41622;
}
#portfolio .cList ul li a .infoBox {
	display: table-cell;
	padding-left: 10px;
	vertical-align: top;
}
#portfolio .cList ul li a .infoBox h3 {
	font-size: 17px;
	padding-top: 4px;
	margin-top: 0px;
	text-align: justify;
	margin-bottom: 2px;
	color: #000;
}
#portfolio .cList ul li a .infoBox p {
	font-size: 14px;
	text-align: justify;
	color: #000;
}
#portfolio .cList > p {
	padding-top: 10px;
}
#portfolio .cList > p a {
}
/* bannerLinks */
#bannerLinks {
	padding: 10px 20px 20px;
}
#bannerLinks ul {
}
#bannerLinks ul li {
	display: block;
	width: auto;
	padding: 10px 0 0;
}
#bannerLinks ul li a {
	height: 80px;
	padding-top: 15px;
	color: #c41622;
	font-size: 14px;
	background: #fff;
}
#bannerLinks ul li a:before {
	left: 15px;
	font-size: 23px;
}
#bannerLinks ul li a em {
	font-size: 21px;
	font-weight: 700;
	line-height: 20px;
}

/* contact */
#contact {
	padding: 25px 20px 30px;
}
#contact h2 em {
	font-size: 26px;
}
#contact p {
	padding-top: 8px;
	font-size: 17px;
}



#contact a.mail {
	width: 95%;
	line-height: 70px;
	margin-top: 10px;
	padding-left:0px;
}
#contact a.mail span {
	position: relative;
	font-size: 22px;
	font-weight: 700;
}
#contact a.mail span:before {
	content: "";
	width: 26px;
	top: 23px;
	left:46px;
	margin-right: 8px;
	vertical-align: middle;
	background-size: 26px auto;
	vertical-align:-2px;
}
#contact a.tel {
	width: 95%;
	margin-top: 20px;
	padding-left:23px;
	line-height:23px;
}
#contact a.tel em {
	text-align: center;
	color: #c41622;
	font-size: 14px;
	font-weight: 500;
	line-height: 6px;
	padding-left: 0px;
	padding-bottom: 0px;
}
#contact a.tel span {
	position: relative;
	font-size: 27px;
	font-weight: 700;
}
#contact a.tel span:before {
	content: "";
	position:relative;
	width: 20px;
	height: 30px;
	vertical-align: middle;
	background: url(../img/icon_tel.png) no-repeat center bottom;
	background-size: 20px auto;
	top:17px;
	left:-6px;
}
#contact ul.contact_area {
	width: 100%;
	font-size: 0;
	margin: 0 auto;
}
#contact ul.contact_area li:first-child {
	width: 100%;
	display: block;
	padding: 0 0px;
}
#contact ul.contact_area li {
	width: 100%;
	display: block;
	padding: 0 0px;
}

}
/***************************************
footer
***************************************/
footer {
	position: relative;
	z-index: 5;
	color: #fff;
	background: #000;
}
#globalFooter {
	padding-top: 35px;
	text-align: center;
}
#globalFooter .logoBox img {
	width: 180px;
}
#globalFooter .linkBox {
	padding-top: 30px;
}
#globalFooter .linkBox ul {
	padding-bottom: 30px;
	font-size: 0;
}
#globalFooter .linkBox ul li {
	position: relative;
	display: inline-block;
	vertical-align: middle;
	font-size: 15px;
	font-weight: 500;
}
#globalFooter .linkBox ul li:before {
	content: "|";
	display: inline-block;
	padding: 0 20px;
}
#globalFooter .linkBox ul li:first-child:before {
	content: "";
	display: none;
}
#globalFooter .linkBox ul li a {
	padding-right: 20px;
	font-size: 15px;
	font-weight: 500;
	background: url(../img/icon_link.png) no-repeat right center;
	background-size: 15px auto;
}
#globalFooter .linkBox ul li a:hover {
	opacity: .7;
}
#globalFooter #copyright {
	padding: 12px 0;
	text-align: center;
	font-size: 13px;
	border-top: 1px solid #333;
}
 @media screen and (max-width: 767px) {
footer {
	position: relative;
	width: 100%;
	min-width: 100%;
	color: #fff;
	background: #000;
}
#globalFooter .linkBox ul li a {
	padding-right: 15px;
	font-size: 13px;
	font-weight: 500;
	background: url(../img/icon_link.png) no-repeat right center;
	background-size: 12px auto;
}
#globalFooter .linkBox ul {
	padding-bottom: 15px;
}
#globalFooter {
	padding-top: 20px;
}
#globalFooter .linkBox {
	padding-top: 15px;
}
#globalFooter .logoBox img {
	width: 35%;
	height: auto;
}
#globalFooter #copyright {
	padding: 9px 0;
	font-size: 12px;
}
}
/***************************************
#menuOverlay
***************************************/
#menuOverlay {
	position: fixed;
	z-index: 100;
	display: none;
	width: 100%;
	height: 100vh;
	top: 0;
	left: 0;
	color: #000;
	background: rgba(0,0,0,.9);
}
#menuOverlay .closeBtn {
	position: absolute;
	top: 20px;
	right: 20px;
	text-align: center;
}
#menuOverlay .closeBtn a {
	display: block;
	width: 40px;
	height: 40px;
	line-height: 40px;
	color: #fff;
	font-size: 3.6rem;
}
#menuOverlay .closeBtn a:hover {
	opacity: 1;
}
#menuOverlay .menuWrapper {
	width: 100%;
	margin: 60px auto 0;
}
#menuOverlay .menuWrapper .txtLink {
}
#menuOverlay .menuWrapper .txtLink li.text {
	display: inline-block;
	width: 100%;
}
#menuOverlay .menuWrapper .txtLink li.text a {
	display: block;
	line-height: 50px;
	text-align: center;
	color: #FFF;
	font-weight: 500;
	font-size: 16px;
	border-bottom: 1px solid #666;
}
#menuOverlay .menuWrapper .txtLink li:not(.text) {
	padding-left: 20px;
	padding-right: 20px;
}
#menuOverlay .menuWrapper .txtLink li:last-child {
	padding: 20px 0;
	text-align: center;
}
#menuOverlay .menuWrapper .txtLink li:last-child a img {
	width: 35%;
	height: auto;
}
#menuOverlay .menuWrapper .txtLink li.btn_head {
	margin-top: 30px;
}
#menuOverlay .menuWrapper .txtLink li a:hover {
	opacity: 1;
	background: rgba(255,255,255,.2);
}
#menuOverlay .menuWrapper .txtLink li.half {
	width: 50%;
}
#menuOverlay .menuWrapper .txtLink li.half a {
	font-size: 1.4rem;
}
#menuOverlay .menuWrapper .txtLink li.half + .half a {
	border-left: 1px solid #444;
	letter-spacing: .1em;
	font-size: 1.4rem;
}
