@charset "UTF-8";
body {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #333333;
  background-color: #f7fbf9;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

html {
  margin-top: 0 !important;
}

html,
body {
  margin: 0;
  padding: 0;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.site-header {
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* 上の情報帯 */
.header-top {
  padding: 10px 0 0;
}

.header-top .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 24px;
}

.logo img {
  display: block;
  max-height: 200px;
  width: auto;
}

.info {
  text-align: right;
  line-height: 1.5;
}

.info .number p {
  margin: 0 0 4px;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #3a8b7a;
}

.info .open-info p {
  margin: 0;
  font-size: 16px;
  color: #777777;
}

/* ==============================
     sticky になるナビ部分
  ============================== */
.global-nav {
  border-top: 1px solid #e3f0ea;
  margin-top: 10px;
  position: -webkit-sticky !important;
  position: sticky !important;
  top: 0 !important;
  z-index: 200;
  background-color: #ffffff;
  -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
          box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.global-nav nav {
  max-width: 1100px;
  margin: 0 auto;
  padding: 8px 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.hamburger {
  display: none;
}

.global-nav ul {
  list-style: none;
  margin: 0;
  padding: 8px 5%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 24px;
}

.global-nav li {
  font-size: 18px;
  letter-spacing: 0.12em;
  color: #555;
  cursor: pointer;
  position: relative;
  padding-bottom: 4px;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}

.global-nav li a {
  text-decoration: none;
  color: #555;
}

.global-nav li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background-color: #3a8b7a;
  border-radius: 999px;
  -webkit-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}

.global-nav li:hover {
  color: #3a8b7a;
}

.global-nav li:hover::after {
  width: 100%;
}

.global-nav li:last-child {
  margin-right: 24px;
}

/* ハンバーガーアイコンのベース */
.hamburger {
  position: relative;
  width: 32px;
  height: 24px;
  padding: 0;
  margin-left: auto;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 210;
}

/* 3本線 */
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background-color: #3a8b7a;
  -webkit-transition: opacity 0.2s ease-out, top 0.2s ease-out, bottom 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: opacity 0.2s ease-out, top 0.2s ease-out, bottom 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out, top 0.2s ease-out, bottom 0.2s ease-out;
  transition: transform 0.2s ease-out, opacity 0.2s ease-out, top 0.2s ease-out, bottom 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.hamburger span:nth-child(3) {
  bottom: 0;
}

/* 開いているときの「×」状態 */
.global-nav.is-open .hamburger span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}

.global-nav.is-open .hamburger span:nth-child(2) {
  opacity: 0;
}

.global-nav.is-open .hamburger span:nth-child(3) {
  bottom: 50%;
  -webkit-transform: translateY(50%) rotate(-45deg);
          transform: translateY(50%) rotate(-45deg);
}

/* ==============================
     レスポンシブ
  ============================== */
@media (max-width: 768px) {
  /* ハンバーガー表示、nav内レイアウト調整 */
  .global-nav {
    padding: 8px 5%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    background-color: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-top: none;
  }
  .hamburger {
    display: block;
  }
  /* メニューは縦並び・デフォルト閉じる */
  .global-nav ul {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e3f0ea;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: max-height 0.2s ease-out;
    transition: max-height 0.2s ease-out;
    border-bottom: none;
  }
  .global-nav li {
    padding: 12px 5%;
    font-size: 14px;
    letter-spacing: 0.05em;
    border-top: 1px solid rgba(227, 240, 234, 0.6);
  }
  .global-nav li::after {
    display: none;
  }
  /* 開いたとき */
  .global-nav.is-open ul {
    max-height: 260px;
  }
  /* 最後の li の右マージンは不要に */
  .global-nav li:last-child {
    margin-right: 0;
  }
  .site-header .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
  .info {
    text-align: center;
  }
  .logo img {
    max-height: 150px;
  }
  .info .number p {
    font-size: 18px;
  }
  .info .open-info p {
    font-size: 11px;
    margin-bottom: 10px;
  }
}

.hero {
  width: 100%;
  margin: 0;
  padding: 0;
}

.hero .mainimage {
  overflow: hidden;
  border-radius: 0 0 32px 32px;
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.hero .mainimage img {
  display: block;
  width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.main {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  color: #333333;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: linear-gradient(120deg, rgba(58, 139, 122, 0.08), rgba(255, 255, 255, 0.95));
}

/* 各コンテナを2カラムのグリッドに */
.main > .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1.3fr) minmax(0, 1fr);
      grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  -webkit-column-gap: 40px;
          column-gap: 40px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  padding: 40px 0;
}

/* コンテナ同士の区切り線 */
.main > .container + .container {
  border-top: 1px solid rgba(58, 139, 122, 0.12);
}

/* subtitle はコンテナの一番上で横幅いっぱい */
.main .subtitle {
  grid-column: 1 / -1;
  margin-bottom: 12px;
}

.main .subtitle h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
  color: #3a8b7a;
  text-align: center;
  margin-bottom: 16px;
}

/* テキスト */
.main .text {
  margin-bottom: 16px;
}

.main .text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #666666;
}

/* ---------------------------
   1つ目のコンテナ（.one）
   左：text + button
   右：image
--------------------------- */
.main .one .text {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  grid-row: 2;
}

.main .one .btn-more {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 3;
  grid-row: 3;
}

