/* ====================
   リセット & ベーススタイル
==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: normal;
    font-style: normal;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
}

li {
  list-style-type: none;
}

.sp-only {
    display: none;
}

@media (max-width:768px) {
    .sp-only {
        display: block;
    }
}

.page-main {
  max-width: 1200px;
  margin: 100px auto;
}

@media (max-width:768px) {
  .page-main {
    max-width: 100%;
  }
  .h1-margin {
    margin: 0 !important;
  }
}

/* ====================
   ヘッダー メインスタイル
==================== */
#masthead {
    background: linear-gradient(135deg, #ffffff 0%, #bef9ff 100%);
    box-shadow: 0 4px 20px rgba(5, 181, 196, 0.15);
    position: relative;
    z-index: 1000;
    padding: 0;
}

#masthead::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    pointer-events: none;
}

/* ====================
   サイトブランディング
==================== */
.site-branding {
    padding: 24px 0;
    text-align: center;
    position: relative;
    z-index: 2;
}

.site-title {
    margin: 0 0 0 20px;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
    align-items: start;
}

.site-title span {
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 5px;
}

.site-title a {
    color: #464646;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
}

.site-title a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), rgba(255,255,255,0.4));
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-logo {
    height: clamp(32px, 5vw, 48px);
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-title a:hover .site-logo {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    transform: scale(1.05);
}

.site-title-text {
    font-size: inherit;
    font-weight: inherit;
    line-height: 1.2;
}

.site-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 400;
    margin: 0;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* ====================
   ナビゲーション
==================== */
.main-navigation {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(5, 181, 196, 0.2);
    position: relative;
    z-index: 2;
}

.main-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2px;
}

.main-navigation li {
    position: relative;
}

.main-navigation a {
    display: block;
    padding: 16px 24px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border-radius: 0;
}

/* .main-navigation a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 16px);
    height: 3px;
    background: linear-gradient(90deg, #05b5c4, #048a97);
    border-radius: 2px 2px 0 0;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
} */

.main-navigation a:hover {
  color: #05b5c4;
  background: rgba(5, 181, 196, 0.08);
  font-weight: 600;
}

.main-navigation a:hover,
.main-navigation a:focus {
  outline: none !important;
}

.main-navigation a:hover::before,
.main-navigation a:focus::before {
    transform: translateX(-50%) scaleX(1);
}

/* ====================
   アクティブ/現在のページ
==================== */
.main-navigation .current-menu-item > a,
.main-navigation .current_page_item > a {
    color: #05b5c4;
    background: rgba(5, 181, 196, 0.08);
    font-weight: 600;
}

.main-navigation .current-menu-item > a::before,
.main-navigation .current_page_item > a::before {
    transform: translateX(-50%) scaleX(1);
}

/* ====================
   ドロップダウンメニュー
==================== */
.main-navigation ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 220px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    border: 1px solid rgba(5, 181, 196, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
}

.main-navigation li:hover > ul,
.main-navigation li:focus-within > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.main-navigation ul ul a {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(5, 181, 196, 0.08);
    border-radius: 0;
}

.main-navigation ul ul a:hover {
    background: rgba(5, 181, 196, 0.08);
    padding-left: 24px;
}

.main-navigation ul ul li:last-child a {
    border-bottom: none;
}




/* ====================
   レスポンシブデザイン
==================== */
@media (max-width: 768px) {
    .site-branding {
        padding: 20px 16px;
    }
    
    .site-title a {
        font-size: 1.1rem;
    }
    
    .site-title a {
        gap: 12px;
    }

    .site-title {
      align-items: center;
    }

    .site-title span {
      font-size: 0.8rem;
      font-weight: bold;
      margin-top: 10px;
    }
    
    .site-logo {
        height: clamp(28px, 4vw, 36px);
    }
    
    .site-description {
        font-size: 0.9rem;
    }
    
    .main-navigation ul {
        flex-direction: column;
        gap: 0;
    }
    
    .main-navigation a {
        padding: 14px 20px;
        text-align: center;
        border-bottom: 1px solid rgba(5, 181, 196, 0.1);
    }
    
    .main-navigation li:last-child a {
        border-bottom: none;
    }
    
    .main-navigation ul ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: inset 0 2px 4px rgba(5, 181, 196, 0.1);
        border-radius: 0;
        border: none;
        border-top: 2px solid #05b5c4;
        background: rgba(5, 181, 196, 0.02);
    }
    
    .main-navigation ul ul a {
        padding-left: 40px;
        background: rgba(5, 181, 196, 0.02);
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .site-branding {
        padding: 16px 12px;
    }
    
    .site-title a {
        flex-direction: column;
        gap: 8px;
    }
    
    .site-logo {
        height: 32px;
    }
    
    .main-navigation a {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
}

/* ====================
   アニメーション & インタラクション
==================== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#masthead {
    animation: slideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ホバー時のマイクロアニメーション */
.main-navigation a {
    transform-origin: center;
}

.main-navigation a:hover {
    transform: translateY(-1px);
}

/* フォーカス状態のアクセシビリティ */
.main-navigation a:focus {
    outline: 2px solid #05b5c4;
    outline-offset: 2px;
}

.site-title a:focus {
    outline: 2px solid rgba(255, 255, 255, 0.8);
    outline-offset: 4px;
    border-radius: 4px;
}

/* ====================
   追加のブランディング要素
==================== */
.site-branding::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.6), rgba(255,255,255,0.2), rgba(255,255,255,0.6));
    border-radius: 1px;
}






