@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap');

* {
  font-family: 'Noto Sans JP', sans-serif;
}

@media (max-width: 780px) {


  .header-back {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 100vw;
    z-index: 10000; /* 他の要素よりも前面に表示 */
    height: 30px; /* 高さを60pxに設定 */
    background-color: black; /* 背景色を白に設定 */
    box-sizing: border-box;
    overflow: visible;
  }

  .header-wrap {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 100vw;
    z-index: 10000; /* 他の要素よりも前面に表示 */
    height: 30px; /* 高さを60pxに設定 */
    box-sizing: border-box;
    overflow: visible;
  }

  .logo {
    position: relative;
    left: 0%;
    width: Auto;
    height: 30px;
  }

  .logo img {
    position: relative;
    left: 0%;
    width: Auto;
    height: 100%;
  }

  .logout-button {
    background: none;
    border: none;
    color: white;
    font: inherit;
    cursor: pointer;
    padding: 0;
    text-decoration: underline; /* 必要に応じて追加 */
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  
  .logout-button:hover {
    text-decoration: none; /* 必要に応じて追加 */
    color: white;
  }

  .menu-toggle {
    display: flex;
    position: absolute;
    top: 55%;
    right: 10px;
    transform: translateY(-50%);
    cursor: pointer;
    flex-direction: column; /* 縦並びにする */
    z-index: 10001;
  }

  .menu-toggle span {
    height: 3px;
    width: 25px;
    background: #fff;
    margin-bottom: 4px;
    border-radius: 3px;
  }

  nav {
    display: none;
    flex-direction: column;
    background: #000;
    position: absolute;
    top: 30px;
    right: 0;
    width: 150px;
    padding: 10px;
    z-index: 10001;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }

  nav.nav-open {
    display: flex !important;
  }

  nav a {
    color: #fff;
    padding: 10px;
    display: block;
    text-align: center;
    font-size: 16px;
    
  }

  nav a:hover {
    background: #444;
  }

  .content-wrapper {
    height: 0;

  }

  






}


@media (min-width: 781px) {

 
  .header-back {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1000; /* 他の要素よりも前面に表示 */
    height: 50px; /* 高さを60pxに設定 */
    background-color: black; /* 背景色を白に設定 */
    
  }

  .header-wrap {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 1000; /* 他の要素よりも前面に表示 */
    height: 50px; /* 高さを60pxに設定 */
  }

  .logo {
    position: relative;
    left: 0%;
    width: Auto;
    height: 50px;
  }

  .logo img {
    position: relative;
    left: 0%;
    width: Auto;
    height: 100%;
  }

  .header-back {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    z-index: 1000;
    height: 50px;
    background-color: black;
  }
  
  .header-wrap {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 1000;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    position: relative;
    left: 0%;
    width: auto;
    height: 50px;
  }
  
  .logo img {
    position: relative;
    left: 0%;
    width: auto;
    height: 100%;
  }

  .logout-button {
    background: none;
    border: none;
    color: white;
    font: inherit;
    cursor: pointer;
    padding: 0;
    text-decoration: none;
    display: block;
    margin: 0 auto;
    text-align: center;
  }
  
  .logout-button:hover {
    color: white;
  }
  
  .menu-toggle {
    display: none;
  }
  
  nav {
    display: flex;
    flex-direction: row;
    background: none;
    position: static;
    width: auto;
    padding: 0;
  }
  
  nav a {
    color: #fff;
    text-decoration: none;
    padding: 0 10px;
    text-align: center; /* テキストを中央揃え */
    font-size: 18px;
  }
  
  nav a:hover {
    background: none;
  }

  .content-wrapper {
    height: 0;

  }




  
 
}

.privacy-policy-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.privacy-policy-content {
  background-color: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.privacy-policy-content h1 {
  font-size: 28px;
  margin-bottom: 30px;
  color: #333;
  text-align: center;
}

.privacy-policy-content h2 {
  font-size: 20px;
  margin: 30px 0 15px;
  color: #333;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 8px;
}

.privacy-policy-content p {
  line-height: 1.8;
  margin-bottom: 15px;
  color: #555;
}

.privacy-policy-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.privacy-policy-content li {
  line-height: 1.8;
  margin-bottom: 8px;
  color: #555;
}

.contact-link {
  display: inline-block;
  margin-top: 10px;
  color: #007bff;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}
