@charset "UTF-8";

html{
	font-language-override: 100%;
}

body{ 
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
	font-family: 'Kaisei Decol', serif;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	line-height: 1.7;
	
}
a{
	text-decoration: line-through;
}

/*HEADER
------------------------------------------------------------------*/
header{
	font-family: 'Kaisei Decol', serif;
	position: absolute;
}
.choko{
	position: fixed;
	width: 100%;
	z-index: 995;
}
.logo{
	position: fixed;
	width: 70px;
	margin-left: 10px;
	margin-top: 10px;
	z-index: 997;
}
h2{
	font-family: 'Kaisei Decol', serif;
	font-size: 50px;
	transform: rotate( -24deg );
	line-height: 1.2;
}
.copy{
	margin-top: -180px;
	margin-bottom: 150px;
	margin-left: 10px;
}
/*シート
--------------------------------------------------------------------*/
#header{
	width: 100%;
	height: 100vh;
	position: relative;
}

#header:before{
	content: "";
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100vh;
	background: url("images/wakerutop2.png")no-repeat center;
	background-color: #882325;
	background-size: cover;	
}
#sheet{
	position: relative;
	z-index: 1;
	background: rgba(255,255,255,0.00);
	padding-top: 600px;
	margin-bottom: 100px;
}
/*ハンバーガーメニュー
-------------------------------------------------------------------------------*/
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background-color:rgba(242,160,167,0.85);
    /*動き*/
	transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
}
/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
}
/*リストのレイアウト設定*/
#g-nav li{
	list-style: none;
    text-align: center; 
}
#g-nav li a{
	color: #333;
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:0px;
	right: 0px;
	cursor: pointer;
    width: 50px;
    height:50px;
}	
/*×に変化*/	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background-color: #CF0030;
  	width: 45%;
  }
.openbtn span:nth-of-type(1) {
	top:15px;	
}
.openbtn span:nth-of-type(2) {
	top:23px;
}
.openbtn span:nth-of-type(3) {
	top:31px;
}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

/*内容部分
------------------------------------------------------------------------*/
.sheet{
	width: 100%;
	margin-top: -30%;
}
.sito{
	position: relative;
}
.sito .one{ 
	font-family: 'Kaisei Decol', serif;
	color: rgba(255,255,255,1.00);
	position: absolute;
	top: 30px;
	left: 30%;
	font-size: 60px;
}
.sito .two{
	font-family: 'Kaisei Decol', serif;
	color: rgba(255,255,255,1.00);
	position: absolute;
	top: 330px;
	left: 15%;
	font-size: 50px;
}
.sito .three{
	font-family: 'Kaisei Decol', serif;
	color: rgba(255,255,255,1.00);
	position: absolute;
	top: 620px;
	left: 15%;
	font-size: 50px;
}
#space1{
	padding: 80px;
}
#space2{
	padding: 80px;
}
#space3{
	padding: 80px;
}

/*矢印の線がループして伸縮わたす
--------------------------------------------------------*/
.btnlinestretches5{
    /*線の基点とするためrelativeを指定*/
	position:relative;
    /*リンクの形状*/ 
	color:#FB626C;
    padding: 10px 0;
	display:inline-block;
    text-decoration: none;
    outline: none;
}
/*線の設定*/
.btnlinestretches5::before {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    /*線の形状*/
    width: 100%;
    height: 1px;
    background: #FB626C;
}
/*矢印の設定*/
.btnlinestretches5::after {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom:-4px;
    /*矢印の形状*/
    width: 8px;
    height: 8px;
    border-top: 1px solid #FB626C;
    border-right: 1px solid #FB626C;
    transform: rotate(45deg);
}
/*線と矢印を繰り返しアニメーション*/
.btnlinestretches5::before {
    animation: arrowlong01 2s ease infinite;
}
.btnlinestretches5::after {
    animation: arrowlong02 2s ease infinite;
}

/*矢印の線がループして伸縮わけあう
--------------------------------------------------------*/
.btnlinestretches6{
    /*線の基点とするためrelativeを指定*/
	position:relative;
    /*リンクの形状*/ 
	color:#FFF4CC;
    padding: 10px 0;
	display:inline-block;
    text-decoration: none;
    outline: none;
}
/*線の設定*/
.btnlinestretches6::before {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    /*線の形状*/
    width: 100%;
    height: 1px;
    background: #FFF4CC;
}
/*矢印の設定*/
.btnlinestretches6::after {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom:-4px;
    /*矢印の形状*/
    width: 8px;
    height: 8px;
    border-top: 1px solid #FFF4CC;
    border-right: 1px solid #FFF4CC;
    transform: rotate(45deg);
}
/*線と矢印を繰り返しアニメーション*/
.btnlinestretches6::before {
    animation: arrowlong01 2s ease infinite;
}
.btnlinestretches6::after {
    animation: arrowlong02 2s ease infinite;
}

/*矢印の線がループして伸縮ひとりじめ
--------------------------------------------------------*/
.btnlinestretches7{
    /*線の基点とするためrelativeを指定*/
	position:relative;
    /*リンクの形状*/ 
	color:#511900;
    padding: 10px 0;
	display:inline-block;
    text-decoration: none;
    outline: none;
}
/*線の設定*/
.btnlinestretches7::before {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    /*線の形状*/
    width: 100%;
    height: 1px;
    background: #511900;
}
/*矢印の設定*/
.btnlinestretches7::after {
    content: "";
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom:-4px;
    /*矢印の形状*/
    width: 8px;
    height: 8px;
    border-top: 1px solid #511900;
    border-right: 1px solid #511900;
    transform: rotate(45deg);
}
/*線と矢印を繰り返しアニメーション*/
.btnlinestretches7::before {
    animation: arrowlong01 2s ease infinite;
}
.btnlinestretches7::after {
    animation: arrowlong02 2s ease infinite;
}
@keyframes arrowlong01{
    0%{width:0;opacity:0}
    20%{width:0;opacity:1}
    80%{width:105%;opacity:1}
    100%{width:105%;opacity:0}
}
@keyframes arrowlong02{
    0%{left:0;opacity:0}
    20%{left:0;opacity:1}
    80%{left:103%;opacity:1}
    100%{left:103%;opacity:0}
}
/*わたす部分
--------------------------------------------------------------------*/
.mini{
	margin-left: 50px;
	width: 150px;
}
.watasu{
	position: relative;
}
.watasu2{
	position: absolute;
	top: -80px;;
	left: 80px;
}
.box{font-family: 'Kaisei Decol', serif;
	color:#FB626C;
	font-size: 30px;
	margin-left: 10px;
}
.p1{
	color: rgba(253,243,203,1.00);
	width: 300px;
}
/*わけあう
-------------------------------------------------------------------*/
.bag{
	font-family: 'Kaisei Decol', serif;
	color:#FB626C;
	font-size: 30px;
	margin-left: 50px;
}
/*独り占め
-------------------------------------------------------------------*/
.board{
	font-family: 'Kaisei Decol', serif;
	color:#FB626C;
	font-size: 30px;
	margin-left: 40px;
}
/*sns以下
-----------------------------*/
.sns{
	margin-top:70px;
	width: 100%;
	display: flex;
	justify-content: space-around;
}

.item img{
	width: 60px;
}
.last{
	font-family: 'Kaisei Decol', serif;
	color:#FFF4CC;
	font-size: 35px;
	text-align: center;
}