.main .one .main-visual {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2 / 4;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

/* ---------------------------
   2つ目のコンテナ（.two）
   subtitle は同じく上に
   左：image
   右：text + button
--------------------------- */
.main .two .main-visual {
  -ms-grid-column: 1;
  grid-column: 1;
  -ms-grid-row: 2;
  -ms-grid-row-span: 2;
  grid-row: 2 / 4;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.main .two .text {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 2;
  grid-row: 2;
}

.main .two .btn-more {
  -ms-grid-column: 2;
  grid-column: 2;
  -ms-grid-row: 3;
  grid-row: 3;
}

/* 画像スタイル共通 */
.main .main-visual img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  -webkit-box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
          box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  -o-object-fit: cover;
     object-fit: cover;
}

/* ---------------------------
   ボタン（もっと透明に）
--------------------------- */
.btn-more {
  margin-bottom: 12px;
}

.btn-more button,
.btn-more a {
  display: inline-block;
  padding: 10px 26px;
  border-radius: 999px;
  border: 1px solid rgba(58, 139, 122, 0.4);
  background-color: rgba(255, 255, 255, 0.2);
  color: #3a8b7a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  cursor: pointer;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  -webkit-transition: background-color 0.2s ease-out, color 0.2s ease-out, -webkit-box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, -webkit-box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out, -webkit-box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
  text-decoration: none;
}

.btn-more button:hover,
.btn-more a:hover {
  background-color: rgba(58, 139, 122, 0.9);
  color: #fff;
  -webkit-box-shadow: 0 6px 16px rgba(58, 139, 122, 0.35);
          box-shadow: 0 6px 16px rgba(58, 139, 122, 0.35);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

/* ---------------------------
   レスポンシブ（スマホ用）
--------------------------- */
@media (max-width: 900px) {
  .main {
    padding: 50px 0;
  }
  .main > .container {
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
    row-gap: 20px;
  }
  .main .subtitle {
    margin-bottom: 8px;
  }
  .main .one .text,
  .main .one .btn-more,
  .main .one .main-visual,
  .main .two .text,
  .main .two .btn-more,
  .main .two .main-visual {
    -ms-grid-column: 1;
    grid-column: 1;
    grid-row: auto;
  }
  .main .main-visual {
    width: 90%;
    margin: 0 auto;
  }
  .btn-more button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .main {
    padding: 40px 0;
  }
  .main .subtitle h3 {
    font-size: 18px;
  }
  .main .text p {
    font-size: 13px;
  }
}

.treatment-menu {
  padding: 80px 0 60px;
  background-color: #f7fbf9;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
}

.treatment-menu .title {
  margin-bottom: 32px;
}

.treatment-menu .title h2 {
  font-size: 24px;
  font-weight: 700;
  color: #3a8b7a;
  position: relative;
  display: inline-block;
  padding-bottom: 8px;
}

.treatment-menu .title h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60%;
  height: 2px;
  border-radius: 999px;
  background-color: rgba(58, 139, 122, 0.5);
}

.treatment-menu .container ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[3];
      grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.treatment-menu .card {
  background-color: #fff;
  border-radius: 18px;
  padding: 20px 18px 18px;
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  text-align: left;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.treatment-menu .card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(58, 139, 122, 0.07), transparent 40%);
  pointer-events: none;
}

.treatment-menu .card .subtitle h3 {
  position: relative;
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: #3a8b7a;
}

.treatment-menu .card .text {
  position: relative;
}

.treatment-menu .card .text p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #666666;
}

.treatment-menu .card .symptoms {
  position: relative;
  margin-top: 12px;
  text-align: right;
}

.treatment-menu .card .symptoms img {
  width: 72px;
  height: auto;
  opacity: 0.9;
}

.treatment-menu .more-btn {
  margin-top: 36px;
}

.treatment-menu .more-btn button {
  display: inline-block;
  padding: 10px 32px;
  border-radius: 999px;
  border: 1px solid rgba(58, 139, 122, 0.4);
  background-color: rgba(255, 255, 255, 0.15);
  color: #3a8b7a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  -webkit-transition: background-color 0.2s ease-out, color 0.2s ease-out, -webkit-transform 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, -webkit-transform 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out, box-shadow 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out, box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
}

.treatment-menu .more-btn button:hover {
  background-color: rgba(58, 139, 122, 0.9);
  color: #fff;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 8px 18px rgba(58, 139, 122, 0.4);
          box-shadow: 0 8px 18px rgba(58, 139, 122, 0.4);
}

@media (max-width: 900px) {
  .treatment-menu {
    padding: 60px 0 40px;
  }
  .treatment-menu .container ul {
    -ms-grid-columns: (minmax(0, 1fr))[2];
        grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .treatment-menu {
    padding: 50px 0 32px;
  }
  .treatment-menu .title h2 {
    font-size: 20px;
  }
  .treatment-menu .container ul {
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
  }
  .treatment-menu .card {
    padding: 18px 16px 16px;
    padding: 14px 12px 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
  }
  .treatment-menu .card .symptoms img {
    width: 64px;
  }
  .treatment-menu .more-btn button {
    width: 100%;
  }
  .treatment-menu .card {
    padding: 14px 12px 14px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 10px;
  }
  .treatment-menu .card-body {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
  }
  .treatment-menu .card .subtitle h3 {
    font-size: 15px;
  }
  .treatment-menu .card .text p {
    font-size: 12px;
    line-height: 1.6;
  }
  .treatment-menu .card .symptoms {
    margin-top: 0;
    text-align: right;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .treatment-menu .card .symptoms img {
    width: 56px;
    height: auto;
    opacity: 0.9;
  }
  .treatment-menu .more-btn button {
    width: 100%;
  }
}

.news {
  padding: 70px 0 60px;
  background-color: #ffffff;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.news > .container {
  margin-bottom: 24px;
  text-align: center;
}

.news h2 {
  font-size: 24px;
  font-weight: 700;
  color: #3a8b7a;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}

.news h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background-color: rgba(58, 139, 122, 0.5);
}

.news > ul {
  list-style: none;
  margin: 0 auto 24px;
  padding: 0;
  width: 90%;
  max-width: 1100px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[3];
      grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.news li {
  margin: 0;
}

.news .news-item {
  background-color: #f7fbf9;
  border-radius: 16px;
  overflow: hidden;
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.06);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  -webkit-transition: background-color 0.2s ease-out, -webkit-transform 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
  transition: background-color 0.2s ease-out, -webkit-transform 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, background-color 0.2s ease-out;
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, background-color 0.2s ease-out, -webkit-transform 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
  cursor: pointer;
}

.news .news-item:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  background-color: #fff;
}

.news .items-img img {
  display: block;
  width: 100%;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
}

.news .item-title,
.news .item-date {
  padding: 10px 14px;
}

.news .item-title h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #333333;
  line-height: 1.5;
}

.news .item-date p {
  margin: 0;
  font-size: 12px;
  color: #666666;
  text-align: right;
}

