@charset "UTF-8";

.pcShow {
	display: block;
}

.pc_inl_Show {
	display: inline;
}

.spnShow {
	display: none;
}

.spn_inl_Show {
	display: none;
}

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

	.spn_inl_Show {
		display: inline;
	}

}

body {
	position: relative;
	line-height: 1.4;
}

.wrapper {
	position: relative;
	width: 100%;
	height: 100%;
	background: #fff;
	-webkit-transition: all .5s ease;
	transition: all .5s ease;
	z-index: 2;
}

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

#contents .breadcrumb {
	padding: 20px;
	max-width: 1080px;
	margin: 0 auto;
}

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

.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;
}

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

#snsIcon {
	width: 210px;
	margin: 50px auto 0px;
	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;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

footer {
	background: #fff;
	border-top: solid 1px #b5b4b4;
	padding: 30px 0 10px;
	margin-top: 30px;

}

#footWap {
	max-width: 1080px;
	margin: 0px 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;
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-justify-content: space-between;
	-o-justify-content: space-between;
	justify-content: space-between;
}

#footinfo{
	display: table;
}

#footLogoWap {
	display: table-cell;
	vertical-align: middle;
}

#footTxtWap {
	display: table-cell;
	font-size: 12px;
	vertical-align: middle;
	padding-left: 20px;
}

#footWap  > address {
	display: block;
	color: #000;
	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,
.side-open .side-menu {
	z-index: 10000;
}

.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;
}

/* サイドメニューオープン */
.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;
}

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

#fixPagetop:hover {
	opacity: 0.9;
}


/*可変テキスト*/

.text_ss{
	/*Current root font-size: 12px - Viewport width: 1000px*/
	/*Current root font-size: 16px - Viewport width: 1600px*/
	font-size: calc(0.75rem + ((1vw - 10px) * 0.6667));
}

.text_s {
	font-size: 14px;
}
/* 14px @ 1000px increasing to 17px @ 1600px */
@media (min-width: 1000px) {
  .text_s {
    font-size: calc(0.875rem + ((1vw - 10px) * 0.5));
    /* Where: * 0.5 = 100 * font_Size_Difference / viewport_Width_Difference */
  }
}
/* Prevent font scaling beyond this breakpoint */
@media (min-width: 1600px) {
  .text_s {
    font-size: 17px;
  }
}

.text_m{
	font-size: calc(0.75rem + ((1vw - 0px) * 0.6));
}

.text_l {
	 font-size: calc(1.125rem + ((1vw - 0px) * 1.1));
}

.text_xl {
	font-size: calc(1.875rem + ((1vw - 0px) * 1.5));
}

.text_xxl {
	font-size: calc(2rem + ((1vw - 0px) * 2.8));
}

.breadcrumb {
	position: relative;
}
/*＝＝＝＝＝＝＝＝＝＝＝セカンドメイン*/

/*＝＝＝＝＝＝＝＝セカンドメイン*/
#secTop {
	min-width: 1000px;
	width: 100vw;
	height: 100vh;
	background: url(../img/main/top_main.jpg) no-repeat;/*各ページcssで画像を上書きすること*/
	background-size: cover;
	background-position: center;
	position: relative;
}

/*＝＝＝＝ページ名*/
.secTitle{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
}

.secTitle 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;
}

#startborder h1{
	opacity: 1;
	transform: translate(0,-40px); 
	-webkit-transform: translate(0,-40px); 
}

/* Effect1
 *************************************** */
/* 擬似要素の共通スタイル */
.anime_border::after,
.anime_border::before,
.anime_border_inner::after,
.anime_border_inner::before {
  background-color: #fff;
  content: '';
  display: block;
  position: absolute;
  z-index: 10;
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
}

/* 左上へ配置 */
.anime_border::after {
    height: 1px;
    left: -1px;
    top: -1px;
    width: 0px;
}
/* 右下へ配置 */
.anime_border::before {
  bottom: -1px;
  height: 1px;
  right: -1px;
  width: 0px;
}
/* 左下へ配置 */
.anime_border_inner::after {
  bottom: -1px;
  height: 0px;
  left: -1px;
  width: 1px;
}
/* 右下へ配置 */
.anime_border_inner::before {
  height: 0px;
  right: -1px;
  top: -1px;
  width: 1px;
}

/* isInView */
#startborder .anime_border::after,
#startborder .anime_border::before {
  width: 100%;
  width: calc(100% + 1px);
}
#startborder .anime_border_inner::after,
#startborder .anime_border_inner::before {
  height: 100%;
  height: calc(100% + 1px);
}
/* *************************************** */

/*＝＝＝＝＝＝＝＝セカンボディの斜め■*/

/*#contents::before {
	content: "";
    position: absolute;
   z-index: -1;
	top: 680px;
    left: -10%;
    width: 50vw;
    height: 70vh;
    background-color: rgba(220,220,220,0.3);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}*/

.skewBox {
	min-height: 400px;
	position: relative;
	padding: 0px 0px 40px;
	color: #000;
	width: 100vw;
}

.skewBox:before{
	content: "";
	width: 200%;
	height: 20%;
	padding: 100px 300px;
	background: rgba(43,54,66,0.3);
	position: absolute;
	top: 700px;
	left: -100px;
	/*z-index: -1;*/
	transform: rotate(-45deg) skew(0deg);
	-webkit-transform: rotate(-45deg) skew(0deg);
}

.skewBoxBody{
	box-sizing: border-box;
	max-width: 1080px;
	padding: 40px 0px;
	/*padding-left: 130px;*/
	margin: 0px auto;
	line-height: 1.5;
}

.skewBoxBody:before {
	content: "";
    position: absolute;
    /*z-index: -10;*/
	top: 380px;
    left: 35%;

    width: 30vw;
    height: 50vh;
    background-color: rgba(182,182,182,0.9);
    opacity: 0.3;
/*    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;*/
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}



.mb5 {margin-bottom: 5px;}
.mb10 {margin-bottom: 10px;}
.mb15 {margin-bottom: 15px;}
.mb20 {margin-bottom: 20px;}
.mb25 {margin-bottom: 25px;}
.mb30 {margin-bottom: 30px;}
.mb35 {margin-bottom: 35px;}
.mb40 {margin-bottom: 40px;}
.mb45 {margin-bottom: 45px;}
.mb50 {margin-bottom: 40px;}
.mb55 {margin-bottom: 55px;}
.mb60 {margin-bottom: 60px;}

.mr10 {margin-right: 10px;}

.fs12{font-size: 12px}
.fs14{font-size: 14px}
.fs16{font-size: 16px}
.fs18{font-size: 18px}
.fs20{font-size: 20px}
.fs22{font-size: 22px}
.fs24{font-size: 24px}
.fs26{font-size: 26px}
.fs28{font-size: 28px}
.fs30{font-size: 30px}

.pt10 {padding-top: 10px!important;}
.pt20 {padding-top: 20px!important;}
.pt30 {padding-top: 30px!important;}
.pt40 {padding-top: 40px!important;}


/*汎用クラス*/
.alignC {
	text-align: center;
}








