@charset "utf-8";

/* ==========================================================================
   transition
   ========================================================================== */
body::after{
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color:#fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity .3s ease;
}

body.transition::after{
  opacity: 1;
}


/* ==========================================================================
   header
   ========================================================================== */
header{
  display: none;
}

.header-sp{
  width: 100%;
	height: 124px;
  background: #f6f6f6;
  display: flex;
	align-items: center;
  justify-content: center;
}

.header-sp .logo{
  width: 115px;
	height: 86px;
  display: block;
  margin: 2px 0 0 0;
}

@media (min-width: 415px){
.header-sp{
  display: none;
}

header{
  width: 150px;
	height: 100vh;
  background: #f5f5f5;
  position: fixed;
	top: 0;
	left: 0;
  display: flex;
	align-items: center;
}

header .wrap{
  width: 150px;
  overflow: hidden;
  margin: -6vh 0 0 0;
}

header .logo{
  width: 110px;
	height: auto;
  margin: 0 0 70px 20px;
  overflow: hidden;
}

.nav a{
  width: 150px;
  height: auto;
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
  float: left;
  margin: 0 0 15px 0;
  padding: 0 0 0 20px;
}

.sns_nav{
  width: 150px;
  position: absolute;
	bottom: 30px;
	left: 0;
}

.sns_nav a{
  width: 150px;
  height: auto;
  font-size: 1.3rem;
  display: block;
  float: left;
  margin: 0 0 8px 0;
  padding: 0 0 0 20px;
}
}

@media (min-width: 960px){
.header-sp{
  display: none;
}

header{
  width: 180px;
	height: 100vh;
  background: #f5f5f5;
  position: fixed;
	top: 0;
	left: 0;
  display: flex;
	align-items: center;
}

header .wrap{
  width: 180px;
  overflow: hidden;
  margin: -9vh 0 0 0;
}

header .logo{
  width: 120px;
	height: 90px;
  margin: 0 0 80px 30px;
  overflow: hidden;
}

.nav a{
  width: 180px;
  height: auto;
  font-size: 1.5rem;
  font-weight: 400;
  display: block;
  float: left;
  margin: 0 0 19px 0;
  padding: 0 0 0 30px;
  transition: all 0.2s ease;
}

.nav a:hover{
  opacity: 0.3;
}

.sns_nav{
  width: 180px;
  position: absolute;
	bottom: 30px;
	left: 0;
}

.sns_nav a{
  width: 180px;
  height: auto;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  display: block;
  float: left;
  margin: 0 0 8px 0;
  padding: 0 0 0 30px;
}

.sns_nav a:hover{
  opacity: 0.3;
  transition: all 0.2s ease;
  z-index: 100;
}
}



/* ==========================================================================
   contents
   ========================================================================== */
.contents{
  width: 100%;
  height: auto;
}
@media screen and (min-width: 415px){
.contents{
  width: calc(100% - 150px);
  margin: 0 0 0 150px;
}
}
@media (min-width: 960px){
.contents{
  width: calc(100% - 180px);
  margin: 0 0 0 180px;
}
}

section, footer{
  max-width: calc(100% - 8%);
  height: auto;
  overflow: hidden;
  margin: 0 4%;
  padding: 60px 0 10px 0;
}
@media (min-width: 415px){
section, footer{
  max-width: 90%;
  margin: 0 auto;
  padding: 80px 0 10px 0;
}
}
@media (min-width: 960px){
section, footer{
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 0 10px 0;
}
}

.section-ttl{
  width: 100%;
  height: auto;
}

h2{
  margin: 0 0 20px 0;
}
@media (min-width: 415px){
h2{
  margin: 0 0 28px 0;
}
}

h2 img{
  width: auto;
  height: 20px;
}
@media (min-width: 415px){
h2 img{
  height: 22px;
}
}

.line{
  width: 40px;
  height: 1px;
  background: #c8a979;
  margin: 0 0 32px 0;
}
@media (min-width: 415px){
.line{
  width: 40px;
  margin: 0 0 44px 0;
}
}

.page-section{
  max-width: calc(100% - 8%);
  height: auto;
  overflow: hidden;
  margin: 0 4%;
  padding: 50px 0 10px 0;
}
@media (min-width: 415px){
.page-section{
  max-width: 90%;
  margin: 0 auto;
  padding: 80px 0 10px 0;
}
}
@media (min-width: 960px){
.page-section{
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 0 10px 0;
}
}


/* ==========================================================================
   main-visual
   ========================================================================== */
