/*body {
    padding-top: 90px;
}*/
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    /*background: #fff;*/
}

/*.front-page:not(.active) header{
    background:transparent;
}*/
.front-page:not(.active) header a {
    color: #fff;
    border-color: #fff;
}

.front-page:not(.active) .fb_black,
.front-page:not(.active) .ig_black{
    display: none;
}
.front-page.active .fb_white,
.front-page.active .ig_white{
    display: none;
}
.head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
    width: 100%;
}
.header-logo {
    width: 70px;
    margin: 10px;
}
.head-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
}
header nav {
    display: flex;
    width: 85%;
    justify-content: flex-end;
    align-items: center;
}
header .other-nav {
    display: flex;
    justify-content: center;
    width: 33%;
    position: relative;
}
header .other-nav:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 100%;
    display: block;
    background: #000;
    left: 0;
}

.front-page:not(.active) header .other-nav:after {
    background: #fff;
}

header .sns {
    display: flex;
}
header .sns>a {
    width: 25px;
    margin: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
}
header nav ul {
    width: 66%;
    text-align: end;
    padding: 0;
    padding-right: 4%;
}
header nav ul li {
    display: inline-block;
    margin: 0 2%;
    font-size: 1.3vw;
    font-weight: bold;
    position: relative;
}

header nav ul li:before {
    content: "";
    width: 0;
    height: 1px;
    background: #000;
    display: block;
    position: absolute;
    top: calc(100% + 5px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: .3s;
}
header nav ul li:hover:before{
    width: 100%;
}

a.btn.header-btn {
    padding: 8px 10px;
    margin: auto 7% auto 1%;
    font-size: 1.5vw;
}
/* hamberger css */
.hamburger {
    padding: 0px 10px;
    display: inline-block;
    cursor: pointer;
    transition-property: opacity, filter;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    font: inherit;
    color: inherit;
    text-transform: none;
    background-color: transparent;
    border: 0;
    margin: 0;
    overflow: visible;
    /*position: absolute;*/
     right: 4px; 
    /*left: 4px;*/
    top: 4px;
    z-index: 10;
    min-height: 51px;
    box-sizing: border-box;
}  .hamburger:hover {opacity: 0.7; }
  .hamburger.is-active:hover {opacity: 0.7; }
  .hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {background-color: #fff; }
.hamburger-box {
    width: 35px;
    height: 35px;
    display: inline-block;
    position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 35px;
    height: 2px;
    background-color: #fff;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease;}
.hamburger-inner::before, .hamburger-inner::after {content: "";display: block; }
.hamburger-inner::before {top: -10px;}
.hamburger-inner::after {bottom: -10px; }
.hamburger--collapse .hamburger-inner {top: auto;bottom: 0;transition-duration: 0.13s;transition-delay: 0.13s;transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--collapse .hamburger-inner::after {top: -21px;transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear;}
  .hamburger--collapse .hamburger-inner::before {transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }

.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  .hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
  .hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger-nav {
    opacity: 0;
    position: absolute;
    width: 100%;
    /*max-width: 370px;*/
    height: 100vh;
    right: 0;
    background: #fff;
    padding: 15px;
    padding-top: 95px;
    top: 0;
    transform: translateX(100%);
    transition: .5s;
    /* padding-bottom: 60px; */
    overflow: auto;
    padding-bottom: 50px;
    border-right: 2px solid #fff;
    display: grid;
    grid-auto-rows: max-content;
    grid-template-rows: min-content;
    background-image: url(/img/sp/nav_bg.png);
    background-size: cover;
}
.hamburger-nav.active{
    opacity: 1;
    transform: translateX(0);
    z-index: 1000;
}
.hamburger-nav h3 {
    background: #0f3c81;
    color: #fff;
    padding: 15px 25px 2px;
    font-weight: normal;
    font-size: 12px;
    margin: 0;
    word-break: break-word;
    padding-right: 50px;
}
.hamnav-user {
    background: #0f3c81;
    padding: 10px 20px;
    color: #fff;
}
.hamnav-user img {
    width: 26px;
    filter: brightness(0) invert(1);
    margin-right: 15px;
}
ul.ham-ul {
    list-style: none;
    margin: 0;
    padding: 0px;
}
ul.ham-ul>li {
    padding: 10px;
    border-bottom: 1px solid #d4d4d4;
}
ul.ham-ul>li img {
    width: 26px;
    height: 26px;
    margin-right: 20px;
}
.front-page:not(.active) header ul.ham-ul>li>a {
    color: #232323;
    padding: 12px 20px;
    width: 100%;
    display: block;
    box-sizing: border-box;
}
.ham-overLay {
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 120;
    top: 0;
    background: #0000004d;
}
ul.ham-ul>li {
    padding: 0;
    border-bottom: 1px solid #d4d4d4;
}




@media screen and (max-width: 768px){
body {
    padding-top: 0px;
}
header {
    background: transparent;
}
.head {
    align-items: flex-start; 
    height: 80px;
    padding:0;
    z-index: 10000;
}
.hamburger {
    box-sizing: border-box;
    height: 100%;
    width: 80px;
    text-align: center;
    display: flex!important;
    align-items: center;
    justify-content: center;
}
.hamburger-box {
    height: 18px;
}
a.tel-btn {
    width: 40px;
    margin-right: 20px;
}
.tel-btn>img {
    display: block;
}
.sp_menu {
    display: flex;
    height: 100%;
    align-items: center;
    justify-content: center;
}
.front-page:not(.active) .tel_black,
.front-page:not(.active) .logo_green{
    display: none;
}
.front-page.active .tel_white,
.front-page.active .logo_white{
    display: none!important;
}
.front-page.active .logo_green{
    display: block!important;
}

.front-page.active .hamburger-inner, 
.front-page.active .hamburger-inner::before, 
.front-page.active .hamburger-inner::after{
    background-color: #000;

}
.hamburger.is-active .hamburger-inner, 
.hamburger.is-active .hamburger-inner::before, 
.hamburger.is-active .hamburger-inner::after {
    background-color: #fff;
}

.hamburger--collapse .hamburger-inner {
    bottom: 7px;
}
.hamburger-box:after {
    content: "MENU";
    font-size: 11px;
    position: absolute;
    bottom: -15px;
    display: block;
    left: 0px;
    color: #fff;
    font-family: YuMincho,'Yu Mincho',serif;
    width: 100%;
    text-align: center;
}
.front-page.active .hamburger-box:after{
    color: #000;
}
.hamburger.is-active .hamburger-box:after {
    color: #fff;
}

.header-logo {
    margin: 10px 20px;
}
.hamburger.is-active {
    background: #000;
    color: #fff;
}

.header-sns{
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-sns>a {
    width: 25px;
    margin: 15px;
}
.head.active .fb_white,
.head.active .ig_white,
.head.active .tel_white,
.head.active .logo_white{
    display: none!important;
}
.head.active .fb_black,
.head.active .ig_black,
.head.active .tel_black,
.head.active .logo_green{
    display: block!important;
}

ul.ham-ul>li>a {
    display: block;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 18px 20px!important;
}

span.arrow {
    display: inline-block;
    width: 22px;
    height: 7px;
    background-image: url(/img/pc/go_black.png);
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
}

ul.ham-ul>li>a>span.jp {
    min-width: 140px;
    font-weight: bold;
    display: inline-block;
}
ul.ham-ul>li>a>span.en {
    font-size: 12px;
}

ul.ham-ul>li {
    border-bottom: 1px solid #1b1b1b;
}

a.btn.store-btn {
    width: 100%;
    height: 60px;
    background: #111;
    margin: 30px 0 10px;
    position: relative;
    color: #fff;
}
a.btn.rsv-btn {
    width: 100%;
    height: 60px;
    border: 2px solid #111;
    border-color: #111!important;
    color: #000!important;
    margin: 15px 0;
    position: relative;
}
a.btn.store-btn:after {
    content: "";
    display: block;
    position: absolute;
    width: 15px;
    height: 15px;
    background-image: url(/img/sp/link_white.png);
    background-size: cover;
    bottom: 5px;
    right: 5px;
}

a.btn.rsv-btn:after {
    content: "";
    display: block;
    position: absolute;
    width: 15px;
    height: 15px;
    background-image: url(/img/sp/link_blac.png);
    background-size: cover;
    bottom: 5px;
    right: 5px;
}








}