/* 薬局掲示事項ページ専用スタイル */

/* ページヘッダー - shop.cssの.heading01と統一 */
.page-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 174px;
    margin: 0 auto 75px;
    padding: 60px;
    box-sizing: border-box;
    font-weight: normal;
    text-align: center;
    background: #FFF4F6;
  }
  
  .page-header h1 {
    font-weight: 600;
    font-size: 3.4rem;
    letter-spacing: 0.1em;
    text-align: center;
    margin: 0 0 20px 0;
  }
  
  .page-header p {
    font-size: 1.6rem;
    color: #434343;
    line-height: 1.5;
    margin: 0;
  }
  
  /* コンテナ - shop.cssと統一 */
  .container {
    max-width: 1200px;
    padding: 0 60px;
    margin: 0 auto;
  }
  
  .content-section {
    margin-bottom: 60px;
  }
  
  /* セクション見出し - shop.cssの.heading02と統一 */
  .requirements-section {
    margin-bottom: 110px;
  }
  
  .requirements-section h2 {
    font-weight: 600;
    font-size: 2.8rem;
    position: relative;
    text-align: center;
    margin-bottom: 94px;
    color: #333;
  }
  
  .requirements-section h2::after {
    content: "";
    position: absolute;
    width: 40px;
    height: 2px;
    background: #FF9DBF;
    left: 0;
    right: 0;
    margin: auto;
    top: 64px;
  }
  
  /* 各要件項目 - シンプルで統一感のあるデザイン */
  .requirement-item {
    background: #fff;
    box-shadow: 4px 4px 20px rgba(142, 142, 142, 0.16);
    margin: 0 auto 40px;
    padding: 40px 100px;
    max-width: 1080px;
  }
  
  .requirement-item h3 {
    font-weight: 600;
    font-size: 1.6rem;
    color: #ff81ad;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .requirement-item:first-child h3 {
    margin-top: 0;
  }
  
  .requirement-item p {
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 22px;
    color: #434343;
    font-family: "Noto Sans Myanmar";
    margin-bottom: 16px;
  }
  
  .requirement-item ul {
    margin: 20px 0;
    padding-left: 20px;
    list-style: none;
  }
  
  .requirement-item ul li {
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 22px;
    color: #434343;
    font-family: "Noto Sans Myanmar";
    margin-bottom: 8px;
    position: relative;
  }
  
  .requirement-item ul li::before {
    content: "・";
    margin-right: 8px;
    color: #FF9DBF;
  }
  
  /* 店舗情報表示 */
  .store-info {
    background: #F0A2BD;
    color: #fff;
    text-align: center;
    margin: 30px 0;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
  }
  
  /* 店舗比較 */
  .store-comparison {
    display: flex;
    gap: 30px;
    margin-bottom: 20px;
  }
  
  .store-column {
    flex: 1;
    background: #F8F8F8;
    padding: 20px;
    text-align: center;
    border: 1px solid #E0E0E0;
  }
  
  .store-column h4 {
    font-weight: 600;
    font-size: 1.6rem;
    color: #ff81ad;
    margin-bottom: 15px;
  }
  
  .store-column .status {
    font-weight: 600;
    font-size: 1.4rem;
    color: #434343;
    background: #fff;
    padding: 10px;
    border: 1px solid #CCCCCC;
  }
  
  /* テーブル - shop.cssのtableスタイルと統一 */
  .table-wrapper {
    overflow-x: auto;
    margin: 30px 0;
  }
  
  .requirements-table {
    border-collapse: collapse;
    margin: 0 auto;
    margin-bottom: 36px;
    width: 100%;
    background: #fff;
    box-shadow: 2px 2px 10px rgba(142, 142, 142, 0.1);
  }
  
  .requirements-table th {
    border-top: 1px solid #959595;
    font-weight: normal;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
    line-height: 25px;
    color: #434343;
    padding: 26px 20px;
    background: #F8F8F8;
  }
  
  .requirements-table th:first-child {
    background: #FF9DBF;
    color: #fff;
    font-weight: 600;
  }
  
  .requirements-table th,
  .requirements-table td {
    text-align: center;
    border-bottom: 1px solid #959595;
  }
  
  .requirements-table td {
    padding: 20px 15px;
    font-size: 1.5rem;
    color: #434343;
  }
  
  .requirements-table td:first-child {
    text-align: left;
    font-weight: 500;
    background: #F8F8F8;
    padding-left: 20px;
  }
  
  .requirements-table .available {
    color: #ff81ad;
    font-weight: 600;
  }
  
  .requirements-table .not-available {
    color: #CCCCCC;
    font-weight: 600;
  }
  
  /* 注意事項 - shop.cssの.attentionと統一 */
  .notice {
    border: 2px solid #FF9DBF;
    margin: 30px 0 40px;
    padding: 20px 15px;
    color: #434343;
    line-height: 25px;
    background: #FFF4F6;
    text-align: center;
  }
  
  .notice p {
    font-weight: 500;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    line-height: 22px;
    color: #434343;
    font-family: "Noto Sans Myanmar";
    margin: 0;
  }
  
  .notice strong {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FF9DBF;
  }

  h2 {
    margin-bottom: 20px;
  }
  
  /* レスポンシブ対応 - shop.cssと統一 */
  @media (max-width: 1024px) {
    .container {
      padding: 0 40px;
    }
    
    .requirement-item {
      padding: 30px 20px;
    }
    
    .requirements-table th {
      font-size: 1.4rem;
      padding: 20px 15px;
    }
    
    .requirements-table td {
      padding: 15px 10px;
      font-size: 1.3rem;
    }
  }
  
  @media (max-width: 767px) {
    .container {
      padding: 0 20px;
    }
    
    .page-header {
      min-height: 200px;
      padding: 40px 20px;
    }
    
    .page-header h1 {
      font-size: 3rem;
    }
    
    .page-header p {
      font-size: 1.4rem;
    }
    
    .requirements-section h2 {
      font-size: 2.2rem;
      margin-bottom: 72px;
    }
    
    .requirements-section h2::after {
      top: 50px;
    }
    
    .requirement-item {
      padding: 20px;
    }
    
    .requirement-item h3 {
      font-size: 1.4rem;
      margin-bottom: 15px;
    }
    
    .requirement-item p,
    .requirement-item ul li {
      font-size: 1.2rem;
    }
    
    .store-info {
      font-size: 1.2rem;
      padding: 12px 15px;
    }
    
    .store-comparison {
      flex-direction: column;
      gap: 15px;
    }
    
    .store-column h4 {
      font-size: 1.4rem;
    }
    
    .store-column .status {
      font-size: 1.2rem;
    }
    
    .requirements-table {
      font-size: 1.2rem;
    }
    
    .requirements-table th {
      font-size: 1.2rem;
      padding: 15px 8px;
    }
    
    .requirements-table td {
      padding: 12px 8px;
      font-size: 1.1rem;
    }
    
    .requirements-table td:first-child {
      padding-left: 10px;
    }
    
    .notice p {
      font-size: 1.2rem;
    }
  }
