/* ================================
  E&C 2023-02
================================ */
@import url(https://use.fontawesome.com/releases/v5.0.11/css/all.css);
/* -------------------------------- 
  reset / base
-------------------------------- */
*, *:before, *:after {
    box-sizing: inherit;
}
html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
body {
    background-color: #fff;
    /*font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;*/
    font-family: "Noto Sans JP", sans-serif;
    font-size: 16px;
    font-feature-settings: "palt";
}
main {
    display: block; /* IE11 */
    margin-bottom: 60px;
}
article {
    margin-top: 60px;
}
html, body, h1, p, table, th, td, dd, figcaption, figure {
    margin: 0;
    padding: 0;
}
p {
    /*font-family: "Noto Serif JP", serif;*/
    line-height: 1.7;
}
h1, h2, h3, h4 {
    line-height: 1.3;
}
h2, h3, h4 {
    margin: 0;
    padding: 1.2em 0 0;
}
p {
    letter-spacing: 0.1em;
    font-weight: 300;
}
p b {
    font-weight: bold;
}
main p {
    margin: 0;
    padding: 1em 0 0;
    line-height: 1.7;
}
ul {
    list-style: disc;
    margin: 0;
    padding: 10px 0 0 1.2em;
}
ul ul {
    list-style: circle;
}
ul li, ol li {
    margin: 0 0 10px;
    padding: 0;
    letter-spacing: 0.1em;
}
nav ul, .splide ul {
    list-style: none;
    padding: 0;
}
nav li, .splide li {
    margin: 0;
}
nav ul a {
    display: inline-block;
    text-decoration: none;
}
i {
    margin-right: 6px;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
}
a {
    transition: all 0.3s ease;
    color: #aa001a;
}
a img {
    border: none;
    outline: 0;
    text-decoration: none;
    transition: all 0.3s ease;
}
br {
    letter-spacing: 0;
}
figcaption {
    padding-top: 3px;
    font-size: 12px;
    text-align: left;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
label {
    cursor: pointer;
}
input, textarea, select {
    font: 100%;
}
input[type="button"], input[type="submit"] {
    -webkit-appearance: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: 'Zen Old Mincho', serif;
}
input::-webkit-input-placeholder, input::placeholder, textarea::placeholder {
    font-size: 16px;
}
sup, sub {
    position: relative;
    height: 0;
    line-height: 1;
    vertical-align: baseline;
}
sup {
    bottom: 1ex;
}
sub {
    top: .5ex;
}
video {
    top: 0;
    width: 100%;
    height: 100%;
}
@media screen and (min-width: 960px), print {
    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}
/* -------------------------------- 
  etc
-------------------------------- */
.pT0 {
    padding-top: 0 !important;
}
.pB0 {
    padding-bottom: 0 !important;
}
.taC {
    text-align: center !important;
}
.taR {
    text-align: right !important;
}
.taL {
    text-align: left !important;
}
.fRed {
    color: #aa001a;
}
.fBlu {
    color: #6f90a1;
}
.fS {
    font-size: 0.8em;
}
.fM {
    font-size: 1.2em;
}
.fBig {
    font-size: 2rem;
}
.inlineBlk {
    display: inline-block;
    text-align: inherit;
}
@media screen and (max-width: 959px) {
    .mbPB0 {
        padding-bottom: 0 !important;
    }
}
/* table
-------------------------------- */
@media screen and (max-width: 959px) {
    table.tblRes th, table.tblRes td {
        display: block;
        width: 100%;
        text-align: left;
    }
}
/* -------------------------------- 
  main
-------------------------------- */
/* ページ余白
-------------------------------- */
@media screen and (min-width: 960px), print {
    main {
        margin-bottom: 50px;
    }
    /*  .secBox {
    padding-bottom: 3rem;
  }*/
}
/* ページタイトル
-------------------------------- */
/* 一文字ずつ表示 */
.txtAnime span {
    opacity: 0;
}
.txtAnime.appeartext span {
    animation: text_anime_on 1s ease-out forwards;
}
@keyframes text_anime_on {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
/* -------------------------------- 
  見出し
-------------------------------- */
.titleBox {
    background: url("../img/index_img/top_leaf.png")no-repeat;
    background-position: top right;
    background-size: 60%;
}
.titleSec {
    margin-left: 5%;
    padding: 60px 0px 20px;
}
.titleSec h2 {
    color: #10596d;
    font-weight: bold;
    font-size: 28px;
}
.titleSec div {
    position: relative;
    color: #3690a8;
    font-size: 18px;
}
.titleSec div::before {
    content: '';
    position: absolute;
    left: 0;
    border-bottom: solid 1px #3690a8;
    animation: border_anim 1s linear forwards;
    bottom: -3px;
}
.titleSec div::after {
    content: "";
    display: block;
    width: 155px;
    height: 4px;
    background-color: #3690a8;
    position: absolute;
    border-radius: 2px;
    bottom: -5px;
}
@keyframes border_anim {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}
@media screen and (min-width: 768px), print {
    .titleBox {
        background-size: auto;
    }
    .titleSec {
        margin-left: 15%;
        padding: 0px 0px 40px;
    }
    .titleSec h2 {
        font-size: 64px;
    }
    .titleSec div {
        font-size: 30px;
    }
    .titleSec div::before {
        left: 0;
        bottom: -11px;
    }
    .titleSec div::after {
        width: 260px;
        height: 4px;
        bottom: -13px;
    }
}
/* -------------------------------- 
  上部へ戻る
-------------------------------- */
a#pageTop {
    position: fixed;
    bottom: 5%;
    transform: translateY(-50%);
    right: 3%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    overflow: hidden;
    text-decoration: none;
    font-size: 14px;
    color: #fff;
    background: #0c304d;
    z-index: 99;
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.4s ease-in;
    border: 2px solid #fff;
	transition: all 0.3s ease;
	
}
a#pageTop::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    content: "\f077";
    font-size: 40px;
    padding-bottom: 5px;
}
a#pageTop.fadein {
    opacity: 1;
}
@media screen and (min-width: 768px) {
	a#pageTop:hover {
	 background: #004a82;	
	}	
}
@media screen and (max-width: 767px) {
    a#pageTop {
        width: 40px;
        height: 40px;
        bottom: 5%;
        transform: translateY(-50%);
        right: 20px;
        font-size: 12px;
    }
    a#pageTop::before {
        font-weight: 600;
        font-size: 24px;
        padding-bottom: 5px;
    }
}
/* -------------------------------- 
  優先調整
-------------------------------- */
/* 表示切替 */
@media screen and (max-width: 768px) {
    .pcOn {
        display: none !important;
    }
}
@media screen and (min-width: 767px), print {
    .mbOn {
        display: none !important;
    }
}
/* -------------------------------- 
ヘッダー
-------------------------------- */
header {
    position: fixed;
    z-index: 999;
    width: 100%;
}
header button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}
.p-header {
    width: 100%;
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: #fff;
    box-shadow: 0.5px 0.5px 2px #a9aaa5;
}
.p-header__inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: inherit;
    position: relative;
}
.p-header__title {
    z-index: 997;
    position: absolute;
    left: 2%;
    top: 50%;
    transform: translate(0, -50%);
}
.p-header__title a {
    text-decoration: none;
    color: #FFFFFF;
}
.p-header__nav {
    position: absolute;
    right: 0;
    top: 0;
    width: 500px;
    height: 100vh;
    transform: translateX(100%);
    background: linear-gradient(50deg, #122e4a 0%, #1c5b99 98%);
    transition: ease .4s;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.p-header__nav .rogoimgBox {
    margin-bottom: 2rem;
}
.p-header__nav-item {
    margin-right: auto;
    margin-left: auto;
    text-align: left;
}
.p-header__nav-items {
    padding-bottom: 2rem;
}
.p-header__nav-item a {
    color: #FFFFFF;
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    display: flex;
    align-items: center;
}
.p-header__nav-item a::before {
    content: "";
    display: block;
    background: #7d7d7d;
    width: 10px;
    height: 2px;
    margin-right: 15px;
}
.p-header__nav-item:last-child a {
    margin-bottom: 0;
}
.p-header__hamburger {
    width: 30px;
    margin: 0;
}
.contactBox {
    width: 80px;
    height: 80px;
    background-color: #122e4a;
    transition: all 0.3s ease;
}
.contactBox:hover {
    background-color: #004a82;
}
.telBox {
    margin-right: 10px;
}
.hamburger {
    background-color: #ca1d00;
    border-color: transparent;
    z-index: 9999;
    cursor: pointer;
    width: 80px;
    height: 80px;
    padding: 0 0 0 25px;
    transition: all 0.3s ease;
}
.hamburger:hover {
    background-color: #e3442a;
}
.hamburger span {
    width: 30px;
    height: 3px;
    background-color: #FFFFFF;
    position: relative;
    transition: ease .4s;
    display: block;
}
.hamburger span:nth-child(1) {
    top: 0;
}
.hamburger span:nth-child(2) {
    margin: 8px 0;
}
.hamburger span:nth-child(3) {
    top: 0;
}
.p-header__nav.active {
    transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
    top: 11px;
    transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    top: -11px;
    transform: rotate(-45deg);
}
.p-header__nav-box-mask.active {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: 998;
    background: rgba(0, 0, 0, 0.55);
    transition: ease .4s;
}
@media screen and (min-width: 768px), {
    .p-header__nav-items:hover .p-header__nav-item a {
        color: #92a8be;
    }
    .p-header__nav-items:hover .p-header__nav-item a:hover {
        color: #ffffff;
    }
    .p-header__nav-item a:hover::before {
        background: #ffffff;
    }
}
@media screen and (max-width: 767px), {
    .p-header__nav {
        width: 100vw;
        height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .p-header__nav-item a {
        margin-bottom: 1.2rem;
        font-size: 16px;
    }
    .p-header__nav-items {
        padding-top: 0;
        padding-bottom: 4rem;
    }
    .p-header__title {
        width: 40%;
    }
    .p-header {
        width: 100%;
        height: 60px;
    }
    .contactBox {
        width: 60px;
        height: 60px;
    }
    .hamburger {
        width: 60px;
        height: 60px;
        padding: 0 0 0 15px;
    }
    .telBox {
        background: #254566;
        width: 60px;
        height: 60px;
        margin-right: 0;
    }
}
/*上に上がる動き*/
#js-header.UpMove {
    animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(-100px);
    }
}
/*　下に下がる動き　*/
#js-header.DownMove {
    animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
    from {
        opacity: 0;
        transform: translateY(-100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*ヘッダー消える*/
#js-header.UpMove {
    animation: UpAnime 0.5s forwards;
}
/* -------------------------------- 
  フッター
-------------------------------- */
footer {
    position: relative;
}
footer .wrap {
    position: relative;
}
footer .underBox {
    width: 95%;
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    border-top: 1px solid #fff;
    padding-top: 20px;
}
footer .underBox .Box {
    width: 70%;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4.5%;
}
footer .underBox .privacyLink {
    text-decoration: none;
    color: #fff;
    font-size: 14px;
}
footer .underBox small {
    display: block;
    text-align: center;
    font-size: clamp(12px, 2vw, 14px);
}
footer .wrap .catchBox {
    width: 50%;
    margin: 0 auto 60px;
}
footer {
    margin-top: auto;
    background: #022640;
    color: #fff;
}
footer .wrap .fBox {
    display: flex;
}
footer .overviewBox {
    width: 30%;
    /*padding-left: 10%;*/
    background: #002d4f;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 160px;
}
footer .overviewBox p {
    font-size: min(3.5vw, 15px);
}
footer .overviewBox a {
    text-decoration: none;
    color: #fff;
}
footer .overviewBox .rogolink {
    display: block;
    max-width: 240px;
    margin-bottom: 20px;
}
footer .navigation {
    width: 50%;
    padding-left: 20px;
}
.rightBox {
    width: 70%;
    background: linear-gradient(90deg, rgb(3 19, 49), rgb(0, 28, 49));
    padding: 0 10% 160px 5%;
}
.areaBox {
    display: flex;
    padding: 80px 0 80px;
    align-items: center;
}
.areaBox .Box {
    width: 50%;
    max-width: 480px;
}
.areaBox .Box h2 {
    border-bottom: 1px solid #fff;
    font-size: clamp(18px, 2vw, 24px);
}
.areaBox .Box p {
    padding: 20px 15% 0 0;
    font-size: clamp(14px, 2vw, 16px);
}
.areaBox .imgBox {
    width: 50%;
}
.rightBox ul {
    display: flex;
    padding: 0 10px;
    list-style: none;
    flex-wrap: wrap;
}
.rightBox ul li {
    width: 190px;
    font-size: clamp(14px, 2vw, 16px);
}
.rightBox ul li a {
    color: #fff;
    text-decoration: none;
}
.rightBox ul li:before {
    content: '';
    display: inline-block;
    position: relative;
    left: -5px;
    top: -4px;
    width: 5px;
    height: 5px;
    background: #fff;
}
footer .rogoBox {
    margin: 0 10%;
}
@media screen and (max-width: 1000px) {
    .rightBox {
        width: 70%;
        padding: 0 4% 160px 4%;
    }
    .areaBox {
        padding: 40px 0 40px;
    }
}
@media screen and (max-width: 880px) {
    footer .wrap .fBox {
        display: flex;
        flex-direction: column;
    }
    footer .overviewBox {
        width: auto;
        padding-bottom: 0;
        padding: 20px 4%;
    }
    footer .overviewBox .Box {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    footer .overviewBox .rogolink {
        display: block;
        max-width: 240px;
        width: 40%;
        margin-bottom: 0px;
    }
    .rightBox {
        width: auto;
        padding: 0 4% 160px 4%;
    }
    .areaBox {
        padding: 20px 0 30px;
    }
    footer .underBox .Box {
        width: auto;
        padding: 0 4%;
    }
}
@media screen and (min-width: 601px) {
    .rightBox ul li a:hover {
        opacity: 0.5;
    }
}
@media screen and (max-width: 600px) {
    .rightBox {
        width: auto;
        padding: 0 4% 200px 4%;
    }
    .areaBox {
        flex-direction: column;
    }
    .areaBox .Box {
        width: auto;
        max-width: none;
    }
    .areaBox .Box p {
        padding: 20px 0;
        font-size: clamp(14px, 2vw, 16px);
    }
    .areaBox .imgBox {
        width: auto;
    }
    .rightBox ul li {
        width: 50%;
    }
    footer .underBox .Box {
        margin: auto;
        align-items: center;
        flex-direction: column;
        padding: 0 4%;
    }
    footer .underBox .Box a {
        margin-bottom: 20px;
    }
}
@media screen and (max-width: 450px) {
    footer .overviewBox .rogolink {
        max-width: 240px;
        width: 80%;
        margin-bottom: 0px;
    }
    footer .overviewBox .Box {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
}
/*ボタン*/
.linkBtn {
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
    border: 1px solid #c89c45;
    text-align: center;
    outline: none;
    transition: ease .2s;
    margin-top: 40px;
}
.linkBtn span {
    position: relative;
    z-index: 10;
    color: #c89c45;
}
.linkBtn:hover span {
    color: #fff;
}
.bgleft:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #c89c45;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(0.4, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
}
.bgleft:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
}
/*	ボタン */
.btnBox {
    display: flex;
    justify-content: center;
}
.commonBtn .text {
    padding: 0 20px 0 40px;
    transition: all 0.3s ease;
}
.commonBtn {
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 60px;
    font-size: clamp(16px, 3vw, 26px);
    font-weight: bold;
    text-decoration: none;
    color: #fff;
    /*背景の色を変更*/
    background: linear-gradient(120deg, #000000 0%, #d40019 100%);
    /*background: linear-gradient(120deg, #a6c0fe 0%, #f68084 100%);*/
    background-position: 0% 50%;
    background-size: 200% auto;
    transition: all 0.3s ease;
}
.commonBtn:hover {
    background-position: 100% 50%;
}
.commonBtn:hover .text {
    padding: 0 35px 0 55px;
}
@media screen and (max-width: 767px) {
    .commonBtn img {
        max-width: 15%;
    }
    .commonBtn .text {
        padding: 0 0px 0 40px;
        transition: all 0.3s ease;
    }
    .commonBtn {
        margin-top: 20px;
        padding: 3px;
        justify-content: space-between;
    }
    .commonBtn:hover .text {
        padding: 0 0px 0 40px;
    }
}
#contactBox {
    max-width: 1040px;
    margin: -60px auto 0;
    background: #fff;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}
#contactBox .topText {
    text-align: center;
    font-size: clamp(24px, 4vw, 60px);
    font-weight: bold;
    padding: 30px 0;
}
#contactBox .text {
    text-align: center;
    font-size: clamp(16px, 2vw, 20px);
}
#contactBox .text b {
    font-size: 110%;
}
#contactBox .text .red {
    font-size: 130%;
    color: #cc0000;
    font-weight: bold;
}
#contactBox .linkBox {
    background: #cfe3f1;
    margin: 60px 0;
    border-radius: 10px;
    padding: 20px 40px 40px;
}
#contactBox .linkBox h3 {
    text-align: center;
    color: #fff;
    opacity: 0.5;
    font-size: clamp(24px, 4vw, 40px);
    padding: 0;
}
#contactBox .linkBox p {
    text-align: center;
    margin: 20px auto 20px;
    background: #fff;
    border-radius: 40px;
    border: 2px #000 solid;
    font-size: clamp(14px, 3vw, 18px);
    font-weight: bold;
    padding: 5px;
    width: 80%;
}
#contactBox .linkBox .fBox {
    display: flex;
    align-items: center;
    justify-content: center;
}
#contactBox .linkBox .fBox .telBox {
    margin-right: 5%;
    width: 50%;
    max-width: 420px;
}
#contactBox .linkBox .fBox .commonBtn {
    /*背景の色を変更*/
    background: linear-gradient(120deg, #000000 0%, #005996 100%);
    /*background: linear-gradient(120deg, #a6c0fe 0%, #f68084 100%);*/
    background-position: 0% 50%;
    background-size: 200% auto;
    transition: all 0.3s ease;
}
#contactBox .linkBox .fBox .commonBtn:hover {
    background-position: 100% 50%;
}
@media screen and (max-width: 1080px) {
    #contactBox {
        margin: -60px 5% 0;
        background: #fff;
    }
}
@media screen and (max-width: 767px) {
    #contactBox .linkBox p {
        font-weight: bold;
        padding: 5px;
        width: auto;
    }
}
@media screen and (max-width: 650px) {
    #contactBox .linkBox {
        margin: 20px 0 40px;
        padding: 20px 5% 30px;
    }
    #contactBox .linkBox p {
        border-radius: 10px;
        padding: 10px 15px;
        text-align: left;
    }
    #contactBox .linkBox p .inlineBlk {
        display: inline !important;
    }
    #contactBox .linkBox .fBox {
        flex-direction: column;
    }
    #contactBox .linkBox .fBox .telBox {
        margin-right: 0;
        width: auto;
    }
    #contactBox .text {
        text-align: left;
        padding: 0 3%;
    }
    #contactBox .text br {
        display: none;
    }
}
.consultBox {
    padding: 100px 0 0;
    position: relative;
}
.consultBox::before {
    content: '';
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(-225deg, #d33b2b 0%, #002d4f 56%, #d33b2b 100%);
}
.consultBox::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 2px;
    height: 40px;
    background: #002d4f;
    left: 50%;
    transform: translateX(-50%);
}
.consultBox .secBox {
    max-width: 1200px;
    margin: auto;
}
.consultBox .secBox h3 {
    padding: 0;
    text-align: center;
    margin-bottom: 20px;
}
.consultBox .secBox h3 .subtxt {
    display: block;
    font-size: clamp(20px, 3.5vw, 50px);
}
.consultBox .secBox h3 .maintxt {
    display: block;
    font-size: clamp(22px, 5.2vw, 70px);
    color: #2b7ec1;
    font-family: "Noto Serif JP", sans-serif;
}
.consultBox .balloon {
    position: relative;
    display: block;
    margin: 1.5em auto -1.5em;
    padding: 0.5rem 5%;
    width: 70%;
    max-width: 100%;
    font-size: 16px;
    background: #FFF;
    border: solid 3px #0c304d;
    box-sizing: border-box;
    text-align: center;
    z-index: 2;
}
.consultBox .balloon:before {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 50%;
    margin-left: -15px;
    border: 12px solid transparent;
    border-top: 12px solid #FFF;
    z-index: 2;
}
.consultBox .balloon:after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 50%;
    margin-left: -17px;
    border: 14px solid transparent;
    border-top: 14px solid #0c304d;
    z-index: 1;
}
.consultBox .balloon p {
    font-size: min(3.5vw, 30px) !important;
    margin: 0;
    padding: 0;
    color: #0c304d;
    font-weight: bold;
}
.consultBox .bgOver {
    padding: 80px 5%;
    background: linear-gradient(#bed8ec, #f8fafd);
}
.consultBox .bgOver .textBox {
    max-width: 800px;
    margin: auto;
    font-size: clamp(14px, 3vw, 20px);
    font-weight: 400;
}
.contactBox_a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
.contactBtn_a {
    background: url("../img/img_common/btn_bg.png")no-repeat;
    background-size: cover;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: min(3vw, 22px);
    padding: 10px 3% 10px 1%;
    width: 45%;
    margin-left: 5%;
    max-width: 420px;
}
.telBtn_a {
    max-width: 420px;
    width: 45%;
}
.iconImg_a {
    margin-left: 5px;
    width: 8%;
    height: auto;
}
@media screen and (min-width: 768px) {
    .contactBtn_a {
        display: block;
        text-align: center;
        box-shadow: 8px 8px 0px #d33b2b;
        transition: .3s;
        position: relative;
    }
    .contactBtn_a:hover {
        box-shadow: unset;
        transform: translate(4px, 4px);
    }
}
@media screen and (max-width: 768px) {
    .consultBox {
        padding: 40px 0 0;
        position: relative;
        background: #fff;
    }
    .consultBox .bgOver {
        padding: 40px 5% 60px;
    }
    .contactBox_a {
        justify-content: space-between;
    }
    .telBtn_a {
        background: url("../img/img_common/btn_bg2.png")no-repeat;
        background-size: cover;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: min(3vw, 22px);
        padding: 10px 3% 10px 1%;
        width: 48%;
    }
    .contactBtn_a {
        width: 48%;
        margin-left: 0;
    }
    .iconImg_a {
        width: 20px;
        margin-left: 10px;
    }
}