body{
	position: relative;
	font-size: 14px;
	line-height: 1.8;
	
	font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Helvetica,"Hiragino Sans","Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
}

#wipe1{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	height: 100vh;
	background: #000;
	display: none;
	z-index:20;
	padding-top: 30%;
	text-align: center;
	color: #fff;
	font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN","游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif
}

#wipe1 #m1{
	position: absolute;
	left: 0;
	display: none;
	color: #fff;
	z-index:21;
	font-size: 200%;
	text-align: center;
	width: 100%;
	top: 350px;
}

h2{
	text-align: center;
	background-color:#000;
	color: #fff;
	font-family: 'Berkshire Swash', cursive;
	font-size: 300%;
	font-weight: normal;
	margin: 0;
	padding-top: 1em;
}

h3{
	text-align: center;
	background-color:#000;
	color: #fff;
	font-size: 140%;
	padding: 1em 0 3em;
	margin: 0;
}

.wrapper {
	overflow: hidden;
  height: 100%; // 高さを画面いっぱいに指定する。(vhが効かない場合の対策)
  height: 100vh; // 高さを画面いっぱいに指定する。
  position: relative;  //横幅がウィンドウズサイズの縦幅よりもはみ出てしまう場合に、左にずらすために指定。
  width: 100%; // 横幅もいっぱいに。
 
}

#video {
  background: url('/video_bg.jpg') no-repeat; // 動画が再生を始めるまで、cssのほうでも背景を設定します。
  background-attachment: fixed; // 中央揃えになるように、fixed。
  background-position: center center; // positionも中央に。
  background-size: cover; // 画面サイズに応じてサイズを可変するように設定。
  left: 0;
  // 以下、画面いっぱいにするためのCSS設定
  min-height: 100%;
  min-height: 100vh;
  min-width: 100%;
  min-width: 100vw;
  // wrapperのサイズに応じて、leftの位置をjQueryで指定するため、positionはabsoluteにします。
  position: absolute;
  top: 0;
  // z-indexは調整してください。
  z-index: 1;
}

content{
	display: block;
	background-color: #fff;
	padding: 2em;
	margin: 4em 0;

}

content h2{
	color: #000;
	background-color: transparent;

}
content h3{
	color: #000;
	background-color: transparent;

}

#preference .letter{
	font-family: "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN","游明朝", YuMincho, "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;	
}

#nav{
	background: #000;
	padding: 1em 0;
}

#nav a{
	dipslay: block;
	color: #ddd;
	padding: 5px 2em;
}

.product .name{
	font-weight: 900;
	font-size: 300%;
	margin-bottom: .4em;
	font-family: 'Amatic SC', cursive;
	
}

.product small{
	border-radius: 4px;
	padding: 4px;
	background: #a22;
	color: #fff;
	margin-right: .5em;
}











.product{
	display: flex;
	width: 100%;
	position: relative;
	overflow: hidden;
	padding: 100px 0 100px;
	color: #fff;
	background-size: contain;
	min-height: 450px;
}
.product::before{
	content:"";
	display: block;
	width:0;
	height:0;
	padding-bottom:20%;
}

.product .text{
	position: absolute;
	background-color: rgba(0,0,0,0.7);
	padding: 1em;
}

#p1 .text, #p3 .text, #p5 .text{
	left: 50%;
}


#informations .item, #blogs .item{
	border: 1px solid #ccc;
	background: #eee;
}

#informations .item img, #blogs .item img{
	display: block;
	margin: 10px auto ;
}



#informations .item date{
	font-size: 80%;
	display: inline-block;
	position: absolute;
	left: 0;
	top: 0;
	padding: 6px;
	background: #222;
	color: #fff;
	letter-spacing: 1px;
	opacity:0.8;
}

#blogs .item date{
	
}

/*-------------------------------------------------*/


.btn-animation-02 {
  display: inline-block;
  width: 200px;
  text-align: center;
  background-color: #a22;
  border: 2px solid #600;
  font-size: 14px;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 10px 24px;
  border-radius: 4px;
  position: relative;
  margin-top: 1.4em;
}
.btn-animation-02:hover {
  text-decoration: none;
}

.btn-animation-02 span {
  position: relative;
  z-index: 1;
}

.btn-animation-02::before,
.btn-animation-02::after {
  content: "";
  display: block;
  background-color: #600;
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  transition: .2s;
}
.btn-animation-02::before {
  left: 0;
}
.btn-animation-02::after {
  right: 0;
}

.btn-animation-02:hover:before,
.btn-animation-02:hover:after {
  width: 0;
  background-color: #600;
}

.btn-animation-02:hover {
  color: #FFF;
}


/*-------------------------------------------------*/

#contactus{
	background-color: #000;
	text-align: center;
	padding-bottom: 5%;
	position: relative;
}

#contactus .container{
	padding: 0 15%;
}

#contactus h3{
	text-align: center;
	color: #369;
	padding: 1em 0;
}

#contactus .input-title{
	text-align: left;
	padding-top: 1rem;
	font-weight: bold;
	color: #fff;
	padding: 3rem 1rem;
}

#contactus input, #contactus textarea{
	border-radius: 5px;
	padding: 1rem;
	border: none;
	margin: .4rem 0;
	width: 100%;
	opacity:0.9;
	color: #000;
}

#contactus input[type=submit]{
	width: auto;
	color: #fff;
	padding: 1rem;
}

/* 各ベンダープレフィックスが取れた標準版！！(http://caniuse.com/#search=placeholder-shown) */
input:placeholder-shown {
    color: #aaa;
}

/* Google Chrome, Safari, Opera 15+, Android, iOS */
input::-webkit-input-placeholder {
    color: #aaa;
}

/* Firefox 18- */
input:-moz-placeholder {
    color: #aaa;
	opacity: 1;
}

/* Firefox 19+ */
input::-moz-placeholder {
    color: #aaa;
	opacity: 1;
}

/* IE 10+ */
input:-ms-input-placeholder {
    color: #aaa;
}



/*--------- confirmer custom ----------*/
.confirmer-container{
	color: #fff;
}


footer{
	display: block;
	background: #222;
	color: #fff;
	padding: 1em;
	text-align: center;
}


#page_top{
    position: fixed;
    right: 10px;
    bottom: -100%;
    z-index: 9998;
}

#page_top a{
        position: relative;
        display: block;
        width: 50px;
        height: 50px;
        background: #fff;
        opacity: 0.8;
        text-decoration: none;
        margin-bottom: 0.7em;
        color: #000;
        text-align: center;
        padding: .8em 0;
		right: 0px;
  }
#page_top a .fa{
            font-size:25px;
            font-weight: 400;
        }

.st0{fill:#4B4B4B;}