@charset "utf-8";

@import url("base.css");

/***************************************************************************
 *
 * COMMON STYLE
 *
 ***************************************************************************/
@font-face {
    font-family: 'helvetica';
    src: url('../fonts/HelveticaNeueBold.eot'); /* IE9 Compat Modes */
    src: url('../fonts/HelveticaNeueBold.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../fonts/HelveticaNeueBold.woff2') format('woff2'), /* Super Modern Browsers */
        url('../fonts/HelveticaNeueBold.woff') format('woff'), /* Pretty Modern Browsers */
        url('../fonts/HelveticaNeueBold.ttf')  format('truetype'), /* Safari, Android, iOS */
        url('../fonts/HelveticaNeueBold.svg#svgFontName') format('svg'); /* Legacy iOS */
        font-weight: 700;
}
@font-face{
    font-family: 'helvetica';
    src: url('../fonts/HelveticaNeueHeavy.eot'); /* IE9 Compat Modes */
    src: url('../fonts/HelveticaNeueHeavy.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */
        url('../fonts/HelveticaNeueHeavy.woff2') format('woff2'), /* Super Modern Browsers */
        url('../fonts/HelveticaNeueHeavy.woff') format('woff'), /* Pretty Modern Browsers */
        url('../fonts/HelveticaNeueHeavy.ttf')  format('truetype'), /* Safari, Android, iOS */
        url('../fonts/HelveticaNeueHeavy.svg#svgFontName') format('svg'); /* Legacy iOS */
        font-weight: 900;
}
.hira {
    font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.gothic {
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

.mincho {
    font-family: "游明朝体", "YuMincho", "游明朝", "Yu Mincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN W3", HiraMinProN-W3, "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.helve {
    font-family: 'helvetica', sans-serif;
}
.mt50{
    margin-top: 50px
}
.features{
    margin-bottom: 100px
}
body {
    background-color: #FFFFFF;
    font-size: 14px;
    line-height: 1.5;
    color: #000000;
    font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

body.fixed {
    overflow: hidden;
}

.inner {
    width: 1027px;
    margin: 0 auto;
}

/*VALIDATE CONTACT*/
.error {
    display: block;
    font-size: 12px;
    color: red;
}

/* HEADER */
#header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    padding: 15px 27px 15px 20px;
    background: #fff;
    z-index: 99991;
}
#header .logo {
    /*float: left;*/
    width: 223px;
}
#header .mainMenu {
    /*float: right;*/
}
#header .mainMenu .menu {
    margin-top: 6px;
}
#header .mainMenu .menu li {
    display: inline-block;
    vertical-align: middle;
    font-size: 15px;
    font-weight: bold;
}
#header .mainMenu .menu li + li {
    margin-left: 21.5px;
}
#header .mainMenu .menu li a {
    display: inline-block;
    position: relative;
}

/* SUB MENU */
#header .mainMenu .menu li {
    position: relative;
}
#header .mainMenu .menu li ul {
    width: 180px;
    position: absolute;
    left: -10px;
    padding: 10px 0 7px;
}
@media (min-width: 769px) {
    #header .mainMenu .menu li ul {
        visibility: hidden;
        opacity: 0;
        transition: all 0.5s;
    }
    #header .mainMenu .menu li:hover ul {
        visibility: visible;
        opacity: 1;
    }
}
#header .mainMenu .menu li ul li {
    display: block;
    width: 100%;
    text-align: left;
    font-size: 14px;
    background-color: #f8f8f8;
    margin: 0;
}
#header .mainMenu .menu li ul li a {
    display: block;
    color: #2d2c2c;
    padding: 6px 20px;
}

.btn-common {
    text-align: center;
}
.btn-common a {
    display: inline-block;
    width: 292px;
    color: #fff;
    border: 3px solid #fff;
    font-weight: bold;
    padding: 14px 25px 9px 12px;
    letter-spacing: 1.5px;
    background: url(../images/common/icon-arrow.png) no-repeat right 20px center/8px;
    transition: all 250ms ease-in-out;
}
.btn-common.blue a {
    background: url(../images/common/icon-arrow-blue.png) no-repeat right 20px center/8px, #fff;
    border: 3.5px solid #004f94;
    color: #004f94;
    text-align: left;
    padding: 11px 25px 9px 18px;
}