.news .more-btn {
  margin-top: 10px;
  text-align: center;
}

.news .more-btn a {
  display: inline-block;
  padding: 10px 32px;
  border-radius: 999px;
  border: 1px solid rgba(58, 139, 122, 0.4);
  background-color: rgba(255, 255, 255, 0.15);
  color: #3a8b7a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  -webkit-transition: background-color 0.2s ease-out, color 0.2s ease-out, -webkit-transform 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, -webkit-transform 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out, box-shadow 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, transform 0.2s ease-out, box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out, -webkit-box-shadow 0.2s ease-out;
}

.news .more-btn a:hover {
  background-color: rgba(58, 139, 122, 0.9);
  color: #fff;
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
  -webkit-box-shadow: 0 8px 18px rgba(58, 139, 122, 0.4);
          box-shadow: 0 8px 18px rgba(58, 139, 122, 0.4);
}

@media (max-width: 900px) {
  .news > ul {
    -ms-grid-columns: (minmax(0, 1fr))[2];
        grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .news {
    padding: 50px 0 40px;
  }
  .news h2 {
    font-size: 20px;
  }
  .news > ul {
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }
  .news .items-img img {
    height: 140px;
  }
  .news .more-btn button {
    width: 100%;
  }
}

.voice {
  padding: 72px 0;
  background-color: #ffffff;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.voice .container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.voice-header {
  text-align: center;
  margin-bottom: 32px;
}

.voice-header h2 {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #3a8b7a;
}

.voice-header p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #333333;
}

.voice .container .voice-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[3];
      grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.voice-card {
  border-radius: 18px;
  background-color: #fff;
  border: 1px solid rgba(58, 139, 122, 0.16);
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  padding: 14px 16px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
}

.voice-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-left: 4px solid rgba(58, 139, 122, 0.6);
  border-radius: 18px;
  pointer-events: none;
}

.voice-card__meta,
.voice-card__body {
  position: relative;
}

.voice-card__meta {
  font-size: 12px;
  line-height: 1.6;
  color: #666666;
  margin-bottom: 4px;
}

.voice-card__meta .voice-card__name {
  margin: 0 0 2px;
  font-weight: 700;
  color: #333333;
}

.voice-card__meta .voice-card__profile {
  margin: 0 0 2px;
}

.voice-card__meta .voice-card__tag {
  margin: 0;
  font-size: 11px;
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background-color: rgba(58, 139, 122, 0.08);
  color: #3a8b7a;
  letter-spacing: 0.06em;
}

.voice-card__body .voice-card__title {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: #3a8b7a;
  line-height: 1.6;
}

.voice-card__body .voice-card__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: #333333;
}

.voice-more {
  margin-top: 24px;
  text-align: center;
}

