html {
  background-color: #fff;
  border: 1em solid #49494b;
}
p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: bold;
  color: #49494b;
}
/*nav*/
  * {
    box-sizing: border-box;
 }
 body {
    margin: 0;
    padding: 0;
    letter-spacing : 0.2em;
 }
 header {
  padding: 0.5em 2em 5em;
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
}
h1 {
  margin: 0; padding: 0;
}
a {
  font-family: 'Averia Sans Libre', cursive;
  color: #49494b;	
  text-decoration: none;
}
.here {
font-family: 'Averia Sans Libre', cursive;
padding: 0;
border: 1px solid #49494b;
padding: 0.5em;
}
nav {
  margin: 0 0 0 auto;
}
.pc-nav ul {
  list-style: none;
  margin: 4% 0;
  display: flex;
}
.pc-nav ul li {
font-size: 1em;
padding: 1em 1em;
}
.pc-nav ul li a {
position: relative;
}
.pc-nav ul li:last-child {
margin-right: 1em;
}
/*ホバーエフェクト*/
.pc-nav ul li a::after {
/*アンダーラインのスタイル*/
position: absolute;
content: "";
display: block;
width: 100%;
height: 1px;
background-color: #49494b;
bottom: -8px;
left: 0;
/*横方向0で非表示にする*/
-webkit-transform: scale(0, 1);
transform: scale(0, 1);
/*中央を基点にアニメーション*/
-webkit-transform-origin: center top;
transform-origin: center top;
/*アニメーションの速度設定*/
-webkit-transition: all 0.5s ease;
transition: all 0.5s ease;
}
.pc-nav ul li a:hover::after {
/*横方向等倍まで拡大*/
transform: scale(1, 1);
}

.main-visual img {
  width: 100%; 
  margin-top: 4em;
}

.sp-nav {
  display: none;
}
@media screen and (max-width: 640px) {
    .pc-nav {
       display: none;
    }
    .sp-nav {
       z-index: 1000;
       position: fixed;
       top: 0;
       left: 0;
       width: 100%;
       height: 100vh;
       display: block;
       width: 100%;
       background: #49494b;
       opacity: 0;
       transform: translateY(-100%);
       transition: all .2s ease-in-out;
    }
    #hamburger {
       position: relative;
       display: block;
       width: 40px;
       height: 40px;
       margin: 0 0 0 auto;
       background-color: #49494b;
    }
    #hamburger span {
       position: absolute;
       top: 50%;
       left: 15%;
       display: block;
       width: 50%;
       height: 2px;
       background-color: #fff;
       transform: translateY(-50%);
    }
    #hamburger::before {
       content: '';
       display: block;
       position: absolute;
       top: 20%;
       left: 15%;
       width: 70%;
       height: 2px;
       background-color: #fff;
    }
    #hamburger::after {
       content: '';
       display: block;
       position: absolute;
       bottom: 20%;
       left: 15%;
       width: 70%;
       height: 3px;
       background-color: #fff;
    }
    /*スマホメニュー*/
    .sp-nav ul {
       padding: 0;
       display: flex;
       flex-direction: column;
       justify-content: center;
       align-items: center;
       height: 100%;
    }
    .sp-nav li {
       margin: 0;
       padding: 0;
    }
    .sp-nav li span {
       font-size: 15px;
       color: #fff;
    }
    .sp-nav li a, .sp-nav li span {
       display: block;
       padding: 20px 0;
       color: #fff;
    }
    /*-閉じるアイコンー*/
    .sp-nav .close {
       position: relative;
       padding-left: 20px;
    }
    .sp-nav .close::before {
       content: '';
       position: absolute;
       top: 50%;
       left: 0;
       display: block;
       width: 16px;
       height: 1px;
       background: #fff;
       transform: rotate( 45deg );
    }
    .sp-nav .close::after {
       content: '';
       position: absolute;
       top: 50%;
       left: 0;
       display: block;
       width: 16px;
       height: 1px;
       background: #fff;
       transform: rotate( -45deg );
    }
    .toggle {
       transform: translateY( 0 );
       opacity: 1;
    }

    h2 {
       line-height: 1.6;
       text-align: center;
    }
}
.header-nav ul li a:hover::after {
    /*横方向等倍まで拡大*/
    transform: scale(2, 1);
} */
  
