/**
 * Theme Name:plutodesign2024
 * Version:1.0
 */
@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');
.zen-kaku-gothic-new-medium {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-kaku-gothic-new-bold {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-kaku-gothic-new-black {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
  font-style: normal;
}

/* アニメーション */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:0.8s;
animation-fill-mode:forwards;
opacity:0;
}

.fadeUpTrigger{
    opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/* common */

*{

}

a,
a:link,
a:visited,
a:active,
a:focus{
  color: #4D4D4D;
  text-decoration: none;
}

a:hover{
  color: #4D4D4D;
  text-decoration: none;
  opacity: 0.6;
}

li{
  list-style: none;
}



#page-top {
	position: fixed;
	right: 30px;
	bottom:30px;
	z-index: 2;
	opacity: 0;
	transform: translateY(100px);
}

#page-top img{
	width: 50px;
}

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}
#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}



body{
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 2em;
  color: #4D4D4D;
}


div#wrapper{

}

.grecaptcha-badge { visibility: hidden; }

@media screen and (max-width:600px) {
	#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
	opacity: 0;
	transform: translateY(100px);
}

}

 
/* header */

header{
	background:#EFF4F3;
}

div.hd_inner{
	width: 60%;
	min-width: 960px;
	margin: 0 auto;
	padding: 30px 0 35px;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	line-height: 1em;
}

.hd_logo{
	width: 250px;
}

.hd_logo img{
	width: 100%;
}

div.hd_nav{
}

div.hd_nav ul{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

div.hd_nav ul li{
	height: 24px;
	margin-right: 20px;
	position: relative;
}

div.hd_nav ul li:last-child{
	margin-right: 0;
}

div.hd_nav ul li img{
	height: 100%;
}

div.hd_nav ul li::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 1.5px;
background: #000000;
bottom: -1px;               
transform: scale(0, 1);    
transform-origin: left top; 
transition: transform 0.3s; 
}

div.hd_nav ul li:hover::after {
transform: scale(1, 1);  
}

div.hd_nav ul li a:hover{
	opacity: 1;
}

.menu-btn{
	display: none;
}

.menu{
	display: none;
}


@media screen and (max-width:1050px) {
div.hd_inner{
	width: 90%;
	min-width: 500px;
}
}

@media screen and (max-width:600px) {
div.hd_inner{
	width: 90%;
	min-width: auto;
}

.hd_logo{
	width: 180px;
	max-width: 60%;
}

div.hd_nav{
	display: none;
}

.menu-btn{
  z-index: 99;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #EFF4F3;
  color: #4D4D4D;
  border: none;
  font-size: 20px;
}

.menu{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #EFF4F3;
}
.menu__item{
  width: 100%;
  height: auto;
  padding: .5em 1em;
  text-align: center;
  color: #fff;
  box-sizing: border-box;
}

.menu__item a img{
	height: 40px;
}

.menu{
  transform: translateX(100vw);
  transition: all .3s linear;
}

.menu.is-active{
  transform: translateX(0);
}




}


/* footer */

footer{
	padding:45px 0 70px;
	background:#EFF4F3;
}

div.ft_inner.pc{
	width: 456px;
	margin: 0 auto 50px;
	text-align: center;
}

div.ft_inner.pc img.text{
	width: 100%;
}

div.ft_inner.pc img.btn{
	width: 60%;
	margin-right: 33px;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

div.ft_inner.pc a:hover{
	opacity: 1;
}

div.ft_inner.pc img.btn:hover {
	opacity: 1;
  transform: translateY(-5px);
}
 
div.ft_inner.sp{
	display: none;
}



small{
	display: block;
	width: 200px;
	margin: 0 auto;
}

small img{
	width: 100%;
}


@media screen and (max-width:1050px) {

}

@media screen and (max-width:600px) {
div.ft_inner.sp{
	display: block;
	width: 90%;
	margin: 0 auto 50px;
	text-align: center;
}

div.ft_inner.sp img.text{
	width: 80%;
	margin: 0 auto;
}

div.ft_inner.sp img.btn{
	width: 80%;
	margin-right: 33px;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

div.ft_inner.sp a:hover{
	opacity: 1;
}

div.ft_inner.sp img.btn:hover {
	opacity: 1;
  transform: translateY(-5px);
}
 
div.ft_inner.pc{
	display: none;
}

}


/* content */

div.content_wrapper{
}

div.content_wrapper div.test{
	padding: 300px 0;
	text-align: center;
	font-size: 3em;
	line-height: 2em;
}



/* top */

#top section.mv{
	background:#EFF4F3;	
}

#top div.mv_inner.pc{
	width: 850px;
	padding-top:500px;
	margin: 0 auto;
	position: relative;
	background: url("img/mv.gif");
	background-size: cover;
	background-position: center;
}

