@charset "utf-8";
/* CSS Document */

img {
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.cf::after{
    content: "";
    display: block;
    clear: both;
}


@media screen and (min-width: 769px){
	.pc{	
			display: block
	}
}
.sp{
	display: none;
}

@media screen and (max-width: 768px){
	.pc{	
			display: none;
	}
}
.sp{
	display: block;
}



a{
	text-decoration-line: none;
	color: #fff;
}


body{
	background-color: #DBC3A7;
	font-family: playfair Display,"Hiragino Sans";
	text-transform: uppercase;
	color: #4D4842;
}

@media screen and (max-width: 519px){
	body,p,a{
		font-size: 14px;
	}
}



/*ここからハンバーガー*/

/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 12px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active {
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition     : all 0.3s ease-in-out;
  transition        : all 0.3s ease-in-out;
  -webkit-transition-delay: 0.6s;
  -o-transition-delay     : 0.6s;
  transition-delay        : 0.6s;
  -webkit-transform: rotate(45deg);
  -ms-transform    : rotate(45deg);
  -o-transform     : rotate(45deg);
  transform        : rotate(45deg);
}
.hamburger.active span:nth-child(2){
  width: 0px;
}
.hamburger.active span:nth-child(1),
.hamburger.active span:nth-child(3){
  background :#fff;
  -webkit-transition-delay: 0.3s;
  -o-transition-delay: 0.3s;
  transition-delay: 0.3s;
}
.hamburger.active span:nth-child(1){
  -webkit-transform: translateY(4px);
  -ms-transform    : translateY(4px);
  -o-transform     : translateY(4px);
  transform        : translateY(4px);
}

.hamburger.active span:nth-child(3){
  -webkit-transform: translateY(-16px) rotate(90deg);
  -ms-transform: translateY(-16px) rotate(90deg);
  -o-transform : translateY(-16px) rotate(90deg);
  transform    : translateY(-16px) rotate(90deg);
}


nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #4D4842;
  background: rgba(237, 225, 211, 0.9);
  width: 40%;
  height: 100vh;
  margin-left: 60%;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
}

@media screen and (max-width: 768px){
	nav.globalMenuSp{
		width: 70%;
		margin-left: 30%;
	}
}


nav.globalMenuSp ul {
  margin: 3.5em auto 0;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding-left: 3em;
	font-size: 1.3em;
  width: 100%;
	height: 4em;
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :#fff;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #4D4842;
  padding: 1em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;

}

.works_nav{
	font-size: 0.7em;
}

.works_nav li{
	
}


/*	ここまでハンバーガメニュー*/	
	
	



.footer{
	font-size: 70%;
	text-align: center;
	margin-bottom: 30px;
}