/* =============================================================================================== */
/* ヘッダー:固定メニュー                                                                           */
/* =============================================================================================== */
header#header #header_padding {
    display: none;
}
header#header #header_menu_button {
    display: none;
}

@media screen and (max-width: 640px) {
    header#header #header_padding {
        display: block;
        height: 11vw;
    }
    header#header #header_menu_button {
        display: block;
        width:  6.5vw;
        height: 6.5vw;
        position: fixed;
        top: 2vw;
        right: 5vw;
        z-index: 1001;
    }
    header#header #header_menu_button .item {
        content: "";
        display: inline-block;
        width: 6.5vw;
        border: 1px solid #ffffff;
        position: absolute;
        right: 0;
        transition: 0.6s;
    }
    header#header #header_menu_button .item.num01 {
        transform:rotate(0);
        top: 1vw;
    }
    header#header #header_menu_button .item.num02 {
        transform:rotate(0);
        top: 3vw;
    }
    header#header #header_menu_button .item.num03 {
        transform:rotate(0);
        top: 5vw;
    }
    header#header #header_menu_button.active .item.num01 {
        transform:rotate(45deg);
        top:  3.25vw;
    }
    header#header #header_menu_button.active .item.num02 {
        transform:rotate(45deg);
        top:  3.25vw;
    }
    header#header #header_menu_button.active .item.num03 {
        transform:rotate(-45deg);
        top:  3.25vw;
    }

    /* 演出用 */
    .SphFadeIn {
        opacity: 0;
        transition: 0.6s;
        transform: translateY(30px);
    }
    .SphFadeIn.show {
        opacity: 1;
        transform: translateX(0px);
        transform: translateY(0px);
    }
}
/* =============================================================================================== */
/* ヘッダー:固定メニュー                                                                           */
/* =============================================================================================== */
header#header #fixed_menu {
    width: 100%;
    height: 80px;
    background: rgba(0,0,0,0.4);
    transition: 0.6s;
    position: fixed;
    top:  0;
    left: 0;
    z-index: 1000;
}
header#header #fixed_menu.scrolled {
    background: rgba(0,0,0,0.2);
}
header#header #fixed_menu .inner {
    width: 980px;
    margin: 0 auto;
    letter-spacing: -.40em;
}
header#header #fixed_menu .inner .item {
    display: inline-block;
    letter-spacing: normal;
    vertical-align: middle;
}
@media screen and (max-width: 640px) {
    header#header #fixed_menu {
        background: rgba(0,0,0,1);
        height: 11vw;
    }
    header#header #fixed_menu.scrolled {
        background: rgba(0,0,0,1);
    }
    header#header #fixed_menu .inner {
        width: 100%;
    }
    header#header #fixed_menu .inner .item {
    }
}
/* =============================================================================================== */
/* ヘッダー:固定メニュー:TRENEアイコン                                                             */
/* =============================================================================================== */
header#header #fixed_menu .inner .item.num01 {
    width: 210px;
    position: relative;
    top: -3px;
}
header#header #fixed_menu .inner .item.num01 .front {
    transition: 1.0s;
    opacity: 0;
    position: absolute;
    top:  0;
    left: 0;
}
header#header #fixed_menu .inner .item.num01.active .front {
    opacity: 1;
}
@media screen and (max-width: 640px) {
    header#header #fixed_menu .inner .item.num01 {
        width: 33vw;
        line-height: 11vw;
        top: 0;
    }
    header#header #fixed_menu .inner .item.num01 img {
        width: 33vw;
        vertical-align: middle;
    }
    header#header #fixed_menu .inner .item.num01 .front {
    }
    header#header #fixed_menu .inner .item.num01.active .front {
    }
}
/* =============================================================================================== */
/* ヘッダー:固定メニュー:メニュー                                                                  */
/* =============================================================================================== */
header#header #fixed_menu .inner .item.num02 {
    width: 450px;
    letter-spacing: -.40em;
}
header#header #fixed_menu .inner .item.num02 .sub_item {
    display: inline-block;
    padding: 0px 25px 0px 20px;
    line-height: 80px;
    letter-spacing: normal;
    position: relative;
}
header#header #fixed_menu .inner .item.num02 .sub_item img {
    vertical-align: middle;
}
header#header #fixed_menu .inner .item.num02 .sub_item.active:before {
    content: "";
    display: inline-block;
    width:  25px;
    height: 80px;
    background-image: url('../../images/common/header/menu_icon_active@2x.png');
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    position: absolute;
    top:  0;
    left: -2px;
}
@media screen and (max-width: 640px) {
    header#header #fixed_menu .inner .item.num02 {
        box-sizing: border-box;
        display: none;
        width: 100%;
        height: calc(100vh - 11vw);
        padding-top: 7vw;
        background: rgba(0,0,0,0.8);
        text-align: center;
        position: absolute;
        top: 11vw;
        left: 0;
    }
    header#header #fixed_menu .inner .item.num02 .sub_item {
        padding: 0;
        line-height: 18vw;
        letter-spacing: normal;
        position: relative;
    }
    header#header #fixed_menu .inner .item.num02 .sub_item img {
        height: 4vw;
        vertical-align: middle;
    }
    header#header #fixed_menu .inner .item.num02 .sub_item.active:before {
        content: "";
        display: inline-block;
        width:  8vw;
        height: 18vw;
        background-image: url('../../images/common/header/menu_icon_active@2x.png');
        background-position: center center;
        background-size: contain;
        background-repeat: no-repeat;
        position: absolute;
        top:  0;
        left: -7vw;
    }
    header#header #fixed_menu .inner .item.num02 .sub_item .sub {
        width: 80vw;
        text-align: center;
        font-size: 2.8vw;
        position: absolute;
        left: calc(50% - 40vw);
        bottom: 1vw;
        color: #ffffff;
        line-height: 1;
    }
    header#header #fixed_menu .inner .item.num02 .separator {
        line-height: 1;
    }
    header#header #fixed_menu .inner .item.num02 .separator img {
        width: 62.5vw;
        height: 1px;
    }
}
/* =============================================================================================== */
/* ヘッダー:固定メニュー:メニュー:ドロップダウンメニュー                                           */
/* =============================================================================================== */
header#header #fixed_menu .inner .item.num02 .sub_item .mini_item {
    display: none;
    position: absolute;
    top:  60px;
    left: 16px;
}
header#header #fixed_menu .inner .item.num02 .sub_item:hover .mini_item {
    display: block;
}
header#header #fixed_menu .inner .item.num02 .sub_item .mini_item .nano_item {
    margin-bottom: 2px;
    line-height: 1;
    letter-spacing: -.40em;
}
header#header #fixed_menu .inner .item.num02 .sub_item .mini_item a {
    width: 200px;
}
header#header #fixed_menu .inner .item.num02 .sub_item .mini_item .nano_item span {
    display: inline-block;
    letter-spacing: normal;
    vertical-align: top;
}
header#header #fixed_menu .inner .item.num02 .sub_item .mini_item .nano_item span:nth-child(2) {
    box-sizing: border-box;
    width: calc(100% - 24px);
    padding-left: 5px;
    background: rgba(0, 0, 0, 0.7);
    color: #ffffff;
    font-size: 11px;
    line-height: 24px;
}
@media screen and (max-width: 640px) {
    header#header #fixed_menu .inner .item.num02 .sub_item:hover .mini_item {
        display: none;
    }
}
/* =============================================================================================== */
/* ヘッダー:固定メニュー:メニュー(サブ)                                                            */
/* =============================================================================================== */
header#header #fixed_menu .inner .item.num03 {
    width: 188px;
    line-height: 80px;
}
header#header #fixed_menu .inner .item.num03 a {
    width: 170px;
    height: 20px;
    border-radius: 10px;
    background: #333333;
    text-align: center;
    line-height: 20px;
}
header#header #fixed_menu .inner .item.num03 a img {
    vertical-align: middle;
    position: relative;
    top: -1px;
}
@media screen and (max-width: 640px) {
    header#header #fixed_menu .inner .item.num03 {
        display: none;
        width: 100%;
        text-align: center;
        position: fixed;
        left: 0;
        top: 98vw;
    }
    header#header #fixed_menu .inner .item.num03 a {
        width:  56vw;
        height: 7vw;
        border-radius: 3.5vw;
        background: #444444;
        line-height: 7vw;
    }
    header#header #fixed_menu .inner .item.num03 img {
        width: 46vw;
        position: relative;
        top: -1px;
    }
}
/* =============================================================================================== */
/* ヘッダー:固定メニュー:メニュー(会社ロゴ)                                                         */
/* =============================================================================================== */
header#header #fixed_menu .inner .item.num04 {
    width: 132px;
    line-height: 80px;
}
header#header #fixed_menu .inner .item.num04 img {
    vertical-align: middle;
}
@media screen and (max-width: 640px) {
    header#header #fixed_menu .inner .item.num04 {
        display: none;
        width: 100%;
        text-align: center;
        line-height: 1;
        position: fixed;
        left: 0;
        bottom: 5vw;
    }
    header#header #fixed_menu .inner .item.num04 img {
        width: 30vw;
    }
}
/* =============================================================================================== */
/* ヘッダー:固定メニュー:メニュー(SNS)                                                             */
/* =============================================================================================== */
header#header #fixed_menu .inner .item.num05 {
    display: none;
}
@media screen and (max-width: 640px) {
    header#header #fixed_menu .inner .item.num05 {
        width: 100%;
        text-align: center;
        line-height: 1;
        position: fixed;
        left: 0;
        bottom: 14vw;
    }
}
/* =============================================================================================== */
/* 販売終了                                                                                        */
/* =============================================================================================== */
header#header.note_end-sale  #fixed_menu {
  padding: 0 0 40px 0;
}
header#header.note_end-sale  #fixed_menu .inner .item.num01 {
  margin-top: 30px;
}
header#header.note_end-sale  #fixed_menu .inner {
  position: relative;
}
header#header.note_end-sale #fixed_menu .inner::before {
  content: "※こちらの製品は販売終了いたしました。";
  position: absolute;
  top: 70px;
  left: 210px;
  letter-spacing: 0;
  color: #e80e1e;
  font-weight: bold;
}
@media screen and (max-width: 640px) {
  header#header.note_end-sale {
    padding: 10px 0;
  }
  header#header.note_end-sale #header_menu_button {
    top: 4.5vw;
  }
  header#header.note_end-sale #fixed_menu {
    padding: 10px 0;
  }
  header#header.note_end-sale #fixed_menu .inner .item.num01 {
    margin-top: 0;
  }
  header#header.note_end-sale #fixed_menu .inner::before {
    content: "※こちらの製品は\A　販売終了いたしました。";
    white-space: pre;
    position: absolute;
    top: 2px;
    left: 150px;
    font-size: 14px;
    line-height: 18px;
  }
}
