@charset "utf-8";

/* ==========================================================================
   header_nav
   ========================================================================== */
/*#home .header_nav{
  display: none;
}

.header_nav{
	width: 100%;
	padding: 0 3.6%;
  height: 70px;
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	flex-direction: row;
  align-items: center;
  justify-content: space-between;
	z-index: 100;
  background-color: #fff;
	box-sizing: border-box;
}

.header_nav .nav_logo a{
	width: auto;
	height: 62px;
	display: block;
	margin: 6px 0 0 0;
}

.header_nav ul{
	display: block;
	float: left;
	margin: 0 0 0 0;
}

.header_nav li{
	display: block;
	float: left;
	margin: 0 0 0 30px;
}

.header_nav li a{
	color: #202020;
	font-size: 1.4rem;
	font-weight: 500;
  letter-spacing: 0.2em;
	transition: all 0.2s ease;
}

.header_nav li a:hover{
	color: #54c3f1;
}*/


/* ==========================================================================
   motion, scroll-effect
   ========================================================================== */
.motion-img{
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 0;
	margin: 0;
	background-color: #0f0f0f;
}

.motion-img:after{
  content: '';
  position: absolute;
  opacity: 1;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
	height: 97.3%;
	height: 100%;
	background-color: rgba(250, 234, 55, 1);
	background-color: #3a3a3a;
	background-color: #2a2a2a;
	background-color: #282828;
  transform: translate3d(-101%, 0, 0);
}

.motion.show .motion-img:after{
  transition-property: transform, opacity;
  transition-duration: 0.6s;
  transition-delay: 0.1s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 0, 0);
}

.motion.done .motion-img:after{
  transition-property: transform;
  transition-duration: 0.9s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(103%, 0, 0);
}

.motion-img .motion-inner{
  display: inline-block;
  opacity: 0;
}

.motion.done .motion-img .motion-inner{
  opacity: 1;
}

.fadeInUp{
  transform: translateY(50px);
  transition: all .3s ease-out;
	opacity: 0;
}

.fadeInUp.active{
  transform: translateY(0);
	opacity: 1;
}

.fadeInRight{
  transform: translateX(50px);
  transition: all .3s ease-out;
	opacity: 0;
}

.fadeInRight.active{
  transform: translateX(0);
	opacity: 1;
}

.fadeIn{
  transition: all .3s ease-out;
	opacity: 0;
}

.fadeIn.active{
	opacity: 1;
}


/* ==========================================================================
   page_header
   ========================================================================== */
.page_header{
	width: 100vw;
	display: flex;
	align-items: center;
  justify-content: space-between;
	padding: 5.7vw 5vw;
	z-index: 50;
	box-sizing: border-box;
}
@media (min-width: 415px){
.page_header{
	display: flex;
	align-items: center;
  justify-content: space-between;
	padding: 3.4vw 5vw;
	z-index: 50;
}
}
@media (min-width: 960px){
.page_header{
	padding: 2.5vw 3.5vw;
}
}
@media (min-width: 1500px){
.page_header{
	padding: 2.7vw 3.5vw;
}
}
@media (min-width: 2000px){
.page_header{
	padding: 3vw 3.5vw;
}
}

.page_logo a{
	width: 180px;
	height: auto;
	display: block;
}
@media (min-width: 415px){
.page_logo a{
	width: 245px;
}
}
@media (min-width: 960px){
.page_logo a{
	width: 305px;
}
}

.page_nav{
	display: none;
}
@media (min-width: 415px){
.page_nav{
	display: none;
}
}
@media (min-width: 960px){
.page_nav{
	display: block;
	margin: 0 7.5vw 0 0;
}
}
@media (min-width: 1500px){
.page_nav{
	margin: 0 6.5vw 0 0;
}
}
@media (min-width: 2000px){
.page_nav{
	margin: 0 5.5vw 0 0;
}
}

.page_nav a{
  color: #202020;
	font-size: 1.45rem;
	font-weight: 500;
  letter-spacing: 0.15em;
	color: #ddd;
  display: block;
  float: left;
	margin: 0 0 0 26px;
  transition: all 0.2s ease;
}

