.pconly a {
  color: #e8004a !important;
}

*, *::after, *::before {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
}

#container.attraction,
section.attraction,
.attraction-first {
  height: auto;
  min-height: auto;
}

main.attraction .attraction-detail {
  margin-top: 0;
  padding: 24px 0 60px;
}

/* ── Hero ── */
.health-hero .attraction-first {
  padding: 100px 20px 32px;
}

.health-hero-lead {
  max-width: 820px;
  margin: 16px auto 0;
}

/* ── Page nav ── */
.health-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: #fff;
  border-bottom: 1px solid #e8d5c4;
}

.health-nav a {
  display: inline-block;
  padding: 6px 14px;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: #555;
  background: #fef7f0;
  border: 1px solid #e8a87c;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}

.health-nav a:hover {
  background: #70c5c5;
  color: #fff;
  border-color: #70c5c5;
}

/* ── Page sections ── */
.health-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.health-section {
  padding: 36px 0;
  border-bottom: 1px solid #e8d5c4;
  scroll-margin-top: 16px;
}

.health-section:last-child {
  border-bottom: none;
}

.health-section-title {
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
}

.health-section-title--center {
  margin-bottom: 8px;
}

.health-subtitle {
  font-size: 15px;
  font-weight: 600;
  margin: 24px 0 12px;
  letter-spacing: 0.06em;
}

.health-note {
  color: #e8004a;
}

.health-alert {
  color: #e8004a;
  margin-top: 12px;
}

.health-tel {
  color: #e8004a;
  font-weight: 600;
  font-size: 1.1em;
}

.health-section .health-usage-grid {
  margin-bottom: 16px;
}

.health-section .health-usage-grid:last-child {
  margin-bottom: 0;
}

.health-image-inline {
  margin-top: 16px;
  border-radius: 8px;
  overflow: hidden;
  display: none;
}

.health-image-inline img {
  width: 100%;
  max-height: 200px;
  object-fit: cover;
  display: block;
}

/* ── Collapsible belongings ── */
.health-details {
  margin: 20px 0;
  background: #fff;
  border: 1px solid #e8a87c;
  border-radius: 8px;
  overflow: hidden;
}

.health-details summary {
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.06em;
  color: #555;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.health-details summary::-webkit-details-marker {
  display: none;
}

.health-details summary::after {
  content: "＋";
  font-size: 18px;
  color: #70c5c5;
  transition: transform 0.2s;
}

.health-details[open] summary::after {
  content: "－";
}

.health-details summary:hover {
  background: #fef7f0;
}

.health-belongings {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 16px;
  padding: 0 16px 12px;
  margin: 0;
}

.health-belongings li {
  font-size: 13px;
  line-height: 1.6;
  padding-left: 1em;
  position: relative;
}

.health-belongings li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.health-details-note {
  padding: 0 16px 12px;
  font-size: 13px;
  margin: 0;
}

/* ── Usage grid ── */
.health-usage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.health-usage-item {
  background: #fff;
  border: 1px solid #e8d5c4;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 14px;
  line-height: 1.7;
}

.health-usage-item strong {
  display: block;
  color: #70c5c5;
  margin-bottom: 4px;
  font-size: 13px;
}

.health-usage-item--fee {
  grid-column: 1 / -1;
  background: #fde8d8;
  text-align: center;
}

.health-usage-item--fee strong,
.health-usage-item--fee span {
  display: inline;
}

.health-usage-item--fee strong::after {
  content: "：";
}

/* ── Examples ── */
.health-examples {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.health-example-card {
  background: #fff;
  border: 1px solid #e8a87c;
  border-radius: 8px;
  padding: 14px 16px;
}

.health-example-q {
  font-size: 13px;
  line-height: 1.7;
  margin: 0 0 8px;
  color: #555;
}

.health-example-a {
  font-size: 13px;
  line-height: 1.7;
  margin: 0;
  color: #e8004a;
  font-weight: 500;
}

.health-contact-note {
  text-align: center;
  margin-top: 16px;
}

/* ── Topic cards ── */
.health-topics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.health-topic-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  background: #fff;
  border: 1px solid #e8d5c4;
  border-radius: 8px;
  padding: 12px;
  align-items: start;
}

.health-topic-card--intro {
  margin-bottom: 20px;
  grid-template-columns: 1fr;
}

.health-topic-card--intro .health-topic-image img {
  max-height: 280px;
}

.health-topic-card--intro .health-topic-body .text-primary.read {
  margin-bottom: 12px;
}

.health-topic-card--intro .health-topic-body .text-primary.read:last-child {
  margin-bottom: 0;
}

.health-topic-image {
  border-radius: 6px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fef7f0;
}

.health-topic-image img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: contain;
  object-position: center;
  display: block;
}