/* ========== ハンバーガーアイコン ========== */
.menu-toggle{
    display:none;               /* デスクトップでは非表示 */
    position:absolute;
    top:18px;                   /* ロゴ位置に合わせて調整 */
    right:24px;
    width:32px; height:28px;
    background:transparent;
    border:none; cursor:pointer;
    z-index:2000;
  }
  
  .menu-toggle .bar{
    display:block;
    width:100%; height:3px;
    margin:5px 0;
    background:#2c3e50;
    transition:transform .3s ease, opacity .2s ease;
  }
  
  /* クリック後のアニメーション（×形に変形） */
  body.menu-open .menu-toggle .bar:nth-child(1){ transform:translateY(8px) rotate(45deg);}
  body.menu-open .menu-toggle .bar:nth-child(2){ opacity:0;}
  body.menu-open .menu-toggle .bar:nth-child(3){ transform:translateY(-8px) rotate(-45deg);}

  @media (max-width:782px){
    html.admin-bar,
    body.admin-bar{         /*← ログイン時だけ付くクラス */
        margin-top:0 !important;
    }
  }
  
  /* ========== モバイルレイアウト ========== */
  @media (max-width:768px){

    /* ハンバーガーは表示するまま */
    .menu-toggle{ display:block; }
  
    /* ▼ main-navigation を「全画面オーバーレイ」にする */
    .main-navigation{
      position:fixed;          /* 画面に固定 */
      inset:0;                 /* top/right/bottom/left:0 */
      background:#fff;         /* 真っ白 */
      z-index:1500;
  
      display:flex !important; /* 以前の display:none を打ち消す */
      flex-direction:column;
      justify-content:center;
      align-items:center;
      gap:0;                   /* li 同士の隙間は ul/li 側で調整可 */
  
      transform:translateY(-100%);      /* 初期状態で画面外へ */
      transition:transform .3s ease;
    }
    /* 開いたときにスライドダウン */
    body.menu-open .main-navigation{
      transform:translateY(0);
    }
  
    /* オーバーレイ中は背面スクロール無効化 */
    body.menu-open{ overflow:hidden; }
  
    /* メニュー項目を縦並び＆大きめに */
    .main-navigation ul{
      flex-direction:column;
      width:100%;
    }
    .main-navigation a{
      padding:18px 24px;
      font-size:1.1rem;
      border-bottom:1px solid rgba(5,181,196,.08);
      width:100%;
      text-align:center;
    }
    .main-navigation li:last-child a{
      border-bottom:none;
    }
  }




/* リクルートセクション */
.recruitment-section {
    padding: 80px 0;
    background-color: #ffffff;
}

/* コンテナ */
.recruitment-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* セクションヘッダー */
.recruitment-section .section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* セクションタイトル */
.recruitment-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

/* セクションサブタイトル */
.recruitment-section .section-subtitle {
    font-size: 1.25rem;
    color: #666;
    max-width: 768px;
    margin: 0 auto;
    line-height: 1.5;
}

/* サービスグリッド */
.recruitment-section .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* サービスカード */
.recruitment-section .service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.recruitment-section .service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1), 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(5, 181, 196, 0.2);
}

.recruitment-section .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #05b5c4, #048a94);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.recruitment-section .service-card:hover::before {
    opacity: 1;
}

/* カードヘッダー */
.recruitment-section .card-header {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.recruitment-section .icon-wrapper {
    background: rgba(5, 181, 196, 0.1);
    padding: 12px;
    border-radius: 12px;
    margin-right: 16px;
    flex-shrink: 0;
}

.recruitment-section .icon {
    width: 32px;
    height: 32px;
    color: #05b5c4;
}

.recruitment-section .card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
}

/* カード説明 */
.recruitment-section .card-description {
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
    font-size: 1rem;
}

/* 機能リスト */
.recruitment-section .features-list {
    margin-bottom: 32px;
}

.recruitment-section .feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
}

