
body{
  margin: 0;
  padding: 0;
  font-family: "source-han-sans-japanese", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #444;
  background: #fff;
}

p{
  font-weight: 500;
}
h1,h2,h3{
  font-weight: 500;
  color: #222;
}


@media (max-width: 768px) {

  main{ overflow: hidden; }
  .br-pc{ display: none; }

  
}

/* モーダルウインドウを開いているときはscrollさせない */
/* body.modal-open {
  overflow: hidden;
}
*/


/* ================================================================================================ */
/* header */



/* ヘッダー全体 */
  #common-header {
    width: 100%;
    background: #fff;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: fixed;
    z-index: 9000;
  }
  
  /* コンテナで幅を制御（必要なら使う） */
  #common-header .container {
    display: flex;
    align-items: center;
    width: 100%;
    /* min-width: 1200px; */
    margin: 0 auto;
  }
  
  /* ロゴ */
  #common-header .logo img {
    width: 172px;
  }
  
  /* ナビゲーションメニュー */
  #common-header nav {
    display: flex;
    align-items: center;
    margin-left: auto;
  }
  
  #common-header .nav-list {
    display: flex;
    gap: 50px; /* メニュー同士の間隔 */
    list-style: none;
    padding: 0;
    margin-right: 36px;
  }
  
  #common-header a {
    text-decoration: none;
    color: #222;
    font-weight: bold;
    font-size: 16px;
    transition: .3s;
  }


  /* ホール様ログインボタン */
  #common-header .hall-login-link{
    display: inline-block;
    background: #1976D2; /* 青色 */
    border: 2px solid ;
    color: #fff;
    padding: 12px 24px;
    border-radius: 9999px; /* 完全な丸み */
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    transition: 0.3s;
  }

  
  .login-form input[type="text"] {
    display: block;
    width: 100%;
    max-width: 360px;
    padding: 12px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #bbb;
    border-radius: 6px;
    background: #EFEFEF;
    margin: 16px auto;
  }
  
  .login-form button {
    display: block;
    width: 100%;
    max-width: 210px;
    margin: 0 auto;
    padding: 12px;
    background: #1976D2;
    color: #fff;
    border: none;
    border-radius: 100px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }
  
  .login-form button:hover {
    background: #145aa0;
  }
  


  /* hidden or none */  
.hamburger{
    display: none;
}
#common-header .sns-box{
    display: none;
}




/* media query Dp */
@media (min-width: 769px) {
  #common-header a{
    padding: 34px 0;
  }
  #common-header a.logo{
    padding: 0;
  }
  #common-header .logo img{
    max-inline-size: 172px;
  }
  #common-header ul a:hover{
    color: #1976D2;
  }

  #common-header nav{
    padding-left: 24px;
  }

  #common-header .has-submenu {
    position: relative; /* 親を基準にするため必須 */
  }


  #common-header .hall-login-link:hover {
    background-color: #fff;
    color: #1976D2;
    transform: scale(1.03);
  }
  


  #common-header .has-submenu .submenu {
    display: flex;
    position: absolute;
    top: 50px;
    left: 50%; /* 親の中央 */
    transform: translate(-50%, 0);
    background: #0076e0;
    border-radius: 0 0 8px 8px;
    padding: 24px 20px;
    white-space: nowrap;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: .3s ease-out;
  }
  
  
  /* ホバーしたらふわっと出す */
  #common-header .has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0); /* 元の位置に */
  }
  
  /* 矢印（三角形） */
  #common-header .has-submenu .submenu::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: #0076e0;
  }
  
  /* リストアイテム */
  #common-header .has-submenu .submenu li a {
    padding: 0 20px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    position: relative;
    transition: .3s;
  }
  #common-header .has-submenu .submenu li a:hover{
    opacity: .5;
  }

  
  /* 縦線（区切り線） */
  #common-header .has-submenu .submenu li:not(:last-child) a::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.6);
  }
  

}