#main-visual .for-tb,
#main-visual .for-pc{
  display: none;
}

@media screen and (min-width: 415px){
#main-visual .for-sp,
#main-visual .for-pc{
  display: none;
}
#main-visual .for-tb{
  display: block;
}
}

@media (min-width: 960px){
#main-visual .for-sp,
#main-visual .for-tb{
  display: none;
}

#main-visual .for-pc{
  display: block;
}
}


/* ==========================================================================
   information
   ========================================================================== */
#information .entry{
  width: 100%;
  border-top: 1px solid #ddd;
  margin: 8px 0 0 0;
}

#information .entry a{
  width: 100%;
  display: block;
}

#information .entry a:hover{
  opacity: 0.3;
  transition: all 0.2s ease;
}

#information .entry .entry-data{
  width: 25%;
  line-height: 1.5em;
  font-weight: 300;
  letter-spacing: 0.02;
  vertical-align: baseline;
  border-bottom: 1px solid #ddd;
  text-align: left;
  padding: 10px 0 10px 4px;
}
@media (min-width: 415px){
#information .entry .entry-data{
  width: 17%;
  font-weight: 400;
  letter-spacing: 0.1em;
}
}

#information .entry .entry-ttl{
  line-height: 1.5em;
  letter-spacing: 0;
  vertical-align: baseline;
  border-bottom: 1px solid #ddd;
  text-align: left;
  padding: 10px 0;
}

.more{
  width: 100%;
  margin: 10px 0 0 0;
  overflow: hidden;
  display: flex;
	flex-direction: row;
  justify-content: flex-start;
  justify-content: flex-end;
}
@media (min-width: 415px){
.more{
  margin: 8px 0 0 0;
  justify-content: flex-end;
}
}

.more a{
  font-size: 1.3rem;
  letter-spacing: 0;
  font-weight: 300;
  display: block;
  transition: all 0.2s ease;
}
@media (min-width: 415px){
.more a{
  font-size: 1.2rem;
  letter-spacing: 0;
}
}
@media (min-width: 960px){
.more a:hover{
  opacity: 0.3;
}
}

.more a i{
  color: rgba(200, 169, 121, 1.0);
}

.sns{
  width: 100%;
  margin: 40px 0 20px 0;
  overflow: hidden;
}
@media (min-width: 415px){
.sns{
  margin: 30px 0 20px 0;
}
}

.sns_btn{
  width: 100%;
  height: auto;
  display: flex;
}
@media (max-width: 414px){
.sns_btn{
  flex-direction: column;
}
}
@media (min-width: 415px){
.sns_btn{
  flex-direction: row;
  justify-content: space-between;
}
}

.sns_btn li{
  width: 100%;
  height: 54px;
  margin: 0 0 12px 0;
}
@media (min-width: 415px){
.sns_btn li{
  width: 31.8%;
  height: 54px;
  margin: 0 0 0 0;
}
}

.sns_btn li a{
  width: 100%;
  height: 54px;
  font-size: 1.4rem;
  text-align: center;
  line-height: 54px;
  letter-spacing: 0;
  display: block;
  background: rgba(200, 169, 121, 0.2);
  box-sizing: border-box;
  transition: all 0.2s ease;
}
@media (min-width: 960px){
.sns_btn li a:hover{
  background: rgba(200, 169, 121, 0.3);
}
}


/* ==========================================================================
   works
   ========================================================================== */
#works ul{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 0 -17px 0;
}

#works ul:before{
  content:"";
  display: block;
  width: 31.8%;
  order: 1;
}
@media (min-width: 415px){
#works ul:before{
  content:"";
  width: 23.5%;
}
}
@media (min-width: 960px){
#works ul:before{
  content:"";
  width: 23.5%;
}
}

#works ul:after{
  content:"";
  display: block;
  width: 31.8%;
}
@media (min-width: 415px){
#works ul:after{
  content:"";
  width: 23.5%;
}
}
@media (min-width: 960px){
#works ul:after{
  content:"";
  width: 23.5%;
}
}

#works li{
  width: 31.8%;
  margin: 0 0 3vw 0;
}
@media (min-width: 415px){
#works li{
  width: 23.5%;
  margin: 0 0 17px 0;
}
}
@media (min-width: 960px){
#works li{
  width: 23.5%;
  margin: 0 0 17px 0;
}
}

#workss li a img{
  width: 100%;
  height: auto;
  display: block;
}

#works li a:hover img{
  opacity: 0.6;
  transition: all 0.3s ease;
}


