@charset "utf-8";

/* ======================================================
　共通パーツ（component.css）
====================================================== */
/*-------------------------------------------
トップへ戻るボタン
-------------------------------------------*/
.to-top {
    position: fixed;
    right: 3.4%;
    bottom: 2%;
    width: 113px;
    height: 113px;
    border: 1px solid #193078;
    font-family: 'Antonio', 'Noto Sans CJK JP', sans-serif;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    justify-content: center;
    z-index: 1000;
  }
  .to-top-icon {
    width: 0;
    height: 0;
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 24px solid #193078;
  }
  .to-top-text {
    font-size: 2.1rem;
    color: #000;
  }

/* -----------------------------------------
   ボタン
------------------------------------------ */
.btn {
    width: 400px;
    height: 81px;
    max-width: 100%;
}
.btn a {
    border: 2px solid #193078;
    background-color: #fff;
    color: #193078;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 2rem;
    font-weight: 700;
    padding-left: 35px;
    padding-right: 20px;
    justify-content: space-between;
    position: relative;
    transition: all 0.3s;
}
.btn a:hover{
    background-color: #193078;
    color: #fff;
}
.btn a::before, .btn a::after {
    content: "";
    background-color: #193078;
    position: absolute;
    transition: all 0.3s;
}
.btn a:hover::after, .btn a:hover::before {
    background-color: #fff;
}
.btn a::before {
    width: 70px;
    height: 2px;
    right: 20px;
}
.btn a::after {
    width: 2px;
    height: 14px;
    top: calc(50% - 0.5px);
    right: 20px;
    transform: translateY(-100%) rotate(-45deg);
    transform-origin: bottom;
}

/* -----------------------------------------
   会社案内、業務紹介ページ共通ボタン
------------------------------------------ */
.btn_anker-wrapper {
    display: flex;
    margin: 40px 0;
    width: 100%;
}
.btn_anker-wrapper li {
    width: 33.3333%;
    border-top: 2px solid #193078;
    border-bottom: 2px solid #193078;
    border-right: 2px solid #193078;
    border-left: none;
}
.btn_anker {
    font-size: 2.4rem;
    color: #193078;
    display: flex;
    flex-direction: column;
    gap: 5px;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    height: 105px;
    text-align: center;
}
.btn_anker-wrapper li a:hover {
    opacity: 1;
    color: #fff;
    background-color: #193078;
}
.btn_anker-wrapper li:first-child {
    border-left: 2px solid #193078;
  }
.btn_anker::after {
content: "";
border-top: 10px solid #193078;
border-right: 6px solid transparent;
border-left: 6px solid transparent;
}
.btn_anker-wrapper li a:hover::after {
    border-top-color: #fff;
  }

