/* 休業案内 */
.holiday{
    position: absolute;
    top: 70px;
    width: 100%;
    text-align: center;
    background: #333;
    z-index: 100;
    font-size: 14px;
}
@media screen and (max-width:768px){
    .holiday{
        top:45px;
    }   
}
.holiday > a{
    display: block;
    width:100%;
    color: white;
    padding: 5px;
}
.holiday a:hover{
    opacity: .7;
}
/*ウェルカムメッセージ*/
.fs-l-header__welcomeMsg{
    font-size: 16px;
    cursor: text;
}
/*ウェルカムメッセージ*/
/*header*/
.header-wrap {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 110; 
}
  
.header {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 43px;
    background: white;
}
@media screen and (max-width: 768px) {
    .header {
        height: 50px;
        box-shadow: 0px 3px 3px -3px rgba(0,0,0,0.5); 
    } 
}
.header-top {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 45px; 
}
@media screen and (max-width: 768px) {
    .header-top {
        height: 50px;
    }
}
.header-logo {
    cursor: pointer;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center; 
}
.header-logo img {
    width: 32%;
    vertical-align: bottom;
}
@media screen and (max-width: 768px) {
    .header-logo img {
        width: 80%; 
    } 
}
.header-category {
    position: fixed;
    top: 43px;
    left: 0px;
    width: 100%;
    background: white;
    padding-bottom: 10px;
    box-shadow: 0px 3px 3px -3px rgba(0,0,0,0.5); 
}
@media screen and (max-width: 768px) {
    .header-category {
        display: none; 
    }
}
.header-category-list {
    display: flex;
    justify-content: center;
    width: 100%; 
}
.header-category-list li {
    margin: 0px 10px; 
}
.header-category-list a {
    position: relative;
    padding: 3px 5px;
    color: black;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-size: 14px;
}
.header-category-list a::after {
    position: absolute;
    top: 100%;
    left: 0%;
    content: '';
    display: block;
    width: 0px;
    height: 1px;
    background: black;
    transition: .4s; 
}
.header-category-list a:hover::after {
    width: 100%; 
}
  
/* hamburger */
.header-hamburger {
    z-index: 50;
    cursor: pointer;
    width: 27px;
    height: 21px;
    position: fixed;
    top: 15px;
    right: 20px; 
}
.header-hamburger span {
    cursor: pointer;
    position: absolute;
    left: 0px;
    display: inline-block;
    background: black;
    width: 100%;
    height: 1px;
    transition: .4s; 
}
.header-hamburger span:nth-child(1) {
    top: 0px; 
}
.header-hamburger span:nth-child(2) {
    top: 10px; 
}
.header-hamburger span:nth-child(3) {
    bottom: 0px; 
}
.header-hamburger-active span:nth-child(1) {
    -webkit-transform: translateY(10px) rotate(45deg);
    transform: translateY(10px) rotate(45deg); 
}
.header-hamburger-active span:nth-child(2) {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0; 
}
.header-hamburger-active span:nth-child(3) {
    -webkit-transform: translateY(-10px) rotate(135deg);
    transform: translateY(-10px) rotate(135deg); 
}
  
.hamburger-inner {
    z-index: 30;
    opacity: 0;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    transition: .4s;
    position: fixed;
    top: 0px;
    right: 0px;
    width: 300px;
    height: 100%;
    background: #ececec;
    min-height: 100vh;
    padding: 5px 0px 30px 15px;
    overflow: scroll;
}
.hamburger-inner-list {
    position: relative;
    right: 0px;
    top: 50px;
}
.hamburger-inner-list > li {
    display: block;
    width: 100%;
    cursor: pointer;
    margin-bottom: 20px; 
}
.hamburger-inner-list a, .hamburger-inner-list p {
    font-size: 16px;
    color: black;
    font-family: "Noto Sans JP", sans-serif; 
    transition: .4s;
}
.hamburger-inner-list a:hover{
    text-decoration: underline;
}
.hamburger-inner-list .plus {
    position: relative; 
}
.hamburger-inner-list .plus p:hover{
    text-decoration: underline;
}
.hamburger-inner-list .plus::before, .hamburger-inner-list .plus::after {
    transition: .4s;
    display: block;
    content: '';
    position: absolute;
    top: 12px;
    right: 170px;
    width: 10px;
    height: 1px;
    background: black; 
}
.hamburger-inner-list .plus::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg); 
}
.hamburger-inner-list .open::after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); 
}
.hamburger-inner-category-inner {
    display: none;
    padding: 20px 0px 0px 50px;
    margin-bottom: 50px; 
}
.hamburger-inner-category-inner li {
    font-size: 14px;
    margin-bottom: 10px; 
}
.hamburger-overlay {
    opacity: 0;
    transition: .5s;
    position: fixed;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: rgba(255, 255, 255, 0.8);
    z-index: -1;
}
.active-overlay {
    opacity: 1;
    z-index: 10;
}
.active {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1; 
}


.fs-l-header__welcomeMsg > a{
    display: block;
    width: 100%;
    margin: 0 0px 0px;
    color: #333;
    padding: 0px 0px;
    border: 0px solid #333;
    font-size: 16px;
    transition: .0s;
    text-align: left;
    cursor: pointer;
}
.fs-l-header__welcomeMsg > a:hover{
    background: none;
    color: #333;
    text-decoration: underline;
}


/*検索窓*/
.fs-p-searchForm{
    display: block;
    position: absolute;
    top: 20px;
    left: 40px;
    width: 200px;
    z-index: 9;
}
.fs-p-searchForm2{
    display: none;
}
.fs-p-inputGroup{
    display: flex;
    flex-direction: row-reverse;
    width: 100%;
}
.fs-p-inputGroup__input{
    border-right: none;
    border-top: none;
    border-left: none;
    border-bottom: 1px solid #ececec;
    background: none;
}
.fs-p-inputGroup__button{
    border: none;
    background: none;
}
.fa-search{
    font-size: 14px;
    padding-right: 5px;
}
.fs-p-searchForm2 .fa-search{
    padding-top: 9px;
}
.fs-p-searchForm2 .fs-p-inputGroup__input{
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    border-left: 1px solid black;
    border-right: 1px solid black;
}
@media screen and (max-width: 768px) {
    .fs-p-searchForm{
        display: none;
        position: relative;
        top: 0px;
        left: 0px;
    }
    .fs-p-inputGroup{
        flex-direction: row;
    }
    .fs-p-searchForm2{
        display: block;
        position: relative;
    }
    .fs-p-inputGroup__button{
        position: absolute;
        right: 5px;
        top: 0px;
    }
}