  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }

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

  /* 导航栏样式 */
  #navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
    z-index: 1000;
  }

  /* 容器设置 */
  .container {
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 12px;
    color: #333;
  }

  /* 右侧语言和时间容器 */
  .right-controls {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-right: 65px;
  }

  select#language-select {
    padding: 8px 12px;
    font-size: 12px;
    border-radius: 25px;
    border: 1px solid #999;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
    color: #333;
  }

  .clock {
    font-family: 'sharpsans', sans-serif;
    font-size: 18px;
    min-width: 80px;
    margin-top: 4px;
    text-align: right;
    color: #333;
  }

  .notice-button {
  display: inline-block;
  padding: 6px 12px;
  background-color: #444;
  color: white;
  text-decoration: none;
  border-radius: 25px;
  transition: background-color 0.3s ease;
}

.notice-button:hover {
  background-color: #666;
}

  /* SP 手机版响应式隐藏中间和右侧部分 */
  @media screen and (max-width: 767px) {
    .nav-links,
    .center-news,
    .monet,
    .contact-button {
      display: none;
    }

    .container {
      justify-content: flex-start;
    }
  }




    /* --------- pc / 手机布局 --------- */

/* 手机端隐藏 */
@media screen and (max-width: 767px) {
  .desktop-only {
    display: none;
  }
}
    .hero {
      display: flex;
      height: 100vh;
      width: 100%;
      margin-top: 74px;
    }

    .left, .center, .right {
      height: 100%;
      position: relative;
    }

    .left {
      flex: 0 0 41.5%;
      background: url('../images/left-image.jpg') center center/cover no-repeat;
    }

    .center {
      flex: 0 0 44.5%;
      background: url('../images/center-image.jpg') center center/cover no-repeat;
    }

    .right {
      flex: 0 0 14%;
      right: 80px;
      background: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 40px 20px 40px 40px;
      text-align: center;
    }

    .square-overlay {
    position: absolute;
    top: 33%;
    transform: translateX(-38%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-size: 100px;
    font-family: 'sharpsans-bold_v2';
    color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 30px 30px;
    border-radius: 12px;
    text-align: left;
    line-height: 110px;
    letter-spacing: 5px;
    z-index: 10;
    }

    .center .square-overlay {
      left: -50px; /* Overlap seam */
    }

    .description {
      font-size: 14px;
      color: #333;
      margin-bottom: 40px;
    }

    .actions {
      display: flex;
      flex-direction: column;
      gap: 15px;
      width: 100%;
      align-items: center;
    }

    .action-box {
    /*border: 1px solid rgba(0, 0, 0, 0.2);*/
    padding: 20px 20px;
    font-size: 12px;
    color: #333;
    flex: 1 1 40%;
    min-width: 150px;
    min-height: 150px;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    line-height: 30px;
    transition: background-color 0.25s ease;
    box-shadow: rgba(0, 0, 0, 0.6) 3px 1px 4px 0px inset;
    }

    /* --------- SP / 手机布局 --------- */

.mobile-only {
  display: none;
}

/* 仅当屏幕宽度 ≤ 767px（手机）时显示 */
@media screen and (max-width: 767px) {
  .mobile-only {
    display: block;
  }
}
        .screen {
      height: 100vh;
      margin-top: 74px;
      display: flex;
      flex-direction: column;
    }


    /* 中部区域 */
    .middle {
      height: 41.5%;
      background: url('../images/left-image.jpg') center center/cover no-repeat;
      position: relative;
    }

    /* 正方形中间叠加区域 */
    .overlay-box {
      position: absolute;
      top: 70%;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      /* 改成靠上对齐 */
      justify-content: flex-start;
      font-size: 40px;
      font-family:'sharpsans-bold_v2';
      color: rgba(255, 255, 255, 1);
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      padding: 16px 16px;
      border-radius: 12px;
      text-align: left;
      line-height: 48px;
      letter-spacing: 5px;
      z-index: 10;
    }

    .overlay-box .tagline {
    font-size: 28px;
    margin-top: 14px;
    line-height: 0.6;
    white-space: normal;
    letter-spacing: 1px;
    font-family: 'GN-Kin-iro_SansSerif';
    }

  .tagline0 {
  font-size: 20px;
  margin-top: 10px;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  white-space: normal;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  justify-content: center; /* 垂直居中 */
  }

    /* 底部区域 */
    .bottom {
      height: 41.5%;
      background: url('../images/center-image.jpg') center center/cover no-repeat;
    }




.left-buttons {
  position: absolute;
  top: 70%;
  left: 10px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.left-action-box {
    padding: 10px 10px;
    border: 1px solid #fff;
    border-radius: 25px;
    font-size: 10px;
    font-family:'sharpsans';
    color: #fff;
    text-align: center;
    }


.vertical-text {
  writing-mode: vertical-rl; /* 从上到下，从右到左 */
  text-orientation: upright; /* 保持文字直立 */
  line-height: 1.5;
  height: 150px;
  /*letter-spacing: 2px;*/

}

/* 只在手机端显示 */
@media screen and (min-width: 768px) {
  .left-buttons {
    display: none;
  }
}




.video-ad {  
            position: fixed;  
            bottom:-4px;
            left: 100px;
            width: 530px;
            height: auto; 
            box-shadow: 0px -2px 6px rgba(0, 0, 0, 0.2);
            z-index: 999999;  
        } 

@media screen and (max-width:480px) {
.video-ad {  
            position: fixed;  
            bottom:-4px;
            left: 80px; 
            width: 260px;  
            height: auto; 
            box-shadow: 0px -2px 6px rgba(0, 0, 0, 0.2);
            z-index: 999999;  
        } 
        } 
  
        .video-ad .close-btn {  
            position: absolute;  
            top: -2px;  
            cursor: pointer;  
        } 

        .video-ad .btn-anniu {  
            position: absolute;
            top: 60%;
            left: 27.5%;
            cursor: pointer;
            text-align: left;
            font-size:19px;text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5), 0px 0px 0px rgba(0, 0, 0, 0.5);color: rgba(255, 255, 255, 1);backdrop-filter: blur(5px);-webkit-backdrop-filter: blur(5px);padding: 20px 20px;border-radius: 12px;
            font-family: 'sharpsans-bold_v2';
        } 

@media screen and (max-width:480px) {
        .video-ad .btn-anniu {  
            position: absolute;
            top: 55%;
            left: 20%;
            cursor: pointer;
            text-align: left;
            font-size:13px;text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5), 0px 0px 0px rgba(0, 0, 0, 0.5);color: rgba(255, 255, 255, 1);backdrop-filter: blur(5px);-webkit-backdrop-filter: blur(5px);padding: 8px 8px;border-radius: 12px;
            font-family: 'sharpsans-bold_v2';
        } 
        } 





