.entryBtnArea-slim {position:fixed; top: calc(50% - 136px); right:0; width:100px;}
.entryBtnArea-slim {
    top: calc(50% + 50px);
    transform: translateY(-50%);
    z-index: 2;
}

.entryBtnArea-slim ul li {width:100px; line-height:1.3;}
.entryBtnArea-slim ul li a {display: block; width:100%; color:var(--white); padding:20px 0; text-align: center; font-size: 90%;}
.entryBtnArea-slim ul li a.typeFax {background-color:var(--btn-bg-gray);}
.entryBtnArea-slim ul li a.typeFax:hover {background-color:#919191; opacity: 1.0; transition: 0.2s;}
.entryBtnArea-slim ul li a.typeWeb {background-color:#1c7bb3;}
.entryBtnArea-slim ul li a.typeWeb:hover {background-color:#4ba7dd; opacity: 1.0; transition: 0.2s;}
.entryBtnArea-slim ul li a i {display: block; font-size:40px; margin:0 auto 10px auto;}
.entryBtnArea-slim ul li a label {cursor: pointer;}
.entryBtnArea-slim ul li a label:last-child {display: none;}
.entryBtnArea-slim ul li div.slimbar-img-area {
    position: absolute;
    top: -227px;
}
.entryBtnArea-slim ul li div.slimbar-img-area .slimbar-img-balloon {
    position: relative;
    margin: 2em 0 2em 40px;
    padding: 15px;
    background: #f6fdec;
    border-radius: 15px;
    width: 200px;
    left: -150px;
    font-size: 12px;
    /* border: solid 1px var(--base-color); */
    background: #ddd;
    background: #D2DDE1;
    height: 77px;
    display: inline-flex;
    align-items: center;
}
.entryBtnArea-slim ul li div.slimbar-img-area .slimbar-img-balloon:before {  
    content: "";
    position: absolute;
    left: 124px;
    width: 13px;
    height: 12px;
    bottom: -30px;
    background: #f6fdec;
    /* border: solid 1px var(--base-color); */
    border-radius: 50%;
    background: #ddd;
    background: #D2DDE1;
}
.entryBtnArea-slim ul li div.slimbar-img-area .slimbar-img-balloon:after {
    content: "";
    position: absolute;
    left: 100px;
    width: 20px;
    height: 18px;
    bottom: -22px;
    background: #f6fdec;
    /* border: solid 1px var(--base-color); */
    border-radius: 50%;
    background: #ddd;
    background: #D2DDE1;
}
.entryBtnArea-slim ul li div.slimbar-img-area .slimbar-img-balloon p {
    margin: 0; 
    padding: 0;
    font-weight: bold;
}
.entryBtnArea-slim ul li div.slimbar-img-area .slimbar-img-balloon.visibility-hidden {
    /*visibility: hidden;*/
    animation:slimbar_anime_hidden 0.5s linear infinite;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
.entryBtnArea-slim ul li div.slimbar-img-area .slimbar-img-balloon.visibility-visible {
    animation:slimbar_anime_visible 0.5s linear infinite;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}
@keyframes slimbar_anime_hidden {
    to {
        transform:scale(0);
    }
}
@keyframes slimbar_anime_visible {
  0% {
    transform:scale(0);
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    transform:scale(1);
  }
}

.entryBtnArea-slim ul li div.slimbar-img-area img {
    height: 110px;
}

.entryBtnArea-slim.slim-top {
    /*display: none;*/
    opacity: 0;
    visibility: hidden;
    transition: all 1s;
    transform: translateY(0%);
}
.entryBtnArea-slim.slim-top-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%);
}

@media screen and (max-width: 1500px)
{
	.entryBtnArea-slim ul li div.slimbar-img-area {
	    left: -10px;
            width: 80px;
            top: -223px;
	}

	.entryBtnArea-slim ul li div.slimbar-img-area .slimbar-img-balloon
	{
	    left: -160px;
	}

	.entryBtnArea-slim ul {

	}

	.entryBtnArea-slim ul li a label.pc-label {
	    display: none;
	}
	.entryBtnArea-slim ul li a label:last-child {
	    display: unset;
	}

	.entryBtnArea-slim {
	    width: 75px;
	}

	.entryBtnArea-slim ul li:first-child a {
	    width: 75px;
            font-size: 80%;
	}
	.entryBtnArea-slim ul li:last-child a {
	    width: 75px;
            font-size: 80%;
	}

	.entryBtnArea-slim ul li a i {
	    font-size: 34px;
	}
}

@media screen and (max-width: 1300px) {

.entryBtnArea-slim ul li div.slimbar-img-area {
    display: none;
}

.entryBtnArea-slim ul {
    flex-wrap: nowrap;
    height: max-content;
}

.entryBtnArea-slim ul li a label.pc-label {
    display: none;
}
.entryBtnArea-slim ul li a label:last-child {
    display: unset;
}

.entryBtnArea-slim {
    width: 40px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    text-orientation: upright;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.entryBtnArea-slim ul li:first-child a {
    width: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: #1c7bb3;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}
.entryBtnArea-slim ul li:last-child a {
    width: 40px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background-color: var(--btn-bg-gray);
    border-bottom-left-radius: 25px;
    border-bottom-right-radius: 25px;
}
.entryBtnArea-slim ul li a.typeWeb {
    background: #1c7bb3 !important;
}
.entryBtnArea-slim ul li a.typeWeb:hover {
    background-color:#4ba7dd !important;
}
.entryBtnArea-slim ul li a.typeFax {
    background-color: var(--btn-bg-gray) !important;
}
.entryBtnArea-slim ul li a.typeFax:hover {
    background-color:#919191 !important;
}
.entryBtnArea-slim ul li a i {
    display: inline-block;
    font-size: 18px;
    margin-bottom: 5px;
}

}




.entryBtnArea2 {
    position: fixed;
    top: auto;
    bottom: 35px;
    right: 8px;
    width: 300px;
    height: 202px;
    background: #fff1e6;
    border: solid 2px #e27c20;
    border-radius: 4px;
    z-index: 10;
    background: #f6fdec;
    border-color: var(--base-color);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px;

    /* 不採用の為、非表示とする */
    /*display: none;*/
}
.entryBtnArea2.single-mode {
    height: 160px;
}
.entryBtnArea2.scroll-view {
    bottom: 135px;
}
.entryBtnArea2.display-none {
    display: none;
}
.entryBtnArea2 span.entryBtnArea2-close {
    position: absolute;
    right: -6px;
    top: -6px;
    background: #fff;
    border-radius: 50px;
    display: inline-block;
    height: 17px;
    width: 17px;
    z-index: 11;
    cursor: pointer;
}
.entryBtnArea2 span.entryBtnArea2-close > i {
    font-size: 36px;
    position: relative;
    top: -4px;
    left: -16px;
    color: #828282;
    color: #b91313;
}
.entryBtnArea2 span.entryBtnArea2-close > i:hover {
    color: #e05959;
}
.entryBtnArea2 span.entryBtnArea2-close-sp,
.entryBtnArea2 span.entryBtnArea2-close-sp-up {
    display: none;
}
.entryBtnArea2 label.entryBtnArea2-title {
    font-size: 14px;
    position: absolute;
    display: inline-block;
    width: 190px;
    line-height: 20px;
    top: 18px;
    left: 20px;
    font-weight: bold;
}
.entryBtnArea2 label.entryBtnArea2-title > span {
    font-weight: bold;
}
.entryBtnArea2 img.entryBtnArea2-image {
    position: absolute;
    right: 15px;
    top: 15px;
    height: 80px;
    top: 14px;
    right: 23px;
}
.entryBtnArea2 ul.entryBtnArea2-layout {
    display: -webkit-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: flex-end;
    flex-direction: column;
    align-items: center;
    height: 100%;
    padding: 15px;
}
.entryBtnArea2 ul.entryBtnArea2-layout > li {
    width: fit-content;
    line-height: normal;
    margin-bottom: 10px;
    width: 100%;
}
.entryBtnArea2 ul.entryBtnArea2-layout > li:last-child {
    margin-bottom: 0px;
}
.entryBtnArea2 ul.entryBtnArea2-layout > li > a.web-button {
    display: block;
    width: 100%;
    color: var(--white);
    text-align: center;
    margin: 0;
    padding: 10px 15px 10px 18px;
    border-radius: 0;
    font-size: 16px;
    background: #1c7bb3;
    border-radius: 25px;
}
.entryBtnArea2 ul.entryBtnArea2-layout > li > a.web-button > i {
    font-size: 17px;
    margin: 0;
    margin-right: 5px;
    padding: 0;
    position: relative;
    top: 1px;
    display: unset;
}
.entryBtnArea2 ul.entryBtnArea2-layout > li > a.fax-button {
    display: block;
    width: 100%;
    color: var(--white);
    text-align: center;
    margin: 0;
    padding: 9px 15px 10px 18px;
    border-radius: 0;
    font-size: 15px;
    background: #666;
    border-radius: 25px;
    background: #fff1e6;
    color: #345ba3;
    padding: 5px;
    text-decoration: none;
    background: #f6fdec;
}
.entryBtnArea2 ul.entryBtnArea2-layout > li > a.fax-button > i {
	font-size: 14px;
	margin: 0;
	margin-right: 5px;
	padding: 0;
	position: relative;
	top: 0px;
	display: unset;
}
.entryBtnArea2 ul.entryBtnArea2-layout > li > a.fax-button > span {
    text-decoration: underline;
}
.entryBtnArea2 ul.entryBtnArea2-layout > li > a.web-button > span.button-sptext,
.entryBtnArea2 ul.entryBtnArea2-layout > li > a.fax-button > span.button-sptext {
    display: none;
}



.scroll-top {
    display: none !important;
}
.scroll-top2 {
    position: fixed;
    width: 1280px;
    max-width: 90%;
    margin: 0 auto;
    float: right;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s, visibility .5s;
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    white-space: nowrap;
    bottom: 0px;
    animation: arrowmove2 1s ease-in-out infinite;
}
@keyframes arrowmove2{
    0%{bottom:20px;}
    50%{bottom:25px;}
    100%{bottom:20px;}
}
.scroll-top2 a {
    text-decoration: none;
    color: #666;
    text-transform: uppercase;
    font-size: 15px;
    display: block;
    position: absolute;
    top: -80px;
    right: -90px;
    color: var(--base-color);
    background: #eee;
    width: 70px;
    height: 70px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #edffe7;
    border: solid 1px var(--base-color);
    background: rgba(237, 255, 231, 0.6);

    /* ページトップを消す */
    /*display: none !important;*/
}
.scroll-top2 a i {
    display: inline-block;
    font-size: 30px;
}
.scroll-top2.scroll-view {
    opacity: 1;
    visibility: visible;
}


@media screen and (max-width: 1500px) {
    .scroll-top2 a {
        right: -65px;
    }
}


@media screen and (max-width: 1350px) {
    .scroll-top2 a {
        right: -40px;
        width: 55px;
        height: 55px;
    }
}


@media screen and (max-width: 856px) {
    .entryBtnArea-slim {
        width: 30px;
    }
    .entryBtnArea-slim ul li:first-child a {
        width: 30px;
        font-size: 16px;
    }
    .entryBtnArea-slim ul li:last-child a {
        width: 30px;
        font-size: 16px;
    }
    .entryBtnArea-slim ul li a i {
        font-size: 14px;
    }

    .entryBtnArea2 {
        bottom: 5px !important;

        /*ページトップがある場合*/
        right: unset;
        left: 90%;
        transform: translateX(-90%);
    }
    .scroll-top {
        display: unset !important;

        /* ページトップを消す */
        /*display: none !important;*/
    }
    .scroll-top2 {
        display: none !important;
    }
}


@media screen and (min-width: 701px) {
    .entryBtnArea2 span.entryBtnArea2-close-sp,
    .entryBtnArea2 span.entryBtnArea2-close-sp-up {
        display: none !important;
    }
}


@media screen and (max-width: 700px) {
    .entryBtnArea-slim {
        display: none !important;
    }

    .entryBtnArea2 {
        left: 50%;
        transform: translateX(-50%);
    }

    .entryBtnArea2.single-mode {
        height: 68px;
    }

    .entryBtnArea2 {
        height: 68px;
        width: 100%;
        border-radius: 0px;
        border: 0;
        background: rgba(255, 241, 230, 0.7);
        background: rgba(237, 255, 231, 0.5);
        background: rgba(102, 102, 102, 0.3);
    }
    .entryBtnArea2.bottom-zero {
        bottom: 0px !important;
        transition-duration: 1s;
    }
    .entryBtnArea2.bottom-hidden {
        bottom: -68px !important;
        transition-duration: 1s;
    }
    .entryBtnArea2.hidden-area {
        display: none;
    }
    .entryBtnArea2.view-area {
        display: unset;
    }
    .entryBtnArea2.scroll-view {
        bottom: 135px;
    }

    .entryBtnArea2.display-none {
        display: unset !important;
    }

    .entryBtnArea2 span.entryBtnArea2-close {
        display: none;
    }
    .entryBtnArea2 span.entryBtnArea2-close-sp,
    .entryBtnArea2 span.entryBtnArea2-close-sp-up {
        position: absolute;
        right: -6px;
        top: -6px;
        background: #fff;
        border-radius: 0;
        display: inline-block;
        height: 22px;
        width: 22px;
        z-index: 11;
        cursor: pointer;
        right: 10px;
        top: -24px;
        background: rgba(255, 255, 255, 0.7);

        border: solid 1px #999;
        height: 26px;
        width: 28px;
        padding: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 2px;
        border-bottom: 0;
        background: rgba(255, 255, 255, 0.3);
        background: rgba(102, 102, 102, 0.3);
        top: -26px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        right: 0;
        width: 28px;
        height: 28px;
        top: -28px;
        border-top-right-radius: 0px;

        display: none;
    }
    .entryBtnArea2 span.entryBtnArea2-close-sp.display-none,
    .entryBtnArea2 span.entryBtnArea2-close-sp-up.display-none {
        display: none;
    }
    .entryBtnArea2 span.entryBtnArea2-close-sp.display-on,
    .entryBtnArea2 span.entryBtnArea2-close-sp-up.display-on {
        display: flex;
    }
    .entryBtnArea2 span.entryBtnArea2-close-sp > i,
    .entryBtnArea2 span.entryBtnArea2-close-sp-up > i {
        font-size: 36px;
        position: relative;
        top: -4px;
        left: -16px;
        font-size: 30px;
        left: -2px;
        top: -4px;
        color: #828282;
        color: #b91313;
        color: #e27c20;
        color: var(--base-color);
        color: #666;

        top: 0;
        left: 0;
        font-size: 26px;
    }
    .entryBtnArea2 span.entryBtnArea2-close-sp > i:hover,
    .entryBtnArea2 span.entryBtnArea2-close-sp-up > i:hover {
        color: #9fdb45;
        color: #999;
    }
    .entryBtnArea2 span.entryBtnArea2-close-sp-up {
        display: none;
    }
    .entryBtnArea2 label.entryBtnArea2-title {
        display: none;
    }
    .entryBtnArea2 img.entryBtnArea2-image {
        display: none;
    }
    .entryBtnArea2 ul.entryBtnArea2-layout {
        flex-direction: unset;
        flex-wrap: nowrap;
        padding: 10px;
        align-items: flex-end;
        padding-bottom: 0px;
        justify-content: space-evenly;
    }
    .entryBtnArea2 ul.entryBtnArea2-layout > li:first-child {
        width: 180px;
    }
    .entryBtnArea2 ul.entryBtnArea2-layout > li:last-child {
        margin-bottom: 10px;
        text-align: center;
        /*display: inline-flex;*/
        width: 120px;
    }
    .entryBtnArea2 ul.entryBtnArea2-layout > li > a.web-button {
        border-radius: 2px;
        padding-left: 8px;
        padding-right: 5px;
        height: 45px;
    }
    .entryBtnArea2 ul.entryBtnArea2-layout > li > a.web-button > i {
        display: none;
    }
    .entryBtnArea2 ul.entryBtnArea2-layout > li > a.fax-button {
        background: #666;
        color: #fff;
        border-radius: 2px;
        width: 120px;
        padding: 10px 15px 10px 18px;
        height: 45px;
        font-size: 16px;
    }
    .entryBtnArea2 ul.entryBtnArea2-layout > li:only-child,
    .entryBtnArea2 ul.entryBtnArea2-layout > li:only-child > a.fax-button {
        width: 180px !important;
    }
    .entryBtnArea2 ul.entryBtnArea2-layout > li > a.fax-button > i {
        display: none;
    }
    .entryBtnArea2 ul.entryBtnArea2-layout > li > a.fax-button > span {
        text-decoration: none;
    }
    .entryBtnArea2 ul.entryBtnArea2-layout > li > a.web-button > span,
    .entryBtnArea2 ul.entryBtnArea2-layout > li > a.fax-button > span {
        display: none;
    }
    .entryBtnArea2 ul.entryBtnArea2-layout > li > a.web-button > span.button-sptext,
    .entryBtnArea2 ul.entryBtnArea2-layout > li > a.fax-button > span.button-sptext {
        display: unset;
    }

}



/* スマホは強制的にスマホモードとする */
body.sp-mode header h1 {flex-direction: column; top: 12px !important;}
body.sp-mode header h1 img {width:200px !important;}

body.sp-mode #pageTitleCommon {
        margin: 55px 0 0 0;
}

body.sp-mode header{height: 55px;}
body.sp-mode .header__trigger {
        height: 55px;
}
body.sp-mode .header__trigger > span:first-child {top: 15px; left: 25px;}
body.sp-mode .header__trigger > span:nth-child(2) {top: 50%; left: 25px;}
body.sp-mode .header__trigger > span:last-child {bottom: 14px; left: 25px;}

body.sp-mode .header-btn-trigger {
	top: 14px;
}

body.sp-mode header h1 span {
        position: absolute;
        top: -5px;
        left: 192px;
        font-size: 11px !important;
        padding-left: 1px;
        padding-right: 0px;
        width: 90px;
        padding-top: 1px;
        padding-bottom: 2px;
        border: 0;
}

body.sp-mode .globalNavSP {
        top: 55px;
        height: 100%;
}

body.sp-mode .entryBtnArea2 span.entryBtnArea2-close-sp,
body.sp-mode .entryBtnArea2 span.entryBtnArea2-close-sp-up {
        display: none !important;
}

body.sp-mode .entryBtnArea-slim {
        display: none !important;
}

body.sp-mode .entryBtnArea2 {
        left: 50%;
        transform: translateX(-50%);
}

body.sp-mode .entryBtnArea2.single-mode {
        height: 68px;
}

body.sp-mode .entryBtnArea2 {
        height: 68px;
        width: 100%;
        border-radius: 0px;
        border: 0;
        background: rgba(255, 241, 230, 0.7);
        background: rgba(237, 255, 231, 0.5);
        background: rgba(102, 102, 102, 0.3);
}
body.sp-mode .entryBtnArea2.bottom-zero {
        bottom: 0px !important;
        transition-duration: 1s;
}
body.sp-mode .entryBtnArea2.bottom-hidden {
        bottom: -68px !important;
        transition-duration: 1s;
}
body.sp-mode .entryBtnArea2.hidden-area {
        display: none;
}
body.sp-mode .entryBtnArea2.view-area {
        display: unset;
}
body.sp-mode .entryBtnArea2.scroll-view {
        bottom: 135px;
}

body.sp-mode .entryBtnArea2.display-none {
        display: unset !important;
body.sp-mode }

body.sp-mode .entryBtnArea2 span.entryBtnArea2-close {
        display: none;
}
body.sp-mode .entryBtnArea2 span.entryBtnArea2-close-sp,
body.sp-mode .entryBtnArea2 span.entryBtnArea2-close-sp-up {
        position: absolute;
        right: -6px;
        top: -6px;
        background: #fff;
        border-radius: 0;
        display: inline-block;
        height: 22px;
        width: 22px;
        z-index: 11;
        cursor: pointer;
        right: 10px;
        top: -24px;
        background: rgba(255, 255, 255, 0.7);

        border: solid 1px #999;
        height: 26px;
        width: 28px;
        padding: 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 2px;
        border-bottom: 0;
        background: rgba(255, 255, 255, 0.3);
        background: rgba(102, 102, 102, 0.3);
        top: -26px;
        border-bottom-left-radius: 0px;
        border-bottom-right-radius: 0px;
        right: 0;
        width: 28px;
        height: 28px;
        top: -28px;
        border-top-right-radius: 0px;

        display: none;
}
body.sp-mode .entryBtnArea2 span.entryBtnArea2-close-sp.display-none,
body.sp-mode .entryBtnArea2 span.entryBtnArea2-close-sp-up.display-none {
        display: none;
}
body.sp-mode .entryBtnArea2 span.entryBtnArea2-close-sp.display-on,
body.sp-mode .entryBtnArea2 span.entryBtnArea2-close-sp-up.display-on {
        display: flex;
}
body.sp-mode .entryBtnArea2 span.entryBtnArea2-close-sp > i,
body.sp-mode .entryBtnArea2 span.entryBtnArea2-close-sp-up > i {
        font-size: 36px;
        position: relative;
        top: -4px;
        left: -16px;
        font-size: 30px;
        left: -2px;
        top: -4px;
        color: #828282;
        color: #b91313;
        color: #e27c20;
        color: var(--base-color);
        color: #666;

        top: 0;
        left: 0;
        font-size: 26px;
}
body.sp-mode .entryBtnArea2 span.entryBtnArea2-close-sp > i:hover,
body.sp-mode .entryBtnArea2 span.entryBtnArea2-close-sp-up > i:hover {
        color: #9fdb45;
        color: #999;
}
body.sp-mode .entryBtnArea2 span.entryBtnArea2-close-sp-up {
        display: none;
}
body.sp-mode .entryBtnArea2 label.entryBtnArea2-title {
        display: none;
}
body.sp-mode .entryBtnArea2 img.entryBtnArea2-image {
        display: none;
}
body.sp-mode .entryBtnArea2 ul.entryBtnArea2-layout {
        flex-direction: unset;
        flex-wrap: nowrap;
        padding: 10px;
        align-items: flex-end;
        padding-bottom: 0px;
        justify-content: space-evenly;
}
body.sp-mode .entryBtnArea2 ul.entryBtnArea2-layout > li:first-child {
        width: 180px;
}
body.sp-mode .entryBtnArea2 ul.entryBtnArea2-layout > li:last-child {
        margin-bottom: 10px;
        text-align: center;
        /*display: inline-flex;*/
        width: 120px;
}
body.sp-mode .entryBtnArea2 ul.entryBtnArea2-layout > li > a.web-button {
        border-radius: 2px;
        padding-left: 8px;
        padding-right: 5px;
        height: 45px;
}
body.sp-mode .entryBtnArea2 ul.entryBtnArea2-layout > li > a.web-button > i {
        display: none;
}
body.sp-mode .entryBtnArea2 ul.entryBtnArea2-layout > li > a.fax-button {
        background: #666;
        color: #fff;
        border-radius: 2px;
        width: 120px;
        padding: 10px 15px 10px 18px;
        height: 45px;
        font-size: 16px;
}
body.sp-mode .entryBtnArea2 ul.entryBtnArea2-layout > li:only-child,
body.sp-mode .entryBtnArea2 ul.entryBtnArea2-layout > li:only-child > a.fax-button {
        width: 180px !important;
}
body.sp-mode .entryBtnArea2 ul.entryBtnArea2-layout > li > a.fax-button > i {
        display: none;
}
body.sp-mode .entryBtnArea2 ul.entryBtnArea2-layout > li > a.fax-button > span {
        text-decoration: none;
}
body.sp-mode .entryBtnArea2 ul.entryBtnArea2-layout > li > a.web-button > span,
body.sp-mode .entryBtnArea2 ul.entryBtnArea2-layout > li > a.fax-button > span {
        display: none;
}
body.sp-mode .entryBtnArea2 ul.entryBtnArea2-layout > li > a.web-button > span.button-sptext,
body.sp-mode .entryBtnArea2 ul.entryBtnArea2-layout > li > a.fax-button > span.button-sptext {
        display: unset;
}


@media only screen and (max-width: 360px)
{
	.entryBtnArea2 ul.entryBtnArea2-layout > li:first-child
	{
		width: 140px;
	}
	.entryBtnArea2 ul.entryBtnArea2-layout > li > a.web-button {
		font-size: 14px;
		width: 140px;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.entryBtnArea2 ul.entryBtnArea2-layout > li:last-child
	{
		width: 100px;
	}
	.entryBtnArea2 ul.entryBtnArea2-layout > li > a.fax-button {
		font-size: 14px;
		width: 100px;
		padding: 0;
		display: flex;
		align-items: center;
		justify-content: center;
	}
}