@charset "utf-8";
/* CSS Document */

html{	
	font-size: 70%;
}
@media (max-width: 900px){
	html{	
		font-size: 90%;
	}
}
*, *::before, *::after {
	box-sizing: border-box:
}

body{
	background: #151515 url(../images/bg2_h.png) no-repeat fixed center;
	background-size: cover;
	color: #fff;
	text-align: center;
	font-size: 1.4rem;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

@media (max-width: 900px){
body{
	background: #151515 url(../images/bg2_h_phone.png) no-repeat fixed center;
	background-size: cover;
	}
}

li{
	list-style-type: none;
}

/*{ border: 1px solid #833; }	/*確認用*/

.heading::before,
.heading::after{
	content:'';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	border-bottom: 1px solid #999;
}
.heading::before{
	bottom: 5px;
}
.zoom-img{
	margin:0 auto;
	overflow: hidden;
	border-radius: 5px;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
}
.zoom-img img{
	transition:0.5s all;
}
.zoom-img img:hover{
	transform:scale(1.2,1.2);
  	transition:0.5s all;
}


/*logo -------------------------------------------------------------*/
.logo{
	position: absolute;
	left: 0;
	top: 0;
}
.logo p{
	color: #69420E;
}
.logo img{
	width: 60px;
	height: 60px;
	display: inline-block;
	float: left;
	padding: 10px 0 10px 30px;
	
}
@media (max-width: 900px){
	.logo{
		position: absolute;
		left: 0;
		top: 60px;
	}

	.logo img{
		width: 120px;
		height: 120px;
		display: inline-block;
		float: left;
		padding: 10px 0 10px 30px;	
	}
}

/*gnavi ------------------------------------------------------------*/
@media (max-width: 900px){
	.menu-btn{
	  position: fixed;
	  top: 20px;
	  right: 20px;
	  z-index: 999;
	  width: 64px;
	  height: 64px;
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  background: #653;
	  
	  font-size: 2.4rem;

	  color: #fff;
	}
	.gnavi{
	  position: fixed;
	  top: 0;
	  right: 0;
	  z-index: 100;
	  width: 100vw;
	  height: 100vh;
	  display: flex;
	  flex-direction: column;
	  
	  font-size: 2rem;
	  align-items: center;
	  justify-content: center;
	  background: rgba(255,255,255,0.9);
	}
	.gnavi li{
	  width: 100%;
	  height: auto;
	  padding: 0.5em 1em;
	  text-align: center;
	  box-sizing: border-box;
	}

	/* アニメーション前のメニューの状態 */
	.gnavi{
	  pointer-events: none;
	  opacity: 0;
	  transition: opacity .2s linear;
	}
	/* アニメーション後のメニューの状態 */
	.gnavi.is-active{
	  pointer-events: auto;
	  opacity: 1;
	}
}

@media (min-width: 901px){
	.menu-btn{
		display:none;
	}

	.gnavi {
		height: 80px;
		width: 100%;
		background: rgba(255,255,255,0.8);
		box-shadow: 0 3px 6px -3px #000000 inset;
		font-size: 1.2rem;
		font-weight: bold;
		position: fixed;
		z-index: 100;
	}
	
	.gnavi-inner {
		width: 1080px;
		height: 100%;
		margin: 0 auto;
		display: flex;
	}
	
	.gnavi ul {
		height: 100%;
		display: flex;
		margin: 0 20px;
	}
	
	.gnavi li {
		flex: 1 1;
		position: relative;
		display: flex;
	}
	.gnavi li::after {
		content: "";
		display: block;
		width: 2px;
		height: 20px;
		background-color: #b8b9dc;
		position: absolute;
		right: -1px;
		top: calc((100% - 20px)/2);
	}
	.gnavi li:last-child::after {
	  content: none;
	}
}

.gnavi-inner a {
  display: flex;
  flex: 1 1;
  justify-content: center;
  padding: 0 15px;
  color: #960;
  text-decoration: none;
}

.gnavi-inner a:hover span {
  color: #ff7600;
  position: relative;
}
.gnavi-inner a:hover span::after {
  content: "";
  position: absolute;
  display: block;
  height: 4px;
  width: 100%;
  bottom: 0;
  background-color: #ff7600;
  border-radius: 5px;
}
.gnavi span {
  display: flex;
  align-items: center;
  word-break: keep-all;
}

.gnavi-inner-non a {
  color: #888;
}
.gnavi-inner-non a:hover span {
  color: #888;
}
.gnavi-inner-non a:hover span::after {
  background-color: #888;
}
/*top-contents -------------------------------------------------------*/
.top-contents{
	background: linear-gradient(to top, rgba(160, 50, 80, 0.8) 0%, rgba(70, 175, 55, 0.6) 100%),
		url(../images/test_bg.png) no-repeat center;
	background: -moz-linear-gradient(to top, rgba(160, 115, 155, 0.8) 0%, rgba(81, 137, 155, 0.6) 100%),
		url(../images/test_bg.png) no-repeat center;
	background: -webkit-linear-gradient(to top, rgba(160, 115, 155, 0.8) 0%, rgba(81, 137, 155, 0.6) 100%), 
		url(../images/test_bg.png) no-repeat center;
	
	background-size: cover;
	height: 100vh;
}
.top-image{
	padding-top: calc(100vh/8);
	margin:0 auto;
	width: 70%;
	min-width: 512px;
	z-index: 90;

}
@media (max-width: 900px){
	.top-contents{
		background: linear-gradient(to top, rgba(160, 115, 155, 0.8) 0%, rgba(81, 137, 155, 0.6) 100%), url(../images/test_h_phone.png) no-repeat center;
		background-size: cover;
		height: 100vh;
	}
	.top-image{
		padding-top: calc(100vh/10);
		width: 90%;
	}
}

.heading{
	display: inline-block;
	position: relative;
	margin: 15px 0 15px;
	padding-bottom: 30px;
	letter-spacing: 2px;
	font-size: 4rem;
	
}

.top-bottom{
	display: block;
	position: absolute;
	width: 100%;
	bottom: 0;
	padding-bottom: 40px;
	z-index: 50;
	
}

.top-bottom-wrapper{
	display: table;
	width: 80%;
	vertical-align: bottom;
	margin: 0 auto;
	padding-top: 100px;
	
}
.news{
	display: table-cell;
	vertical-align: bottom;

	text-align: left;
	width: 60%;
	margin: 0 auto;	
	
}	
.list-group{
	display: block;
}
.list-title p{
	display: inline-block;
	font-weight: bold;
	font-size: 1.4rem;
}	
.list-item {
	border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
}
.list-item:nth-of-type(odd){
	padding: 2px 20px;
	background-color:rgba(0,0,0,0.5);
}
.list-item:nth-of-type(even){
	padding: 2px 20px;
	background-color:rgba(0,0,0,0.3);
}
.list-category{
	display: inline-block;
	width: 10%;
	border-radius: 5px;
	background-color: #C93;
	color: #fff;
	text-align: center;
	letter-spacing: 1px;
	font-size: 1rem;
	line-height: 16px;
}
.list-date{
	display: inline-block;
	width: 25%;
	letter-spacing: 1px;
	font-weight: bold;
	font-size: 1rem;
}
.list-link a{
	color: #fff;
}
.trial{
	width: 40%;
	padding: 0 40px;
	display: table-cell;
	vertical-align: middle;	
}
@media screen and (max-width:900px){
	.trial, .trial-link {
		display: none;
	}	
}
.trial-link a{
	display: inline-block;
	vertical-align: middle;
	
	font-size: 1.4rem;
	font-weight: bold;

	color: #fff;
	text-decoration: none;
	padding: 10px 40px;
	
	background-color: rgba(255,135,200,.8);
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	box-shadow: 0px 12px 25px 0px rgba(0, 0, 0, .5);
}
.trial-link a:hover {
  color: #fac;
  background-color: rgba(220,115,180,.8);
}

.trial-text{
	display: inline-block;
	vertical-align: middle;
	
	font-size: 1rem;
	color: #fff;
}


/*story -------------------------------------------------------*/
.story{
	padding: 60px 30px;
	background-color:  rgba(160,140,100, .9);
	color: #FFF;
}
.story-text{
	margin: 30px 0;
	line-height: 2.5;
}
.story-wrapper{
	display: inline-block;
	width: 80%;
	margin: 0 auto;
}
.story-box{
	vertical-align: middle;	
}

.story-image{
	display: block;
	width: 100%;
	border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
	box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .5);
}

