/* CSS Document */
@font-face{
    /*フォントの名前*/
  font-family: "BlackMango-Light";
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("../font/BlackMango-Light.ttf") format("ttf");
}
.blackmangoClass{
  font-family: "BlackMango-Light";
}




@keyframes first-fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes first-fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}



@keyframes fadein{
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animation_y{
  0% {
  transform: translateY(30px);
	opacity: 0;
  }

  100% {
	opacity: 1;
  transform: translateY(0px);
  }
}
@-webkit-keyframes animation_y{
    0% {
  transform: translateY(30px);
	opacity: 0;
  }

  100% {
	opacity: 1;
  transform: translateY(0px);
  }
}
@keyframes animation_x{
  0% {
  transform: translateX(50px);
	opacity: 0;
  }

  100% {
	opacity: 1;
  transform: translateX(0px);
  }
}
@keyframes animation_top_light{
0%{
opacity: 0;
  transform: scale(0);
}
100%{
opacity: 0.5;
  transform: scale(1);
}

}

/*
@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }

  60% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }

  100% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
}
*/
/*上からの距離・不透明度・高さが変化して上から下に流れる*/
/*
@keyframes mousepathmove{
	0%{

		bottom:26px;
		opacity: 0;
	}
	50%{
		opacity: 1;
	}
	100%{
			bottom:10px;
		opacity: 0;
	}
}
*/
/*ローディング画面*/
@keyframes fadeupanime{
	from{
		opacity: 0;
	}
  to{
		opacity: 1;
	}
}




html{
  font-size: 62.5%;
}

body{
  background: #f7f7f7;
  color: #333;
  line-height: 1.8;
  font-family: 'Noto Serif JP', serif;
/*font-family: 'Zen Kaku Gothic New', sans-serif;*/
  font-size: 1.4rem;
  letter-spacing: 1px;
    animation: first-fadeIn 2s ease 0s 1 normal;
    -webkit-animation: first-fadeIn 2s ease 0s 1 normal;
}


h1 a{
  text-decoration: none;
  width: 70px;
/*  height: 50px;*/
/*  background: #888;*/
  position: fixed;
  top: 35px;
  left: 2.5%;
}


/*topページ開始*/

.inner{
  width: 75%;
  max-width: 900px;
  margin: 0 auto;
}

header{
  width: 100%;
    position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
}
.hd_inner{
  margin: 0 auto;
  width: 90%;
	display: flex;
	justify-content: space-between;
	align-items: center;
  
}
header h1{
/*width: 100px;*/
}

.head-border {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-right:20px; 
}
 
.head-border:before{
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 12px;
    height: 1px;
    background-color: #333;
}
 
.head-border:before {
    left: 0;
  box-shadow: 0 0 10px #f7f7f7;
}
 
.head-border:after {
    right: 0;
}


nav ul{
  text-shadow: 0 0 10px #f7f7f7;
font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
}

nav ul li a{
  position: relative;
  display: inline-block;
  text-decoration: none;
}
nav ul li a::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #888;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
nav ul li a:hover::after {
  transform: scale(1, 1);
}

nav{
	width: 400px;
  margin-top: 40px;
}
nav ul{
  display: flex;
  justify-content: space-between;
}
nav ul li a{
  color: #333;
  text-decoration: none;
/*  padding-left: 10px;*/
}
.hb_menu{
  display: none;
}
.hb_menu_off{
  display: none;
}




.copyright{
  -webkit-text-orientation: sideways;
  color: #888;
}
.down{
  position: relative;
  top: 100px;
}




.main_visual{
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  padding: 100px 50px 40px 13.5%;
}
.mv_img{
  position: relative;
/*  left: 15%;*/
  right: 0;
  width: 100%;
  overflow: hidden;
  text-align: right;

}
.mv_img img{
  width: 92%;
  height: 30%;
  max-height: 800px;
  object-fit: cover;
}

.mv_text{
  position: absolute;
  left: 5%;
  width: 50%;
  max-width: 600px;
    filter: drop-shadow(0 0 10px #f7f7f7);
}
.mv_name{
  margin-bottom: 3%;
  
}
.mv_field{
  width: 60%;
  margin-left: 35%;
  margin-bottom: 2%;
}
.mv_explanation{
  width: 40%;
  margin-left: 60%;
  font-size: 1.2rem;
  
}
#top main{
  position: relative;
/*  margin-top: 160px;*/
}



.sns{
  position: fixed;
  top: 70%;
  right: 1%;
  z-index: 10 ;
  display: flex;
  flex-direction: column;
}

.sns a{
  width: 24px;
  margin-bottom: 4px;
}
.sns a::after{
  background: 0;
}


.copyright{
  font-size: 12px;
  letter-spacing:0.05em;
  position: fixed;
  bottom: 10%;
  left: 1.5%;
  -ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
  z-index: 9;
}



/*
.pallax{
  background-image: url("../images/para.jpg");
  height: 400px;
}
*/

article{
  background: #f7f7f7;
}

#top article,#about article{
  position: relative;
  margin: 20% 0;
}
#top article:last-child,#about article:last-child{
  margin-bottom: 0;
}
#works article,#works_in article{
  margin: 10% 0;
}
#about article:first-child,#top article{
  margin-top: 10%;
}
article.contact{
  margin: 0;
}
article.contact img{
  width: 100%;
}


