@charset "UTF-8";

/* PRIVACY POLICYページスタイルシート */

/* PC */
/* 枠 */
.privacypolicy-container .privacypolicy-inner {
   width: 90%;
   max-width: 860px;
   margin: 0 auto;
   margin-top: 60px;
   padding: 40px 60px;
   background-color: #fff;
}

/* 基本テキストスタイル */
.privacypolicy-content {
   background-color: #fff;
}

.privacypolicy-content p {
   font-size: 16px;
   line-height: 1.8;
   margin-bottom: 24px;
   font-weight: 400;
   color: #333;
   font-family: var(--font-gothic);
   letter-spacing: 0.03em;
}

/* 見出しスタイル */
.privacypolicy-content h1 {
   font-size: 28px;
   font-weight: 700;
   margin: 40px 0 30px;
   padding-bottom: 12px;
   border-bottom: 2px solid #f0f0f0;
   color: #222;
}

.privacypolicy-content h2 {
   font-size: 24px;
   font-weight: 600;
   margin: 36px 0 20px;
   padding-left: 12px;
   border-left: 4px solid #555;
   color: #333;
}

.privacypolicy-content h3 {
   font-size: 20px;
   font-weight: 600;
   margin: 28px 0 16px;
   color: #444;
}

/* リストスタイル */
.privacypolicy-content ul,
.privacypolicy-content ol {
   margin: 20px 0 20px 24px;
}

.privacypolicy-content li {
   margin-bottom: 12px;
   line-height: 1.7;
}

/* リンクスタイル */
.privacypolicy-content a {
   color: #0066cc;
   text-decoration: none;
   transition: color 0.2s ease;
}

.privacypolicy-content a:hover {
   color: #004c99;
   text-decoration: underline;
}

/* セクション間の区切り */
.privacypolicy-content hr {
   border: 0;
   height: 1px;
   background: #e5e5e5;
   margin: 40px 0;
}

/* 表スタイル */
.privacypolicy-content table {
   width: 100%;
   border-collapse: collapse;
   margin: 25px 0;
}

.privacypolicy-content th,
.privacypolicy-content td {
   padding: 12px 15px;
   border: 1px solid #ddd;
}

.privacypolicy-content th {
   background-color: #f8f8f8;
   font-weight: 600;
}

/* 引用スタイル */
.privacypolicy-content blockquote {
   background-color: #f9f9f9;
   border-left: 4px solid #ddd;
   padding: 15px 20px;
   margin: 20px 0;
   font-style: italic;
}

/* 強調スタイル */
.privacypolicy-content strong {
   font-weight: 700;
   color: #222;
}

/* コードスタイル */
.privacypolicy-content code {
   background-color: #f5f5f5;
   padding: 2px 6px;
   border-radius: 3px;
   font-family: var(--font-mono);
   font-size: 0.9em;
}

/* 会社情報セクション */
.privacypolicy-content .company-info {
   background-color: #f9f9f9;
   padding: 20px 25px;
   border-radius: 6px;
   margin-top: 40px;
}

.privacypolicy-content .update-date {
   text-align: right;
   font-size: 14px;
   color: #777;
   margin-top: 40px;
   font-style: italic;
}

/* 管理者向け通知スタイル */
.language-switcher-admin-notice {
   margin-top: 30px;
   padding: 15px;
   background-color: #fffbea;
   border: 1px solid #ffd566;
   border-left: 4px solid #ffab00;
   border-radius: 4px;
}

.language-switcher-admin-notice p {
   margin: 0;
   font-size: 14px;
   color: #664d03;
}

/* 言語切り替えボタン */
.language-switcher {
   display: flex;
   justify-content: flex-end;
   margin-bottom: 20px;
}

.language-switcher a {
   display: inline-block;
   padding: 5px 12px;
   margin-left: 10px;
   border: 1px solid #ddd;
   border-radius: 4px;
   font-size: 14px;
   text-decoration: none;
   color: #333;
   transition: all 0.3s ease;
}

.language-switcher a:hover,
.language-switcher a.active {
   background-color: #f5f5f5;
   border-color: #bbb;
}

.language-switcher a.active {
   font-weight: bold;
   border-color: #888;
}

/* SP */
@media (max-width:599px){ 
   .page-title-box h1 {font-size: 26px;}

   .privacypolicy-container .privacypolicy-inner {
      width: calc(100% - 40px);
      padding: 30px 20px;
   }
   
   .privacypolicy-content h1 {
      font-size: 24px;
   }
   
   .privacypolicy-content h2 {
      font-size: 20px;
   }
   
   .privacypolicy-content h3 {
      font-size: 18px;
   }
   
   .privacypolicy-content p {
      font-size: 15px;
      line-height: 1.7;
   }
   
   .language-switcher {
      justify-content: center;
   }
}

/* end.SP */