/*FROM OLD COMMON*/
.pageTitle {
    display: block;
    text-align: center;
    padding: 28px 0 45px;
}

.breadcrumbTemp {
    text-align: left;
    padding: 33px 0 45px;
}

.breadcrumbTemp .wraper {
    padding-left: 27px;
}

.breadcrumbTemp .wraper > span {
    display: inline-block;
    vertical-align: middle;
}

.breadcrumbTemp .wraper > span a {
    text-decoration: none;
    color: #000000;
}

.breadcrumbTemp .wraper > span a:hover {
    text-decoration: underline;
}

.breadcrumbTemp .wraper > span a.home {
    font-weight: bold;
}

.breadcrumbTemp .wraper > span:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 10px;
    background: url(../img/common/arrowBC.png) no-repeat;
    margin: 0 8px;
}

.breadcrumbTemp .wraper > span:last-child:after {
    display: none;
}
/*FROM OLD COMMON*/

.main {
    margin-bottom: 61px;
}

.main .boxMain {
    padding-top: 50px;
    text-align: center;
    padding: 0;
    height: 59px;
/*     background: linear-gradient(to right, #004F94 0%, #004F94 50%, #FABE00 51%, #FABE00 100%); */
    overflow: hidden;
    position: relative;
}
.main .boxMain .botArrow{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    border-right: 50vw solid transparent;
    border-bottom: 59px solid #fff;
    border-left: 50vw solid transparent;
}

.main .pageTitle {
    font-size: 38px;
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 17px;
}

.main .minTitle {
    font-size: 22px;
    text-align: center;
    letter-spacing: 3px;
}


.breadcrumb {
    margin-bottom: 57px;
}

.breadcrumb li {
    display: inline-block;
    vertical-align: top;
    font-size: 12px;
    font-weight: 900;
    position: relative;
    margin-right: 21px;
}

.breadcrumb li:after {
    content: '';
    position: absolute;
    right: -18px;
    top: 47%;
    transform: translateY(-50%);
    width: 9px;
    height: 14px;
    background: url(../images/company/breadcrumb-arrow.png) no-repeat left center;
}

.breadcrumb li:last-child:after {
    content: "";
    display: none;
}

.breadcrumb li a {
    font-weight: 900;
    letter-spacing: -0.5px;
}

.breadcrumb li a:hover{
    text-decoration: underline;
}