.voice-more .voice-more__link {
  display: inline-block;
  padding: 10px 32px;
  border-radius: 999px;
  border: 1px solid rgba(58, 139, 122, 0.6);
  background-color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  color: #3a8b7a;
  -webkit-box-shadow: 0 8px 18px rgba(58, 139, 122, 0.2);
          box-shadow: 0 8px 18px rgba(58, 139, 122, 0.2);
  -webkit-transition: background-color 0.2s ease-out, color 0.2s ease-out, -webkit-box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, -webkit-box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out, -webkit-box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.voice-more .voice-more__link:hover {
  background-color: #3a8b7a;
  color: #fff;
  -webkit-box-shadow: 0 10px 24px rgba(58, 139, 122, 0.35);
          box-shadow: 0 10px 24px rgba(58, 139, 122, 0.35);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

@media (max-width: 900px) {
  .voice {
    padding: 56px 0;
  }
  .voice-list {
    -ms-grid-columns: (minmax(0, 1fr))[2];
        grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .voice {
    padding: 44px 0;
  }
  .voice-header h2 {
    font-size: 20px;
  }
  .voice-header p {
    font-size: 13px;
  }
  .voice-list {
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
  }
  .voice-card {
    padding: 12px 12px 14px;
  }
  .voice-card__body .voice-card__text {
    font-size: 12px;
  }
  .voice-more .voice-more__link {
    width: 100%;
    max-width: 320px;
    font-size: 12px;
  }
}

.access {
  padding: 80px 0;
  background-color: #f7fbf9;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* info と map を横並び＆同じ高さに */
.access .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}

/* 左側：info 全体を囲むカード */
.access .info {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  background-color: #f7fbf9;
  border-radius: 18px;
  padding: 18px 18px 20px;
  -webkit-box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}

/* クリニック画像 */
.access .clinic-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 住所・駐車場 */
.access .text {
  font-size: 14px;
  line-height: 1.8;
  color: #666666;
  text-align: left;
}

.access .text p {
  margin: 0;
}

.access .text p + p {
  margin-top: 4px;
}

/* 電話番号 */
.access .number {
  font-size: 22px;
  font-weight: 700;
  color: #3a8b7a;
  letter-spacing: 0.06em;
  text-align: left;
}

/* 診療時間テーブル */
.access .business-days {
  margin-top: 4px;
}

.access .business-days table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
}

.access .business-days th,
.access .business-days td {
  padding: 8px 6px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.access .business-days tr:last-child th,
.access .business-days tr:last-child td {
  border-bottom: none;
}

.access .business-days tr.title {
  background-color: rgba(58, 139, 122, 0.12);
}

.access .business-days tr.title th {
  font-weight: 600;
  color: #333333;
}

.access .business-days th:first-child {
  text-align: left;
  padding-left: 10px;
  font-weight: 600;
}

.access .circle {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #3a8b7a;
}

/* 右側：map を info と同じ高さに */
.access .map {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  border-radius: 18px;
  overflow: hidden;
  -webkit-box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 22px rgba(0, 0, 0, 0.08);
  /* flex item として高さを伸ばすために中身を100%に */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.access .map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------------------------
     レスポンシブ
  --------------------------- */
@media (max-width: 900px) {
  .access {
    padding: 60px 0;
  }
  .access .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .access .info,
  .access .map {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .access .map {
    height: 260px;
  }
}

@media (max-width: 600px) {
  .access {
    padding: 50px 0;
  }
  .access .number {
    font-size: 20px;
  }
  .access .business-days table {
    font-size: 12px;
  }
}

footer {
  background-color: #2c3c3a;
  color: #f5f7f6;
  padding: 40px 0 18px;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 13px;
}

/* 上部ナビ（リスト横並び） */
footer ul {
  list-style: none;
  margin: 0 auto 16px;
  padding: 0;
  width: 90%;
  max-width: 1100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer ul li {
  cursor: pointer;
  position: relative;
  padding-bottom: 2px;
  -webkit-transition: color 0.2s ease-out;
  transition: color 0.2s ease-out;
}

footer ul li a {
  text-decoration: none;
  color: #c6cfcb;
}

footer ul li::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #3a8b7a;
  -webkit-transition: width 0.2s ease-out;
  transition: width 0.2s ease-out;
}

a footer ul li:hover {
  color: #f5f7f6;
}

a footer ul li:hover::after {
  width: 100%;
}

/* 区切り線 */
footer hr {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto 14px;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

footer .info {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

footer .info .logo img {
  display: block;
  height: 100px;
  width: auto;
  border-radius: 50%;
}

footer .info .text {
  font-size: 24px;
  line-height: 1.7;
  color: #c6cfcb;
}

footer .info .text p {
  margin: 0;
  font-size: 16px;
}

footer .info .text p + p {
  margin-top: 2px;
}

/* コピーライト */
footer p {
  margin: 0;
  margin-top: 16px;
  text-align: center;
  font-size: 11px;
  color: #c6cfcb;
}

/* ------------------------------------------------
     レスポンシブ
  ------------------------------------------------ */
@media (max-width: 600px) {
  footer {
    padding: 28px 0 14px;
  }
  footer .info .logo img {
    height: 34px;
  }
  footer > ul {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

/* ------------------------------------------------
     aboutページ
  ------------------------------------------------ */
.about-main {
  padding: 70px 0;
  background-color: #f7fbf9;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-align: center;
}

.about-main .title {
  width: 90%;
  max-width: 960px;
  margin: 0 auto 24px;
}

.about-main .title h2 {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.7;
  color: #3a8b7a;
  letter-spacing: 0.05em;
}

.about-main .subtitle {
  width: 90%;
  max-width: 820px;
  margin: 0 auto;
}

.about-main .subtitle p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #333333;
  text-align: left;
}

@media (max-width: 900px) {
  .about-main {
    padding: 56px 0;
  }
  .about-main .title h2 {
    font-size: 20px;
    line-height: 1.8;
  }
  .about-main .subtitle p {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .about-main {
    padding: 44px 0;
  }
  .about-main .title {
    margin-bottom: 18px;
  }
  .about-main .title h2 {
    font-size: 18px;
    line-height: 1.7;
  }
  .about-main .subtitle {
    width: 92%;
  }
  .about-main .subtitle p {
    font-size: 16px;
    line-height: 1.8;
  }
}

.case {
  padding: 72px 0;
  background-color: #ffffff;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.case:nth-of-type(odd) {
  background-color: #f7fbf9;
}

.case .container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.6fr);
  -ms-grid-rows: auto auto auto;
      grid-template-rows: auto auto auto;
      grid-template-areas: 'image title' 'image text' 'image box';
  -webkit-column-gap: 32px;
          column-gap: 32px;
  row-gap: 16px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.case .title {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: title;
}

.case .title h2 {
  margin: 0 0 6px;
  font-size: 22px;
  font-weight: 700;
  color: #3a8b7a;
  letter-spacing: 0.06em;
}

.case .text {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: text;
}

.case .text p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #333333;
}

.case .main-case-box {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: box;
  margin-top: 4px;
  background-color: #fff;
  border-radius: 14px;
  border: 1px solid rgba(58, 139, 122, 0.2);
  padding: 14px 16px;
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.case .main-case-box .message {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 700;
  color: #3a8b7a;
  letter-spacing: 0.1em;
}

.case .main-case-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: #666666;
}

.case .case-image {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  grid-area: image;
}

.case .case-image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 260px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 18px;
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  background-color: #fff;
}

@media (max-width: 900px) {
  .case {
    padding: 56px 0;
  }
  .case .container {
    -webkit-column-gap: 24px;
            column-gap: 24px;
  }
  .case .title h2 {
    font-size: 20px;
  }
  .case .text p,
  .case .main-case-box p {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .case {
    padding: 44px 0;
  }
  .case .container {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas: 'title' 'image' 'text' 'box';
    row-gap: 14px;
  }
  .case .title {
    text-align: left;
  }
  .case .title h2 {
    font-size: 18px;
  }
  .case .case-image img {
    max-height: 250px;
  }
  .case .main-case-box {
    padding: 12px 14px;
  }
}

.price-button {
  margin-top: 40px;
  text-align: center;
}

.price-button button {
  display: inline-block;
  min-width: 220px;
  padding: 12px 40px;
  border-radius: 999px;
  border: 1px solid rgba(58, 139, 122, 0.6);
  background-color: rgba(255, 255, 255, 0.2);
  color: #3a8b7a;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  cursor: pointer;
  text-align: center;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  -webkit-transition: background-color 0.2s ease-out, color 0.2s ease-out, -webkit-box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, -webkit-box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out, -webkit-box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.price-button button:hover {
  background-color: #3a8b7a;
  color: #fff;
  -webkit-box-shadow: 0 8px 20px rgba(58, 139, 122, 0.35);
          box-shadow: 0 8px 20px rgba(58, 139, 122, 0.35);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

@media (max-width: 600px) {
  .price-button {
    margin-top: 28px;
  }
  .price-button button {
    width: 100%;
    max-width: 320px;
    padding: 12px 24px;
    font-size: 13px;
  }
}

.insurance {
  padding: 72px 0;
  background-color: #ffffff;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.insurance .container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
}

.insurance-header {
  margin-bottom: 32px;
  text-align: left;
}

.insurance-header h2 {
  margin: 0 0 12px;
  font-size: 24px;
  font-weight: 700;
  color: #3a8b7a;
  letter-spacing: 0.06em;
}

.insurance-header p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #333333;
}

.insurance-price {
  margin-bottom: 40px;
  padding: 20px 20px 24px;
  border-radius: 16px;
  background-color: #f7fbf9;
  border: 1px solid rgba(58, 139, 122, 0.12);
}

.insurance-price h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 700;
  color: #3a8b7a;
}

.insurance-note {
  margin-bottom: 12px;
}

.insurance-note p {
  margin: 0;
  font-size: 12px;
  color: #666666;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 14px;
  font-size: 14px;
}

.price-table thead th {
  background-color: rgba(58, 139, 122, 0.1);
  color: #333333;
  font-weight: 700;
  padding: 10px 8px;
  text-align: center;
  border-bottom: 1px solid rgba(58, 139, 122, 0.25);
}

.price-table tbody th {
  background-color: rgba(58, 139, 122, 0.05);
  font-weight: 600;
  padding: 10px 8px;
  text-align: center;
  white-space: nowrap;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.price-table td {
  padding: 10px 8px;
  text-align: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.price-table tr:last-child th,
.price-table tr:last-child td {
  border-bottom: none;
}

.insurance-caution {
  margin-top: 4px;
}

.insurance-caution p {
  margin: 0;
  font-size: 12px;
  line-height: 1.8;
  color: #666666;
}

.insurance-target,
.insurance-example,
.insurance-ng,
.insurance-system,
.insurance-receipt {
  margin-top: 40px;
}

.insurance-target h3,
.insurance-example h3,
.insurance-ng h3,
.insurance-system h3,
.insurance-receipt h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: #3a8b7a;
}

.insurance-target p,
.insurance-example p,
.insurance-ng p,
.insurance-system p,
.insurance-receipt p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.9;
  color: #333333;
}

.insurance-target ul,
.insurance-example ul,
.insurance-ng ul,
.insurance-system ul,
.insurance-receipt ul {
  margin: 8px 0 8px 1.2em;
  padding: 0;
  font-size: 14px;
  line-height: 1.8;
  color: #333333;
}

.insurance-target ul li,
.insurance-example ul li,
.insurance-ng ul li,
.insurance-system ul li,
.insurance-receipt ul li {
  margin-bottom: 4px;
  list-style: disc;
}

.insurance-ng {
  padding: 16px 18px 18px;
  border-radius: 14px;
  background-color: #fff5f5;
  border: 1px solid rgba(255, 120, 120, 0.4);
}

.insurance-ng h3 {
  color: #d9534f;
}

.insurance-system {
  padding: 18px 18px 20px;
  border-radius: 14px;
  background-color: #ffffff;
  border: 1px solid rgba(58, 139, 122, 0.2);
}

.insurance-system p + p {
  margin-top: 6px;
}

.insurance-system strong {
  font-weight: 700;
  color: #3a8b7a;
}

.insurance-receipt {
  margin-top: 32px;
}

.insurance-receipt h3 {
  font-size: 16px;
}

.insurance-receipt p {
  font-size: 13px;
}

@media (max-width: 900px) {
  .insurance {
    padding: 56px 0;
  }
  .insurance-header h2 {
    font-size: 22px;
  }
  .price-table {
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .insurance {
    padding: 44px 0;
  }
  .insurance-header {
    margin-bottom: 24px;
  }
  .insurance-header h2 {
    font-size: 20px;
  }
  .insurance-header p {
    font-size: 13px;
  }
  .insurance-price {
    padding: 16px 14px 20px;
  }
  /* 表がはみ出るのを防ぐため、横スクロール */
  .insurance-price {
    overflow-x: auto;
  }
  .price-table {
    min-width: 460px;
  }
  .insurance-target,
  .insurance-example,
  .insurance-ng,
  .insurance-system,
  .insurance-receipt {
    margin-top: 28px;
  }
  .insurance-target p,
  .insurance-target ul,
  .insurance-example p,
  .insurance-example ul,
  .insurance-ng p,
  .insurance-ng ul,
  .insurance-system p,
  .insurance-system ul,
  .insurance-receipt p,
  .insurance-receipt ul {
    font-size: 13px;
  }
}

.first-visit {
  padding: 72px 0;
  background-color: #ffffff;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.first-visit .container {
  max-width: 960px;
}

.first-visit-header {
  margin-bottom: 40px;
  text-align: left;
}

.first-visit-header h1 {
  margin: 0 0 12px;
  font-size: 28px;
  font-weight: 700;
  color: #3a8b7a;
  letter-spacing: 0.08em;
}

.first-visit-header p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #333333;
}

.first-visit section {
  margin-bottom: 40px;
}

.first-visit section h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 700;
  color: #3a8b7a;
  letter-spacing: 0.05em;
}

.first-visit section p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.9;
  color: #333333;
}

.first-visit-symptoms ul {
  margin: 8px 0 10px 1.2em;
  padding: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #333333;
}

.first-visit-symptoms ul li {
  list-style: disc;
  margin-bottom: 4px;
}

.first-visit-flow .flow-list {
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
  counter-reset: step;
}

.first-visit-flow .flow-list li {
  position: relative;
  padding: 18px 16px 16px 52px;
  margin-bottom: 12px;
  border-radius: 14px;
  background-color: #f7fbf9;
  border: 1px solid rgba(58, 139, 122, 0.16);
}

.first-visit-flow .flow-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 16px;
  top: 18px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #3a8b7a;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.first-visit-flow h3 {
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  color: #3a8b7a;
}

.first-visit-flow p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
}

.first-visit-features .features-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(0, 1fr))[3];
      grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 12px;
}

.first-visit-features .feature-item {
  padding: 16px 14px;
  border-radius: 14px;
  background-color: #fff;
  border: 1px solid rgba(58, 139, 122, 0.18);
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

.first-visit-features .feature-item h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: #3a8b7a;
}

.first-visit-features .feature-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #333333;
}