.recruitment-section .feature-item:last-child {
    margin-bottom: 0;
}

.recruitment-section .feature-icon {
    width: 20px;
    height: 20px;
    color: #05b5c4;
    margin-top: 4px;
    margin-right: 12px;
    flex-shrink: 0;
}

.recruitment-section .feature-content {
    flex: 1;
}

.recruitment-section .feature-title {
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.recruitment-section .feature-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* CTAボタン */
.recruitment-section .cta-button {
    width: 100%;
    background-color: #05b5c4;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.recruitment-section .cta-button:hover {
    background-color: #048a94;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 181, 196, 0.3);
}

.recruitment-section .cta-button:active {
    transform: translateY(0);
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
    .recruitment-section {
        padding: 60px 0;
    }
    
    .recruitment-section .container {
        padding: 0 16px;
    }
    
    .recruitment-section .section-title {
        font-size: 2rem;
    }
    
    .recruitment-section .section-subtitle {
        font-size: 1.1rem;
    }
    
    .recruitment-section .section-header {
        margin-bottom: 48px;
    }
    
    .recruitment-section .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .recruitment-section .service-card {
        padding: 24px;
    }
    
    .recruitment-section .card-header {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .recruitment-section .icon-wrapper {
        margin-right: 0;
        margin-bottom: 12px;
    }
    
    .recruitment-section .card-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .recruitment-section {
        padding: 40px 0;
    }
    
    .recruitment-section .section-title {
        font-size: 1.75rem;
    }
    
    .recruitment-section .service-card {
        padding: 20px;
    }
    
    .recruitment-section .card-title {
        font-size: 1.2rem;
    }
    
    .recruitment-section .feature-item {
        margin-bottom: 12px;
    }
}




/* 投稿一覧セクション CSS */

/* ========== 投稿一覧セクション（シンプル版） ========== */
.posts-section {
    padding: 60px 0;
    background-color: #fff;
  }
  .posts-section .section-header {
    text-align: center;
    margin-bottom: 40px;
  }
  .posts-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
  }
  .posts-section .section-subtitle {
    font-size: 1rem;
    color: #666;
    margin-top: 8px;
  }
  
  .posts-list {
    max-width: 800px;
    margin: 0 auto;
  }
  .post-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 24px 0;
  }
  .post-item:last-child {
    border-bottom: none;
  }
  .post-meta {
    font-size: 0.875rem;
    color: #999;
    margin-bottom: 8px;
  }
  .post-meta time {
    margin-right: 16px;
  }
  .post-category {
    background: #f0f0f0;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.75rem;
    color: #555;
  }
  
  .post-title {
    font-size: 1.25rem;
    margin: 4px 0 12px;
  }
  .post-title a {
    color: #222;
    text-decoration: none;
  }
  .post-title a:hover {
    color: #0073aa;
    text-decoration: underline;
  }
  
  .post-excerpt {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  
  .read-more {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0073aa;
    text-decoration: none;
  }
  .read-more:hover {
    text-decoration: underline;
  }
  
  .posts-footer {
    text-align: center;
    margin-top: 40px;
  }
  .view-all-button {
    display: inline-block;
    padding: 10px 24px;
    background-color: #0073aa;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
  }
  .view-all-button:hover {
    background-color: #005f8d;
  }
  
  /* レスポンシブ */
  @media (max-width: 768px) {
    .posts-section {
      padding: 40px 20px;
    }
    .post-item {
      padding: 16px 0;
    }
  }
  



  

/* ─────  Contact Form 7 – Corporate Colorful  ───── */
.wpcf7 .cf7-corporate {
    --c-accent: #05b5c4;      /* メインカラー */
    --c-accent-dark: #0493a0; /* ホバー用に少し暗め */
    --c-border: #c8e6ea;      /* 枠線を淡いシアン寄りに */
    --c-bg: #f4fcfd;          /* 入力欄の背景をほんのり薄シアン */
    --radius: 6px;
    font-family: "Noto Sans JP", sans-serif;
    max-width: 640px;
    margin-inline: auto;
    padding: 1rem 1.5rem;     /* 余白追加でカード感 */
    border: 1px solid #e0f5f7;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(5,181,196,.07);
  }
  @media (max-width:768px) {
    .wpcf7 .cf7-corporate {
        width: 95%;
    }
  }
  
  .wpcf7 .cf7-corporate label {
    display: block;
    margin: 1.2rem 0 .4rem;
    font-size: .95rem;
    font-weight: 600;
    color: #055a63;           /* テキストもブランド寄りのダークシアン */
  }
  
  .wpcf7 .cf7-corporate input[type="text"],
  .wpcf7 .cf7-corporate input[type="tel"],
  .wpcf7 .cf7-corporate input[type="email"],
  .wpcf7 .cf7-corporate textarea {
    width: 100%;
    padding: .8rem 1rem;
    border: 1px solid var(--c-border);
    border-radius: var(--radius);
    background: var(--c-bg);
    transition: border-color .2s, box-shadow .2s, background .2s;
    font-size: .95rem;
  }
  
  .wpcf7 .cf7-corporate input:focus,
  .wpcf7 .cf7-corporate textarea:focus {
    border-color: var(--c-accent);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(5,181,196,.15);
    outline: none;
  }
  
  /* 必須アスタリスク (Contact Form 7 自動挿入) をブランド色に */
  .wpcf7 .cf7-corporate .wpcf7-form-control.wpcf7-validates-as-required::placeholder {
    color: rgba(5,181,196,.65);
  }
  
  /* 送信ボタン */
  .wpcf7 .cf7-corporate input[type="submit"] {
    cursor: pointer;
    display: block;
    margin: 1.6rem auto 0;
    width: 50%;
    padding: .85rem 3rem;
    border: 0;
    border-radius: var(--radius);
    background: var(--c-accent);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: .05em;
    transition: background .15s, transform .15s;
  }
  @media (max-width:768px) {
    .wpcf7 .cf7-corporate input[type="submit"] {
        width: 90%;
    }
  }
  
  .wpcf7 .cf7-corporate input[type="submit"]:hover {
    background: var(--c-accent-dark);
    transform: translateY(-2px);
  }
  
  .wpcf7 .cf7-corporate input[type="submit"]:active {
    transform: translateY(0);
  }
  
  /* エラーメッセージ & 成功メッセージ */
  .wpcf7 .cf7-corporate .wpcf7-response-output {
    margin-top: 1rem;
    padding: .75rem 1rem;
    border-radius: var(--radius);
    font-size: .9rem;
  }
  
  .wpcf7 .cf7-corporate .wpcf7-validation-errors {
    background: #fff4f4;
    border: 1px solid #f4cccc;
    color: #d84439;
  }
  
  .wpcf7 .cf7-corporate .wpcf7-mail-sent-ok {
    background: #e8fdfd;
    border: 1px solid #a0e4ea;
    color: #067e8b;
  }
  /* ───────────────────────────── */



  .org-info {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-family: "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro",メイリオ, meiryo, sans-serif;
  }
  
  /* タイトル */
  .org-info__title {
    font-size: 1.8rem;
    color: #05b5c4;
    border-left: 6px solid #05b5c4;
    padding-left: 0.75rem;
    margin-bottom: 1rem;
  }
  
  /* 詳細行のコンテナ */
  .org-info__details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
  }
  
  /* 各行の共通スタイル */
  .org-info__line {
    padding: 0.6rem 1rem;
    background: #ffffff;
    border-radius: 6px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    font-size: 1rem;
    color: #333;
  }
  
  /* 法人名行の強調 */
  .org-info__line--highlight {
    background: #05b5c4;
    color: #ffffff;
    font-weight: bold;
  }
  
  /* サブタイトル */
  .org-info__subtitle {
    font-size: 1.4rem;
    color: #05b5c4;
    margin-bottom: 0.75rem;
  }
  
  /* 地図 */
  .org-info__map {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    margin-bottom: 1.5rem;
  }
  .org-info__map iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  /* アクセス情報 */
  .org-info__access {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    text-align: center;
    background: #fff;
    padding: 1rem 1.5rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
  }
  
  



  /* フッター全体 */