#top div.mv_inner.pc div.text{
	position: absolute;
	right: 38px;
	top: 78px;
	width: 124px;
}

#top div.mv_inner.pc div.text img{
	width: 100%;
}

#top div.mv_inner.sp{
	display: none;
}


#top section.works{
}

#top div.works_inner{
	width: 56%;
	min-width: 960px;
	margin: 60px auto 140px;
}

#top div.works_inner div.works_title{
	margin: 0 auto 48px;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

#top div.works_title h2.title{
	width: 100px;
	line-height: 1em;
	border-bottom: 2px solid #4D4D4D;
}

#top div.works_title h2.title img{
	width: 100%;
}

#top div.works_title ul{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
}

#top div.works_title ul li{
	margin-right: 15px;
}

#top div.works_title ul li:last-child{
	margin-right: 0;
}

#top div.works_title ul li a{
	height: 13px;
	padding-bottom: 10px;
	display: block;
	position: relative;
	opacity: 0.6;
}

#top div.works_title ul li a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 1.5px;
background: #000000;
bottom: -1px;               
transform: scale(0, 1);    
transform-origin: left top; 
transition: transform 0.3s; 
}

#top div.works_title ul li a:hover::after {
transform: scale(1, 1);  
}

#top div.works_title ul li.active a{
	border-bottom: 1.5px solid #4D4D4D;
	opacity: 1;
}

#top div.works_title ul li img{
	height: 100%;
}


#top div.works_list{
	width: 100%;
	min-width: 960px;
	margin:0 auto; 
}

#top div.works_list ul{
	width: 100%;
	margin-bottom: 37px;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	display: none;
	opacity: 0;
}

#top div.works_list ul.is-active {
  	display:flex;
    animation-name: displayAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}

@keyframes displayAnime{
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

#top div.works_list ul::after{
  content:"";
  display: block;
  width:30%;
}

#top div.works_list ul li{
	width: 30%;
	min-width: 255px;
	margin-bottom: 18px;
}

#top div.works_list ul li div.pic{
	width: 100%;
	overflow:hidden; 
	background: #ccc;
	aspect-ratio: 17 / 12;
}

#top div.works_list ul li div.pic img{
	object-fit: contain;
	width: 100%;
	height: 100%;
	transition:1s all;
}

#top div.works_list ul li div.pic img:hover{
  	transform:scale(1.2,1.2);
    transition:1s all;
}

#top div.works_list ul li a:hover{
    opacity: 1;
}

#top div.works_list ul li a:hover div.text{
	opacity: 0.6;
}

#top div.works_list ul li div.text{
	width: 100%;
	padding: 13px 7px;
	box-sizing: border-box;
}

#top div.works_list ul li div.text h3{
	font-weight: 700;
	line-height: 1.5em;
}

#top div.works_list ul li div.text p{
	font-size: 0.8em;
}

#top div.works_list div.more_btn{
	width: 120px;
	margin-right: 0;
	margin-left: auto;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

#top div.works_list div.more_btn img{
	width: 100%;
}

#top div.works_list div.more_btn a:hover {
  opacity: 1;
	}

#top div.works_list div.more_btn:hover {
  transform: translateY(-5px);
}


@media screen and (max-width:1050px) {
#top div.mv_inner.pc {
width: 90%;
}

#top div.works_inner{
	width: 90%;
	min-width: auto;
	margin: 60px auto 140px;
}

#top div.mv_inner div.text img.img_sp{
	display: block;
}

#top div.mv_inner div.text img.img_pc{
	display: none;
}

#top div.works_list{
	width: 100%;
	min-width: auto;
	margin:0 auto; 
}

#top div.works_list ul li{
	width: 30%;
	min-width: auto;
	margin-bottom: 18px;
}

}



@media screen and (max-width:600px) {
#top div.mv_inner.pc{
	display: none;
}