.first-visit-faq .faq-item {
  padding: 14px 16px;
  border-radius: 14px;
  background-color: #fff;
  border: 1px solid rgba(58, 139, 122, 0.14);
  margin-bottom: 10px;
}

.first-visit-faq h3 {
  margin: 0 0 6px;
  font-size: 15px;
  font-weight: 700;
  color: #3a8b7a;
}

.first-visit-faq p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
}

.first-visit-faq p a {
  color: #3a8b7a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.first-visit-faq p a:hover {
  text-decoration: none;
}

.first-visit-prepare ul,
.first-visit-recommend ul {
  margin: 8px 0 10px 1.2em;
  padding: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #333333;
}

.first-visit-prepare ul li,
.first-visit-recommend ul li {
  list-style: disc;
  margin-bottom: 4px;
}

.first-visit-prepare p,
.first-visit-recommend p {
  font-size: 13px;
}

.first-visit-cta {
  margin-top: 48px;
  padding: 20px 18px 24px;
  border-radius: 16px;
  background-color: #f7fbf9;
  border: 1px solid rgba(58, 139, 122, 0.2);
}

.first-visit-cta .message {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.9;
  text-align: center;
}

.first-visit-cta .cta-actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px;
}

.first-visit-cta .cta-tel {
  -webkit-box-flex: 1.4;
      -ms-flex: 1.4;
          flex: 1.4;
  padding: 14px 14px 12px;
  border-radius: 14px;
  background-color: #fff;
  border: 1px solid rgba(58, 139, 122, 0.18);
}