/* ==========================================================================
   profile
   ========================================================================== */
#profile .text{
  margin: 30px 0 60px 0;
  overflow: hidden;
}

//#profile .text span{
  font-weight: 400;
}

#profile .history,
#profile .work_history{
  margin: 40px 0 0 0;
  overflow: hidden;
}

#profile .ttl{
  width: 100%;
  margin: 0 0 10px 0;
  overflow: hidden;
}

#profile table{
  width: 100%;
  text-align: left;
  overflow: hidden;
  border-top: 1px solid #ddd;
  font-size: 1.3rem;
}

#profile table th{
  width: 20%;
  letter-spacing: 0.05em;
  vertical-align: baseline;
  padding: 6px 0 6px 4px;
  border-bottom: 1px solid #ddd;
}
@media (min-width: 960px){
#profile table th{
  width: 15%;
}
}

#profile table td{
  letter-spacing: 0;
  padding: 6px 0;
  border-bottom: 1px solid #ddd;
}

#profile .note{
  width: 100%;
  font-size: 1.3rem;
  letter-spacing: 0;
  overflow: hidden;
  margin: 8px 0 0 0;
}


/* ==========================================================================
   contact
   ========================================================================== */
#contact .mail{
  width: 100%;
  text-align: center;
  border: 1px solid #ddd;
  margin: 20px 0 0 0;
  padding: 30px 0;
  box-sizing: border-box;
}


/* ==========================================================================
   link
   ========================================================================== */
#link p{
  margin: 0 0 20px 0;
}


/* ==========================================================================
   footer
   ========================================================================== */
footer .attention{
  font-size: 1.1rem;
  line-height: 1.6em;
  letter-spacing: 0;
  margin: 10px 0 20px 0;
}
@media (min-width: 415px){
footer .attention{
  font-size: 1.1rem;
  line-height: 1.6em;
  letter-spacing: 0;
  margin: 60px 0 110px 0;
}
}
@media (min-width: 960px){
footer .attention{
  font-size: 1.1rem;
  line-height: 1.6em;
  letter-spacing: 0;
  margin: 150px 0 40px 0;
}
}

.copyright-sp{
  width: 96%;
	font-size: 1.0rem;
  letter-spacing: 0;
  margin: 0 0 10px 4%;
}
@media (min-width: 415px){
.copyright-sp{
  display: none;
}
}

.copyright{
	font-size: 1.0rem;
  letter-spacing: 0;
	position: fixed;
}
@media (max-width: 414px){
.copyright{
  display: none;
}
}
@media (min-width: 415px){
.copyright{
	font-size: 1.0rem;
  bottom: 10px;
  right: 18px;
}
}
@media (min-width: 960px){
.copyright{
	font-size: 1.0rem;
  bottom: 16px;
  right: 24px;
}
}


/* ==========================================================================
   page-top
   ========================================================================== */
.page-top a{
	width: 44px;
	height: 44px;
	background: #333;
	border-radius: 22px;
	z-index: 10;
	position: fixed;
	bottom: 10px;
	right: 10px;
}
@media (min-width: 415px){
.page-top a{
	width: 44px;
	height: 44px;
	border-radius: 22px;
	position: fixed;
	bottom: 40px;
	right: 18px;
}
}
@media (min-width: 960px){
.page-top a{
	width: 44px;
	height: 44px;
	border-radius: 22px;
	position: fixed;
	bottom: 50px;
	right: 24px;
}
.page-top a:hover img{
	opacity: 0.7;
  transition: all 0.2s ease;
}
}

.page-top a img{
	width: 44px;
	height: 44px;
	display: block;
}


/* ==========================================================================
   page-information
   ========================================================================== */
.page-information{
  margin: 40px 0 100px 0;
}
@media (min-width: 415px){
.page-information{
  margin: 60px 0 100px 0;
}
}
@media (min-width: 960px){
.page-information{
  margin: 60px 0 100px 0;
}
}

.page-information ul{
	width: 100%;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 20px 0 -30px 0;
	padding: 0 0 0 0;
}
@media (min-width: 415px){
.page-information ul{
	margin: 20px 0 -30px 0;
}
}
@media (min-width: 960px){
.page-information ul{
	margin: 20px 0 -30px 0;
}
.page-information ul:after{
	content:"";
	width: 31%;
  display: block;
}
}