/* media query rs */
@media (max-width: 768px) {
    #common-header{
        width: 100%;
        padding: 0 0 0 12px;
    }
    #common-header .logo{
        width: 120px;
    }


    #common-header .container{
        background: #E6E6E6;
        min-width: initial;
        width: 80%;
        height: 100%;
        margin-top: 48px;
        padding-top: 18px;
        flex-direction: column;
        align-items: initial;
        overflow-y: scroll;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 8500;
    }
    #common-header .container {
        transform: translateX(100%);
        transition: transform 0.4s ease;
    }
      
    /* panelactiveが付くとスライドイン */
    #common-header.panelactive .container {
        transform: translateX(0);
    }


    #common-header nav{
        flex-direction: column;
        background: #fff;
        border-radius: 8px;
        width: 90%;
        margin: 0 auto;
        padding: 12px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }
    #common-header .nav-list{
        flex-direction: column;
        margin-right: 0;
        width: 100%;
        gap: 0;
    }
    #common-header .nav-list li{
        padding: 12px 0;
        border-bottom: 1px dashed #D6D6D6;
        position: relative;
    }
    #common-header .nav-list li a{
        display: block;
        padding-left: 12px;
        position: relative;
    }
    /* 第一階層のメニューにのみ縦線を追加 */
    #common-header .nav-list li a.first{
        border-left: 4px solid #1976D2;
    }

    
    #common-header .nav-list li.has-submenu > a.first::after {
        content: "";
        display: inline-block;
        width: 8px;
        height: 8px;
        border-right: 2px solid #1976D2;
        border-bottom: 2px solid #1976D2;
        transform: rotate(45deg);
        margin-left: 8px;
        vertical-align: middle;
        transition: all 0.3s ease; /* アニメーション付けると自然 */
        position: absolute;
        top: 8px;
        right: 6px;
        transition: .1s;
    }
    #common-header .nav-list li.has-submenu.active > a.first::after {
        border-right: none;
        border-bottom: 2px solid #1976D2;
        transform: rotate(0deg); /* 回転なしで横棒 */
        width: 12px; /* 横棒をちょっと長めにしてもOK */
        height: 2px; /* 棒の太さに合わせる */
    }
    

    /* submenu表示時、border-bottomは非表示 */
    #common-header .nav-list li.active{
        border-bottom: 0;
        padding-bottom: 0;
    }
    /* submenu */
    #common-header .nav-list li .submenu{
        display: block;
        background: #1976D2;
        margin-top: 12px;
        padding: 0;
        border-top: 1px dashed #D6D6D6;
    }
    #common-header .nav-list li .submenu li{
        padding: 8px 0;
        border-bottom: 1px dashed #fff;
    }
    #common-header .nav-list li .submenu li:last-child{
        border: none;
    }
    #common-header .nav-list li .submenu li a{
        font-size: 14px;
        color: #fff;
        padding-left: 1.5rem;
    }
    /* デフォルトは非表示 */
    #common-header .nav-list li .submenu{
        display: none;
    }


    /* ホールログインbtn */
    #common-header .hall-login-link{
        margin-top: 18px;
        width: 75%;
    }


    #common-header .sns-box{
        display: block;
        border-radius: 8px;
        width: 90%;
        margin: 12px auto 36px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    }


    /* バーガーメニュー */
    .hamburger {
        width: 48px;
        height: 48px;
        background-color: #1976D2;
        border: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        padding: 0;
        margin-left: auto;
        margin-right: 0;
        cursor: pointer;
        transition: 0.3s ease;
      }
      
      .hamburger span {
        display: block;
        width: 24px;
        height: 2px;
        background-color: #fff;
        transition: all 0.3s ease;
        border-radius: 1px;
        position: relative;
      }

      .hamburger .rotateBox{
        width: 48px;
        height: 48px;
        border: none;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 6px;
        padding: 0;
        transition: .4s ease-out;
      }

      #common-header.panelactive .hamburger .rotateBox{
        transform: rotate(360deg);
      }
      
      /* 開いてる時（Xアイコン） */
      .panelactive .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 5px);
      }
      
      .panelactive .hamburger span:nth-child(2) {
        opacity: 0;
      }
      
      .panelactive .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -5px);
      }


    /**/
    .nav-backdrop {
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, .5);
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        transition: all .6s ease-in-out;
        position: fixed;
        top: 0;
        left: 0;
        opacity: 0;
        z-index: 8250;
        pointer-events: none;
    }
    /* メニュー表示中：クリックできる */
    #common-header.panelactive ~ .nav-backdrop {
      pointer-events: auto;
      opacity: 1;
    }

}