.first-visit-cta .cta-tel .label {
  margin: 0 0 4px;
  font-size: 12px;
  color: #666666;
}

.first-visit-cta .cta-tel .tel {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.first-visit-cta .cta-tel .tel a {
  color: #3a8b7a;
  text-decoration: none;
}

.first-visit-cta .cta-tel .time {
  margin: 0;
  font-size: 11px;
  color: #666666;
  line-height: 1.6;
}

.first-visit-cta .cta-button {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.first-visit-cta .cta-button .btn-primary {
  display: inline-block;
  width: 100%;
  max-width: 260px;
  padding: 12px 18px;
  border-radius: 999px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  border: 1px solid rgba(58, 139, 122, 0.7);
  background-color: #3a8b7a;
  color: #fff;
  -webkit-box-shadow: 0 8px 20px rgba(58, 139, 122, 0.4);
          box-shadow: 0 8px 20px rgba(58, 139, 122, 0.4);
  -webkit-transition: background-color 0.2s ease-out, -webkit-box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: background-color 0.2s ease-out, -webkit-box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: background-color 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out;
  transition: background-color 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out, -webkit-box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.first-visit-cta .cta-button .btn-primary:hover {
  background-color: #358071;
  -webkit-box-shadow: 0 10px 24px rgba(58, 139, 122, 0.5);
          box-shadow: 0 10px 24px rgba(58, 139, 122, 0.5);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

@media (max-width: 900px) {
  .first-visit {
    padding: 56px 0;
  }
  .first-visit-header h1 {
    font-size: 24px;
  }
  .first-visit-features .features-list {
    -ms-grid-columns: (minmax(0, 1fr))[2];
        grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .first-visit {
    padding: 44px 0;
  }
  .first-visit section {
    margin-bottom: 32px;
  }
  .first-visit-header {
    margin-bottom: 28px;
  }
  .first-visit-header h1 {
    font-size: 22px;
  }
  .first-visit-header p {
    font-size: 13px;
  }
  .first-visit section h2 {
    font-size: 18px;
  }
  .first-visit section p,
  .first-visit section ul {
    font-size: 13px;
  }
  .first-visit-features .features-list {
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
  }
  .first-visit-cta .message {
    text-align: left;
    font-size: 13px;
  }
  .first-visit-cta .cta-actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .first-visit-cta .cta-tel .tel {
    font-size: 18px;
  }
  .first-visit-cta .cta-button .btn-primary {
    max-width: 100%;
    font-size: 13px;
  }
}

.blog {
  padding: 72px 0;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #ffffff;
}

.blog .container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

.blog-header {
  margin-bottom: 32px;
}

.blog-header h1 {
  margin: 0 0 8px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #3a8b7a;
}

.blog-header p {
  margin: 0;
  font-size: 14px;
  line-height: 1.9;
  color: #333333;
}

.blog-layout .container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: minmax(0, 2.2fr) minmax(260px, 1fr);
      grid-template-columns: minmax(0, 2.2fr) minmax(260px, 1fr);
  gap: 32px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.blog-card {
  margin-bottom: 18px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid rgba(58, 139, 122, 0.12);
  -webkit-box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
          box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
  -webkit-transition: -webkit-transform 0.18s ease-out, -webkit-box-shadow 0.18s ease-out;
  transition: -webkit-transform 0.18s ease-out, -webkit-box-shadow 0.18s ease-out;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
  transition: transform 0.18s ease-out, box-shadow 0.18s ease-out, -webkit-transform 0.18s ease-out, -webkit-box-shadow 0.18s ease-out;
}

.blog-card__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  text-decoration: none;
  color: inherit;
}

.blog-card__thumb {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 220px;
          flex: 0 0 220px;
  max-width: 220px;
  overflow: hidden;
}

.blog-card__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  transition: -webkit-transform 0.25s ease-out;
  transition: transform 0.25s ease-out;
  transition: transform 0.25s ease-out, -webkit-transform 0.25s ease-out;
}

.blog-card__body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 14px 18px 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}

.blog-card__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 12px;
  color: #666666;
}

.blog-card__meta time {
  font-variant-numeric: tabular-nums;
}

.blog-card__cat {
  padding: 2px 8px;
  border-radius: 999px;
  background-color: rgba(58, 139, 122, 0.08);
  color: #3a8b7a;
  font-size: 11px;
  letter-spacing: 0.06em;
}

.blog-card__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  line-height: 1.6;
}

.blog-card__excerpt {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: #666666;
}

.blog-card__more {
  margin-top: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #3a8b7a;
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.blog-card:hover {
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
  -webkit-box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
          box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.blog-card:hover .blog-card__thumb img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.blog-card:hover .blog-card__title {
  color: #3a8b7a;
}

.pagination {
  margin-top: 24px;
}

.pagination ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
  font-size: 13px;
}

.pagination li a,
.pagination li span {
  display: inline-block;
  min-width: 32px;
  padding: 6px 10px;
  border-radius: 999px;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  color: #333333;
}

.pagination li.current span {
  background-color: #3a8b7a;
  color: #fff;
  border-color: #3a8b7a;
  font-weight: 700;
}

.pagination li a {
  border-color: rgba(58, 139, 122, 0.2);
}

.pagination li a:hover {
  background-color: rgba(58, 139, 122, 0.07);
}

.pagination li.prev a,
.pagination li.next a {
  padding-inline: 12px;
}

.blog-sidebar .sidebar-section {
  margin-bottom: 20px;
  padding: 16px 16px 18px;
  border-radius: 16px;
  background-color: #fff;
  border: 1px solid rgba(58, 139, 122, 0.12);
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.03);
}

