@charset "UTF-8";
/* CSS Document */
.header{
  background-color: #D5D0CC;
  padding: 25px 0 65px;
}
.header-top{
  display: flex;
  padding: 0 140px;
}
.header-top p{
  font-size: 25px;
  font-family: "Times New Roman", Times, "serif";
  margin-top:31px;
  color:#333;
}
.header-logo-pc {
  list-style: none;
  font-size:28px;
  font-family: "Times New Roman", Times, "serif";
}
.header-logo-pc{
  display: flex;
  gap:20px;
  margin:0 0 0 auto;
  text-align: right;
}
.header-top a{
  color: #333;
  text-decoration: none;
  
}
.header-logo h3 {
  font-size: 2.5rem;
}
.header-logo img{
  max-width:100%;
  max-height: 100%;
}
.header-logo{
  text-align: left;
  margin-left: 140px;
}
.header-top-image img{
  max-width: 100%;
  max-height: 100%;
}
.header-top-image{
  text-align: center;
  margin-top: 60px;
}
.drawer_open{
    display: none;
  }
.nav_content{
  text-align: right;
}
.nav{
  display: none;
}
@media(max-width:960px){
  .header{
    padding: 40px 0 52px;
  }
  .header-logo-pc{
    display: none;
  }
  .header-top{
    padding: 0 40px;
  }
  .header-logo{
    margin: 0 40px;
  }
  .header-logo h3 {
    font-size: 25px;
  }
  .nav{
    display: block;
    margin: 0 0 0 auto;
  }
  /* チェックボックスを非表示にする */
.drawer_hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer_open {
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上にする */
  cursor: pointer;
  
}

/* ハンバーガーメニューのアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #333;
  transition: 0.5s;
  position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer_open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 100%; /* メニューを画面の外に飛ばす */
  z-index: 99;
  background: #E8DED4;
  transition: .5s;
  padding: 20px 40px;
}

/* メニュー黒ポチを消す */
.nav_list {
  list-style: none;
  text-align: left;
  font-family: "Times New Roman", Times, "serif";
  font-size: 25px;
  line-height: 50px;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer_input:checked ~ .nav_content {
  left: 0;/* メニューを画面に入れる */
}
}
@import url(//fonts.googleapis.com/css?family=Lato:300:400);

body {
  margin:0;
}

.header {
  position:relative;
  text-align:center;
  color:white;
}
.logo {
  width:50px;
  fill:white;
  padding-right:15px;
  display:inline-block;
  vertical-align: middle;
}

.inner-header {
  height:65vh;
  width:100%;
  margin: 0;
  padding: 0;
}

.flex { /*Flexbox for containers*/
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.waves {
  position:relative;
  width: 100%;
  height:15vh;
  margin-bottom:-7px; /*Fix for safari gap*/
  min-height:100px;
  max-height:150px;
}

.content {
  position:relative;
  height:20vh;
  text-align:center;
  background-color: white;
}

/* Animation */

.parallax > use {
  animation: move-forever 25s cubic-bezier(.55,.5,.45,.5)     infinite;
}
.parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
}
.parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
}
.parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
}
.parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
@keyframes move-forever {
  0% {
   transform: translate3d(-90px,0,0);
  }
  100% { 
    transform: translate3d(85px,0,0);
  }
}
/*Shrinking for mobile*/
@media (max-width: 768px) {
  .waves {
    height:40px;
    min-height:40px;
  }
  .content {
    height:30vh;
  }
  h1 {
    font-size:24px;
  }
}
.main{
  background-color: #E8DED4;
}
.section-works{
  padding: 107px 140px;
}
.section-works h1{
  font-family: "Times New Roman", Times, "serif";
  margin-bottom: 80px;
  font-size: 48px;
  text-align: center;
  color: #6c6059;
}
.works-contents{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  column-gap: 80px;
}

.item-contents img{
  max-width:100%;
  max-height: 100%;
  border-radius: 20px;
}
.item-contents{
  margin-bottom: 110px;
}
.item-contents h3{
  font-family: "Zen Maru Gothic", serif;
  font-size: 20px;
}
.item-contents p{
  font-family: "Zen Maru Gothic", serif;
}
.item-contents a{
  text-decoration: none;
  color: #333;
}
.item-detail{
  font-family: "Times New Roman", Times, "serif";
}
@media(max-width:960px){
  .section-works{
    padding: 50px 0px;
  }
  .section-works h1{
    font-size: 30px;
  }
}
.section-about{
  padding: 0 140px 107px;
}
.section-about h1{
  font-family: "Times New Roman", Times, "serif";
  margin-bottom: 80px;
  font-size: 48px;
  text-align: center;
  color: #6c6059;
}
.about-contents{
  display: flex;
  gap:172px;
}
.about-contents img{
  max-width: 40%;
  max-height: 40%;
  border-radius: 20px;
}
.about-detail{
  display:inline;
}
.about-detail h3{
  margin-top: 42px;
  margin-bottom:35px;
  font-size: 20px;
  font-family: "Zen Maru Gothic", serif;
}
.about-detail p{
  margin-bottom: 10px;
  font-family: "Zen Maru Gothic", serif;
}
.about-detail a{
  text-decoration: none;
  margin-top: 60px;
  font-family: "Times New Roman", Times, "serif";
  font-size: 20px;
  color: #D89756;
  border-bottom: solid #D89756;
}
.viewmore{
  text-align: right;
}
@media(max-width:960px){
  .section-about{
    padding: 0 40px 105px;
  }
  .section-about h1{
    font-size: 30px;
  }
  .about-contents{
    display: inline-block;
  }
}
.footer{
  background-color: #D5D0CC;
  padding: 107px 140px 10px;
}
.footer h3{
  font-family: "Times New Roman", Times, "serif";
  margin-bottom: 53px;
  font-size: 30px;
  color: #6c6059;
}
.instagram {
  font-size: 25px;
  text-align: center;
  font-family: "Times New Roman", Times, "serif";
  margin-bottom: 15px;
}
.instagram a {
  text-decoration: none;
  color: #6c6059;
  font-size: 20px;
}
.mail {
  font-size: 20px;
  text-align: center;
  font-family: "Times New Roman", Times, "serif";
  margin-bottom: 110px;
}

.mail p {
  margin-top: 10px;
}

.coperight{
  font-size: 20px;
  text-align: center;
  font-family: "Times New Roman", Times, "serif";
}
@media(max-width:960px){
  .footer{
    padding: 105px 40px 10px;
  }
  .footer h3{
    font-size: 18px;
  }
  .instagram{
    font-size: 15px;
  }
  .instagram a {
    font-size: 15px;
  }
  .mail  {
    font-size: 14px;
  }
}