/* CONTENT */
#content {
    position: relative;
    width: 100%;
}
.areaTitle {
    position: relative;
    margin-bottom: 16px;
}
.areaTitle .textTitle {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-left: -82px;
}
.areaTitle.textRight .textTitle {
    text-align: right;
    margin-right: -79px;
    flex-direction: row-reverse;
}
.areaTitle .textTitle .jp {
    display: inline-block;
    vertical-align: middle;
    margin: 0 30px;
    letter-spacing: 2.5px;
    margin-top: 6px;
}
.areaTitle .textTitle .en {
    display: inline-block;
    vertical-align: middle;
    font-size: 58px;
    color: #221613;
}
.areaTitle .bBlack {
    position: absolute;
    top: 49%;
    transform: translateY(-50%);
    border-top: 9px solid #000;
}
/*areaContact*/
.areaContact {
    position: relative;
    overflow: hidden;
}
.areaContact .contPhoto {
    min-height: 376.787px;
}
.areaContact .contPhoto img {
    height: 100%;
}
.areaContact .inner {
    position: absolute;
    top: 47%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.areaContact .contTitle {
    font-size: 58px;
    color: #fff;
    text-align: center;
    margin-bottom: 18px;
}
.areaContact .contTitle .jp {
    display: block;
    font-size: 14px;
    font-weight: normal;
    letter-spacing: 1px;
    margin-top: -11px;
}
.areaContact .contTxt {
    font-size: 22px;
    color: #fff;
    text-align: center;
    line-height: 36px;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 29px;
}
.areaContact .btn-common a {
    width: 294px;
    border-width: 3.5px;
    font-size: 15px;
    padding: 10px 25px 9px;
    font-weight: bold;
    text-align: left;
}
.blackHeader {
    position: fixed;
    z-index: 10;
    right: 0px;
    bottom: 0;
}
.blackHeader .fixBtn a {
    display: inline-block;
    position: relative;
    width: 100%;
    font-size: 15px;
    font-weight: bold;
    background: url(../images/common/logo-messager.png) no-repeat left 15px center/73px, #000;
    border: 2px solid #000;
    text-align: left;
    color: #fff;
    padding: 12px 25px 8px 110px;
} 
.blackHeader .fixBtn a:after {
    content: '';
    position: absolute;
    width: 13px;
    height: 8px;
    top: 52%;
    transform: translateY(-50%);
    right: 15px;
    background: url(../images/common/icon-arrow-up.png) no-repeat center center/cover;
    transition: all 150ms ease-in-out;
}
.blackHeader .fixBtn a.active:after{
    transform: translateY(-50%) rotate(-180deg);
}
.blackHeader .fixBtn a:hover:after {
    transform: translateY(-50%) rotate(-180deg);
}
/*.box_membery .memberyHeader{
    background: transparent !important;
}
.memberyHeader.yellowHeader{
    display: none !important;
}*/
/*.box_membery{
    right: 65px !important;
}*/

/*pageToTop*/
.pageToTop {
    position: fixed;
    bottom: 70px;
    width: 7.8px;
    right: 53px;
}
.pageToTop .inner {
    position: fixed;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    text-align: right;
}

.pageToTop .scrollToTop {
    display: inline-block;
    position: relative;
    cursor: pointer;
}

.sns-wrap p{
    display: inline-block
}
.sns-wrap{
    text-align: center;
    margin: 0px auto
}
/* FOOTER */
#footer {
    width: 100%;
    background: #4d4d4d;
    padding: 39px 0 24px;
}
#footer .ftWrap {
    margin-bottom: 67px;
}
#footer .ftMenu {
    float: left;
    width: 500px;  
    margin-left: -1px;
}
#footer .ftMenu .menu li {
    display: inline-block;
    vertical-align: middle;
    width: 235px;
    margin-bottom: 2px;
}
#footer .ftMenu .menu li a {
    display: inline-block;
    position: relative;
    background: url(../images/common/icon-arrow.png) no-repeat left center/8px;
    color: #fff;
    padding-left: 17px;
    padding-top: 3px;
    transition: all 150ms ease-in-out;
}
#footer .ftContact {
    float: right;
    margin-right: 77px;
    margin-top: 4px;
}
#footer .ftContact .btn-common {
    text-align: left;
    margin-bottom: 7px;
}
#footer .ftContact .btn-common:nth-child(2) {
    margin-bottom: 13px;
}
#footer .ftContact .btn-common a {
    padding: 12px 25px 10px 12px;
}
#footer .ftTel {
    color: #fff;
}
#footer .ftTel .tel {
    display: inline-block;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: -4px;
    letter-spacing: 1px;
}
#footer .ftTel .tel a {
    color: #fff;
}
#footer .ftTel .time {
    margin-left: 4px;
}
#footer .ftLogo {
    text-align: center;
    margin-bottom: 25px;
}
#footer .ftLogo li {
    display: inline-block;
    vertical-align: middle;
    margin: 0 21px;
}
#footer .ftLogo li:nth-child(1) {
    width: 118.667px;
}
#footer .ftLogo li:nth-child(2),
#footer .ftLogo li:nth-child(3) {
    width: 135.667px;
}
#footer .ftLogo li:last-child {
    width: 76px;
}
#footer #copyright {
    font-size: 13px;
    color: #fff;
    text-align: center;
}
.sp {
    display: none;
}

/* FIX TABLET */
@media (max-width: 1230px) and (min-width: 769px) {
    body {
        width: 1349px;
    }
}