/* Index */
.leaf {
  position: absolute;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.leaf h1 {
  font-size: 5rem;
  color: #6983cc;
}
.leaf li{
  position: absolute;
  list-style: none;
  top: -50px;
  background: #B9A7C2;
  border-radius: 0% 70%;
  z-index: -10;
}
@media screen and (min-width: 640px) {

@keyframes fall {
  to {
    top: 150%;
  }
}
@keyframes sway1 {
  from {
    transform: translateX(0px) rotate(0deg);
  }
  to {
    transform: translateX(200px) rotate(-45deg);
  }
}
@keyframes sway2 {
  from {
    transform: translateX(200px) rotate(-45deg);
  }
  to {
    transform: translateX(0px) rotate(0deg);
  }
}
.leaf li:nth-child(1){
  left: 0%;
  top: -60px;
  width: 24px;
  height: 15px;
  background-color: #8489b8;
  animation: fall 10s linear infinite,
             sway1 3s ease-in-out infinite alternate;
  animation-delay: 2s;
}
.leaf li:nth-child(2){
  left: 5%;
  top: -70px;
  width: 13px;
  height: 9px;
  background-color: #B9A7C2;
  animation: fall 15s linear infinite,
             sway1 2s ease-in-out infinite alternate;
  animation-delay: 8s;
}
.leaf li:nth-child(3){
  left: 15%;
  top: -50px;
  width: 16px;
  height: 10px;
  background-color: #C2DFEA;
  animation: fall 9s linear infinite,
             sway1 3.5s ease-in-out infinite alternate;
  animation-delay: 13s;
}
.leaf li:nth-child(4){
  left: 30%;
  top: -70px;
  width: 16px;
  height: 10px;
  background-color: #8C95AA;
  animation: fall 8s linear infinite,
             sway2 4s ease-in-out infinite alternate;
  animation-delay: 7s;
}
.leaf li:nth-child(5){
  left: 40%;
  top: -60px;
  width: 16px;
  height: 10px;
  animation: fall 10s linear infinite,
             sway1 4s ease-in-out infinite alternate;
  animation-delay: 0s;
}
.leaf li:nth-child(6){
  left: 55%;
  top: -50px;
  width: 24px;
  height: 15px;
  background-color: #6983cc;
  animation: fall 11s linear infinite,
             sway2 3s ease-in-out infinite alternate;
  animation-delay: 3s;
}
.leaf li:nth-child(7){
  left: 65%;
  top: -40px;
  width: 16px;
  height: 10px;
  animation: fall 7s linear infinite,
             sway2 3.5s ease-in-out infinite alternate;
  animation-delay: 7s;
}
.leaf li:nth-child(8){
  left: 50%;
  top: -60px;
  width: 13px;
  height: 9px;
  background-color: #C2DFEA;
  animation: fall 7s linear infinite,
             sway1 3s ease-in-out infinite alternate;
  animation-delay: 3s;
}
.leaf li:nth-child(9){
  left: 80%;
  top: -70px;
  width: 16px;
  height: 10px;
  animation: fall 10s linear infinite,
             sway2 4s ease-in-out infinite alternate;
  animation-delay: 4s;
}
}
main {
  margin: 0 12vw;
}
.hello {
  margin: 4em;
  text-align: center;
  line-height: 2em;
  font-weight: bold;
}
h2 {
	text-align: center;
  margin: 0 auto;
  padding: 4em 5em 2em 5em;
  font-weight: normal;
  font-family: 'Averia Sans Libre', cursive;
  color: #49494b;
}
/* slck */

  * {
    box-sizing: border-box;
  }
  .sliderArea {
	overflow: hidden;
    max-width: 90%;
    max-height: 100%;
    margin: 0 auto;
    padding: 0 5em;
    z-index: -1;
  }
  .sliderArea.w300 {
    max-width: 300px;
    z-index: -1;
  }
  .slick-slide {
    margin: 0 5px;
    z-index: -1;
  }
  .slick-slide img {
    width: 100%;
    height: auto;
    z-index: -1;
  }
  .slick-prev, .slick-next {
    z-index: 1;
  }
  .slick-prev:before, .slick-next:before {
    color: #000;
    z-index: -1;
  }
  .slick-slide {
    transition: all ease-in-out .3s;
    opacity: .2;
    z-index: -1;
  }
  .slick-active {
    opacity: 1;
    z-index: -1;
  }
  .slick-current {
    opacity: 1;
    z-index: -1;
  }
  .thumb {
    margin: 20px 0 0;
    z-index: -1;
  }
  .thumb .slick-slide {
    cursor: pointer;
    z-index: -1;
  }
  .thumb .slick-slide:hover {
    opacity: .7;
    z-index: -1;
  }

  .full-screen-o .slick-list {
    overflow: visible;
    z-index: -1;
  }
  .full-screen-o.slider {
    max-width: 300px;
    margin: 0 auto;
    z-index: -1;
  }
  .full-screen-o .slick-dots {
    bottom: -24px;
    z-index: -1;
  }
  .full-screen-o .slick-dots li {
    position: relative;
    display: inline-block;
    width: auto;
    height: auto;
    margin: 0;
    padding: 0;
    cursor: pointer;
    z-index: -1;
  }
  .full-screen-o .slick-dots li button {
    font-size: 0;
    line-height: 0;
    padding: 0;
    cursor: pointer;
    color: transparent;
    border: 0;
    text-indent: -9999px;
    display: block;
    width: 8px;
    height: 8px;
    margin: 0 8px;
    outline: 0;
    border-radius: 5px;
    transition-duration: 0.3s;
    z-index: -1;
  }
  .full-screen-o .slick-dots li button:before {
    content: none;
    z-index: -1;
  }
  .full-screen-o .slick-dots li:nth-child(1) button {
    background: #f5d1c3;
    z-index: -1;
  }
  .full-screen-o .slick-dots li:nth-child(2) button {
    background: #a9b7ba;
    z-index: -1;
  }
  .full-screen-o .slick-dots li:nth-child(3) button {
    background: #c4d7d1;
    z-index: -1;
  }
  .full-screen-o .slick-dots li:nth-child(4) button {
    background: #b4b1a0;
    z-index: -1;
  }
  .full-screen-o .slick-dots li:nth-child(5) button {
    background: #e5dfd3;
    z-index: -1;
  }
  .full-screen-o .slick-dots li button:hover, .full-screen-o .slick-dots li.slick-active button {
    border-radius: 0px;
    width: 12px;
    height: 12px;
    z-index: -1;
  }
/* slick */
/* Index */

/* About */
.title {
  margin: 0;
  width: 100%;
}
.memobox{
  margin: 0 auto;
  margin-top: 8%;
  background: linear-gradient(-135deg, #c1d4e6, #f7e4f4, #f8e7db) ;
  background-blend-mode:lighten;
  width: 80%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.memobox img {
  width: 30%;
}
.name {
  font-size: 1.5em;
  line-height: 1.2em;
}
.memobox p:before{
  font-family: FontAwesome;
  content: "\f303";
  font-size: 17px;
}
.memobox p{
  margin: 1em 0 0 2em;
  padding: 1em;
  font-weight: bold;
  line-height: 1.5em;
}
.skill {
  margin: 0 auto;
  width: 100%;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.skill h2 {
  font-family: 'Averia Sans Libre', cursive;
  font-size: 2.5em;
  margin: 0;
  padding: 2em 0;
}
.photo img {
  width: 60%;
}
.photo {
  margin: 1em auto;
  text-align: center;
}
.skill li {
  line-height: 1.5em;
}
.about ul {
  display: flex;
  justify-content: space-between;
}
.about li {
  display: flex;
  flex-direction: column;
  width: 35%;
  font-weight: bold;
}
.about li a {
  font-weight: normal;
}
.Career {
  align-items: center;
  margin: 0 auto;
}
.Career_inner {
  display: flex;
  justify-content: left;
  align-items: center;
  margin: 0 auto;
}
.Career h2 {
  font-family: 'Averia Sans Libre', cursive;
  font-size: 2.5em;
  margin: 0;
  padding: 4em 0 1em 0;
}
.Career h3 {
  font-family: 'Averia Sans Libre', cursive;
  background: linear-gradient(-135deg, #c1d4e6, #f7e4f4, #f8e7db) ;
  font-size: 1.5em;
  padding: 1em 0.5em;
  margin-left: 20%;
  text-align: left;
}
.Career_h {
  font-size: 1.2em;
  font-weight: bold;
}
.Career_txt {
  	text-align: left;
	  display: inline-block;
}
.txt2 {
  font-size: 0.8em;
}
.bay {
  margin: 10em 0 0 0;
  text-align: center;
  line-height: 2em;
  font-weight: bold;
}
.about_contact {
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #B9A7C2;
}
.about_contact:hover {
  transition: 0.5s ;
  color: #6983cc;
  text-decoration: none;
}
/* About */

/* contact */
.contact-area {
  background-color: linear-gradient(-135deg, #c1d4e6, #d1b8ce, #DCC7B8);
}
.contact-message {
  text-align: center;
  line-height: 2;
  margin-bottom: 3em;
}
.contact-area {
  border: 2px solid #49494b;
  padding: 8em 2em;
  margin: 10em auto;
  width: 50%;
}
.contact-table {
  width: 100%;
}
.contact-inner {
  text-align: center;
}
.message-area {
  letter-spacing: 0.05em;
  padding: 1em 1em;
  border: 2px solid #49494b;
  width: 40em;
  height: 16em;
}
input[type="text"] {
  width: 80%;
  border-right:none;
  border-left:none;
  border-top:none;
  border-bottom: 2px solid #49494b;
  margin: 8px 0;
  outline: none;
  padding: 8px;
  box-sizing: border-box;
  transition: 0.3s;
  font-family: 'Zen Maru Gothic', sans-serif;
}
input[type="text"]:hover {
  background-color: #B9A7C2;
}
input:hover::placeholder {
  color: #fff;
  font-weight: normal;
}
input::placeholder {
  font-family: 'Zen Maru Gothic', sans-serif;
  color: #49494b;
  font-size: 0.8em;
  font-weight: bold;
}
.table-list td {
  font-size: 0.8em;
  width: calc(100% - 250px);
}
.table-list textarea {
  width: 80%;
  margin-top: 2em;
}
textarea::placeholder {
  color: #49494b;
  font-size: 1em;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: bold;
}
textarea:hover {
  background-color: #B9A7C2;
  transition: 0.3s;
}
.submit-button {
  box-sizing: border-box;
  position: relative;
  display: block;
  margin: 2em auto 0;
  background-color: #49494b;
  font-family: 'Averia Sans Libre', cursive;
  cursor: pointer;
  border: none;
  color: #fff;
  text-align: center;
  text-decoration: none;
  line-height: 1.5;
  outline: none;
  -webkit-transition: all .3s;
  transition: all .5s;
  padding: 1em 4em;
}
.submit-button:hover {
  background: #8C95AA;
}

@media(max-width:1200px) {
  .contact-area {
      width: 80%;
      padding: 60px;
  }
}
@media(max-width:1024px) {
  .contact-area {
      padding: 50px 15px;
  }
  .table-list th {
      width: 180px;
  }
  .table-list td {
      width: 100%;
  }
  textarea {
      width: 500px;
      height: 200px;
  }
  .contact-message {
      margin-bottom: 30px;
  }
  .contact-area .text {
      margin-bottom: 30px;
  }
}
@media(max-width:834px) {
  .contact-bg {
      margin: 50px auto 0;
      padding: 50px 0;
  }
  .contact-area {
      margin: 50px auto;
      padding: 50px 20px;
  }
  textarea {
      width: 100%;
      height: 200px;
  }
  .table-list {
      flex-wrap: wrap;
      margin-bottom: 20px;
  }
  .table-list th {
      font-size: 12px;
      width: 200px;
      margin-bottom: 10px;
  }
  .table-list td {
      font-size: 12px;
  }
  .table-list td {
      width: 100%;
  }
  .contact-message {
      font-size: 13px;
  }
  .contact-area .text {
      font-size: 13px;
  }
}
@media (max-width:640px) {
  main {
    margin: 0 auto;
  }
  h1 {
    margin: 4% 0 0 0; padding: 0;
  }
  .hello {
    margin: 4em 2em;
    text-align: center;
    line-height: 2em;
    font-weight: bold;
  }
p {font-size: 0.8em;
  font-weight: bold;
}
h2 {
	text-align: center;
  margin: 0 auto;
  padding: 0 5em;
  font-weight: normal;
  font-family: 'Averia Sans Libre', cursive;
  color: #49494b;
}
  .contact-message {
      text-align: left;
  }
  .contact-area .text {
      text-align: left;
  }
}
@media(max-width:375px) {
  textarea {
      width: 100%;
  }
}
/* contact */

/* Illust */
.wrapper {
  padding: 6% 5% 0 5%;
}
.gallery {
  columns: 3;/*段組みの数*/
  padding:0 10%;/*ギャラリー左右に余白をつける*/
  } 
  .gallery li {
    margin-bottom: 20px;/*各画像下に余白をつける*/
  }
  .gallery img:hover {
			transition: 0.5s ;
			opacity: 0.7 ;
  }
  
  /*ギャラリー内のイメージは横幅100%にする*/
  .gallery img{
    width:100%;
    height:auto;
    vertical-align: bottom;/*画像の下にできる余白を削除*/}
  
  /*　横幅900px以下の段組み設定　*/
  @media only screen and (max-width: 900px) {
    .gallery{
    columns:3;
    } 
  }
  
  @media only screen and (max-width: 768px) {
    .gallery{
    columns: 2;
    } 
  }
  
  
  /*========= レイアウトのためのCSS ===============*/
  
  ul{
    margin:0;
    padding: 0;
    list-style: none;
  }
  
  a{
    color: #333;
  }
  
  a:hover,
  a:active{
    text-decoration: none;
  }
  
  .Gallery h1{
    text-align: center;
    font-size:6vw;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin:30px 0;
  }
  .wrapper h2{
    text-align: left;
  }
  
  p{
    margin:0 10px 10px 10px;
    word-wrap : break-word;
  }
  
  /*画像を出現させるアニメーションCSS*/
  

  
  @keyframes flipLeft{
    from {
     transform: perspective(600px) translate3d(0, 0, 0) rotateY(30deg);
    opacity: 0;
    }
  
    to {
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
    }
  }
/* Illust */

/* topbtn */
#page_top {
  position: fixed;
  bottom: 30px;
  right: 15px;
}
#page_top a {
    background-color: #49494b;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-size: 2em;
    padding: 6px 10px;
}
#page_top a:hover {
    transition: 0.5s ;
    background-color: #707074;
    text-decoration: none;
}
/* topbtn */

/* footer */
footer {
height: auto;
color: #fff;
background: #49494b;
margin-top: 10%;
}
.container {
width: 100%;
padding: 1em 2em;
margin: 0 auto;
text-align: center;
}
.container_c {
padding: 20px 0;
display: flex;
align-items: center;
justify-content: center;
}
.container a:hover {
color: #fff;
}
.container_c ul {
text-align: center;
margin: 0 auto;
padding: 0;
list-style: none;
}
.container_c li a {
display: block;
padding: 0;
padding-bottom: 10px;
margin-bottom: 0;
color: #fff;
font-size: 18px;
text-decoration: none;
margin-right: 0px;
line-height: 10px;
border-bottom: 1px solid #49494b;
transition: 0.5s;
letter-spacing: 3px;
}
.container_c a:hover {
border-bottom: 1px solid #fff;
}
.follow-me {
list-style: none;
margin: 0 0 -8px;
overflow: hidden;
padding: 0;
display: flex;
justify-content: center
}
.follow-me li {
padding: 0;
margin-bottom: 1em;
}
.follow-me li a::before {
color: #fff;
display: inline-block;
font-family: FontAwesome;
font-size: 3em;
height:1.5em; /* Button height */
line-height: 1.5em; /* Button height */
-webkit-transition: all .3s ease;
transition: all .3s ease;
text-align: center;
margin: 0 auto;
width: 1.5em; /* Button width */
}
.follow-me li a[href*="instagram.com"]::before         { background-color: #49494b; content: "\f16d"; }
.follow-me li a[href*="twitter.com"]::before        { background-color: #49494b; content: "\f099"; }
.follow-me li a[href*="line.com"]::before        { background-color: #49494b; content: "\f3c0"; }
.follow-me li a:hover::before {
color: #8489b8;
}
.follow-me li a[href*="instagram.com"]:hover::before      { color:  #d1b8ce; 
}
.follow-me li a[href*="twitter.com"]:hover::before        { color: #c1d4e6; 
}
@media screen and (max-width: 640px) {
  .Career h2 {
    font-family: 'Averia Sans Libre', cursive;
    font-size: 2em;
    margin: 0;
    padding: 2em 0 0.5em 0;
  }
  .Career h3 {
    font-family: 'Averia Sans Libre', cursive;
    background: linear-gradient(-135deg, #c1d4e6, #f7e4f4, #f8e7db) ;
    font-size: 1em;
    padding: 1em 0.5em;
    margin-left: 2%;
    text-align: left;
  }
  .Career_txt {
  	font-size: 0.6em;
}
.Career_inner {
  font-size: 0.6em;
}
  .memobox{
    margin: 0 auto;
    margin-top: 8%;
    background: linear-gradient(-135deg, #c1d4e6, #f7e4f4, #f8e7db) ;
    background-blend-mode:lighten;
    width: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .memobox p{
    margin: 0 auto;
    padding: 0em 0em 1em 1em;
    font-weight: bold;
    line-height: 1.5em;
    font-size: 0.8em;
  }
  .container_c {
    padding: 10px 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
    }
} 
.copyrights {
font-size: 0.5em;
text-align: center;
}
/* footer */