#top .section_char{
  position: absolute;
  top:100px;
  z-index: 1;
}
#top article.works .section_char{
  left: 10%;
}
#top article.about .section_char{
  right:10%;
}

#top .section_char img{
  width: 80px;
}

#top .article_title{
  font-size: 2.4rem;
  margin-bottom: 20px;
}
#top .works .article_title{
  padding-left: 100px;
}
#top .about .article_title{
  padding-left: 15%;
}


/*slick　開始*/
.section-lineup li a{
  color: #333;
  text-decoration: none;
}


.section-lineup {
  overflow: hidden;
/*  padding: 120px 0;*/
}
.section-lineup .inner {
  margin: 0 auto;
  width: 80%;
  padding-left: 100px;
  padding-right: 4rem;
}
.section-lineup .lineup {
  position: relative;
}
.section-lineup .lineup-carousel li {
  background: #fff;
}
.section-lineup a .card_img{
  overflow: hidden;
}
.section-lineup .lineup-carousel img {
  width: 100%;
  display: block;
  transition-duration: 0.5s;
}

.section-lineup li a:hover .card_img img{
transform: scale(1.1, 1.1);
transition-duration: 0.5s;
opacity: 0.6;
}




.card_text{
   margin-top: 16px;
} 

.card_text h5{
  font-size: 1.6rem;
  padding-bottom: 5px;
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}
.card_field{
  font-size: 1.2rem
}
.card_skill{
  font-size: 1rem;
  margin-bottom: 20px;
}
.card_explanation{
  margin-bottom: 20px;
}







.more{
/*  display: flex;*/
/*  justify-content: space-between;*/
/*  align-items: center;*/
  text-align: center;
  display: block;
  position: relative;
  padding: 8px 0;
 width: 120px;
  color: #333;
  font-size: 1.2rem;
  background-color: #f7f7f7;
  transition: 0.3s;text-decoration: none;
  margin-left: auto;
}

.section-lineup a:hover .more,
.grid li a:hover .more{
  background: #ccc;
}












.section-lineup .slick-list {
  overflow: visible;
}
.section-lineup .slick-nav-arrows {
  position: absolute;
  top: -40px;
  right: 0%;
}
.section-lineup .slick-arrow {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
}
.section-lineup .slick-next {
  right: 0;
}
.section-lineup .slick-prev {
  left: -80px;
/*  display: none;*/
}
.section-lineup .slick-next:before, .section-lineup .slick-prev:before {
  color: #888;
}