/* PC ONLY */
@media (min-width: 769px) {
    #header {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 61.04px;
    }
    #header .mainMenu {
        width: calc(100% - 223px);
        text-align: right;
    }
    #header .mainMenu .menu li a:after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        border-bottom: 2px solid;
        transition: all 150ms ease-in-out;
    }
    #header .mainMenu .menu li a:hover:after {
        width: 100%;
    }
    /*#header*/

    .btn-common a:hover {
        color: #000;
        background: url(../images/common/icon-arrow-black.png) no-repeat right 20px center/8px, #fff;
    }
    .btn-common.blue a:hover{
        color: #fff;
        background: url(../images/common/icon-arrow.png) no-repeat right 20px center/8px, #004f94;
    }

    /*#footer*/
    #footer .ftMenu .menu li a:hover {
        background: url(../images/common/icon-arrow.png) no-repeat left 3px center/8px;
    }

    #footer .ftTel .tel a {
        pointer-events: none;
    }
}
@media(max-width: 1070px) and (min-width: 769px){
    #header .mainMenu .menu{
        width: 535px;
        float: right;
    }
}
/* STYLE MOBILE */
@media (max-width: 768px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }

    .inner {
        width: 100%;
        padding: 0 4%;
    }

    /*FROM OLD COMMON*/
    .pageTitle {
        padding: 6px 0 20px;
    }
    .pageTitle img {
        width: 35%;
    }

    .breadcrumbTemp {
        background: url(../img/common/photo_bredcrum.png) no-repeat top center;
        background-size: 50px;
    }
    .breadcrumbTemp .wraper {
        padding-left: 0;
        text-align: center;
    }

    .breadcrumbTemp .wraper > span {
        font-size: 11px;
    }
    .breadcrumbTemp .wraper > span:after {
        vertical-align: middle;
        margin: 0 5px;
    }
    /*FROM OLD COMMON*/

    /* MENU */
    .hambuger {
        width: 28.813px;
        height: 31.813px;
        float: right;
        z-index: 9991;
        display: flex;
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }

    .hambuger span {
        display: block;
        height: 2px;
        width: 100%;
        background: #000;
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: .25s ease-in-out;
        -moz-transition: .25s ease-in-out;
        transition: .25s ease-in-out;
    }

    .hambuger span:nth-child(1) {
        margin-bottom: 6px;
    }

    .hambuger span:nth-child(2) {
        opacity: 1;
    }

    .hambuger.toggle span:nth-child(1) {
        margin-bottom: 0;
        -webkit-transform: rotate(15deg);
        -moz-transform: rotate(15deg);
        transform: rotate(15deg);
    }
    .hambuger.toggle span:nth-child(2) {
        margin-top: -2px;
        -webkit-transform: rotate(-15deg);
        -moz-transform: rotate(-15deg);
        transform: rotate(-15deg);
    }

    #header {
        padding: 12px 4%;
        transition: all 500ms ease-in-out;
        transition-delay: 0.5s;
    }
    #header.active {
        background: #f4f5f5;
    }
    #header .logo {
        float: left;
        width: 218px;
    }
    #header .mainMenu {
        display: none;
        position: absolute;
        top: 55px;
        left: 0;
        width: 100%;
        height: calc(100vh - 55px);
        background: #f4f5f5;
        overflow-y: auto;

    }
    #header .mainMenu {
        padding: 30px 14.5% 0 14%;
    }
    #header .mainMenu .menu {
        margin-bottom: 40px;
    }
    #header .mainMenu .menu li {
        display: block;
        font-size: 19px;
        letter-spacing: 0.5px;
    }
    #header .mainMenu .menu li + li {
        margin-left: 0;
        margin-top: 18.5px;
    }
    #header .mainMenu .menu li:nth-child(n + 6) {
        display: inline-block;
        vertical-align: middle;
    }
    #header .mainMenu .menu li:nth-child(6),
    #header .mainMenu .menu li:nth-child(8) {
        margin-right: 32px;
    }
    #header .mainMenu .menu li:nth-child(7),
    #header .mainMenu .menu li:nth-child(9) {
        margin-right: 40%;
    }

    /* SUB MENU */
    #header .mainMenu .menu li ul {
        width: 100%;
        position: static;
        left: 0;
        padding: 5px 0;
        display: none;
    }
    #header .mainMenu .menu li .subBtn {
        position: absolute;
        right: 0;
        top: 0;
        font-size: 22px;
        line-height: 1.2;
        padding: 0 5px;
    }
    #header .mainMenu .menu li .subBtn:after {
        content: "+";
        display: block;
        transition: all 0.3s;
    }
    #header .mainMenu .menu li.open .subBtn:after {
        transform: rotate(-45deg);
    }
    #header .mainMenu .menu li ul li {
        font-size: 16px;
        background-color: transparent;
    }
    #header .mainMenu .menu li ul li a {
        color: #000;
        padding: 5px 15px;
    }

    #header .mainMenu .headContact .btn-common {
        margin-bottom: 6px;
    }
    #header .mainMenu .headContact .btn-common a {
        display: block;
        width: 100%;
        text-align: left;
        color: #000;
        border-color: #000;
        background: url(../images/common/icon-arrow-black.png) no-repeat right 20px center/7px;
        padding: 10px 25px 9px 12px;
        letter-spacing: 0;
    }

    #header .mainMenu .headContact .btn-common:nth-child(2) {
        margin-bottom: 10.5px;
    }
    #header .mainMenu .headTel .tel {
        display: inline-block;
        font-size: 30px;
        font-weight: bold;
        text-align: justify;
        letter-spacing: 0.8px;
    }
    #header .mainMenu .headTel .time {
        font-size: 12px;
    }

    /*common*/
    .main {
        margin-bottom: 30px;
    }
    .main .boxMain{
        height: 50px;
    }
    .main .boxMain .botArrow{
        border-bottom: 50px solid #fff;
    }

    .main .pageTitle {
        font-size: 35px;
        margin-bottom: 5px;
    }

    .main .minTitle {
        font-size: 16px;
    }

    .breadcrumb {
        margin-bottom: 30px;
    }
    .breadcrumb li{
        font-size: 11px;
    }

    /*#header */
    .areaTitle {
        display: flex;
        justify-content: flex-start;
        margin-bottom: 0;
    }
    .areaTitle.textRight {
        justify-content: flex-end;
    }
    .areaTitle .textTitle {
        margin-left: 0;
    }
    .areaTitle.textRight .textTitle {
        text-align: right;
        margin-right: 0;
        padding-right: 5px;
        flex-direction: row-reverse;
    }
    .areaTitle .bBlack {
        top: 53.5%;
        border-top: 5px solid #000;
    }
    .areaTitle .textTitle .en {
        font-size: 35px;
    }
    .areaTitle .textTitle .jp {
        font-size: 12px;
        margin: 0 10px 0 7px;
        letter-spacing: 2px;
        margin-top: 6px;
    }

    .btn-common a {
        width: 264px;
        font-size: 14px;
        padding: 14px 25px 9px 12px;
        letter-spacing: 0;
        background: url(../images/common/icon-arrow.png) no-repeat right 20px center/8px;
        transition: all 150ms ease-in-out;
    }
    .areaContact .btn-common a {
        width: 264px;
        font-size: 14px;
        padding: 10px 25px 9px 25px;
        border-width: 2px;
    }
    .areaContact {
    }
    .areaContact .inner {
        top: 45%;
    }
    .areaContact .contPhoto {
        min-height: auto;
    }
    .areaContact .contTitle {
        font-size: 35px;
        margin-bottom: 22px;
    }
    .areaContact .contTitle .jp {
        font-size: 12px;
        letter-spacing: 1px;
        margin-top: 0;
    }
    .areaContact .contTxt {
        font-size: 15px;
        line-height: 23px;
        letter-spacing: 0;
        margin-bottom: 28px;
    }
    
    .pageToTop {
        bottom: 100px;
        right: 3%;
    }

    /*#footer*/
    #footer {
        padding: 27px 0 17px;
    }
    #footer .ftMenu {
        width: 100%;
        margin: 0 0 22px;
        padding: 0 3%;
    }
    #footer .ftMenu .menu li {
        float: left;
        width: 48%;
        line-height: 12px;
        margin-bottom: 3.5px;
    }
    #footer .ftMenu .menu li:nth-child(2n + 1) {
        width: 52%;
    }
    #footer .ftMenu .menu li a {
        font-size: 10px;
        background: url(../images/common/icon-arrow.png) no-repeat left center/5.5px;
        padding-left: 13px;
        padding-top: 3px;
    }
    #footer .ftWrap {
        margin-bottom: 28px;
    }
    #footer .ftContact {
        width: 100%;
        margin-right: 0;
        padding: 0 11.5%;
    }
    #footer .ftContact .btn-common {
        text-align: center;
        margin-bottom: 6px;
    }
    #footer .ftContact .btn-common a {
        width: 100%;
        text-align: left;
        padding: 11px 25px 8px 12px;
        background: url(../images/common/icon-arrow.png) no-repeat right 19px center/7px;
    }
    #footer .ftContact .btn-common:nth-child(2) {
        margin-bottom: 11px;
    }
    #footer .ftTel {
        text-align: center;
    }
    #footer .ftTel .tel {
        font-size: 30px;
        margin-bottom: -1px;
        letter-spacing: 0.5px;
    }
    #footer .ftTel .time {
        font-size: 12px;
    }
    
   
    #footer .ftLogo {
        margin-bottom: 19px;
    }
    #footer .ftLogo li {
        margin: 0;
    }
    #footer .ftLogo li + li {
        margin-left: 29px;
    }
    #footer .ftLogo li:first-child {
        display: block;
        margin: 0 auto 19px;
    }
    #footer .ftLogo li:nth-child(2) {
        margin-left: 0; 
    }
    #footer .ftLogo li:nth-child(2), 
    #footer .ftLogo li:nth-child(3) {
        width: 101.386px;
    }
    #footer .ftLogo li:last-child {
        width: 56.855px;
        margin-right: -4px;
    }
    #footer #copyright {
        font-size: 12px;
    }
    
    /*.blackHeader*/
    .blackHeader {
        right: 0;
        width: 100%;
    }
    
    .blackHeader .fixTop {
        display: -webkit-flex;
        display: -moz-flex;
        display: -ms-flex;
        display: -o-flex;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .blackHeader .fixTop .btn-common {
        width: 100%;
    }
    .blackHeader .fixTop .btn-common a {
        width: 100%;
        font-size: 13px;
        background: url(../images/common/icon-arrow.png) no-repeat right 26px center/7.5px, #004f94;
        color: #fff;
        border: none;
        text-align: left;
        padding: 8px 40px 7px 30px;
        line-height: 1.2;
    }
    .blackHeader .fixTop .btn-common:last-child a {
        padding-left: 36px;
    }
    .blackHeader .fixBtn a {
        width: 100%;
        margin: 0;
        background: url(../images/common/logo-messager.png) no-repeat left 20vw center/73px, #000;
        padding: 10px 25px 8px 43vw;
    }
    .blackHeader .fixBtn a:after {
        width: 12px;
        height: 7px;
        right: 5.5%;
    }
}

