@charset "UTF-8";

/* --------------------------------------
ボタン
---------------------------------------*/
.link_btn {
    width: 200px;
    padding: 1rem;
    display: inline-block;
    box-sizing: border-box;
    text-align: center;
}

.link_btn_large {
    width: 250px;
    max-width: 250px;
    text-align: center;
    padding: 1.5rem 0;
    display: inline-block;
    box-sizing: border-box;
    font-size: 1.25rem;
}

.btn_blue {
    background-color: #127cb2;
    border: #127cb2 1px solid;
    color: #fff!important;
    transition: 0.5s;
}

.btn_blue:hover {
    background-color: #fff;
    border: #127cb2 1px solid;
    color: #000!important;
    transition: 0.5s;
}

/* 詳しくはこちら */
.btn01 {
    background-color: #fff;
    border: #000 1px solid;
    color: #000!important;
    /* font-weight: 600; */
    transition: 0.5s;
}
.btn01:hover {
    background-color: #127cb2;
    border: #127cb2 1px solid;
    color: #fff!important;
    transition: 0.5s;
}

@media screen and (max-width: 768px) {
    .link_btn {
        width: 100%;
        text-align: center;
    }
    .link_btn.btn01 {
        display: block;
        width: 100%;
        max-width: 200px;
        margin: auto;
    }
    .link_btn_large {
        display: block;
        margin: auto;
    }
}


/* --------------------------------------
動くボタン白
---------------------------------------*/
/*矢印が右に移動する*/
.btnarrow {
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 0.5rem;
    box-sizing: border-box;
    padding-right: 3rem;
    padding-left: 0;
    color: #fff;
    text-decoration: none;
    outline: none;
    letter-spacing: 2px;
}
.btnarrow:hover {
    color: #fff;
}
/*矢印と下線の形状*/
.btnarrow::before {
    content: '';
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    bottom: 0px;
    left: 0;
    /*下線の形状*/
    width: 100%;
    height: 1px;
    background: #fff;
    /*アニメーションの指定*/
    transition: all .3s;
}
.btnarrow::after {
    content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    bottom: 5px;
    right: 0;
    /*矢印の形状*/
    width: 15px;
    height: 1px;
    background: #fff;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
/*hoverした際の移動*/
.btnarrow:hover::before {
    left: 10%;
}
.btnarrow:hover::after {
    right: -10%;
}
@media screen and (max-width: 768px) {
    .btnarrow {
        font-size: 80%;
    }
}

/* --------------------------------------
動くボタン青
---------------------------------------*/
/*矢印が右に移動する*/
.btnarrow2 {
    /*矢印と下線の基点とするためrelativeを指定*/
    position: relative;
    /*形状*/
    display: inline-block;
    padding: 0.5rem;
    box-sizing: border-box;
    padding-right: 3rem;
    padding-left: 0;
    color: #005699;
    text-decoration: none;
    outline: none;
    letter-spacing: 2px;
}
.btnarrow2:hover {
    color: #005699;
}
/*矢印と下線の形状*/
.btnarrow2::before {
    content: '';
    /*絶対配置で下線の位置を決める*/
    position: absolute;
    bottom: 0px;
    left: 0;
    /*下線の形状*/
    width: 100%;
    height: 1px;
    background: #005699;
    /*アニメーションの指定*/
    transition: all .3s;
}
.btnarrow2::after {
    content: '';
    /*絶対配置で矢印の位置を決める*/
    position: absolute;
    bottom: 5px;
    right: 0;
    /*矢印の形状*/
    width: 15px;
    height: 1px;
    background: #005699;
    transform: rotate(35deg);
    /*アニメーションの指定*/
    transition: all .3s;
}
/*hoverした際の移動*/
.btnarrow2:hover::before {
    left: 10%;
}
.btnarrow2:hover::after {
    right: -10%;
}
@media screen and (max-width: 768px) {
    .btnarrow2 {
        font-size: 80%;
    }
}

/* --------------------------------------
動くボタン2
---------------------------------------*/
a.square_btn {
    display: inline-block;
    width: 200px;
    line-height: 50px;
    color: #005699;
    position: relative;
    padding-left: 2rem;
    background-color: #fff;
    border: 1px solid #005699;
    box-sizing: border-box;
}
a.square_btn::before {
    border-right: 1px solid #005699;
    border-top: 1px solid #005699;
    bottom: 0;
    content: "";
    height: 7px;
    width: 7px;
    margin: auto;
    position: absolute;
    right: 30px;
    top: 0;
    transform: rotate(45deg);
    transition: right .3s;
}
a.square_btn:hover::before {
    right: 20px;
    border-right: 1px solid #fff;
    border-top: 1px solid #fff;
}
a.square_btn:hover {
    color: #fff;
    background-color: #005699;
}