/*.page_nav a:hover{
	color: #444;
}*/

.page_nav a.current{
	font-weight: 600;
	color: #444;
}


/* ==========================================================================
   page_section
   ========================================================================== */
.page_section{
	padding: 0 5vw;
}
@media (min-width: 415px){
.page_section{
	padding: 0 5vw;
}
}
@media (min-width: 960px){
.page_section{
	padding: 0 3.5vw;
}
}


/* ==========================================================================
   page_ttl
   ========================================================================== */
.page_ttl{
	position: relative;
	margin: 20px 0 40px 0;
	margin: 60px 0 90px 0;
	overflow: hidden;
	padding: 0 5vw;
}
@media (min-width: 415px){
.page_ttl{
	margin: 20px 0 40px 0;
	margin: 40px 0 80px 0;
  padding: 0 5vw;
}
}
@media (min-width: 960px){
.page_ttl{
	margin: 10px 0 60px 0;
	margin: 10px 0 70px 0;
  padding: 0 3.5vw;
}
}

.page_ttl h2{
	font-size: 2.4rem;
	font-weight: 500;
	letter-spacing: 0.18em;
	color: #ddd;
}
@media (min-width: 415px){
.page_ttl h2{
	font-size: 2.8rem;
}
}
@media (min-width: 960px){
.page_ttl h2{
	font-size: 3.4rem;
}
}

.page_ttl .ttl_read{
	font-size: 1.3rem;
  letter-spacing: 0.02em;
	font-weight: 300;
	color: #ddd;
	margin: 12px 0 0 0;
}
@media (min-width: 415px){
.page_ttl .ttl_read{
	letter-spacing: 0.1em;
	margin: 15px 0 0 0;
}
}
@media (min-width: 960px){
.page_ttl .ttl_read{
	letter-spacing: 0.1em;
	margin: 25px 0 0 0;
}
}


/* ==========================================================================
   works_tab
   ========================================================================== */
.works_tab{
  margin: 50px 0 35px 0;
	padding: 0 5vw;
	overflow: hidden;
}
@media (min-width: 415px){
.works_tab{
  margin: 55px 0 45px 0;
	padding: 0 5vw;
}
}
@media (min-width: 960px){
.works_tab{
  margin: 50px 0 75px 0;
	padding: 0 3.5vw;
}
}

.works_tab ul{
	width: 100%;
	display: flex;
	flex-direction: row;
	justify-content: center;
	border-bottom: 1px solid #272727;
	box-sizing: border-box;
}

.works_tab ul li{
	width: auto;
	height: 28px;
	display: block;
	float: left;
	margin: 0 11px;
}
@media (min-width: 415px){
.works_tab ul li{
	width: auto;
	height: 32px;
	display: block;
	float: left;
	margin: 0 15px;
}
}
@media (min-width: 960px){
.works_tab ul li{
	width: auto;
	height: 36px;
	display: block;
	float: left;
	margin: 0 22px;
}
}

.works_tab ul li a{
	height: 28px;
	font-size: 1.4rem;
  letter-spacing: 0.09em;
	line-height: 1em;
	font-weight: 500;
	color: #444;
  color: #ddd;
	display: block;
	float: left;
}
@media (min-width: 415px){
.works_tab ul li a{
	height: 32px;
	font-size: 1.6rem;
  letter-spacing: 0.1em;
}
}
@media (min-width: 960px){
.works_tab ul li a{
	height: 36px;
	font-size: 1.8rem;
  letter-spacing: 0.1em;
	transition: all 0.2s ease;
}
}

/*@media (min-width: 960px){
.works_tab ul li a:hover{
	color: #ddd;
  color: #444;
}
}*/

.works_tab ul li a.current{
  color: #ddd;
	border-bottom: 1px solid #ddd;
}


/* ==========================================================================
   works_article-list
   ========================================================================== */
