@charset "utf-8";

:root {
  font-size: 16px; /* 基本の文字サイズ */
}

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  margin: 0;
}

body {
  font-family: "Noto Sans JP",serif;
  overflow-x: hidden;
  line-height: 2;
  background-color: rgb(250, 236, 216);
  font-size: 1rem;
}

p{font-size: 1.5rem;}

ul {
  padding: 0;
  list-style: none;
}

a {
  background: transparent;
  text-decoration: none;
  color: inherit;
}


header.header03 {
  position: fixed;
  top:0;
  font-family: "Potta One",serif;
  width: 100%;
  height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background-color: rgb(204, 247, 217);
  z-index: 1;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(to right, #f9f9f9, #02a6f8) 1;
  
}

div.logo {
  width:220px;
  height: 110px;
}

div.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

nav.nav {
  margin: 0 auto;
}

nav.nav ul.item {
  display: flex;
  align-items: center;
}

nav.nav ul.item li.list {
  padding-left: 2rem;
  font-size: 24px;
}

nav.nav ul.item li.list a {
  font-weight: bold;
}

div.contact-btn a {
  display: inline-block;
  background: #3656a7;
  color: #fff;
  font-size: 0.9rem;
  font-weight: bold;
  border-radius: 30px;
  padding: 0.5rem 1.2rem;
}

#menu-btn,
.nav-hidden {
  display: none;
}

footer {
  background-color:rgb(204, 247, 217);/* フッターの背景色 */
  font-size: 14px;
  width: 100%;
  border-top: 3px solid transparent;
  border-image: linear-gradient(to right, #f9f9f9, #02a6f8) 1;
}

.footer-container {
  display: flex;
  justify-content: space-around;
   ;
}

#copylight,#privacy {
  margin-bottom: 10px;
  font-size: 16px;
}

footer img{
  width: 10%;
  object-fit: contain;
 }

/* レスポンシブ対応 */

@media (max-width: 1001px){
  nav.nav ul.item li.list {
    font-size:20px}
}

@media (max-width: 950px){
  nav.nav ul.item li.list {
    font-size:18px}
}


@media (max-width: 900px) {
 
  #menu-btn {
    display: block;
    width: 30px;
    height: 20px;
    position: fixed;
    /* top: 1rem; */
    right: 1rem;
    z-index: 3;
   }

  #menu-btn span,
  #menu-btn span::before,
  #menu-btn span::after {
    content: "";
    height: 2px;
    width: 100%;
    border-radius: 3px;
    background: #3656a7;
    position: absolute;
    transition: 0.2s;
  }

  #menu-btn span {
    top: 0;
  }

  #menu-btn span:before {
    top: 8px;
  }

  #menu-btn span:after {
    top: 16px;
  }

  #nav-input:checked~#menu-btn span {
    top: 8px;
    transform: rotate(45deg);
  }

  #nav-input:checked~#menu-btn span::before {
    opacity: 0;
  }
 
  #nav-input {
    display: none;
}

  #nav-input:checked~#menu-btn span::after {
    top: 0;
    transform: rotate(-90deg);
  }



  header.header03{
    height: 10%;
  }

  div.logo {
    width: 220px;
    height: 110px;
    margin: 0;
  }

  div.logo img{
    width: 40%;
    object-fit: contain;
  }


  nav.nav {
    width: 230px;
    height: 300px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 2;
    opacity: 0;
    transition: 0.5s;
    display: none;
    pointer-events: none;
    background-image: url("/img/illust/shibahu.png");
    background-size:cover;
  }

  nav.nav ul.item {
    display: block;
    padding: 2rem;
    height: auto;
  }

  nav.nav ul.item li.list {
    padding-left: 0;
    padding-bottom: 1.5rem;
    font-size: 1.2rem;
  }

  /* div.contact-btn a { */
    /* position: absolute; */
    /* right: 3.4rem;   */
  /* } */

  .contact-btn a{
    display: flex;
    justify-content: center;
    position: relative;
    right: 50%;
    }


  #nav-input:checked~nav.nav {
    opacity: 1;
    display: block;
    pointer-events: auto;
  }

  .footer-container {
    flex-direction: column;
    align-items: center;
  }
  footer img{
    width: 20%;
    object-fit: contain;
  }

  @media (max-width: 400px) {
    div.logo{
      width: 80px;
    }
    div.logo img{
      width: 100%;
    }
  }

  @media (max-width: 340px) {
    #copylight,a{
        font-size: 14px;
    }

    div.logo img{
      scale: 80%;
    }

    .contact-btn{
      scale: 80%;
    }

}

  @media (max-width: 340px) {
   div.logo img{
    scale: 60%;
  }

  .contact-btn{
    scale: 60%;
  }
}
}