/*slik終了*/
.button15{
margin-top: 50px;
/*margin-right: 20px;*/
}
.button15 a{
  color: #333;
  text-decoration: none;
  
 display: block;
  position: relative;
  margin:0 auto;
  padding: 1em 2em;
  width: 220px;
/*  font-weight: 500;*/
  border-radius: 50vh;
  transition: 0.3s;
}
.button15 a::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  border: 1px #888 solid;
/*  background-color:rgba(0,0,0,0.00);*/
/*  -webkit-text-stroke:1px #333;*/
  border-radius: 50vh;
  transition: 0.3s;
}

.button15 a::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 19px;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 5px;
  border-top: 1px solid #888;
  border-right: 1px solid #888;
    transition: 0.3s;
}
.button15 a:hover{
  color: #888;
}
.button15 a:hover::before{
    border: 1px #ccc solid;
    transition: 0.3s;
}
.button15 a:hover::after {
  border-top: 1px solid #ccc;
  border-right: 1px solid #ccc;
    transition: 0.3s;
}
.about .button15 a{
  margin:40px auto;
}

/*パララックス*/
.parallax-window {
    min-height: 500px;
    background: transparent;
/*  z-index: 99999;*/
}






#top .about{
  margin-bottom: 200px;
}

#top .about section{
  display: flex;
  align-items: center;
  background: #fff;
  width: 80%;
  max-width: 1300px;
	padding: 5% 0;

}
#top .about_img{
  padding-left: 15%;
	text-align: center;
}
#top .about_img img{
	width: 80%;
	
}
#top .about_text{
  width: 50%;
/*仮の数値*/
  padding:0 5%;
}
#top .about_text_name{
  font-size: 1.8rem;
/*  padding-bottom: 5px;*/
  border-bottom: 1px solid #ccc;
  margin-bottom: 10px;
}



/*
.background{
  background: #333;
  
}
*/
#top .contact section{
  position: relative;
}
.contact_text{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background: rgba(47,47,47,0.70);
  padding: 8% 12%;
  color: #fff;
  text-align: center;
}
.contact_email a{
  margin-top: 10px;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
}

  
  
/*works中ページ*/

/*===========
inview
===========*/

.fade-in {
  opacity: 0;
  transition-duration: 1000ms;
  transition-property: opacity, transform;
}

.fade-in-up {
  transform: translate(0, 50px);
}

.fade-in-down {
  transform: translate(0, -50px);
}
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}



.wmain{
  height: 100%;
  width: 100%;
  position: relative;
}
#works_in a.prev{
  color: #888;
  text-decoration: none;
  position: fixed;
  top:45%;
  left: 0;
/*  transform: translateY(-50%);*/
}
#works_in .prev_text{
  padding: 60px 24px 60px 60px;
  color: #888;
  transition:0.3s ease;
  letter-spacing: 1px;
}
#works_in .prev_border{
  position: absolute;
  left: -10px;
  bottom: 0;
  top: 0;
  margin: auto;
  height: 1px;
  overflow: hidden;
  width: 38%;
  transition:0.3s ease;
}
#works_in .prev_border::after{
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background: #ccc;
}
#works_in a.prev:hover .prev_text{
  padding-left: 57px;
}
#works_in a.prev:hover .prev_border{
  width: 50%;
}


#works_in a.next{
  color: #888;
  text-decoration: none;
  position: fixed;
  top:45%;
  right: 0;
}
#works_in .next_text{
  padding: 60px 60px 60px 24px;
  color: #888;
  transition:0.3s ease;
  letter-spacing: 1px;
}
#works_in .next_border{
  position: absolute;
  left: -10px;
  bottom: 0;
  top: 0;
  right: -100px;
  margin: auto;
  height: 1px;
  overflow: hidden;
  width: 38%;
  transition:0.3s ease;
}
#works_in .next_border::after{
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  background: #ccc;
}
#works_in a.next:hover .next_text{
  padding-right: 57px;
}
#works_in a.next:hover .next_border{
  width: 55%;
}