#common-header {
  transition: box-shadow 0.3s ease;
}

#common-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}



/* ================================================================================================ */
/* footer */



.site-footer {
    font-family: sans-serif;
    color: #222;
  }
  
  /* 上部：注意喚起文 */
  .footer-warning {
    color: #003893;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    padding: 48px 0;
    line-height: 1.6;
  }
  
  /* SNS一覧 */
  .sns-box {
    background: #1976d2;
    text-align: center;
    padding: 12px 0;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .sns-box .sns-title {
    font-weight: bold;
    margin-right: 36px;
  }
  .sns-box .sns-icons {
    display: flex;
    justify-content: center;
    gap: 24px;
    list-style: none;
    padding: 0;

  }
  .sns-box .sns-icons img {
    width: 40px;
    height: 40px;
  }
  
  /* メイン：ロゴ＋リンク */
  .footer-main {
    background: #eef2fc;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 60px;
    flex-wrap: wrap;
  }
  .footer-logo img {
    width: 120px;
  }
  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: right;
    gap: 24px;
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
  }
  .footer-links li {
    border-right: 1px solid #1976D2;
    padding-right: 24px;
  }
  .footer-links li:last-child {
    border-right: none;
    padding-right: 0;
  }
  .footer-links a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 14px;
  }
  
  /* コピーライト部分 */
  .footer-bottom {
    background: #444;
    color: #fff;
    text-align: center;
    padding: 16px;
    font-size: 13px;
    font-weight: bold;
  }


  /* media query rs */
  @media (max-width: 768px) {

    .sns-box{ display: block; }
    .sns-box .sns-title{ margin-right: 0; margin-bottom: 6px; }

    .footer-main{ padding: 30px 20px; }
    .footer-main .container{ margin: 0 auto; }
    .footer-logo{ margin: 0 auto 24px; }
    .footer-links{ gap: 12px; justify-content: center; margin-bottom: 6px; }
    .footer-links li{ padding-right: 12px; }
    .footer-links a{ font-size: 12px; }

    .footer-bottom{ font-size: 12px; padding: 8px; }
  }



/* ================================================================================================ */
/* parts */



/* VIEW DETAILl btn white */
.more-linkbtn01{
  color: #fff;
  padding: 8px 0;
  margin-right: 52px;
  border-bottom: 1px solid #fff;
  text-decoration: none;
  position: relative;
}
.more-linkbtn01::before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 100%;
  position: absolute;
  bottom: 0;
  right: -52px;
  z-index: 5;
}
.more-linkbtn01::after{
  content: '\f061'; /* fa-arrow-right */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 10px;
  right: -38px;
  font-size: 14px;
  color: #1976D2;
  z-index: 10;
}


/* VIEW DETAILl btn */
.more-linkbtn02{
  display: inline-block;
  padding: 8px 0;
  margin-right: 52px;
  border-bottom: 2px solid #1976D2;
  color: #1976D2;
  font-weight: 600;
  text-decoration: none;
  position: relative;
}
.more-linkbtn02::before {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  background: #1976D2;
  font-weight: bold;
  text-decoration: none;
  border-radius: 100%;
  position: absolute;
  bottom: 0;
  right: -52px;
  z-index: 5;
}
.more-linkbtn02::after{
  content: '\f061'; /* fa-arrow-right */
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 10px;
  right: -38px;
  font-size: 14px;
  color: #fff;
  z-index: 10;
}

.anchor-viewmore{
    width: 100%;
    margin-top: 64px;
    text-align: right;
}


/* head */
.headTitle {
    font-size: 64px;
    color: #1976d2;
    margin-bottom: 28px;
    line-height: 64px;
}
.headTitle span {
    font-size: 16px;
    color: #222;
    line-height: 16px;
}


/* media query rs */
@media (max-width: 768px) {

  .headTitle{ font-size: 36px; line-height: 36px; }
  
}


