@charset "UTF-8";
/* CSS Document */

html {
    font-size: 62.5%;
    /*フォントサイズは１remで10pxの計算になる*/
    /*SM版でhtmlの大元を変更してスマホ対応させる*/

}

/*PC用*/
body {
    font-size: 1.6rem;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

img {
    width: 100%;
    height: auto;
}

.button {
    position: relative;
    display: inline-block;
    padding: .9em 3.6em;
    border: 1px solid #fff;
    color: #fff;
    text-align: center;
    text-decoration: none;
    outline: none;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.button::before,
.button::after {
    position: absolute;
    top: -1px;
    right: -1px;
    bottom: -1px;
    left: -1px;
    z-index: 2;
    content: '';
    -webkit-transition: all .3s;
    transition: all .3s;
}

.button::before {
    border-top: 1px solid #3aabd2;
    border-bottom: 1px solid #3aabd2;
    -webkit-transform: scale(0, 1);
    transform: scale(0, 1);
}

.button::after {
    border-right: 1px solid #3aabd2;
    border-left: 1px solid #3aabd2;
    -webkit-transform: scale(1, 0);
    transform: scale(1, 0);
}

.button:hover {
    color: #3aabd2;
}

.button:hover::after,
.button:hover::before {
    -webkit-transform: scale(1);
    transform: scale(1);
}

.wrap {
    overflow: hidden;
}

.cards {
    background-color: #fff;
    padding-bottom: 3%;
    padding-top: 5%;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.tel {

    font-size: 3.6rem;
}

.cards h2 {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    padding-bottom: 3%;
}

.cards p {
    text-align: center;
    padding-bottom: 2%;
}

.card-image {
    width: 60%;
    margin: 0 auto;
}

.fl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.fr {
    color: #F00;
}

.th-1 {
    color: #fff;
    background-color: #06184e;
}

.th-2 {
    background-color: #B6E4FB;
    color: #222;
}

.h4 {
    font-weight: bold;
    margin-top: 2%;
}

.w-10 {
    width: 10%;
}

.w-20 {
    width: 20%;
}

.w-25 {
    width: 25%;
}

.w-30 {
    width: 30%;
}

.w-35 {
    width: 35%;
}

.w-40 {
    width: 40%;
}

.w-50 {
    width: 50%;
}

.w-60 {
    width: 60%;
}

.w-65 {
    width: 65%;
}

.w-67 {
    width: 67%;
}

.w-70 {
    width: 70%;
}


.w-80 {
    width: 80%;
}

.table-sec table {
    width: 60%;
    border: 1px solid #ccc;
}

.table-sec table tr th,
.table-sec table tr td {
    border: 1px solid #ccc;
    padding: 2% 2%;
    text-align: center;
}

.table-sec h4 {
    margin: 3% 0 .5%;
}

.wrap-all {
    width: 90%;
    margin: 0 auto;
}

@-webkit-keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

.attention-sec {
    font-weight: bold;
    font-size: 1.6rem;
}

.at-inner {
    font-size: 2.2rem;
}

.mt-45 {
    margin-top: 45px;
}