#works_in .works_outline{
  width: 600px;
  margin: 0 auto;
	animation: animation_y 1s forwards;
}
#works_in .works_bg{
  background: #fff;
   padding: 80px 10%;
   margin: 0 auto;
  width: 900px;
	text-align: center;
}
.works_bg img,.works_bg p{
margin-bottom: 40px;
}
#works_in .works_main{
  width:78%;
  margin: 0 auto;
  margin-bottom: 120px;
  text-align: center;
}
/*
#works_in .works_field{
  text-align: center;
  margin-bottom: 40px;
  font-size: 2rem;
}
*/
#works_in h2{
  font-size: 2rem;
  border-bottom:1px solid #ccc;
  padding-bottom: 5px;
  margin-bottom: 40px;
	animation:animation_y 1.1s;
}

#works_in dl{
  padding-bottom: 40px;
/*  border-bottom: 1px solid #ccc;*/
    margin-bottom: 60px;
}
#works_in dl dt{
  color: #888;
}
#works_in dl dd{
  margin-top: -2rem;
  margin-left: 15rem;
  margin-bottom: 20px;
}
#works_in dl a{
  color: #333;
}
#works_in .button15{
  margin-top: 0;
}

#works_in .works_bg img{
  margin-bottom: 40px;
	box-shadow: 0 0 20px #ddd;
}
#works_in .works_bg p{
  margin-bottom: 40px;
  text-align: left;
}



.button_wrap{
  position: relative;
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 85%;
  max-width: 800px;
  justify-content: space-between;
}
.works_return{
  margin-top: 80px;
  text-align: center;
  font-weight: bold;
}

.works_return a{
  color: #888;
  text-decoration: none;
  font-size: 12px;
  position: relative;
  padding-bottom: 5px;
}

.works_return a::after{
   position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #888;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

.works_return a:hover::after{
    transform: scale(1, 1);
}
















/*以下 aboutページ*/
#about section{
  margin-bottom: 120px;
  position: relative;
}
#about section:last-child{
  margin-bottom: 0;
}
.ab_profile{
  background: #fff;
 
 
}
.ab_inner{
  margin: 0 auto;
  width: 80%;
  justify-content: center;
  display: flex;
   align-items: center;
   padding: 5% 10%;
}
.ab_profile img{
  width: 40%;
}
.ab_text{
  max-width: 500px;
  margin-left: 40px;
}
.ab_name{
  font-size: 1.8rem;
  margin-bottom: 10px;
     border-bottom: 1px #ccc solid;
/*    padding-bottom: 5px;*/
}
.ab_column{
  display: flex;
  align-items: center;
  margin: 0 auto;
  width: 800px;
}
.ab_column h4{
  font-size: 24px;
  width: 417px;
}
.ab_column p{
  width: 386px;
  margin-left: 40px;
  line-height: 2.5;
}
#about .section_char img{
  width:70px;
  
}
#about .section_char{
 position: absolute;
/*  font-family: "BlackMango-Light";*/
  font-size: 80px;
  z-index: 1;
}

#about h3{
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.skill .section_char{
  left: -20%;
}
.ab_skillbox{
/*  width: 980px;*/
/*  flex-direction: row;*/
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;

}
.ab_skill h5{
  font-size: 1.8rem;
    margin-bottom: 20px;
}
.ab_skill img{
  margin-bottom: 20px;
  width: 120px;
}
.ab_skill{
  width: 50%;
  padding: 40px;
  text-align: center;
}
.ab_line{
  background: #ccc;
  width: 1px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.ab_skill p{
  text-align: left;
}
.ab_favorite .section_char{
  right: -20%;
}
.ab_favorite{
  border-bottom: 1px solid #ccc;
  padding-bottom: 60px;
  line-height: 2.3;
}

.title-border{
  display: flex;
align-items: center;
}
.title-border:after {
border-top: 1px solid #ccc;
content: "";
flex-grow: 1;
  margin-left: 1rem;
}



.history .section_char{
  left: -20%;
}

#about section ul{
  border-bottom: 1px solid #ccc;
}
#about section li{
  display: flex;
  border-top: 1px solid #ccc;
}
#about section li p{
  padding: 30px 0 30px 5%;
}
#about section li p:nth-of-type(1){
  width: 30%;
}
#about section li p:nth-of-type(2){
  width: 60%;
}