@media (min-width:900px){
	.story-wrapper{
		display: block;
		max-width: 980px;
	}
	.story-box{
		display: inline-block;
		margin:10px auto;
	}
	
	.story-image{
		width: 300px;
	}
	.box-text{
		width: 50%;
	}
	.box-image{
		width: 45%;
	}
	
}
	
/*system -------------------------------------------------------*/
.system{
	padding: 60px 30px;
	background-color:rgba(65,37,3,0.80);
	color: #FFF1FB;
}
.system-text{
	display: inline-block;
	margin: 20px 0;
	
}
.system-text-top{
	display: block;
	margin-top: 2px;
	padding: 2px 10px;
	font-weight: bold;
	color:#fff;
	height: 2rem;
	overflow: hidden;
	background-color: rgba(186,84,146,0.6);

	border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
	
}

.system-wrapper{
	width: 80%;
	margin: 0 auto;
	vertical-align: top;
}
.system-box{
	vertical-align: top;
	padding: 8px;
	width: 100%;		
}

@media (min-width:900px){
	.system-wrapper{
		display: table;
		max-width: 980px;
		table-layout: fixed;
	}
	.system-box{
		display: table-cell;
	}
}
.system-image{
	display: block;
	width: 100%;
}

		
/*gallery -------------------------------------------------------*/
.gallery{
	padding: 60px 30px;
	background-color:rgba(130,96,140,0.6);
	color: #D9D9D9;
}
.gallery h2{
	color: #fff;
}
.gallery-wrapper{
	width: 80%;
	margin: 0 auto;
	table-layout: fixed;
}
@media (max-width: 900px){
	.gallery-wrapper{
		width: 90%;
	}
}

