﻿@charset "utf-8";
/*========= ナビゲーションのためのCSS ===============*/
#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:rgba(155,0,2,0.95);
    /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #FFFFFF;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/


#logo {
	background: transparent; /* 元の色 */
}

#logo.invert {
	background: #111111; /* スクロール後の色 */
}
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:10px;
	right: 10px;
	cursor: pointer;
    width: 80px;
    height:80px;
	
}
	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #FFF;
  	width: 45%;
  }

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:25px;
}

.openbtn span:nth-of-type(3) {
	top:35px;
}
.openbtn span:nth-of-type(4) {
	top:48px;
	left:10px;
	background:transparent;color:#FFFFFF;
}


.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*==================================================
スライダーのためのcss
===================================*/
.slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
   width:94%;
    margin:50px auto 100px auto;padding:50px 0;background:#FFFFFF;
}

.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/aspect-ratio: 5 / 3;/* 画像のアスペクト比を固定！heightはauto widthは100％！ */
    height:auto;object-fit: cover; /* この一行を追加するだけ！ */
box-shadow: 0px 0px 2px 1px #ebebeb;
border-radius: 0px;
}
.slider li .slideUndertext{height:auto; padding:20px 10px;background:rgba(98,25,26,1.00);box-shadow: 0px 0px 2px 1px #ebebeb;
border-radius: 0px;color:#FFFFFF;font-weight:550;text-align:center;}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:12px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
	border:none;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}	
.slideArea{padding:20px 0; box-sizing:border-box ;position:relative;width:auto;background:rgba(251,250,249,1.00);}



/*========= レイアウトのためのCSS ===============*/

p{
}

small{
	color:#fff;
	display: block;padding-top:20px;
	text-align: center;potision:absolute;top:50px;left:50%;right:50%;
}

#header{
	width:100%;box-sizing: border-box;
	background:#111111;
	color:#fff;
	text-align: center;
	padding: 5px;
}
/*
section{
	padding:100px 30px;
}

section:nth-child(2n){
	background:#f3f3f3;	
}*/

#footer{position:relative;
	background:rgba(50,42,35,1.00);
	padding:20px;
}

#footer p{margin:20px; color:#D9D7D7;}


#footer p:nth-of-type(1){font-size:2.0rem;color:#FFFFFF;}


#footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
 
#footer {
  position: relative;
  background: #222;
}
 
#footer .logo {
  text-align: center;
  padding: 20px 0;
  border-bottom: 1px solid #111;
}
 
#footer .logo a {
  display: inline-block;
}
 
#footer .logo img {
  width: 120px;
}
 
#footer .footer_nav a {
  display: block;
  padding: 0 10px;
  color: #ccc;
}
 
@media only screen and (min-width: 801px) {
  #footer .footer_nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 20px 0;
  }
  #footer .footer_nav a:hover {
    color: #ca353b;
  }
}










div.heading01 {
	position: relative;
	font-size: 200%!important;
	text-align: center;
	box-sizing: border-box;
	margin:20px auto 100px auto!important;
	letter-spacing:0.1rem!important;
	color:#151515;
}

div.heading01::before {
	content: attr(data-number);
	display: block;
	margin-bottom: 60px;
	color: #7B7670;
	font-size: 50%!important;
}

div.heading01::after {
	content: '';
	position: absolute;
	top: 20px;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 25px;
	background-color:#CCC5BD;
}	



/*flexbox*/	
/* 親要素(コンテナ) */
.flexbox {
	position:relative;
	display: -webkit-flex!important;
	width:50%;
    display: flex!important;
	justify-content: center;
	flex-wrap: wrap;
	margin:30px 25%!important;;
	}
/* 親要素(コンテナ) */


/* 子要素(アイテム) */
.flex-item {
	border:2px solid #1C5FA6;
	color: #fff;margin:10px 0;
	box-sizing: border-box;
	width:auto;
	max-width:250px;
	height:auto;
	max-height:250px!important;
}
.oneitem{
	width:60%;margin:0 20% 20px 20%;
	box-sizing:border-box;
	}
.oneitem_Link:hover{opacity: 0.7;
	transform: translateY(-5px);
	transform: scale(1.2);
	}

.oneitem > p{
	margin:10px auto 40px auto;
	letter-spacing:0.03rem;
	font-size:1.2rem;
	color:#555555;
	line-height:180%;
	word-wrap: break-word;
	white-space: pre-wrap;
	}


.oneitem > .leftSpace{
	padding-left:15%;font-weight:510!important;
	}

.oneitem .closeUp{
	font-size:1.8rem;
	/*background: linear-gradient(180deg, rgba(223,208,172,1) 0%, rgba(60,51,8,1)100%);	*/
	  text-decoration: none;
    border-bottom: 3px solid rgba(148,7,9,1.00);
	box-sizing: border-box;
	padding:1rem;
	width:fit-content!important;
}

.oneitem > .sideTitle{
	box-sizing: border-box;
	position: relative;
	padding-left:0;/*アイコン分のスペース*/
	padding-bottom:0px;
	line-height: 1.4rem;
	margin:60px auto;
	font-size:2.2rem;
	text-decoration:underline;
}

.oneitem > .textBox{box-sizing: border-box;
	width:45%;height:auto;
	margin:0px 27.5% 0px 27.5%;
	letter-spacing:0.1em;
	font-size:110%;
	color:#555555;
	line-height:180%;
	word-wrap: break-word;
	white-space: pre-wrap;
text-align:left;
	}

.oneitem .twoitem_Link .imgBox{
width:100%; 
  height:auto;
	}	
	
.oneitem .twoitem_Link .imgBox img{
height: 300px;width:100%;
  object-fit: cover;	/*object-fit: cover; /* この一行を追加するだけ！ */
	}

.twoitem{
	width:46%;margin:0 2% 100px 2%;
	box-sizing:border-box;background:none;
	}
.twoitem_Link:hover{opacity: 0.7;
	transform: translateY(-5px);
	transform: scale(1.2);
	}	
.twoitem > p{
	letter-spacing:0.1em;
	font-size:90%;
	color:#555555;
	line-height:180%;

		word-wrap: break-word;
	white-space: pre-wrap;

	}


.twoitem > h5 {box-sizing: border-box!important;
	text-align:center!important;
	display:block;
	width:fit-content!important;
	min-width:100%;
	margin:0px auto 40px auto!important;
	position: relative!important;
	background-color:#F9F6F2!important;
	padding: 2.5rem 4rem!important;	color: rgba(57,40,40,1.00)!important;
	border: solid 2px rgba(57,40,40,1.00)!important;
	font-size:1.8rem!important;
}
.twoitem > h5:after {
	position: absolute;
	content: "CHECK";
	top: -15px;
	left: 10px;
	background: rgba(118,39,40,1.00);
	font-size: 0.8rem;
	color: #FFFFFF;
	padding: 10px 10px;
	border:3px solid rgba(118,39,40,1.00);
}



.sub_title {
    display: inline-block;
	box-sizing:border-box;
	width:100%;letter-spacing:0.1em;
	height:auto;
	margin:10px 0px 30px 0px; 
	padding:20px 0!important;
	line-height:200%; 
    text-align: center;
    cursor: pointer;
    text-decoration: none!important;
    outline: none;
	font-size:2.2rem!important;
	color:rgba(50,42,35,1.00);font-weight:700;
}