/* hover animation */
.more-linkbtn01,
.more-linkbtn01::before,
.more-linkbtn01::after,
.more-linkbtn02,
.more-linkbtn02::before,
.more-linkbtn02::after,
a.more-linkbtn01,
a.more-linkbtn01::before,
a.more-linkbtn01::after,
a.more-linkbtn02,
a.more-linkbtn02::before,
a.more-linkbtn02::after{
  transition: .3s ease;
}

@media (hover: hover) {

  a.more-linkbtn01:hover::before,
  a.more-linkbtn01:hover::after,
  a.more-linkbtn02:hover::before,
  a.more-linkbtn02:hover::after{
    transform: scale(1.2);
  }

  /* linkbtn01:hover */
  a.more-linkbtn01:hover{
    padding-right: 12px;
  }
  a.more-linkbtn01:hover::before{
    background: #1976D2;
  }
  a.more-linkbtn01:hover::after{
    color: #fff;
  }

  /* linkbtn02:hover */
  a.more-linkbtn02:hover{
    padding-right: 12px;
  }
  a.more-linkbtn02:hover::before{
    border: 1px solid #1976D2;
    background: #fff;
  }
  a.more-linkbtn02:hover::after{
    color: #1976D2;
  }

}



  /* ========================================================================================== */
  /* modal window */


  /* button */
  .mdl_container{
    margin-top: 64px;
    text-align: center;
  }
  .modal-open-btn {
    margin: 0 auto;
    display: inline-block;
    background-color: #1976D2;
    border: 2px solid #1976D2;
    color: #fff;
    font-weight: bold;
    border-radius: 100px;
    padding: 16px 48px;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-decoration: none;
  }
  
  @media (hover: hover) {

    .modal-open-btn:hover {
      background: #fff;
      border: 2px solid #1976D2;
      color: #1976D2;
      transform: scale(1.03);
    }
    
  }
  

  .modal-toggle {
    display: none;
  }

  /* オーバーレイ全体（初期非表示） */
  .modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.5);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 9990;
  }
  
  /* チェックが入っていると表示 */
  .modal-toggle:checked ~ .modal-overlay {
    pointer-events: auto;
    opacity: 1;
  }
  
  /* モーダル本体 */
  .modal-box {
    background: #fff;
    padding: 5% 0;
    border-radius: 12px;
    max-width: 580px;
    width: 90%;
    text-align: center;
    position: relative;
    transform: translateY(20px);
    -webkit-box-shadow: 0px 0px 24px rgba(0,0,0,.25);
    box-shadow: 0px 0px 24px rgba(0,0,0,.25);
    opacity: 0;
    transition: all 0.6s ease;
  }
  .modal-box h3{
    font-size: 36px;
    color: #1976D2;
    margin: 0 0 36px 0;
  }
  .modal-box h3 b{
    font-size: 36px;
  }
  .modal-box h3 small{
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #222;
  }
  .modal-box p{
    line-height: 1.8rem;
    margin-bottom: 12px;
  }

  .modal-box p.mdl_copyright{
    width: 100%;
    margin-bottom: 0;
    font-size: 14px;
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
  }


  /* アクティブ状態 */
  .modal-toggle:checked ~ .modal-overlay .modal-box {
    transform: translateY(0);
    opacity: 1;
  }
  
  /* 閉じるボタン */
  .modal-close {
    width: 48px;
    height: 48px;
    border-radius: 0 12px 0 12px;
    position: absolute;
    top: 0;
    right: 0;
    padding: 16px;
    background: #1976d2;
    font-size: 0;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
  }
  .modal-close::before{
    font-family: "Font Awesome 6 Free"; /* Freeの場合 */
    font-weight: 600; /* solidアイコンは900 */
    content: "\f00d"; /* fa-times の Unicode */
    font-size: 24px;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s;
  }
  
  /* 背景をクリックして閉じる */
  .modal-background {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
  }


  @media (hover: hover){

    .modal-close:hover{
      opacity: 0.7;
    }

    .modal-close:hover::before{
      transform: translate(-50%, -50%) scale(1.3);
    }

  }



  /* media query rs */
  @media (max-width: 768px) {

    .modal-background{ position: fixed; }

    .modal-box{ padding: 64px 12px; }

    .modal-box h3 b{ font-size: 24px; }
    .modal-box h3{ font-size: 20px; }
  
  }




  /* ========================================================================================== */
  /* breadcrumb */



  /* パンくずリスト */
  .breadcrumb_nav {
    max-width: 1366px;
    font-size: 14px;
    margin: 0 auto;
    padding: 12px;
  }
  
  .breadcrumb_list {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .breadcrumb_list li {
    display: flex;
    align-items: center;
  }
  
  .breadcrumb_link {
    color: #1976D2;
    text-decoration: underline;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
  }
  
  .breadcrumb_link i {
    margin-right: 6px;
  }
  
  .breadcrumb_arrow {
    margin: 0 24px;
    font-size: 12px;
    color: #1976D2;
  }
  
  .breadcrumb_current {
    color: #222;
  }


  @media (max-width: 768px) {

    .breadcrumb_nav{ font-size: 12px; }
    .breadcrumb_arrow{ margin: 0 12px; }

    .breadcrumb_nav {
      overflow-x: auto;
      white-space: nowrap;
      -webkit-overflow-scrolling: touch;
    }
  
    .breadcrumb_list {
      flex-wrap: nowrap;
      gap: 0;
    }
  
    .breadcrumb_list li {
      flex: 0 0 auto;
      white-space: nowrap;
    }

  }




  /* ========================================================================================== */
  /* pagenation */



  /* 下層ページ 見出し */
  .page_heading {
    background: #eef3fe;
    padding: 64px 0;
    text-align: center;
  }
  
  .page_heading_title {
    display: inline-block;
    font-size: 36px;
    color: #0b4b93;
    font-weight: 700;
    position: relative;
    padding-bottom: 12px;
  }
  
  /*.page_heading_title::after {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    background-color: #0b4b93;
    margin: 12px auto 0;
  }*/




/* ページネーション */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 32px 0;
}
  
