@charset "UTF-8";

.pcShow {
	display: block;
}

.pc_inl_Show {
	display: inline;
}

.spnShow {
	display: none;
}

.spn_inl_Show {
	display: none;
}


body {
	background-color: #f6f6f6;
	position: relative;
	line-height: 1.5;
}

#contents {
	/*width: 100vw;*/
	overflow: hidden;
}

/*＝＝＝＝パンくず*/
#contents .breadcrumb {
	padding: 20px;
	max-width: 1080px;
	margin: 0 auto;
}

#contents .textSection {
	margin-bottom: 100px;
}

#contents .textSection .title {
	max-width: 1080px;
	margin: 30px auto;
	display: box;
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	-webkit-flex-direction: row;
	-moz-flex-direction: row;
	-ms-flex-direction: row;
	-o-flex-direction: row;
	flex-direction: row;
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	-o-flex-wrap: wrap;
	flex-wrap: wrap;
}

/*サイドh2*/
#contents .textSection .title h2{
	/*width: 58px;*/
	min-height: 300px;
	background: #dd0202;
	color: #fff;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	line-height: 58px;
	padding-top: 20px;
	font-size: 18px;
	font-weight: normal;
	margin-bottom: 50px;
	position: relative;
}

/*サイドh2下の▶*/
#contents .textSection .title h2:after{
	content: "";
	width: 0;
	display: block;
	border-right: 58px solid transparent;
	border-top: 58px solid #dd0202;
	position: absolute;
	bottom: -58px;
	left: 0px;
}

#contents .textSection .title h3{
	width: 240px;
	background: #eaeaea;
	height: 75px;
	line-height: 75px;
	text-align: center;
	margin-top: 60px;
	font-weight: normal;
	position: relative;
}

#contents .textSection .title h3:after{
	content: "";
	display: block;
	width: 260px;
	height: 75px;
	background: #dd0202;
	position: absolute;
	top: -10px;
	right: -10px;
	opacity: 0.5;
	z-index: -1;
}

#contents .textSection .text {
	/*color: #fff;*/
	position: relative;
	padding: 40px 0;
	color: #fff;
	width: 100vw;
	margin-top: -320px;
}


#contents .textSection .text:after{
	content: "";
	width: 100%;
	height: 80%;
	padding: 80px 500px 55px;
	background: #2b3642;
	position: absolute;
	top: -40px;
	left: -500px;
	z-index: -10;
	transform: rotate(-10deg) skew(0deg);
	-webkit-transform: rotate(-10deg) skew(0deg);
}

#contents .textSection .textBody{
	box-sizing: border-box;
	max-width: 1080px;
	padding: 40px 0;
	padding-left: 130px;
	margin: 0 auto;
	line-height: 1.5;
}





@media handheld, only screen and (max-width: 1080px) {
	#contents .textSection .textBody{
		padding-right: 10px;
	}
}

#contents .textSection .textBody p{
	margin-bottom: 40px;
}


/*ページネーション*/

.pagenation {
	margin: 20px 0;
	position: relative;
	overflow: hidden;
}
.pagenation ul {
	position:relative;
	left:50%;
	float:left;
	list-style: none;
}
.pagenation li {
	position:relative;
	left:-50%;
	float:left;
}
.pagenation li a {
	margin: 0 3px;
	padding:3px 7px;
	display: block;
	text-decoration:none;
	color: #fff;
	background: #ccc;
	line-height: 20px;
	width: 20px;
	text-align: center;
	border-radius: 50%;
	font-size: 12px;
}

.pagenation .next a,
.pagenation .prev a {
	color: #ccc;
	background: none;
	font-size: 20px;
}

.pagenation li.current a{
	background: #dd0202;
}

.pagenation li a:hover {
	opacity: 0.8;
}


footer {
	background: #000;
	padding: 30px 0;
	margin-top: 50px;
}

footer > address {
	display: block;
	margin: 0 auto;

	max-width: 1080px;
	color: #fff;
	text-decoration: none;
	font-style: normal;
	font-size: 12px;
	text-align: right;
}


/* サイドオープン時にメインコンテンツを覆う部分 */
.overlay {
	content: '';
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0);
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	z-index: 3;
}
.overlay::after {
	content: "";
	visibility: hidden;
	position: fixed;
	top: 40%;
	left: 0;
	display: block;
	width: 100%;
	height: 50px;
	color: rgba(255,255,255,0);
	font-size: 40px;
	font-weight: bold;
	text-align: center;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
}
.side-open .overlay {
	visibility: visible;
	cursor: pointer;
	background: rgba(0,0,0,.7);
}
.side-open .overlay::after {
	visibility: visible;
	color: rgba(255,255,255,.8);
}