.twoitem > .sideTitle{
	box-sizing: border-box;
	position: relative;
	padding-left:0;/*アイコン分のスペース*/
	padding-bottom:20px;
	line-height: 1.4;
	margin-bottom:30px;
	font-size:1.3rem;
	color:rgba(118,39,40,1.00);
	letter-spacing: 0;
}
.twoitem > .sideText{
	font-size:95%;
	padding:2% 2% 2% 2%;
		width:90%;
	margin:0 5% 0 5%;
	box-sizing: border-box;
	letter-spacing:0.0rem;line-height:180%;
	text-align:left;
	word-wrap: break-word;
	white-space: pre-wrap;
	height:auto;
	min-height:450px;
	}

.sideText_span{color:rgba(118,39,40,1.00); font-weight:570;}
/*.twoitem > .sideTitle:before {
  font-family: "Font Awesome 5 Free";
  content: "\f00c";
  font-weight: 900;
  position: absolute;
  font-size: 1.2em;
  left: 0;
  top: 0.1em;
  color: #2876A8;
}*/
.twoitem .twoitem_Link .imgBox{
width:100%; 
  height:auto;
	}	
	
.twoitem .twoitem_Link .imgBox img{
height: 250px;width:100%;
  object-fit: cover;	/*object-fit: cover; /* この一行を追加するだけ！ */
	}
/*ここからボタンベース*/
.w_button {
    display: inline-block;
	box-sizing:border-box;
	width:40%;letter-spacing:0.0em;
	height:auto;
	margin:10px 30% 10px 30%; 
	padding:15px 0!important;
	line-height:200%; 
    text-align: center;
    cursor: pointer;
    text-decoration: none!important;
    outline: none;
}
.w_button::before,
.w_button::after {
    position: absolute;
    z-index: -1;
    display: block;
    content: '';
}
.w_button,
.w_button::before,
.w_button::after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all .3s;
    transition: all .3s;
}
	
.w_button {
    background-color:rgba(50,42,35,1.00);
    color: #fff !important;
	font-size:1.2rem;
    background-size: 200% 100%;	
    background-image: -webkit-linear-gradient(left, transparent 50%, rgba(27, 33, 39, 1) 50%);	
    background-image: linear-gradient(to right, transparent 50%, rgba(27, 33, 39, 1) 50%);
    -webkit-transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
    transition: background-position .3s cubic-bezier(0.19, 1, 0.22, 1) .1s, color .5s ease 0s, background-color .5s ease;
	box-shadow: 0px 4px 1px 0px #454545;
border-radius: 0px;
	border:1px solid rgba(77,77,77,1.00);
	border-style: inset;
}
.w_button:hover {
    background-color: #202427;
    background-position: -100% 100%;
		opacity: 0.8!important;
	transform: translateY(-2px)!important;
}	
/*ボタンベースここまで*/

@media screen and (min-width: 801px) {
	
	
.mainWrapper{position:relative; margin:0; padding:0; box-sizing:border-box; width:100%; min-width:1080px;}	
	
body{	
font-family: "murecho", sans-serif;
font-weight: 400;
font-style: normal;
		/*font-family:"Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";*/
	font-size:18px;
	-webkit-animation: fadeIn 2s ease 0s 1 normal;
    animation: fadeIn 2s ease 0s 1 normal;	
	margin:0;
	padding:0;
/* 画像ファイルの指定 */
  /*background-image: url("../img/slide_001.png");*/
  /* 画像を常に天地左右の中央に配置 */
  background-position: center center;
  /* 画像をタイル状に繰り返し表示しない */
  background-repeat: no-repeat;
  /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
  /* コンテンツの高さが画像の高さより大きい時、動かないように固定 */
  background-attachment: fixed;
  /* 表示するコンテナの大きさに基づいて、背景画像を調整 */
  background-size: cover;
  /* 背景画像が読み込まれる前に表示される背景のカラー */
  background-color: #FFFFFF;
}
h1{box-sizing: border-box;
	padding:15px 0 25px 20px!important;
	font-weight:normal!important;
	letter-spacing:1px;
	line-height: 1.8rem;
	word-wrap: break-word;
	white-space: pre-wrap;
	width:fit-content;
	margin:0;
}
	.s_header_img{display:none;}	
	
h2{
	position: relative;
	padding: 5rem 2rem!important;
	border: solid 3px rgba(50,42,35,1.00)!important;
	width:60%;
	box-sizing: border-box!important;
	height:auto;
	margin:150px auto 100px auto!important;
	font-size:3rem!important;
	text-align: center!important;
	background:rgba(98,25,26,1.00)!important;color:#FFFFFF;
}
	
h2:after {
	position: absolute;
	content: "SRのサービス";
	top: -30px;
	left: 15px;
	background:rgba(118,39,40,1.00);
	font-size: 1.6rem;
	color: #FFFFFF;
	padding: 20px 20px;
}

h2:nth-child(1) {
	background:rgba(98,25,26,1.00);color:#FFFFFF;
		width:100%;

}	
	
h6{
	position: relative;
	padding: 4rem 2rem!important;
	border: solid 3px rgba(50,42,35,1.00)!important;
	width:100%;
	box-sizing: border-box!important;
	height:auto;
	margin:100px auto 0px auto!important;
	font-size:2.7rem!important;
	text-align: center!important;
	background:rgba(98,25,26,1.00)!important;color:#FFFFFF;
}
	
h6:after {
	position: absolute;
	content: "SRのサービス";
	top: -30px;
	left: 15px;
	background:rgba(118,39,40,1.00);
	font-size: 1.6rem;
	color: #FFFFFF;
	padding: 20px 20px;
}
	
	
	
.mainTitle {
	position: relative;
	padding: 7rem 2rem!important;
	width:100%;
	box-sizing: border-box!important;
	height:auto;
	background-image:url("../img/bg_top.png");
		background-position:center top;
	background-repeat:no-repeat;
	background-size:cover;
	margin:100px auto!important;
	font-size:4rem!important;
	text-align: center!important;
	font-weight:550;
	color:rgba(50,42,35,1.00)!important;
}
.mainTitle:after {
	position: absolute;
	content: "SR corporation";
	top: -15px;
	left: 45%;
	right:45%;
	width:auto;
	font-weight:600;
	background:rgba(98,25,26,1.00);
	font-size: 1.4rem;
	color: #FFFFFF;
	padding: 10px 10px;
}
	
	
.mainTitle:nth-of-type(1){
	position: relative;
	padding: 18rem 2rem!important;
	width:100%;
	box-sizing: border-box!important;
	height:auto;
	background-image:url("../img/006.jpeg");
		background-position:center top;
	background-repeat:no-repeat;
	background-size:cover;
	margin:100px auto!important;
	font-size:4rem!important;
	text-align: center!important;
	font-weight:550;
	color:#FFFFFF!important;
	text-shadow: 2px 2px 2px rgba(2, 2, 2, 1);
}

		
	
	
h3 {box-sizing: border-box!important;
	text-align:center!important;
	display:block;
	width:fit-content!important;
	margin:50px auto!important;
	position: relative!important;
	background-color:#111111!important;
	padding: 3rem 4rem!important;	
	border: solid 2px rgba(57,40,40,1.00)!important;
	font-size:2.5rem!important;
	color:#FFFFFF!important;
}
h3:after {
	position: absolute;
	content: "POINT";
	top: -15px;
	left: 10px;
	background: #fff;
	font-size: 0.8rem;
	color: rgba(57,40,40,1.00);
	padding: 10px 10px;
	border:3px solid rgba(66,66,66,1.00);
}
h5 {box-sizing: border-box!important;
	text-align:center!important;
	display:block;
	width:fit-content!important;
	min-width:60%;
	margin:60px auto!important;
	position: relative!important;
	background-color:#F9F6F2!important;
	padding: 2.5rem 4rem!important;	color: rgba(57,40,40,1.00)!important;
	border: solid 2px rgba(57,40,40,1.00)!important;
	font-size:1.8rem!important;
}
h5:after {
	position: absolute;
	content: "CHECK";
	top: -15px;
	left: 10px;
	background: rgba(118,39,40,1.00);
	font-size: 0.8rem;
	color: #FFFFFF;
	padding: 10px 10px;
	border:3px solid rgba(118,39,40,1.00);
}
.top_h {box-sizing: border-box!important;
	text-align:center!important;
	display:block;
	width:fit-content!important;
	font-weight:600;
	min-width:60%;
	margin:100px auto 0 auto!important;
	position: relative!important;
	background-color:#F9F6F2!important;
	padding: 4rem 4rem!important;	color: rgba(57,40,40,1.00)!important;
	border: solid 2px rgba(57,40,40,1.00)!important;
	font-size:2rem!important;
}
.top_h:after {
	position: absolute;
	content: "CHECK";
	top: -15px;
	left: 10px;
	background: rgba(118,39,40,1.00);
	font-size: 0.8rem;
	color: #FFFFFF;
	padding: 10px 10px;
	border:3px solid rgba(118,39,40,1.00);
}	
	
h4 {box-sizing: border-box!important;
	text-align:center!important;
	display:block;
	width:fit-content!important;
	font-size:2.5rem!important;
	margin:10px auto!important;
	position: relative!important;
	padding: 1rem 1rem!important;	color: #111111;
}	
	
body a{
	text-decoration:none;
	}
a {
	transition: .3s;
	color:#FFFFFF;
	}
a:hover {
	opacity: 0.8;
	transform: translateY(-4px);
	}
html{
  scroll-behavior: smooth;
}
.map {margin:0px 0 0px 0; padding:0;
position: relative;
padding-bottom: 20%; /*これが縦横比*/
height: 0;
overflow: hidden;
}
.map iframe {
position: absolute;
top: 0;
left: 0;
width: 100% !important;
height:100% !important;
}
	
iframe{
   filter: grayscale(100%);
   transition: all 0.7s ease;
}
.breadcrumb {
	position: absolute;
	top:85px; left:0;
	margin: 0;
	padding: 0;
	list-style: none;
}
.breadcrumb li {
  position: relative;
  display: inline-block;/*横に並ぶように*/
  list-style: none;
  font-weight: bold;/*太字*/
  margin-right: 0.8em;
}
.breadcrumb li:after {/*三角の部分*/
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  border-style: solid;
  border-color: transparent;
  border-left-color: #FFFFFF;/*背景色*/
  border-width: 14px 12px;
  width: 0;
  height: 0;
}
.breadcrumb li a {
  display: inline-block;
  padding: 0 3px 0 7px;
  height: 28px;
  line-height: 28px;
  text-decoration: none;
  color: #3F2B14;
  background: #FFFFFF;/*背景色*/
  font-size: 13px;
}
.breadcrumb > li a:hover {
transform:none!important;
opacity:1!important;	
  color: #FFF;
}
#page-top {
    position: fixed;
    bottom: 110px;
    right: 25px;
Z-index:9999;opacity:0.9;
}
#page-top a {
    width: 0;
