@charset "uft-8";

:root{
    --main-gradient: ;
    --main-text:  #333;
    --submain-color: #7E7E7E;
    --sub-color: #E1E3E5;

  }
  
  html{
    font-size: 62.5%;
  }
  
  body{
    font-family: "Noto Sans JP", sans-serif;
    font-style: normal;
    line-height: 1;
    background-color: #FFF;
    padding: 0 5%;
    max-width: 1700px;
    margin: 0 auto
  }
  
  .num_din{
    font-family: "ff-din-paneuropean", "noto sans jp", sans-serif;
  }
  
  img{
    max-width: 100%;
    height: auto;
  }


  /* FOOTER */
  .footer_inner{
    margin-top: 164px;
  }

  .footer_box{
    text-align: center;
  }

  .privacy{
    text-align: center;
    font-size: 2rem;
    letter-spacing: 1.1px;
    font-weight: 700;
  }

  .footer_copyright{
    margin: 40px 0 24px;
    text-align: center;
    font-size: 1.2rem;
    letter-spacing: 1.1px;
    font-weight: 700;
  }



  .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);
  }


  @media (max-width: 580px){
    .footer_inner{
      margin-top: 80px;
    }

    .privacy{
      text-align: center;
      font-size: 1.6rem;
    }

    .home {
      display: block;
      padding: 0 27px 14px;
      border-bottom: #E1E3E5 1px solid;
      font-size: 1.6rem;
      font-weight: 600;
      width: 183px;
      margin: 52px auto 0px;
      text-align: center;
      color: #333;
      cursor: pointer;
      transition: transform 0.2s ease;
    }
  }