#works .page_section{
	margin: 0 0 -25px 0;
}
@media (min-width: 415px){
#works .page_section{
  margin: 0 0 -25px 0;
}
}
@media (min-width: 960px){
#works .page_section{
  margin: 0 0 -40px 0;
}
}

#works ul.entry{
  width: 100%;
  z-index: 200;
  display: flex;
	flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
	box-sizing: border-box;
}

@media (min-width: 960px){
#works ul.entry:after{
  content:"";
	width: 33.0%;
  display: block;
}
}

#works .entry li{
  width: 100%;
  margin: 0 0 25px 0;
}
@media (min-width: 415px){
#works .entry li{
  width: 49.3%;
  margin: 0 0 25px 0;
}
}
@media (min-width: 960px){
#works .entry li{
  width: 33.0%;
  margin: 0 0 40px 0;
}
}

#works .entry li a{
  width: 100%;
  height: 100%;
  color: #f0f0f0;
  margin: 0 0 18px 0;
  display: block;
  float: left;
  position: relative;
}
@media (min-width: 415px){
#works .entry li a{
  width: 100%;
  margin: 0 0 18px 0;
}
}
@media (min-width: 960px){
#works .entry li a{
  width: 100%;
  margin: 0 0 18px 0;
}
}

#works .entry li a .thumb_wrap{
	width: 100%;
	display: block;
	float: left;
	overflow: hidden;
}
@media (min-width: 415px){
#works .entry li a .thumb_wrap{
	width: 100%;
}
}
@media (min-width: 960px){
#works .entry li a .thumb_wrap{
	width: 100%;
}
}

#works .entry li a .thumb{
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
}

#works .entry li a .thumb-inner{
  width: 100%;
  height: auto;
	margin: 0;
	overflow: hidden;
	display: block;
  float: left;
}
@media (min-width: 415px){
#works .entry li a .thumb-inner{
	width: 100%;
}
}
@media (min-width: 960px){
#works .entry li a .thumb-inner{
	width: 100%;
}
}

#works .entry li a .thumb-inner img{
	width: 100%;
	height: auto;
	display: block;
	transition: all 0.5s ease;
}

@media (min-width: 960px){
#works .entry li a:hover .thumb-inner img{
	transform: scale(1.08, 1.08);
}
}

@media (min-width: 960px){
#works .entry li a .thumb-inner .hover{
	width: 100%;
	height: 100%;
	background-color:rgba(27,27,27,0.75);
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
  align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 2.0rem;
	font-weight: 500;
	letter-spacing: 0.10em;
	transition: all 0.4s ease;
  opacity: 0;
}
}

/*@media (min-width: 960px){
#works .entry li a .thumb-inner .hover:hover{
  opacity: 1;
	letter-spacing: 0.18em;
}
}*/

#works .entry li a .text-box{
  width: 100%;
  display: block;
  float: left;
}

#works .entry li a .title{
  width: 100%;
  font-size: 1.3rem;
  line-height: 1.5em;
  letter-spacing: 0.02em;
  display: block;
  float: left;
  margin: 10px 0 0 0;
  transition: all 0.2s ease;
}
@media (min-width: 415px){
#works .entry li a .title{
  font-size: 1.3rem;
  line-height: 1.5em;
  letter-spacing: 0.02em;
  margin: 10px 0 0 0;
}
}
@media (min-width: 960px){
#works .entry li a .title{
  font-size: 1.3rem;
  line-height: 1.5em;
  letter-spacing: 0.02em;
  margin: 15px 0 0 0;
}
}

#works .entry li a .data{
  font-size: 1.25rem;
  line-height: 1em;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #666;
  clear: both;
	transition: all 0.2s ease;
  position: absolute;
  bottom: 0;
  left: 0;
}

#works .viewmore{
	width: 100%;
	height: auto;
	display: flex;
  align-items: center;
	justify-content: center;
}