#top div.mv_inner.sp{
	display: block;
	width: 100%;
}

#top div.mv_inner.sp div.text{
    width: 80%;
    margin: 0 auto;
    padding-top: 20px;
}

#top div.mv_inner.sp div.pic{
	width: 100%;
	padding: 40px 0 40px;
}

#top div.mv_inner.sp div.pic img{
	width: 100%;
}

#top div.mv_inner.sp div.btn{
	width: 100%;
	padding-bottom: 30px;
	text-align: center;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

#top div.mv_inner.sp div.btn a:hover{
	opacity: 1;
}

#top div.mv_inner.sp div.btn img{
	width: 40px;
	height: 40px;
}

#top div.mv_inner.sp div.btn img:hover {
	opacity: 1;
  	transform: translateY(-5px);
}


#top div.works_title h2.title{
	width: 80px;
	padding-bottom: 5px;
	border-bottom: 2px solid #4D4D4D;
}

#top div.works_inner{
	width: 90%;
	min-width: auto;
	margin: 60px auto;
}


#top div.works_list ul li{
	width: 100%;
	min-width: auto;
	margin-bottom: 18px;
}

#top div.works_list ul.is-active {
  	display:block;
}
}



/* about */
#about section.mv{

}

#about div.mv_inner{
	width: 850px;
	margin: 0 auto;
}

#about div.mv_inner img.sp{
	display: none;
}

#about div.mv_inner img.pc{
	display: block;
	width: 100%;
}

#about div.philosophy_inner{
	width: 56%;
	min-width: 960px;
	margin: 60px auto 120px;
}


#about div.philosophy_inner div.philosophy_title{
	margin: 0 auto 55px;
}

#about div.philosophy_title h1.title{
	width: 100px;
	border-bottom: 2px solid #4D4D4D;
	line-height: 0.1em;
}

#about div.philosophy_title h1.title img{
	width: 100%;
}

#about div.philosophy_catch{
}

#about div.philosophy_catch h2.catch{
	width: 420px;
	margin-bottom: 62px;
}

#about div.philosophy_catch h2.catch img{
	width: 100%;
}

#about div.philosophy_text{
	position: relative;
}

#about div.philosophy_text p{
	margin-bottom: 42px;
}

#about div.philosophy_text p span{
	display: block;
}

#about div.philosophy_text p.last{
	margin-bottom: 0;
}

#about div.philosophy_text div.ill{
	position: absolute;
	right: 0;
	bottom: 0;
	width: 314px;
    height: 271px;
}

#about div.philosophy_text div.ill img{
	width: 100%;
}


#about section.point{
	background:#EFF4F3;	
	padding: 120px 0;
}

#about div.point_inner{
	width: 56%;
	min-width: 850px;
	margin: 0 auto;
}

#about div.point_inner h3{
	height: 36px;
	margin-bottom: 37px;
}

#about div.point_inner h3 img{
	height: 100%;
}

#about div.point_list{
	width: 100%;
}

#about div.point_list ul{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

#about div.point_list ul li{
	width: 33.33%;
	padding: 19px 0 19px;
	border-right: 1px solid #207bf1;
}

#about div.point_list ul li:nth-child(2){
}


#about div.point_list ul li:last-child{
	border-right: 0;
}

#about div.point_item_inner{
	width: 90%;
	margin: 0 auto;
}

#about div.point_list ul li div.pic{
	width: 100%;
	margin-bottom: 24px;
	text-align: center;
}

#about div.point_list ul li div.pic img{
	width: 100%;
}

#about div.point_list ul li div.pic img.number{
	width: 20px;
	margin-top: 24px;
}

#about div.point_list ul li div.text{
	width: 90%;
	margin: 0 auto;
}

#about div.point_list ul li div.text h4{
	line-height: 1.5em;
	font-size: 1.2em;
	font-weight:500;
	text-align: center;
    margin-bottom: 53px;
}

#about div.point_list ul li:first-child div.text h4{
	margin-bottom: 30px;
}

#about div.point_list ul li div.text p{
	line-height: 1.7em;
	text-align: justify; 
	margin-top: auto;
	letter-spacing: 0.06em;
}


#about section.member{
	padding: 120px 0;
}

#about div.member_inner{
	width: 56%;
	min-width: 850px;
	margin: 0 auto;
}