.scene-text {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  padding: 140px 25px 0px 25px; /* PC版上下间距 */
  height: auto;
  font-size: 16px;
  line-height: 2;
  color: #333;
}

.scene-text p {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  white-space: normal;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  justify-content: center; /* 垂直居中 */
  }

/* 手机版（最大宽度 767px） */
@media screen and (max-width: 767px) {
  .scene-text {
    padding: 0px 25px 65px 25px;
    font-size: 12px;
    line-height: 1.6;
    margin-top: -40px;
  }

.scene-text p {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  white-space: normal;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  text-orientation: upright;
  justify-content: center; /* 垂直居中 */
  }
}


/* 默认 PC 字体大小 */
.tagline-text {
  font-size: 24px;
  margin-top: -30px;
}

/* 手机端字体调整为 22px */
@media screen and (max-width: 767px) {
  .tagline-text {
    font-size: 24px;
  }
}




/* 中间图片集合 */

.gallery {
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 8vw);
  gap: 20px;
  position: relative;
}

.img-box {
  position: relative;
  overflow: hidden;
}

.img-caption {
    position: absolute;
    top: 20px;
    left: 20px;
    cursor: pointer;
    text-align: left;
    font-size: 18px;
    text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5), 0px 0px 0px rgba(0, 0, 0, 0.5);
    color: rgba(255, 255, 255, 1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    padding: 20px 20px;
    border-radius: 12px;
    font-family: 'sharpsans-bold_v2';
}

