
 /* =============================

HOME

============================= */

#home footer{
    margin-top: 10%;
}


    #home .fv-box {
    display: flex;
    align-items: center;
    text-align: center;
    padding: 10% 0;
    flex-direction:column;
    height: auto;
}

    #home .fv-select{
        display:flex;
           justify-content: center;
        width: 100%;
    }

    #home .select-box {
        width:48%;
    }

        #home .select-box:first-child {
        padding-right: 2%;
    }

    #home .select-box a{
    background: var(--pink);
    color: #fff;
    width: 100%;
    display: block;
    padding: 1.5em;
    border-radius: 80px;
    font-weight: bold;
    font-size: var(--font-i);
    justify-self: right;
        margin-left: auto;
        position: relative;
}

#home .com-btn{
    background:#01beda!important;
}

#home .liver-btn{
    background:#ea40aa!important;
}

      /* ★ 左から右へ流れる背景アニメーション */
      #home .btn-fill-left::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(247, 143, 208, 0.9); /* 適度なホバー背景色 */
        width: 100%;
        height: 100%;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease-out;
      }

    #home .com-btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        background: rgba(173, 232, 255, 0.9);
        width: 100%;
        height: 100%;
        transform: scaleX(0);
        transform-origin: right;
        transition: transform 0.3s ease-out;
      }
      
      #home .btn-fill-left:hover::before {
        transform-origin: left;
        transform: scaleX(1);
      }

      /* ===========================
   右端：線だけの円＋矢印
   =========================== */
      #home .btn-icon {
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
        border: 1px solid #fff;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: background 0.3s ease, border 0.3s ease;
      }

      /* 中の矢印 */
      #home .arrow {
        width: 6px;
        height: 6px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        transform: rotate(45deg);
        transition: transform 0.3s ease;
      }

      /* ★ ホバー時：円に背景がつき、矢印が右へスライド */
      #home .btn-fill-left:hover .btn-icon {
        background: #fff;
        border-color: #fff;
      }
     #home  .btn-fill-left:hover .arrow {
        transform: translateX(3px) rotate(45deg);
        border-color: #000; /* 円が白背景になるので黒に変更 */
      }

      #home .com-btn:hover {
        border-color:rgba(173, 232, 255, 0.9);
      }


   /* おしらせ追加   =========================== */

      /* .top_news{
        width: 100%;
        display: flex;
        padding: 10% 5% 15%;
        border-radius: 10px;
      } */

            .top_news{
        width: 100%;
        display: flex;
        padding: 10% 5% 15%;
        border-radius: 10px;
        flex-direction: column;
      }

      .top_news-left,.top_news-right{
        width: 100%;
      }

      .top_news-right{
        padding-top: 6%;
      }

    .top_news-left{
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    /* .top_news-left h2{
        text-align: left;
        font-size: var(--font-d);
        color: #fff;
      } */

          .top_news-left h2{
        text-align: center;
        font-size: var(--font-d);
        color: #fff;
      }

   .top_news-box{
    display: flex;
    flex-direction: column;
   }

    .top_news-box li{
    padding: 0 0 var(--margin04);
    border-bottom: 1px solid #fff;
    transition: all .4s ease-in-out;
    }

    .top_news-box li:hover .top_news-box li a {
        color:#01beda!important;
    }

    .top_news-box li:first-child {
      padding-top: var(--margin04);
      border-top: 1px solid #fff;
    }

    .top_news-box li:not(:last-child) {
        margin-bottom: var(--margin04);
    }

        /* .top_news-box li a{
    display: flex;
        justify-content: space-around;
    } */

    .top_news-box p{
        text-align: left;
    }

    .top_news-box p:first-child{
    width: 40%;
    }

    /* .top_news-box p:last-child{
    width: 60%;

    } */


/* newsボックスの矢印 =============================== */


.top_news-box li a {
    position: relative;
    transition: all .4s ease-in-out;
  display: block;
  position: relative; 
  padding: 16px 30px 16px 0;
  text-decoration: none;
  color: #333;
}

/* 矢印 */
.top_news-box li a::after {
  content: ">";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  transition: all .4s ease-in-out;
}

/* .top_news-box li:hover {
  border-bottom: 1px solid #01beda;
} */


/* .top_news-box li:hover a p {
  color: #01beda;
} */


.top_news-box li:hover a::after {
  transform: translateY(-50%) translateX(6px);
  /* color: #01beda; */
}


/* フッター調整  =============================== */



.footer-list a{
    position: relative;
    transition: all .4s ease-in-out;
    display: block;
}


.footer-list a::after {
  content: ">";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  transition: all .4s ease-in-out;
}


.footer-list:hover a::after {
  transform: translateY(-50%) translateX(6px);

}

.footer-rm a::after{
  content: none;
}


@media screen and (max-width:800px){

    #home{
        padding-top: 25%;
    }

    #home .fv-select{
        flex-direction:column;
    }
    #home .select-box{
        width:100%;
    }
    #home .select-box:first-child{
        padding-right:0;
        padding-bottom:20px
    }

    .top_news{
        flex-direction: column;
        padding: 25% 0;
    }

    .top_news-right{
        padding: 10% 0;
    }

    .top_news-top h2{
        text-align: center;
        color: #fff;
        font-size: var(--font-c) ;

    }

        .top_news-box p:last-child{
    width: 90%;

    }


}






::-webkit-scrollbar {
  width: 13px;
  height: 13px;
}

::-webkit-scrollbar-track {
  background: rgba(255,255,255,.15) !important;  /* ←確認用に強め */
  border-radius: 3px;
}

::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,.45);
  border-radius: 3px;
}