#about div.member_inner h3{
	height: 36px;
	margin-bottom: 66px;
}

#about div.member_inner h3 img{
	height: 100%;
}

#about div.member_list{
	width: 100%;
}

#about div.member_list ul{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

#about div.member_list ul li{
	width: 30%;
	box-sizing: border-box;
}

#about div.member_list ul li div.pic{
	width: 100%;
	margin-bottom: 24px;
	text-align: center;
}

#about div.member_list ul li div.pic img{
	width: 100%;
}

#about div.member_list ul li div.pic img.number{
	width: 20px;
	margin-top: 24px;
}

#about div.member_list ul li div.text{
}

#about div.member_list ul li div.text p{
	line-height: 1.7em;
	text-align: center; 
	margin-top: auto;
	letter-spacing: 0.06em;
}

#about section.business{
	background:#EFF4F3;	
	padding: 120px 0;
}

#about div.business_inner{
	width: 56%;
	min-width: 850px;
	margin: 0 auto;
}

#about div.business_inner h3{
	height: 36px;
	margin-bottom: 46px;
}

#about div.business_inner h3 img{
	height: 100%;
}

#about div.business_inner p{
	margin-bottom: 46px;
	padding-left: 10px;
	box-sizing: border-box;
}

#about div.business_list{
	width: 80%;
	min-width: 780px;
	margin: 0 auto;
	background: #fff;
	padding: 22px 44px;
	box-sizing: border-box;
	position: relative;
}

#about div.business_list::before{
	content: "";
	width: 40px;
	height: 40px;
	background-image: url("img/corner_top.svg");
	background-size: contain;
	position: absolute;
	top: -8px;
	left: -8px;
}

#about div.business_list::after{
	content: "";
	width: 40px;
	height: 40px;
	background-image: url("img/corner_bottom.svg");
	background-size: contain;
	position: absolute;
	bottom: -8px;
	right: -8px;
}



#about div.business_list ul{
	padding-left:20px;
}

#about div.business_list ul li{
	margin-bottom: 20px;
	padding-left: 8px;
	list-style-type: disc;
	color: #207bf1;
}

#about div.business_list ul li:last-child{
	margin-bottom: 0px;
}

#about div.business_list ul li span{
	color: #4D4D4D;
}

#about section.client{
	padding: 120px 0;
}

#about div.client_inner{
	width: 56%;
	min-width: 850px;
	margin: 0 auto;
}

#about div.client_inner h3{
	height: 36px;
	margin-bottom: 46px;
}

#about div.client_inner h3 img{
	height: 100%;
}

#about div.client_inner p{

}

@media screen and (max-width:1050px) {
#about div.mv_inner{
width: 80%;
}

#about div.philosophy_inner{
	width: 90%;
	min-width: auto;
}

#about div.philosophy_text div.ill{
	width: 230px;
    height: 198px;
    margin-top: 50px;
}

#about div.point_inner{
	width: 90%;
	min-width: auto;
}
#about div.member_inner{
	width: 90%;
	min-width: auto;
}

#about div.member_inner{
	width: 90%;
	min-width: auto;
}

#about div.business_inner{
	width: 90%;
	min-width: auto;
}

#about div.business_list{
	width: 90%;
	min-width: auto;
}

#about div.client_inner{
	width: 90%;
	min-width: auto;
	margin: 0 auto;
}

#about div.point_item_inner{
	width: 90%;
	margin: 0 auto;
}


}



@media screen and (max-width:600px) {
#about section.point,
#about section.member,
#about section.business,
#about section.cliant
{
	padding: 80px 0;
}

#about div.mv_inner{
	width: 95%;
}

#about div.mv_inner img.pc{
	display: none;
}

#about div.mv_inner img.sp{
	display: block;
	width: 100%;
}

#about div.philosophy_inner{
	width: 90%;
	min-width: auto;
	margin-top: 30px;
}

#about div.philosophy_catch h2.catch{
	width: 100%;
	margin-bottom: 42px;
}

#about div.philosophy_text p span{
	display: inline;
}


#about div.philosophy_text div.ill{
	position: relative;
	width: 65%;
    height: auto;
    margin: 80px auto 0;
}

#about div.point_inner h3,
#about div.member_inner h3,
#about div.business_inner h3,
#about div.cliant_inner h3{
	max-width: 90%;
	height: 28px;
	margin: 0 auto 50px;
	text-align: center;
}