.blog-sidebar .sidebar-section h2 {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  color: #3a8b7a;
  letter-spacing: 0.08em;
}

.blog-sidebar .sidebar-section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
}

.blog-sidebar .sidebar-section ul li + li {
  margin-top: 6px;
}

.blog-sidebar .sidebar-section ul a {
  color: #333333;
  text-decoration: none;
  position: relative;
  padding-left: 14px;
  display: inline-block;
}

.blog-sidebar .sidebar-section ul a::before {
  content: '・';
  position: absolute;
  left: 0;
  top: 0;
  line-height: 1;
  color: #3a8b7a;
}

.blog-sidebar .sidebar-section ul a:hover {
  color: #3a8b7a;
}

.blog-sidebar .sidebar-cta {
  text-align: left;
}

.blog-sidebar .sidebar-cta p {
  margin: 0 0 10px;
  font-size: 13px;
  line-height: 1.8;
  color: #333333;
}

.blog-sidebar .sidebar-cta .sidebar-cta__button {
  display: block;
  width: 100%;
  padding: 10px 14px;
  text-align: center;
  border-radius: 999px;
  background-color: #3a8b7a;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  -webkit-box-shadow: 0 8px 20px rgba(58, 139, 122, 0.4);
          box-shadow: 0 8px 20px rgba(58, 139, 122, 0.4);
  -webkit-transition: background-color 0.2s ease-out, -webkit-box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: background-color 0.2s ease-out, -webkit-box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: background-color 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out;
  transition: background-color 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out, -webkit-box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.blog-sidebar .sidebar-cta .sidebar-cta__button:hover {
  background-color: #358071;
  -webkit-box-shadow: 0 10px 24px rgba(58, 139, 122, 0.5);
          box-shadow: 0 10px 24px rgba(58, 139, 122, 0.5);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

@media (max-width: 960px) {
  .blog-layout .container {
    -ms-grid-columns: minmax(0, 1.8fr) minmax(220px, 1fr);
        grid-template-columns: minmax(0, 1.8fr) minmax(220px, 1fr);
    gap: 24px;
  }
  .blog-card__thumb {
    -ms-flex-preferred-size: 200px;
        flex-basis: 200px;
  }
}

@media (max-width: 768px) {
  .blog {
    padding: 56px 0;
  }
  .blog-layout .container {
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
  }
  .blog-sidebar {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .blog-card__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .blog-card__thumb {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    max-width: 100%;
  }
  .blog-card__thumb img {
    max-height: 220px;
  }
  .blog-card__body {
    padding: 12px 14px 14px;
  }
}

@media (max-width: 480px) {
  .blog {
    padding: 44px 0;
  }
  .blog-header h1 {
    font-size: 22px;
  }
  .blog-header p {
    font-size: 13px;
  }
  .blog-card__title {
    font-size: 15px;
  }
  .blog-card__excerpt {
    font-size: 12px;
  }
  .blog-sidebar .sidebar-section {
    padding: 14px 12px 16px;
  }
  .blog-sidebar .sidebar-section h2 {
    font-size: 15px;
  }
  .blog-sidebar .sidebar-section ul {
    font-size: 12px;
  }
}

.voice-archive {
  padding: 80px 0;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: #f7fbf9;
}

.voice-archive .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: block;
}

.page-hero--voice {
  padding: 40px 0 30px;
  text-align: center;
}

.page-hero--voice .page-hero__title {
  font-size: 26px;
  font-weight: 700;
  color: #3a8b7a;
  margin-bottom: 10px;
}

.page-hero--voice .page-hero__lead {
  font-size: 14px;
  color: #666666;
  line-height: 1.8;
}

.voice-list {
  padding: 20px 0 60px;
}

.voice-list__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(280px, 1fr))[2];
      grid-template-columns: repeat(2, minmax(280px, 1fr));
  gap: 24px 32px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  justify-items: center;
}

.voice-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 20px 22px;
  -webkit-box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(58, 139, 122, 0.08);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

.voice-card__header {
  border-bottom: 1px dashed rgba(58, 139, 122, 0.25);
  padding-bottom: 8px;
  margin-bottom: 10px;
}

.voice-card__area {
  font-size: 13px;
  color: #666666;
  margin: 0 0 2px;
}

.voice-card__profile {
  font-size: 13px;
  color: #666666;
  margin: 0 0 4px;
}

.voice-card__symptom {
  font-size: 13px;
  color: #3a8b7a;
  font-weight: 600;
  margin: 0 0 4px;
}

.voice-card__title {
  font-size: 16px;
  font-weight: 700;
  color: #333333;
  margin: 0;
}

.voice-card__content {
  font-size: 13px;
  line-height: 1.8;
  color: #333333;
}

.voice-card__content p {
  margin: 0 0 0.6em;
}

.voice-archive__pagination {
  margin-top: 32px;
  text-align: center;
}