/* PDFリンクセクション用のスタイル */
.pdf-links-section {
  margin-top: 60px;
  padding: 40px 20px;
  background: #fdf2f8;
}

.pdf-container {
  max-width: 900px;
  margin: 0 auto;
}

.pdf-header {
  text-align: center;
  margin-bottom: 50px;
  padding: 40px 20px;
  background: #f0a2bd;
  border-radius: 20px;
  color: white;
  box-shadow: 0 8px 32px rgba(240, 162, 189, 0.2);
}

.pdf-header h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.pdf-header p {
  font-size: 18px;
  opacity: 0.9;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.pdf-section {
  background: white;
  border-radius: 20px;
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid rgba(240, 162, 189, 0.1);
}

.pdf-section-title {
  font-size: 24px;
  color: #f0a2bd;
  font-weight: 700;
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 3px solid #f0a2bd;
}

.pdf-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pdf-item {
  display: flex;
  align-items: center;
  background: transparent;
  border: 2px solid #f0a2bd;
  border-radius: 16px;
  padding: 24px;
  cursor: pointer;
  position: relative;
  opacity: 1;
  transition: opacity 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.pdf-item:hover {
  background: transparent;
  border-color: #f0a2bd;
  opacity: 0.7;
}

.pdf-icon {
  width: 56px;
  height: 56px;
  background: #f0a2bd;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 24px;
  flex-shrink: 0;
}

.pdf-icon svg {
  width: 32px;
  height: 32px;
  fill: white;
}

.pdf-content {
  flex: 1;
}

.pdf-title {
  font-size: 18px;
  font-weight: 600;
  color: #f0a2bd;
  margin-bottom: 8px;
  line-height: 1.4;
}

.pdf-description {
  font-size: 15px;
  color: #64748b;
  line-height: 1.6;
}

.download-icon {
  width: 28px;
  height: 28px;
  margin-left: 20px;
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}

.pdf-item:hover .download-icon {
  opacity: 1;
}

.download-icon svg {
  width: 100%;
  height: 100%;
  fill: #d63384;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .pdf-links-section {
      padding: 20px 16px;
  }

  .pdf-header {
      padding: 30px 20px;
      margin-bottom: 30px;
  }

  .pdf-header h1 {
      font-size: 24px;
  }

  .pdf-header p {
      font-size: 16px;
  }

  .pdf-section {
      padding: 24px;
  }

  .pdf-item {
      padding: 20px;
  }

  .pdf-icon {
      width: 48px;
      height: 48px;
      margin-right: 16px;
  }

  .pdf-icon svg {
      width: 28px;
      height: 28px;
  }

  .pdf-title {
      font-size: 16px;
  }

  .pdf-description {
      font-size: 14px;
  }

  .pdf-section-title {
      font-size: 20px;
  }
}