#about div.point_list ul{
	display: block;
}

#about div.point_list ul li{
	width: 100%;
	margin-bottom: 80px;
	border:none; 
	padding: 0;
}

#about div.point_list ul li:last-child{
	margin-bottom: 0;
}

#about div.point_list ul li div.text h4{
	margin-bottom: 30px;
}

#about div.member_list ul{
	display: block;
}

#about div.member_list ul li{
	width: 80%;
	margin: 0 auto 80px;
}

#about div.member_list ul li:last-child{
	margin-bottom: 0;
}

#about div.member_list ul li div.pic{
	width: 70%;
	margin: 0 auto 24px;
	text-align: center;
}

#about div.business_list{;
	padding: 22px;
}


}


/* works_list */
#works_list section.works_list{
}

#works_list div.works_list_inner{
	width: 56%;
	min-width: 960px;
	margin: 60px auto 140px;
}

#works_list div.works_list_inner div.works_list_title{
	margin: 0 auto 48px;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

#works_list div.works_list_inner div.works_list_title.tag{
	margin-bottom: 30px;
}


#works_list div.works_list_inner h1.tag_list{
	margin-bottom: 30px;
	font-size: 1.5em;
	font-weight: normal;
}

#works_list div.works_list_title .works_list_title_img{
	width: 100px;
	line-height: 1em;
	border-bottom: 2px solid #4D4D4D;
}

#works_list div.works_list_title .works_list_title_img img{
	width: 100%;
}

#works_list div.works_list_title ul{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
}

#works_list div.works_list_title ul li{
	margin-right: 15px;
}

#works_list div.works_list_title ul li:last-child{
	margin-right: 0;
}

#works_list div.works_list_title ul li a{
	height: 13px;
	padding-bottom: 10px;
	display: block;
	position: relative;
	opacity: 0.6;
}

#works_list div.works_list_title ul li a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 1.5px;
background: #000000;
bottom: -1px;               
transform: scale(0, 1);    
transform-origin: left top; 
transition: transform 0.3s; 
}

#works_list div.works_list_title ul li a:hover::after {
transform: scale(1, 1);  
}

#works_list div.works_list_title ul li.active a{
	border-bottom: 1.5px solid #4D4D4D;
	opacity: 1;
}

#works_list div.works_list_title ul li img{
	height: 100%;
}


#works_list div.works_list{
	width: 100%;
	min-width: 850px;
	margin:0 auto; 
}

#works_list div.works_list ul{
	width: 100%;
	margin-bottom: 37px;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	display: none;
	opacity: 0;
}

#works_list div.works_list ul{
  	display:flex;
    animation-name: displayAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
}


#works_list div.works_list ul::after{
  content:"";
  display: block;
  width:30%;
}

#works_list div.works_list ul li{
	width: 30%;
	min-width: 255px;
	margin-bottom: 18px;
}

#works_list div.works_list ul li div.pic{
	width: 100%;
	overflow:hidden; 
	background: #ccc;
	aspect-ratio: 17 / 12;
}

#works_list div.works_list ul li div.pic img{
	object-fit: contain;
	width: 100%;
	height: 100%;
	transition:1s all;
}

#works_list div.works_list ul li div.pic img:hover{
  	transform:scale(1.2,1.2);
    transition:1s all;
}

#works_list div.works_list ul li a:hover{
    opacity: 1;
}

#works_list div.works_list ul li a:hover div.text{
	opacity: 0.6;
}

#works_list div.works_list ul li div.text{
	width: 100%;
	padding: 13px 7px;
	box-sizing: border-box;
}

#works_list div.works_list ul li div.text h3{
	font-weight: 700;
	line-height: 1.5em;
}

#works_list div.works_list ul li div.text p{
	font-size: 0.8em;
}



@media screen and (max-width:1050px) {
#works_list div.works_list_inner{
	width: 90%;
	min-width: auto;
	margin: 60px auto 140px;
}

#works_list div.works_list{
	width: 100%;
	min-width: auto;
	margin:0 auto; 
}

#works_list div.works_list ul li{
	width: 30%;
	min-width: auto;
	margin-bottom: 18px;
}
}