height: 0;
border-style: solid;
border-width: 0 50px 86.6px 50px;
border-color: transparent transparent #000000 transparent;
}
#page-top a:hover {
width: 0;
height: 0;
border-style: solid;
border-width: 0 50px 86.6px 50px;
border-color: transparent transparent #666666 transparent;
}
#Tel {
    position: fixed;
    bottom: 130px;width:350px;height:100px;
    right: 30px;box-sizing: border-box;
Z-index:9999;opacity:0.9;
}
#Tel{
    background:url("../img/tel.png")center center no-repeat;
    width:300px;height:125px;
    border-radius:10px;
	border:1px solid rgba(171,171,171,1.00);
	box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
}
#Tel a:hover {
    text-decoration: none;color:#F3E29C!important;
    background:#FFFFFF;
}
	
.contactsubtextTitle{
	margin:0px 0 50px 0;
	color:#5A7064;
	text-align:center!important;
	font-size:130%;
	width:100%;
	min-width:100%;
	height:auto;
	box-sizing:border-box;
	border-bottom:2px solid #FFFFFF;
	-webkit-text-shadow:1px 1px 3px #666666;
  text-decoration: none;
}	
	
.jumpButton{box-sizing:border-box;display: block;width:100%;height:auto;
position: relative;
padding:6% 0;
	margin:0 auto;
border-bottom: 1px solid #D9D9D6;
background:#F9F9F9;
color: #3E3E3E;
font-size: 1.7rem;
	font-weight:600;
	letter-spacing:0.1rem;
text-decoration: none;
}
.jumpButton::after {
display: block;
content: "contact";
position: absolute;
top: 60%;
right:45%;
left:45%;
width:10%;
height: 0;
margin: 15px 0 0 0;
	color:#CCB0B1;font-size:80%;
/*-webkit-transform: rotate(45deg);
        transform: rotate(45deg);*/
}	
	
	
	
	
	
	
	
	
.topArea{position:relative; height:100vh; width:100%;z-index: 0;margin-bottom:300px;}	
	
.main_img_wrapper{
	position:relative;
	height:100vh;
	min-width:1080px;
	}
.main_imgBox {
	width:100%;
	margin:0 auto;
	height:300px;
	min-width:1080px;
	background-position:center top;
	background:0 0 no-repeat;
	background-color:none;
	background-size:cover;
	/*padding-top: 33.75%;*/
}
	
.main_imgBoxCase{
	background-position:center center;	
		width:100%;box-sizing: border-box;
	margin:0 auto;
	height:300px;	min-width:1080px;
background-color:none;/*rgba(255,255,255,0.9);*/}
	
	
.main_img_wrapper .s_main_imgBox{
	display:none;
	}	
.main_logo {
    z-index:11;
    position: absolute;
    top:40%;
    left:50%;
    transform:translate(-50%,-50%);
    width:100%;
    height:220px;
	/*background-color:rgba(255,255,255,0.90);*/
	/*background:rgba(50,42,35,0.17);*/
background: linear-gradient(0deg, rgba(0,0,0,0.5) 0%, rgba(255,255,255,0.0)100%);
box-shadow: -1px 33px 0px rgba(0,0,0,0.7);
}
.main_logo_img {
    position: absolute;
    top:52%;
    left:57%;
    transform:translate(-50%,-50%);
    width:180px;
    height:auto;
}	
.main_logo_img2 {
    position: absolute;
    top:80%;
    left:48%;
    transform:translate(-50%,-50%);
    width:500px;
    height:auto;
	text-shadow: -1px 20px 0px rgba(0,0,0,0.3);
}
.main_logo_img2{
   font-size:5rem;
	color:#FFFFFF;
	font-weight:bolder;
}	
		
	
.main_img {
    z-index:10;
    opacity: 0;
    width: 100%;
    height: 850px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: 0;
    top: 0;
    -webkit-animation: anime 9s 0s infinite;
    animation: anime 9s 0s infinite;
	}

    .main_img:nth-of-type(2) {
      -webkit-animation-delay: 1.5s;
      animation-delay: 1.5s; }

    .main_img:nth-of-type(3) {
      -webkit-animation-delay: 3s;
      animation-delay: 3s; }

    .main_img:nth-of-type(4) {
      -webkit-animation-delay: 4.5s;
      animation-delay: 4.5s; }

    /*.main_img:nth-of-type(5) {
      -webkit-animation-delay: 8s;
      animation-delay: 8s; }*/

    /*.main_img:nth-of-type(6) {
      -webkit-animation-delay: 10s;
      animation-delay: 10s; }*/

