/* policy.css */

body {
    font-family: "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
    text-align: center;
}

.header {
    position: relative;
    width: 100%;
    height: 60px;
    background: linear-gradient(45deg, #4facfe, #00f2fe);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-title {
    color: white;
    font-size: 22px;
    margin: 0;
}

.gear-button {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.gear-button img {
    width: 24px;
    height: 24px;
}

.content {
    padding: 30px 20px 80px;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.content h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

.content p {
    font-size: 16px;
    line-height: 1.6;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    border-top: 1px solid #ddd;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 5px 0;
}

.footer img {
    width: 30px;
    height: 30px;
}

/* 表スタイル */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 14px;
    background-color: #fff;
  }
  
  th, td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #ddd;
  }
  
  th {
    background-color: #f0f0f0;
    width: 35%;
  }
  