@media screen and (max-width:600px) {
#works_list div.works_list_title h1.works_list_title{
	width: 80px;
	padding-bottom: 5px;
	border-bottom: 2px solid #4D4D4D;
}

#works_list div.works_inner{
	width: 90%;
	min-width: auto;
	margin: 60px auto;
}


#works_list div.works_list ul li{
	width: 100%;
	min-width: auto;
	margin-bottom: 18px;
}

#works_list div.works_list ul{
  	display:block;
}
}




/* works_detail */
#works_detail section.works_detail{
	margin: 0 auto;
}

#works_detail div.works_detail_inner{
    width: 56%;
    min-width: 800px;
	margin: 60px auto 100px;
}

#works_detail div.works_detail_inner div.works_detail_title{
	margin: 0 auto 48px;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

#works_detail div.works_detail_title div.works_detail_title_pic{
	width: 100px;
	line-height: 1em;
	border-bottom: 2px solid #4D4D4D;
}

#works_detail div.works_detail_title div.works_detail_title_pic img{
	width: 100%;
}

#works_detail div.works_detail_title ul{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
}

#works_detail div.works_detail_title ul li{
	margin-right: 15px;
}

#works_detail div.works_detail_title ul li:last-child{
	margin-right: 0;
}

#works_detail div.works_detail_title ul li a{
	height: 13px;
	padding-bottom: 10px;
	display: block;
	position: relative;
	opacity: 0.6;
}

#works_detail div.works_detail_title ul li a::after {
position: absolute;
left: 0;
content: '';
width: 100%;
height: 1.5px;
background: #000000;
bottom: -1px;               
transform: scale(0, 1);    
transform-origin: left top; 
transition: transform 0.3s; 
}

#works_detail div.works_detail_title ul li a:hover::after {
transform: scale(1, 1);  
}

#works_detail div.works_detail_title ul li.active a{
	border-bottom: 1.5px solid #4D4D4D;
	opacity: 1;
}

#works_detail div.works_detail_title ul li img{
	height: 100%;
}

#works_detail div.works_detail_content{
	width: 800px;
	margin: 0 auto 100px;
}

#works_detail div.works_detail_content ul.item_gallery{
	width: 100%;
	margin-bottom: 30px;
}

#works_detail div.works_detail_content div.item_gallery img{

}

#works_detail div.works_detail_content ul.item_gallery_list{
	width: 100%;
	margin-bottom: 50px;
	cursor: pointer;
	outline: none;
}

#works_detail div.works_detail_content ul.item_gallery_list li{
	aspect-ratio:1 / 1;
	background:#333;
}

#works_detail div.works_detail_content ul.item_gallery_list li img{
	width: 100%;
	height: 100%;
	object-fit: cover;
    opacity: 1;
}

#works_detail div.works_detail_content ul.item_gallery_list li.slick-current img{
    opacity: 0.5;
}

.slick-slide {
      margin: 0px 20px;
    }

.slick-slide img{
    width: 100%;
}


#works_detail div.works_detail_content div.item_title_inner{
		width: 100%;
		padding-left: 20px;
		margin: 0 20px 50px;
		box-sizing: border-box;
		border-left: 1px solid #B2B0AE;
}

#works_detail div.works_detail_content div.item_title_inner h1.item_title{
	width: 100%;
	margin-bottom: 10px;
	font-size: 1.5em;
	font-weight: normal;
}

#works_detail div.works_detail_content div.item_title_inner p{
	width: 100%;
	margin: 0 auto;
	font-size: 1.375em;
}

#works_detail div.works_detail_content div.item_description{
	margin: 0 20px;
}

#works_detail div.works_detail_content div.item_description p.tag{
	margin-top: 30px;
	color: #207BF1;
}

#works_detail div.works_detail_content div.item_description p.tag a{
	color: #207BF1;
}


#works_detail div.more_btn{
	width: 350px;
	max-width: 90%;
	margin: 0 auto;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
}

#works_detail div.more_btn img{
	width: 100%;
}

#works_detail div.more_btn a:hover {
  opacity: 1;
	}

#works_detail div.more_btn:hover {
  transform: translateY(-5px);
}



@media screen and (max-width:1050px) {
#works_detail section.works_detail{
	width: 100%;
}

#works_detail div.works_detail_inner{
	width: 90%;
	min-width: auto;
	margin: 60px auto 140px;
}