@media screen and (max-width:480px) {
  .img-caption {
    position: absolute;
    top: 10px;
    left: 10px;
    cursor: pointer;
    text-align: left;
    font-size:10px;text-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5), 0px 0px 0px rgba(0, 0, 0, 0.5);color: rgba(255, 255, 255, 1);backdrop-filter: blur(5px);-webkit-backdrop-filter: blur(5px);padding: 8px 8px;border-radius: 12px;
    font-family: 'sharpsans-bold_v2';
} 
} 

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

/* 图像位置定义，按示例排布 */
.img1 { grid-column: 3 / 7; grid-row: 7 / 9; }
.img2 { grid-column: 7 / 9; grid-row: 1 / 3; }
.img3 { grid-column: 3 / 9; grid-row: 3 / 7; } /* 中间大图 */
.img4 { grid-column: 1 / 3; grid-row: 3 / 5; }
.img5 { grid-column: 9 / 10; grid-row: 4 / 6; }

/* 手机响应式处理 */
@media screen and (max-width: 767px) {
  .gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    /*padding: 10px;*/
  }

  .img-box {
    width: calc(50% - 5px); /* 减去一半的gap，确保两列刚好 */
    height: auto;
  }

  .img-box.img3 {
    width: 100%; /* 独占一行，自动对齐左右 */
  }

  .img-box img {
    width: 100%;
    height: auto;
    display: block;
  }
}




/* about */
.responsive-container {
        display: flex;
        padding: 110px 17.1% 110px 20.9%;
        gap: 220px;
      }

.right00 {
        margin-top: 40px;
      }

.left00, .right00 p {
text-align: left;
}

.about {
font-size: 100px;
line-height: 110px;
letter-spacing: 5px;
font-family: 'sharpsans-bold_v2';
color: rgba(0, 0, 0, .75);
}

.about0 {
font-size: 12px;
color: rgba(0, 0, 0, .75);
}

.dabt {
font-size: 24px;
margin-bottom: 20px;
}

.dabt88 {
font-size: 24px;
margin-bottom: 20px;
}

.pt {
font-size: 16px;
}

.pt111 {
font-size: 15px;
}

.right00 p{
line-height: 2;
}

@media screen and (max-width: 767px) {
.responsive-container {
      display: flex;
      flex-direction: column;
      padding: 80px 30px;
      gap: 50px;
}

.left00, .right00 {
      width: 100%;
}

.right00 {
        margin-top: 0px;
      }

.about {
font-size: 40px;
line-height: 48px;
letter-spacing: 2px;
font-family: 'sharpsans-bold_v2';
color: rgba(0, 0, 0, .75);
}

.dabt {
font-size: 22px;
margin-bottom: 14px;
}

.dabt88 {
font-size: 20px;
margin-bottom: 14px;
}

.pt {
font-size: 12px;
}

.pt111 {
font-size: 11px;
}

.right00 p{
line-height: 1.8;
}
}




.button-container {
      display: flex;
      gap: 16px;
      flex-wrap: wrap; /* 自动换行，适配手机 */
      margin-top: 35px;
    }

    .button {
      padding: 10px 20px;
      font-size: 13px;
      border: 1px solid #666;
      border-radius: 25px;
      background-color: #fff;
      color: #333;
      cursor: pointer;
      transition: all 0.3s ease;
      text-decoration: none;
      display: inline-block;
    }

    .button:hover {
      background-color: #333;
      color: #fff;
    }


.left-action-box0 {
    padding: 10px 12px 10px 10px;
    border: 0.5px solid #666;
    border-radius: 25px;
    font-size: 12px;
    color: #333;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    text-decoration: none;
    font-family: 'sharpsans-bold_v2';
    }