.page-information ul li{
	width: 48%;
	margin: 0 0 30px 0;
	display: block;
}
@media (min-width: 415px){
.page-information ul li{
	width: 31%;
	margin: 0 0 30px 0;
}
}
@media (min-width: 960px){
.page-information ul li{
	width: 31%;
	margin: 0 0 30px 0;
}
}

.page-information ul li a{
	display: block;
}

.page-information ul li a img{
	width: 100%;
	height: auto;
	display: block;
  transition: all 0.3s ease;
}
@media (min-width: 960px){
.page-information ul li a:hover img{
	opacity: 0.5;
}
}

.page-information ul li a .thumbnail{
  position: relative;
  width: 100%;
	margin: 0 0 16px 0;
	overflow: hidden;
	float: left;
  box-sizing: border-box;
  border: 1px solid #eee;
}
@media (min-width: 415px){
.page-information ul li a .thumbnail{
	width: 100%;
	margin: 0 0 16px 0;
}
}
@media (min-width: 960px){
.page-information ul li a .thumbnail{
	width: 100%;
	margin: 0 0 16px 0;
}
}

.page-information ul li a .entry-title{
	font-size: 1.2rem;
	line-height: 1.5em;
	letter-spacing: 0;
	font-weight: 300;
  display: block;
	margin: 5px 0 0 0;
	font-family: 'Noto Sans JP', sans-serif;
}
@media (min-width: 415px){
.page-information ul li a .entry-title{
	width: 100%;
	font-size: 1.4rem;
	line-height: 1.5em;
	margin: 5px 0 0 0;
}
}
@media (min-width: 960px){
.page-information ul li a .entry-title{
	width: 100%;
	font-size: 1.4rem;
	line-height: 1.6em;
  letter-spacing: 0;
	margin: 5px 0 0 0;
	transition: all 0.2s ease;
}
.page-information ul li a:hover .entry-title{
	opacity: 1;
}
}

.page-information ul li a .entry-data{
	font-size: 1.2rem;
	line-height: 1em;
	letter-spacing: 0.08em;
	font-weight: 300;
	font-family: 'Montserrat', serif;
	color: #aaa;
}
@media (min-width: 415px){
.page-information ul li a .entry-data{
	font-size: 1.2rem;
	letter-spacing: 0.08em;
}
}
@media (min-width: 960px){
.page-information ul li a .entry-data{
	font-size: 1.2rem;
	letter-spacing: 0.08em;
}
}


/* page-information page-navi
   ========================================================================== */
.wp-pagenavi{
	width: 100%;
	overflow: hidden;
	font-size: 1.4rem;
  font-weight: 400;
	text-align: center;
  margin: 0 0 80px 0;
  padding: 20px 0 0 0;
  border-top: 1px solid #eee;
}
.wp-pagenavi a{
	width: 25px;
	height: 25px;
	text-align: center;
	line-height: 25px;
	margin: 0 6px;
	display: inline-block;
}
.wp-pagenavi .current{
	width: 25px;
	height: 25px;
	text-align: center;
	line-height: 25px;
	opacity: 0.7;
	margin: 0 6px;
	display: inline-block;
}



/* ==========================================================================
   single-entry
   ========================================================================== */
.single-entry{
  margin: 0 0 0 0;
}
@media (min-width: 415px){
.single-entry{
  margin: 60px 0 0 0;
}
}
@media (min-width: 960px){
.single-entry{
  margin: 60px 0 0 0;
}
}

@media (max-width: 414px){
#single-entry h2,
#single-entry .line{
  display: none;
}
}

#single-entry .title{
  margin: 0 0 0 0;
  padding: 0 0 15px 0;
  overflow: hidden;
}
@media (min-width: 415px){
#single-entry .title{
	padding: 0 0 25px 0;
}
}
@media (min-width: 960px){
#single-entry .title{
	padding: 0 0 25px 0;
}
}

#single-entry .title h3{
	font-size: 1.8rem;
	line-height: 1.4em;
	letter-spacing: 0;
	font-weight: 400;
	font-family: 'Noto Sans JP', sans-serif;
}
@media (min-width: 415px){
#single-entry .title h3{
	font-size: 2.0rem;
	line-height: 1.4em;
}
}
@media (min-width: 960px){
#single-entry .title h3{
	font-size: 2.0rem;
	line-height: 1.4em;
	letter-spacing: 0.02em;
}
}

