/* ----------------------------------------------------
PC表示の時、横のはみ出しを非表示にする
---------------------------------------------------*/
@media only screen and (min-width:800px){
    article {
  overflow-x: hidden;
}

}

section {
  position: relative;
}
#wrapper_index {
  margin: 0;
	overflow-x: hidden;
	width: 100%;
}

.bg-slider {
	width: 100%;
	height: 88vh;
	background-position:center center;
	background-size: cover;
	align-items: center;
	justify-content: center;
}

.bg-slider-title{
	color: #fff;
	font-size: 48px;
	line-height: 1.5;
	text-align:center;
	text-shadow: 1px 2px 12px #666;
}
.lux_logo{
  position: absolute;
  top: 100px;
  right: 0px;
  left: 0px;
  margin: auto;
	width: 130px;
	height: auto;
}

a:link.pagebacklink,
a:visited.pagebacklink,
a:hover.pagebacklink,
a:active.pagebacklink {
  margin: 0;
  padding: 0;
  font-weight: bold;
  text-decoration: none;
  color: #555;
}


pre {
	background: #555;
	border: solid 8px #aaa;
	color: #eee;
	margin-bottom: 90px;
	width: 100%;
	box-sizing: border-box;
	overflow: auto;
	border-radius: 0;
}
.parallax {
  width: 100%;
	max-height: 600px;
	min-height: 600px;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;	
	text-align: center;
	padding: 60px;
}
/*----スマホ表示の時、パパラックス画像高さ低く----*/
@media only screen and (max-width:500px){
.parallax {
	max-height: 400px;
	min-height: 400px;
}
.bg-slider{
	height: 75vh;
	}
.text01{
	font-size: 14px;
	line-height: 28px;
	}
}
.content {
  width: 90%;
	  margin: 0 auto;
	background-color: #fff;
	text-align: center;
}
/*----PC・タブレット表示の時余白を多め----*/
@media only screen and (min-width:500px){
.content {
	padding: 10px;
}
}
/*----幅が狭くなった時に説明文改行なくす----*/
@media only screen and (max-width:760px){
.text01 br{
	display: none;
	}
.text01{
	text-align: left;
	}
.text02{
	font-size: 14px;
	text-align: left;
	}
}
/*----スマホメニューindexのみ三の色変更----*/
.MenuIcon_index {
  cursor: pointer;
  display: block;
  height: 30px;
  position: absolute;
  top:10px; 
  width: 30px;
  z-index: 2;
}
.MenuIcon_index::before {
  -webkit-box-shadow: #666 0 12px 0;
  box-shadow: #FFF 0 12px 0; /*三ライン 真ん中の色*/
  height: 6px;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  width: 30px;
}
.MenuIcon_index::after {
  bottom: 0;
  height: 6px;
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
  width: 30px;
}
.MenuIcon_index::before,
.MenuIcon_index::after {
  background: #FFF; /*三ライン 上下の色*/
  display: block;
  content: '';
  position: absolute;
  -webkit-transition: -webkit-box-shadow 0.2s linear, -webkit-transform 0.4s 0.2s;
  transition: box-shadow 0.2s linear, transform 0.4s 0.2s;
}
.HiddenCheckbox:checked ~ .MenuIcon_index::before {
  -webkit-box-shadow: transparent 0 0 0;
  box-shadow: transparent 0 0 0;
  -webkit-transform: rotate(45deg) translate3d(6px, -3px, 0);
  transform: rotate(45deg) translate3d(6px, -3px, 0);
}
.HiddenCheckbox:checked ~ .MenuIcon_index::after {
  -webkit-transform: rotate(-45deg) translate3d(6px, 3px, 0);
  transform: rotate(-45deg) translate3d(6px, 3px, 0);
}