/*Tablet Mode*/
@media (max-width: 750px) and (max-height: 450px) {
    #header .mainMenu .menu li:nth-child(7), #header .mainMenu .menu li:nth-child(9) {
        margin-right: 60%;
    }
}

/*IE FIX*/
@media all and (-ms-high-contrast:none) {
    #header .mainMenu .menu li a {
        vertical-align: text-bottom;
    }
    .btn-common a {
        padding: 18px 25px 5px 12px;
    }
    .btn-common.blue a {
        padding: 17px 25px 3px 12px;
    }
    .areaContact .btn-common a {
        padding: 18px 25px 3px 12px;
    }
    #footer .ftMenu .menu li {
        margin-bottom: -10px;
    }
    #footer .ftMenu .menu li a {
        padding-top: 15px;
    }
    #footer .ftContact .btn-common a {
        padding: 17px 25px 3px 12px
    }
    .blackHeader .fixBtn a {
        padding: 20px 25px 0px 110px;
    }
    .pageToTop .scrollToTop img {
        width: 100%;
    }

}

/*IP5*/
@media(max-width: 320px) {
    #header .mainMenu .menu li:nth-child(7), #header .mainMenu .menu li:nth-child(9) {
        margin-right: 40%;
    }
    #header .mainMenu .headTel .tel {
        font-size: 25px;
    }
    #header .mainMenu .headContact .btn-common a {
        font-size: 13px;
        background: url(../images/common/icon-arrow-black.png) no-repeat right 15px center/7px;
    }
    .areaTitle .textTitle .en {
        font-size: 30px;
    }
    .areaContact .contTxt {
        font-size: 13px;
    }
    #footer .ftLogo li + li {
        margin-left: 15px;
    }
    #footer .ftTel .tel {
        font-size: 24px;
    }
    #footer .ftContact .btn-common a {
        font-size: 13px;
        padding: 11px 15px 8px 12px;
        background: url(../images/common/icon-arrow.png) no-repeat right 12px center/7px;
    }
    .blackHeader .fixTop .btn-common a {
        width: 100%;
        font-size: 12px;
        background: url(../images/common/icon-arrow.png) no-repeat right 15px center/7.5px, #004f94;
        color: #fff;
        border: none;
        text-align: left;
        padding: 7px 20px 6px 20px;
        line-height: 1.2;
    }
    .blackHeader .fixTop .btn-common:last-child a {
        padding-left: 26px;
    }
    .blackHeader .fixBtn a {
        background: url(../images/common/logo-messager.png) no-repeat left 12vw center/73px, #000;
        padding: 10px 25px 8px 40vw;
    }
}