.vertical-text0 {
  writing-mode: vertical-rl; /* 从上到下，从右到左 */
  text-orientation: upright; /* 保持文字直立 */
  line-height: 1.5;
  height: 140px;
  letter-spacing: 2px;
  box-shadow: inset rgba(0, 0, 0, 0.6) 1px 2px 1px 0px;

}


.responsive-container88 {
    display: flex;
    padding: 0px 0% 110px 20.9%;
    gap: 160px;
}

@media screen and (max-width: 767px) {
.responsive-container88 {
      display: flex;
      flex-direction: column;
      padding: 0px 30px 80px 30px;
      gap: 50px;
}
}



/* 医生介绍 */
.responsive-container11 {
        display: flex;
        padding: 0px 6% 150px 6%;
        gap: 220px;
      }

.left0011 {
        margin-top: 50px;
        width: 572px;
      }

.right0011 {
        margin-top: 40px;
      }

.left0011, .right0011 p {
text-align: left;
}

.about11 {
font-size: 100px;
line-height: 110px;
letter-spacing: 5px;
font-family: 'sharpsans-bold_v2';
color: rgba(0, 0, 0, .75);
}

.about011 {
font-size: 12px;
color: rgba(0, 0, 0, .75);
}

.dabt11 {
font-size: 24px;
margin-bottom: 20px;
}

.pt11 {
font-size: 16px;
}

.right0011 p{
line-height: 2;
}

@media screen and (max-width: 767px) {
.responsive-container11 {
      display: flex;
      flex-direction: column;
      padding: 0px 30px 80px 30px;
      gap: 50px;
}

.left0011, .right0011 {
      width: 100%;
}

.left0011 {
        margin-top: 0px;
      }

.right0011 {
        margin-top: 0px;
      }

.about11 {
font-size: 40px;
line-height: 48px;
letter-spacing: 2px;
font-family: 'sharpsans-bold_v2';
color: rgba(0, 0, 0, .75);
}

.dabt11 {
font-size: 22px;
margin-bottom: 14px;
}

.pt11 {
font-size: 12px;
}

.right0011 p{
line-height: 1.8;
}
}




.doctor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 40px;
  margin: 30px 0;
}

.doctor-card {
  text-decoration: none;
  color: inherit;
  text-align: center;
}

.doctor-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.doctor-role {
  margin-top: 12px;
  font-size: 12px;
  color: #666;
}

.doctor-name {
  font-weight: bold;
  font-size: 18px;
  margin: 4px 0;
}

.doctor-desc {
  font-size: 16px;
  color: #666;
}

  .doctor-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制为2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

@media screen and (max-width: 767px) {
  .doctor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
  }

.doctor-role {
  margin-top: 12px;
  font-size: 12px;
  color: #666;
}

.doctor-name {
  font-size: 12px;
  margin: 4px 0;
}

.doctor-desc {
  font-size: 12px;
  color: #666;
}
    .doctor-role {
    display: -webkit-box;
    -webkit-line-clamp: 1; /* 限制为1行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

    .doctor-name {
    display: -webkit-box;
    -webkit-line-clamp: 1; /* 限制为1行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .doctor-desc {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* 限制为2行 */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}




/* 横幅广告 */
  .guanggao {
    position: relative;
    width: 100%;
    height: 800px;
    background-image: url(../images/your-image.jpg);
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    margin-bottom: 110px;
  }

  .guanggao-content {
    color: #fff;
    padding: 200px 0px 50px 100px;
  }

  .guanggao h1 {
    font-size: 80px;
    font-family: 'sharpsans-bold_v2';
    margin: 10px 0 0;
  }

  .guanggao p {
    font-size: 16px;
    margin: 0;
  }

  /* 手机版响应式设置 */
  @media (max-width: 768px) {
    .guanggao {
     height: inherit;
    margin-bottom: 80px;
    }

   .guanggao-content {
    color: #fff;
    padding: 250px 50px 50px 50px;
  }

    .guanggao h1 {
      font-size: 33px;
    }

    .guanggao p {
      font-size: 14px;
    }
  }




