@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #707070; /* RGB */
  
  font-family: "Noto Sans JP", 'PT Serif Caption', YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
  font-size: 2em;
  line-height: 1.5;
  text-align: center;
}
a {
  text-decoration: none;
  color: #707070;
}
.works-img-li a {
  width: 100%;
  display: block;
}
.openbtn1 {
  display: none;
}
header .active {
  color:#BDB380;
}
header {
  height: 168px;
  /*background-color: #FADDDD;*/
  position: relative;
}
header::before {
  content: "";
  width: 100%;
  display: block;
  background-color: #FADDDD;
  height: 36vw;
  position: absolute;
  max-height:602px;
}
.header_contents {
  max-width: 1680px;
  margin: 0 auto;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: PT Serif Caption;
  padding: 40px 10px 58px 10px;
  box-sizing: border-box;
}
.header_contents-h1 {
  font-size: 44px;
}
header nav ul {
  display: flex;
  justify-content: space-between;
  padding: 12px 0px;
}
header nav ul li {
  margin: 0 20px;
}
header h1 {
  display: flex;
  align-items: center;
  font-size: 2.75rem;
  color: #707070;
  left: 24px;
  top: 10px;
  font-family: Times New Roman,serif;
}

.header__navigation {
  display: none;
}

@media (max-width: 985px) {
  header nav ul {
    display: block;
  }
  header nav ul li {
    margin: 30px auto;
  }
  .header nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
  top:0;
    right: -120%;
  width:100%;
    height: 100vh;/*ナビの高さ*/
  background:#FFF7F7;
    /*動き*/
  transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
.header nav.panelactive{
  right: 0;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1{
  display: block;
  position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
  top: 42px;
  right: 10px;
  cursor: pointer;
  width: 60px;
  height:60px;
}
  
/*×に変化*/  
.openbtn1 span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
  background-color: #666;
    width: 45%;
  }

.openbtn1 span:nth-of-type(1) {
  top:15px; 
}

.openbtn1 span:nth-of-type(2) {
  top:23px;
}

.openbtn1 span:nth-of-type(3) {
  top:31px;
}

.openbtn1.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
}


section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.8;
}
.none {
  display:none;
}
.pc-show {
  display: block;
}
.sp-show {
  display: none;
} 

@media (max-width: 767px) {
  .pc-show {
    display: none;
  } 
  .sp-show {
    display: block;
    font-family: times new roman;
    font-size: 16px;
  }
  .openbtn1 {
  top: 5px;
  width: 50px;
  height: 50px;
  }
}