.voice-archive__pagination .pagination,
.voice-archive__pagination .nav-links {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.voice-archive__pagination a,
.voice-archive__pagination span {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  text-decoration: none;
}

.voice-archive__pagination a {
  border: 1px solid rgba(58, 139, 122, 0.4);
  color: #3a8b7a;
}

.voice-archive__pagination .current {
  background-color: #3a8b7a;
  color: #fff;
}

@media (max-width: 768px) {
  .voice-archive {
    padding: 60px 0;
  }
  .voice-list__grid {
    -ms-grid-columns: minmax(0, 1fr);
        grid-template-columns: minmax(0, 1fr);
    max-width: 100%;
  }
  .voice-card {
    padding: 16px 14px;
  }
}

@media (max-width: 480px) {
  .page-hero--voice .page-hero__title {
    font-size: 22px;
  }
  .voice-card__title {
    font-size: 15px;
  }
  .voice-card__content {
    font-size: 12px;
  }
}

.treatment-page {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #333333;
  background-color: #fff;
}

.page-hero--treatment {
  padding: 60px 0 40px;
  background: linear-gradient(135deg, rgba(58, 139, 122, 0.08), rgba(255, 255, 255, 0.95));
  text-align: center;
}

.page-hero--treatment .page-hero__title {
  font-size: 28px;
  font-weight: 700;
  color: #3a8b7a;
  letter-spacing: 0.12em;
  margin: 0 0 14px;
}

.page-hero--treatment .page-hero__lead {
  font-size: 14px;
  line-height: 1.9;
  color: #666666;
  margin: 0;
}

.treatment-nav {
  padding: 16px 0;
  background-color: #f7fbf9;
  border-top: 1px solid rgba(58, 139, 122, 0.12);
  border-bottom: 1px solid rgba(58, 139, 122, 0.12);
}

.treatment-nav .treatment-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px 12px;
}

.treatment-nav .treatment-nav__list li {
  /* 余白だけなので特に何もなしでもOK */
}

.treatment-nav .treatment-nav__list a {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(58, 139, 122, 0.4);
  background-color: #fff;
  font-size: 13px;
  color: #3a8b7a;
  text-decoration: none;
  letter-spacing: 0.08em;
  -webkit-transition: background-color 0.2s ease-out, color 0.2s ease-out, -webkit-box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, -webkit-box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out, -webkit-box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.treatment-nav .treatment-nav__list a:hover {
  background-color: #3a8b7a;
  color: #fff;
  -webkit-box-shadow: 0 6px 14px rgba(58, 139, 122, 0.35);
          box-shadow: 0 6px 14px rgba(58, 139, 122, 0.35);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.treatment-block {
  padding: 70px 0;
  background-color: #fff;
}

.treatment-block:nth-of-type(odd) {
  background-color: rgba(247, 251, 249, 0.8);
}

.treatment-block__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 32px;
}

.treatment-block__text {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}

.treatment-block__image {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
  text-align: right;
}

.treatment-block__image img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
  -webkit-box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
          box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  -o-object-fit: cover;
     object-fit: cover;
}

.treatment-block__title {
  font-size: 22px;
  font-weight: 700;
  color: #3a8b7a;
  margin: 0 0 6px;
}

.treatment-block__catch {
  font-size: 14px;
  color: #666666;
  margin: 0 0 14px;
}

.treatment-block__desc {
  font-size: 14px;
  line-height: 1.9;
  margin: 0 0 18px;
  color: #333333;
}

.treatment-block__box {
  margin-top: 8px;
  padding: 14px 16px;
  border-radius: 14px;
  background-color: rgba(58, 139, 122, 0.06);
  border: 1px solid rgba(58, 139, 122, 0.18);
}

.treatment-block__box-title {
  font-size: 14px;
  font-weight: 700;
  color: #3a8b7a;
  margin: 0 0 8px;
}

.treatment-block__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.treatment-block__list li {
  position: relative;
  padding-left: 1.2em;
  font-size: 13px;
  line-height: 1.8;
  color: #333333;
}

.treatment-block__list li::before {
  content: '・';
  position: absolute;
  left: 0;
  top: 0;
}

.treatment-block__list li + li {
  margin-top: 4px;
}

.treatment-block--reverse .treatment-block__inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.treatment-block--reverse .treatment-block__image {
  text-align: left;
}

.btn-more {
  margin-top: 18px;
  text-align: left;
}

.btn-more__link,
.btn-more a,
.btn-more button {
  display: inline-block;
  padding: 9px 28px;
  border-radius: 999px;
  border: 1px solid rgba(58, 139, 122, 0.4);
  background-color: rgba(255, 255, 255, 0.2);
  color: #3a8b7a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-decoration: none;
  cursor: pointer;
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  -webkit-transition: background-color 0.2s ease-out, color 0.2s ease-out, -webkit-box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, -webkit-box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out;
  transition: background-color 0.2s ease-out, color 0.2s ease-out, box-shadow 0.2s ease-out, transform 0.2s ease-out, -webkit-box-shadow 0.2s ease-out, -webkit-transform 0.2s ease-out;
}

.btn-more__link:hover,
.btn-more a:hover,
.btn-more button:hover {
  background-color: rgba(58, 139, 122, 0.95);
  color: #fff;
  -webkit-box-shadow: 0 8px 18px rgba(58, 139, 122, 0.45);
          box-shadow: 0 8px 18px rgba(58, 139, 122, 0.45);
  -webkit-transform: translateY(-1px);
          transform: translateY(-1px);
}

.treatment-notes {
  padding: 60px 0 80px;
  background-color: #f7fbf9;
  text-align: center;
}

.treatment-notes__title {
  font-size: 20px;
  font-weight: 700;
  color: #3a8b7a;
  margin: 0 0 12px;
}

.treatment-notes__text {
  font-size: 14px;
  line-height: 1.9;
  color: #333333;
  margin: 0 0 18px;
}

@media (max-width: 900px) {
  .treatment-block {
    padding: 52px 0;
  }
  .treatment-block__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .treatment-block--reverse .treatment-block__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .treatment-block__image {
    text-align: center;
    margin-top: 12px;
  }
  .treatment-block__image img {
    max-width: 88%;
  }
  .treatment-block__title {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .page-hero--treatment {
    padding: 42px 0 30px;
  }
  .page-hero--treatment .page-hero__title {
    font-size: 22px;
  }
  .page-hero--treatment .page-hero__lead {
    font-size: 13px;
  }
  .treatment-nav .treatment-nav__list a {
    font-size: 14px;
    padding: 6px 10px;
  }
  .treatment-block__desc,
  .treatment-block__box,
  .treatment-notes__text {
    font-size: 13px;
  }
  .btn-more {
    text-align: center;
  }
  .btn-more__link,
  .btn-more a,
  .btn-more button {
    width: 100%;
    text-align: center;
  }
}
/*# sourceMappingURL=style.css.map */