/* 医疗案例 */
  .zhengli {
    padding: 50px 0px 0px 0px;
  }

  .scroll-container {
    overflow: hidden;
    width: 100%;
    max-height: 800px;
    position: relative;
    background: #fff;
    padding: 50px 0px 30px 0px;
  }

  .scroll-track {
    display: flex;
    gap: 20px; /* 间隔缝隙 */
    animation: scroll-left 60s linear infinite;
  }

  .scroll-item {
    flex: 0 0 auto;
    width: 400px;
    max-width: 90vw;
    text-align: left;
  }

  .scroll-item img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
  }

  .scroll-caption {
    margin-top: 20px;
    font-size: 16px;
    color: #333;
    text-align: justify;
    line-height: 2;
  }

  @keyframes scroll-left {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* 复制内容实现无缝滚动 */
  .scroll-track-wrapper {
    display: flex;
    width: fit-content;
  }

  @media (max-width: 768px) {
  .zhengli {
    text-align: left;
    padding: 0px 0px 0px 30px;
  }

  .scroll-container {
    padding: 44px 0px 0px 0px;
  }

    .scroll-item {
      width: 50vw;
    }

    .scroll-caption {
    margin-top: 12px;
    font-size: 12px;
    color: #333;
    text-align: justify;
    line-height: 1.8;
  }
  }




/* Q&A */

  .faq-section {
    font-size: 24px;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 30px 150px 30px;
    color: #000;
  }

  .faq-item {
     border-bottom: 1px solid #ccc;
    margin-bottom: 12px;
    padding: 20px 0;
  }

  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
  }

  .faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
  }

  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    margin-top: 12px;
    line-height: 1.8;
    font-size: 16px;
    text-align: left;
    text-align: justify;
  }

  .faq-item.active .faq-answer {
    max-height: 500px;
    opacity: 1;
  }

  .faq-item.active .faq-icon {
    content: '✖️';
    transform: rotate(90deg);
  }

  @media (max-width: 768px) {
    .faq-question {
      font-size: 14px;
    }

      .faq-answer {
    font-size: 12px;
    margin-top: 8px;
  }
    .faq-icon {
      font-size: 18px;
    }
      .faq-item {
    margin-bottom: 0px;
    padding: 20px 0 8px 0;
  }
  }