.health-topic-body h3 {
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 8px;
  color: #333;
  letter-spacing: 0.04em;
}

.health-topic-body ul {
  margin: 0;
  padding: 0;
}

.health-topic-body li {
  font-size: 13px;
  line-height: 1.65;
  padding-left: 1em;
  position: relative;
  margin-bottom: 4px;
}

.health-topic-body li::before {
  content: "●";
  position: absolute;
  left: 0;
  font-size: 8px;
  top: 0.5em;
  color: #70c5c5;
}

.health-standards-lead {
  text-align: center;
  margin-bottom: 16px;
}

/* ── Responsive ── */
@media only screen and (max-width: 900px) {
  .health-image-inline {
    display: block;
  }

  .health-examples {
    grid-template-columns: 1fr;
  }

  .health-topics-grid {
    grid-template-columns: 1fr;
  }

  .health-topic-card {
    grid-template-columns: 1fr;
  }

  .health-topic-image img {
    max-height: 240px;
  }
}

@media only screen and (max-width: 600px) {
  .health-hero .attraction-first {
    padding: 80px 16px 24px;
  }

  .health-nav {
    gap: 6px;
    padding: 10px 12px;
  }

  .health-nav a {
    font-size: 11px;
    padding: 5px 10px;
  }

  .health-belongings {
    grid-template-columns: 1fr;
  }

  .health-usage-grid {
    grid-template-columns: 1fr;
  }

  .health-topic-image img {
    max-height: none;
  }

  .health-section {
    padding: 28px 0;
  }
}