#works .viewmore a{
	width: 100%;
	height: auto;
	font-size: 1.5rem;
	height: 52px;
	line-height: 52px;
	letter-spacing: 0.15em;
	font-weight: 500;
	text-align: center;
	color: #ddd;
	background-color: #3a3a3a;
	background-color: #1b1b1b;
	margin: 5px 0 45px 0;
	border-radius: 3px;
	display: inline-block;
	box-sizing: border-box;
}
@media (min-width: 415px){
#works .viewmore a{
	width: 40%;
	font-size: 1.6rem;
	height: 54px;
	line-height: 54px;
  margin: 20px auto 35px;
}
}
@media (min-width: 960px){
#works .viewmore a{
	width: 24%;
	height: 58px;
	line-height: 58px;
	font-size: 1.6rem;
  margin: 40px auto 55px;
	transition: all 0.2s ease;
}
}

@media (min-width: 960px){
#works .viewmore a:hover{
	color: #0f0f0f;
	background: #eee;
}
}

#works .loader,
#works .loader:after{
  border-radius: 50%;
  width: 6em;
  height: 6em;
}

#works .loader{
  margin: 40px auto 0;
  font-size: 5px;
  position: relative;
  text-indent: -9999em;
  border-top: 1.1em solid rgba(255, 255, 255, 0.2);
  border-right: 1.1em solid rgba(255, 255, 255, 0.2);
  border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
  border-left: 1.1em solid #ffffff;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}