#colophon.site-footer {
    background-color: #2c3e50;    /* ダークブルーグレー */
    color: #ecf0f1;               /* 明るいグレー */
    padding: 20px 0;              /* 上下の余白 */
    font-family: "Helvetica Neue", Arial, sans-serif;
    font-size: 14px;
    text-align: center;
    border-top: 1px solid #34495e; /* 上部にさりげないライン */
  }
  
  /* .site-info 内リンク */
  #colophon .site-info a {
    color: #3498db;               /* コーポレートアクセントカラー */
    text-decoration: none;
    transition: color 0.2s ease-in-out;
  }
  
  #colophon .site-info a:hover,
  #colophon .site-info a:focus {
    color: #1abc9c;               /* ホバーでアクセントをほんのり変化 */
    text-decoration: underline;
  }
  
  /* レスポンシブ対応：小さな画面では文字を少し小さく */
  @media screen and (max-width: 480px) {
    #colophon.site-footer {
      font-size: 12px;
      padding: 15px 0;
    }
  }
  
  
  /* ==========================================================================
   コーポレートサイト向けWordPress投稿ページCSS
   メインカラー: #05b5c4
   ========================================================================== */

/* 基本設定 */
.single-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Meiryo', sans-serif;
  line-height: 1.7;
  color: #333;
  background: #fff;
}