a {
  color: #333;
  text-decoration: none;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* main {
  width: 100%;
  margin: 0px auto 10px;
  background-color: lightcyan;
} */

.menu {
  display: flex;
  justify-content: center;
}

.menu__link {
  display: block;
  padding: 10px 20px;
}

.menu__link:hover {
  background-color: #88a6a9;
  color: #666;
}

.drop-menu {
  position: absolute;
  top: 43px;
  transition: all .3s;
}

.drop-menu__link {
  display: block;
  display: none;
  background-color: #88a6a9;
  transition: all .3s;
  padding: 5px 20px;
}

.drop-menu__link:hover {
  background-color: lightcyan;
}

/* ドロップダウン出現後のスタイル */
.drop-menu__link.is-active {
  display: block;
}

  .header {
    background: #88a6a9;
    padding-left: 0px;
  }

  .header.attraction::after {
    width: 0px !important;
  }

  .header.guidance::after {
    width: 0px !important;
  }

  .footer {
    background: #70c5c5;
    color: #e8004a !important;
  }

  .footer-nav a {
    color: #e8004a;
  }
  
  /* スマホ専用の下部ヘッダー */
  .mobile-bottom-header {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #70c5c5;
    border-top: 1px solid #e0e0e0;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(0);
    transition: transform 0.3s ease;
  }

  .mobile-nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 8px 0;
    max-width: 100%;
  }

  .mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    padding: 8px 4px;
    min-width: 60px;
    transition: all 0.3s ease;
    border-radius: 8px;
  }

  .mobile-nav-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
  }

  .mobile-nav-item:active {
    transform: translateY(0);
    background-color: rgba(255, 255, 255, 0.3);
  }

  .mobile-nav-item.active {
    background-color: rgba(255, 255, 255, 0.3);
    color: #e8004a;
    font-weight: 600;
  }

  .mobile-nav-item.active .mobile-nav-icon {
    transform: scale(1.1);
  }

  .mobile-nav-icon {
    font-size: 20px;
    margin-bottom: 4px;
    line-height: 1;
  }

  .mobile-nav-text {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    line-height: 1.2;
    letter-spacing: 0.05em;
  }

  /* スマホでのみ表示 */
  @media only screen and (max-width: 768px) {
    .mobile-bottom-header {
      display: block !important;
      position: fixed !important;
      bottom: 0 !important;
      left: 0 !important;
      right: 0 !important;
      width: 100% !important;
    }
    
    /* スマホで下部ヘッダーがある分、bodyに余白を追加 */
    body {
      padding-bottom: 120px !important;
    }
    
    /* フッターの上に表示されるように調整 */
    .footer {
      margin-bottom: 120px;
      padding-bottom: 40px;
    }
    
    /* copyrightが隠れないように調整 */
    .footer .under {
      margin-bottom: 40px;
    }
  }

  /* タブレット以上では非表示 */
  @media only screen and (min-width: 769px) {
    .mobile-bottom-header {
      display: none !important;
    }
    
    body {
      padding-bottom: 0 !important;
    }
  }

  main {
    background: #CCCCCC !important;
  }

  @media screen and (max-width: 1100px) and (max-width: 736px) {
    .header.attraction::after {
      width: 0px !important;
    }
  }

  @media only screen and (max-width: 736px) {
    .for-large {
      display: none;
    }

    .for-small {
      display: block;
    }

    .home-attraction>.image {
      padding-right: 0 !important;
    }

    .home-attraction>.head {
      margin-bottom: 25px;
      padding: 0 20px;
      text-align: left;
    }

    .headding-primary .en {
      font-size: 35px;
      letter-spacing: .026em;
    }

    .headding-primary .ja {
      font-size: 11px;
    }

    .button-flat span {
      font-size: 13px;
    }

    .text-primary {
      font-size: 13px;
      text-align: justify;
      line-height: 2;
      letter-spacing: .08em;
    }

    .home-policy .content {
      width: 100%;
    }

    .toplogo {
      max-width: 20%;
    }

    video {
      max-height: 1200px;
    }

    .pconly {
      display: none !important;
    }

    .global-nav .inner .box>.wrap .list .child {
      display: block;
    }

    .global-nav>.wrapper {
      max-height: 100%;
      overflow-y: visible;
    }
  }


  @media only screen and (min-width: 1080px) {
    .hamburger {
      display: none;
    }
  }

  .standards-table-wrap {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 0 20px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .standards-table-scroll-hint {
    display: none;
    margin: 0 0 10px;
    text-align: center;
    font-size: 13px;
    color: #666;
    letter-spacing: 0.08em;
  }

  .standards-table {
    width: 100%;
    min-width: 720px;
    border-collapse: collapse;
    background: #fff;
    font-size: 14px;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }

  .standards-table th,
  .standards-table td {
    border: 1px dashed #e8a87c;
    padding: 10px 12px;
    vertical-align: top;
    text-align: left;
  }

  .standards-table th {
    background: #fde8d8;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
  }

  .standards-table td:first-child {
    white-space: nowrap;
    font-weight: 500;
  }

  .standards-table [contenteditable="true"]:focus {
    outline: 2px solid #e8004a;
    outline-offset: -2px;
    background: #fffef5;
  }

  .standards-table [contenteditable="true"]:hover {
    background: #fffef5;
  }

  @media only screen and (max-width: 736px) {
    .standards-table-scroll-hint {
      display: block;
    }

    .standards-table {
      font-size: 12px;
    }

    .standards-table th,
    .standards-table td {
      padding: 8px;
    }
  }