/* サイドメニュー ※リストのスタイルは省略 */
.side-menu {
	position: fixed;
	box-sizing: border-box;
	top: 0;
	right: 0;
	width: 300px;
	height: 100vh;
	padding-top: 80px;
	text-align: left;
	font-size: 13px;
	background: #fff;
	z-index: 1;
	overflow-y: scroll;
}

.side-open .side-menu-btn > .text:after{
	content: "CLOSE";
}

.side-menu-btn > .text:after{
	content: "MENU";
}

.side-menu-btn {
	position: fixed;
	top: 0;
	right: 0;
	width: 60px;
	height: 60px;
	padding: 5px;
	background: #000;
	color: #fff;
	cursor: pointer;
	z-index: 4;
	text-align: center;
	font-size: 12px;
}

/* メインコンテンツ */
.wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	background: #F8F8F8;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	z-index: 2;
}

/* サイドメニューオープン */
.side-open .wrapper,
.side-open .overlay {
	-webkit-transform: translate3d(-300px, 0, 0);
	transform: translate3d(-300px, 0, 0);
}

.ellipsis-v{
	position: relative;
	display: block;
	cursor: pointer;
	width: 40px;
	height: 30px;
	margin: 5px auto;
}

.side-open .ellipsis-v{
	width: 30px;
}

.ellipsis-v .point {
	position: absolute;
	left: 0;
	right: 0;
	display: block;
	width: 40px;
	height: 2px;
	margin: auto;
	background: #fff;
	box-shadow: 0 0 8px 0 #161616;
	-webkit-transition: all .3s;
	transition: all .3s;
}

.ellipsis-v .point.top {
	top: 0;
}

.ellipsis-v .point.mid {
	top: 0;
	bottom: 0;
}

.ellipsis-v .point.bot {
	bottom: 0;
}

.side-menu-btn:hover .top {
	-webkit-transform: translateY(-2px);
	-ms-transform: translateY(-2px);
	transform: translateY(-2px);
}

.side-menu-btn:hover .bot {
	-webkit-transform: translateY(2px);
	-ms-transform: translateY(2px);
	transform: translateY(2px);
}

.side-open .side-menu-btn:hover .top,
.side-open .top {
	width: 42px;
	height: 1px;
	background: #fff;
	-webkit-transform-origin: left top;
	-ms-transform-origin: left top;
	transform-origin: left top;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.side-open .mid {
	opacity: 0;
}

.side-open .side-menu-btn:hover .bot,
.side-open .bot {
	width: 42px;
	height: 1px;
	background: #fff;
	-webkit-transform-origin: left bottom;
	-ms-transform-origin: left bottom;
	transform-origin: left bottom;
	-webkit-transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.side-open .side-menu-btn:hover .bot,
.side-open .side-menu-btn:hover .top {
	background: #ccc;
}

/*Gナビ */
.Gnavi {
	margin-bottom: 40px;
}

.navi_UL li {
	height: 50px;
	padding: 0px 0px 0px 6px;
	background: url("../img/common/side_navi/navi_arrow.png") right 7px center no-repeat;
	border-bottom: dotted 1px #aaa9a9;
}

.navi_UL li a{
	display: block;
	height: 50px;
	/*background-color: #ccc;*/
	line-height: 50px;
	font-size: 14px;
	color: #3d3c3c;
}

.navi_UL li a img{
	vertical-align: middle;
	margin-right: 5px;
}


/*＝＝＝＝＝＝＝＝＝＝ホバーアニメーション*/
/* Buzz Out */
@-webkit-keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

@keyframes hvr-buzz-out {
  10% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  20% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  30% {
    -webkit-transform: translateX(3px) rotate(2deg);
    transform: translateX(3px) rotate(2deg);
  }

  40% {
    -webkit-transform: translateX(-3px) rotate(-2deg);
    transform: translateX(-3px) rotate(-2deg);
  }

  50% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  60% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  70% {
    -webkit-transform: translateX(2px) rotate(1deg);
    transform: translateX(2px) rotate(1deg);
  }

  80% {
    -webkit-transform: translateX(-2px) rotate(-1deg);
    transform: translateX(-2px) rotate(-1deg);
  }

  90% {
    -webkit-transform: translateX(1px) rotate(0);
    transform: translateX(1px) rotate(0);
  }

  100% {
    -webkit-transform: translateX(-1px) rotate(0);
    transform: translateX(-1px) rotate(0);
  }
}

.hvr-buzz-out {
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
}
.hvr-buzz-out:hover, .hvr-buzz-out:focus, .hvr-buzz-out:active {
  -webkit-animation-name: hvr-buzz-out;
  animation-name: hvr-buzz-out;
  -webkit-animation-duration: 0.75s;
  animation-duration: 0.75s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝ページトップ*/
#fixPagetop {
	width: 22px;
	height: 88px;
	position: fixed;
	right: 0;
	bottom: 30px;
	z-index: 100;
	display: none;
	cursor: pointer;
}

#fixPagetop:hover {
	opacity: 0.9;
}

/* メインコンテンツ内のスタイル ※デザインに併せて適当に */
/*
.header {
	padding: 100px 0;
	background: #161616;
	color: #fff;
}
.header h1,
.contents h1 {
	margin-bottom: 30px;
	font-size: 20px;
}
.contents {
	width: 100%;
	padding: 150px 0;
	background: #f5f5f5;
}
.contents p {
	margin-bottom: 50px;
}
.footer {
	padding: 150px 0;
	background: #fff;
}
*/


/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝フッター*/

footer {
	width: 100%;
	padding-top: 10px;
	height: auto;
	background-color: #000;
	color: #fff;
}

footer a{
	color: #fff;
}


.footWap {
	max-width: 1200px;
	margin: 0px auto;
	font-size: 13px;
}


.footnavi {
	width: 150px;
	margin-left: 10px;
	float: left;
	line-height: 2;
}

.footnavi a:hover {
	text-decoration: underline;
}

.footSNS {
	display: none;
}


.footInfo {
	float: right;
	max-width: 250px;
}

.fooflogo {
	display: block;
	width: 234px;
}

.footpostal,
.footadd,
.footTel,
.footFax {
	padding-left: 15px;
}

.footadd {
	margin-bottom: 20px;
}

.footTel,
.footFax {
	font-size: 18px;
	font-weight: bold;
}

.footTel a{
	cursor: default;
}

footer address {
	color: #fff;
	font-size: 13px;
	text-align: center;
	font-style: normal;
	padding: 10px 0px;
}

/* セカンド *************************************** */
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝メイン*/

#secTop {
	width: 100vw;
	height: 50vh;
	background-size: cover;
	background-position: center;
	position: relative;
}