/* 記事全体のコンテナ */
.single-main .post {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 40px;
}

/* ヘッダー部分 */
.single-main .entry-header {
  background: linear-gradient(135deg, #05b5c4 0%, #048a96 100%);
  padding: 50px 15px;
  color: #fff;
  text-align: center;
  position: relative;
}

.single-main .entry-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.single-main .entry-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  position: relative;
  z-index: 1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* コンテンツエリア */
.single-main .entry-content {
  padding: 50px 15px;
}

/* 見出しスタイル */
.single-main .entry-content h2 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #05b5c4;
  margin: 40px 0 24px 0;
  padding: 16px 0 16px 20px;
  border-left: 4px solid #05b5c4;
  background: linear-gradient(90deg, rgba(5, 181, 196, 0.1) 0%, rgba(5, 181, 196, 0.05) 50%, transparent 100%);
  position: relative;
}

.single-main .entry-content h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 60px;
  height: 2px;
  background: #05b5c4;
}

.single-main .entry-content h3 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #048a96;
  margin: 32px 0 16px 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
}

/* 段落 */
.single-main .entry-content p {
  margin: 20px 0;
  font-size: 1rem;
  line-height: 1.8;
}

/* 強調テキスト */
.single-main .entry-content strong {
  color: #05b5c4;
  font-weight: 700;
}

/* リスト */
.single-main .entry-content ul {
  margin: 24px 0;
  padding-left: 0;
  list-style: none;
}

.single-main .entry-content ul li {
  position: relative;
  padding: 12px 0 12px 32px;
  margin: 8px 0;
  background: #f8fdfe;
  border-left: 3px solid #05b5c4;
  border-radius: 0 4px 4px 0;
  transition: all 0.3s ease;
}

.single-main .entry-content ul li::before {
  content: '▶';
  position: absolute;
  left: 12px;
  top: 12px;
  color: #05b5c4;
  font-size: 0.8rem;
}

.single-main .entry-content ul li:hover {
  background: #f0fbfc;
  transform: translateX(4px);
}