@-webkit-keyframes load8{
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes load8{
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}


/* ==========================================================================
   works_post
   ========================================================================== */
.wp-block-image {
  margin-bottom: 0;
}
figure {
  display: block;
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

#works_post{
	overflow: hidden;
}

.post{
  width: 100%;
  margin: 0 0 0 0;
  overflow: hidden;
}
@media (min-width: 415px){
.post{
  margin: 0 0 0 0;
}
}
@media (min-width: 960px){
.post{
  margin: 0 0 0 0;
}
}

.thumb_wrap{
	width: 100%;
  height: auto;
	overflow: hidden;
	background: #1b1b1b;
}
@media (min-width: 415px){
.thumb_wrap{
	width: 100%;
}
}
@media (min-width: 960px){
.thumb_wrap{
	width: 100%;
}
}

.post .thumb{
  width: 100%;
  height: auto;
  position: relative;
}
@media (min-width: 415px){
.post .thumb{
	width: 100%;
}
}
@media (min-width: 960px){
.post .thumb{
  width: 67vw;
	margin: 0 auto;
}
}

.post .thumb img{
  width: 100%;
  height: auto;
  display: block;
}
@media (min-width: 415px){
.post .thumb img{
  width: 100%;
}
}
@media (min-width: 960px){
.post .thumb img{
  width: 100%;
}
}

.post .post_tag{
  line-height: 1em;
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.08em;
	text-transform: capitalize;
	color: #444;
  margin: 40px 0 0 5%;
}
@media (min-width: 415px){
.post .post_tag{
  font-size: 1.45rem;
  letter-spacing: 0.15em;
  margin: 50px 0 0 5%;
}
}
@media (min-width: 960px){
.post .post_tag{
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  margin: 80px 0 0 0;
}
}

.post .post_ttl{
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.02em;
	line-height: 1.6em;
	color: #ddd;
  padding: 22px 5% 0;
}
@media (min-width: 415px){
.post .post_ttl{
  font-size: 1.8rem;
	letter-spacing: 0.05em;
  padding: 28px 0 0 5%;
}
}
@media (min-width: 960px){
.post .post_ttl{
  font-size: 2.0rem;
	letter-spacing: 0.06em;
  margin: 0 0 0 0;
	padding: 30px 0 0 0;
}
}

.post .post_info{
	width: 100%;
  font-size: 1.25rem;
  line-height: 1.5em;
  font-weight: 400;
  letter-spacing: 0.02em;
	color: #666;
  color: #444;
  margin: 8px 0 0 5%;
}
@media (min-width: 415px){
.post .post_info{
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  margin: 8px 0 0 5%;
}
}
@media (min-width: 960px){
.post .post_info{
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin: 10px 0 0 0;
}
}

.post .post_info span{
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 8px 0 0;
}


.post_content{
  margin: 35px 5vw 0;
}
@media (min-width: 415px){
.post_content{
  margin: 50px 5vw 0;
}
}
@media (min-width: 960px){
.post_content{
  margin: 90px 0 0 0;
}
}

.post .post_content p{
  font-size: 1.4rem;
  line-height: 2.0em;
  font-weight: 400;
	color: #ddd;
  margin: 0 0 20px 0;
  overflow: hidden;
}
@media (min-width: 415px){
.post .post_content p{
  font-size: 1.4rem;
  line-height: 2.0em;
  letter-spacing: 0.05em;
  margin: 0 0 30px 0;
}
}
@media (min-width: 960px){
.post .post_content p{
  width: 100%;
  font-size: 1.4rem;
  line-height: 2.0em;
  letter-spacing: 0.05em;
  margin: 0 0 30px 0;
}
}

.post .post_content figure{
	width: 100%;
  height: auto;
  margin: 6px 0 0 0;
	overflow: hidden;
}
@media (min-width: 415px){
.post .post_content figure{
	width: 100%;
  height: auto;
  margin: 8px 0 0 0;
}
}
@media (min-width: 960px){
.post .post_content figure{
	width: 100%;
  height: auto;
  margin: 8px 0 0 0;
}
}

.post .post_content img{
	width: 100%;
  height: auto;
  display: block;
}

.post .post_content .web_wrap{
	width: 100%;
  height: auto;
  margin: 6px 0 0 0;
	overflow: hidden;
  position: relative;
}
@media (min-width: 415px){
.post .post_content .web_wrap{
	width: 100%;
  height: auto;
  margin: 8px 0 0 0;
}
}
@media (min-width: 960px){
.post .post_content .web_wrap{
	width: 100%;
  height: auto;
  margin: 8px 0 0 0;
}
}

.post .post_content .web_wrap img{
	width: 100%;
  height: auto;
  display: block;
}

.post .post_content .web_wrap .movie_wrap{
	width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
	justify-content: center;
}

.post .post_content .web_wrap .movie{
	width: 71.6%;
  height: auto;
  display: block;
  border-radius: 3px;
  overflow: hidden;
}
@media (min-width: 415px){
.post .post_content .web_wrap .movie{
  border-radius: 5px;
}
}
@media (min-width: 960px){
.post .post_content .web_wrap .movie{
  border-radius: 11px;
}
}

.post .post_content .btn_site a{
	width: 100%;
	height: auto;
	font-size: 1.5rem;
	height: 54px;
	line-height: 54px;
  letter-spacing: 0.15em;
  font-weight: 500;
	text-transform: capitalize;
	color: #0f0f0f;
	background: #eee;
	margin: 5px 0 30px 0;
	padding: 0 20px;
	border-radius: 3px;
  display: inline-block;
	box-sizing: border-box;
	position: relative;
}
@media (min-width: 415px){
.post .post_content .btn_site a{
	width: 40%;
	font-size: 1.6rem;
	height: 54px;
	line-height: 54px;
	margin: 0 0 30px 0;
	padding: 0 24px;
}
}
@media (min-width: 960px){
.post .post_content .btn_site a{
	width: 27%;
	font-size: 1.6rem;
	height: 58px;
	line-height: 58px;
	margin: 0 0 30px 0;
	padding: 0 24px;
  transition: all 0.2s ease;
}
}

.post .post_content .btn_site a::after{
	font-size: 1.5rem;
  font-family: "Font Awesome 5 Free";
	content: "\f061";
	-webkit-font-smoothing: antialiased;
  display: inline-block;
	font-weight: bold;
	position: absolute;
	top: 0;
	right: 0.9em;
}
@media (min-width: 415px){
.post .post_content .btn_site a::after{
	font-size: 1.6rem;
	top: 0;
	right: 1.0em;
}
}
@media (min-width: 960px){
.post .post_content .btn_site a::after{
	font-size: 1.6rem;
	top: 0;
	right: 1.2em;
}
}

@media (min-width: 960px){
.post .post_content .btn_site a:hover{
	color: #ddd;
	background: #1b1b1b;
}
}

.post .backto{
  width: 100%;
  height: auto;
  margin: 60px 0 0 0;
  padding: 0 5vw;
  box-sizing: border-box;
}
@media (min-width: 415px){
.post .backto{
  margin: 70px 0 0 0;
  padding: 0 5vw;
}
}
@media (min-width: 960px){
.post .backto{
  margin: 90px 0 0 0;
  padding: 0;
}
}

.post .backto a{
  font-size: 1.5rem;
  letter-spacing: 0.09em;
	line-height: 1em;
	font-weight: 500;
  color: #ddd;
  display: inline-block;
  padding: 0 0 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  transition: all 0.2s ease;
}
@media (min-width: 415px){
.post .backto a{
  font-size: 1.6rem;
}
}
@media (min-width: 960px){
.post .backto a{
  font-size: 1.7rem;
}
}

/*@media (min-width: 960px){
.post .backto a:hover{
  opacity: 0.3;
}
}*/

.post .backto a img{
  width: 12px;
  height: auto;
  display: inline-block;
  margin: 0 15px -1px 0;
  transition: all 0.2s ease;
}
@media (min-width: 415px){
.post .backto a img{
  width: 12px;
  margin: 0 18px -1px 0;
}
}
@media (min-width: 960px){
.post .backto a img{
  width: 14px;
  margin: 0 20px -1px 0;
}
}

.post .page_btn{
  height: auto;
  margin: 20px 5vw 0 5vw;
  padding: 16px 0 0 0;
  border-top: 1px solid #272727;
  position: relative;
}
@media (min-width: 415px){
.post .page_btn{
  margin: 30px 5vw 0 5vw;
  padding: 20px 0 0 0;
}
}
@media (min-width: 960px){
.post .page_btn{
  margin: 50px 0 0 0;
  padding: 25px 0 0 0;
}
}

.post .page_btn a{
  font-size: 1.8rem;
  letter-spacing: 0.09em;
	line-height: 1em;
	font-weight: 500;
  color: #ddd;
  display: inline-block;
  transition: all 0.2s ease;
}
@media (min-width: 415px){
.post .page_btn a{
  font-size: 2.2rem;
}
}
@media (min-width: 960px){
.post .page_btn a{
  font-size: 2.6rem;
}
}

.post .page_btn a p{
  display: none;
}
@media (min-width: 415px){
.post .page_btn a p{
  display: none;
}
}
@media (min-width: 960px){
.post .page_btn a p{
  font-size: 1.2rem;
  color: #444;
  letter-spacing: 0;
  display: block;
  margin: 16px 0 0 0;
}
}

/*@media (min-width: 960px){
.post .page_btn a:hover{
  color: #444;
}
}*/

.post .page_btn .prev{
  float: left;
}

.post .page_btn .next{
  float: right;
  text-align: right;
}

.post .page_btn_text{
  width: 100%;
  font-size: 1.8rem;
  letter-spacing: 0.09em;
	line-height: 1em;
	font-weight: 500;
  color: #222;
  padding: 16px 0 0 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 415px){
.post .page_btn_text{
  font-size: 2.2rem;
  padding: 20px 0 0 0;
}
}
@media (min-width: 960px){
.post .page_btn_text{
  font-size: 2.6rem;
  padding: 25px 0 0 0;
}
}


/* ==========================================================================
   relation
   ========================================================================== */
.relation{
	width: 100%;
	color: #ddd;
	border-top: 0px solid #333;
  border-radius: 0px;
  /*background: #141414;*/
	box-sizing: border-box;
	overflow: hidden;
	float: left;
	display: block;
	margin: 40px 0 30px 0!important;
	padding: 20px 0!important;
}
@media (min-width: 415px){
.relation{
	margin: 40px 0 70px 0!important;
	padding: 22px 0 0 0!important;
}
}
@media (min-width: 960px){
.relation{
	margin: 50px 0 110px 0!important;
	padding: 30px 0 0 0!important;
}
}

.relation h2{
	width: 100%;
	font-size: 1.7rem;
	line-height: 1em;
	letter-spacing: 0.05em;
	font-weight: 500;
	color: #777;
	padding: 0!important;
	border: 0!important;
	margin: 0 0 20px 0!important;
}
@media (min-width: 415px){
.relation h2{
	font-size: 1.8rem;
  letter-spacing: 0.15em;
	margin: 0 0 30px 0!important;
}
}
@media (min-width: 960px){
.relation h2{
	font-size: 2.0rem;
  letter-spacing: 0.15em;
	margin: 0 0 40px 0!important;
}
}

.relation ul{
	width: 100%;
	overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
	margin: 0!important;
}
@media (min-width: 415px){
.relation ul{
	margin: 0!important;
}
}
@media (min-width: 960px){
.relation ul{
	margin: 0!important;
}
}

.relation ul::before{
  content:"";
  display: block;
  width: 49.5%;
  order: 1;
}
@media (min-width: 415px){
.relation ul::before{
  width: 32.6%;
	margin: 0!important;
}
}
@media (min-width: 960px){
.relation ul::before{
  width: 24.5%;
}
}

.relation ul::after{
	content:"";
  display: block;
  width: 49.5%;
}
@media (min-width: 415px){
.relation ul::after{
  width: 32.6%;
	margin: 0!important;
}
}
@media (min-width: 960px){
.relation ul::after{
  width: 24.5%;
}
}

.relation ul li a{
	color: #202020;
	text-decoration: none!important;
}

.relation ul li{
	width: 49.5%;
	display: block;
	transition: all 0.2s ease;
	list-style: none;
	margin: 0 0 14px 0;
	padding: 0;
}
@media (min-width: 415px){
.relation ul li{
  width: 32.6%;
	margin: 0 0 16px 0;
}
}
@media (min-width: 960px){
.relation ul li{
  width: 24.5%;
	margin: 0 0 20px 0;
}
}

.relation ul li a .thumb{
	width: 100%;
	height: auto;
	position: relative;
	margin: 0 0 8px 0;
  overflow: hidden;
}
@media (min-width: 415px){
.relation ul li a .thumb{
	margin: 0 0 12px 0;
}
}
@media (min-width: 960px){
.relation ul li a .thumb{
	margin: 0 0 12px 0;
}
}

.relation ul li a .thumb img{
	width: 100%;
	height: auto;
	display: block;
	transition: all 0.3s ease;
}
@media (min-width: 960px){
.relation ul li a:hover .thumb img{
	filter: saturate(100%)brightness(80%);
}
}

.relation .tag{
  font-size: 1.1rem;
  font-weight: 400;
	line-height: 1.6em;
  letter-spacing: 0.1em;
	text-transform: capitalize;
	color: #666;
  margin: 0 0 6px 0;
  display: none;
}
@media (min-width: 415px){
.relation .tag{
  font-size: 1.2rem;
	line-height: 1.6em;
  letter-spacing: 0.1em;
  margin: 0 0 5px 0;
}
}
@media (min-width: 960px){
.relation .tag{
  font-size: 1.2rem;
	line-height: 1.6em;
  letter-spacing: 0.1em;
  margin: 0 0 5px 0;
}
}

.relation ul li a .title{
	font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.4em;
	letter-spacing: 0;
	color: #ddd;
  color: #444;
	display: block;
	padding: 0 10px 0 0;
}
@media screen and (min-width:480px) and (max-width:959px){
.relation ul li a .title{
	font-size: 1.1rem;
  line-height: 1.4em;
	letter-spacing: 0.05em;
	padding: 0 0 0 0;
}
}
@media screen and (min-width: 960px){
.relation ul li a .title{
	font-size: 1.2rem;
  line-height: 1.5em;
	letter-spacing: 0.05em;
	padding: 0 0 0 0;
	transition: all 0.2s ease;
}
}

/*@media screen and (min-width: 960px){
.relation ul li a:hover .title{
	color: #444;
}
}*/