#secTop > .topTitle{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}

#secTop > .topTitle h1{
	color: #fff;
	font-size: 4vw;
	font-weight: 100;
	padding: 40px;
	transition: all .3s ease;
	-webkit-transition: all .3s ease;
	opacity: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-o-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

#secTop > #startborder h1{
	opacity: 1;
	transform: translate(0,-40px); 
	-webkit-transform: translate(0,-40px); 
	/*background-color: rgba(255,255,255,0.7);*/
}

/* Effect1
 *************************************** */
/* 擬似要素の共通スタイル */
.change-border01::after,
.change-border01::before,
.change-border01__inner::after,
.change-border01__inner::before {
  background-color: #fff;
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
}
/* 左上へ配置 */
.change-border01::after {
    height: 1px;
    left: -1px;
    top: -1px;
    width: 0px;
}
/* 右下へ配置 */
.change-border01::before {
  bottom: -1px;
  height: 1px;
  right: -1px;
  width: 0px;
}
/* 左下へ配置 */
.change-border01__inner::after {
  bottom: -1px;
  height: 0px;
  left: -1px;
  width: 1px;
}
/* 右下へ配置 */
.change-border01__inner::before {
  height: 0px;
  right: -1px;
  top: -1px;
  width: 1px;
}

/* isInView */
#startborder .change-border01::after,
#startborder .change-border01::before {
  width: 100%;
  width: calc(100% + 1px);
}
#startborder .change-border01 .change-border01__inner::after,
#startborder .change-border01 .change-border01__inner::before {
  height: 100%;
  height: calc(100% + 1px);
}
/* *************************************** */

#secTop > .scrollBt {
	text-align: center;
	position: absolute;
	bottom: 30px;
	width: 100vw;
}

#secTop > .scrollBt:hover {
	opacity: 0.8;
}





@media handheld, only screen and (max-width: 767px) {
	.pcShow {
		display: none;
	}
	.pc_inl_Show {
		display: none;
	}
	.spnShow {
		display: block;
	}

	.spn_inl_Show {
		display: inline;
	}
	
	#secTop > .topTitle h1{
		padding: 40px 20px;
	}


	#contents .textSection .title > h2{
		display: none;
	}

	#contents .textSection .text {
		margin-top: -40px;
		padding: 20px;
		box-sizing: border-box;
	}

	#contents .textSection .textBody {
		padding:10px;
		box-sizing: border-box;
		width: auto;
	}

	#contents .textSection .text:after {
		top: -10px;
		padding-bottom: 100px;
	}

	.footnavi {
		width: 100%;
		margin-left: 0px;
		float: none;
		line-height: 2;
		text-align: center;
	}

	.footInfo {
		float: none;
		margin: 0px auto;
		max-width: 250px;
	}

footer {

	margin-top: 0px;
}



	footer > address {
		font-size: 10px;
		text-align: center;
		padding: 5px;
	}


	#secTop {
		width: 100vw;
		height: 100vh;
		background-size: cover;
		background-position: center;
		position: relative;
	}

	#secTop > .topTitle h1{
		font-size: 5vw;
		width: 80vw;
		text-align: center;
	}


	
}