#single-entry .data{
	font-size: 1.3rem;
	line-height: 1em;
	letter-spacing: 0.1em;
	font-weight: 300;
  color: #aaa;
	font-family: 'Montserrat', serif;
	display: inline-block;
}
@media (min-width: 415px){
#single-entry .data{
	font-size: 1.3rem;
}
}
@media (min-width: 960px){
#single-entry .data{
	font-size: 1.3rem;
}
}

#single-entry figure{
	margin: 0 !important;
  overflow: hidden;
}

#single-entry figure img{
  height: auto;
  max-height: 650px;
	margin: 16px 0 3px 0 !important;
  display: block;
  box-sizing: border-box;
  border: 1px solid #eee;
}
@media (min-width: 415px){
#single-entry figure img{
	margin: 25px 0 5px 0 !important;
}
}

#single-entry .entry p{
	font-size: 1.4rem;
  letter-spacing: 0.05em;
	line-height: 1.8em;
	font-family: 'Montserrat', 'Noto Sans JP', sans-serif;
	font-weight: 300;
  margin: 16px 0 0 0 !important;
  overflow: hidden;
}
@media (min-width: 415px){
#single-entry .entry p{
	margin: 20px 0 0 0 !important;
}
}


/* single-entry entry-navi
   ========================================================================== */
.entry-navi{
	width: 100%;
	height: 50px;
	border: 1px solid #ddd;
	margin: 50px 0 60px 0;
  box-sizing: border-box;
  display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
}
@media (min-width: 415px){
.entry-navi{
	margin: 80px 0 100px 0;
}
}

.entry-navi .prev a{
  margin: 0 30px 0 0;
}

.entry-navi .list a{
}

.entry-navi .next a{
  margin: 0 0 0 30px;
}

.entry-navi a{
  width: auto;
	font-size: 1.3rem;
	line-height: 1em;
  font-weight: 300;
	letter-spacing: 0;
	display: block;
}

.entry-navi a i{
  color: rgba(200, 169, 121, 1.0);
}

@media (min-width: 960px){
.entry-navi a:hover{
	opacity: 0.3;
	transition: all 0.2s ease;
}
}


/* ==========================================================================
   drawer menu
   ========================================================================== */
.drawer_menu{
  width: 60px;
  height: 60px;
  background: #226569;
  background: #f6f6f6;
  position: fixed;
  top: 0;
  right: 0;
  display: block;
  z-index: 1100;
}

.drawer_menu a{
  color: inherit;
  text-decoration: none;
  display: block;
  transition: 0.2s ease-in-out;
}

.drawer_menu a:visited{
  color: inherit;
}

.drawer_menu .drawer_bg{
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 900;
  background-color: rgba(34, 101, 105, 0.6);
  display: none;
  top: 0;
  left: 0;
}

.drawer_menu .drawer_button{
  display: block;
  border: none;
  outline: none;
  background: none;
  cursor: pointer;
  z-index: 1200;
  color: #232448;
  margin: 21px 0 0 17px;
}

.drawer_menu .drawer_nav_wrapper{
  width: 100%;
  height: 100%;
  transition: all 0.2s;
  transform: translate(460px);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  background-color: #fff;
	display: flex;
	flex-direction: column;
  justify-content: center;
	align-items: center;
}

.drawer_menu .drawer_nav_wrapper.open{
  transform: translate(0);
}

.menu-trigger,
.menu-trigger span{
  display: inline-block;
  transition: all .2s;
  box-sizing: border-box;
}

.menu-trigger{
  position: relative;
  width: 26px;
  height: 18px;
}

.menu-trigger span{
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
}

.menu-trigger span:nth-of-type(1){
  top: 0;
}

.menu-trigger span:nth-of-type(2){
  top: 8px;
}

.menu-trigger span:nth-of-type(3){
  bottom: 0;
}

.menu-trigger.active span:nth-of-type(1){
  transform: translateY(8px) rotate(-45deg);
  background-color: #333;
}

.menu-trigger.active span:nth-of-type(2){
  opacity: 0;
  background-color: #333;
}

.menu-trigger.active span:nth-of-type(3){
  transform: translateY(-8px) rotate(45deg);
  background-color: #333;
}

.drawer_menu .drawer_nav li a{
  font-size: 2.0rem;
  font-weight: 300;
  letter-spacing: 0.02em;
  padding: 11px 0;
}

.drawer_menu .drawer_nav_sns{
  margin: 35px 0 0 0;
}

.drawer_menu .drawer_nav_sns li a{
  font-size: 1.6rem;
  font-weight: 300;
  padding: 8px 0;
}


@media screen and (min-width: 415px){
.drawer_menu{
  display: none;
}
}
