@charset "UTF-8";

header{
    /* height: 70px; */
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    /* display: flex; */
    align-items: center;
    width: 100%;
    z-index: 100;
}
.header_h{
    height: 70px;
    content: "";
    display: block;
    width: 100%;
}
.header_inner{
    width: 100%;
    height: 70px;
    max-width: 1000px;
    display: flex;
    padding: 0 15px 0 20px;
    margin: 0 auto;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    position: relative;
    z-index: 300;
}

.header_logo{
    max-width: 150px;
    width: 100%;
}
.header_icon{
    display: flex;
    align-items: center;
}
.header_insta{
    max-width: 35px;
    width: 100%;
    margin-right: 20px;
}



/*================================= 
hamburger(ハンバーガーアイコン)
=================================*/
.hamburger {
    position: relative;
    /* right: 20px; */
    /* top: 20px; */
    width: 30px;
    height: 16px;
    cursor: pointer;
    z-index: 300;
  }
  
  .hamburger__line {
    position: absolute;
    width: 30px;
    height: 2px;
    right: 0;
    background-color: #000;
    transition: all 0.5s;
  }
  
  .hamburger__line--1 {
    top: 0px;
  }
  
  .hamburger__line--2 {
    top: 50%;
    transform: translateY(-50%);
  }
  
  .hamburger__line--3 {
  bottom: 0;
  }
  
  /*ハンバーガーがクリックされたら*/
  .open .hamburger__line--1 {
    transform: rotate(-45deg);
    top: 6px;
  }
  
  .open .hamburger__line--2 {
    opacity: 0;
  }
  
  .open .hamburger__line--3 {
    transform: rotate(45deg);
    top: 6px;
  }
  
  /* 
  sp-nav(ナビ)
  =================================== */
  .sp-nav {
    position: fixed;
    top: 70px; /*ハンバーガーがクリックされる前はWindow上部に隠す*/
    left: 0;
    width: 100%; /* 出てくるスライドメニューの幅 */
    height: 0;
    max-height: 500px;
    background-color: #F5F5F5;
    transition: all 0.5s;
    z-index: 1000;
    overflow-y: auto;
    /* opacity: 0; */
    pointer-events: none;
    overflow: hidden;
  }
  
  /*ハンバーガーがクリックされたら上からスライド*/
  .open .sp-nav {
    /* top: 70px; */
    height: 100%;
    /* opacity: 1; */
    pointer-events: all;
  }
  .sp-nav ul{
    max-width: 940px;
    padding: 60px 20px 100px;
    margin: 0 auto;
  }

  .sp-nav ul li {
    font-size: 14px;
    text-align: left;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 0.18em;
}



/* footer */
footer{
  margin-top: 120px;
}
.footer_nav{
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  font-size: 14px;
}
.footer_inner{
  max-width: 840px;
  padding: 0 20px 80px;
  margin: 0 auto;
}
.copyright{
  text-align: center;
  font-size: 14px;
  margin-bottom: 50px;
}
.footer_icon{
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_logo{
  max-width: 110px;
  margin-right: 60px;
}
.footer_insta{
  max-width: 35px;
}

@media screen and (max-width: 750px){

.footer_nav {
  font-size: 12px;
}
.copyright {
  text-align: center;
  font-size: 10px;
  margin-bottom: 40px;
}
.footer_inner {
  padding: 0px 20px 40px;
}
footer{
  margin-top: 80px;
}
.header_logo {
  max-width: 120px;
  width: 100%;
}
.header_insta {
  max-width: 30px;
}
.footer_logo {
  max-width: 100px;
}
.footer_insta {
  max-width: 30px;
}
/* .header_inner {
  height: 60px;
}
.header_h {
  height: 60px;
}
.sp-nav {
  top: 60px;
} */
.slick-dots li.slick-active button:before {
  font-size: 12px!important;
}
.slick-dots li button:before{
  font-size: 12px!important;
}
}

@media screen and (max-width: 550px){
.footer_nav {
  font-size: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer_nav li{
  padding: 5px 10px;
}
}










/* new header */

/* Navbar & Navmenu color */
:root {
  --background-navbar: rgba(55, 55, 55, 0.98);
}

.header {
  background: #fff;
  position: fixed;
  width: 100%;
  height: 70px;
}

/* Nav items */
.menu {
  list-style: none;
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  margin-top: 70px;
  padding: 60px 0 60px 0;
  clear: both;
  background: #F5F5F5;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
}

/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #3c3c3c;
  opacity: 0;
  transition: 0.5s;
}

.menu li {
  /* border-top: 1px solid rgb(75, 75, 75); */
  padding: 15px 20px;
  margin: 0 auto;
  opacity: 0;
  transition: 0.5s;
  max-width: 940px;
}

.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
  background: #3c3c3c;
  display: block;
  height: 2px;
  width: 30px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #3c3c3c;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 9px;
}

.navicon:after {
  bottom: 9px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: 70px;
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 0 0px 0 20px;
}

/* Navbar Text */
.navtext {
  position: absolute;
  text-transform: uppercase;
  color: #ddd;
  letter-spacing: 4px;
  font-size: 20px;
}