@charset "UTF-8";
body.fixed{
  overflow: hidden;
}
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;
    /* height: 165px; */
    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: 120px;
    width: 100%;
}
.header_icon{
    display: flex;
    align-items: center;
}
.header_insta{
    max-width: 38px;
    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: fit-content;
    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;
    margin: 0 auto;
    overflow-y: scroll;
    max-height: calc(100svh - 70px);
  }

  .sp-nav ul li {
    font-size: 14px;
    text-align: left;
    font-weight: 600;
    margin-bottom: 40px;
    letter-spacing: 0.18em;
  }
  .sp-nav ul li:last-child{
    margin-bottom: 0;
  }
  .sp-nav ul li.maintenance a{
    position: relative;
    pointer-events: none;
    opacity: 0.6;
  }
  .sp-nav ul li.maintenance a::after{
    content: "※只今メンテナンス中";
    display: inline-block;
    margin-left: 1em;
    font-size: 12px;
    color: #ab0000;
  }

.nav_root{
  display: block;
  padding: 0.5em 0 0.5em 2em;
  margin-top: 0.5em;
  position: relative;
  opacity: 0.5;
  transition: 0.5s;
  margin-left: 0.8em;
}
.nav_root:hover{
  opacity: 1;
}
.nav_root::before{
  content: "";
  display: block;
  width: 0.8em;
  height: 1px;
  background: #000;
  position: absolute;
  left: 0.5em;
  bottom: 1em;
}
.nav_root::after{
  content: "";
  display: block;
  height: 0.8em;
  width: 1px;
  background: #000;
  position: absolute;
  left: 0.5em;
  bottom: 1em;
}


/* 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;
}
.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: 100px;
  width: 100%;
}
.header_insta {
  max-width: 30px;
}
.footer_logo {
  max-width: 100px;
}
.footer_insta {
  max-width: 30px;
}
.sp-nav ul {
    padding: 40px 20px;
}
.sp-nav ul li {
    margin-bottom: 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;
}





.header_insta.maintenance a, .footer_insta.maintenance a{
  opacity: 0.2;
  pointer-events: none;
}
.header_insta.maintenance, .footer_insta.maintenance{
  position: relative;
}
.header_insta.maintenance::after, .footer_insta.maintenance::after{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  content:
  "メンテナンス中";
  font-size: 8px;
  background: #000;
  color: #fff;
  padding: 0.1em 0.2em;
  display: block;
  white-space: nowrap;
  letter-spacing: -0.1em;
}




/* announce01 */
/* .announce_box01 {
  position: relative;
  padding: 0 10px;
  background-color: #ffc107;
  color: #fff;
  height: 35px;
  display: none;
}
.announce_txt {
  font-size: 12px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 20px;
}
.announce_txt a {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.announce_close {
  position: absolute;
  right: 20px;
  top: calc(50% - 12px);
  top: 0;
  height: 35px;
  width: 35px;
}
.announce_close i {
  font-size: 24px;
}
.close_btn::before, .close_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 20px;
  background: #fff;
  border-radius: 2.5px;
}
.close_btn::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.close_btn::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}

@media screen and (max-width: 719px) {
.c-announce_bar {
  padding: 10px 20px;
}
.announce_txt {
  font-size: 12px;
  text-align: left;
}
.announce_close {
  right: 0;
  top: 0;
}
.announce_close i {
  font-size: 20px;
}
}
@media screen and (max-width: 550px) {
.announce_box01 {
  height: 45px;
}
} */



/* line_bnr */
.line_bnr_box {
  display: none;
}
.line_bnr {
  display: grid;
}
.line_bnr_img, .line_bnr_link {
  grid-area: 1/-1;
}
.line_bnr_img {
  background-image: none;
  background-repeat: repeat-x;
  background-position: center;
  background-size: contain;
}
.line_bnr_header {
  width: 100%;
  height: min(13.33vw, 60px);
}