/* 预约 */

  .faq-section0 {
    font-size: 24px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px 30px 150px 30px;
    color: #333;
  }

  .faq-item0 {
     border-bottom: 1px solid #ccc;
    margin-bottom: 12px;
    padding: 20px 0;
  }

    .faq-item1 {
    margin-bottom: 12px;
    padding: 20px 0;
  }

  .faq-question0 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
  }

  .faq-answer0 {
    margin-top: 12px;
    margin-bottom: 12px;
    line-height: 1.8;
    font-size: 16px;
    text-align: left;
    text-align: justify;
  }

  .faq-item0.active .faq-answer0 {
    max-height: 500px;
    opacity: 1;
  }

  .faq-item0.active .faq-icon0 {
    content: '✖️';
    transform: rotate(90deg);
  }

  @media (max-width: 768px) {
    .faq-question0 {
      font-size: 14px;
    }

      .faq-answer0 {
    font-size: 12px;
    margin-top: 8px;
    margin-bottom: 8px;
  }
      .faq-item0 {
    margin-bottom: 0px;
    padding: 20px 0 8px 0;
  }
        .faq-item1 {
    margin-bottom: 0px;
    padding: 20px 0 8px 0;
  }
  }



    .menu-section {
      max-width: 600px;
      margin: 0 auto;
    }

    .category {
      border: 1px solid #ccc;
      border-radius: 0px;
      margin-bottom: 10px;
      margin-top: 20px;
      padding: 16px 16px 16px 42px;
      background: #f9f9f9;
    }

    .category-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
    }

    .category-header h3 {
      margin: 0;
      font-size: 15px;
      font-weight: normal;
    }

    .toggle-btn {
      font-size: 16px;
      transform: rotate(0deg);
      transition: transform 0.2s ease;
    }

    .toggle-btn.open {
      transform: rotate(90deg);
    }

    .subcategory-list {
      margin-top: 10px;
      display: none;
      line-height: 2.2;
    }

    .subcategory-item {
      margin: 5px 0;
      display: flex;
      align-items: center;
    }



    .datetime-wrapper {
      max-width: 800px;
      margin: 0 auto;
      margin-top: 20px;
    }

    .datetime-select {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .select-block {
      flex: 1 1 22%;
      min-width: 120px;
    }

    .select-block select {
      width: 100%;
      padding: 20px;
      border: 1px solid #ccc;
      border-radius: 0px;
      background: #fff;
      font-size: 15px;
      color: #333;
      background: #f9f9f9;
      height: 60px;
    }

    @media (max-width: 768px) {
      .select-block {
        flex: 1 1 48%;
      }
    }



   form {
      margin: 0 auto;
    }

    .form-group {
      margin-bottom: 15px;
    }

    label {
      display: block;
      margin-bottom: 5px;
      font-weight: bold;
    }

    .required-label::after {
      content: "（必須）";
      color: red;
      font-weight: normal;
      margin-left: 5px;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
      width: 100%;
      padding: 16px;
      border: 1px solid #ccc;
      border-radius: 0px;
      font-size: 15px;
      background: #f9f9f9;
      height: 60px;
    }

    textarea {
      height: 100px;
    }

    .note {
      font-size: 11px;
      color: #666;
      margin-top: 4px;
    }

    .submit-group {
      margin-top: 32px;
      text-align: center;
    }

    .submit-group input[type="submit"] {
    background: #333;
    color: #fff;
    border: none;
    padding: 20px 60px;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    }

    .consent {
      margin: 20px 0;
      font-size: 15px;
    }

    .submit-note {
      margin-top: 22px;
      font-size: 11px;
      color: #666;
      text-align:center;
    }


.radio-group label {
      display: block;
      margin-bottom: 8px;
      cursor: pointer;
      display:flex; align-items:center; 
    }

    .radio-group input[type="radio"] {
      margin-right: 12px;
    }

    .form-title {
      font-weight: bold;
      margin-bottom: 10px;
    }



/* 底部 */
 .footer {
    background-color: #f6f6f6;
    color: #444;
    font-size: 16px;
    padding: 20px;
  }

  .footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    padding: 100px 200px 100px 100px;
    margin: 0 auto;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex: 1;
    min-width: 200px;
    text-align: left;
  }

  .footer-center {
    flex: 2;
    display: flex;
    gap: 160px;
    line-height: 3.0;
  }

  .footer-logo {
    margin-bottom: 12px;
  }

  .footer-address{
    margin-bottom: 4px;
    font-size: 18px;
  }

  .footer-slogan {
    margin-bottom: 24px;
    font-size: 12px;
    line-height: 1.8;
  }

  .footer-menu {
    list-style: none;
    padding: 0;
  }

  .footer-menu li {
    margin-bottom: 6px;
  }

  .footer-button {
    display: block;
    width: 100%;
    padding: 20px 0;
    margin-bottom: 20px;
    text-align: center;
    /* background-color: #444; */
    color: #444;
    font-size: 20px;
    border: none;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid #666;
    font-weight: 600;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    font-size: 9px;
    color: #666;
    font-family:'sharpsans';
    text-align: right;
  }

  @media (max-width: 768px) {
    .footer-center {
      flex-direction: column;
      gap: 38px;
      font-size: 12px;
      margin-bottom: 50px;
      line-height: 2;
    }

    .footer-content {
    padding: 60px 10px 30px 70px;
  }

    .footer-button {
      font-size: 14px;
      font-weight: 600;
    }
  }

/* 個人情報の取扱いについて 区域 */
  .responsive-container0 {
        display: flex;
        padding: 0px 10.1% 110px 10.9%;
        gap: 200px;
      }

