@charset "utf-8";

/*----------------------------------------------------------
▼ header
----------------------------------------------------------*/
header .commonNav {
    background: url("/img/direct/common/bg_ft.jpg") no-repeat center;
    background-size: cover;
    padding: 4px 0 6px;
    position: relative;
}
header .commonNav:before {
    position: absolute;
    content: "";
    background: url("/img/direct/common/lin_rainbow.jpg") no-repeat;
    background-size: cover;
    width: 100%;
    height: 4px;
    top: 0;
    left: 0;
}
header .gloNavi_wrap {
    background: #fff;
    border-bottom: 1px solid #e5e5e5;
}
header .upperHeader {
    padding: 9px 0 2px;
    z-index: 4;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
}
header .upperHeader .logoHeader img {
    width: 217px;
}
header .upperHeader .navHeader {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    margin-top: 11px;
    position: relative;
}
header .upperHeader .navHeader .login {
    background: #FFFFFF;
    border: 1px solid #C7C7C7;
    border-radius: 4px;
    width: 110px;
    height: 40px;
    font-size: 14px;
    font-weight: 400;
}
header .upperHeader .navHeader .login:hover{
    border: 1px solid #008AFF;
    border-radius: 4px;
}
header .upperHeader .navHeader .login a{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
header .upperHeader .navHeader .login:hover a{
    text-decoration: underline;
}
header .upperHeader .navHeader .menu {
    margin-top: 10px;
    margin-right: 70px;
}
header .upperHeader .navHeader .menu li {
    display: inline-block;
    margin-left: 21px;
}
header .upperHeader .navHeader .menu li a {
    font-size: 0.75rem;
    color: #333;
    position: relative;
}
header .upperHeader input[type=search] {
    padding: 0 35px 0 10px;
    height: 36px;
    width: 55px;
    -webkit-border-radius: 10em;
    -moz-border-radius: 10em;
    border-radius: 10em;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    transition: all 0.5s;
}

header input:-moz-placeholder, header input::-webkit-input-placeholder {
    color: #999;
}
header input.buttonSearch {
    background: url("/img/direct/common/ico_search.png") no-repeat center;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 7px;
    right: 9px;
    cursor: pointer;
    z-index: 9;
}
header .searchForm {
    float: right;
    position: absolute;
    top: 4px;
    right: -7px;
}
header .searchForm input[type=search] {
    width: 15px;
    padding-left: 10px;
    color: transparent;
    float: right;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: none;
    visibility: hidden;
    opacity: 0;
}
header .searchForm input[type=search]:hover {
    background-color: #fff;
}
header .searchForm input:-moz-placeholder, header .searchForm input::-webkit-input-placeholder {
    color: transparent;
}
header .searchForm.active input[type=search] {
    border: solid 1px #333333;
    width: 280px;
    padding-left: 9px;
    color: #000;
    background-color: #fff;
    cursor: auto;
    box-shadow: 0px 1px 6px 0px rgba(50, 50, 50, 0.4);
    opacity: 1;
    visibility: visible;
}

/* PC */
@media (min-width: 768px) {
  header .navHeader .menu li a:after {
    content: "";
    height: 1px;
    background: #333;
    display: block;
    position: absolute;
    bottom: -9px;
    right: 100%;
    left: 0;
    transition: right 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: 0.08s;
  }
  header .navHeader .menu li a:hover:after {
    right: 0;
  }
}

header .gloNaviPc {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}
header .gloNaviPc li {
    border-right: 1px solid #CCCCCC;
    width: 25%;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
}
header .gloNaviPc li:first-of-type {
    border-left: 1px solid #CCCCCC;
}
header .gloNaviPc li a {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-weight: 500;
    padding: 16px 5px;
}
header .gloNaviPc li a .inLink div {
    display: inline-block;
    vertical-align: middle;
}
header .gloNaviPc li a .inLink .ico {
    position: relative;
    top: 2px;
    margin-right: 9px;
}

header .trans {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
    opacity: 1;
    -moz-transition: opacity 0.26s ease;
    -o-transition: opacity 0.26s ease;
    -webkit-transition: opacity 0.26s ease;
    transition: opacity 0.26s ease;
}

/* TAB */
@media screen and (max-width: 990px) and (min-width: 768px) {
    header .gloNaviPc li {
        font-size: 80%;
    }
}

/* sp */
@media (max-width: 767px){
    header {
        padding-top: 7px;
    }
    header .spHeader_wrap {
        padding: 0 5% 20px;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-pack: justify;
        -webkit-justify-content: space-between;
        -moz-justify-content: space-between;
        justify-content: space-between;
        position: relative;
    }
    header .spHeader_wrap::before {
        position: absolute;
        content: '';
        background: url("/img/direct/common/sp/lin_rainbow.jpg") no-repeat;
        background-size: cover;
        display: block;
        width: 100%;
        height: 5px;
        left: 0;
        bottom: 8px;
        z-index: 4;
    }
    header .spHeader_wrap::after {
        position: absolute;
        content: '';
        background: url("/img/direct/common/sp/bg_navcommon.jpg") no-repeat;
        background-size: cover;
        display: block;
        width: 100%;
        height: 8px;
        left: 0;
        bottom: 0;
        z-index: 4;
    }
    header .logoHeader img {
        width: auto;
        height: 38px;
    }
    header .icon_wrap {
        position: relative;
    }
    header  .login {
        position: relative;
        top: 3px;
        left: 5px;
        background: #FFFFFF;
        border: 1px solid #C7C7C7;
        border-radius: 4px;
        width: 80px;
        height: 30px;
        font-size: 12px;
        margin-right: 90px;
    }
    header .login:hover{
        border: 1px solid #008AFF;
        border-radius: 4px;
    }
    header .login a{
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    header .searchForm {
        top: 2px;
        margin-right: 48px;
    }
    header input.buttonSearch {
        background: url("/img/direct/common/sp/ico_search.png") no-repeat;
        background-size: 20px;
    }
    header input[type=search] {
        height: 33px;
        line-height: 33px;
        border-radius: 10em;
        transition: all 0.5s;
    }
    header .searchForm.active input[type=search] {
        width: 150px;
        font-size: 0.75rem;
    }
}

/*----------------------------------------------------------
▼ ハンバーガーメニュー
----------------------------------------------------------*/
header .areaSM {
    position: relative;
    width: 100%;
    background: #fff;
    float: left;
    display: none;
    z-index: 5;
}
header .areaSM.active {
    right: 0;
}
header .areaSM .closeMenu {
    position: absolute;
    top: 15px;
    right: 15px;
}
header .areaSM .closeMenu img {
    display: block;
}
header .areaSM .topLink a {
    background: url("/img/direct/common/sp/ico_home.png") no-repeat left 19px center;
    background-size: 28px;
}
header .areaSM .bgArea {
    padding: 30px 25px;
    background: url("/img/direct/common/sp/bg_nav.jpg") no-repeat center;
    background-size: cover;
    position: relative;
}
header .areaSM .bgArea .navSm {
    background: #fff;
    box-shadow: 0px 0px 20px 0px rgba(50, 50, 50, 0.1);
}
header .areaSM .bgArea .navSm li {
    border-bottom: 1px solid #e5e5e5;
}
header .areaSM .bgArea .navSm li:last-child {
    border-bottom: none;
}
header .areaSM .bgArea .navSm li a {
    display: block;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 20px 0 20px 70px;
}
header .areaSM .bgArea .navSm li.mn01 a {
    background: url("/img/direct/common/sp/ico_nav01.jpg") no-repeat left 20px center;
    background-size: 30px;
}
header .areaSM .bgArea .navSm li.mn02 a {
    background: url("/img/direct/common/sp/ico_nav02.jpg") no-repeat left 20px center;
    background-size: 30px;
}
header .areaSM .bgArea .navSm li.mn03 a {
    background: url("/img/direct/common/sp/ico_nav03.jpg") no-repeat left 20px center;
    background-size: 30px;
}
header .areaSM .subN {
    padding: 0 25px;
    margin-top: 5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
header .areaSM .subN li {
    border-bottom: 1px solid #e5e5e5;
    width: 47%;
}
header .areaSM .subN li a {
    display: block;
    padding: 10px 0;
}
header .areaSM .btnCall {
    padding: 0 25px;
    margin: 30px 0;
}
header .areaSM .btnCall a {
    display: block;
    text-align: center;
    height: 60px;
    line-height: 60px;
    border-radius: 30px;
    background: #ed7987;
}
header .areaSM .btnCall a span {
    display: inline-block;
    height: 100%;
    font-weight: 500;
    color: #fff;
    font-size: 0.94rem;
    padding-left: 25px;
    background: url("/img/direct/common/sp/ico_phone.png") no-repeat left center;
    background-size: 20px;
}
header .areaSM .searchSm {
    padding: 0 25px 30px;
    margin-top: 25px;
}
header .areaSM .searchSm input {
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    box-shadow: none;
    border: 1px solid #333;
    border-radius: 5px;
    height: 50px;
    padding: 0 33px 0 12px;
    background: #fff url("/img/direct/common/sp/ico_searchmenu.png") no-repeat right 13px center;
    background-size: 19px 19px;
}
header .areaSM .searchSm input::-webkit-input-placeholder {
    color: #999999;
}
header .btnMenu {
    position: absolute;
    width: 25px;
    top: 17px;
    right: 15px;
    text-align: center;
}
header .btnMenu img.nor {
    display: block;
}
header .btnMenu img.act {
    display: none;
}
header .btnMenu.active img.nor {
    display: none;
}
header .btnMenu.active img.act {
    display: inline-block;
    height: 19px;
    width: auto;
}
/* OVERLAY */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    top: 57px;
    left: 0;
    z-index: 3;
    display: none;
}
/* sp */
@media (max-width: 767px){
    header .btnMenu {
        position: absolute;
        top: 10px;
        right: 0;
    }
    header .btnMenu img {
        width: 25px;
    }
}
@media (min-width: 960px) {
    .desktop header .areaSM {
        display: none !important;
    }
}

/*----------------------------------------------------------
▼ footer
----------------------------------------------------------*/
footer {
    padding-top: 70px;
    border-top: 1px solid #ccc;
    position: relative;
}
footer .upperFooter {
    /* padding-top: 70px; */
    padding-bottom: 40px;
    border-bottom: 1px solid #ccc;
}

footer .upperFooter .listContact {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-flow: row wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 50px;
    overflow: hidden;
}
footer .upperFooter .listContact li {
    width: 50%;
}
footer .upperFooter .listContact li a {
    display: block;
    text-align: center;
    height: 100px;
    line-height: 100px;
    font-size: 1.38rem;
    color: #fff;
  }
footer .upperFooter .listContact li a span {
    display: inline-block;
    height: 100%;
    padding-left: 44px;
}
footer .upperFooter .listContact li.phone {
    border-right: 1px solid #fff;
}
footer .upperFooter .listContact li.phone a {
    background: #ed7987;
    border-radius: 50px 0 0 50px;
}
footer .upperFooter .listContact li.phone a span {
    background: url("/img/direct/common/ico_phone.png") no-repeat left center;
}
footer .upperFooter .listContact li.sub a {
    background: #f3994f;
    border-radius: 0 50px 50px 0;
}
footer .upperFooter .listContact li.sub a span {
    background: url("/img/direct/common/ico_sub.png") no-repeat left center;
}
footer .upperFooter .txtUpper {
  margin-top: 28px;
}
footer .upperFooter .bannerUp {
  margin-top: 25px;
}
footer .upperFooter .bannerUp img {
  display: block;
}
footer .upperFooter .bannerList {
    text-align: center;
    margin-top: 30px;
}
footer .upperFooter .bannerList ul {
    letter-spacing: -.4em;
}
footer .upperFooter .bannerList li {
    display: inline-block;
    width: 186px;
    margin: 6px;
    vertical-align: top;
    font-size: 12px;
    letter-spacing: normal;
}
footer .upperFooter .bannerList li img {
    max-width: 186px;
    height: auto;
}

footer .lowerFooter {
    padding-top: 27px;
    border-top: 1px solid #ccc;
}

footer .lowerFooter .gtMenu {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-flow: row wrap;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

footer .lowerFooter .gtMenu .blockMenu {
    width: 312px;
}
footer .lowerFooter .gtMenu .blockMenu li {
    padding-left: 23px;
    background: url("/img/direct/common/ico_ft.png") no-repeat left 10px;
    margin-bottom: 9px;
}
footer .lowerFooter .gtMenu .blockMenu li a {
    font-size: 0.81rem;
    line-height: 1.38462;
    display: inline-block;
}
footer .lowerFooter .logoFooter {
    text-align: center;
}
footer .lowerFooter .logoFooter img {
    width: 217px;
}
footer .copyRight {
    text-align: center;
    font-size: 0.81rem;
    letter-spacing: 0.03em;
    background: url("/img/direct/common/bg_ft.jpg") no-repeat center;
    background-size: cover;
    position: relative;
    padding: 21px 0;
    margin-top: 43px;
}
footer .copyRight:before {
    position: absolute;
    content: "";
    background: url("/img/direct/common/lin_rainbow.jpg") no-repeat;
    background-size: cover;
    width: 100%;
    height: 4px;
    left: 0;
    bottom: 0;
}
footer .copyRight .wrapper {
  position: relative;
}
footer .panda {
  position: absolute;
  right: 25px;
  bottom: -20px;
}
footer .panda img {
  display: block;
}
footer .toTop {
    position: fixed;
    left: 50%;
    margin-left: 455px;
    bottom: 42px;
    cursor: pointer;
    z-index: 10;
}
footer .toTop img {
  display: block;
}
.trans {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  filter: progid:DXImageTransform.Microsoft.Alpha(enabled=false);
  opacity: 1;
  -moz-transition: opacity 0.26s ease;
  -o-transition: opacity 0.26s ease;
  -webkit-transition: opacity 0.26s ease;
  transition: opacity 0.26s ease;
}
.trans:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}
.sm,.smi,.sm_table,.sm_table_cell {
  display: none !important;
}

/* PC */
@media (min-width: 768px) {
    footer .lowerFooter .gtMenu .blockMenu li a:hover {
      text-decoration: underline;
    }
}

/* TAB */
@media screen and (max-width: 990px) and (min-width: 768px) {
    footer .toTop {
        left: auto;
        margin-left: 0;
        right: 20px;
        bottom: 75px;
        background: #fff;
        border-radius: 40px;
    }
}

/* SP */
@media (max-width: 767px){
    footer {
        padding-top: 0;
    }
    footer .upperFooter {
        padding-top: 30px;
        padding-bottom: 35px;
    }
    footer .upperFooter .listContact {
        border-radius: 0;
    }
    footer .upperFooter .listContact li {
        width: 100%;
        margin-bottom: 11px;
    }
    footer .upperFooter .listContact li a {
        height: 50px;
        line-height: 50px;
        font-size: 0.94rem;
        border-radius: 25px !important;
    }
    footer .upperFooter .listContact li a span {
        padding-left: 24px;
    }
    footer .upperFooter .listContact li.phone {
        border-right: none;
    }
    footer .upperFooter .listContact li.phone a span {
        background: url("/img/direct/common/sp/ico_phone.png") no-repeat left center;
        background-size: 25px;
        padding-left: 32px;
    }
    footer .upperFooter .listContact li.sub a span {
        padding-left: 35px;
        background: url("/img/direct/common/sp/ico_sub.png") no-repeat left center;
        background-size: 30px;
    }
    footer .upperFooter .bannerList {
        width: 100%;
    }
    footer .upperFooter .bannerList li {
        width: 49%;
        height: auto;
        margin: 0 2% 2% 0;
        padding: 0;
        text-align: center;
    }
    footer .upperFooter .bannerList li:nth-child(2n) {
        margin-right: 0!important;
    }
    footer .upperFooter .bannerList li img {
        width: auto;
        height: auto;
        max-width: 182px;
        max-height: 48px;
    }
    footer .lowerFooter {
        padding-top: 27px;
    }
    footer .lowerFooter .gtMenu {
        margin-bottom: 25px;
        padding-left: 15px;
    }
    footer .lowerFooter .gtMenu .blockMenu {
        width: 100%;
    }
    footer .lowerFooter .gtMenu .blockMenu li {
        background: url("/img/direct/common/sp/ico_ft.png") no-repeat left 10px;
        background-size: 10px;
        margin-bottom: 18px;
    }
    footer .lowerFooter .gtMenu .blockMenu li a {
        line-height: 1.15385;
        color: #555;
    }
    footer .lowerFooter .logoFooter img {
        margin: 0 auto;
        width: 170px;
    }
    footer .copyRight {
        font-size: 0.69rem;
        background: url("/img/direct/common/sp/bg_ft.jpg") no-repeat center;
        padding: 19px 0;
        margin-top: 53px;
    }
    footer .copyRight::before {
        background: url("/img/direct/common/sp/lin_rainbow.jpg") no-repeat;
        background-size: cover;
    }
    footer .toTop {
        left: auto;
        margin-left: 0;
        right: 10px;
        bottom: 65px;
        background: #fff;
        border-radius: 40px;
    }
}

/*----------------------------------------------------------
▼ パンくず
----------------------------------------------------------*/
.breadcrumb {
    padding: 8px 0 10px;
  }
  .breadcrumb .listBread li {
    display: inline-block;
    font-size: 0.75rem;
    position: relative;
    padding-right: 18px;
    margin-right: 8px;
    letter-spacing: 0;
    line-height: 100%;
  }
  .breadcrumb .listBread li.home {
    padding-left: 23px;
  }
  .breadcrumb .listBread li.home:before {
    position: absolute;
    content: "";
    background: url("/img/direct/common/ico_breadcrumb.png") no-repeat;
    width: 12px;
    height: 13px;
    left: 2px;
    top: 1px;
  }
  .breadcrumb .listBread li:after {
    position: absolute;
    content: "";
    background: url("/img/direct/common/ico_arrow02.png") no-repeat;
    width: 5px;
    height: 9px;
    right: 0;
    top: 4px;
  }
  .breadcrumb .listBread li:last-child {
    padding: 0;
    margin: 0;
  }
  .breadcrumb .listBread li:last-child:after {
    display: none;
  }

  /* PC */
  @media (min-width: 768px) {
    .breadcrumb .listBread li a:hover {
      text-decoration: underline;
    }
  }
  /* SP */
  @media (max-width: 767px){
    .breadcrumb {
      padding: 8px 0 10px;
    }
    .breadcrumb .listBread li {
      font-size: 0.69rem;
      padding-right: 14px;
      margin-right: 7px;
    }
    .breadcrumb .listBread li.home {
      padding-left: 19px;
    }
    .breadcrumb .listBread li.home:before {
      background: url("/img/direct/common/sp/ico_breadcrumb.png") no-repeat;
      background-size: 100%;
      width: 10px;
      height: 11px;
      left: 2px;
      top: 2px;
    }
    .breadcrumb .listBread li:after {
      background: url("/img/direct/common/sp/ico_arrow02.png") no-repeat;
      background-size: 100%;
      width: 4px;
      height: 7px;
      right: 0;
      top: 4px;
    }
}

/*----------------------------------------------------------
▼ ボタン
----------------------------------------------------------*/
.btn-red {
    background: #FFFFFF;
    border: 2px solid #FF4433;
    border-radius: 500px;
    font-weight: bold;
    font-size: 18px;
    line-height: 26px;
    text-align: center;
    position: relative;
}
.btn-red a {
    width: 100%;
    height: 100%;
    display: block;
    padding: 15px 80px 15px 55px;
}
.btn-red::after {
    position: absolute;
    content: "";
    display: inline-block;
    background: url(/img/direct/common/ico_arrow_red.svg) no-repeat;
    background-size: contain;
    width: 28px;
    height: 28px;
    top: 15px;
    right: 20px;
}
.btn-red:hover {
    background: #FF4433;
    color: #ffffff;
    position: relative;
}
.btn-red a:hover {
    color: #ffffff;
}
.btn-red:hover::after {
    position: absolute;
    content: "";
    display: inline-block;
    background: url(/img/direct/common/ico_arrow_white.svg) no-repeat;
    background-size: contain;
    width: 28px;
    height: 28px;
    top: 15px;
    right: 20px;
}
/* PC */
@media (min-width: 768px){
    .top-arrange::after{
        top: 13px !important;
    }
}
/* SP */
@media (max-width: 767px){
    .top-arrange::after{
        top: 28% !important;
    }
    .btn-red::after {
        width: 23px;
        height: 23px;
        top: 33%;
        right: 5%;
    }
    .btn-red:hover::after {
        position: absolute;
        content: "";
        display: inline-block;
        background: url(/img/direct/common/ico_arrow_white.svg) no-repeat;
        background-size: contain;
        width: 23px;
        height: 23px;
        top: 33%;
        right: 5%;
    }
    .btn-red-sp {
        font-size: 12px;
        width: 280px;
        line-height: 15px;
        margin: auto;
    }
    .btn-red-sp a {
        padding: 15px 60px 15px 55px;
    }
}

/* 共通の追従メニュー設定 */
.floating_menu {
    z-index: 500 !important;
    position: fixed;
    bottom: 0;
    width: 100%;
    display: none; /* 初期状態で非表示 */
}
.floating_menu .floating_menu_container * {
    box-sizing: border-box;
    line-height: 1.5;
}
.floating_menu .floating_menu_container {
    position: relative;
    min-width: 100%;
    max-width: 100vw;
}
.floating_menu .floating_menu_list {
    width: 100%;
    list-style: none;
    transform: translateZ(0);
    background-color: #f44336;
    overflow: hidden;
    box-shadow: 0px 0px 4px 2px rgba(0, 0, 0, 0.2);
}
.floating_menu .floating_menu_list li {
    display: block;
    position: relative;
    width: 25%;
    float: left;
    height: 64px;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 767px) {
    .floating_menu .floating_menu_list li:last-child {
        border-right: none;
    }
}
.floating_menu .floating_menu_list li .menu-item-wrap {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 12px 6px;
    text-decoration: none;
}
.floating_menu .floating_menu_list li .menu-icon {
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.floating_menu .floating_menu_list li .menu-icon_calc {
    background-image: url(/img/direct/menu/ico_menu_calc.png);
}
.floating_menu .floating_menu_list li .menu-icon_doc {
    background-image: url(/img/direct/menu/ico_menu_doc.png);
}
.floating_menu .floating_menu_list li .menu-icon_view {
    background-image: url(/img/direct/menu/ico_menu_view.png);
}
.floating_menu .floating_menu_list li .menu-icon_key {
    background-image: url(/img/direct/menu/ico_menu_key.png);
}
.floating_menu .floating_menu_list li .menu-item-text {
    margin-top: 4px;
    font-size: 10px;
    text-decoration: none;
    color: #ffffff;
}

.btn-red .btn-text-lower {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.25;
}

@media screen and (max-width: 767px) {
    .btn-red .btn-text-upper {
        font-size: 14px;
        line-height: 1.25;
    }
    .btn-red .btn-text-lower {
        font-size: 14px;
        font-weight: 400;
        line-height: 1.25;
    }
}