/* 注釈 */
.single-main .entry-content p:has(strong):first-child {
  background: linear-gradient(135deg, #e6f9fb 0%, #f0fbfc 100%);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid rgba(5, 181, 196, 0.2);
  margin: 30px 0;
  position: relative;
}

.single-main .entry-content p:has(strong):first-child::before {
  content: '📋';
  position: absolute;
  top: -10px;
  left: 20px;
  background: #05b5c4;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

/* フッター */
.single-main .entry-footer {
  padding: 30px 40px;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.9rem;
  color: #666;
}

.single-main .entry-footer a {
  color: #05b5c4;
  text-decoration: none;
  padding: 6px 12px;
  background: rgba(5, 181, 196, 0.1);
  border-radius: 20px;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.single-main .entry-footer a:hover {
  background: #05b5c4;
  color: #fff;
  transform: translateY(-1px);
}

/* ナビゲーション */
.single-main .post-navigation {
  margin-top: 40px;
}

.single-main .navigation {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.single-main .screen-reader-text {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.single-main .nav-links {
  display: flex;
}

.single-main .nav-previous,
.single-main .nav-next {
  flex: 1;
}

.single-main .nav-previous a,
.single-main .nav-next a {
  display: block;
  padding: 20px 30px;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border-right: 1px solid #e9ecef;
  position: relative;
}

.single-main .nav-previous a:hover,
.single-main .nav-next a:hover {
  background: #05b5c4;
  color: #fff;
  transform: translateY(-2px);
}

.single-main .nav-previous a::before {
  content: '←';
  margin-right: 8px;
  color: #05b5c4;
  font-weight: bold;
}

.single-main .nav-next a::after {
  content: '→';
  margin-left: 8px;
  color: #05b5c4;
  font-weight: bold;
}

.single-main .nav-previous a:hover::before,
.single-main .nav-next a:hover::after {
  color: #fff;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  /* .entry-header {
    padding: 30px 20px;
  } */
  
  .entry-title {
    font-size: 1.6rem;
  }
  
  /* .entry-content {
    padding: 30px 20px;
  } */
  
  .entry-content h2 {
    font-size: 1.5rem;
  }
  
  .entry-content h2::after {
    left: 16px;
  }
  
  .entry-footer {
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  
  .nav-links {
    flex-direction: column;
  }
  
  .nav-previous a,
  .nav-next a {
    border-right: none;
    border-bottom: 1px solid #e9ecef;
  }
  
  .nav-next a {
    border-bottom: none;
  }
}

@media (max-width: 480px) {
  .entry-title {
    font-size: 1.4rem;
  }
  
  .entry-content h2 {
    font-size: 1.3rem;
  }
  
  .entry-content ul li {
    padding-left: 28px;
  }
  
  .entry-content ul li::before {
    left: 10px;
  }
}

/* アニメーション効果 */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.post {
  animation: fadeInUp 0.6s ease-out;
}

/* スクロール時の見出しハイライト */
.entry-content h2:target {
  background: linear-gradient(90deg, rgba(5, 181, 196, 0.2) 0%, rgba(5, 181, 196, 0.1) 50%, transparent 100%);
  animation: highlight 2s ease-out;
}

@keyframes highlight {
  0% {
    background: linear-gradient(90deg, rgba(5, 181, 196, 0.4) 0%, rgba(5, 181, 196, 0.2) 50%, transparent 100%);
  }
  100% {
    background: linear-gradient(90deg, rgba(5, 181, 196, 0.2) 0%, rgba(5, 181, 196, 0.1) 50%, transparent 100%);
  }
}

.faq-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  line-height: 1.6;
  color: #333;
}

.faq-page h1 {
  text-align: center;
  font-size: 2rem;
  color: #05b5c4;
  margin-bottom: 40px;
  border-bottom: 3px solid #05b5c4;
  padding-bottom: 15px;
}

.faq-page .faq-item {
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.faq-page .question {
  background: #f8f9fa;
  padding: 20px;
  font-weight: bold;
  color: #05b5c4;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

.faq-page .question::before {
  content: 'Q';
  background: #05b5c4;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 10px;
}

.faq-page .answer {
  background: white;
  padding: 20px;
  position: relative;
}

.faq-page .answer::before {
  content: 'A';
  background: #05b5c4;
  color: white;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-right: 10px;
  position: absolute;
  left: 20px;
  top: 20px;
}

.faq-page .answer-content {
  margin-left: 34px;
}

.faq-page .highlight-box {
  background: #f0f9fa;
  border-left: 4px solid #05b5c4;
  padding: 15px;
  margin: 15px 0;
}

.faq-page .highlight-box ul {
  margin: 0;
  padding-left: 20px;
}

.faq-page .highlight-box li {
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .faq-page {
      padding: 20px 15px;
  }
  
  .faq-page h1 {
      font-size: 1.5rem;
  }
  
  .faq-page .question,
  .faq-page .answer {
      padding: 15px;
  }
}




/* ----------  CSS  ---------- */
.staffinfo-wrap {
  /* 全体のトーンをスクリーンショットに合わせたグラデ背景 */
  background: linear-gradient(#ffffff 0%, #f3f5f7 100%);
  padding: 4rem 2rem 8rem;
  position: relative;
  font-family: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
}

/* 背景のカラフルな装飾 */
.staffinfo-wrap .bg-confetti {
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  max-width: 600px;
  height: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 0.85;
}

/* スタッフ一覧横並び */
.staffinfo-wrap .staff-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 6rem;          /* カード間の余白 */
  justify-content: center;
  position: relative; /* 背景より手前に */
  z-index: 1;
}

/* 各カード */
.staffinfo-wrap .staff-card {
  position: relative;
  width: 18.75rem;    /* 300px 相当 */
  flex-shrink: 0;     /* つぶれ防止 */
}

/* 写真部（正方形でトリミング） */
.staffinfo-wrap .staff-photo {
  width: 100%;
  padding-top: 100%;  /* 1:1 アスペクト比 */
  overflow: hidden;
  border-radius: 2px;
  background: #eee;
  position: relative;
}
.staffinfo-wrap .staff-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 下側のホワイトカード */
.staffinfo-wrap .staff-info {
  position: absolute;
  left: 40%;
  bottom: -5.5rem;    /* 写真の下へはみ出させる */
  transform: translateX(-50%);
  width: 100%;
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  padding: 2.2rem 1.6rem 2rem;
  text-align: center;
}

/* 文字スタイル */
.staffinfo-wrap .staff-meta {
  font-size: 0.8125rem; /* 13px */
  color: #6b6b6b;
  line-height: 1.6;
  margin: 0 0 0.75rem;
}
.staffinfo-wrap .staff-name {
  font-size: 1.5rem;   /* 24px */
  color: #05b5c4;      /* 鮮やかなピンク */
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 0.75rem;
}
.staffinfo-wrap .staff-joined {
  font-size: 0.8125rem;
  color: #999;
  margin: 0;
}

/* レスポンシブ：タブレット以下で縦並び */
@media (max-width: 992px) {
  .staffinfo-wrap .staff-list {
    flex-direction: column;
    gap: 10rem;        /* カード間を広めに */
    align-items: center;
  }
  
  .staffinfo-wrap .staff-card {
    width: 70%;
    max-width: 320px;
    margin-bottom: 50px;
  }

  .staffinfo-wrap .staff-info {
    position: absolute;
    left: 29%;
    bottom: -9.5rem;
    transform: translateX(-50%);
    width: 126%;
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    padding: 2.2rem 1rem 2rem;
    text-align: center;
  }
  
  .staffinfo-wrap .bg-confetti {
    width: 70%;
    opacity: 0.6;
  }
}



.recruit-wrap * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.recruit-wrap {
  font-family: 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #f8f9fa;
}

.recruit-wrap .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.recruit-wrap .header {
  background: linear-gradient(135deg, #05b5c4 0%, #0891a0 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.recruit-wrap .header::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: float 20s linear infinite;
}

@keyframes float {
  0% { transform: translateX(-50px) translateY(-50px); }
  100% { transform: translateX(50px) translateY(50px); }
}

.recruit-wrap .header-content {
  position: relative;
  z-index: 2;
}

.recruit-wrap .header h1 {
  font-size: 3.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.recruit-wrap .header p {
  font-size: 1.3rem;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

/* Main Content */
.recruit-wrap .main {
  padding: 80px 0;
}

.recruit-wrap .section {
  margin-bottom: 100px;
}

.recruit-wrap .section-title {
  font-size: 2.5rem;
  color: #05b5c4;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.recruit-wrap .section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #05b5c4, #0891a0);
  margin: 20px auto 0;
  border-radius: 2px;
}

/* Message Section */
.recruit-wrap .message {
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(5, 181, 196, 0.1);
  text-align: center;
}

.recruit-wrap .message h2 {
  font-size: 2rem;
  color: #05b5c4;
  margin-bottom: 30px;
}

.recruit-wrap .message p {
  font-size: 1.1rem;
  line-height: 2;
  max-width: 800px;
  margin: 0 auto;
}

/* Job Positions */
.recruit-wrap .job-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.recruit-wrap .job-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  border-top: 5px solid #05b5c4;
}

.recruit-wrap .job-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(5, 181, 196, 0.2);
}

.recruit-wrap .job-card h3 {
  font-size: 1.5rem;
  color: #05b5c4;
  margin-bottom: 20px;
}

.recruit-wrap .job-card .requirements {
  margin-bottom: 20px;
}

.recruit-wrap .job-card .requirements h4 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 10px;
}

.recruit-wrap .job-card .requirements ul {
  list-style: none;
  padding-left: 0;
}

.recruit-wrap .job-card .requirements li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
}

.recruit-wrap .job-card .requirements li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #05b5c4;
  font-weight: bold;
}

.recruit-wrap .job-card .salary {
  background: #f8f9fa;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
}

.recruit-wrap .job-card .salary strong {
  color: #05b5c4;
}

/* Benefits */
.recruit-wrap .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.recruit-wrap .benefit-item {
  text-align: center;
  padding: 30px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.recruit-wrap .benefit-item:hover {
  transform: translateY(-5px);
}

.recruit-wrap .benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #05b5c4, #0891a0);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2rem;
  color: white;
}

.recruit-wrap .benefit-icon i {
  color: white !important;
}

.recruit-wrap .benefit-item h3 {
  font-size: 1.3rem;
  color: #05b5c4;
  margin-bottom: 15px;
}

/* Apply Section */
.recruit-wrap .apply-section {
  background: linear-gradient(135deg, #05b5c4 0%, #0891a0 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
  border-radius: 20px;
  margin-top: 60px;
}

.recruit-wrap .apply-section h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.recruit-wrap .apply-section p {
  font-size: 1.2rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.recruit-wrap .apply-btn {
  display: inline-block;
  background: white;
  color: #05b5c4;
  padding: 20px 50px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.recruit-wrap .apply-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  background: #f8f9fa;
}

/* Contact Info */
.recruit-wrap .contact-info {
  background: white;
  padding: 60px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(5, 181, 196, 0.1);
  margin-top: 60px;
}

.recruit-wrap .contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
}

.recruit-wrap .contact-item h3 {
  color: #05b5c4;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.recruit-wrap .contact-item p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Responsive */
@media (max-width: 768px) {
  .recruit-wrap .header {
      padding: 60px 0;
  }
  
  .recruit-wrap .header h1 {
      font-size: 2.5rem;
  }
  
  .recruit-wrap .section-title {
      font-size: 2rem;
  }
  
  .recruit-wrap .message {
      padding: 40px 30px;
  }
  
  .recruit-wrap .job-grid {
      grid-template-columns: 1fr;
  }
  
  .recruit-wrap .benefits-grid {
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
  
  .recruit-wrap .apply-section {
      padding: 60px 20px;
  }
  
  .recruit-wrap .contact-info {
      padding: 40px 30px;
  }
}


.privacy-wrap {
  font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  line-height: 1.8;
  color: #333;
  background: linear-gradient(135deg, #f8fdff 0%, #ffffff 100%);
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.privacy-wrap * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.privacy-wrap .header {
  background: linear-gradient(135deg, #05b5c4 0%, #048a96 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.privacy-wrap .header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.privacy-wrap .header-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.privacy-wrap .header h1 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.privacy-wrap .header .subtitle {
  font-size: 1.2rem;
  opacity: 0.9;
  font-weight: 300;
}

.privacy-wrap .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.privacy-wrap .intro-section {
  background: white;
  border-radius: 16px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 40px rgba(5, 181, 196, 0.1);
  border-left: 6px solid #05b5c4;
}

.privacy-wrap .intro-section h2 {
  color: #05b5c4;
  font-size: 2rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.privacy-wrap .intro-section p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 1rem;
}

.privacy-wrap .intro-section .site-url {
  background: #f0f9fa;
  padding: 1rem;
  border-radius: 8px;
  font-family: monospace;
  color: #05b5c4;
  font-weight: bold;
  margin-top: 1rem;
}

.privacy-wrap .content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.privacy-wrap .section-card {
  background: white;
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(5, 181, 196, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.privacy-wrap .section-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #05b5c4, #048a96);
}

.privacy-wrap .section-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(5, 181, 196, 0.15);
}

.privacy-wrap .section-card h3 {
  color: #05b5c4;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.privacy-wrap .section-card h3::before {
  content: '●';
  color: #05b5c4;
  margin-right: 0.8rem;
  font-size: 0.8rem;
}

.privacy-wrap .section-card p {
  color: #555;
  margin-bottom: 1.2rem;
  text-align: justify;
}

.privacy-wrap .section-card ul {
  list-style: none;
  padding-left: 0;
}

.privacy-wrap .section-card li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.8rem;
  color: #555;
}

.privacy-wrap .section-card li::before {
  content: '▶';
  position: absolute;
  left: 0;
  color: #05b5c4;
  font-size: 0.8rem;
}

.privacy-wrap .highlight-box {
  background: linear-gradient(135deg, #f0f9fa 0%, #e6f7f9 100%);
  border: 1px solid rgba(5, 181, 196, 0.2);
  border-radius: 8px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.privacy-wrap .highlight-box p {
  margin-bottom: 0.5rem;
  color: #333;
}

.privacy-wrap .external-link {
  color: #05b5c4;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease;
}

.privacy-wrap .external-link:hover {
  border-bottom-color: #05b5c4;
}

.privacy-wrap .footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 0;
  text-align: center;
  margin-top: 4rem;
}

.privacy-wrap .footer p {
  opacity: 0.8;
  font-size: 0.9rem;
}

.privacy-wrap .last-updated {
  background: #05b5c4;
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  font-weight: 500;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  #gt_float_wrapper {
    position: absolute !important;
    top: 5px !important;
    left: 5px !important;
    width: 40% !important;
  }

  .privacy-wrap .header {
      padding: 3rem 0;
  }

  .privacy-wrap .header h1 {
      font-size: 2rem;
  }

  .privacy-wrap .header .subtitle {
      font-size: 1rem;
  }

  .privacy-wrap .container {
      padding: 2rem 1rem;
  }

  .privacy-wrap .intro-section {
      padding: 2rem;
      margin-bottom: 2rem;
  }

  .privacy-wrap .intro-section h2 {
      font-size: 1.5rem;
  }

  .privacy-wrap .section-card {
      padding: 2rem;
  }

  .privacy-wrap .section-card h3 {
      font-size: 1.3rem;
  }

  .privacy-wrap .content-grid {
      gap: 1.5rem;
  }

  .main-navigation {
    visibility: hidden;
    transform: translateY(-100%);
  }

  /* 開いたら可視化＋スライドイン */
  body.menu-open .main-navigation {
    visibility: visible;
    transform: translateY(0);
    transition: transform .3s ease;
  }
}

@media (max-width: 480px) {
  .privacy-wrap .header h1 {
      font-size: 1.8rem;
  }

  .privacy-wrap .intro-section {
      padding: 1.5rem;
  }

  .privacy-wrap .section-card {
      padding: 1.5rem;
  }

  .privacy-wrap .container {
      padding: 1.5rem 1rem;
  }
}

@media (min-width: 1024px) {
  .privacy-wrap .content-grid {
      grid-template-columns: repeat(2, 1fr);
  }

  .privacy-wrap .section-card.full-width {
      grid-column: 1 / -1;
  }
}