a {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

.btn-001 {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0.25em 0.5em;
  text-decoration: none;
  color: #00BCD4;
  background: #ECECEC;
  transition: .4s;
}

.btn-001:hover {
  background: #00bcd4;
  color: white;
}

.btn-002 {
  font-size:2.5em;
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0.25em 0.5em;
  text-decoration: none;
  color: #FFF;
  background: #00bcd4;
  transition: .4s;
}

.btn-002:hover {
  background: #1ec7bb;
}

@media screen and (min-width: 960px) {
    .menu_box_f {
        display: flex;
        width: 100%;
    }
}

.link-box01 {
    position: relative;
    display: flex;
    padding: 1.2em 2.0em 1.2em 1.2em;
    margin: 1.5em 1.0em;
    border-radius: 5px;
    border: 2px solid #006eb0;
    transition: 0.4s;
    font-size: 1.2em;
    font-weight: 600;
    color: #19448e;
    width: auto;
}

        .link-box01:hover {
            background: #006eb0;
            color: white;
            font-weight: 600;
        }

        .link-box01::after {
            position: absolute;
            top: 50%;
            right: 1em;
            width: 0.5em;
            height: 0.5em;
            transform: translateY(-50%) rotate(45deg);
            border-right: 2px solid currentColor;
            border-top: 2px solid currentColor;
            content: "";
        }

.link-box-s01 {
    position: relative;
    display: flex;
    padding: 1.2em 2.0em 1.2em 1.2em;
    margin: 1.5em 1.0em;
    border-radius: 5px;
    border: 2px solid #ffa07a;
    transition: 0.4s;
    font-size: 1.2em;
    font-weight: 600;
    color: #ffa07a;
    width: auto;
}

    .link-box-s01:hover {
        background: #ffa07a;
        color: white;
        font-weight: 600;
    }

    .link-box-s01::after {
        position: absolute;
        top: 50%;
        right: 1em;
        width: 0.5em;
        height: 0.5em;
        transform: translateY(-50%) rotate(45deg);
        border-right: 2px solid currentColor;
        border-top: 2px solid currentColor;
        content: "";
    }

.link-box02 {
    padding: 2em;
    border-radius: 30px;
    margin: 3em 2.5em;
    background: #ffefff;
}

        .link-box02 p {
            margin: 0;
            padding: 20px 0;
            text-align: center;
            color: #de3163;
            font-size: 1.6em;
        }


.link-box03 {
    padding: 0.5em;
    border-radius: 7.5px;
    margin: 1.5em 1.0em;
    background: #ffefff;
}

    .link-box03 p {
        margin: 0;
        padding: 0.2em 0.5em;
        color: #de3163;
        font-size: 1.0em;
    }

.btn_rep {
    display: block;
    text-align: center;
    vertical-align: middle;
    text-decoration: none;
    width: auto;
    margin: 10px;
    padding: 1em 0.5em;
    font-weight: bold;
    border: 2px solid #27acd9;
    color: #27acd9;
    transition: 0.5s;
}

    .btn_rep:hover {
        color: #fff;
        background: #27acd9;
    }

    .btn_box_rep {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        text-align: center;
        text-decoration: none;
        width: 120px;
        margin: auto;
        padding: 1rem 4rem 1rem 3rem;
        font-weight: bold;
        background: #27acd9;
        color: #fff;
        border-radius: 100vh;
        position: relative;
        transition: 0.5s;
    }

        .btn_box_rep::before {
            content: '';
            width: 7px;
            height: 7px;
            border-top: 2px solid #fff;
            border-right: 2px solid #fff;
            transform: rotate(45deg);
        }

        .btn_box_rep:hover {
            background: #44c6f2;
            color: #fff;
        }


.logout {
	right: 60px;
    margin: 0 2.5px;
    display: block;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
    padding: 0.6em 5px 0.5em  15px;
    color: #0066cc;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	border: 1px solid #7B7B7B;
	position: absolute;
}

    .logout:before {
        content: "\f2f5";
        position: relative;
        font-family: "Font Awesome 5 Free";
        font-weight: 900;
        margin-right: 8px;
        color: #999;
    }

    .logout:hover {
        background: #313131;
        color: #FFF;
    }