/**{
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body{
    margin: 0;
    color: #313131;
    
}

h2{
    margin: 0;
    font-family: "メイリオ", sans-serif;
    line-height: 100vh;
}

/* header */
/*
header {
    width: 100%;
    position: relative;
}
*/
/*.pfix{
    width: 100%;
    position: fixed;
}
*/
/* nav_menu */
.nav{
    position: absolute;
    height: 100vh;
    width: 50%;
    right: -50%;
    background: #E6E4D8;
/*    background: rgba(99, 99, 99,.95);*/
    -webkit-transition: .5s;
    transition: .5s;
}


ul{
    margin: 150px 70px 0px 20px;
/*    margin: 0;*/
    padding: 0;
}

li{
/*    height: calc(50vh/3); /*100の高さを3等分してますよ*/
    line-height: 41px;
    list-style-type: none;
    font-size: 1.2em;
    text-align: right;
}

a{
    display: block;
    text-decoration: none;
    color: #636363;
}

.nav li p{
  display: block;
  margin: 15px 0 0 auto;
  width: 150px;
  height: 30px;
/*    margin: 30px 0px 0px 0px;*/
/*	background: #fff;*/
  border: 1px solid #cccccc;
  color: #000;
  font-size: 13px;
  line-height: 27px;
/*        transition: .3s;*/
  text-align: center;
  cursor: pointer;
}

.nav li p:hover{
  display: block;
  margin: 15px 0 0 auto;
  width: 150px;
  height: 30px;
/*    margin: 30px 0px 0px 0px;*/
	background: #fff;
  border: 1px solid #cccccc;
  color: #636363;
  font-size: 13px;
  line-height: 27px;
/*        transition: .3s;*/
  text-align: center;
  cursor: pointer;
}


.nav li p2{
  display: block;
  margin: 30px 0 0 auto;

  width: 150px;
  height: 30px;
/*    margin: 30px 0px 0px 0px;*/
  background: #fff;
  color: #000;
/*  font-size: 16px;*/
  line-height: 28px;
/*        transition: .3s;*/
  text-align: center;
  cursor: pointer;
}


.nav li p3{
  display: block;
  margin: 60px 0 0 auto;

  width: 150px;
  height: 30px;
/*    margin: 30px 0px 0px 0px;*/
/*  background: #fff;*/
  color: #000;
/*  font-size: 16px;*/
  line-height: 27px;
/*        transition: .3s;*/
  text-align: center;
  cursor: pointer;
}

.nav li a:hover{
    display: block;
    text-decoration: none;
    color: #afafaf;
}

/* hamburger_line */
#target {
    width: 40px;
    height: 50px;
    position: absolute;
    top: 32px;
    right: 20px;
    cursor: pointer;
    display: block;
    -webkit-transition: .5s;
    transition: .5s;
}

.target_inner{
    width: 40px;
    height: 30px;
    position: relative;
}

.target_inner_line {
    display: block;
    width: 30px;
    height: 3px;
    background: #ffffff;
    -webkit-transition: .5s;
    transition: .5s;
    border-radius: 50px;
    position: absolute;
}

.target_inner_1 {
    top: 0;
}

.target_inner_2 {
    top: 11px;
}

.target_inner_3 {
    top: 22px;
}

/* 動き */
.fadein{
    -webkit-transform: translateX(100%);
    transform: translateX(-100%);
}

.linea,.lineb,.linec{
    background: #636363;
}

.linea {
    -webkit-transform: rotate(225deg);
    transform: rotate(225deg);
    top: 13px;
}

.lineb {
    opacity: 0;
}

.linec {
    -webkit-transform: rotate(-225deg);
    transform: rotate(-225deg);
    top: 13px;
}
/*
/* main */
/*main section{
    width: 100%;
    height: 100vh;
    margin: 0 auto;
    text-align: center;
    line-height: 100vh;
}
*/