.pagination a {
    display: inline-block;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    color: #003E85;
    border-radius: 4px;
    transition: all .4s;
}
.pagination a.prev_page,
.pagination a.next_page{
    font-size: 12px;
}
  
.pagination .active {
    background-color: #1976D2;
    border-radius: 9999px;
    color: #fff;
    pointer-events: none;
}
  

/* media query Dp */
@media (min-width: 769px) {

  .pagination a:hover{
    background: #eceef0;
  }

}

/* media query rs */
@media (max-width: 768px) {

  .page_heading_title{ font-size: 24px; }

}



/* ========================================================================= */
/* filter */


.filter_ui {
  max-width: 1366px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
}

.filter_tabs {
  width: 60%;
  display: flex;
  padding-bottom: 8px;
}
.filter_tabs li{
  flex: 1 1 33.333%;
  text-align: center; /* 中央揃え（任意） */
  position: relative;
}


/* タブメニュー */
.tab_item::after{
  content: '';
  display: block;
  width: 100%;
  height: 8px;
  background: #D6D6D6;
  position: absolute;
  bottom: -8px;
  left: 0;
}
.tab_item.active::after{
  background: #1976D2;
}
.tab_item.active.pachislot::after{
  background: #7C19D2;
}
.tab_item.active::before {
  content: "";
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #1976D2; /* ▽の色（タブの背景色と揃える） */
}
.tab_item.active.pachislot::before {
  border-top: 10px solid #7C19D2; /* ▽の色（タブの背景色と揃える） */
}