#about .contact .section_char{
  right: 0;
}




/*以下タブレット*/

@media only screen and (max-width: 1024px){
  
  body{
    font-size: 1.3rem;
  }
  h1 a{
    top: 25px;
  }
  nav{
  margin-top: 0;
}
  nav .head-border:before{
    display: none;
  }
  nav ul li a::after{
    background-color: #fff;
  }
  .sns{
    flex-direction: row;
    align-items: center;
    z-index: 999999;
    display: block;
    position: static;
     border-top: 1px #888 solid;
    width: 100px;
   margin: 0 auto;
  }

  header nav ul .sns a:last-child{
    margin-left: 20px;
  }
  
  
  
  .contact_email a{
    font-size: 16px;
  }
  
  #works_in a.prev{
    top: 110%;
  }
  #works_in a.next{
    top: 110%;
  }
  
  h2.theme img{
/*    width: 500px;*/
  }
	
	.parallax-window{
		min-height: 300px;
	}
	
  #top .article_title{
		padding-left: 60%;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  #top .about section{
    width: 75%;
    padding: 10% 15%;
  }
  #top .about_img{
    padding:0;
  }
  #top .about_text{
    padding:40px 0 0;
    width: auto;
  }
  
  article{
/*    margin: 100px 0;*/
  }
  
  /*ハンバーガーメニュー*/
#menu_buttoon{
z-index: 9999999;
position: fixed;
  top: 20px;
  right: 2.5%;
width: 30px;
  height: 20px;
}
#menu_buttoon span{
  width: 100%;
  height: 2px;
  background: #888;
/*  display: block;*/
  position: absolute;
  transition: all 0.5s;
}
 
  #menu_buttoon .hb_menu{
    position: absolute;
    top: 25px;
    font-size: 12px;
    display: block;
    color: #888;
  }
  #menu_buttoon .hb_menu_off{
    position: absolute;
    top: 25px;
    font-size: 12px;
    display: none;
/*    color: #888;*/
  }
  

  
#menu_buttoon span.active{
  background: #fff;
  
}

#menu_buttoon span:nth-of-type(1){
  top: 0;
}
#menu_buttoon span:nth-of-type(2){
  top: 10px;
}
#menu_buttoon span:nth-of-type(3){
  top: 20px;
  width: 60%;
}


/*.activeを加える*/
#menu_buttoon span.active:nth-of-type(1){
  transform: translateY(10px) rotate(-45deg);
}
#menu_buttoon span.active:nth-of-type(2){
  opacity: 0;
}
#menu_buttoon span.active:nth-of-type(3){
 transform: translateY(-10px) rotate(45deg);
  text-align: center;
  width: 100%;
}
  #menu_buttoon .hb_menu.active{
    display: none;
  }
    #menu_buttoon .hb_menu_off.active{
      display: block;
      color: #fff;
      
  }
  
  
.hd_inner{
  justify-content: space-between;
  width: 90%;
/*    align-items: center;*/
  }
  
  
.hd_inner nav{
  width: 100%;
  height: 100vh;
  background: #ccc;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
/*  opacity: 0;*/
  transform: translateX(100%);/*横（右）方向に100%移動されておく  斜めの時はXとYにかける*/
  pointer-events: none;/*ボタンを押せないようにする*/
  transition: all 0.5s;
  
}
header nav.active{
/*  opacity: 1;*/
  pointer-events: auto;
  transform: translateX(0)
}
.hd_inner nav ul{
  display: flex;
  flex-direction: column;/*縦並び*/
  justify-content: center;
  height: 100vh;
  overflow: hidden;
  text-align: center;
}

