/* contact */
.main__inner{
    padding: 80px 2% 0;
    max-width: 1024px;
    margin: 0 auto;
}

.title{
    font-size: 5.6rem;
    font-family: "Noto Sans JP";
    font-weight: 700;
    color: var(--main-text);
    text-align: center;
    margin-bottom: 24px;
}

.sub_title{
    font-size: 2.4rem;
    font-family: "Noto Sans JP";
    font-weight: 700;
    color: var(--main-text);
    text-align: center;
    margin-bottom: 24px;
}

.bar__box{
    position: relative;
    overflow: hidden;
    width: 3px;
    height: 40px;
    margin: 40px auto ;
  }
  
  .bar{
    position: absolute;
    top: -100%;  /* 開始は上の外に隠れる位置 */
    left: 0;
    width: 1px;
    height: 100%;
    background-color: var(--main-text);
    animation: down 1.5s linear infinite ;
  }
  
  @keyframes down{
    0%{
      top:-100%;
    }
    100%{
      top:100%;
    }
  }

  .privacy_section{

  }

  .privacy_box{
    max-width: 800px;
    margin: 0 auto;
  }

  .privacy_list{

  }

  .privacy_item{
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.5;
  }


  .home {
    display: block;
    padding: 0 27px 14px;
    border-bottom: #E1E3E5 1px solid;
    font-size: 1.6rem;
    font-weight: 600;
    width: 183px;
    margin: 120px auto 0px;
    text-align: center;
    color: #333;
    cursor: pointer;
    transition: transform 0.2s ease;
  }
  
  .home::after {
    content: "";
    display: inline-block;
    clip-path: polygon(100% 50%, 0 0, 0 100%);
    width: 10px;
    height: 15px;
    background-color: #333;
    margin-left: 16px;
    margin-bottom: -2px;
  }
  
  /* ホバー時に下に沈む */
  .home:hover {
    transform: translateY(4px);
  }