#works_detail div.works_detail_content{
	width: 100%;
}

.slick-slide {
   margin: 0px 10px;
}

#works_detail div.works_detail_content div.item_title_inner{
	margin :0 auto 50px;
}

#works_detail div.works_detail_content div.item_description{
	margin: 0 auto;
}


}


@media screen and (max-width:600px) {
#works_detail div.works_detail_title div.works_detail_title_pic{
	width: 80px;
	padding-bottom: 5px;
	border-bottom: 2px solid #4D4D4D;
}

#works_detail div.works_detail_inner{
	width: 90%;
	min-width: auto;
	margin: 60px auto;
}
}




/* contact */
#contact section.contact_dis{

}

#contact div.contact_dis_inner{
	width: 56%;
	min-width: 960px;
	margin: 60px auto ;
}

#contact div.contact_dis_inner h1.title{
	width: 120px;
	margin-bottom: 55px;
	border-bottom: 2px solid #4D4D4D;
	line-height: 0.1em;
}

#contact div.contact_dis_inner h1.title img{
	width: 100%;
}

#contact div.contact_inner p{
	margin-bottom: 30px;
	font-size: 1.2em;
	line-height: 1.8em;
}

@media screen and (max-width:1050px) {
#contact div.contact_dis_inner{
	width: 90%;
	min-width: auto;
	margin: 100px auto;
}
}

@media screen and (max-width:600px) {
#contact div.contact_dis_inner{
	width: 90%;
	min-width: auto;
	margin: 50px auto
}

#contact div.contact_dis_inner h1.title{
	width: 120px;
	margin-bottom: 30px;
	border-bottom: 2px solid #4D4D4D;
	line-height: 0.1em;
}

}



/*wp-pagenavi*/
.wp-pagenavi {
	clear: both;
	text-align:center;

}
.wp-pagenavi a, .wp-pagenavi span {
	color: #4D4D4D;
	background-color: #FFFFFF;
	padding: 8px 15px;
	margin: 0 2px;
	white-space: nowrap;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	-o-transition: 0.2s ease-in-out;
	transition: 0.2s ease-in-out;
	text-align: center;
	text-decoration: none;
	border: thin solid #4D4D4D;
}
.wp-pagenavi a:hover{
	color: #fff;
	background-color: #4D4D4D;
    }
.wp-pagenavi span.current{
	color: #fff;
	background-color: #4D4D4D;
    }

/*slick item_gallery*/
.item_gallery .slick-prev, 
.item_gallery .slick-next {
    position: absolute;
	　z-index: 3;
    top: 0;
    cursor: pointer;
    outline: none;
    height: 100%;
    width: 50%;
}

.item_gallery .slick-prev {
    background-image: url(img/arrow_clear.svg);
    left: -5%;
    z-index: 5;
}

.item_gallery .slick-next {
    background-image: url(img/arrow_clear.svg);
    right: -5%;
    z-index: 5;
}

.item_gallery .slide-one{
	display: none;
}

/*slick item_gallery_list*/
.item_gallery_list .slick-prev, 
.item_gallery_list .slick-next {
    position: absolute;
	　z-index: 3;
    top: 42%;
    cursor: pointer;
    outline: none;
    height: 40px;
    width: 40px;
}

.item_gallery_list .slick-prev {
    background-image: url(img/arrow_l.svg);
    left: -5%;
}

.item_gallery_list .slick-next {
    background-image: url(img/arrow_r.svg);
    right: -5%;
}

.item_gallery_list .slide-one{
	display: none;
}

@media screen and (max-width:1050px) {
.item_gallery_list .slick-prev, 
.item_gallery_list .slick-next {
    height: 30px;
    width: 30px;
}

.item_gallery_list .slick-prev {
    background-image: url(img/arrow_l.svg);
    left: -3%;
}

.item_gallery_list .slick-next {
    background-image: url(img/arrow_r.svg);
    right: -3%;
}

}

@media screen and (max-width:600px) {
.item_gallery_list .slick-prev, 
.item_gallery_list .slick-next {
    height: 20px;
    width: 20px;
}

.item_gallery_list .slick-prev {
    background-image: url(img/arrow_l.svg);
    left: -5%;
}

.item_gallery_list .slick-next {
    background-image: url(img/arrow_r.svg);
    right: -5%;
}
}