.gallery-item{
	border-radius: 5px;
	z-index: 0;
	transition:0.33s all;
}
.gallery-item:hover{
	z-index: 10;
	transform: scale(1.2,1.2);
  	transition: 0.33s all;
}

.gallery-item{
	width: 25%;
	min-width: 160px;
	margin-bottom: 3px;
}
.gallery-item--width2 {
	width: 50%;
	min-width: 320px;	
	margin-bottom: 9px;
}


.gallery-img{
	display: block;
	width: calc(100% - 6px);
	border-bottom: 3px solid;
	border-radius: 5px;
	background-color: #000;
}


/*product -------------------------------------------------------*/
.product{
	padding: 60px 30px;
	background-color:rgba(40,40,40,0.5);
	color: #333;
}
.product h2{
	color: #fff;
}
.product-text{
	display: inline-block;
	font-size: 1.2rem;
	text-align: left;
	vertical-align: top;
	padding-top: 20px;
	color: #fff;
}
@media (max-width: 900px){
	.product-text {
	font-size: 1.0rem;
	}
}


.product-wrapper{
	width: 80%;
	position: relative;
	margin: 0 auto;
}
@media (max-width: 900px){
	.product-wrapper{
		width: 90%;
	}
}


.product-table-left{
	display: inline-block;
	width: 40%;	
}
.product-table-left img{
	vertical-align: middle;
	width: 100%;	
}

.product-table-right{
	display: inline-block;
	vertical-align: top;
	width: 55%;	
}
@media (max-width: 900px){
	.product-table-left, .product-table-right{
		width: 90%;
	}
}


.product-download{
	display: table;
	width: 100%;
}
.product-download-item{
	display: table-cell;
	table-layout: fixed;
}
.product-download-item p
{
	color: #fff;
}


		
/*footer -------------------------------------------------------*/
.footer{
	padding: 20px 0px;
	line-height: 20px;
	background:#000;
}
.footer a{
	color: #960;
	text-decoration: none;
}

	