header nav ul a{
  padding-top: 15px;
  margin-bottom: 15px;
  text-align: center;
  font-size: 18px;
  text-decoration: none;
  color: #fff;
}
  
  .sns{
/*    display: none;*/
  }
  
  
  

  
  
  
.about section{
    flex-direction: column;
    width: 70%;
/*    justify-content: center;*/
  }
 .about_img{
    padding:100px 0;
  }
.about_text{
    padding:0 0 100px 0;
    width: 330px;
  }
  
  

  
  /*タブレット works中ページ*/

.prev,.next{
    display: none;
  }
  
#works_in .works_outline{
   width: 60%;
  margin: 0 auto;

}
#works_in .works_bg{
  padding: 80px 10%;
  width: 85%;
}
  

#works_in .works_main{
 width: calc(100% - 120px);
  margin: 0 auto;
  margin-bottom: 50px;
  max-width: 1200px;
}

#works_in h2{
  font-size: 1.8rem;

  
}

  #works_in dl dd{
    margin-left: 12rem;
  }
  
  .prev_button a,.next_button a{
  display: block;
  position: relative;
/*  margin-left:auto;*/
/*  padding: 1em 2em;*/
  width: 20px;
  font-weight: 500;
  border-radius: 50vh;
  transition: 0.3s;
  margin-top: 80px;
}
.prev_button a::after,.next_button a::after{
    content: '';
  position: absolute;
/*  top: 50%;*/
  transform: translateY(-50%) rotate(45deg);
  width: 16px;
  height: 16px;
  border-top: 2px solid #ccc;
  border-right: 2px solid #ccc;
}
.prev_button a::after{
  transform:translateY(-50%) rotate(225deg);
/*  left: 30%;*/
}
.next_button a::after{
  right: 0;
}
  .prev_button a:hover::after,.next_button a:hover::after{
   border-top: 2px solid #888;
  border-right: 2px solid #888;
  }
  
  
/*  以下タブレットaboutページ*/
.section_char{
/*    font-size: 40px;*/
    display: none;
  }
  
  .ab_inner{
    flex-direction: column;
 
  }
  .ab_profile img{
    width: 200px;
    margin-bottom: 40px;
}
  .ab_text{
    width: auto;
    margin-left: 0;
    max-width: 400px;
  }
  .ab_column{
    flex-direction: column;
    width: auto;
  }
  .ab_column h4{
    font-size: 2rem;
    margin-bottom: 20px;
    width: 70%;
  }
  .ab_column p{
    margin: 0;
    width: 70%;
  }
  #about h3{
    font-size: 2rem;
  }
  .ab_skill:nth-of-type(1){
    padding-left: 0;
  }
    .ab_skill:nth-of-type(2){
    padding-right: 0;
  }
}


/*以下スマホ*/
@media only screen and (max-width: 479px) {
  
  body{
/*    font-size: 13px;*/
  }
  .inner{
    width: 85%;
  }
.section_char{
/*    font-size: 40px;*/
    display: none;
  }
    h2.theme{
/*    font-size: 44px;*/
  }


  #top .article_title{
		padding-left: 50%;
/*    font-size: 2rem;*/
    margin-bottom: 20px;
  }
	.section-lineup .inner{
		padding-left: 0;
	}
	#top .works .article_title{
		padding-left: 1rem;
	}
  
  #top .item-content{
    padding: 16px;
  }
  .card_text h5{
    font-size: 14px;
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 5px;;
  }
   .card_skill,.card_field,.card_explanation{
    display: none;
  }
  a .more {
    background: 0;
    padding: 0;
    display: block;
    text-align: center;
    width: auto;
    color: #888;
		font-size: 13px;
  }
	
	.parallax-window{
		min-height: 200px;
	}
	
  #top .about section{
    padding: 10% 10%;
    width: 90%;
  }
	#top .about_text_name{
/*		font-size: 1.8rem;*/
	}
	.about_text_explanation{
		font-size: 13px;
		line-height: 1.8;
	}
	
	p.contact_message{
		font-size: 13px;
	}
	