.tab_item a {
  display: block;
  padding: 12px 0;
  color: #666;
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.tab_item.active a {
  color: #0b4b93;
  position: relative;
  pointer-events: none;
}
.tab_item.active.pachislot a {
  color: #4e0a8a;
  position: relative;
  pointer-events: none;
}



/* media query Dp */
@media (min-width: 769px) {

  /* .filter_ui{ min-width: 1366px; } */

  /* hover animation */
  .tab_item{ transition: .3s; }
  .tab_item:hover{background: #eceef0; }
  .tab_item.active:hover{ opacity: 1; background: transparent; }

}

/* media query rs */
@media (max-width: 768px) {

    .filter_ui{
        flex-wrap: wrap;
        padding: 12px;
    }
    .filter_accordion{
        width: 49%;
    }
    .btn_shop_search{
        width: 47%;
        padding: 14px 40px 14px 8px;
        font-size: 12px;
        border-radius: 12px 100px 100px 12px;
    }

    .tab_item a{
        font-size: 14px;
        padding: 10px 0;
    }

    .filter_tabs{
        width: 100%;
        padding-right: 0;
        margin-bottom: 12px;
    }
    .accordion_list li a{
        padding: 6px 14px;
    }


}



/* ========================================================================= */
/* site_util_list */


.site_util_list {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 32px 0;
}

.site_util_button {
  width: 49.3%;
  margin-bottom: 18px;
  display: block;
  position: relative;
  padding: 18px 32px;
  padding-right: 72px;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  border: 2px solid #1976D2;
  border-radius: 9999px;
  background: #1976D2;
  transition: all 0.3s ease;
}

.site_util_button::before {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: #1976D2;
  z-index: 2;
  transition: .3s;
}

.site_util_button::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  background: #fff;
  border-radius: 50%;
  z-index: 1;
  transition: .3s;
}

/* PC環境でのみ hover スタイル適用 */
@media (hover: hover) {
  .site_util_button:hover {
    background: #fff;
    color: #1976D2;
    transform: scale(1.03);
  }

  .site_util_button:hover::before {
    color: #fff;
  }

  .site_util_button:hover::after {
    background: #1976D2;
  }
}


@media (min-width: 769px) {
  .site_util_list .site_util_button{ font-size: 18px; }
}


@media (max-width: 768px) {
  .site_util_list{ flex-direction: column; }
  .site_util_button{ width: 100%; margin-bottom: 12px; padding: 14px 48px 14px 24px; font-size: 14px; }
  .site_util_button::before{ right: 20px; }
  .site_util_button::after{ right: 8px; }
}


  /* ========================================================================================== */
  /* Effect animation */

  .circle_par_p{
    position: absolute;
    top: -8%;
    left: 80vw;
    z-index: 10;
  }
  .circle_border_b{
    position: absolute;
    top: 13vw;
    left: 84vw;
    z-index: 10;
  }
  .circle_border_p{
    position: absolute;
    top: 20vw;
    left: 90vw;
    z-index: 10;
  }
  .circle_dots_p{
    position: absolute;
    top: 28vw;
    left: 10vw;
    z-index: 10;
  }



/* scroll animation */
.st_fade{
  opacity: 0;
  transition: opacity 0.9s ease;
}
.st_fade.inview {
  opacity: 1;
}

.inview_fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.inview_fade.inview {
  opacity: 1;
  transform: translateY(0);
}

.fade_rl {
opacity: 0;
transform: translateX(40px);
transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade_rl.inview {
opacity: 1;
transform: translateX(0);
}

.zoom-target {
  opacity: 0;
  transform: scale(0.5);
  transition: all 0.6s ease-out;
}
.zoom-in {
  opacity: 1;
  transform: scale(1);
}

/* エラー用 */
.error-message {
  color: red;
  font-size: 18px;
  margin-top: 4px;
}


/* 404 not found */
.notFound_section{
    width: 100%;
    height: calc(100% - 76px);
    background: #eef3fe;
    margin: 0;
    padding: 0;
    position: relative;
  }
  
  .notFound_section .inner{
    max-width: 1100px;
    margin: 0 auto;
    padding: 100px 0;
    text-align: center;
  }
  
  .notFound_section h2{
    font-size: 64px;
    letter-spacing: 0.25rem;
    font-weight: 800;
    color: #1976d2;
    margin: 12px auto 24px;
  }
  .notFound_section h2 span{
    padding-left: 1rem;
  }
  
  .notFound_section h3{
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
  }
  
  .notFound_section p{
    font-size: 18px;
  }
  
  .notFound_section img{
    max-width: 300px;
    margin: 24px auto;
  }
  
  .notFound_section .site_util_button{
    margin: 24px auto 0;
    text-align: left;
    max-width: 340px;
  }
  
  
  @media (max-width: 768px) {
  
    .notFound_section{ height: calc(100vh - 48px); }
    .notFound_section .inner{ padding: 60px 0; }
  
    .notFound_section h2{ font-size: 80px; }
    .notFound_section h2 span{ padding: 0; display: block; font-size: 24px; line-height: 24px; }
  
    .notFound_section .site_util_button{ max-width: 290px; }
  
  }
