@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #000;
  font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
  font-weight: 500;
  font-size: 2.0rem;
  line-height: 4.0rem;
  text-align: left;
  letter-spacing: 1px;
  margin: 0 auto;
}
h1,h2{
  font-size: 4.0rem;
  line-height: 6.0rem;
}
h3{
  font-size: 7.0rem;
  line-height: 7.0rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  letter-spacing: 0.05em;
    }
h6{
  font-weight: 600;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (max-width:970px){
  body{
  font-size: 1.6rem;
  line-height: 2.9rem;
} 
  h1,h2{
  font-size: 2.0rem;
  line-height: 4.0rem;
}
h3{
  font-size: 4.0rem;
  line-height: 5.0rem;
    }
  h4{
    font-size: 2.0rem;
  }  
  
h6{
  font-size: 1.2rem;
  padding: 0 0;
}
    
  .br_PC{
    display: none;
  }
}



a:hover {
  opacity: 0.4;
}
.none {
  display: none;
}


.header{
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 40px;
  box-sizing: border-box;
}
.fixed {
  background-color: #FFF;
  opacity: 0.9;
  transition: 1s ease-in;
}

.header_container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  text-align: center;
  }
.header h1{
    line-height: 1.0rem;
  }
.header_logo{
  height: 35px;
}
  .header nav {
    display: block;
    text-align: right;
  }
  .header nav ul {
    display: flex;
    align-items: center;
  }
  .header nav ul li {
    display: inline-block;
    margin-left: 40px;
  }
.header nav ul li a {
    text-decoration: none;
    color: #333;
  font-size: 1.6rem;
  }
/*
.header.headerColorScroll {
  color: #FF0004;
  transition: color 0.4s ease-out;
}
*/


@media (max-width:970px) {
  /*ハンバーガーアイコン*/
  .header{
    padding: 10px 20px;
  }
  .header_container{
    height: 30px;
  }  
  .header_logo{
  height: 20px;
}
  
  #nav-drawer {
    text-align: right;
    position: relative;
  }
  #nav-open {
    display: inline-block;
    vertical-align: middle;
    width: 24px;
    height: 15px;
  }
  #nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 2px;
    width: 24px;
    background-color: #000;
    display: block;
    content: "";
  }
  #nav-open span:before {
    bottom: -8px;
  }
  #nav-open span:after {
    bottom: -16px;
  }
  #nav-close {
    z-index: 999;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    opacity: 0.8;
  }
  #nav-content {
    z-index: 9999;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 70%;
    height: 100%;
    background-color: #FFFFFF;
    text-align: left;
    padding: 20px 0 0 20px;
    transform: translateX(-105%);
    transition: 0.5s ease-in-out;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.15);
  }
  .nav-drawer__title {
    display: block;
    margin-bottom: 50px;
  }
   #nav-content img {
    width: 65px;
  }
  #nav-content ul
  {display:flex;
flex-wrap:wrap;
flex-direction:column;
  }
  #nav-content ul li{
    margin-bottom: 20px;
  }
  
  #nav-content ul li a {
    text-decoration: none;
    font-size: 1.6rem;
    color: #000;
  }
  #nav-content ul li a img {
    width: 30px;
    height: 30px;
  }
  #nav-input:checked ~ #nav-close {
    display: block;
  }
  #nav-input:checked ~ #nav-content {
    transform: translateX(0%);
    transition: 0.5s ease-in-out;
  }
}



.footer {
  height: 540px;
  padding: 60px 150px 0;
  background-color: #000;
  font-size: 1.6rem;
  color: #FFF;
}
.footer ul{
  list-style: none;
  margin-bottom: 120px;
  margin-left: 10px;
}
.footer li{
  margin-bottom: 10px;
}
.footer a{
  color: #FFF;
  text-decoration: none;
}
.footer img{
  width: 130px;
  margin-bottom: 30px;
  }

@media(max-width:970px){
  .footer {
  height: 360px;
  padding: 40px 20px 0;
  font-size: 1.4rem;
}
.footer ul{
  margin-bottom: 60px;
}
.footer img{
  width: 90px;
  }
}
.small{
  font-size: 1.0rem;
}