@keyframes anime {
    0% {
        opacity: 0;
    }
    8% {
        opacity: 0.7;
    }
    17% {
        opacity: 1;
    }
    25% {
        opacity: 0;
         transform: scale(1.03);
                    z-index:9;
    }
    100% { opacity: 0 }
}
@-webkit-keyframes anime {
    0% {
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    17% {
        opacity: 1;
    }
    25% {
        opacity: 0;
         -webkit-transform: scale(1.1);
            z-index:9;
    }
    100% { opacity: 0 }
}	
	
	
	
	.topfixedArea{position:relative; height:auto; width:auto; box-sizing:border-box;}	
	
.Zoomslide {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.Zoomslide-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  animation: slider-1 32s linear infinite;
}
	
	
	
	
.Zoomslide-image:nth-child(1) {
  background-image: url(../img/bg_top.png);
  animation-delay: -2s;
}

.Zoomslide-image:nth-child(2) {
  background-image: url(../img/bg_top.png);
  animation-delay: 6s;
}

.Zoomslide-image:nth-child(3) {
  background-image: url(../img/bg_top.png);
  animation-delay: 14s;
}
	
.Zoomslide-image:nth-child(4) {
  background-image: url(../img/005.jpg);
  animation-delay: 22s;
}	

@keyframes slider-1 {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  4.16% {
    opacity: 1;
  }
  33.33% {
    opacity: 1;
  }
  41.66% {
    opacity: 0;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
  }
}
	
	

.topwrapper {
  position: absolute;
	top:30%;bottom:70%;left:0;
  width:100%;
  height:300px;
  overflow: hidden;
}	
	
	
.topwrapper::before {
   content: '';
   display: block;
   width: 100%;
   height: 100%;
  background-image: url("../img/0001.jpeg");
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   -webkit-animation: zoom 20s infinite linear forwards infinite;
   animation: zoom 20s linear forwards infinite;
   animation-fill-mode: forwards;



}

@keyframes zoom {
   0% {
      transform: scale(1.15);
	   opacity: 0;
   }
	5%{opacity: 1}
	90%{opacity: 1}
   100% {
      transform: scale(1.0);
	    opacity: 0;
   }
}
@keyframes zoom-1 {
   0% {
	   opacity: 0;
   }
	5%{opacity: 1}
	95%{opacity: 1}
   100% {
	    opacity: 1;
   }
}		
	
.topwrapper .text{
  /*wrapperの中身を上下中央揃え*/
  position: absolute;
  top: 5%;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;padding:2% 5%;
  width:30%;
  height:20%;
  background-color:#3E3A2F;
  text-align: center;color:#FFFFFF;z-index: 99;
	   -webkit-animation: zoom-1 20s linear forwards;
   animation: zoom-1 20s linear forwards;
   animation-fill-mode: forwards;


}	
		.topwrapper .text p:nth-of-type(1){font-size:2rem;}
	.topwrapper .text p:nth-of-type(2){font-size:1.3rem;}
	
.l-hero {
	position:relative;
	height:85vh;
    overflow: hidden;
}	
	
  .l-hero__bg {
	  animation-name: Topslide,anime;
    position: absolute;
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height:85vh;
	  overflow: hidden;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;/*padding-top: 33.75%;*/
    opacity: 0;
	 -webkit-animation: anime 36s 0s infinite,Topslide 36s 0s infinite;
    animation: anime 36s 0s infinite,Topslide 36s 0s infinite;
}
  .l-hero__bg:nth-of-type(2) {      
    -webkit-animation-delay: 6s;
    animation-delay: 6s; }
  .l-hero__bg:nth-of-type(3) {
    -webkit-animation-delay: 12s;
    animation-delay: 12s; }
  .l-hero__bg:nth-of-type(4) {
    -webkit-animation-delay: 18s;
    animation-delay: 18s; }
  .l-hero__bg:nth-of-type(5) {
    -webkit-animation-delay: 24s;
    animation-delay: 24s; }
  .l-hero__bg:nth-of-type(6) {
    -webkit-animation-delay: 30s;
    animation-delay: 30s; }
  .l-hero__bg:nth-of-type(2) {      -webkit-animation-delay: 6s;
      animation-delay: 6s;
	}
  .l-hero__bg:nth-of-type(3) {      -webkit-animation-delay: 12s;
      animation-delay: 12s;
	}
  .l-hero__bg:nth-of-type(4) {      -webkit-animation-delay: 18s;
      animation-delay: 18s;
}
  .l-hero__bg:nth-of-type(5) {      -webkit-animation-delay: 24s;
      animation-delay: 24s;
}
  .l-hero__bg:nth-of-type(6) {      -webkit-animation-delay: 30s;
      animation-delay: 30s;
}	
	
@keyframes Topslide {
  0% {
    opacity: 0; }
  8% {
    opacity: 1; }
  17% {
    opacity: 1; }
  25% {
    opacity: 0;
    transform: scale(1.0);
    z-index: 9; }
  100% {
    opacity: 0; transform: scale(1.0);}
	}	
@keyframes anime {
  0% {
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    17% {
        opacity: 1;
    }
    25% {
        opacity: 0;
        transform: scale(1.2) ;
         z-index:9;
    }
    100% { opacity: 0 }
}	
	
.l-hero__bg::before {
   content: '';
   display: block;
   width: 100%;
   height: 100%;
   /*background-image: url("../img/bg_005.png");*/
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   -webkit-animation: zoom 10s 1;
   animation: zoom 10s infinite;
   animation-fill-mode: forwards;
}
	

.l-hero__inner{
	height:400px;
	width:100%;
	background:#FFFFFF;
	}
	
.wrapper{
	box-sizing:border-box;
	margin:0 auto;
	padding:0;
	width:60%;
	/*min-width:1080px;
	max-width:1180px;*/
	height:auto;
	background:transparent;
	/*background:rgba(255, 255, 255, 0.45);*/


	} 

/* BOXデザイン004 */
.div_design004 {
	margin:100px auto;
	width:960px;
	padding:0 0 0 0;
	box-sizing: border-box; 
	background:#FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.div_design004 .div_design004_contents {
  background: #FFF;
  width: 300px;
  height: auto;
	min-height:100px;
  margin: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.div_design004 .div_design004_contents img {
  width: 100%;
  height: 250px;
	object-fit: cover;
}
.div_design004 .div_design004_contents p:nth-of-type(1) {
  font-size: 1.8rem;font-weight:600;
  width: auto;
  margin: 0;
  padding: 2rem 1rem;
  display: block;
  text-align: center;
	color:rgba(50,42,35,1.00);
}
.div_design004 .div_design004_contents p:nth-of-type(2) {
  font-size: 1.0rem;font-weight:400;
  width: auto;
  margin: 0;
  padding: 2rem 1rem;
  display: block;
	word-wrap: break-word;
	white-space: pre-wrap;
  text-align: left;line-height:180%!important;
	color:rgba(50,42,35,1.00);
}	
/* BOXデザインカラム */
.div_design {
	margin:100px auto;
	width:960px;
	padding:0 0 0 0;
	box-sizing: border-box; 
  display: -webkit-box;
  display: -ms-flexbox;
  display:block;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.div_design .div_design_contents {
  background: #FFF;
  width:100%;
  height: auto;
	min-height:100px;
  margin: 15px 0;
  display: flex;	box-sizing: border-box;
}
.div_design .div_design_contents img {
  width: 40%;
  height: 280px;
	object-fit: cover;
}
.div_design .div_design_contents p:nth-of-type(1)  {
  font-size: 1.8rem;font-weight:580;	box-sizing: border-box; 
  width:100%;padding-top:20px;
line-height:180%;
  display: block;
  text-align:left;color:rgba(50,42,35,1.00);margin-bottom:20px;
}
.div_design .div_design_contents p:nth-of-type(2)  {
  font-size: 1rem;font-weight:450;	box-sizing: border-box; 
  width:100%;line-height:180%;
color:rgba(50,42,35,1.00);
  display: block;
  text-align:left;
}	
.div_design .div_design_contents .div_side {
box-sizing:border-box;
  width:50%;
  margin:10px 5% 10px 5%;
  padding:0;
  display: block;
height:auto;
}
/* BOXデザインカラム */
.div_design001 {
	margin:100px auto;
	width:960px;
	padding:0 0 0 0;
	box-sizing: border-box; 
  display: -webkit-box;
  display: -ms-flexbox;
  display:block;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.div_design001 .div_design001_contents {
  background: #FFF;
  width:100%;
  height: auto;
	min-height:100px;
  margin: 0px;
  display: flex;padding:20px;
}
.div_design001 .div_design001_contents img {
  width: 40%;
  height: 250px;
	object-fit: cover;
}
.div_design001 .div_design001_contents p:nth-of-type(1)  {
  font-size: 1.5rem;font-weight:580;
  width:100%;
  margin: 0 0 20px 20px;
  display: block;
  text-align:left;
}
.div_design001 .div_design001_contents p:nth-of-type(2)  {
  font-size: 1rem;font-weight:580;
  width:100%;
  margin: 0 0 20px 20px;
  display: block;
  text-align:left;
}	
.div_design001 .div_design001_contents .div_side {
box-sizing:border-box;
  width:60%;
  margin: 0;
  padding:20px 0px 20px 0px;
  display: block;
height:auto;background:rgba(255,248,233,1.00);
}
	

	

.div_design001 .div_design001_contents > .acbox{
  width:60%;
  font-size:0px; /* ラベルと開く部分を分離する時は数値を入れる */
  margin:0px auto 30px auto; /* ボックス全体の位置調整 */
}

.div_design001 .div_design001_contents > .acbox label{
  width: 100%;
	margin:0 auto;
  font-size: 1.4rem; /* ラベルの文字サイズ */
  font-weight: bold;
  text-align: center;
  background: #202020; /* ラベルの背景色 */
  position: relative;
  display: block;
  padding:25px;box-sizing: border-box;
  border-radius: 4px; /* ラベルの角の丸み */
  cursor: pointer;
  color: #FFFFFF;
}

.div_design001 .div_design001_contents > .acbox label:hover{
  background: rgba(86,74,58,1.00); /* ラベルにマウスを乗せた時の背景色 */
	color:#FFFFFF;  font-weight: bold;

}

.div_design001 .div_design001_contents > .acbox input{
  display: none;
}

.div_design001 .div_design001_contents > .acbox label:after{
  color: #fff;
  content:"▼"; /* ラベルのアイコン */
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -10px;
}

.div_design001 .div_design001_contents > .acbox input:checked ~ label::after {
  content:"▲"; /* ラベルをクリックした後のアイコン */
}

.div_design001 .div_design001_contents > .acbox div{
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.15s; /* 開閉スピードの設定 */
}

.div_design001 .div_design001_contents > .acbox input:checked ~ div{
  height: auto;box-sizing:border-box;
  padding: 0px; /* 開いた部分の枠内の余白 */
  border-radius: 0px;
  background: #FFFFFF; /* 開いた部分の背景色 */
  opacity: 1;
}

.div_design001 .div_design001_contents > .acbox input:checked ~ label {
  background: #464141; /* クリック後のラベルの背景色 */
}

.div_design001 .div_design001_contents > .acbox > .acbox-under{
	width:100%;
	margin:0 auto;
	line-height:180%;box-sizing: border-box;
  font-size:0.8rem; /* 開いた部分の文字サイズ */
text-align:left;	
  color: #555555; /* 開いた部分の文字色 */
}
	
	
	
	
.div_design002 {
	margin:100px auto;
	width:960px;
	padding:0 0 0 0;
	box-sizing: border-box; 
  display: -webkit-box;
  display: -ms-flexbox;
  display:block;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.div_design002 .div_design002_contents {
  background: #FFF;
  width:100%;
  height: auto;
	min-height:100px;
  margin: 0px;
  display: flex;padding:20px;
}
.div_design002 .div_design002_contents img {
  width: 30%;
  height: 250px;
	object-fit: cover;
}
.div_design002 .div_design002_contents p:nth-of-type(1)  {
  font-size: 1.5rem;font-weight:580;
  width:100%;
  margin: 0 0 20px 20px;
  display: block;
  text-align:left;
}
.div_design002 .div_design002_contents p:nth-of-type(2)  {
  font-size: 1rem;font-weight:580;
  width:100%;
  margin: 0 0 20px 20px;
  display: block;
  text-align:left;
}	
.div_design002 .div_design002_contents .div_side {
box-sizing:border-box;
  width:60%;
  margin: 0;
  padding:20px 0px 20px 0px;
  display: block;
height:auto;background:rgba(255,248,233,1.00);
}
	

	

.div_design002 .div_design002_contents > .acbox{
  width:70%;
  font-size:0px; /* ラベルと開く部分を分離する時は数値を入れる */
  margin:0px auto 30px auto; /* ボックス全体の位置調整 */
}

.div_design002 .div_design002_contents > .acbox label{
  width: 100%;
	margin:0 auto;
  font-size: 1.4rem; /* ラベルの文字サイズ */
  font-weight: bold;
  text-align: center;
  background: #202020; /* ラベルの背景色 */
  position: relative;
  display: block;
  padding:25px;box-sizing: border-box;
  border-radius: 4px; /* ラベルの角の丸み */
  cursor: pointer;
  color: #FFFFFF;
}

.div_design002 .div_design002_contents > .acbox label:hover{
  background: rgba(86,74,58,1.00); /* ラベルにマウスを乗せた時の背景色 */
	color:#FFFFFF;  font-weight: bold;

}

.div_design002 .div_design002_contents > .acbox input{
  display: none;
}

.div_design002 .div_design002_contents > .acbox label:after{
  color: #fff;
  content:"▼"; /* ラベルのアイコン */
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -10px;
}

.div_design002 .div_design002_contents > .acbox input:checked ~ label::after {
  content:"▲"; /* ラベルをクリックした後のアイコン */
}

.div_design002 .div_design002_contents > .acbox div{
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.15s; /* 開閉スピードの設定 */
}

.div_design002 .div_design002_contents > .acbox input:checked ~ div{
  height: auto;box-sizing:border-box;
  padding: 0px; /* 開いた部分の枠内の余白 */
  border-radius: 0px;
  background: #FFFFFF; /* 開いた部分の背景色 */
  opacity: 1;
}

.div_design002 .div_design002_contents > .acbox input:checked ~ label {
  background: #464141; /* クリック後のラベルの背景色 */
}

.div_design002 .div_design002_contents > .acbox > .acbox-under{
	width:100%;
	margin:0 auto;
	line-height:180%;box-sizing: border-box;
  font-size:0.9rem; /* 開いた部分の文字サイズ */
	text-align:left;
	word-wrap: break-word;
	white-space: pre-wrap;	
  color: #555555; /* 開いた部分の文字色 */
}		
.div_design002 .div_design002_contents > .acbox > .acbox-under th{
	width:40%;
}
	
	
.catalog {	 /*コレ*/border-spacing: 10px;
	margin:0px auto 0px auto;
	box-sizing:border-box;
	border:0.5px solid #f2f2f2;
	box-shadow: 0 32px 30px -30px rgba(53, 47, 47, 0.15);
	color:#040000;
	width:100%;
	letter-spacing:0.1rem;
	font-size:95%;
}
.catalog div table{width:100%;border-collapse: separate!important; border-spacing: 0px 5px!important; }	

.catalog  th,
.catalog  td {border-bottom:0.5px solid #F1F1F1;
padding: 20px 0px;vertical-align:middle;
/*border-spacing: inherit 2px;	*/
	line-height:150%;
}
.catalog tr:nth-child(even) {
	background: #FFFFFF;
}

.catalog tr:nth-child(odd) {
	background: rgba(251,251,251,1.00);
}	
.catalog .th-center{text-align:center!important;}	
.catalog td {padding-left:20px;width:80%;border-left:solid 10px rgba(119,105,86,1.00);

background-color: #FFFFFF;
}
.catalog th {font-weight:normal;box-sizing:border-box;
letter-spacing: 0.1rem;width:20%; padding-left:20px;
  border-left:solid 10px #666666;
	color:#040000;
 
}

@media screen and (max-width: 767px) {
.catalog,
.catalog tr,
.catalog td,
.catalog th {display:block;}
.catalog th {width:auto;}
}	
	
	
	
	
	
	
	
.columnButton{display:block; padding:3%; height:auto; width:auto; background:rgba(98,25,26,1.00);}	
	
	
.heading01 {
	position: relative;
	font-size: 250%!important;
	text-align: center;
	box-sizing: border-box;
	margin:20px auto 20px auto;
	letter-spacing:0.5rem;
	color:#4A2828;
}

.heading01::before {
	content: attr(data-number);
	display: block;
	margin-bottom: 100px;
	color: #4A2828;
	font-size: 50%!important;
}

.heading01::after {
	content: '';
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	width: 2px;
	height: 25px;
	background-color: #4A2828;
}
/*topside*/
	
.topside {
	width:100%;
	height:auto;
	padding:0 0 0 0;
	box-sizing:border-box;
	background:rgba(255,255,255,0.0);}
	
.topside > p{color:#555555;
	box-sizing:border-box;
	text-shadow:1px 1px 0 #FFFFFF;
	letter-spacing:0.1em;
	line-height:200%;
	font-size:100%;
	width:80%;
	margin:30px 10%;
	}
.topside > .imgBox{
	width:80%;
	margin:50px 10%;
	}	

.topmain,.topside {
	border-radius: 10px;
}
	

	
		
	
.topside > .sideText{
	font-size:100%;
	padding:2% 2% 2% 20%;
		width:80%;
	margin:0 10% 0 10%;
	box-sizing: border-box;
	letter-spacing:0.1rem;line-height:200%;
	text-align:left;
	word-wrap: break-word;
	white-space: pre-wrap;
	}
	
.topside > .subtextTitle {
/*font-family: zen-antique, sans-serif!important;
font-weight: 400!important;
font-style: normal!important;*/
	box-sizing: border-box;
	position: relative;
	margin:30px auto 30px auto;
	padding:60px 0 60px 100px;
	width:100%!important;
	vertical-align: middle;
	text-align:center;
	border-radius:none!important;
	color: #666666!important;
	border-bottom:1px solid rgba(33,113,188,1.00);
	font-size:190%!important;
	letter-spacing:0.2em;
	text-shadow:none!important;
/*box-shadow: 5px 2px 10px 2px #060606;*/

	}
.topside > .subtextTitle::before {
	margin-right: 20px;
position: absolute;
  top: -10px;
  left: -40px;
	content: url("../img/logo.png");
	transform: scale(0.5);
	color:#19499c;
}
	
	.subtextTitle > .stt_small{font-size:0.5em; margin-left:20px;	color: #4F5052;}
	
	
	
	
.sideTitle{	
	box-sizing: border-box;
	text-align: center;
  position: relative;
	width:100%;
	margin:0 auto;
  padding-left:0;/*アイコン分のスペース*/
  line-height: 1.4;
	color:rgba(50,42,35,1.00);font-weight:600;
}


	
.sideText{
	font-size:90%;
	padding:0;
	box-sizing: border-box;
	letter-spacing:0.0rem;
	height:auto;
	min-height:280px;
	}
	
.subtextTitle {
/*font-family: zen-antique, sans-serif!important;
font-weight: 400!important;
font-style: normal!important;*/
	box-sizing: border-box;
	position: relative;
	margin:30px auto 30px auto;
	padding:20px 0 20px 100px;
	width:100%!important;
	vertical-align: middle;
	color: #19499c!important;
	/*border-radius: 25px 0 0 25px;*/
	/*background: #f7f7f7;*/
	font-size:160%!important;
	letter-spacing:0.2em;
	text-shadow:none!important;
box-shadow: 5px 0px 5px -15px #4a5559;

	}
.subtextTitle::before {
	margin-right: 20px;
position: absolute;
  top: -115px;
  left: -100px;
	content: url(../img/favicon.png);
	transform: scale(0.2);
	color:#19499c;
}
	
.subsideTitle {
/*font-family: zen-antique, sans-serif!important;
font-weight: 400!important;
font-style: normal!important;*/
	box-sizing: border-box;
	position: relative;
	margin:0 auto;
	padding:0px 0 0px 140px;
	width:100%!important;
	vertical-align: middle;
	color: #19499c!important;
	/*border-radius: 25px 0 0 25px;*/
	/*background: #f7f7f7;*/
	font-size:130%!important;
	letter-spacing:0.2em;
	text-shadow:none!important;
box-shadow: 5px 0px 5px -15px #4a5559;

	}
.subsideTitle::before {
	margin-right: 0px;
position: absolute;
  top: 0px;
  left: 100px;
	content: "■";
	transform: scale(1.0);
	color:#19499c;
}	
	

.secondArea{
	margin-top:100px;
	border-top:2px dotted rgba(233,233,233,1.00);
	width:100%;
	height:auto;
	box-sizing: border-box;
	padding:0% 5% 0% 5%; 
	background:rgba(252,252,252,1.00));
	}	
.secondArea > .closeUp{
	font-size:1.3rem;
	/*background: linear-gradient(180deg, rgba(223,208,172,1) 0%, rgba(60,51,8,1)100%);	*/
	  text-decoration: none;
    border-bottom: 3px solid rgba(148,7,9,1.00);
	box-sizing: border-box;
	padding:1rem;
	margin:0 auto;
	width:fit-content!important;
}
	
	
.secondArea > .w_button {
   margin:50px 30%!important;
	width:40%!important;
	background-color:#A60E10;
}
	
.firstArea{
	margin-top:100px;
	border-top:2px dotted rgba(233,233,233,1.00);
	width:100%;
	height:auto;
	box-sizing: border-box;
	padding:0% 5% 5% 5%; 
	background:rgba(251,251,251,1.00);
	}		
	
.contentsbox {
    width: 80%;
	height:auto; 
	min-height:100vh;
    margin: 0 10%;  
	background:transparent;
	/* background:url("../img/bg_001.png")center center no-repeat;object-fit: cover; /* この一行を追加するだけ！ */
	position: relative;
	background-size: cover;
	box-sizing:border-box;
	}
.contents {
  position: relative;
  overflow: hidden;
  margin: 0;
  padding: 0;
	height:auto;width:100%;box-sizing:border-box;
}
.contents_inner {
	box-sizing: border-box;
	width:100%;
	min-width: 1080px;
	height:auto;min-height:100vh;
	margin: 0 auto;
	padding:0;
	/*background:rgba(255,255,255,0.0);*/
	text-align:left;
	/*box-shadow: 0px 0px 16px -6px rgba(0,0,0,0.6);*/
}
.contents_inner p{
	color:#607774;
	line-height:160%;
	text-align:left;
}	
.contentsImg {
	position: relative;
	overflow: hidden;
	margin: 0;
	padding: 80px 0;
}
.contentsImg:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 120%;
	height: 80%;
	margin: 3% -10% 0;
	background:url("../img/sample_011.jpg") center center no-repeat;
	-webkit-transform-origin: left center;
	-ms-transform-origin: left center;
	transform-origin: left center;
	-webkit-transform: rotate(3deg);
	-ms-transform: rotate(3deg);
	transform: rotate(3deg);
	z-index: -1;
}
.contentsImg_inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1000px;
  height: 100%;
  margin: 0 auto;
  padding: 100px 10px 120px;
  text-align: center;
}	
	
.object {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 30px auto 0;
  overflow: hidden;
  border-radius: 0;
  transform: skew(-20deg);
}
.object img{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 500px;
    transform: translate(-50%, -50%) skew(20deg);
  }
	
	
.maintextTitle {
	text-align:center!important;
	margin:0px auto 10px auto!important;
  position: relative;
	font-size:1.0rem;
	width:100%;
	height:auto;
	box-sizing:border-box;
	letter-spacing:0.2rem;
  padding: 2.0rem 0;  
	text-decoration: none;
	/*background:url("../img/logo.png") center center no-repeat;*/
	object-fit:cover;
/*background-image:url(../img/titlebg_001.jpg);  
	background-image:center center no-repeat;
	background-size:contain;
	object-fit: cover;*/	/*object-fit: cover; /* この一行を追加するだけ！ */
	z-index:2;  
}
	



.mt_under{text-align:center; box-sizing: border-box; margin:0 auto;font-size:80%!important;}
	
	
	
.maintextTitle:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -40px;
  border: 40px solid transparent;
  border-top: 40px solid #582021;
}
.maintextTitle:after {
  content: "";
  display: block;
display:none;	
  height: 3px;
	margin-top:10px;
	background:#FFFFFF;  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
  /*background: -webkit-linear-gradient(to right, rgb(230, 200, 200), transparent);*/
  /*background: linear-gradient(to right, rgb(58,88, 133), transparent);*/
}	
	
.newsWrapper{position:absolute;
	bottom:15px;
	left:20%;
	box-sizing:border-box;
	margin:0px auto 0px auto;
	padding:0;
	width:60%;
	height:auto;
	z-index: 9999!important;
	/*min-width:1080px;
	max-width:1180px;*/
	background:#FFFFFF;
	/*background:rgba(255, 255, 255, 0.45);*/
	} 	

	.news-title {
	text-align:left;
	margin:0px auto 10px 30px!important;
  position: relative;
	font-size:1.5rem;
		font-weight:bold;
	width:100%;
	height:auto;
	box-sizing:border-box;
	letter-spacing:0.2rem;
  padding: 1.7rem 0;  
	text-decoration: none;
	/*background:url("../img/logo.png") center center no-repeat;*/
	object-fit:cover;
/*background-image:url(../img/titlebg_001.jpg);  
	background-image:center center no-repeat;
	background-size:contain;
	object-fit: cover;*/	/*object-fit: cover; /* この一行を追加するだけ！ */
	z-index:2; 
		color:#111111;
}

.mt_under{text-align:center; box-sizing: border-box; margin:0 auto;font-size:80%!important;}
	
	
	
.news-title:before {
  content: "▶";
  position: absolute;
	font-size:130%;
  top:30%;
  left:60px;
  margin-left: 30px;
  /*border: 30px solid transparent;*/
  /*border-top: 30px solid #111111;*/
}
.news-title:after {
  content: "";
  display: block;
display:none;	
  height: 3px;
	margin-top:10px;
	background:#FFFFFF;  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
  /*background: -webkit-linear-gradient(to right, rgb(230, 200, 200), transparent);*/
  /*background: linear-gradient(to right, rgb(58,88, 133), transparent);*/
}	
	
.news-list{font-size:0.8rem;
  list-style: none outside;
  margin: 10px auto 10px auto;
  padding: 0;
	height:auto;
	min-height:auto;
}
.news-list .item a{
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #CCC;
  padding: 20px 20px;
}
.news-list .item:first-child a{
  border-top: 1px solid #CCC;
}
.news-list .item .date{
  margin: 0;
  min-width: 140px;
  font-size: 16px;
  color: #999;
  padding: 0 20px 0 0;
}
.news-list .item .category{
  margin: 0;
  min-width: 140px;
  padding: 0 20px 0 0;
}
.news-list .item .category span{
  background:rgba(118,39,40,1.00);
  color: #FFF;
  text-align: center;
  display: inline-block;
  padding: 5px 20px;
  font-size: 12px;
  line-height: 1;
}
.news-list .item .title{
  margin: 0;
  width: 100%;
}
.news-list .item a:hover .title{
  color: #582021;
}

@media screen and (max-width: 767px){
.news-list .item a{
  flex-wrap: wrap;
}
.news-list .item .date{
  min-width: 100px;
}
.news-list .item .title{
  margin-top: 10px;
}
}
	


.callNumberimg{
	position:absolute; 
	top:50px; 
	right:20px; 
	height:auto;
	width:auto; 
	}
.infoImg {
  position: relative;
  width:100%;
	height:500px;
	margin:0px auto;
	padding:0;
  box-sizing: border-box;
}
.infoImg img {
	width:100%;height:auto;margin:0;padding:0;object-fit: cover; /* この一行を追加するだけ！ */	}
	
	
/*flexbox*/	
	
@media ( min-width : 801px ){
	
.columnCase{background:rgba(67,64,59,1.00);
		width:100%;
		height:auto;
		margin:0px auto; 
		padding:10%; 
		box-sizing:border-box;
		position:relative;
	}	
	
	
.kaisha {	
	margin:30px 25% 100px 25%;
	box-sizing:border-box;
	border:0.5px solid #f2f2f2;
	box-shadow: 0 32px 30px -30px rgba(53, 47, 47, 0.15);
	color:#040000;
	width:50%;
	letter-spacing:0.1rem;
	font-size:0.9rem;
	min-width:600px;
}
div table{width:60%; margin:0 20%;}	

.kaisha th,
.kaisha td {border-bottom:0.5px solid #F1F1F1;
padding: 30px 25px;vertical-align:middle;
border-spacing: inherit 2px;	
	line-height:150%;
}
.kaisha tr:nth-child(even) {
	background: #FFFFFF;
}

.kaisha tr:nth-child(odd) {
	background: rgba(251,251,251,1.00);
}	
.th-center{text-align:center!important;}	
.kaisha td {  text-align:left!important;border-left:solid 5px rgba(50,42,35,1.00);

background-color: #FFFFFF;
}
.kaisha th {font-weight:normal;box-sizing:border-box;
letter-spacing: 0.1rem;padding-left:20px;
  border-left:solid 10px rgba(50,42,35,1.00);
	color:#040000;
 
}

@media screen and (max-width: 800px) {
.kaisha,
.kaisha tr,
.kaisha td,
.kaisha th {display:block;}
.kaisha th {width:auto;}
}	
	
	
.textArea{
	box-sizing:border-box;
	position:relative;
	text-align:center;
	width:100%;
	min-width:1080px;
	height:auto;
	margin:0 auto;
background:transparent;
	padding-bottom:0px;
	overflow:hidden;
	}
.textArea p{line-height:130%!important;}	
.textAreacompany{
	position:relative;
	text-align:center;
	width:100%;
	height:auto;
	margin:10px auto;
	padding:20px;
	line-height:2.0rem;
	font-size:110%;
	letter-spacing:0.5px;
	overflow:hidden;
		color:#676767;
	}
.textAreacompany p{
margin:20px auto;
	}	
/*----form area----*/	

	
.contacttextTitle{
	margin:0 0 40px 0;
	color:#FFFFFF!important;
	text-align:center!important;
	font-size:120%!important;
	width:100%;
	min-width:100%;
	height:auto;
	box-sizing:border-box;
	letter-spacing:0.3rem;
	border-bottom:5px solid #FFFFFF;
	text-shadow:1px 1px 3px #666666;
	-webkit-text-shadow:1px 1px 3px #666666;
  padding: 1em 0em;
  text-decoration: none;
	
}
	
#contact {
	margin:20px auto;
	box-sizing: border-box;
  width: 70%;
  height: auto;
  background-color: #FFFFFF;
	color:#4F4F4F;
}	
	
.contactimgBoximg{
width:100%; 
  height:auto;
	}	
	
.contactimgBox img{
height: 50vh;width:100%;
  object-fit: cover;	/*object-fit: cover; /* この一行を追加するだけ！ */
	}	

.section-header {
  text-align: center;
  margin: 0 auto;
  padding-top: 0px;
  margin-bottom: 0px;
  font: 300 60px 'Oswald', sans-serif;
  letter-spacing: 6px;
  color: #fff;  background-color: #000;
}
	
/* Contact Page */
	.form-group{/*display:flex;justify-content: space-between;*/margin:20px auto!important;}
.form-control, textarea {box-sizing: border-box;
	
	margin:20px 0;
	padding:5%;
	width:55%;
	line-height:3rem;
  background-color:#FBFBFB;
  color: #5E6166;
  letter-spacing:0.1rem;border:none;vertical-align: middle;
}
.form-control:focus {
	border-color: #aadbe8;
	outline: 0;
	-webkit-box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.4);
	box-shadow: inset 0 0px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.4);
  background-color:#fff;
}
	
p.error, span.error {
  color: red;
}	
input.form-control{  background-color:#FBFBFB; height:50px!important;padding:5% auto!important;}	
.send-button {
  margin-top: 15px;
  height: 40px;
  width: 400px;
  overflow: hidden;
  transition: all .2s ease-in-out;
}

.button {
  width: 400px;
  height: 40px;
  transition: all .2s ease-in-out;
}

	
.btn-primary{
	padding:10px; 
	border-radius:10%;
	background:rgba(81,60,37,1.00);color:#FFFFFF;}
	
.send-text {
  display: block;
	text-align:center;
  margin-top: 20px;
  font: 300 14px 'Lato', sans-serif;
  letter-spacing: 2px;
}

.button:hover {
  transform: translate3d(0px, -29px, 0px);
}

/* Begin Right Contact Page */
.direct-contact-container {
	width:60%;margin:0 auto;

	min-width:800px;
box-sizing:border-box;
}

/* Location, Phone, Email Section */
.contact-list {
  list-style-type: none;
  margin-left: -30px;
  padding-right: 20px;
}

.list-item {
  line-height: 4;
  color: #aaa;
}

.contact-text {
  font: 300 18px 'Lato', sans-serif;
  letter-spacing: 1.9px;
  color: #bbb;
}

.place {
  margin-left: 62px;
}

.phone {
  margin-left: 56px;
}

.gmail {
  margin-left: 53px;
}

.contact-text a {
  color: #bbb;
  text-decoration: none;
  transition-duration: 0.2s;
}

.contact-text a:hover {
  color: #fff;
  text-decoration: none;
}
/*---form----*/	
	
input.form-control{height:30px; padding:0 auto; margin:0;}
div.form-group{margin:0; padding:0;}	
form.main_contact{padding:0;}
div.container{margin-bottom:0!important;padding-bottom:0!important;}
	
.error{
	margin:15px 0;
	}
#main_contact{
	padding:20px;
	}
.form-group{
	margin:15px auto;
	text-align:right;
	}
/*---------------------------------
アコーディオンボックス
--------------------------------*/
.acbox{
  width:80%;
  font-size:0px; /* ラベルと開く部分を分離する時は数値を入れる */
  margin:0px auto 30px auto; /* ボックス全体の位置調整 */
}

.acbox label{
  width: 80%;
	margin:0 auto;
  font-size: 18px; /* ラベルの文字サイズ */
  font-weight: bold;
  text-align: center;
  background: #202020; /* ラベルの背景色 */
  position: relative;
  display: block;
  padding:25px;
  border-radius: 4px; /* ラベルの角の丸み */
  cursor: pointer;
  color: #FFFFFF;
}

.acbox label:hover{
  background: rgba(81,60,37,1.00); /* ラベルにマウスを乗せた時の背景色 */
	color:#FFFFFF;  font-weight: bold;

}

.acbox input{
  display: none;
}

.acbox label:after{
  color: #fff;
  content:"▼"; /* ラベルのアイコン */
  position: absolute;
  top: 50%;
  right: 25px;
  margin-top: -10px;
}

.acbox input:checked ~ label::after {
  content:"▲"; /* ラベルをクリックした後のアイコン */
}

.acbox div{
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.15s; /* 開閉スピードの設定 */
}

.acbox input:checked ~ div{
  height: auto;
  padding: 30px; /* 開いた部分の枠内の余白 */
  border-radius: 0px;
  background: #F3F4F5; /* 開いた部分の背景色 */
  opacity: 1;
}

.acbox input:checked ~ label {
  background: #464141; /* クリック後のラベルの背景色 */
}

.acbox-under{width:80%;margin:0 auto;
	line-height:180%;
  font-size: 16px; /* 開いた部分の文字サイズ */
text-align:left;	
  color: #555555; /* 開いた部分の文字色 */
}
	
.contactStyling	{padding-bottom:0px;}
	


}