/*  works外スマホページ*/
  #works .more{
    background: #f7f7f7;
    padding: 8px 0;
    width: 120px;
  }
/*  works中スマホページ*/
  #works_in .works_main{
     width: calc(100% - 72px);
  }
  #works_in h2{
    font-size: 16px;
  }
	#works_in dl dd{
	margin-left: 0;
	margin-top: 0;
	}
	
.works_return a{
  padding: 20px 50px;

}
/*  以下aboutスマホページ*/
  .ab_inner{
    padding: 10% 0;
  }
  .ab_name{
/*    font-size: 1.8rem;*/
/*    margin-bottom: 10px;*/
  }
  .ab_text{
    width: 80%;
  }
  .ab_text p:nth-of-type(2){
/*    font-size: 13px;*/
  }
  

  .ab_column p{
    width: 88%;
  }
  .ab_skillbox{
   flex-direction: column;
/*    justify-content: center;*/
    align-items: center;
}
  .ab_skill{
    width: 90%;
    padding: 40px 10px;
  }
  .ab_skill:nth-of-type(1){
    padding-right: 0;
  }
    .ab_skill:nth-of-type(2){
    padding-left: 0;
  }
  #about section li{
    flex-direction: column;
  }
   #about section li p:nth-of-type(1){
    padding: 10px 10px 10px 15px;
    width: 100%;
     position: relative;
  }
  #about section li p:nth-of-type(1)::before{
    position: absolute;
    top:50%;
    transform: translateY(-50%);
    left: 0;
    content: "";
    background: #888;
    width: 10px;
    height: 10px;
    border-radius: 1px;
  }
  #about section li p:nth-of-type(2){
    padding: 0 0 10px 10px;
    width: 100%;
  }
  .ab_line{
    display: none;
  }

  
  
}





/*デザインページ*/
/* Loading背景画面設定　*/
#loading {
/*fixedで全面に固定*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background:#f7f7f7;
  text-align:center;
}

/* Loading文字中央配置　*/
.loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loading p{
	color: #888;
}




@-webkit-keyframes line-scale-pulse-out-rapid {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1); }
  80% {
    -webkit-transform: scaley(0.3);
            transform: scaley(0.3); }
  90% {
    -webkit-transform: scaley(1);
            transform: scaley(1); } }

@keyframes line-scale-pulse-out-rapid {
  0% {
    -webkit-transform: scaley(1);
            transform: scaley(1); }
  80% {
    -webkit-transform: scaley(0.3);
            transform: scaley(0.3); }
  90% {
    -webkit-transform: scaley(1);
            transform: scaley(1); } }

.line-scale-pulse-out-rapid > div {
  background-color: #ccc;
  width: 4px;
  height: 35px;
  border-radius: 2px;
  margin: 2px;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  display: inline-block;
  vertical-align: middle;
  -webkit-animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78);
          animation: line-scale-pulse-out-rapid 0.9s -0.5s infinite cubic-bezier(0.11, 0.49, 0.38, 0.78); }
  .line-scale-pulse-out-rapid > div:nth-child(2), .line-scale-pulse-out-rapid > div:nth-child(4) {
    -webkit-animation-delay: -0.25s !important;
            animation-delay: -0.25s !important; }
  .line-scale-pulse-out-rapid > div:nth-child(1), .line-scale-pulse-out-rapid > div:nth-child(5) {
    -webkit-animation-delay: 0s !important;
            animation-delay: 0s !important; }



/* アイコンの動き */
.fadeup{
animation-name: fadeupanime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}


 main .theme{
/*font-size: 10rem;*/
/*text-align: center;*/
/*margin-bottom: 20px;*/
/*animation:animation_y 1s;*/
/*  font-family: "BlackMango-Light";*/
/*  color: #fff;*/
   width: 400px;
   margin: 0 auto 80px;
}
/*
#works .grid .item_img{
width: 100%;
overflow: hidden;
margin: 0 auto;
}
*/