@media screen and (max-width: 767px) {
.responsive-container0 {
      display: flex;
      flex-direction: column;
      padding: 0px 30px 80px 30px;
      gap: 50px;
}
}


/* faq更多页面 页码按钮 区域 */
.pagination-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 20px 0;
}

.pagination-button,
.pagination-page {
  font-size: 13px;
  color: #333;
  padding: 6px 12px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.2s;
}

.pagination-page.current {
  background: #333;
  color: #fff;
  font-weight: bold;
}

.pagination-button:hover,
.pagination-page:hover {
  background: #e6e6e6;
}

.pagination-ellipsis {
  font-size: 13px;
  color: #999;
  padding: 6px 10px;
}


.contact-box {
  padding: 20px;
  border: .5px solid #333;
  font-size: 12px;
  color: #333;
  line-height: 1.6;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  word-break: break-word;
  background-color: #fff;
  border-radius: 0px;
  margin-left: 1px;
}



  /* 弹窗背景遮罩 */
  #modal {
    display: none;
    position: fixed; 
    z-index: 9999999; 
    left: 0; top: 0; 
    width: 100%; height: 100%; 
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
  }
  /* 弹窗内容 */
  #modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
  }
  /* 关闭按钮 */
  #modal .close-btn {
    position: absolute;
    top: 20px; right: 30px;
    font-size: 30px;
    color: white;
    cursor: pointer;
    color: #333;
    user-select: none;
  }


  /* 料金基础表格样式 */
  .price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    color: #333;
  }

  .price-table th,
  .price-table td {
    border: 0.5px solid #ccc;
    padding: 20px 20px;
    text-align: left;
  }

  .price-table th {
    background-color: #f7f7f7;
    font-size: 12px;

  }
  .price-table th:first-child {
    width: 70%;
  }
  .price-table th:last-child {
    width: 30%;
  }

  /* 手机端适配 */
  @media (max-width: 600px) {
    .price-table,
    .price-table thead,
    .price-table tbody,
    .price-table th,
    .price-table td,
    .price-table tr {
      /*display: block;
      width: 100%;*/
      font-size: 12px;
    }

    .price-table thead tr {
      display: none; /* 隐藏表头 */
    }

    .price-table tr {
      margin-bottom: 15px;
      border-bottom: 2px solid #333;
    }

    .price-table td {
      /*border: none;*/
      position: relative;
      /*padding-left: 50%;*/
      text-align: left;
    }

    .price-table td::before {
      content: attr(data-label);
      position: absolute;
      left: 20px;
      top: 20px;
      font-weight: bold;
      text-align: left;
      white-space: nowrap;
    }
  }





.responsive-box {
  width: 100%;
  height: auto; /* 自动适应内容高度 */
  border: 1px solid #999;
  border-radius: 0px 20px 20px 20px;
  box-sizing: border-box;
  padding: 20px 10px; /* 可选，让内容不贴边 */
  text-align: center;
}
@media (max-width: 600px) {
  .responsive-box {
    width: 100%;
  }
}




    .menu {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 60px;
    }
    .menu button {
      background: #fff;
      color: #333;
      font-size:10px;
      border: none;
      padding: 20px 20px;
      border-radius: 0px 10px 10px 10px;
      cursor: pointer;
      border: 1px solid #999;
    }
    .menu button.active {
      background: #999;
      color: #fff;
    }
    .content00000 {
      border-top: 0.3px solid #ccc;
      padding-top: 60px;
    }
    .section00000 {
      margin-bottom: 60px;
    }
    .section00000 h3 {
      border-left: 4px solid #444;
      padding-left: 10px;
      margin-bottom: 20px;
      text-align: left;
      font-size: 18px;
      color: #333;
    }

@media screen and (max-width: 768px) {
  .menu {
    justify-content: space-between;
  }

  .menu button {
    width: calc(50% - 8px); /* 每行2列，考虑gap间距 */
    padding: 10px 20px;
  }
}