#works .grid{
opacity: 0;
animation: animation_y 1s 2s forwards;

}

#works .grid a img{
width: 100%;
margin: 0 auto;
display: block;
transition-duration: 0.5s;
}
#works .grid a img:hover{
transform: scale(1.1, 1.1);
transition-duration: 0.5s;
opacity: 0.6;
}


#works article .grid .section_char{
font-size: 17px;
/*font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";*/
/*font-weight: 200;*/
margin-top: 15px;
/*margin-left: 3%;*/
margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.item_img{
/*  width: 49%;*/
  overflow: hidden;
}
.item_text{
/*  padding-left: 10px;*/
/*  width: 47%;*/
}
.item_text h3{
  margin-top: 16px;
	font-size: 1.6rem;
	border-bottom: 1px solid #ccc;
	padding-bottom: 4px;
	margin-bottom: 12px;
}
.item_field{
  font-size: 1.2rem;
}
.item_skill{
  font-size: 10px;
  margin-bottom: 20px;
}
.item_explanation{
	font-size: 13px;
  margin-bottom: 20px;
}

/*
#works article .more{
text-align: end;
margin-top: -10px;
margin-right: 10px;
font-size: 14px;
font-weight: 100;
}
*/
  
  

  

/*==================================================
ギャラリーのためのcss
===================================*/

/*＝＝＝並び替えボタンのCSS*/
.sort-btn{
	display: flex;
  align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	padding:60px 20px;
	animation: animation_y 1s 1s forwards;
  letter-spacing:0.2rem;
/*opacity: 0;*/
  font-family: 'Cormorant Garamond', serif;
}
.sort-btn li::after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #888;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}
.sort-btn li:hover::after {
  transform: scale(1, 1);
}
.sort-btn li{
/*	background:#eee;*/
list-style:none;
	cursor: pointer;
/*  padding-right: 10px;*/
	margin:0 10px;
	line-height: 1.8;
  position: relative;
}

.sort-btn li.active{/*ボタンに現在地＝activeというクラス名がついたら下線を入れる*/
  border: 1px #ccc solid;
  padding: 5px 10px;
}



/*＝＝＝Muuriのレイアウトのための調整 */
.grid {
  position: relative;/*並び替えの基準点を指定*/
}

/*各画像の横幅などの設定*/
.item {
  display: block;
  position: absolute;
/*  PC*/
   width: 28%;/*横並びで3つ表示*/
  margin: 30px 30px;
  z-index: 1;
list-style:none;
/*height: 400px;*/
  background: #fff;
/*  justify-content: center;*/
}

/*内側のボックスの高さが崩れないように維持*/
.item-content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 40px 30px;
/*  background: #fff;*/
}

.item-content a{
  color: #333;
  text-decoration: none;
/*  display: flex;*/
  align-items: center;
  justify-content: space-between;
}


/*画像の横幅を100%にしてレスポンシブ化*/
.grid img{
	width:100%;
	height:auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*横幅が1024px以下になった際の指定*/
@media only screen and (max-width: 1024px) {

.item {
  width: 43%;/*横並びで2つ表示*/
/*  ipad*/
 margin: 20px 20px;
 display: block;
}
  .item a{
    flex-direction: column;
  }
    .item_img{
    width: 100%;
  }
  .item_text{
    width: 100%;
  }
}

/*横幅が480px以下になった際の指定*/
@media only screen and (max-width: 480px) {


   main .theme{
  width: 250px;
  margin-top: 80px;
  margin-bottom: 0;
  }
  #about main .theme{
    margin-bottom: 60px;
  }
  
.sort-btn{
	justify-content: space-between;
}
.sort-btn li{
/*	width:45%;*/
	margin:0 0 10px 0;
	padding: 0;
	text-align:center;
	}	
  .item {
  width: 100%;/*横並びで2つ表示*/
/*  iphone*/
  margin:0;
  margin-bottom: 50px;
}


}




